Commit 03290907 authored by Sean Anderson's avatar Sean Anderson Committed by Jakub Kicinski

sunhme: Convert FOO((...)) to FOO(...)

With the power of variadic macros, double parentheses are unnecessary.
Signed-off-by: default avatarSean Anderson <seanga2@gmail.com>
Signed-off-by: default avatarJakub Kicinski <kuba@kernel.org>
parent 914d9b27
...@@ -134,17 +134,17 @@ static __inline__ void tx_dump_log(void) ...@@ -134,17 +134,17 @@ static __inline__ void tx_dump_log(void)
#endif #endif
#ifdef HMEDEBUG #ifdef HMEDEBUG
#define HMD(x) printk x #define HMD printk
#else #else
#define HMD(x) #define HMD(...)
#endif #endif
/* #define AUTO_SWITCH_DEBUG */ /* #define AUTO_SWITCH_DEBUG */
#ifdef AUTO_SWITCH_DEBUG #ifdef AUTO_SWITCH_DEBUG
#define ASD(x) printk x #define ASD printk
#else #else
#define ASD(x) #define ASD(...)
#endif #endif
#define DEFAULT_IPG0 16 /* For lance-mode only */ #define DEFAULT_IPG0 16 /* For lance-mode only */
...@@ -320,7 +320,7 @@ static int happy_meal_bb_read(struct happy_meal *hp, ...@@ -320,7 +320,7 @@ static int happy_meal_bb_read(struct happy_meal *hp,
int retval = 0; int retval = 0;
int i; int i;
ASD(("happy_meal_bb_read: reg=%d ", reg)); ASD("happy_meal_bb_read: reg=%d ", reg);
/* Enable the MIF BitBang outputs. */ /* Enable the MIF BitBang outputs. */
hme_write32(hp, tregs + TCVR_BBOENAB, 1); hme_write32(hp, tregs + TCVR_BBOENAB, 1);
...@@ -355,7 +355,7 @@ static int happy_meal_bb_read(struct happy_meal *hp, ...@@ -355,7 +355,7 @@ static int happy_meal_bb_read(struct happy_meal *hp,
(void) BB_GET_BIT2(hp, tregs, (hp->tcvr_type == internal)); (void) BB_GET_BIT2(hp, tregs, (hp->tcvr_type == internal));
(void) BB_GET_BIT2(hp, tregs, (hp->tcvr_type == internal)); (void) BB_GET_BIT2(hp, tregs, (hp->tcvr_type == internal));
(void) BB_GET_BIT2(hp, tregs, (hp->tcvr_type == internal)); (void) BB_GET_BIT2(hp, tregs, (hp->tcvr_type == internal));
ASD(("value=%x\n", retval)); ASD("value=%x\n", retval);
return retval; return retval;
} }
...@@ -366,7 +366,7 @@ static void happy_meal_bb_write(struct happy_meal *hp, ...@@ -366,7 +366,7 @@ static void happy_meal_bb_write(struct happy_meal *hp,
u32 tmp; u32 tmp;
int i; int i;
ASD(("happy_meal_bb_write: reg=%d value=%x\n", reg, value)); ASD("happy_meal_bb_write: reg=%d value=%x\n", reg, value);
/* Enable the MIF BitBang outputs. */ /* Enable the MIF BitBang outputs. */
hme_write32(hp, tregs + TCVR_BBOENAB, 1); hme_write32(hp, tregs + TCVR_BBOENAB, 1);
...@@ -410,14 +410,14 @@ static int happy_meal_tcvr_read(struct happy_meal *hp, ...@@ -410,14 +410,14 @@ static int happy_meal_tcvr_read(struct happy_meal *hp,
int tries = TCVR_READ_TRIES; int tries = TCVR_READ_TRIES;
int retval; int retval;
ASD(("happy_meal_tcvr_read: reg=0x%02x ", reg)); ASD("happy_meal_tcvr_read: reg=0x%02x ", reg);
if (hp->tcvr_type == none) { if (hp->tcvr_type == none) {
ASD(("no transceiver, value=TCVR_FAILURE\n")); ASD("no transceiver, value=TCVR_FAILURE\n");
return TCVR_FAILURE; return TCVR_FAILURE;
} }
if (!(hp->happy_flags & HFLAG_FENABLE)) { if (!(hp->happy_flags & HFLAG_FENABLE)) {
ASD(("doing bit bang\n")); ASD("doing bit bang\n");
return happy_meal_bb_read(hp, tregs, reg); return happy_meal_bb_read(hp, tregs, reg);
} }
...@@ -430,7 +430,7 @@ static int happy_meal_tcvr_read(struct happy_meal *hp, ...@@ -430,7 +430,7 @@ static int happy_meal_tcvr_read(struct happy_meal *hp,
return TCVR_FAILURE; return TCVR_FAILURE;
} }
retval = hme_read32(hp, tregs + TCVR_FRAME) & 0xffff; retval = hme_read32(hp, tregs + TCVR_FRAME) & 0xffff;
ASD(("value=%04x\n", retval)); ASD("value=%04x\n", retval);
return retval; return retval;
} }
...@@ -442,7 +442,7 @@ static void happy_meal_tcvr_write(struct happy_meal *hp, ...@@ -442,7 +442,7 @@ static void happy_meal_tcvr_write(struct happy_meal *hp,
{ {
int tries = TCVR_WRITE_TRIES; int tries = TCVR_WRITE_TRIES;
ASD(("happy_meal_tcvr_write: reg=0x%02x value=%04x\n", reg, value)); ASD("happy_meal_tcvr_write: reg=0x%02x value=%04x\n", reg, value);
/* Welcome to Sun Microsystems, can I take your order please? */ /* Welcome to Sun Microsystems, can I take your order please? */
if (!(hp->happy_flags & HFLAG_FENABLE)) { if (!(hp->happy_flags & HFLAG_FENABLE)) {
...@@ -807,7 +807,7 @@ static void happy_meal_tx_reset(struct happy_meal *hp, void __iomem *bregs) ...@@ -807,7 +807,7 @@ static void happy_meal_tx_reset(struct happy_meal *hp, void __iomem *bregs)
{ {
int tries = TX_RESET_TRIES; int tries = TX_RESET_TRIES;
HMD(("happy_meal_tx_reset: reset, ")); HMD("happy_meal_tx_reset: reset, ");
/* Would you like to try our SMCC Delux? */ /* Would you like to try our SMCC Delux? */
hme_write32(hp, bregs + BMAC_TXSWRESET, 0); hme_write32(hp, bregs + BMAC_TXSWRESET, 0);
...@@ -819,7 +819,7 @@ static void happy_meal_tx_reset(struct happy_meal *hp, void __iomem *bregs) ...@@ -819,7 +819,7 @@ static void happy_meal_tx_reset(struct happy_meal *hp, void __iomem *bregs)
printk(KERN_ERR "happy meal: Transceiver BigMac ATTACK!"); printk(KERN_ERR "happy meal: Transceiver BigMac ATTACK!");
/* Take care. */ /* Take care. */
HMD(("done\n")); HMD("done\n");
} }
/* hp->happy_lock must be held */ /* hp->happy_lock must be held */
...@@ -827,7 +827,7 @@ static void happy_meal_rx_reset(struct happy_meal *hp, void __iomem *bregs) ...@@ -827,7 +827,7 @@ static void happy_meal_rx_reset(struct happy_meal *hp, void __iomem *bregs)
{ {
int tries = RX_RESET_TRIES; int tries = RX_RESET_TRIES;
HMD(("happy_meal_rx_reset: reset, ")); HMD("happy_meal_rx_reset: reset, ");
/* We have a special on GNU/Viking hardware bugs today. */ /* We have a special on GNU/Viking hardware bugs today. */
hme_write32(hp, bregs + BMAC_RXSWRESET, 0); hme_write32(hp, bregs + BMAC_RXSWRESET, 0);
...@@ -839,7 +839,7 @@ static void happy_meal_rx_reset(struct happy_meal *hp, void __iomem *bregs) ...@@ -839,7 +839,7 @@ static void happy_meal_rx_reset(struct happy_meal *hp, void __iomem *bregs)
printk(KERN_ERR "happy meal: Receiver BigMac ATTACK!"); printk(KERN_ERR "happy meal: Receiver BigMac ATTACK!");
/* Don't forget your vik_1137125_wa. Have a nice day. */ /* Don't forget your vik_1137125_wa. Have a nice day. */
HMD(("done\n")); HMD("done\n");
} }
#define STOP_TRIES 16 #define STOP_TRIES 16
...@@ -849,7 +849,7 @@ static void happy_meal_stop(struct happy_meal *hp, void __iomem *gregs) ...@@ -849,7 +849,7 @@ static void happy_meal_stop(struct happy_meal *hp, void __iomem *gregs)
{ {
int tries = STOP_TRIES; int tries = STOP_TRIES;
HMD(("happy_meal_stop: reset, ")); HMD("happy_meal_stop: reset, ");
/* We're consolidating our STB products, it's your lucky day. */ /* We're consolidating our STB products, it's your lucky day. */
hme_write32(hp, gregs + GREG_SWRESET, GREG_RESET_ALL); hme_write32(hp, gregs + GREG_SWRESET, GREG_RESET_ALL);
...@@ -861,7 +861,7 @@ static void happy_meal_stop(struct happy_meal *hp, void __iomem *gregs) ...@@ -861,7 +861,7 @@ static void happy_meal_stop(struct happy_meal *hp, void __iomem *gregs)
printk(KERN_ERR "happy meal: Fry guys."); printk(KERN_ERR "happy meal: Fry guys.");
/* Remember: "Different name, same old buggy as shit hardware." */ /* Remember: "Different name, same old buggy as shit hardware." */
HMD(("done\n")); HMD("done\n");
} }
/* hp->happy_lock must be held */ /* hp->happy_lock must be held */
...@@ -890,21 +890,21 @@ static void happy_meal_get_counters(struct happy_meal *hp, void __iomem *bregs) ...@@ -890,21 +890,21 @@ static void happy_meal_get_counters(struct happy_meal *hp, void __iomem *bregs)
/* hp->happy_lock must be held */ /* hp->happy_lock must be held */
static void happy_meal_poll_stop(struct happy_meal *hp, void __iomem *tregs) static void happy_meal_poll_stop(struct happy_meal *hp, void __iomem *tregs)
{ {
ASD(("happy_meal_poll_stop: ")); ASD("happy_meal_poll_stop: ");
/* If polling disabled or not polling already, nothing to do. */ /* If polling disabled or not polling already, nothing to do. */
if ((hp->happy_flags & (HFLAG_POLLENABLE | HFLAG_POLL)) != if ((hp->happy_flags & (HFLAG_POLLENABLE | HFLAG_POLL)) !=
(HFLAG_POLLENABLE | HFLAG_POLL)) { (HFLAG_POLLENABLE | HFLAG_POLL)) {
HMD(("not polling, return\n")); HMD("not polling, return\n");
return; return;
} }
/* Shut up the MIF. */ /* Shut up the MIF. */
ASD(("were polling, mif ints off, ")); ASD("were polling, mif ints off, ");
hme_write32(hp, tregs + TCVR_IMASK, 0xffff); hme_write32(hp, tregs + TCVR_IMASK, 0xffff);
/* Turn off polling. */ /* Turn off polling. */
ASD(("polling off, ")); ASD("polling off, ");
hme_write32(hp, tregs + TCVR_CFG, hme_write32(hp, tregs + TCVR_CFG,
hme_read32(hp, tregs + TCVR_CFG) & ~(TCV_CFG_PENABLE)); hme_read32(hp, tregs + TCVR_CFG) & ~(TCV_CFG_PENABLE));
...@@ -913,7 +913,7 @@ static void happy_meal_poll_stop(struct happy_meal *hp, void __iomem *tregs) ...@@ -913,7 +913,7 @@ static void happy_meal_poll_stop(struct happy_meal *hp, void __iomem *tregs)
/* Let the bits set. */ /* Let the bits set. */
udelay(200); udelay(200);
ASD(("done\n")); ASD("done\n");
} }
/* Only Sun can take such nice parts and fuck up the programming interface /* Only Sun can take such nice parts and fuck up the programming interface
...@@ -929,44 +929,44 @@ static int happy_meal_tcvr_reset(struct happy_meal *hp, void __iomem *tregs) ...@@ -929,44 +929,44 @@ static int happy_meal_tcvr_reset(struct happy_meal *hp, void __iomem *tregs)
int result, tries = TCVR_RESET_TRIES; int result, tries = TCVR_RESET_TRIES;
tconfig = hme_read32(hp, tregs + TCVR_CFG); tconfig = hme_read32(hp, tregs + TCVR_CFG);
ASD(("happy_meal_tcvr_reset: tcfg<%08lx> ", tconfig)); ASD("happy_meal_tcvr_reset: tcfg<%08lx> ", tconfig);
if (hp->tcvr_type == external) { if (hp->tcvr_type == external) {
ASD(("external<")); ASD("external<");
hme_write32(hp, tregs + TCVR_CFG, tconfig & ~(TCV_CFG_PSELECT)); hme_write32(hp, tregs + TCVR_CFG, tconfig & ~(TCV_CFG_PSELECT));
hp->tcvr_type = internal; hp->tcvr_type = internal;
hp->paddr = TCV_PADDR_ITX; hp->paddr = TCV_PADDR_ITX;
ASD(("ISOLATE,")); ASD("ISOLATE,");
happy_meal_tcvr_write(hp, tregs, MII_BMCR, happy_meal_tcvr_write(hp, tregs, MII_BMCR,
(BMCR_LOOPBACK|BMCR_PDOWN|BMCR_ISOLATE)); (BMCR_LOOPBACK|BMCR_PDOWN|BMCR_ISOLATE));
result = happy_meal_tcvr_read(hp, tregs, MII_BMCR); result = happy_meal_tcvr_read(hp, tregs, MII_BMCR);
if (result == TCVR_FAILURE) { if (result == TCVR_FAILURE) {
ASD(("phyread_fail>\n")); ASD("phyread_fail>\n");
return -1; return -1;
} }
ASD(("phyread_ok,PSELECT>")); ASD("phyread_ok,PSELECT>");
hme_write32(hp, tregs + TCVR_CFG, tconfig | TCV_CFG_PSELECT); hme_write32(hp, tregs + TCVR_CFG, tconfig | TCV_CFG_PSELECT);
hp->tcvr_type = external; hp->tcvr_type = external;
hp->paddr = TCV_PADDR_ETX; hp->paddr = TCV_PADDR_ETX;
} else { } else {
if (tconfig & TCV_CFG_MDIO1) { if (tconfig & TCV_CFG_MDIO1) {
ASD(("internal<PSELECT,")); ASD("internal<PSELECT,");
hme_write32(hp, tregs + TCVR_CFG, (tconfig | TCV_CFG_PSELECT)); hme_write32(hp, tregs + TCVR_CFG, (tconfig | TCV_CFG_PSELECT));
ASD(("ISOLATE,")); ASD("ISOLATE,");
happy_meal_tcvr_write(hp, tregs, MII_BMCR, happy_meal_tcvr_write(hp, tregs, MII_BMCR,
(BMCR_LOOPBACK|BMCR_PDOWN|BMCR_ISOLATE)); (BMCR_LOOPBACK|BMCR_PDOWN|BMCR_ISOLATE));
result = happy_meal_tcvr_read(hp, tregs, MII_BMCR); result = happy_meal_tcvr_read(hp, tregs, MII_BMCR);
if (result == TCVR_FAILURE) { if (result == TCVR_FAILURE) {
ASD(("phyread_fail>\n")); ASD("phyread_fail>\n");
return -1; return -1;
} }
ASD(("phyread_ok,~PSELECT>")); ASD("phyread_ok,~PSELECT>");
hme_write32(hp, tregs + TCVR_CFG, (tconfig & ~(TCV_CFG_PSELECT))); hme_write32(hp, tregs + TCVR_CFG, (tconfig & ~(TCV_CFG_PSELECT)));
hp->tcvr_type = internal; hp->tcvr_type = internal;
hp->paddr = TCV_PADDR_ITX; hp->paddr = TCV_PADDR_ITX;
} }
} }
ASD(("BMCR_RESET ")); ASD("BMCR_RESET ");
happy_meal_tcvr_write(hp, tregs, MII_BMCR, BMCR_RESET); happy_meal_tcvr_write(hp, tregs, MII_BMCR, BMCR_RESET);
while (--tries) { while (--tries) {
...@@ -979,10 +979,10 @@ static int happy_meal_tcvr_reset(struct happy_meal *hp, void __iomem *tregs) ...@@ -979,10 +979,10 @@ static int happy_meal_tcvr_reset(struct happy_meal *hp, void __iomem *tregs)
udelay(20); udelay(20);
} }
if (!tries) { if (!tries) {
ASD(("BMCR RESET FAILED!\n")); ASD("BMCR RESET FAILED!\n");
return -1; return -1;
} }
ASD(("RESET_OK\n")); ASD("RESET_OK\n");
/* Get fresh copies of the PHY registers. */ /* Get fresh copies of the PHY registers. */
hp->sw_bmsr = happy_meal_tcvr_read(hp, tregs, MII_BMSR); hp->sw_bmsr = happy_meal_tcvr_read(hp, tregs, MII_BMSR);
...@@ -990,7 +990,7 @@ static int happy_meal_tcvr_reset(struct happy_meal *hp, void __iomem *tregs) ...@@ -990,7 +990,7 @@ static int happy_meal_tcvr_reset(struct happy_meal *hp, void __iomem *tregs)
hp->sw_physid2 = happy_meal_tcvr_read(hp, tregs, MII_PHYSID2); hp->sw_physid2 = happy_meal_tcvr_read(hp, tregs, MII_PHYSID2);
hp->sw_advertise = happy_meal_tcvr_read(hp, tregs, MII_ADVERTISE); hp->sw_advertise = happy_meal_tcvr_read(hp, tregs, MII_ADVERTISE);
ASD(("UNISOLATE")); ASD("UNISOLATE");
hp->sw_bmcr &= ~(BMCR_ISOLATE); hp->sw_bmcr &= ~(BMCR_ISOLATE);
happy_meal_tcvr_write(hp, tregs, MII_BMCR, hp->sw_bmcr); happy_meal_tcvr_write(hp, tregs, MII_BMCR, hp->sw_bmcr);
...@@ -1004,10 +1004,10 @@ static int happy_meal_tcvr_reset(struct happy_meal *hp, void __iomem *tregs) ...@@ -1004,10 +1004,10 @@ static int happy_meal_tcvr_reset(struct happy_meal *hp, void __iomem *tregs)
udelay(20); udelay(20);
} }
if (!tries) { if (!tries) {
ASD((" FAILED!\n")); ASD(" FAILED!\n");
return -1; return -1;
} }
ASD((" SUCCESS and CSCONFIG_DFBYPASS\n")); ASD(" SUCCESS and CSCONFIG_DFBYPASS\n");
if (!is_lucent_phy(hp)) { if (!is_lucent_phy(hp)) {
result = happy_meal_tcvr_read(hp, tregs, result = happy_meal_tcvr_read(hp, tregs,
DP83840_CSCONFIG); DP83840_CSCONFIG);
...@@ -1025,60 +1025,60 @@ static void happy_meal_transceiver_check(struct happy_meal *hp, void __iomem *tr ...@@ -1025,60 +1025,60 @@ static void happy_meal_transceiver_check(struct happy_meal *hp, void __iomem *tr
{ {
unsigned long tconfig = hme_read32(hp, tregs + TCVR_CFG); unsigned long tconfig = hme_read32(hp, tregs + TCVR_CFG);
ASD(("happy_meal_transceiver_check: tcfg=%08lx ", tconfig)); ASD("happy_meal_transceiver_check: tcfg=%08lx ", tconfig);
if (hp->happy_flags & HFLAG_POLL) { if (hp->happy_flags & HFLAG_POLL) {
/* If we are polling, we must stop to get the transceiver type. */ /* If we are polling, we must stop to get the transceiver type. */
ASD(("<polling> ")); ASD("<polling> ");
if (hp->tcvr_type == internal) { if (hp->tcvr_type == internal) {
if (tconfig & TCV_CFG_MDIO1) { if (tconfig & TCV_CFG_MDIO1) {
ASD(("<internal> <poll stop> ")); ASD("<internal> <poll stop> ");
happy_meal_poll_stop(hp, tregs); happy_meal_poll_stop(hp, tregs);
hp->paddr = TCV_PADDR_ETX; hp->paddr = TCV_PADDR_ETX;
hp->tcvr_type = external; hp->tcvr_type = external;
ASD(("<external>\n")); ASD("<external>\n");
tconfig &= ~(TCV_CFG_PENABLE); tconfig &= ~(TCV_CFG_PENABLE);
tconfig |= TCV_CFG_PSELECT; tconfig |= TCV_CFG_PSELECT;
hme_write32(hp, tregs + TCVR_CFG, tconfig); hme_write32(hp, tregs + TCVR_CFG, tconfig);
} }
} else { } else {
if (hp->tcvr_type == external) { if (hp->tcvr_type == external) {
ASD(("<external> ")); ASD("<external> ");
if (!(hme_read32(hp, tregs + TCVR_STATUS) >> 16)) { if (!(hme_read32(hp, tregs + TCVR_STATUS) >> 16)) {
ASD(("<poll stop> ")); ASD("<poll stop> ");
happy_meal_poll_stop(hp, tregs); happy_meal_poll_stop(hp, tregs);
hp->paddr = TCV_PADDR_ITX; hp->paddr = TCV_PADDR_ITX;
hp->tcvr_type = internal; hp->tcvr_type = internal;
ASD(("<internal>\n")); ASD("<internal>\n");
hme_write32(hp, tregs + TCVR_CFG, hme_write32(hp, tregs + TCVR_CFG,
hme_read32(hp, tregs + TCVR_CFG) & hme_read32(hp, tregs + TCVR_CFG) &
~(TCV_CFG_PSELECT)); ~(TCV_CFG_PSELECT));
} }
ASD(("\n")); ASD("\n");
} else { } else {
ASD(("<none>\n")); ASD("<none>\n");
} }
} }
} else { } else {
u32 reread = hme_read32(hp, tregs + TCVR_CFG); u32 reread = hme_read32(hp, tregs + TCVR_CFG);
/* Else we can just work off of the MDIO bits. */ /* Else we can just work off of the MDIO bits. */
ASD(("<not polling> ")); ASD("<not polling> ");
if (reread & TCV_CFG_MDIO1) { if (reread & TCV_CFG_MDIO1) {
hme_write32(hp, tregs + TCVR_CFG, tconfig | TCV_CFG_PSELECT); hme_write32(hp, tregs + TCVR_CFG, tconfig | TCV_CFG_PSELECT);
hp->paddr = TCV_PADDR_ETX; hp->paddr = TCV_PADDR_ETX;
hp->tcvr_type = external; hp->tcvr_type = external;
ASD(("<external>\n")); ASD("<external>\n");
} else { } else {
if (reread & TCV_CFG_MDIO0) { if (reread & TCV_CFG_MDIO0) {
hme_write32(hp, tregs + TCVR_CFG, hme_write32(hp, tregs + TCVR_CFG,
tconfig & ~(TCV_CFG_PSELECT)); tconfig & ~(TCV_CFG_PSELECT));
hp->paddr = TCV_PADDR_ITX; hp->paddr = TCV_PADDR_ITX;
hp->tcvr_type = internal; hp->tcvr_type = internal;
ASD(("<internal>\n")); ASD("<internal>\n");
} else { } else {
printk(KERN_ERR "happy meal: Transceiver and a coke please."); printk(KERN_ERR "happy meal: Transceiver and a coke please.");
hp->tcvr_type = none; /* Grrr... */ hp->tcvr_type = none; /* Grrr... */
ASD(("<none>\n")); ASD("<none>\n");
} }
} }
} }
...@@ -1185,15 +1185,15 @@ static void happy_meal_init_rings(struct happy_meal *hp) ...@@ -1185,15 +1185,15 @@ static void happy_meal_init_rings(struct happy_meal *hp)
struct hmeal_init_block *hb = hp->happy_block; struct hmeal_init_block *hb = hp->happy_block;
int i; int i;
HMD(("happy_meal_init_rings: counters to zero, ")); HMD("happy_meal_init_rings: counters to zero, ");
hp->rx_new = hp->rx_old = hp->tx_new = hp->tx_old = 0; hp->rx_new = hp->rx_old = hp->tx_new = hp->tx_old = 0;
/* Free any skippy bufs left around in the rings. */ /* Free any skippy bufs left around in the rings. */
HMD(("clean, ")); HMD("clean, ");
happy_meal_clean_rings(hp); happy_meal_clean_rings(hp);
/* Now get new skippy bufs for the receive ring. */ /* Now get new skippy bufs for the receive ring. */
HMD(("init rxring, ")); HMD("init rxring, ");
for (i = 0; i < RX_RING_SIZE; i++) { for (i = 0; i < RX_RING_SIZE; i++) {
struct sk_buff *skb; struct sk_buff *skb;
u32 mapping; u32 mapping;
...@@ -1220,11 +1220,11 @@ static void happy_meal_init_rings(struct happy_meal *hp) ...@@ -1220,11 +1220,11 @@ static void happy_meal_init_rings(struct happy_meal *hp)
skb_reserve(skb, RX_OFFSET); skb_reserve(skb, RX_OFFSET);
} }
HMD(("init txring, ")); HMD("init txring, ");
for (i = 0; i < TX_RING_SIZE; i++) for (i = 0; i < TX_RING_SIZE; i++)
hme_write_txd(hp, &hb->happy_meal_txd[i], 0, 0); hme_write_txd(hp, &hb->happy_meal_txd[i], 0, 0);
HMD(("done\n")); HMD("done\n");
} }
/* hp->happy_lock must be held */ /* hp->happy_lock must be held */
...@@ -1272,15 +1272,15 @@ happy_meal_begin_auto_negotiation(struct happy_meal *hp, ...@@ -1272,15 +1272,15 @@ happy_meal_begin_auto_negotiation(struct happy_meal *hp,
*/ */
#ifdef AUTO_SWITCH_DEBUG #ifdef AUTO_SWITCH_DEBUG
ASD(("%s: Advertising [ ", hp->dev->name)); ASD("%s: Advertising [ ", hp->dev->name);
if (hp->sw_advertise & ADVERTISE_10HALF) if (hp->sw_advertise & ADVERTISE_10HALF)
ASD(("10H ")); ASD("10H ");
if (hp->sw_advertise & ADVERTISE_10FULL) if (hp->sw_advertise & ADVERTISE_10FULL)
ASD(("10F ")); ASD("10F ");
if (hp->sw_advertise & ADVERTISE_100HALF) if (hp->sw_advertise & ADVERTISE_100HALF)
ASD(("100H ")); ASD("100H ");
if (hp->sw_advertise & ADVERTISE_100FULL) if (hp->sw_advertise & ADVERTISE_100FULL)
ASD(("100F ")); ASD("100F ");
#endif #endif
/* Enable Auto-Negotiation, this is usually on already... */ /* Enable Auto-Negotiation, this is usually on already... */
...@@ -1364,65 +1364,65 @@ static int happy_meal_init(struct happy_meal *hp) ...@@ -1364,65 +1364,65 @@ static int happy_meal_init(struct happy_meal *hp)
/* If auto-negotiation timer is running, kill it. */ /* If auto-negotiation timer is running, kill it. */
del_timer(&hp->happy_timer); del_timer(&hp->happy_timer);
HMD(("happy_meal_init: happy_flags[%08x] ", HMD("happy_meal_init: happy_flags[%08x] ",
hp->happy_flags)); hp->happy_flags);
if (!(hp->happy_flags & HFLAG_INIT)) { if (!(hp->happy_flags & HFLAG_INIT)) {
HMD(("set HFLAG_INIT, ")); HMD("set HFLAG_INIT, ");
hp->happy_flags |= HFLAG_INIT; hp->happy_flags |= HFLAG_INIT;
happy_meal_get_counters(hp, bregs); happy_meal_get_counters(hp, bregs);
} }
/* Stop polling. */ /* Stop polling. */
HMD(("to happy_meal_poll_stop\n")); HMD("to happy_meal_poll_stop\n");
happy_meal_poll_stop(hp, tregs); happy_meal_poll_stop(hp, tregs);
/* Stop transmitter and receiver. */ /* Stop transmitter and receiver. */
HMD(("happy_meal_init: to happy_meal_stop\n")); HMD("happy_meal_init: to happy_meal_stop\n");
happy_meal_stop(hp, gregs); happy_meal_stop(hp, gregs);
/* Alloc and reset the tx/rx descriptor chains. */ /* Alloc and reset the tx/rx descriptor chains. */
HMD(("happy_meal_init: to happy_meal_init_rings\n")); HMD("happy_meal_init: to happy_meal_init_rings\n");
happy_meal_init_rings(hp); happy_meal_init_rings(hp);
/* Shut up the MIF. */ /* Shut up the MIF. */
HMD(("happy_meal_init: Disable all MIF irqs (old[%08x]), ", HMD("happy_meal_init: Disable all MIF irqs (old[%08x]), ",
hme_read32(hp, tregs + TCVR_IMASK))); hme_read32(hp, tregs + TCVR_IMASK));
hme_write32(hp, tregs + TCVR_IMASK, 0xffff); hme_write32(hp, tregs + TCVR_IMASK, 0xffff);
/* See if we can enable the MIF frame on this card to speak to the DP83840. */ /* See if we can enable the MIF frame on this card to speak to the DP83840. */
if (hp->happy_flags & HFLAG_FENABLE) { if (hp->happy_flags & HFLAG_FENABLE) {
HMD(("use frame old[%08x], ", HMD("use frame old[%08x], ",
hme_read32(hp, tregs + TCVR_CFG))); hme_read32(hp, tregs + TCVR_CFG));
hme_write32(hp, tregs + TCVR_CFG, hme_write32(hp, tregs + TCVR_CFG,
hme_read32(hp, tregs + TCVR_CFG) & ~(TCV_CFG_BENABLE)); hme_read32(hp, tregs + TCVR_CFG) & ~(TCV_CFG_BENABLE));
} else { } else {
HMD(("use bitbang old[%08x], ", HMD("use bitbang old[%08x], ",
hme_read32(hp, tregs + TCVR_CFG))); hme_read32(hp, tregs + TCVR_CFG));
hme_write32(hp, tregs + TCVR_CFG, hme_write32(hp, tregs + TCVR_CFG,
hme_read32(hp, tregs + TCVR_CFG) | TCV_CFG_BENABLE); hme_read32(hp, tregs + TCVR_CFG) | TCV_CFG_BENABLE);
} }
/* Check the state of the transceiver. */ /* Check the state of the transceiver. */
HMD(("to happy_meal_transceiver_check\n")); HMD("to happy_meal_transceiver_check\n");
happy_meal_transceiver_check(hp, tregs); happy_meal_transceiver_check(hp, tregs);
/* Put the Big Mac into a sane state. */ /* Put the Big Mac into a sane state. */
HMD(("happy_meal_init: ")); HMD("happy_meal_init: ");
switch(hp->tcvr_type) { switch(hp->tcvr_type) {
case none: case none:
/* Cannot operate if we don't know the transceiver type! */ /* Cannot operate if we don't know the transceiver type! */
HMD(("AAIEEE no transceiver type, EAGAIN")); HMD("AAIEEE no transceiver type, EAGAIN");
return -EAGAIN; return -EAGAIN;
case internal: case internal:
/* Using the MII buffers. */ /* Using the MII buffers. */
HMD(("internal, using MII, ")); HMD("internal, using MII, ");
hme_write32(hp, bregs + BMAC_XIFCFG, 0); hme_write32(hp, bregs + BMAC_XIFCFG, 0);
break; break;
case external: case external:
/* Not using the MII, disable it. */ /* Not using the MII, disable it. */
HMD(("external, disable MII, ")); HMD("external, disable MII, ");
hme_write32(hp, bregs + BMAC_XIFCFG, BIGMAC_XCFG_MIIDISAB); hme_write32(hp, bregs + BMAC_XIFCFG, BIGMAC_XCFG_MIIDISAB);
break; break;
} }
...@@ -1431,18 +1431,18 @@ static int happy_meal_init(struct happy_meal *hp) ...@@ -1431,18 +1431,18 @@ static int happy_meal_init(struct happy_meal *hp)
return -EAGAIN; return -EAGAIN;
/* Reset the Happy Meal Big Mac transceiver and the receiver. */ /* Reset the Happy Meal Big Mac transceiver and the receiver. */
HMD(("tx/rx reset, ")); HMD("tx/rx reset, ");
happy_meal_tx_reset(hp, bregs); happy_meal_tx_reset(hp, bregs);
happy_meal_rx_reset(hp, bregs); happy_meal_rx_reset(hp, bregs);
/* Set jam size and inter-packet gaps to reasonable defaults. */ /* Set jam size and inter-packet gaps to reasonable defaults. */
HMD(("jsize/ipg1/ipg2, ")); HMD("jsize/ipg1/ipg2, ");
hme_write32(hp, bregs + BMAC_JSIZE, DEFAULT_JAMSIZE); hme_write32(hp, bregs + BMAC_JSIZE, DEFAULT_JAMSIZE);
hme_write32(hp, bregs + BMAC_IGAP1, DEFAULT_IPG1); hme_write32(hp, bregs + BMAC_IGAP1, DEFAULT_IPG1);
hme_write32(hp, bregs + BMAC_IGAP2, DEFAULT_IPG2); hme_write32(hp, bregs + BMAC_IGAP2, DEFAULT_IPG2);
/* Load up the MAC address and random seed. */ /* Load up the MAC address and random seed. */
HMD(("rseed/macaddr, ")); HMD("rseed/macaddr, ");
/* The docs recommend to use the 10LSB of our MAC here. */ /* The docs recommend to use the 10LSB of our MAC here. */
hme_write32(hp, bregs + BMAC_RSEED, ((e[5] | e[4]<<8)&0x3ff)); hme_write32(hp, bregs + BMAC_RSEED, ((e[5] | e[4]<<8)&0x3ff));
...@@ -1451,7 +1451,7 @@ static int happy_meal_init(struct happy_meal *hp) ...@@ -1451,7 +1451,7 @@ static int happy_meal_init(struct happy_meal *hp)
hme_write32(hp, bregs + BMAC_MACADDR1, ((e[2] << 8) | e[3])); hme_write32(hp, bregs + BMAC_MACADDR1, ((e[2] << 8) | e[3]));
hme_write32(hp, bregs + BMAC_MACADDR0, ((e[0] << 8) | e[1])); hme_write32(hp, bregs + BMAC_MACADDR0, ((e[0] << 8) | e[1]));
HMD(("htable, ")); HMD("htable, ");
if ((hp->dev->flags & IFF_ALLMULTI) || if ((hp->dev->flags & IFF_ALLMULTI) ||
(netdev_mc_count(hp->dev) > 64)) { (netdev_mc_count(hp->dev) > 64)) {
hme_write32(hp, bregs + BMAC_HTABLE0, 0xffff); hme_write32(hp, bregs + BMAC_HTABLE0, 0xffff);
...@@ -1481,9 +1481,9 @@ static int happy_meal_init(struct happy_meal *hp) ...@@ -1481,9 +1481,9 @@ static int happy_meal_init(struct happy_meal *hp)
} }
/* Set the RX and TX ring ptrs. */ /* Set the RX and TX ring ptrs. */
HMD(("ring ptrs rxr[%08x] txr[%08x]\n", HMD("ring ptrs rxr[%08x] txr[%08x]\n",
((__u32)hp->hblock_dvma + hblock_offset(happy_meal_rxd, 0)), ((__u32)hp->hblock_dvma + hblock_offset(happy_meal_rxd, 0)),
((__u32)hp->hblock_dvma + hblock_offset(happy_meal_txd, 0)))); ((__u32)hp->hblock_dvma + hblock_offset(happy_meal_txd, 0)));
hme_write32(hp, erxregs + ERX_RING, hme_write32(hp, erxregs + ERX_RING,
((__u32)hp->hblock_dvma + hblock_offset(happy_meal_rxd, 0))); ((__u32)hp->hblock_dvma + hblock_offset(happy_meal_rxd, 0)));
hme_write32(hp, etxregs + ETX_RING, hme_write32(hp, etxregs + ETX_RING,
...@@ -1501,8 +1501,8 @@ static int happy_meal_init(struct happy_meal *hp) ...@@ -1501,8 +1501,8 @@ static int happy_meal_init(struct happy_meal *hp)
| 0x4); | 0x4);
/* Set the supported burst sizes. */ /* Set the supported burst sizes. */
HMD(("happy_meal_init: old[%08x] bursts<", HMD("happy_meal_init: old[%08x] bursts<",
hme_read32(hp, gregs + GREG_CFG))); hme_read32(hp, gregs + GREG_CFG));
#ifndef CONFIG_SPARC #ifndef CONFIG_SPARC
/* It is always PCI and can handle 64byte bursts. */ /* It is always PCI and can handle 64byte bursts. */
...@@ -1531,34 +1531,34 @@ static int happy_meal_init(struct happy_meal *hp) ...@@ -1531,34 +1531,34 @@ static int happy_meal_init(struct happy_meal *hp)
} }
#endif #endif
HMD(("64>")); HMD("64>");
hme_write32(hp, gregs + GREG_CFG, gcfg); hme_write32(hp, gregs + GREG_CFG, gcfg);
} else if (hp->happy_bursts & DMA_BURST32) { } else if (hp->happy_bursts & DMA_BURST32) {
HMD(("32>")); HMD("32>");
hme_write32(hp, gregs + GREG_CFG, GREG_CFG_BURST32); hme_write32(hp, gregs + GREG_CFG, GREG_CFG_BURST32);
} else if (hp->happy_bursts & DMA_BURST16) { } else if (hp->happy_bursts & DMA_BURST16) {
HMD(("16>")); HMD("16>");
hme_write32(hp, gregs + GREG_CFG, GREG_CFG_BURST16); hme_write32(hp, gregs + GREG_CFG, GREG_CFG_BURST16);
} else { } else {
HMD(("XXX>")); HMD("XXX>");
hme_write32(hp, gregs + GREG_CFG, 0); hme_write32(hp, gregs + GREG_CFG, 0);
} }
#endif /* CONFIG_SPARC */ #endif /* CONFIG_SPARC */
/* Turn off interrupts we do not want to hear. */ /* Turn off interrupts we do not want to hear. */
HMD((", enable global interrupts, ")); HMD(", enable global interrupts, ");
hme_write32(hp, gregs + GREG_IMASK, hme_write32(hp, gregs + GREG_IMASK,
(GREG_IMASK_GOTFRAME | GREG_IMASK_RCNTEXP | (GREG_IMASK_GOTFRAME | GREG_IMASK_RCNTEXP |
GREG_IMASK_SENTFRAME | GREG_IMASK_TXPERR)); GREG_IMASK_SENTFRAME | GREG_IMASK_TXPERR));
/* Set the transmit ring buffer size. */ /* Set the transmit ring buffer size. */
HMD(("tx rsize=%d oreg[%08x], ", (int)TX_RING_SIZE, HMD("tx rsize=%d oreg[%08x], ", (int)TX_RING_SIZE,
hme_read32(hp, etxregs + ETX_RSIZE))); hme_read32(hp, etxregs + ETX_RSIZE));
hme_write32(hp, etxregs + ETX_RSIZE, (TX_RING_SIZE >> ETX_RSIZE_SHIFT) - 1); hme_write32(hp, etxregs + ETX_RSIZE, (TX_RING_SIZE >> ETX_RSIZE_SHIFT) - 1);
/* Enable transmitter DVMA. */ /* Enable transmitter DVMA. */
HMD(("tx dma enable old[%08x], ", HMD("tx dma enable old[%08x], ",
hme_read32(hp, etxregs + ETX_CFG))); hme_read32(hp, etxregs + ETX_CFG));
hme_write32(hp, etxregs + ETX_CFG, hme_write32(hp, etxregs + ETX_CFG,
hme_read32(hp, etxregs + ETX_CFG) | ETX_CFG_DMAENABLE); hme_read32(hp, etxregs + ETX_CFG) | ETX_CFG_DMAENABLE);
...@@ -1567,8 +1567,8 @@ static int happy_meal_init(struct happy_meal *hp) ...@@ -1567,8 +1567,8 @@ static int happy_meal_init(struct happy_meal *hp)
* properly. I cannot think of a sane way to provide complete * properly. I cannot think of a sane way to provide complete
* coverage for this hardware bug yet. * coverage for this hardware bug yet.
*/ */
HMD(("erx regs bug old[%08x]\n", HMD("erx regs bug old[%08x]\n",
hme_read32(hp, erxregs + ERX_CFG))); hme_read32(hp, erxregs + ERX_CFG));
hme_write32(hp, erxregs + ERX_CFG, ERX_CFG_DEFAULT(RX_OFFSET)); hme_write32(hp, erxregs + ERX_CFG, ERX_CFG_DEFAULT(RX_OFFSET));
regtmp = hme_read32(hp, erxregs + ERX_CFG); regtmp = hme_read32(hp, erxregs + ERX_CFG);
hme_write32(hp, erxregs + ERX_CFG, ERX_CFG_DEFAULT(RX_OFFSET)); hme_write32(hp, erxregs + ERX_CFG, ERX_CFG_DEFAULT(RX_OFFSET));
...@@ -1580,8 +1580,8 @@ static int happy_meal_init(struct happy_meal *hp) ...@@ -1580,8 +1580,8 @@ static int happy_meal_init(struct happy_meal *hp)
} }
/* Enable Big Mac hash table filter. */ /* Enable Big Mac hash table filter. */
HMD(("happy_meal_init: enable hash rx_cfg_old[%08x], ", HMD("happy_meal_init: enable hash rx_cfg_old[%08x], ",
hme_read32(hp, bregs + BMAC_RXCFG))); hme_read32(hp, bregs + BMAC_RXCFG));
rxcfg = BIGMAC_RXCFG_HENABLE | BIGMAC_RXCFG_REJME; rxcfg = BIGMAC_RXCFG_HENABLE | BIGMAC_RXCFG_REJME;
if (hp->dev->flags & IFF_PROMISC) if (hp->dev->flags & IFF_PROMISC)
rxcfg |= BIGMAC_RXCFG_PMISC; rxcfg |= BIGMAC_RXCFG_PMISC;
...@@ -1591,7 +1591,7 @@ static int happy_meal_init(struct happy_meal *hp) ...@@ -1591,7 +1591,7 @@ static int happy_meal_init(struct happy_meal *hp)
udelay(10); udelay(10);
/* Ok, configure the Big Mac transmitter. */ /* Ok, configure the Big Mac transmitter. */
HMD(("BIGMAC init, ")); HMD("BIGMAC init, ");
regtmp = 0; regtmp = 0;
if (hp->happy_flags & HFLAG_FULL) if (hp->happy_flags & HFLAG_FULL)
regtmp |= BIGMAC_TXCFG_FULLDPLX; regtmp |= BIGMAC_TXCFG_FULLDPLX;
...@@ -1615,14 +1615,14 @@ static int happy_meal_init(struct happy_meal *hp) ...@@ -1615,14 +1615,14 @@ static int happy_meal_init(struct happy_meal *hp)
if (hp->tcvr_type == external) if (hp->tcvr_type == external)
regtmp |= BIGMAC_XCFG_MIIDISAB; regtmp |= BIGMAC_XCFG_MIIDISAB;
HMD(("XIF config old[%08x], ", HMD("XIF config old[%08x], ",
hme_read32(hp, bregs + BMAC_XIFCFG))); hme_read32(hp, bregs + BMAC_XIFCFG));
hme_write32(hp, bregs + BMAC_XIFCFG, regtmp); hme_write32(hp, bregs + BMAC_XIFCFG, regtmp);
/* Start things up. */ /* Start things up. */
HMD(("tx old[%08x] and rx [%08x] ON!\n", HMD("tx old[%08x] and rx [%08x] ON!\n",
hme_read32(hp, bregs + BMAC_TXCFG), hme_read32(hp, bregs + BMAC_TXCFG),
hme_read32(hp, bregs + BMAC_RXCFG))); hme_read32(hp, bregs + BMAC_RXCFG));
/* Set larger TX/RX size to allow for 802.1q */ /* Set larger TX/RX size to allow for 802.1q */
hme_write32(hp, bregs + BMAC_TXMAX, ETH_FRAME_LEN + 8); hme_write32(hp, bregs + BMAC_TXMAX, ETH_FRAME_LEN + 8);
...@@ -1843,9 +1843,9 @@ static void happy_meal_mif_interrupt(struct happy_meal *hp) ...@@ -1843,9 +1843,9 @@ static void happy_meal_mif_interrupt(struct happy_meal *hp)
} }
#ifdef TXDEBUG #ifdef TXDEBUG
#define TXD(x) printk x #define TXD printk
#else #else
#define TXD(x) #define TXD(...)
#endif #endif
/* hp->happy_lock must be held */ /* hp->happy_lock must be held */
...@@ -1857,13 +1857,13 @@ static void happy_meal_tx(struct happy_meal *hp) ...@@ -1857,13 +1857,13 @@ static void happy_meal_tx(struct happy_meal *hp)
int elem; int elem;
elem = hp->tx_old; elem = hp->tx_old;
TXD(("TX<")); TXD("TX<");
while (elem != hp->tx_new) { while (elem != hp->tx_new) {
struct sk_buff *skb; struct sk_buff *skb;
u32 flags, dma_addr, dma_len; u32 flags, dma_addr, dma_len;
int frag; int frag;
TXD(("[%d]", elem)); TXD("[%d]", elem);
this = &txbase[elem]; this = &txbase[elem];
flags = hme_read_desc32(hp, &this->tx_flags); flags = hme_read_desc32(hp, &this->tx_flags);
if (flags & TXFLAG_OWN) if (flags & TXFLAG_OWN)
...@@ -1899,7 +1899,7 @@ static void happy_meal_tx(struct happy_meal *hp) ...@@ -1899,7 +1899,7 @@ static void happy_meal_tx(struct happy_meal *hp)
dev->stats.tx_packets++; dev->stats.tx_packets++;
} }
hp->tx_old = elem; hp->tx_old = elem;
TXD((">")); TXD(">");
if (netif_queue_stopped(dev) && if (netif_queue_stopped(dev) &&
TX_BUFFS_AVAIL(hp) > (MAX_SKB_FRAGS + 1)) TX_BUFFS_AVAIL(hp) > (MAX_SKB_FRAGS + 1))
...@@ -1907,9 +1907,9 @@ static void happy_meal_tx(struct happy_meal *hp) ...@@ -1907,9 +1907,9 @@ static void happy_meal_tx(struct happy_meal *hp)
} }
#ifdef RXDEBUG #ifdef RXDEBUG
#define RXD(x) printk x #define RXD printk
#else #else
#define RXD(x) #define RXD(...)
#endif #endif
/* Originally I used to handle the allocation failure by just giving back just /* Originally I used to handle the allocation failure by just giving back just
...@@ -1928,7 +1928,7 @@ static void happy_meal_rx(struct happy_meal *hp, struct net_device *dev) ...@@ -1928,7 +1928,7 @@ static void happy_meal_rx(struct happy_meal *hp, struct net_device *dev)
int elem = hp->rx_new, drops = 0; int elem = hp->rx_new, drops = 0;
u32 flags; u32 flags;
RXD(("RX<")); RXD("RX<");
this = &rxbase[elem]; this = &rxbase[elem];
while (!((flags = hme_read_desc32(hp, &this->rx_flags)) & RXFLAG_OWN)) { while (!((flags = hme_read_desc32(hp, &this->rx_flags)) & RXFLAG_OWN)) {
struct sk_buff *skb; struct sk_buff *skb;
...@@ -1936,11 +1936,11 @@ static void happy_meal_rx(struct happy_meal *hp, struct net_device *dev) ...@@ -1936,11 +1936,11 @@ static void happy_meal_rx(struct happy_meal *hp, struct net_device *dev)
u16 csum = flags & RXFLAG_CSUM; u16 csum = flags & RXFLAG_CSUM;
u32 dma_addr = hme_read_desc32(hp, &this->rx_addr); u32 dma_addr = hme_read_desc32(hp, &this->rx_addr);
RXD(("[%d ", elem)); RXD("[%d ", elem);
/* Check for errors. */ /* Check for errors. */
if ((len < ETH_ZLEN) || (flags & RXFLAG_OVERFLOW)) { if ((len < ETH_ZLEN) || (flags & RXFLAG_OVERFLOW)) {
RXD(("ERR(%08x)]", flags)); RXD("ERR(%08x)]", flags);
dev->stats.rx_errors++; dev->stats.rx_errors++;
if (len < ETH_ZLEN) if (len < ETH_ZLEN)
dev->stats.rx_length_errors++; dev->stats.rx_length_errors++;
...@@ -2012,7 +2012,7 @@ static void happy_meal_rx(struct happy_meal *hp, struct net_device *dev) ...@@ -2012,7 +2012,7 @@ static void happy_meal_rx(struct happy_meal *hp, struct net_device *dev)
skb->csum = csum_unfold(~(__force __sum16)htons(csum)); skb->csum = csum_unfold(~(__force __sum16)htons(csum));
skb->ip_summed = CHECKSUM_COMPLETE; skb->ip_summed = CHECKSUM_COMPLETE;
RXD(("len=%d csum=%4x]", len, csum)); RXD("len=%d csum=%4x]", len, csum);
skb->protocol = eth_type_trans(skb, dev); skb->protocol = eth_type_trans(skb, dev);
netif_rx(skb); netif_rx(skb);
...@@ -2025,7 +2025,7 @@ static void happy_meal_rx(struct happy_meal *hp, struct net_device *dev) ...@@ -2025,7 +2025,7 @@ static void happy_meal_rx(struct happy_meal *hp, struct net_device *dev)
hp->rx_new = elem; hp->rx_new = elem;
if (drops) if (drops)
printk(KERN_INFO "%s: Memory squeeze, deferring packet.\n", hp->dev->name); printk(KERN_INFO "%s: Memory squeeze, deferring packet.\n", hp->dev->name);
RXD((">")); RXD(">");
} }
static irqreturn_t happy_meal_interrupt(int irq, void *dev_id) static irqreturn_t happy_meal_interrupt(int irq, void *dev_id)
...@@ -2034,32 +2034,32 @@ static irqreturn_t happy_meal_interrupt(int irq, void *dev_id) ...@@ -2034,32 +2034,32 @@ static irqreturn_t happy_meal_interrupt(int irq, void *dev_id)
struct happy_meal *hp = netdev_priv(dev); struct happy_meal *hp = netdev_priv(dev);
u32 happy_status = hme_read32(hp, hp->gregs + GREG_STAT); u32 happy_status = hme_read32(hp, hp->gregs + GREG_STAT);
HMD(("happy_meal_interrupt: status=%08x ", happy_status)); HMD("happy_meal_interrupt: status=%08x ", happy_status);
spin_lock(&hp->happy_lock); spin_lock(&hp->happy_lock);
if (happy_status & GREG_STAT_ERRORS) { if (happy_status & GREG_STAT_ERRORS) {
HMD(("ERRORS ")); HMD("ERRORS ");
if (happy_meal_is_not_so_happy(hp, /* un- */ happy_status)) if (happy_meal_is_not_so_happy(hp, /* un- */ happy_status))
goto out; goto out;
} }
if (happy_status & GREG_STAT_MIFIRQ) { if (happy_status & GREG_STAT_MIFIRQ) {
HMD(("MIFIRQ ")); HMD("MIFIRQ ");
happy_meal_mif_interrupt(hp); happy_meal_mif_interrupt(hp);
} }
if (happy_status & GREG_STAT_TXALL) { if (happy_status & GREG_STAT_TXALL) {
HMD(("TXALL ")); HMD("TXALL ");
happy_meal_tx(hp); happy_meal_tx(hp);
} }
if (happy_status & GREG_STAT_RXTOHOST) { if (happy_status & GREG_STAT_RXTOHOST) {
HMD(("RXTOHOST ")); HMD("RXTOHOST ");
happy_meal_rx(hp, dev); happy_meal_rx(hp, dev);
} }
HMD(("done\n")); HMD("done\n");
out: out:
spin_unlock(&hp->happy_lock); spin_unlock(&hp->happy_lock);
...@@ -2077,7 +2077,7 @@ static irqreturn_t quattro_sbus_interrupt(int irq, void *cookie) ...@@ -2077,7 +2077,7 @@ static irqreturn_t quattro_sbus_interrupt(int irq, void *cookie)
struct happy_meal *hp = netdev_priv(dev); struct happy_meal *hp = netdev_priv(dev);
u32 happy_status = hme_read32(hp, hp->gregs + GREG_STAT); u32 happy_status = hme_read32(hp, hp->gregs + GREG_STAT);
HMD(("quattro_interrupt: status=%08x ", happy_status)); HMD("quattro_interrupt: status=%08x ", happy_status);
if (!(happy_status & (GREG_STAT_ERRORS | if (!(happy_status & (GREG_STAT_ERRORS |
GREG_STAT_MIFIRQ | GREG_STAT_MIFIRQ |
...@@ -2088,30 +2088,30 @@ static irqreturn_t quattro_sbus_interrupt(int irq, void *cookie) ...@@ -2088,30 +2088,30 @@ static irqreturn_t quattro_sbus_interrupt(int irq, void *cookie)
spin_lock(&hp->happy_lock); spin_lock(&hp->happy_lock);
if (happy_status & GREG_STAT_ERRORS) { if (happy_status & GREG_STAT_ERRORS) {
HMD(("ERRORS ")); HMD("ERRORS ");
if (happy_meal_is_not_so_happy(hp, happy_status)) if (happy_meal_is_not_so_happy(hp, happy_status))
goto next; goto next;
} }
if (happy_status & GREG_STAT_MIFIRQ) { if (happy_status & GREG_STAT_MIFIRQ) {
HMD(("MIFIRQ ")); HMD("MIFIRQ ");
happy_meal_mif_interrupt(hp); happy_meal_mif_interrupt(hp);
} }
if (happy_status & GREG_STAT_TXALL) { if (happy_status & GREG_STAT_TXALL) {
HMD(("TXALL ")); HMD("TXALL ");
happy_meal_tx(hp); happy_meal_tx(hp);
} }
if (happy_status & GREG_STAT_RXTOHOST) { if (happy_status & GREG_STAT_RXTOHOST) {
HMD(("RXTOHOST ")); HMD("RXTOHOST ");
happy_meal_rx(hp, dev); happy_meal_rx(hp, dev);
} }
next: next:
spin_unlock(&hp->happy_lock); spin_unlock(&hp->happy_lock);
} }
HMD(("done\n")); HMD("done\n");
return IRQ_HANDLED; return IRQ_HANDLED;
} }
...@@ -2122,7 +2122,7 @@ static int happy_meal_open(struct net_device *dev) ...@@ -2122,7 +2122,7 @@ static int happy_meal_open(struct net_device *dev)
struct happy_meal *hp = netdev_priv(dev); struct happy_meal *hp = netdev_priv(dev);
int res; int res;
HMD(("happy_meal_open: ")); HMD("happy_meal_open: ");
/* On SBUS Quattro QFE cards, all hme interrupts are concentrated /* On SBUS Quattro QFE cards, all hme interrupts are concentrated
* into a single source which we register handling at probe time. * into a single source which we register handling at probe time.
...@@ -2131,7 +2131,7 @@ static int happy_meal_open(struct net_device *dev) ...@@ -2131,7 +2131,7 @@ static int happy_meal_open(struct net_device *dev)
res = request_irq(hp->irq, happy_meal_interrupt, IRQF_SHARED, res = request_irq(hp->irq, happy_meal_interrupt, IRQF_SHARED,
dev->name, dev); dev->name, dev);
if (res) { if (res) {
HMD(("EAGAIN\n")); HMD("EAGAIN\n");
printk(KERN_ERR "happy_meal(SBUS): Can't order irq %d to go.\n", printk(KERN_ERR "happy_meal(SBUS): Can't order irq %d to go.\n",
hp->irq); hp->irq);
...@@ -2139,7 +2139,7 @@ static int happy_meal_open(struct net_device *dev) ...@@ -2139,7 +2139,7 @@ static int happy_meal_open(struct net_device *dev)
} }
} }
HMD(("to happy_meal_init\n")); HMD("to happy_meal_init\n");
spin_lock_irq(&hp->happy_lock); spin_lock_irq(&hp->happy_lock);
res = happy_meal_init(hp); res = happy_meal_init(hp);
...@@ -2174,9 +2174,9 @@ static int happy_meal_close(struct net_device *dev) ...@@ -2174,9 +2174,9 @@ static int happy_meal_close(struct net_device *dev)
} }
#ifdef SXDEBUG #ifdef SXDEBUG
#define SXD(x) printk x #define SXD printk
#else #else
#define SXD(x) #define SXD(...)
#endif #endif
static void happy_meal_tx_timeout(struct net_device *dev, unsigned int txqueue) static void happy_meal_tx_timeout(struct net_device *dev, unsigned int txqueue)
...@@ -2244,7 +2244,7 @@ static netdev_tx_t happy_meal_start_xmit(struct sk_buff *skb, ...@@ -2244,7 +2244,7 @@ static netdev_tx_t happy_meal_start_xmit(struct sk_buff *skb,
} }
entry = hp->tx_new; entry = hp->tx_new;
SXD(("SX<l[%d]e[%d]>", len, entry)); SXD("SX<l[%d]e[%d]>", len, entry);
hp->tx_skbs[entry] = skb; hp->tx_skbs[entry] = skb;
if (skb_shinfo(skb)->nr_frags == 0) { if (skb_shinfo(skb)->nr_frags == 0) {
......
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