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

V4L/DVB (12927): SAA7164: Remove volatiles for PCI writes (coding style violation)

Signed-off-by: default avatarSteven Toth <stoth@kernellabs.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 9d119c33
...@@ -257,7 +257,7 @@ int saa7164_bus_set(struct saa7164_dev *dev, tmComResInfo_t* msg, void *buf) ...@@ -257,7 +257,7 @@ int saa7164_bus_set(struct saa7164_dev *dev, tmComResInfo_t* msg, void *buf)
dprintk(DBGLVL_BUS, "%s() new_swp = %x\n", __func__, new_swp); dprintk(DBGLVL_BUS, "%s() new_swp = %x\n", __func__, new_swp);
/* TODO: Convert all of the volatiles and direct PCI writes into /* TODO: Convert all of the direct PCI writes into
* saa7164_writel/b calls for consistency. * saa7164_writel/b calls for consistency.
*/ */
......
...@@ -126,12 +126,13 @@ static irqreturn_t saa7164_irq(int irq, void *dev_id) ...@@ -126,12 +126,13 @@ static irqreturn_t saa7164_irq(int irq, void *dev_id)
/* Check that the hardware is accessable. If the status bytes are /* Check that the hardware is accessable. If the status bytes are
* 0xFF then the device is not accessable, the the IRQ belongs * 0xFF then the device is not accessable, the the IRQ belongs
* to another driver. * to another driver.
* 4 x u32 interrupt registers.
*/ */
for (i = 0; i < INT_SIZE/4; i++) { for (i = 0; i < INT_SIZE/4; i++) {
/* TODO: Convert into saa7164_readl() */ /* TODO: Convert into saa7164_readl() */
/* Read the 4 hardware interrupt registers */ /* Read the 4 hardware interrupt registers */
intstat[i] = *(dev->InterruptStatus + i); intstat[i] = saa7164_readl(dev->int_status + (i * 4));
if (intstat[i] != 0xffffffff) if (intstat[i] != 0xffffffff)
hwacc = 1; hwacc = 1;
...@@ -184,9 +185,8 @@ static irqreturn_t saa7164_irq(int irq, void *dev_id) ...@@ -184,9 +185,8 @@ static irqreturn_t saa7164_irq(int irq, void *dev_id)
} }
} }
/* TODO: Convert into saa7164_writel() */
/* Ack it */ /* Ack it */
*(dev->InterruptAck + i) = intstat[i]; saa7164_writel(dev->int_ack + (i * 4), intstat[i]);
} }
} }
...@@ -487,9 +487,9 @@ static int saa7164_dev_setup(struct saa7164_dev *dev) ...@@ -487,9 +487,9 @@ static int saa7164_dev_setup(struct saa7164_dev *dev)
printk(KERN_INFO "CORE %s: dev->bmmio2 = 0x%p\n", dev->name, printk(KERN_INFO "CORE %s: dev->bmmio2 = 0x%p\n", dev->name,
dev->bmmio2); dev->bmmio2);
/* TODO: Magic defines used in the windows driver, define these */ /* Inerrupt and ack register locations offset of bmmio */
dev->InterruptStatus = (u32 *)(dev->bmmio + 0x183000 + 0xf80); dev->int_status = 0x183000 + 0xf80;
dev->InterruptAck = (u32 *)(dev->bmmio + 0x183000 + 0xf90); dev->int_ack = 0x183000 + 0xf90;
printk(KERN_INFO printk(KERN_INFO
"CORE %s: subsystem: %04x:%04x, board: %s [card=%d,%s]\n", "CORE %s: subsystem: %04x:%04x, board: %s [card=%d,%s]\n",
......
...@@ -274,9 +274,9 @@ struct saa7164_dev { ...@@ -274,9 +274,9 @@ struct saa7164_dev {
tmComResBusInfo_t bus; tmComResBusInfo_t bus;
/* TODO: Urgh, remove volatiles */ /* Interrupt status and ack registers */
volatile u32 *InterruptStatus; u32 int_status;
volatile u32 *InterruptAck; u32 int_ack;
struct cmd cmds[SAA_CMD_MAX_MSG_UNITS]; struct cmd cmds[SAA_CMD_MAX_MSG_UNITS];
struct mutex lock; struct mutex lock;
......
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