Commit bc250684 authored by Steven Toth's avatar Steven Toth Committed by Mauro Carvalho Chehab

[media] saa7164: Checkpatch compliance cleanup

Checkpatch compliance cleanup across files in the saa7164 driver.
Signed-off-by: default avatarSteven Toth <stoth@kernellabs.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 0e72cc8b
This diff is collapsed.
...@@ -24,46 +24,46 @@ ...@@ -24,46 +24,46 @@
#include "saa7164.h" #include "saa7164.h"
/* The PCI address space for buffer handling looks like this: /* The PCI address space for buffer handling looks like this:
*
+-u32 wide-------------+ * +-u32 wide-------------+
| + * | +
+-u64 wide------------------------------------+ * +-u64 wide------------------------------------+
+ + * + +
+----------------------+ * +----------------------+
| CurrentBufferPtr + Pointer to current PCI buffer >-+ * | CurrentBufferPtr + Pointer to current PCI buffer >-+
+----------------------+ | * +----------------------+ |
| Unused + | * | Unused + |
+----------------------+ | * +----------------------+ |
| Pitch + = 188 (bytes) | * | Pitch + = 188 (bytes) |
+----------------------+ | * +----------------------+ |
| PCI buffer size + = pitch * number of lines (312) | * | PCI buffer size + = pitch * number of lines (312) |
+----------------------+ | * +----------------------+ |
|0| Buf0 Write Offset + | * |0| Buf0 Write Offset + |
+----------------------+ v * +----------------------+ v
|1| Buf1 Write Offset + | * |1| Buf1 Write Offset + |
+----------------------+ | * +----------------------+ |
|2| Buf2 Write Offset + | * |2| Buf2 Write Offset + |
+----------------------+ | * +----------------------+ |
|3| Buf3 Write Offset + | * |3| Buf3 Write Offset + |
+----------------------+ | * +----------------------+ |
... More write offsets | * ... More write offsets |
+---------------------------------------------+ | * +---------------------------------------------+ |
+0| set of ptrs to PCI pagetables + | * +0| set of ptrs to PCI pagetables + |
+---------------------------------------------+ | * +---------------------------------------------+ |
+1| set of ptrs to PCI pagetables + <--------+ * +1| set of ptrs to PCI pagetables + <--------+
+---------------------------------------------+ * +---------------------------------------------+
+2| set of ptrs to PCI pagetables + * +2| set of ptrs to PCI pagetables +
+---------------------------------------------+ * +---------------------------------------------+
+3| set of ptrs to PCI pagetables + >--+ * +3| set of ptrs to PCI pagetables + >--+
+---------------------------------------------+ | * +---------------------------------------------+ |
... More buffer pointers | +----------------+ * ... More buffer pointers | +----------------+
+->| pt[0] TS data | * +->| pt[0] TS data |
| +----------------+ * | +----------------+
| * |
| +----------------+ * | +----------------+
+->| pt[1] TS data | * +->| pt[1] TS data |
| +----------------+ * | +----------------+
| etc * | etc
*/ */
void saa7164_buffer_display(struct saa7164_buffer *buf) void saa7164_buffer_display(struct saa7164_buffer *buf)
...@@ -283,7 +283,8 @@ int saa7164_buffer_cfg_port(struct saa7164_port *port) ...@@ -283,7 +283,8 @@ int saa7164_buffer_cfg_port(struct saa7164_port *port)
return 0; return 0;
} }
struct saa7164_user_buffer *saa7164_buffer_alloc_user(struct saa7164_dev *dev, u32 len) struct saa7164_user_buffer *saa7164_buffer_alloc_user(struct saa7164_dev *dev,
u32 len)
{ {
struct saa7164_user_buffer *buf; struct saa7164_user_buffer *buf;
...@@ -313,12 +314,9 @@ void saa7164_buffer_dealloc_user(struct saa7164_user_buffer *buf) ...@@ -313,12 +314,9 @@ void saa7164_buffer_dealloc_user(struct saa7164_user_buffer *buf)
if (!buf) if (!buf)
return; return;
if (buf->data) { kfree(buf->data);
kfree(buf->data); buf->data = 0;
buf->data = 0;
}
if (buf) kfree(buf);
kfree(buf);
} }
...@@ -43,7 +43,8 @@ int saa7164_bus_setup(struct saa7164_dev *dev) ...@@ -43,7 +43,8 @@ int saa7164_bus_setup(struct saa7164_dev *dev)
b->m_dwSizeGetRing = SAA_DEVICE_BUFFERBLOCKSIZE; b->m_dwSizeGetRing = SAA_DEVICE_BUFFERBLOCKSIZE;
b->m_dwSetWritePos = ((u32)dev->intfdesc.BARLocation) + (2 * sizeof(u64)); b->m_dwSetWritePos = ((u32)dev->intfdesc.BARLocation) +
(2 * sizeof(u64));
b->m_dwSetReadPos = b->m_dwSetWritePos + (1 * sizeof(u32)); b->m_dwSetReadPos = b->m_dwSetWritePos + (1 * sizeof(u32));
b->m_dwGetWritePos = b->m_dwSetWritePos + (2 * sizeof(u32)); b->m_dwGetWritePos = b->m_dwSetWritePos + (2 * sizeof(u32));
...@@ -105,7 +106,8 @@ void saa7164_bus_verify(struct saa7164_dev *dev) ...@@ -105,7 +106,8 @@ void saa7164_bus_verify(struct saa7164_dev *dev)
} }
} }
void saa7164_bus_dumpmsg(struct saa7164_dev *dev, struct tmComResInfo* m, void *buf) void saa7164_bus_dumpmsg(struct saa7164_dev *dev, struct tmComResInfo* m,
void *buf)
{ {
dprintk(DBGLVL_BUS, "Dumping msg structure:\n"); dprintk(DBGLVL_BUS, "Dumping msg structure:\n");
dprintk(DBGLVL_BUS, " .id = %d\n", m->id); dprintk(DBGLVL_BUS, " .id = %d\n", m->id);
...@@ -129,7 +131,8 @@ void saa7164_bus_dumpmsg(struct saa7164_dev *dev, struct tmComResInfo* m, void * ...@@ -129,7 +131,8 @@ void saa7164_bus_dumpmsg(struct saa7164_dev *dev, struct tmComResInfo* m, void *
* SAA_OK The function executed successfully. * SAA_OK The function executed successfully.
* < 0 One or more members are not initialized. * < 0 One or more members are not initialized.
*/ */
int saa7164_bus_set(struct saa7164_dev *dev, struct tmComResInfo* msg, void *buf) int saa7164_bus_set(struct saa7164_dev *dev, struct tmComResInfo* msg,
void *buf)
{ {
struct tmComResBusInfo *bus = &dev->bus; struct tmComResBusInfo *bus = &dev->bus;
u32 bytes_to_write, free_write_space, timeout, curr_srp, curr_swp; u32 bytes_to_write, free_write_space, timeout, curr_srp, curr_swp;
...@@ -294,14 +297,15 @@ int saa7164_bus_set(struct saa7164_dev *dev, struct tmComResInfo* msg, void *buf ...@@ -294,14 +297,15 @@ int saa7164_bus_set(struct saa7164_dev *dev, struct tmComResInfo* msg, void *buf
/* /*
* Receive a command or a response from the bus. The implementation does not * Receive a command or a response from the bus. The implementation does not
* know if it is a command or a response it simply dequeues the data, * know if it is a command or a response it simply dequeues the data,
* depending on the bus information given in the struct tmComResBusInfo structure. * depending on the bus information given in the struct tmComResBusInfo
* structure.
* *
* Return Value: * Return Value:
* 0 The function executed successfully. * 0 The function executed successfully.
* < 0 One or more members are not initialized. * < 0 One or more members are not initialized.
*/ */
int saa7164_bus_get(struct saa7164_dev *dev, struct tmComResInfo* msg, void *buf, int saa7164_bus_get(struct saa7164_dev *dev, struct tmComResInfo* msg,
int peekonly) void *buf, int peekonly)
{ {
struct tmComResBusInfo *bus = &dev->bus; struct tmComResBusInfo *bus = &dev->bus;
u32 bytes_to_read, write_distance, curr_grp, curr_gwp, u32 bytes_to_read, write_distance, curr_grp, curr_gwp,
......
...@@ -482,7 +482,7 @@ void saa7164_gpio_setup(struct saa7164_dev *dev) ...@@ -482,7 +482,7 @@ void saa7164_gpio_setup(struct saa7164_dev *dev)
saa7164_api_clear_gpiobit(dev, PCIEBRIDGE_UNITID, 2); saa7164_api_clear_gpiobit(dev, PCIEBRIDGE_UNITID, 2);
saa7164_api_clear_gpiobit(dev, PCIEBRIDGE_UNITID, 3); saa7164_api_clear_gpiobit(dev, PCIEBRIDGE_UNITID, 3);
msleep(10); msleep(20);
saa7164_api_set_gpiobit(dev, PCIEBRIDGE_UNITID, 2); saa7164_api_set_gpiobit(dev, PCIEBRIDGE_UNITID, 2);
saa7164_api_set_gpiobit(dev, PCIEBRIDGE_UNITID, 3); saa7164_api_set_gpiobit(dev, PCIEBRIDGE_UNITID, 3);
......
...@@ -122,8 +122,8 @@ int saa7164_irq_dequeue(struct saa7164_dev *dev) ...@@ -122,8 +122,8 @@ int saa7164_irq_dequeue(struct saa7164_dev *dev)
return ret; return ret;
} }
/* It's unlikely to have more than 4 or 5 pending messages, ensure we exit /* It's unlikely to have more than 4 or 5 pending messages,
* at some point regardles. * ensure we exit at some point regardless.
*/ */
} while (i++ < 32); } while (i++ < 32);
...@@ -186,7 +186,8 @@ int saa7164_cmd_dequeue(struct saa7164_dev *dev) ...@@ -186,7 +186,8 @@ int saa7164_cmd_dequeue(struct saa7164_dev *dev)
return SAA_OK; return SAA_OK;
} }
int saa7164_cmd_set(struct saa7164_dev *dev, struct tmComResInfo* msg, void *buf) int saa7164_cmd_set(struct saa7164_dev *dev, struct tmComResInfo *msg,
void *buf)
{ {
struct tmComResBusInfo *bus = &dev->bus; struct tmComResBusInfo *bus = &dev->bus;
u8 cmd_sent; u8 cmd_sent;
...@@ -292,7 +293,8 @@ int saa7164_cmd_wait(struct saa7164_dev *dev, u8 seqno) ...@@ -292,7 +293,8 @@ int saa7164_cmd_wait(struct saa7164_dev *dev, u8 seqno)
* We typically are signalled in < 50ms but it can * We typically are signalled in < 50ms but it can
* take MUCH longer. * take MUCH longer.
*/ */
wait_event_timeout(*q, dev->cmds[seqno].signalled, (HZ * waitsecs)); wait_event_timeout(*q, dev->cmds[seqno].signalled,
(HZ * waitsecs));
r = time_before(jiffies, stamp + (HZ * waitsecs)); r = time_before(jiffies, stamp + (HZ * waitsecs));
if (r) if (r)
ret = SAA_OK; ret = SAA_OK;
......
...@@ -40,12 +40,12 @@ MODULE_AUTHOR("Steven Toth <stoth@kernellabs.com>"); ...@@ -40,12 +40,12 @@ MODULE_AUTHOR("Steven Toth <stoth@kernellabs.com>");
MODULE_LICENSE("GPL"); MODULE_LICENSE("GPL");
/* /*
1 Basic * 1 Basic
2 * 2
4 i2c * 4 i2c
8 api * 8 api
16 cmd * 16 cmd
32 bus * 32 bus
*/ */
unsigned int saa_debug; unsigned int saa_debug;
...@@ -82,7 +82,8 @@ MODULE_PARM_DESC(crc_checking, "enable crc sanity checking on buffers"); ...@@ -82,7 +82,8 @@ MODULE_PARM_DESC(crc_checking, "enable crc sanity checking on buffers");
unsigned int guard_checking = 1; unsigned int guard_checking = 1;
module_param(guard_checking, int, 0644); module_param(guard_checking, int, 0644);
MODULE_PARM_DESC(guard_checking, "enable dma sanity checking for buffer overruns"); MODULE_PARM_DESC(guard_checking,
"enable dma sanity checking for buffer overruns");
static unsigned int saa7164_devcount; static unsigned int saa7164_devcount;
...@@ -123,7 +124,9 @@ static void saa7164_pack_verifier(struct saa7164_buffer *buf) ...@@ -123,7 +124,9 @@ static void saa7164_pack_verifier(struct saa7164_buffer *buf)
if ((*(p + i + 0) != 0x00) || (*(p + i + 1) != 0x00) || if ((*(p + i + 0) != 0x00) || (*(p + i + 1) != 0x00) ||
(*(p + i + 2) != 0x01) || (*(p + i + 3) != 0xBA)) { (*(p + i + 2) != 0x01) || (*(p + i + 3) != 0xBA)) {
printk(KERN_ERR "No pack at 0x%x\n", i); printk(KERN_ERR "No pack at 0x%x\n", i);
// saa7164_dumphex16FF(buf->port->dev, (p + i), 32); #if 0
saa7164_dumphex16FF(buf->port->dev, (p + i), 32);
#endif
} }
} }
} }
...@@ -199,19 +202,16 @@ static void saa7164_histogram_reset(struct saa7164_histogram *hg, char *name) ...@@ -199,19 +202,16 @@ static void saa7164_histogram_reset(struct saa7164_histogram *hg, char *name)
strcpy(hg->name, name); strcpy(hg->name, name);
/* First 30ms x 1ms */ /* First 30ms x 1ms */
for (i = 0; i < 30; i++) { for (i = 0; i < 30; i++)
hg->counter1[0 + i].val = i; hg->counter1[0 + i].val = i;
}
/* 30 - 200ms x 10ms */ /* 30 - 200ms x 10ms */
for (i = 0; i < 18; i++) { for (i = 0; i < 18; i++)
hg->counter1[30 + i].val = 30 + (i * 10); hg->counter1[30 + i].val = 30 + (i * 10);
}
/* 200 - 2000ms x 100ms */ /* 200 - 2000ms x 100ms */
for (i = 0; i < 15; i++) { for (i = 0; i < 15; i++)
hg->counter1[48 + i].val = 200 + (i * 200); hg->counter1[48 + i].val = 200 + (i * 200);
}
/* Catch all massive value (2secs) */ /* Catch all massive value (2secs) */
hg->counter1[55].val = 2000; hg->counter1[55].val = 2000;
...@@ -315,7 +315,9 @@ static void saa7164_work_enchandler_helper(struct saa7164_port *port, int bufnr) ...@@ -315,7 +315,9 @@ static void saa7164_work_enchandler_helper(struct saa7164_port *port, int bufnr)
(*(p + buf->actual_size + 0x13) != 0xff)) { (*(p + buf->actual_size + 0x13) != 0xff)) {
printk(KERN_ERR "%s() buf %p guard buffer breach\n", printk(KERN_ERR "%s() buf %p guard buffer breach\n",
__func__, buf); __func__, buf);
// saa7164_dumphex16FF(dev, (p + buf->actual_size) - 32 , 64); #if 0
saa7164_dumphex16FF(dev, (p + buf->actual_size) - 32 , 64);
#endif
} }
} }
...@@ -961,9 +963,7 @@ static int saa7164_port_init(struct saa7164_dev *dev, int portnr) ...@@ -961,9 +963,7 @@ static int saa7164_port_init(struct saa7164_dev *dev, int portnr)
/* We need a deferred interrupt handler for cmd handling */ /* We need a deferred interrupt handler for cmd handling */
INIT_WORK(&port->workenc, saa7164_work_enchandler); INIT_WORK(&port->workenc, saa7164_work_enchandler);
} } else if ((portnr == SAA7164_PORT_VBI1) || (portnr == SAA7164_PORT_VBI2)) {
else
if ((portnr == SAA7164_PORT_VBI1) || (portnr == SAA7164_PORT_VBI2)) {
port->type = SAA7164_MPEG_VBI; port->type = SAA7164_MPEG_VBI;
/* We need a deferred interrupt handler for cmd handling */ /* We need a deferred interrupt handler for cmd handling */
...@@ -1169,7 +1169,7 @@ static int saa7164_proc_open(struct inode *inode, struct file *filp) ...@@ -1169,7 +1169,7 @@ static int saa7164_proc_open(struct inode *inode, struct file *filp)
return single_open(filp, saa7164_proc_show, NULL); return single_open(filp, saa7164_proc_show, NULL);
} }
static struct file_operations saa7164_proc_fops = { static const struct file_operations saa7164_proc_fops = {
.open = saa7164_proc_open, .open = saa7164_proc_open,
.read = seq_read, .read = seq_read,
.llseek = seq_lseek, .llseek = seq_lseek,
......
...@@ -125,16 +125,22 @@ static int saa7164_encoder_buffers_alloc(struct saa7164_port *port) ...@@ -125,16 +125,22 @@ static int saa7164_encoder_buffers_alloc(struct saa7164_port *port)
dprintk(DBGLVL_ENC, "%s()\n", __func__); dprintk(DBGLVL_ENC, "%s()\n", __func__);
if (port->encoder_params.stream_type == V4L2_MPEG_STREAM_TYPE_MPEG2_PS) { if (port->encoder_params.stream_type ==
dprintk(DBGLVL_ENC, "%s() type=V4L2_MPEG_STREAM_TYPE_MPEG2_PS\n", __func__); V4L2_MPEG_STREAM_TYPE_MPEG2_PS) {
dprintk(DBGLVL_ENC,
"%s() type=V4L2_MPEG_STREAM_TYPE_MPEG2_PS\n",
__func__);
params->samplesperline = 128; params->samplesperline = 128;
params->numberoflines = 256; params->numberoflines = 256;
params->pitch = 128; params->pitch = 128;
params->numpagetables = 2 + params->numpagetables = 2 +
((SAA7164_PS_NUMBER_OF_LINES * 128) / PAGE_SIZE); ((SAA7164_PS_NUMBER_OF_LINES * 128) / PAGE_SIZE);
} else } else
if (port->encoder_params.stream_type == V4L2_MPEG_STREAM_TYPE_MPEG2_TS) { if (port->encoder_params.stream_type ==
dprintk(DBGLVL_ENC, "%s() type=V4L2_MPEG_STREAM_TYPE_MPEG2_TS\n", __func__); V4L2_MPEG_STREAM_TYPE_MPEG2_TS) {
dprintk(DBGLVL_ENC,
"%s() type=V4L2_MPEG_STREAM_TYPE_MPEG2_TS\n",
__func__);
params->samplesperline = 188; params->samplesperline = 188;
params->numberoflines = 312; params->numberoflines = 312;
params->pitch = 188; params->pitch = 188;
...@@ -826,7 +832,8 @@ static int fill_queryctrl(struct saa7164_encoder_params *params, ...@@ -826,7 +832,8 @@ static int fill_queryctrl(struct saa7164_encoder_params *params,
return v4l2_ctrl_query_fill(c, 1, 255, 1, 15); return v4l2_ctrl_query_fill(c, 1, 255, 1, 15);
case V4L2_CID_MPEG_VIDEO_BITRATE_MODE: case V4L2_CID_MPEG_VIDEO_BITRATE_MODE:
return v4l2_ctrl_query_fill(c, return v4l2_ctrl_query_fill(c,
V4L2_MPEG_VIDEO_BITRATE_MODE_VBR, V4L2_MPEG_VIDEO_BITRATE_MODE_CBR, V4L2_MPEG_VIDEO_BITRATE_MODE_VBR,
V4L2_MPEG_VIDEO_BITRATE_MODE_CBR,
1, V4L2_MPEG_VIDEO_BITRATE_MODE_VBR); 1, V4L2_MPEG_VIDEO_BITRATE_MODE_VBR);
case V4L2_CID_MPEG_VIDEO_B_FRAMES: case V4L2_CID_MPEG_VIDEO_B_FRAMES:
return v4l2_ctrl_query_fill(c, return v4l2_ctrl_query_fill(c,
...@@ -1113,7 +1120,9 @@ struct saa7164_user_buffer *saa7164_enc_next_buf(struct saa7164_port *port) ...@@ -1113,7 +1120,9 @@ struct saa7164_user_buffer *saa7164_enc_next_buf(struct saa7164_port *port)
if (crc_checking) { if (crc_checking) {
crc = crc32(0, ubuf->data, ubuf->actual_size); crc = crc32(0, ubuf->data, ubuf->actual_size);
if (crc != ubuf->crc) { if (crc != ubuf->crc) {
printk(KERN_ERR "%s() ubuf %p crc became invalid, was 0x%x became 0x%x\n", __func__, printk(KERN_ERR
"%s() ubuf %p crc became invalid, was 0x%x became 0x%x\n",
__func__,
ubuf, ubuf->crc, crc); ubuf, ubuf->crc, crc);
} }
} }
...@@ -1201,9 +1210,8 @@ static ssize_t fops_read(struct file *file, char __user *buffer, ...@@ -1201,9 +1210,8 @@ static ssize_t fops_read(struct file *file, char __user *buffer,
buffer += cnt; buffer += cnt;
ret += cnt; ret += cnt;
if (ubuf->pos > ubuf->actual_size) { if (ubuf->pos > ubuf->actual_size)
printk(KERN_ERR "read() pos > actual, huh?\n"); printk(KERN_ERR "read() pos > actual, huh?\n");
}
if (ubuf->pos == ubuf->actual_size) { if (ubuf->pos == ubuf->actual_size) {
...@@ -1227,16 +1235,16 @@ static ssize_t fops_read(struct file *file, char __user *buffer, ...@@ -1227,16 +1235,16 @@ static ssize_t fops_read(struct file *file, char __user *buffer,
} }
} }
err: err:
if (!ret && !ubuf) { if (!ret && !ubuf)
ret = -EAGAIN; ret = -EAGAIN;
}
return ret; return ret;
} }
static unsigned int fops_poll(struct file *file, poll_table *wait) static unsigned int fops_poll(struct file *file, poll_table *wait)
{ {
struct saa7164_encoder_fh *fh = (struct saa7164_encoder_fh *)file->private_data; struct saa7164_encoder_fh *fh =
(struct saa7164_encoder_fh *)file->private_data;
struct saa7164_port *port = fh->port; struct saa7164_port *port = fh->port;
struct saa7164_user_buffer *ubuf; struct saa7164_user_buffer *ubuf;
unsigned int mask = 0; unsigned int mask = 0;
...@@ -1249,9 +1257,8 @@ static unsigned int fops_poll(struct file *file, poll_table *wait) ...@@ -1249,9 +1257,8 @@ static unsigned int fops_poll(struct file *file, poll_table *wait)
saa7164_histogram_update(&port->poll_interval, saa7164_histogram_update(&port->poll_interval,
port->last_poll_msecs_diff); port->last_poll_msecs_diff);
if (!video_is_registered(port->v4l_device)) { if (!video_is_registered(port->v4l_device))
return -EIO; return -EIO;
}
if (atomic_cmpxchg(&fh->v4l_reading, 0, 1) == 0) { if (atomic_cmpxchg(&fh->v4l_reading, 0, 1) == 0) {
if (atomic_inc_return(&port->v4l_reader_count) == 1) { if (atomic_inc_return(&port->v4l_reader_count) == 1) {
......
...@@ -178,7 +178,7 @@ int saa7164_downloadimage(struct saa7164_dev *dev, u8 *src, u32 srcsize, ...@@ -178,7 +178,7 @@ int saa7164_downloadimage(struct saa7164_dev *dev, u8 *src, u32 srcsize,
goto out; goto out;
} }
msleep(10); msleep(10); /* Checkpatch throws a < 20ms warning */
if (timeout++ > 60) if (timeout++ > 60)
break; break;
} }
...@@ -235,7 +235,7 @@ int saa7164_downloadfirmware(struct saa7164_dev *dev) ...@@ -235,7 +235,7 @@ int saa7164_downloadfirmware(struct saa7164_dev *dev)
while (err_flags != SAA_DEVICE_IMAGE_BOOTING) { while (err_flags != SAA_DEVICE_IMAGE_BOOTING) {
dprintk(DBGLVL_FW, "%s() err_flags = %x\n", dprintk(DBGLVL_FW, "%s() err_flags = %x\n",
__func__, err_flags); __func__, err_flags);
msleep(10); msleep(10); /* Checkpatch throws a < 20ms warning */
if (err_flags & SAA_DEVICE_IMAGE_CORRUPT) { if (err_flags & SAA_DEVICE_IMAGE_CORRUPT) {
printk(KERN_ERR "%s() firmware corrupt\n", printk(KERN_ERR "%s() firmware corrupt\n",
...@@ -294,7 +294,7 @@ int saa7164_downloadfirmware(struct saa7164_dev *dev) ...@@ -294,7 +294,7 @@ int saa7164_downloadfirmware(struct saa7164_dev *dev)
while (err_flags != SAA_DEVICE_IMAGE_BOOTING) { while (err_flags != SAA_DEVICE_IMAGE_BOOTING) {
dprintk(DBGLVL_FW, "%s() err_flags2 = %x\n", dprintk(DBGLVL_FW, "%s() err_flags2 = %x\n",
__func__, err_flags); __func__, err_flags);
msleep(10); msleep(10); /* Checkpatch throws a < 20ms warning */
if (err_flags & SAA_DEVICE_IMAGE_CORRUPT) { if (err_flags & SAA_DEVICE_IMAGE_CORRUPT) {
printk(KERN_ERR printk(KERN_ERR
...@@ -365,7 +365,7 @@ int saa7164_downloadfirmware(struct saa7164_dev *dev) ...@@ -365,7 +365,7 @@ int saa7164_downloadfirmware(struct saa7164_dev *dev)
first_timeout = SAA_DEVICE_TIMEOUT; first_timeout = SAA_DEVICE_TIMEOUT;
while (first_timeout) { while (first_timeout) {
msleep(10); msleep(10); /* Checkpatch throws a < 20ms warning */
version = version =
saa7164_getcurrentfirmwareversion(dev); saa7164_getcurrentfirmwareversion(dev);
......
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
#include <linux/moduleparam.h> #include <linux/moduleparam.h>
#include <linux/init.h> #include <linux/init.h>
#include <linux/delay.h> #include <linux/delay.h>
#include <asm/io.h> #include <linux/io.h>
#include "saa7164.h" #include "saa7164.h"
...@@ -65,7 +65,7 @@ static int i2c_xfer(struct i2c_adapter *i2c_adap, struct i2c_msg *msgs, int num) ...@@ -65,7 +65,7 @@ static int i2c_xfer(struct i2c_adapter *i2c_adap, struct i2c_msg *msgs, int num)
} }
return num; return num;
err: err:
return retval; return retval;
} }
......
...@@ -51,11 +51,15 @@ static void saa7164_vbi_configure(struct saa7164_port *port) ...@@ -51,11 +51,15 @@ static void saa7164_vbi_configure(struct saa7164_port *port)
/* Set up the DIF (enable it) for analog mode by default */ /* Set up the DIF (enable it) for analog mode by default */
saa7164_api_initialize_dif(port); saa7164_api_initialize_dif(port);
// /* Configure the correct video standard */ /* Configure the correct video standard */
// saa7164_api_configure_dif(port, port->encodernorm.id); #if 0
saa7164_api_configure_dif(port, port->encodernorm.id);
#endif
// /* Ensure the audio decoder is correct configured */ #if 0
// saa7164_api_set_audio_std(port); /* Ensure the audio decoder is correct configured */
saa7164_api_set_audio_std(port);
#endif
dprintk(DBGLVL_VBI, "%s() ends\n", __func__); dprintk(DBGLVL_VBI, "%s() ends\n", __func__);
} }
...@@ -919,8 +923,10 @@ static int saa7164_vbi_start_streaming(struct saa7164_port *port) ...@@ -919,8 +923,10 @@ static int saa7164_vbi_start_streaming(struct saa7164_port *port)
saa7164_vbi_buffers_alloc(port); saa7164_vbi_buffers_alloc(port);
/* Configure the encoder with any cache values */ /* Configure the encoder with any cache values */
// saa7164_api_set_encoder(port); #if 0
// saa7164_api_get_encoder(port); saa7164_api_set_encoder(port);
saa7164_api_get_encoder(port);
#endif
/* Place the empty buffers on the hardware */ /* Place the empty buffers on the hardware */
saa7164_buffer_cfg_port(port); saa7164_buffer_cfg_port(port);
...@@ -1060,7 +1066,8 @@ struct saa7164_user_buffer *saa7164_vbi_next_buf(struct saa7164_port *port) ...@@ -1060,7 +1066,8 @@ struct saa7164_user_buffer *saa7164_vbi_next_buf(struct saa7164_port *port)
if (crc_checking) { if (crc_checking) {
crc = crc32(0, ubuf->data, ubuf->actual_size); crc = crc32(0, ubuf->data, ubuf->actual_size);
if (crc != ubuf->crc) { if (crc != ubuf->crc) {
printk(KERN_ERR "%s() ubuf %p crc became invalid, was 0x%x became 0x%x\n", __func__, printk(KERN_ERR "%s() ubuf %p crc became invalid, was 0x%x became 0x%x\n",
__func__,
ubuf, ubuf->crc, crc); ubuf, ubuf->crc, crc);
} }
} }
...@@ -1148,9 +1155,8 @@ static ssize_t fops_read(struct file *file, char __user *buffer, ...@@ -1148,9 +1155,8 @@ static ssize_t fops_read(struct file *file, char __user *buffer,
buffer += cnt; buffer += cnt;
ret += cnt; ret += cnt;
if (ubuf->pos > ubuf->actual_size) { if (ubuf->pos > ubuf->actual_size)
printk(KERN_ERR "read() pos > actual, huh?\n"); printk(KERN_ERR "read() pos > actual, huh?\n");
}
if (ubuf->pos == ubuf->actual_size) { if (ubuf->pos == ubuf->actual_size) {
...@@ -1197,9 +1203,8 @@ static unsigned int fops_poll(struct file *file, poll_table *wait) ...@@ -1197,9 +1203,8 @@ static unsigned int fops_poll(struct file *file, poll_table *wait)
saa7164_histogram_update(&port->poll_interval, saa7164_histogram_update(&port->poll_interval,
port->last_poll_msecs_diff); port->last_poll_msecs_diff);
if (!video_is_registered(port->v4l_device)) { if (!video_is_registered(port->v4l_device))
return -EIO; return -EIO;
}
if (atomic_cmpxchg(&fh->v4l_reading, 0, 1) == 0) { if (atomic_cmpxchg(&fh->v4l_reading, 0, 1) == 0) {
if (atomic_inc_return(&port->v4l_reader_count) == 1) { if (atomic_inc_return(&port->v4l_reader_count) == 1) {
...@@ -1257,10 +1262,14 @@ static const struct v4l2_ioctl_ops vbi_ioctl_ops = { ...@@ -1257,10 +1262,14 @@ static const struct v4l2_ioctl_ops vbi_ioctl_ops = {
.vidioc_try_ext_ctrls = vidioc_try_ext_ctrls, .vidioc_try_ext_ctrls = vidioc_try_ext_ctrls,
.vidioc_log_status = vidioc_log_status, .vidioc_log_status = vidioc_log_status,
.vidioc_queryctrl = vidioc_queryctrl, .vidioc_queryctrl = vidioc_queryctrl,
// .vidioc_g_chip_ident = saa7164_g_chip_ident, #if 0
.vidioc_g_chip_ident = saa7164_g_chip_ident,
#endif
#ifdef CONFIG_VIDEO_ADV_DEBUG #ifdef CONFIG_VIDEO_ADV_DEBUG
// .vidioc_g_register = saa7164_g_register, #if 0
// .vidioc_s_register = saa7164_s_register, .vidioc_g_register = saa7164_g_register,
.vidioc_s_register = saa7164_s_register,
#endif
#endif #endif
.vidioc_g_fmt_vbi_cap = saa7164_vbi_fmt, .vidioc_g_fmt_vbi_cap = saa7164_vbi_fmt,
.vidioc_try_fmt_vbi_cap = saa7164_vbi_fmt, .vidioc_try_fmt_vbi_cap = saa7164_vbi_fmt,
......
...@@ -113,7 +113,8 @@ ...@@ -113,7 +113,8 @@
#define DBGLVL_THR 4096 #define DBGLVL_THR 4096
#define DBGLVL_CPU 8192 #define DBGLVL_CPU 8192
#define SAA7164_NORMS (V4L2_STD_NTSC_M | V4L2_STD_NTSC_M_JP | V4L2_STD_NTSC_443) #define SAA7164_NORMS \
(V4L2_STD_NTSC_M | V4L2_STD_NTSC_M_JP | V4L2_STD_NTSC_443)
enum port_t { enum port_t {
SAA7164_MPEG_UNDEFINED = 0, SAA7164_MPEG_UNDEFINED = 0,
...@@ -182,15 +183,11 @@ struct saa7164_subid { ...@@ -182,15 +183,11 @@ struct saa7164_subid {
struct saa7164_encoder_fh { struct saa7164_encoder_fh {
struct saa7164_port *port; struct saa7164_port *port;
// u32 freq;
// u32 tuner_type;
atomic_t v4l_reading; atomic_t v4l_reading;
}; };
struct saa7164_vbi_fh { struct saa7164_vbi_fh {
struct saa7164_port *port; struct saa7164_port *port;
// u32 freq;
// u32 tuner_type;
atomic_t v4l_reading; atomic_t v4l_reading;
}; };
...@@ -265,8 +262,6 @@ struct saa7164_ctrl { ...@@ -265,8 +262,6 @@ struct saa7164_ctrl {
struct saa7164_tvnorm { struct saa7164_tvnorm {
char *name; char *name;
v4l2_std_id id; v4l2_std_id id;
// u32 cxiformat;
// u32 cxoformat;
}; };
struct saa7164_encoder_params { struct saa7164_encoder_params {
...@@ -510,7 +505,8 @@ extern void saa7164_call_i2c_clients(struct saa7164_i2c *bus, ...@@ -510,7 +505,8 @@ extern void saa7164_call_i2c_clients(struct saa7164_i2c *bus,
/* saa7164-bus.c */ /* saa7164-bus.c */
int saa7164_bus_setup(struct saa7164_dev *dev); int saa7164_bus_setup(struct saa7164_dev *dev);
void saa7164_bus_dump(struct saa7164_dev *dev); void saa7164_bus_dump(struct saa7164_dev *dev);
int saa7164_bus_set(struct saa7164_dev *dev, struct tmComResInfo* msg, void *buf); int saa7164_bus_set(struct saa7164_dev *dev, struct tmComResInfo* msg,
void *buf);
int saa7164_bus_get(struct saa7164_dev *dev, struct tmComResInfo* msg, int saa7164_bus_get(struct saa7164_dev *dev, struct tmComResInfo* msg,
void *buf, int peekonly); void *buf, int peekonly);
...@@ -552,7 +548,8 @@ int saa7164_api_get_videomux(struct saa7164_port *port); ...@@ -552,7 +548,8 @@ int saa7164_api_get_videomux(struct saa7164_port *port);
int saa7164_api_set_vbi_format(struct saa7164_port *port); int saa7164_api_set_vbi_format(struct saa7164_port *port);
int saa7164_api_set_debug(struct saa7164_dev *dev, u8 level); int saa7164_api_set_debug(struct saa7164_dev *dev, u8 level);
int saa7164_api_collect_debug(struct saa7164_dev *dev); int saa7164_api_collect_debug(struct saa7164_dev *dev);
int saa7164_api_get_load_info(struct saa7164_dev *dev, struct tmFwInfoStruct *i); int saa7164_api_get_load_info(struct saa7164_dev *dev,
struct tmFwInfoStruct *i);
/* ----------------------------------------------------------- */ /* ----------------------------------------------------------- */
/* saa7164-cards.c */ /* saa7164-cards.c */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment