]> Joshua Wise's Git repositories - netwatch.git/commitdiff
Queue up a rxdesc, instead of busy waiting for the card to get back to us. This...
authorJoshua Wise <joshua@nyus.joshuawise.com>
Sat, 6 Dec 2008 12:05:15 +0000 (07:05 -0500)
committerJoshua Wise <joshua@nyus.joshuawise.com>
Sat, 6 Dec 2008 12:05:15 +0000 (07:05 -0500)
net/3c90x.c

index ce35b95c7aa061d64090d6d74a765b0bca2eec24..74035e0fad0ada4e4c4842bfcf783da076259dd0 100644 (file)
@@ -251,6 +251,7 @@ static struct
 static struct nic nic;
 static txdesc_t txdesc;
 static rxdesc_t rxdesc;
 static struct nic nic;
 static txdesc_t txdesc;
 static rxdesc_t rxdesc;
+static struct pbuf *currecv;
 
 
 #define _outl(v,a) outl((a),(v))
 
 
 #define _outl(v,a) outl((a),(v))
@@ -542,34 +543,25 @@ a3c90x_transmit(struct pbuf *p)
 #endif
 }
 
 #endif
 }
 
-
-
-/*** a3c90x_poll: exported routine that waits for a certain length of time
- *** for a packet, and if it sees none, returns 0.  This routine should
- *** copy the packet to nic->packet if it gets a packet and set the size
- *** in nic->packetlen.  Return 1 if a packet was found.
- ***/
-static struct pbuf * a3c90x_poll(struct nic *nic)
+/* _setup_recv allocates and sets a pbuf from lwIP as the active receive
+ * packet chain for the 3c90x.  The 3c90x must not be trying to receive
+ * when _setup_recv is being called.
+ */
+static void _setup_recv(struct nic *nic)
 {
 {
-       int i, errcode;
        struct pbuf *p, *q;
        struct pbuf *p, *q;
+       int i;
        
        
-       /* Upload engine acks rxComplete for us later. */
-       if (!(inw(INF_3C90X.IOAddr + regCommandIntStatus_w) & 0x0010))
-               return NULL;
+       rxdesc.status = 0;      /* Clear it out in the very beginning. */
        
        p = pbuf_alloc(PBUF_RAW, 1536 /* XXX magic Max len */, PBUF_POOL);
        if (!p)
        {
                outputf("3c90x: out of memory for packet?");
        
        p = pbuf_alloc(PBUF_RAW, 1536 /* XXX magic Max len */, PBUF_POOL);
        if (!p)
        {
                outputf("3c90x: out of memory for packet?");
-               return NULL;
+               currecv = p;
+               return;
        }
        }
-
-       /* We don't need to acknowledge rxComplete -- the upload engine does
-        * it for us. 
-        */
-
-       /** Build the up-load descriptor **/
+       
        rxdesc.next = 0;
        rxdesc.status = 0;
        for (i = 0, q = p; q; q = q->next, i++)
        rxdesc.next = 0;
        rxdesc.status = 0;
        for (i = 0, q = p; q; q = q->next, i++)
@@ -577,17 +569,31 @@ static struct pbuf * a3c90x_poll(struct nic *nic)
                rxdesc.segments[i].addr = v2p(q->payload);
                rxdesc.segments[i].len = q->len | (q->next ? 0 : (1 << 31));
        }
                rxdesc.segments[i].addr = v2p(q->payload);
                rxdesc.segments[i].len = q->len | (q->next ? 0 : (1 << 31));
        }
-
-       /** Submit the upload descriptor to the NIC **/
+       
        outl(INF_3C90X.IOAddr + regUpListPtr_l, v2p(&rxdesc));
        outl(INF_3C90X.IOAddr + regUpListPtr_l, v2p(&rxdesc));
+       
+       currecv = p;
+}
 
 
-       /** Wait for upload completion (upComplete(15) or upError (14)) **/
-       for (i = 0; i < 40000; i++)     /* XXX What is this shit?! */
-               ;
-       while((rxdesc.status & ((1<<14) | (1<<15))) == 0)
-               for (i = 0; i < 40000; i++)
-                       ;
-
+/*** a3c90x_poll: exported routine that waits for a certain length of time
+ *** for a packet, and if it sees none, returns 0.  This routine should
+ *** copy the packet to nic->packet if it gets a packet and set the size
+ *** in nic->packetlen.  Return 1 if a packet was found.
+ ***/
+static struct pbuf * a3c90x_poll(struct nic *nic)
+{
+       int errcode;
+       struct pbuf *p;
+       
+       if (!currecv)
+               _setup_recv(nic);
+       
+       /* Nothing to do? */
+       if ((rxdesc.status & ((1<<14) | (1<<15))) == 0)
+               return NULL;
+       
+       p = currecv;
+       
        /** Check for Error (else we have good packet) **/
        if (rxdesc.status & (1<<14))
        {
        /** Check for Error (else we have good packet) **/
        if (rxdesc.status & (1<<14))
        {
@@ -604,11 +610,14 @@ static struct pbuf * a3c90x_poll(struct nic *nic)
                        outputf("3C90X: Oversized Frame (%hX)",errcode>>16);
                else
                        outputf("3C90X: Packet error (%hX)",errcode>>16);
                        outputf("3C90X: Oversized Frame (%hX)",errcode>>16);
                else
                        outputf("3C90X: Packet error (%hX)",errcode>>16);
+               
+               pbuf_free(p);           /* Bounce the old one before setting it up again. */
+               _setup_recv(nic);
                return NULL;
        }
 
                return NULL;
        }
 
-       /* Resize the packet to how large it actually is. */
-       pbuf_realloc(p, rxdesc.status & 0x1FFF);
+       pbuf_realloc(p, rxdesc.status & 0x1FFF);        /* Resize the packet to how large it actually is. */
+       _setup_recv(nic);       /* ..and light the NIC up again. */
        
        return p;
 }
        
        return p;
 }
@@ -805,45 +814,44 @@ static int a3c90x_probe(struct pci_dev * pci, void * data)
     linktype = 0x0008;
     if (mopt & 0x01)
        {
     linktype = 0x0008;
     if (mopt & 0x01)
        {
-       outputf("%s100Base-T4",(c++)?", ":"");
+       outputf("  100Base-T4");
        linktype = 0x0006;
        }
     if (mopt & 0x04)
        {
        linktype = 0x0006;
        }
     if (mopt & 0x04)
        {
-       outputf("%s100Base-FX",(c++)?", ":"");
+       outputf("  100Base-FX");
        linktype = 0x0005;
        }
     if (mopt & 0x10)
        {
        linktype = 0x0005;
        }
     if (mopt & 0x10)
        {
-       outputf("%s10Base-2",(c++)?", ":"");
+       outputf("  10Base-2");
        linktype = 0x0003;
        }
     if (mopt & 0x20)
        {
        linktype = 0x0003;
        }
     if (mopt & 0x20)
        {
-       outputf("%sAUI",(c++)?", ":"");
+       outputf("  AUI");
        linktype = 0x0001;
        }
     if (mopt & 0x40)
        {
        linktype = 0x0001;
        }
     if (mopt & 0x40)
        {
-       outputf("%sMII",(c++)?", ":"");
+       outputf("  MII");
        linktype = 0x0006;
        }
     if ((mopt & 0xA) == 0xA)
        {
        linktype = 0x0006;
        }
     if ((mopt & 0xA) == 0xA)
        {
-       outputf("%s10Base-T / 100Base-TX",(c++)?", ":"");
+       outputf("  10Base-T / 100Base-TX");
        linktype = 0x0008;
        }
     else if ((mopt & 0xA) == 0x2)
        {
        linktype = 0x0008;
        }
     else if ((mopt & 0xA) == 0x2)
        {
-       outputf("%s100Base-TX",(c++)?", ":"");
+       outputf("  100Base-TX");
        linktype = 0x0008;
        }
     else if ((mopt & 0xA) == 0x8)
        {
        linktype = 0x0008;
        }
     else if ((mopt & 0xA) == 0x8)
        {
-       outputf("%s10Base-T",(c++)?", ":"");
+       outputf("  10Base-T");
        linktype = 0x0008;
        }
        linktype = 0x0008;
        }
-    outputf(".");
 
     /** Determine transceiver type to use, depending on value stored in
      ** eeprom 0x16
 
     /** Determine transceiver type to use, depending on value stored in
      ** eeprom 0x16
@@ -905,7 +913,9 @@ static int a3c90x_probe(struct pci_dev * pci, void * data)
     /** Set the RX filter = receive only individual pkts & multicast & bcast. **/
     _issue_command(INF_3C90X.IOAddr, cmdSetRxFilter, 0x01 + 0x02 + 0x04);
     _issue_command(INF_3C90X.IOAddr, cmdRxEnable, 0);
     /** Set the RX filter = receive only individual pkts & multicast & bcast. **/
     _issue_command(INF_3C90X.IOAddr, cmdSetRxFilter, 0x01 + 0x02 + 0x04);
     _issue_command(INF_3C90X.IOAddr, cmdRxEnable, 0);
-
+    
+    /* Now stick a packet in the queue. */
+    _setup_recv(&nic);
 
     /**
      ** set Indication and Interrupt flags , acknowledge any IRQ's
 
     /**
      ** set Indication and Interrupt flags , acknowledge any IRQ's
This page took 0.032599 seconds and 4 git commands to generate.