Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 56546
b: refs/heads/master
c: 50432cb
h: refs/heads/master
v: v3
  • Loading branch information
Stephen Hemminger authored and Jeff Garzik committed May 18, 2007
1 parent 79e8cfc commit 9ba1339
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 84787e3fc38a4847e5d75388d5a7fb3cf6bd7834
refs/heads/master: 50432cb534b566c4fd9e371fb37464a65ccd2391
15 changes: 11 additions & 4 deletions trunk/drivers/net/sky2.c
Original file line number Diff line number Diff line change
Expand Up @@ -844,10 +844,12 @@ static inline struct tx_ring_info *tx_le_re(struct sky2_port *sky2,
/* Update chip's next pointer */
static inline void sky2_put_idx(struct sky2_hw *hw, unsigned q, u16 idx)
{
q = Y2_QADDR(q, PREF_UNIT_PUT_IDX);
/* Make sure write' to descriptors are complete before we tell hardware */
wmb();
sky2_write16(hw, q, idx);
sky2_read16(hw, q);
sky2_write16(hw, Y2_QADDR(q, PREF_UNIT_PUT_IDX), idx);

/* Synchronize I/O on since next processor may write to tail */
mmiowb();
}


Expand Down Expand Up @@ -979,6 +981,7 @@ static void sky2_rx_stop(struct sky2_port *sky2)

/* reset the Rx prefetch unit */
sky2_write32(hw, Y2_QADDR(rxq, PREF_UNIT_CTRL), PREF_UNIT_RST_SET);
mmiowb();
}

/* Clean out receive buffer area, assumes receiver hardware stopped */
Expand Down Expand Up @@ -1198,7 +1201,7 @@ static int sky2_rx_start(struct sky2_port *sky2)
}

/* Tell chip about available buffers */
sky2_write16(hw, Y2_QADDR(rxq, PREF_UNIT_PUT_IDX), sky2->rx_put);
sky2_put_idx(hw, rxq, sky2->rx_put);
return 0;
nomem:
sky2_rx_clean(sky2);
Expand Down Expand Up @@ -1540,6 +1543,8 @@ static void sky2_tx_complete(struct sky2_port *sky2, u16 done)
}

sky2->tx_cons = idx;
smp_mb();

if (tx_avail(sky2) > MAX_SKB_TX_LE + 4)
netif_wake_queue(dev);
}
Expand Down Expand Up @@ -2218,6 +2223,7 @@ static int sky2_status_intr(struct sky2_hw *hw, int to_do)

/* Fully processed status ring so clear irq */
sky2_write32(hw, STAT_CTRL, SC_STAT_CLR_IRQ);
mmiowb();

exit_loop:
if (buf_write[0]) {
Expand Down Expand Up @@ -2442,6 +2448,7 @@ static int sky2_poll(struct net_device *dev0, int *budget)
if (work_done < work_limit) {
netif_rx_complete(dev0);

/* end of interrupt, re-enables also acts as I/O synchronization */
sky2_read32(hw, B0_Y2_SP_LISR);
return 0;
} else {
Expand Down

0 comments on commit 9ba1339

Please sign in to comment.