Kernel/libc - Replace invalid '%C' strings with "(inval)"
[tpg/acess2.git] / KernelLand / Modules / Network / E1000 / e1000.c
1 /*
2  * Acess2 E1000 Network Driver
3  * - By John Hodge (thePowersGang)
4  *
5  * e1000.c
6  * - Intel 8254x Network Card Driver (core)
7  */
8 #define DEBUG   0
9 #define VERSION VER2(0,1)
10 #include <acess.h>
11 #include "e1000.h"
12 #include <modules.h>
13 #include <drv_pci.h>
14 #include <IPStack/include/adapters_api.h>
15 #include <timers.h>     // Time_Delay
16
17 const struct sSupportedCard {
18         Uint16  Vendor, Device;
19 } caSupportedCards[] = {
20         {0x8086, 0x100E},       // 82540EM-A Desktop
21         {0x8086, 0x1010},       // 82546EB-A1 Copper Dual Port
22         {0x8086, 0x1012},       // 82546EB-A1 Fiber
23         {0x8086, 0x1019},       // 82547[EG]I Copper
24         {0x8086, 0x101A},       // 82547EI Mobile
25         {0x8086, 0x101D},       // 82546EB-A1 Copper Quad Port
26 };
27 const int ciNumSupportedCards = sizeof(caSupportedCards)/sizeof(caSupportedCards[0]);
28
29 // === PROTOTYPES ===
30  int    E1000_Install(char **Arguments);
31  int    E1000_Cleanup(void);
32 tIPStackBuffer  *E1000_WaitForPacket(void *Ptr);
33  int    E1000_SendPacket(void *Ptr, tIPStackBuffer *Buffer);
34 void    E1000_IRQHandler(int Num, void *Ptr);
35  int    E1000_int_InitialiseCard(tCard *Card);
36 Uint16  E1000_int_ReadEEPROM(tCard *Card, Uint8 WordIdx);
37
38 // === GLOBALS ===
39 MODULE_DEFINE(0, VERSION, E1000, E1000_Install, E1000_Cleanup, NULL);
40 tIPStack_AdapterType    gE1000_AdapterType = {
41         .Name = "E1000",
42         .Type = ADAPTERTYPE_ETHERNET_1G,        // TODO: Differentiate differnet wire protos and speeds
43         .Flags = ADAPTERFLAG_OFFLOAD_MAC,       // TODO: IP/TCP/UDP checksum offloading
44         .SendPacket = E1000_SendPacket,
45         .WaitForPacket = E1000_WaitForPacket
46         };
47 tCard   *gaE1000_Cards;
48
49 // === CODE ===
50 int E1000_Install(char **Arguments)
51 {
52          int    card_count = 0;
53         for( int modelidx = 0; modelidx < ciNumSupportedCards; modelidx ++ )
54         {
55                 const struct sSupportedCard     *cardtype = &caSupportedCards[modelidx];
56                 card_count += PCI_CountDevices(cardtype->Vendor, cardtype->Device);
57         }
58         LOG("card_count = %i", card_count);
59         if( card_count == 0 ) {
60                 LOG("Zero cards located");
61                 return MODULE_ERR_NOTNEEDED;
62         }
63
64         // Allocate card array
65         gaE1000_Cards = calloc(sizeof(tCard), card_count);
66         if( !gaE1000_Cards ) {
67                 return MODULE_ERR_MALLOC;
68         }       
69
70         // Initialise cards
71         int card_idx = 0;
72         for( int modelidx = 0; modelidx < ciNumSupportedCards; modelidx ++ )
73         {
74                 const struct sSupportedCard     *cardtype = &caSupportedCards[modelidx];
75                 for( int id = -1, i = 0; (id = PCI_GetDevice(cardtype->Vendor, cardtype->Device, i)) != -1; i ++ )
76                 {
77                         tCard   *card = &gaE1000_Cards[card_idx++];
78                         card->MMIOBasePhys = PCI_GetValidBAR(id, 0, PCI_BARTYPE_MEMNP);
79                         if( !card->MMIOBasePhys ) {
80                                 Log_Warning("E1000", "Dev %i: BAR0 should be non-prefetchable memory", id);
81                                 continue;
82                         }
83
84                         card->IRQ = PCI_GetIRQ(id);
85                         IRQ_AddHandler(card->IRQ, E1000_IRQHandler, card);
86                         PCI_SetCommand(id, PCI_CMD_MEMENABLE|PCI_CMD_BUSMASTER, 0);
87                 
88                         Log_Debug("E1000", "Card %i: %P IRQ %i", card_idx, card->MMIOBasePhys, card->IRQ);
89
90                         if( E1000_int_InitialiseCard(card) ) {
91                                 return MODULE_ERR_MALLOC;
92                         }
93                         
94                         card->IPStackHandle = IPStack_Adapter_Add(&gE1000_AdapterType, card, card->MacAddr);
95                 }
96         }
97         return MODULE_ERR_OK;
98 }
99
100 int E1000_Cleanup(void)
101 {
102         return 0;
103 }
104
105 void E1000_int_ReleaseRXD(void *Arg, size_t HeadLen, size_t FootLen, const void *Data)
106 {
107         tCard   **cardptr = Arg;
108         tCard   *Card = *cardptr;
109          int    rxd = (Arg - (void*)Card->RXBackHandles) / sizeof(void*);
110
111         LOG("RXD %p %i being released", Card, rxd);
112         ASSERT(rxd >= 0 && rxd < NUM_RX_DESC);
113
114         Card->RXDescs[rxd].Status = 0;
115         Mutex_Acquire(&Card->lRXDescs);
116         if( rxd == REG32(Card, REG_RDT) ) {
117                 while( rxd != Card->FirstUnseenRXD && !(Card->RXDescs[rxd].Status & RXD_STS_DD) ) {
118                         rxd ++;
119                         if( rxd == NUM_RX_DESC )
120                                 rxd = 0;
121                 }
122                 REG32(Card, REG_RDT) = rxd;
123                 LOG("Updated RDT=%i", rxd);
124         }
125         Mutex_Release(&Card->lRXDescs);
126 }
127
128 tIPStackBuffer *E1000_WaitForPacket(void *Ptr)
129 {
130         tCard   *Card = Ptr;
131         
132         if( Semaphore_Wait(&Card->AvailPackets, 1) != 1 )
133                 return NULL;
134         
135         ENTER("pPtr", Ptr);
136
137         Mutex_Acquire(&Card->lRXDescs);
138          int    first_rxd = Card->FirstUnseenRXD;
139          int    last_rxd = first_rxd;
140          int    nDesc = 1;
141         while( last_rxd != Card->LastUnseenRXD  ) {
142                 if( !(Card->RXDescs[last_rxd].Status & RXD_STS_DD) )
143                         break;  // Oops, should ahve found an EOP first
144                 if( Card->RXDescs[last_rxd].Status & RXD_STS_EOP )
145                         break;
146                 nDesc ++;
147                 last_rxd = (last_rxd + 1) % NUM_RX_DESC;
148         }
149         Card->FirstUnseenRXD = (last_rxd + 1) % NUM_RX_DESC;
150         Mutex_Release(&Card->lRXDescs);
151
152         LOG("nDesc = %i, first_rxd = %i", nDesc, first_rxd);
153         tIPStackBuffer *ret = IPStack_Buffer_CreateBuffer(nDesc);
154          int    rxd = first_rxd;
155         for( int i = 0; i < nDesc; i ++ )
156         {
157                 IPStack_Buffer_AppendSubBuffer(ret, 0, Card->RXDescs[rxd].Length, Card->RXBuffers[rxd],
158                         E1000_int_ReleaseRXD, &Card->RXBackHandles[rxd]);
159         }
160
161         LEAVE('p', ret);
162         return ret;
163 }
164
165 int E1000_SendPacket(void *Ptr, tIPStackBuffer *Buffer)
166 {
167         tCard   *Card = Ptr;
168
169         ENTER("pPtr pBuffer", Ptr, Buffer);
170
171          int    nDesc = 0;
172         size_t  len;
173         const void      *ptr;
174         // Count sub-buffers (including splitting cross-page entries)
175          int    idx = -1;
176         while( (idx = IPStack_Buffer_GetBuffer(Buffer, idx, &len, &ptr)) != -1 )
177         {
178                 if( len > PAGE_SIZE ) {
179                         LOG("len=%i > PAGE_SIZE", len);
180                         LEAVE('i', EINVAL);
181                         return EINVAL;
182                 }
183                 if( MM_GetPhysAddr(ptr) + len-1 != MM_GetPhysAddr((char*)ptr + len-1) ) {
184                         LOG("Buffer %p+%i spans non-contig physical pages", ptr, len);
185                         nDesc ++;
186                 }
187                 nDesc ++;
188         }
189         
190         // Request set of TX descriptors
191         int rv = Semaphore_Wait(&Card->FreeTxDescs, nDesc);
192         if(rv != nDesc) {
193                 LEAVE('i', EINTR);
194                 return EINTR;
195         }
196         Mutex_Acquire(&Card->lTXDescs);
197          int    first_txd = Card->FirstFreeTXD;
198         Card->FirstFreeTXD = (first_txd + nDesc) % NUM_TX_DESC;
199          int    last_txd = (first_txd + nDesc-1) % NUM_TX_DESC;
200
201         LOG("first_txd = %i, last_txd = %i", first_txd, last_txd);
202
203         // Populate buffers
204         idx = -1;
205          int txd = first_txd;
206         while( (idx = IPStack_Buffer_GetBuffer(Buffer, idx, &len, &ptr)) != -1 )
207         {
208                 //Debug_HexDump("E100 SendPacket", ptr, len);
209                 if( MM_GetPhysAddr(ptr) + len-1 != MM_GetPhysAddr((char*)ptr + len-1) )
210                 {
211                         size_t  remlen = PAGE_SIZE - ((tVAddr)ptr & (PAGE_SIZE-1));
212                         // Split in two
213                         // - First Page
214                         Card->TXDescs[txd].Buffer = MM_GetPhysAddr(ptr);
215                         Card->TXDescs[txd].Length = remlen;
216                         Card->TXDescs[txd].CMD = TXD_CMD_RS;
217                         txd = (txd + 1) % NUM_TX_DESC;
218                         // - Second page
219                         Card->TXDescs[txd].Buffer = MM_GetPhysAddr((char*)ptr + remlen);
220                         Card->TXDescs[txd].Length = len - remlen;
221                         Card->TXDescs[txd].CMD = TXD_CMD_RS;
222                 }
223                 else
224                 {
225                         // Single
226                         volatile tTXDesc *txdp = &Card->TXDescs[txd];
227                         txdp->Buffer = MM_GetPhysAddr(ptr);
228                         txdp->Length = len;
229                         txdp->CMD = TXD_CMD_RS;
230                         LOG("%P: %llx %x %x", MM_GetPhysAddr((void*)txdp), txdp->Buffer, txdp->Length, txdp->CMD);
231                 }
232                 txd = (txd + 1) % NUM_TX_DESC;
233         }
234         Card->TXDescs[last_txd].CMD |= TXD_CMD_EOP|TXD_CMD_IDE|TXD_CMD_IFCS;
235         Card->TXSrcBuffers[last_txd] = Buffer;
236
237         __sync_synchronize();
238         #if DEBUG
239         {
240                 volatile tTXDesc *txdp = Card->TXDescs + last_txd;
241                 LOG("%p %P: %llx %x %x", txdp, MM_GetPhysAddr((void*)txdp), txdp->Buffer, txdp->Length, txdp->CMD);
242                 volatile tTXDesc *txdp_base = MM_MapTemp(MM_GetPhysAddr((void*)Card->TXDescs));
243                 txdp = txdp_base + last_txd;
244                 LOG("%p %P: %llx %x %x", txdp, MM_GetPhysAddr((void*)txdp), txdp->Buffer, txdp->Length, txdp->CMD);
245                 MM_FreeTemp( (void*)txdp_base);
246         }
247         #endif
248         // Trigger TX
249         IPStack_Buffer_LockBuffer(Buffer);
250         LOG("Triggering TX - Buffers[%i]=%p", last_txd, Buffer);
251         REG32(Card, REG_TDT) = Card->FirstFreeTXD;
252         Mutex_Release(&Card->lTXDescs);
253         LOG("Waiting for TX to complete");
254         
255         // Wait for completion (lock will block, then release straight away)
256         IPStack_Buffer_LockBuffer(Buffer);
257         IPStack_Buffer_UnlockBuffer(Buffer);
258
259         // TODO: Check status bits
260
261         LEAVE('i', 0);
262         return 0;
263 }
264
265 void E1000_IRQHandler(int Num, void *Ptr)
266 {
267         tCard   *Card = Ptr;
268         
269         Uint32  icr = REG32(Card, REG_ICR);
270         if( icr == 0 )
271                 return ;
272         LOG("icr = %x", icr);
273
274         // Transmit descriptor written
275         if( (icr & ICR_TXDW) || (icr & ICR_TXQE) )
276         {
277                  int    nReleased = 0;
278                  int    txd = Card->LastFreeTXD;
279                  int    nReleasedAtLastDD = 0;
280                  int    idxOfLastDD = txd;
281                 // Walk descriptors looking for the first non-complete descriptor
282                 LOG("TX %i:%i", Card->LastFreeTXD, Card->FirstFreeTXD);
283                 while( txd != Card->FirstFreeTXD )
284                 {
285                         nReleased ++;
286                         if(Card->TXDescs[txd].Status & TXD_STS_DD) {
287                                 nReleasedAtLastDD = nReleased;
288                                 idxOfLastDD = txd;
289                         }
290                         txd ++;
291                         if(txd == NUM_TX_DESC)
292                                 txd = 0;
293                 }
294                 if( nReleasedAtLastDD )
295                 {
296                         // Unlock buffers
297                         txd = Card->LastFreeTXD;
298                         LOG("TX unlocking range %i-%i", txd, idxOfLastDD);
299                         while( txd != (idxOfLastDD+1)%NUM_TX_DESC )
300                         {
301                                 if( Card->TXSrcBuffers[txd] ) {
302                                         LOG("- Unlocking %i:%p", txd, Card->TXSrcBuffers[txd]);
303                                         IPStack_Buffer_UnlockBuffer( Card->TXSrcBuffers[txd] );
304                                         Card->TXSrcBuffers[txd] = NULL;
305                                 }
306                                 txd ++;
307                                 if(txd == NUM_TX_DESC)
308                                         txd = 0;
309                         }
310                         // Update last free
311                         Card->LastFreeTXD = txd;
312                         Semaphore_Signal(&Card->FreeTxDescs, nReleasedAtLastDD);
313                         LOG("nReleased = %i", nReleasedAtLastDD);
314                 }
315                 else
316                 {
317                         LOG("No completed TXDs");
318                 }
319         }       
320
321         if( icr & ICR_LSC )
322         {
323                 // Link status change
324                 LOG("LSC");
325                 // TODO: Detect link drop/raise and poke IPStack
326         }
327
328         if( icr & ICR_RXO )
329         {
330                 LOG("RX Overrun");
331         }
332         
333         // Pending packet (s)
334         if( icr & ICR_RXT0 )
335         {
336                  int    nPackets = 0;
337                 LOG("RX %i:%i", Card->LastUnseenRXD, Card->FirstUnseenRXD);
338                 while( (Card->RXDescs[Card->LastUnseenRXD].Status & RXD_STS_DD) )
339                 {
340                         if( Card->RXDescs[Card->LastUnseenRXD].Status & RXD_STS_EOP )
341                                 nPackets ++;
342                         Card->LastUnseenRXD ++;
343                         if( Card->LastUnseenRXD == NUM_RX_DESC )
344                                 Card->LastUnseenRXD = 0;
345                         
346                         if( Card->LastUnseenRXD == Card->FirstUnseenRXD )
347                                 break;
348                 }
349                 Semaphore_Signal(&Card->AvailPackets, nPackets);
350                 LOG("nPackets = %i", nPackets);
351         }
352         
353         // Transmit Descriptor Low Threshold hit
354         if( icr & ICR_TXD_LOW )
355         {
356                 
357         }
358
359         // Receive Descriptor Minimum Threshold Reached
360         // - We're reading too slow
361         if( icr & ICR_RXDMT0 )
362         {
363                 LOG("RX descs running out");
364         }
365         
366         icr &= ~(ICR_RXT0|ICR_LSC|ICR_TXQE|ICR_TXDW|ICR_TXD_LOW|ICR_RXDMT0);
367         if( icr )
368                 Log_Warning("E1000", "Unhandled ICR bits 0x%x", icr);
369 }
370
371 // TODO: Move this function into Kernel/drvutil.c
372 /**
373  * \brief Allocate a set of buffers in hardware mapped space
374  * 
375  * Allocates \a NumBufs buffers using shared pages (if \a BufSize is less than a page) or
376  * as a set of contiugious allocations.
377  */
378 int DrvUtil_AllocBuffers(void **Buffers, int NumBufs, int PhysBits, size_t BufSize)
379 {
380         if( BufSize >= PAGE_SIZE )
381         {
382                 const int       pages_per_buf = BufSize / PAGE_SIZE;
383                 ASSERT(pages_per_buf * PAGE_SIZE == BufSize);
384                 for( int i = 0; i < NumBufs; i ++ ) {
385                         Buffers[i] = (void*)MM_AllocDMA(pages_per_buf, PhysBits, NULL);
386                         if( !Buffers[i] )       return 1;
387                 }
388         }
389         else
390         {
391                 size_t  ofs = 0;
392                 const int       bufs_per_page = PAGE_SIZE / BufSize;
393                 ASSERT(bufs_per_page * BufSize == PAGE_SIZE);
394                 void    *page = NULL;
395                 for( int i = 0; i < NumBufs; i ++ )
396                 {
397                         if( ofs == 0 ) {
398                                 page = (void*)MM_AllocDMA(1, PhysBits, NULL);
399                                 if( !page )     return 1;
400                         }
401                         Buffers[i] = (char*)page + ofs;
402                         ofs += BufSize;
403                         if( ofs >= PAGE_SIZE )
404                                 ofs = 0;
405                 }
406         }
407         return 0;
408 }
409
410 int E1000_int_InitialiseCard(tCard *Card)
411 {
412         ENTER("pCard", Card);
413         
414         // Map required structures
415         Card->MMIOBase = (void*)MM_MapHWPages( Card->MMIOBasePhys, 7 );
416         if( !Card->MMIOBase ) {
417                 Log_Error("E1000", "%p: Failed to map MMIO Space (7 pages)", Card);
418                 LEAVE('i', 1);
419                 return 1;
420         }
421
422         // --- Read MAC address from EEPROM ---
423         {
424                 Uint16  macword;
425                 macword = E1000_int_ReadEEPROM(Card, 0);
426                 Card->MacAddr[0] = macword & 0xFF;
427                 Card->MacAddr[1] = macword >> 8;
428                 macword = E1000_int_ReadEEPROM(Card, 1);
429                 Card->MacAddr[2] = macword & 0xFF;
430                 Card->MacAddr[3] = macword >> 8;
431                 macword = E1000_int_ReadEEPROM(Card, 2);
432                 Card->MacAddr[4] = macword & 0xFF;
433                 Card->MacAddr[5] = macword >> 8;
434         }
435         Log_Log("E1000", "%p: MAC Address %02x:%02x:%02x:%02x:%02x:%02x",
436                 Card,
437                 Card->MacAddr[0], Card->MacAddr[1],
438                 Card->MacAddr[2], Card->MacAddr[3],
439                 Card->MacAddr[4], Card->MacAddr[5]);
440         
441         // --- Prepare for RX ---
442         LOG("RX Preparation");
443         Card->RXDescs = (void*)MM_AllocDMA(1, 64, NULL);
444         if( !Card->RXDescs ) {
445                 LEAVE('i', 2);
446                 return 2;
447         }
448         if( DrvUtil_AllocBuffers(Card->RXBuffers, NUM_RX_DESC, 64, RX_DESC_BSIZE) ) {
449                 LEAVE('i', 3);
450                 return 3;
451         }
452         for( int i = 0; i < NUM_RX_DESC; i ++ )
453         {
454                 Card->RXDescs[i].Buffer = MM_GetPhysAddr(Card->RXBuffers[i]);
455                 Card->RXDescs[i].Status = 0;    // Clear RXD_STS_DD, gives it to the card
456                 Card->RXBackHandles[i] = Card;
457         }
458         
459         REG64(Card, REG_RDBAL) = MM_GetPhysAddr((void*)Card->RXDescs);
460         REG32(Card, REG_RDLEN) = NUM_RX_DESC * 16;
461         REG32(Card, REG_RDH) = 0;
462         REG32(Card, REG_RDT) = NUM_RX_DESC;
463         // Hardware size, Multicast promisc, Accept broadcast, Interrupt at 1/4 Rx descs free
464         REG32(Card, REG_RCTL) = RX_DESC_BSIZEHW | RCTL_MPE | RCTL_BAM | RCTL_RDMTS_1_4;
465         Card->FirstUnseenRXD = 0;
466         Card->LastUnseenRXD = 0;
467
468         // --- Prepare for TX ---
469         LOG("TX Preparation");
470         Card->TXDescs = (void*)MM_AllocDMA(1, 64, NULL);
471         if( !Card->RXDescs ) {
472                 LEAVE('i', 4);
473                 return 4;
474         }
475         LOG("Card->RXDescs = %p [%P]", Card->TXDescs, MM_GetPhysAddr((void*)Card->TXDescs));
476         for( int i = 0; i < NUM_TX_DESC; i ++ )
477         {
478                 Card->TXDescs[i].Buffer = 0;
479                 Card->TXDescs[i].CMD = 0;
480         }
481         REG64(Card, REG_TDBAL) = MM_GetPhysAddr((void*)Card->TXDescs);
482         REG32(Card, REG_TDLEN) = NUM_TX_DESC * 16;
483         REG32(Card, REG_TDH) = 0;
484         REG32(Card, REG_TDT) = 0;
485         // Enable, pad short packets
486         REG32(Card, REG_TCTL) = TCTL_EN | TCTL_PSP | (0x0F << TCTL_CT_ofs) | (0x40 << TCTL_COLD_ofs);
487         Card->FirstFreeTXD = 0;
488
489         // -- Prepare Semaphores
490         Semaphore_Init(&Card->FreeTxDescs, NUM_TX_DESC, NUM_TX_DESC, "E1000", "TXDescs");
491         Semaphore_Init(&Card->AvailPackets, 0, NUM_RX_DESC, "E1000", "RXDescs");
492
493         // --- Prepare for full operation ---
494         LOG("Starting card");
495         REG32(Card, REG_CTRL) = CTRL_SLU|CTRL_ASDE;     // Link up, auto speed detection
496         REG32(Card, REG_IMS) = 0x1F6DC; // Interrupt mask
497         (void)REG32(Card, REG_ICR);     // Discard pending interrupts
498         REG32(Card, REG_RCTL) |= RCTL_EN;
499         LEAVE('i', 0);
500         return 0;
501 }
502
503 Uint16 E1000_int_ReadEEPROM(tCard *Card, Uint8 WordIdx)
504 {
505         REG32(Card, REG_EERD) = ((Uint32)WordIdx << 8) | 1;
506         Uint32  tmp;
507         while( !((tmp = REG32(Card, REG_EERD)) & (1 << 4)) ) {
508                 // TODO: use something like Time_MicroDelay instead
509                 Time_Delay(1);
510         }
511         
512         return tmp >> 16;
513 }

UCC git Repository :: git.ucc.asn.au