|
@@ -119,14 +119,14 @@
|
|
#define DEB(x,y) if (i596_debug & (x)) { y; }
|
|
#define DEB(x,y) if (i596_debug & (x)) { y; }
|
|
|
|
|
|
|
|
|
|
-#define CHECK_WBACK(addr,len) \
|
|
|
|
- do { dma_cache_sync((void *)addr, len, DMA_TO_DEVICE); } while (0)
|
|
|
|
|
|
+#define CHECK_WBACK(priv, addr,len) \
|
|
|
|
+ do { dma_cache_sync((priv)->dev, (void *)addr, len, DMA_TO_DEVICE); } while (0)
|
|
|
|
|
|
-#define CHECK_INV(addr,len) \
|
|
|
|
- do { dma_cache_sync((void *)addr, len, DMA_FROM_DEVICE); } while(0)
|
|
|
|
|
|
+#define CHECK_INV(priv, addr,len) \
|
|
|
|
+ do { dma_cache_sync((priv)->dev, (void *)addr, len, DMA_FROM_DEVICE); } while(0)
|
|
|
|
|
|
-#define CHECK_WBACK_INV(addr,len) \
|
|
|
|
- do { dma_cache_sync((void *)addr, len, DMA_BIDIRECTIONAL); } while (0)
|
|
|
|
|
|
+#define CHECK_WBACK_INV(priv, addr,len) \
|
|
|
|
+ do { dma_cache_sync((priv)->dev, (void *)addr, len, DMA_BIDIRECTIONAL); } while (0)
|
|
|
|
|
|
|
|
|
|
#define PA_I82596_RESET 0 /* Offsets relative to LASI-LAN-Addr.*/
|
|
#define PA_I82596_RESET 0 /* Offsets relative to LASI-LAN-Addr.*/
|
|
@@ -449,10 +449,10 @@ static inline void MPU_PORT(struct net_device *dev, int c, dma_addr_t x)
|
|
|
|
|
|
static inline int wait_istat(struct net_device *dev, struct i596_private *lp, int delcnt, char *str)
|
|
static inline int wait_istat(struct net_device *dev, struct i596_private *lp, int delcnt, char *str)
|
|
{
|
|
{
|
|
- CHECK_INV(&(lp->iscp), sizeof(struct i596_iscp));
|
|
|
|
|
|
+ CHECK_INV(lp, &(lp->iscp), sizeof(struct i596_iscp));
|
|
while (--delcnt && lp->iscp.stat) {
|
|
while (--delcnt && lp->iscp.stat) {
|
|
udelay(10);
|
|
udelay(10);
|
|
- CHECK_INV(&(lp->iscp), sizeof(struct i596_iscp));
|
|
|
|
|
|
+ CHECK_INV(lp, &(lp->iscp), sizeof(struct i596_iscp));
|
|
}
|
|
}
|
|
if (!delcnt) {
|
|
if (!delcnt) {
|
|
printk("%s: %s, iscp.stat %04x, didn't clear\n",
|
|
printk("%s: %s, iscp.stat %04x, didn't clear\n",
|
|
@@ -466,10 +466,10 @@ static inline int wait_istat(struct net_device *dev, struct i596_private *lp, in
|
|
|
|
|
|
static inline int wait_cmd(struct net_device *dev, struct i596_private *lp, int delcnt, char *str)
|
|
static inline int wait_cmd(struct net_device *dev, struct i596_private *lp, int delcnt, char *str)
|
|
{
|
|
{
|
|
- CHECK_INV(&(lp->scb), sizeof(struct i596_scb));
|
|
|
|
|
|
+ CHECK_INV(lp, &(lp->scb), sizeof(struct i596_scb));
|
|
while (--delcnt && lp->scb.command) {
|
|
while (--delcnt && lp->scb.command) {
|
|
udelay(10);
|
|
udelay(10);
|
|
- CHECK_INV(&(lp->scb), sizeof(struct i596_scb));
|
|
|
|
|
|
+ CHECK_INV(lp, &(lp->scb), sizeof(struct i596_scb));
|
|
}
|
|
}
|
|
if (!delcnt) {
|
|
if (!delcnt) {
|
|
printk("%s: %s, status %4.4x, cmd %4.4x.\n",
|
|
printk("%s: %s, status %4.4x, cmd %4.4x.\n",
|
|
@@ -522,7 +522,7 @@ static void i596_display_data(struct net_device *dev)
|
|
rbd, rbd->count, rbd->b_next, rbd->b_data, rbd->size);
|
|
rbd, rbd->count, rbd->b_next, rbd->b_data, rbd->size);
|
|
rbd = rbd->v_next;
|
|
rbd = rbd->v_next;
|
|
} while (rbd != lp->rbd_head);
|
|
} while (rbd != lp->rbd_head);
|
|
- CHECK_INV(lp, sizeof(struct i596_private));
|
|
|
|
|
|
+ CHECK_INV(lp, lp, sizeof(struct i596_private));
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
@@ -592,7 +592,7 @@ static inline void init_rx_bufs(struct net_device *dev)
|
|
rfd->b_next = WSWAPrfd(virt_to_dma(lp,lp->rfds));
|
|
rfd->b_next = WSWAPrfd(virt_to_dma(lp,lp->rfds));
|
|
rfd->cmd = CMD_EOL|CMD_FLEX;
|
|
rfd->cmd = CMD_EOL|CMD_FLEX;
|
|
|
|
|
|
- CHECK_WBACK_INV(lp, sizeof(struct i596_private));
|
|
|
|
|
|
+ CHECK_WBACK_INV(lp, lp, sizeof(struct i596_private));
|
|
}
|
|
}
|
|
|
|
|
|
static inline void remove_rx_bufs(struct net_device *dev)
|
|
static inline void remove_rx_bufs(struct net_device *dev)
|
|
@@ -629,7 +629,7 @@ static void rebuild_rx_bufs(struct net_device *dev)
|
|
lp->rbd_head = lp->rbds;
|
|
lp->rbd_head = lp->rbds;
|
|
lp->rfds[0].rbd = WSWAPrbd(virt_to_dma(lp,lp->rbds));
|
|
lp->rfds[0].rbd = WSWAPrbd(virt_to_dma(lp,lp->rbds));
|
|
|
|
|
|
- CHECK_WBACK_INV(lp, sizeof(struct i596_private));
|
|
|
|
|
|
+ CHECK_WBACK_INV(lp, lp, sizeof(struct i596_private));
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
@@ -663,8 +663,8 @@ static int init_i596_mem(struct net_device *dev)
|
|
|
|
|
|
DEB(DEB_INIT, printk("%s: starting i82596.\n", dev->name));
|
|
DEB(DEB_INIT, printk("%s: starting i82596.\n", dev->name));
|
|
|
|
|
|
- CHECK_WBACK(&(lp->scp), sizeof(struct i596_scp));
|
|
|
|
- CHECK_WBACK(&(lp->iscp), sizeof(struct i596_iscp));
|
|
|
|
|
|
+ CHECK_WBACK(lp, &(lp->scp), sizeof(struct i596_scp));
|
|
|
|
+ CHECK_WBACK(lp, &(lp->iscp), sizeof(struct i596_iscp));
|
|
|
|
|
|
MPU_PORT(dev, PORT_ALTSCP, virt_to_dma(lp,&lp->scp));
|
|
MPU_PORT(dev, PORT_ALTSCP, virt_to_dma(lp,&lp->scp));
|
|
|
|
|
|
@@ -678,25 +678,25 @@ static int init_i596_mem(struct net_device *dev)
|
|
rebuild_rx_bufs(dev);
|
|
rebuild_rx_bufs(dev);
|
|
|
|
|
|
lp->scb.command = 0;
|
|
lp->scb.command = 0;
|
|
- CHECK_WBACK(&(lp->scb), sizeof(struct i596_scb));
|
|
|
|
|
|
+ CHECK_WBACK(lp, &(lp->scb), sizeof(struct i596_scb));
|
|
|
|
|
|
enable_irq(dev->irq); /* enable IRQs from LAN */
|
|
enable_irq(dev->irq); /* enable IRQs from LAN */
|
|
|
|
|
|
DEB(DEB_INIT, printk("%s: queuing CmdConfigure\n", dev->name));
|
|
DEB(DEB_INIT, printk("%s: queuing CmdConfigure\n", dev->name));
|
|
memcpy(lp->cf_cmd.i596_config, init_setup, 14);
|
|
memcpy(lp->cf_cmd.i596_config, init_setup, 14);
|
|
lp->cf_cmd.cmd.command = CmdConfigure;
|
|
lp->cf_cmd.cmd.command = CmdConfigure;
|
|
- CHECK_WBACK(&(lp->cf_cmd), sizeof(struct cf_cmd));
|
|
|
|
|
|
+ CHECK_WBACK(lp, &(lp->cf_cmd), sizeof(struct cf_cmd));
|
|
i596_add_cmd(dev, &lp->cf_cmd.cmd);
|
|
i596_add_cmd(dev, &lp->cf_cmd.cmd);
|
|
|
|
|
|
DEB(DEB_INIT, printk("%s: queuing CmdSASetup\n", dev->name));
|
|
DEB(DEB_INIT, printk("%s: queuing CmdSASetup\n", dev->name));
|
|
memcpy(lp->sa_cmd.eth_addr, dev->dev_addr, 6);
|
|
memcpy(lp->sa_cmd.eth_addr, dev->dev_addr, 6);
|
|
lp->sa_cmd.cmd.command = CmdSASetup;
|
|
lp->sa_cmd.cmd.command = CmdSASetup;
|
|
- CHECK_WBACK(&(lp->sa_cmd), sizeof(struct sa_cmd));
|
|
|
|
|
|
+ CHECK_WBACK(lp, &(lp->sa_cmd), sizeof(struct sa_cmd));
|
|
i596_add_cmd(dev, &lp->sa_cmd.cmd);
|
|
i596_add_cmd(dev, &lp->sa_cmd.cmd);
|
|
|
|
|
|
DEB(DEB_INIT, printk("%s: queuing CmdTDR\n", dev->name));
|
|
DEB(DEB_INIT, printk("%s: queuing CmdTDR\n", dev->name));
|
|
lp->tdr_cmd.cmd.command = CmdTDR;
|
|
lp->tdr_cmd.cmd.command = CmdTDR;
|
|
- CHECK_WBACK(&(lp->tdr_cmd), sizeof(struct tdr_cmd));
|
|
|
|
|
|
+ CHECK_WBACK(lp, &(lp->tdr_cmd), sizeof(struct tdr_cmd));
|
|
i596_add_cmd(dev, &lp->tdr_cmd.cmd);
|
|
i596_add_cmd(dev, &lp->tdr_cmd.cmd);
|
|
|
|
|
|
spin_lock_irqsave (&lp->lock, flags);
|
|
spin_lock_irqsave (&lp->lock, flags);
|
|
@@ -708,7 +708,7 @@ static int init_i596_mem(struct net_device *dev)
|
|
DEB(DEB_INIT, printk("%s: Issuing RX_START\n", dev->name));
|
|
DEB(DEB_INIT, printk("%s: Issuing RX_START\n", dev->name));
|
|
lp->scb.command = RX_START;
|
|
lp->scb.command = RX_START;
|
|
lp->scb.rfd = WSWAPrfd(virt_to_dma(lp,lp->rfds));
|
|
lp->scb.rfd = WSWAPrfd(virt_to_dma(lp,lp->rfds));
|
|
- CHECK_WBACK(&(lp->scb), sizeof(struct i596_scb));
|
|
|
|
|
|
+ CHECK_WBACK(lp, &(lp->scb), sizeof(struct i596_scb));
|
|
|
|
|
|
CA(dev);
|
|
CA(dev);
|
|
|
|
|
|
@@ -740,13 +740,13 @@ static inline int i596_rx(struct net_device *dev)
|
|
|
|
|
|
rfd = lp->rfd_head; /* Ref next frame to check */
|
|
rfd = lp->rfd_head; /* Ref next frame to check */
|
|
|
|
|
|
- CHECK_INV(rfd, sizeof(struct i596_rfd));
|
|
|
|
|
|
+ CHECK_INV(lp, rfd, sizeof(struct i596_rfd));
|
|
while ((rfd->stat) & STAT_C) { /* Loop while complete frames */
|
|
while ((rfd->stat) & STAT_C) { /* Loop while complete frames */
|
|
if (rfd->rbd == I596_NULL)
|
|
if (rfd->rbd == I596_NULL)
|
|
rbd = NULL;
|
|
rbd = NULL;
|
|
else if (rfd->rbd == lp->rbd_head->b_addr) {
|
|
else if (rfd->rbd == lp->rbd_head->b_addr) {
|
|
rbd = lp->rbd_head;
|
|
rbd = lp->rbd_head;
|
|
- CHECK_INV(rbd, sizeof(struct i596_rbd));
|
|
|
|
|
|
+ CHECK_INV(lp, rbd, sizeof(struct i596_rbd));
|
|
}
|
|
}
|
|
else {
|
|
else {
|
|
printk("%s: rbd chain broken!\n", dev->name);
|
|
printk("%s: rbd chain broken!\n", dev->name);
|
|
@@ -790,7 +790,7 @@ static inline int i596_rx(struct net_device *dev)
|
|
dma_addr = dma_map_single(lp->dev, newskb->data, PKT_BUF_SZ, DMA_FROM_DEVICE);
|
|
dma_addr = dma_map_single(lp->dev, newskb->data, PKT_BUF_SZ, DMA_FROM_DEVICE);
|
|
rbd->v_data = newskb->data;
|
|
rbd->v_data = newskb->data;
|
|
rbd->b_data = WSWAPchar(dma_addr);
|
|
rbd->b_data = WSWAPchar(dma_addr);
|
|
- CHECK_WBACK_INV(rbd, sizeof(struct i596_rbd));
|
|
|
|
|
|
+ CHECK_WBACK_INV(lp, rbd, sizeof(struct i596_rbd));
|
|
}
|
|
}
|
|
else
|
|
else
|
|
skb = dev_alloc_skb(pkt_len + 2);
|
|
skb = dev_alloc_skb(pkt_len + 2);
|
|
@@ -842,7 +842,7 @@ memory_squeeze:
|
|
if (rbd != NULL && (rbd->count & 0x4000)) {
|
|
if (rbd != NULL && (rbd->count & 0x4000)) {
|
|
rbd->count = 0;
|
|
rbd->count = 0;
|
|
lp->rbd_head = rbd->v_next;
|
|
lp->rbd_head = rbd->v_next;
|
|
- CHECK_WBACK_INV(rbd, sizeof(struct i596_rbd));
|
|
|
|
|
|
+ CHECK_WBACK_INV(lp, rbd, sizeof(struct i596_rbd));
|
|
}
|
|
}
|
|
|
|
|
|
/* Tidy the frame descriptor, marking it as end of list */
|
|
/* Tidy the frame descriptor, marking it as end of list */
|
|
@@ -860,10 +860,10 @@ memory_squeeze:
|
|
|
|
|
|
lp->scb.rfd = rfd->b_next;
|
|
lp->scb.rfd = rfd->b_next;
|
|
lp->rfd_head = rfd->v_next;
|
|
lp->rfd_head = rfd->v_next;
|
|
- CHECK_WBACK_INV(rfd->v_prev, sizeof(struct i596_rfd));
|
|
|
|
- CHECK_WBACK_INV(rfd, sizeof(struct i596_rfd));
|
|
|
|
|
|
+ CHECK_WBACK_INV(lp, rfd->v_prev, sizeof(struct i596_rfd));
|
|
|
|
+ CHECK_WBACK_INV(lp, rfd, sizeof(struct i596_rfd));
|
|
rfd = lp->rfd_head;
|
|
rfd = lp->rfd_head;
|
|
- CHECK_INV(rfd, sizeof(struct i596_rfd));
|
|
|
|
|
|
+ CHECK_INV(lp, rfd, sizeof(struct i596_rfd));
|
|
}
|
|
}
|
|
|
|
|
|
DEB(DEB_RXFRAME, printk("frames %d\n", frames));
|
|
DEB(DEB_RXFRAME, printk("frames %d\n", frames));
|
|
@@ -902,12 +902,12 @@ static inline void i596_cleanup_cmd(struct net_device *dev, struct i596_private
|
|
ptr->v_next = NULL;
|
|
ptr->v_next = NULL;
|
|
ptr->b_next = I596_NULL;
|
|
ptr->b_next = I596_NULL;
|
|
}
|
|
}
|
|
- CHECK_WBACK_INV(ptr, sizeof(struct i596_cmd));
|
|
|
|
|
|
+ CHECK_WBACK_INV(lp, ptr, sizeof(struct i596_cmd));
|
|
}
|
|
}
|
|
|
|
|
|
wait_cmd(dev, lp, 100, "i596_cleanup_cmd timed out");
|
|
wait_cmd(dev, lp, 100, "i596_cleanup_cmd timed out");
|
|
lp->scb.cmd = I596_NULL;
|
|
lp->scb.cmd = I596_NULL;
|
|
- CHECK_WBACK(&(lp->scb), sizeof(struct i596_scb));
|
|
|
|
|
|
+ CHECK_WBACK(lp, &(lp->scb), sizeof(struct i596_scb));
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
@@ -925,7 +925,7 @@ static inline void i596_reset(struct net_device *dev, struct i596_private *lp)
|
|
|
|
|
|
/* FIXME: this command might cause an lpmc */
|
|
/* FIXME: this command might cause an lpmc */
|
|
lp->scb.command = CUC_ABORT | RX_ABORT;
|
|
lp->scb.command = CUC_ABORT | RX_ABORT;
|
|
- CHECK_WBACK(&(lp->scb), sizeof(struct i596_scb));
|
|
|
|
|
|
+ CHECK_WBACK(lp, &(lp->scb), sizeof(struct i596_scb));
|
|
CA(dev);
|
|
CA(dev);
|
|
|
|
|
|
/* wait for shutdown */
|
|
/* wait for shutdown */
|
|
@@ -951,20 +951,20 @@ static void i596_add_cmd(struct net_device *dev, struct i596_cmd *cmd)
|
|
cmd->command |= (CMD_EOL | CMD_INTR);
|
|
cmd->command |= (CMD_EOL | CMD_INTR);
|
|
cmd->v_next = NULL;
|
|
cmd->v_next = NULL;
|
|
cmd->b_next = I596_NULL;
|
|
cmd->b_next = I596_NULL;
|
|
- CHECK_WBACK(cmd, sizeof(struct i596_cmd));
|
|
|
|
|
|
+ CHECK_WBACK(lp, cmd, sizeof(struct i596_cmd));
|
|
|
|
|
|
spin_lock_irqsave (&lp->lock, flags);
|
|
spin_lock_irqsave (&lp->lock, flags);
|
|
|
|
|
|
if (lp->cmd_head != NULL) {
|
|
if (lp->cmd_head != NULL) {
|
|
lp->cmd_tail->v_next = cmd;
|
|
lp->cmd_tail->v_next = cmd;
|
|
lp->cmd_tail->b_next = WSWAPcmd(virt_to_dma(lp,&cmd->status));
|
|
lp->cmd_tail->b_next = WSWAPcmd(virt_to_dma(lp,&cmd->status));
|
|
- CHECK_WBACK(lp->cmd_tail, sizeof(struct i596_cmd));
|
|
|
|
|
|
+ CHECK_WBACK(lp, lp->cmd_tail, sizeof(struct i596_cmd));
|
|
} else {
|
|
} else {
|
|
lp->cmd_head = cmd;
|
|
lp->cmd_head = cmd;
|
|
wait_cmd(dev, lp, 100, "i596_add_cmd timed out");
|
|
wait_cmd(dev, lp, 100, "i596_add_cmd timed out");
|
|
lp->scb.cmd = WSWAPcmd(virt_to_dma(lp,&cmd->status));
|
|
lp->scb.cmd = WSWAPcmd(virt_to_dma(lp,&cmd->status));
|
|
lp->scb.command = CUC_START;
|
|
lp->scb.command = CUC_START;
|
|
- CHECK_WBACK(&(lp->scb), sizeof(struct i596_scb));
|
|
|
|
|
|
+ CHECK_WBACK(lp, &(lp->scb), sizeof(struct i596_scb));
|
|
CA(dev);
|
|
CA(dev);
|
|
}
|
|
}
|
|
lp->cmd_tail = cmd;
|
|
lp->cmd_tail = cmd;
|
|
@@ -998,12 +998,12 @@ static int i596_test(struct net_device *dev)
|
|
data = virt_to_dma(lp,tint);
|
|
data = virt_to_dma(lp,tint);
|
|
|
|
|
|
tint[1] = -1;
|
|
tint[1] = -1;
|
|
- CHECK_WBACK(tint,PAGE_SIZE);
|
|
|
|
|
|
+ CHECK_WBACK(lp, tint, PAGE_SIZE);
|
|
|
|
|
|
MPU_PORT(dev, 1, data);
|
|
MPU_PORT(dev, 1, data);
|
|
|
|
|
|
for(data = 1000000; data; data--) {
|
|
for(data = 1000000; data; data--) {
|
|
- CHECK_INV(tint,PAGE_SIZE);
|
|
|
|
|
|
+ CHECK_INV(lp, tint, PAGE_SIZE);
|
|
if(tint[1] != -1)
|
|
if(tint[1] != -1)
|
|
break;
|
|
break;
|
|
|
|
|
|
@@ -1061,7 +1061,7 @@ static void i596_tx_timeout (struct net_device *dev)
|
|
/* Issue a channel attention signal */
|
|
/* Issue a channel attention signal */
|
|
DEB(DEB_ERRORS, printk("Kicking board.\n"));
|
|
DEB(DEB_ERRORS, printk("Kicking board.\n"));
|
|
lp->scb.command = CUC_START | RX_START;
|
|
lp->scb.command = CUC_START | RX_START;
|
|
- CHECK_WBACK_INV(&(lp->scb), sizeof(struct i596_scb));
|
|
|
|
|
|
+ CHECK_WBACK_INV(lp, &(lp->scb), sizeof(struct i596_scb));
|
|
CA (dev);
|
|
CA (dev);
|
|
lp->last_restart = lp->stats.tx_packets;
|
|
lp->last_restart = lp->stats.tx_packets;
|
|
}
|
|
}
|
|
@@ -1118,8 +1118,8 @@ static int i596_start_xmit(struct sk_buff *skb, struct net_device *dev)
|
|
tbd->data = WSWAPchar(tx_cmd->dma_addr);
|
|
tbd->data = WSWAPchar(tx_cmd->dma_addr);
|
|
|
|
|
|
DEB(DEB_TXADDR,print_eth(skb->data, "tx-queued"));
|
|
DEB(DEB_TXADDR,print_eth(skb->data, "tx-queued"));
|
|
- CHECK_WBACK_INV(tx_cmd, sizeof(struct tx_cmd));
|
|
|
|
- CHECK_WBACK_INV(tbd, sizeof(struct i596_tbd));
|
|
|
|
|
|
+ CHECK_WBACK_INV(lp, tx_cmd, sizeof(struct tx_cmd));
|
|
|
|
+ CHECK_WBACK_INV(lp, tbd, sizeof(struct i596_tbd));
|
|
i596_add_cmd(dev, &tx_cmd->cmd);
|
|
i596_add_cmd(dev, &tx_cmd->cmd);
|
|
|
|
|
|
lp->stats.tx_packets++;
|
|
lp->stats.tx_packets++;
|
|
@@ -1228,7 +1228,7 @@ static int __devinit i82596_probe(struct net_device *dev,
|
|
lp->dma_addr = dma_addr;
|
|
lp->dma_addr = dma_addr;
|
|
lp->dev = gen_dev;
|
|
lp->dev = gen_dev;
|
|
|
|
|
|
- CHECK_WBACK_INV(dev->mem_start, sizeof(struct i596_private));
|
|
|
|
|
|
+ CHECK_WBACK_INV(lp, dev->mem_start, sizeof(struct i596_private));
|
|
|
|
|
|
i = register_netdev(dev);
|
|
i = register_netdev(dev);
|
|
if (i) {
|
|
if (i) {
|
|
@@ -1295,7 +1295,7 @@ static irqreturn_t i596_interrupt(int irq, void *dev_id)
|
|
DEB(DEB_INTS, printk("%s: i596 interrupt command unit inactive %x.\n", dev->name, status & 0x0700));
|
|
DEB(DEB_INTS, printk("%s: i596 interrupt command unit inactive %x.\n", dev->name, status & 0x0700));
|
|
|
|
|
|
while (lp->cmd_head != NULL) {
|
|
while (lp->cmd_head != NULL) {
|
|
- CHECK_INV(lp->cmd_head, sizeof(struct i596_cmd));
|
|
|
|
|
|
+ CHECK_INV(lp, lp->cmd_head, sizeof(struct i596_cmd));
|
|
if (!(lp->cmd_head->status & STAT_C))
|
|
if (!(lp->cmd_head->status & STAT_C))
|
|
break;
|
|
break;
|
|
|
|
|
|
@@ -1358,7 +1358,7 @@ static irqreturn_t i596_interrupt(int irq, void *dev_id)
|
|
}
|
|
}
|
|
ptr->v_next = NULL;
|
|
ptr->v_next = NULL;
|
|
ptr->b_next = I596_NULL;
|
|
ptr->b_next = I596_NULL;
|
|
- CHECK_WBACK(ptr, sizeof(struct i596_cmd));
|
|
|
|
|
|
+ CHECK_WBACK(lp, ptr, sizeof(struct i596_cmd));
|
|
lp->last_cmd = jiffies;
|
|
lp->last_cmd = jiffies;
|
|
}
|
|
}
|
|
|
|
|
|
@@ -1372,13 +1372,13 @@ static irqreturn_t i596_interrupt(int irq, void *dev_id)
|
|
|
|
|
|
ptr->command &= 0x1fff;
|
|
ptr->command &= 0x1fff;
|
|
ptr = ptr->v_next;
|
|
ptr = ptr->v_next;
|
|
- CHECK_WBACK_INV(prev, sizeof(struct i596_cmd));
|
|
|
|
|
|
+ CHECK_WBACK_INV(lp, prev, sizeof(struct i596_cmd));
|
|
}
|
|
}
|
|
|
|
|
|
if ((lp->cmd_head != NULL))
|
|
if ((lp->cmd_head != NULL))
|
|
ack_cmd |= CUC_START;
|
|
ack_cmd |= CUC_START;
|
|
lp->scb.cmd = WSWAPcmd(virt_to_dma(lp,&lp->cmd_head->status));
|
|
lp->scb.cmd = WSWAPcmd(virt_to_dma(lp,&lp->cmd_head->status));
|
|
- CHECK_WBACK_INV(&lp->scb, sizeof(struct i596_scb));
|
|
|
|
|
|
+ CHECK_WBACK_INV(lp, &lp->scb, sizeof(struct i596_scb));
|
|
}
|
|
}
|
|
if ((status & 0x1000) || (status & 0x4000)) {
|
|
if ((status & 0x1000) || (status & 0x4000)) {
|
|
if ((status & 0x4000))
|
|
if ((status & 0x4000))
|
|
@@ -1397,7 +1397,7 @@ static irqreturn_t i596_interrupt(int irq, void *dev_id)
|
|
}
|
|
}
|
|
wait_cmd(dev, lp, 100, "i596 interrupt, timeout");
|
|
wait_cmd(dev, lp, 100, "i596 interrupt, timeout");
|
|
lp->scb.command = ack_cmd;
|
|
lp->scb.command = ack_cmd;
|
|
- CHECK_WBACK(&lp->scb, sizeof(struct i596_scb));
|
|
|
|
|
|
+ CHECK_WBACK(lp, &lp->scb, sizeof(struct i596_scb));
|
|
|
|
|
|
/* DANGER: I suspect that some kind of interrupt
|
|
/* DANGER: I suspect that some kind of interrupt
|
|
acknowledgement aside from acking the 82596 might be needed
|
|
acknowledgement aside from acking the 82596 might be needed
|
|
@@ -1426,7 +1426,7 @@ static int i596_close(struct net_device *dev)
|
|
|
|
|
|
wait_cmd(dev, lp, 100, "close1 timed out");
|
|
wait_cmd(dev, lp, 100, "close1 timed out");
|
|
lp->scb.command = CUC_ABORT | RX_ABORT;
|
|
lp->scb.command = CUC_ABORT | RX_ABORT;
|
|
- CHECK_WBACK(&lp->scb, sizeof(struct i596_scb));
|
|
|
|
|
|
+ CHECK_WBACK(lp, &lp->scb, sizeof(struct i596_scb));
|
|
|
|
|
|
CA(dev);
|
|
CA(dev);
|
|
|
|
|
|
@@ -1486,7 +1486,7 @@ static void set_multicast_list(struct net_device *dev)
|
|
dev->name);
|
|
dev->name);
|
|
else {
|
|
else {
|
|
lp->cf_cmd.cmd.command = CmdConfigure;
|
|
lp->cf_cmd.cmd.command = CmdConfigure;
|
|
- CHECK_WBACK_INV(&lp->cf_cmd, sizeof(struct cf_cmd));
|
|
|
|
|
|
+ CHECK_WBACK_INV(lp, &lp->cf_cmd, sizeof(struct cf_cmd));
|
|
i596_add_cmd(dev, &lp->cf_cmd.cmd);
|
|
i596_add_cmd(dev, &lp->cf_cmd.cmd);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@@ -1514,7 +1514,7 @@ static void set_multicast_list(struct net_device *dev)
|
|
DEB(DEB_MULTI, printk("%s: Adding address %02x:%02x:%02x:%02x:%02x:%02x\n",
|
|
DEB(DEB_MULTI, printk("%s: Adding address %02x:%02x:%02x:%02x:%02x:%02x\n",
|
|
dev->name, cp[0],cp[1],cp[2],cp[3],cp[4],cp[5]));
|
|
dev->name, cp[0],cp[1],cp[2],cp[3],cp[4],cp[5]));
|
|
}
|
|
}
|
|
- CHECK_WBACK_INV(&lp->mc_cmd, sizeof(struct mc_cmd));
|
|
|
|
|
|
+ CHECK_WBACK_INV(lp, &lp->mc_cmd, sizeof(struct mc_cmd));
|
|
i596_add_cmd(dev, &cmd->cmd);
|
|
i596_add_cmd(dev, &cmd->cmd);
|
|
}
|
|
}
|
|
}
|
|
}
|