Commit 09fd65aa authored by Krzysztof Hałasa's avatar Krzysztof Hałasa

WAN: TX-done handler now uses the ownership bit in HD64572 drivers.

Signed-off-by: default avatarKrzysztof Hałasa <khc@pm.waw.pl>
parent abc9d91a
...@@ -338,7 +338,6 @@ static inline int sca_rx_done(port_t *port, int budget) ...@@ -338,7 +338,6 @@ static inline int sca_rx_done(port_t *port, int budget)
static inline void sca_tx_done(port_t *port) static inline void sca_tx_done(port_t *port)
{ {
struct net_device *dev = port_to_dev(port); struct net_device *dev = port_to_dev(port);
u16 dmac = get_dmac_tx(port);
card_t* card = port_to_card(port); card_t* card = port_to_card(port);
u8 stat; u8 stat;
...@@ -351,14 +350,10 @@ static inline void sca_tx_done(port_t *port) ...@@ -351,14 +350,10 @@ static inline void sca_tx_done(port_t *port)
DSR_TX(phy_node(port)), card); DSR_TX(phy_node(port)), card);
while (1) { while (1) {
pkt_desc __iomem *desc; pkt_desc __iomem *desc = desc_address(port, port->txlast, 1);
u32 desc_off = desc_offset(port, port->txlast, 1);
u32 cda = sca_inl(dmac + CDAL, card);
if ((cda >= desc_off) && (cda < desc_off + sizeof(pkt_desc)))
break; /* Transmitter is/will_be sending this frame */
desc = desc_address(port, port->txlast, 1); if (!(readb(&desc->stat) & ST_TX_OWNRSHP))
break; /* not yet transmitted */
dev->stats.tx_packets++; dev->stats.tx_packets++;
dev->stats.tx_bytes += readw(&desc->len); dev->stats.tx_bytes += readw(&desc->len);
writeb(0, &desc->stat); /* Free descriptor */ writeb(0, &desc->stat); /* Free descriptor */
......
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