2 * Copyright © 1997-2007 Alacritech, Inc. All rights reserved
4 * $Id: sxghif.h,v 1.5 2008/07/24 19:18:22 chris Exp $
8 * This file contains structures and definitions for the
9 * Alacritech Sahara host interface
12 /*******************************************************************************
14 *******************************************************************************/
15 typedef struct _SXG_UCODE_REGS {
16 // Address 0 - 0x3F = Command codes 0-15 for TCB 0. Excode 0
17 u32 Icr; // Code = 0 (extended), ExCode = 0 - Int control
18 u32 RsvdReg1; // Code = 1 - TOE -NA
19 u32 RsvdReg2; // Code = 2 - TOE -NA
20 u32 RsvdReg3; // Code = 3 - TOE -NA
21 u32 RsvdReg4; // Code = 4 - TOE -NA
22 u32 RsvdReg5; // Code = 5 - TOE -NA
23 u32 CardUp; // Code = 6 - Microcode initialized when 1
24 u32 RsvdReg7; // Code = 7 - TOE -NA
25 u32 CodeNotUsed[8]; // Codes 8-15 not used. ExCode = 0
26 // This brings us to ExCode 1 at address 0x40 = Interrupt status pointer
27 u32 Isp; // Code = 0 (extended), ExCode = 1
28 u32 PadEx1[15]; // Codes 1-15 not used with extended codes
29 // ExCode 2 = Interrupt Status Register
30 u32 Isr; // Code = 0 (extended), ExCode = 2
32 // ExCode 3 = Event base register. Location of event rings
33 u32 EventBase; // Code = 0 (extended), ExCode = 3
35 // ExCode 4 = Event ring size
36 u32 EventSize; // Code = 0 (extended), ExCode = 4
38 // ExCode 5 = TCB Buffers base address
39 u32 TcbBase; // Code = 0 (extended), ExCode = 5
41 // ExCode 6 = TCB Composite Buffers base address
42 u32 TcbCompBase; // Code = 0 (extended), ExCode = 6
44 // ExCode 7 = Transmit ring base address
45 u32 XmtBase; // Code = 0 (extended), ExCode = 7
47 // ExCode 8 = Transmit ring size
48 u32 XmtSize; // Code = 0 (extended), ExCode = 8
50 // ExCode 9 = Receive ring base address
51 u32 RcvBase; // Code = 0 (extended), ExCode = 9
53 // ExCode 10 = Receive ring size
54 u32 RcvSize; // Code = 0 (extended), ExCode = 10
56 // ExCode 11 = Read EEPROM Config
57 u32 Config; // Code = 0 (extended), ExCode = 11
59 // ExCode 12 = Multicast bits 31:0
60 u32 McastLow; // Code = 0 (extended), ExCode = 12
62 // ExCode 13 = Multicast bits 63:32
63 u32 McastHigh; // Code = 0 (extended), ExCode = 13
66 u32 Ping; // Code = 0 (extended), ExCode = 14
68 // ExCode 15 = Link MTU
69 u32 LinkMtu; // Code = 0 (extended), ExCode = 15
71 // ExCode 16 = Download synchronization
72 u32 LoadSync; // Code = 0 (extended), ExCode = 16
74 // ExCode 17 = Upper DRAM address bits on 32-bit systems
75 u32 Upper; // Code = 0 (extended), ExCode = 17
77 // ExCode 18 = Slowpath Send Index Address
78 u32 SPSendIndex; // Code = 0 (extended), ExCode = 18
80 u32 RsvdXF; // Code = 0 (extended), ExCode = 19
82 // ExCode 20 = Aggregation
83 u32 Aggregation; // Code = 0 (extended), ExCode = 20
85 // ExCode 21 = Receive MDL push timer
86 u32 PushTicks; // Code = 0 (extended), ExCode = 21
89 u32 AckFrequency; // Code = 0 (extended), ExCode = 22
98 u32 RsvdReg25; // Code = 0 (extended), ExCode = 25
100 // ExCode 26 = Receive checksum requirements
101 u32 ReceiveChecksum; // Code = 0 (extended), ExCode = 26
103 // ExCode 27 = RSS Requirements
104 u32 Rss; // Code = 0 (extended), ExCode = 27
106 // ExCode 28 = RSS Table
107 u32 RssTable; // Code = 0 (extended), ExCode = 28
109 // ExCode 29 = Event ring release entries
110 u32 EventRelease; // Code = 0 (extended), ExCode = 29
112 // ExCode 30 = Number of receive bufferlist commands on ring 0
113 u32 RcvCmd; // Code = 0 (extended), ExCode = 30
115 // ExCode 31 = slowpath transmit command - Data[31:0] = 1
116 u32 XmtCmd; // Code = 0 (extended), ExCode = 31
118 // ExCode 32 = Dump command
119 u32 DumpCmd; // Code = 0 (extended), ExCode = 32
121 // ExCode 33 = Debug command
122 u32 DebugCmd; // Code = 0 (extended), ExCode = 33
124 // There are 128 possible extended commands - each of account for 16
125 // words (including the non-relevent base command codes 1-15).
126 // Pad for the remainder of these here to bring us to the next CPU
127 // base. As extended codes are added, reduce the first array value in
128 // the following field
129 u32 PadToNextCpu[94][16]; // 94 = 128 - 34 (34 = Excodes 0 - 33)
130 } SXG_UCODE_REGS, *PSXG_UCODE_REGS;
132 // Interrupt control register (0) values
133 #define SXG_ICR_DISABLE 0x00000000
134 #define SXG_ICR_ENABLE 0x00000001
135 #define SXG_ICR_MASK 0x00000002
136 #define SXG_ICR_MSGID_MASK 0xFFFF0000
137 #define SXG_ICR_MSGID_SHIFT 16
138 #define SXG_ICR(_MessageId, _Data) \
139 ((((_MessageId) << SXG_ICR_MSGID_SHIFT) & \
140 SXG_ICR_MSGID_MASK) | (_Data))
142 // The Microcode supports up to 16 RSS queues
143 #define SXG_MAX_RSS 16
144 #define SXG_MAX_RSS_TABLE_SIZE 256 // 256-byte max
146 #define SXG_RSS_TCP6 0x00000001 // RSS TCP over IPv6
147 #define SXG_RSS_TCP4 0x00000002 // RSS TCP over IPv4
148 #define SXG_RSS_LEGACY 0x00000004 // Line-base interrupts
149 #define SXG_RSS_TABLE_SIZE 0x0000FF00 // Table size mask
150 #define SXG_RSS_TABLE_SHIFT 8
151 #define SXG_RSS_BASE_CPU 0x00FF0000 // Base CPU (not used)
152 #define SXG_RSS_BASE_SHIFT 16
154 #define SXG_RCV_IP_CSUM_ENABLED 0x00000001 // ExCode 26 (ReceiveChecksum)
155 #define SXG_RCV_TCP_CSUM_ENABLED 0x00000002 // ExCode 26 (ReceiveChecksum)
157 #define SXG_XMT_CPUID_SHIFT 16
160 #define SXG_CHECK_FOR_HANG_TIME 3000
162 #define SXG_CHECK_FOR_HANG_TIME 5
166 * TCB registers - This is really the same register memory area as UCODE_REGS
167 * above, but defined differently. Bits 17:06 of the address define the TCB,
168 * which means each TCB area occupies 0x40 (64) bytes, or 16 u32S. What really
169 * is happening is that these registers occupy the "PadEx[15]" areas in the
170 * SXG_UCODE_REGS definition above
172 typedef struct _SXG_TCB_REGS {
173 u32 ExCode; /* Extended codes - see SXG_UCODE_REGS */
174 u32 Xmt; /* Code = 1 - # of Xmt descriptors added to ring */
175 u32 Rcv; /* Code = 2 - # of Rcv descriptors added to ring */
176 u32 Rsvd1; /* Code = 3 - TOE NA */
177 u32 Rsvd2; /* Code = 4 - TOE NA */
178 u32 Rsvd3; /* Code = 5 - TOE NA */
179 u32 Invalid; /* Code = 6 - Reserved for "CardUp" see above */
180 u32 Rsvd4; /* Code = 7 - TOE NA */
181 u32 Rsvd5; /* Code = 8 - TOE NA */
182 u32 Pad[7]; /* Codes 8-15 - Not used. */
183 } SXG_TCB_REGS, *PSXG_TCB_REGS;
185 /***************************************************************************
188 * _______________________________________
190 * |____|____|____|____|____|____|____|____|
191 * ^^^^ ^^^^ ^^^^ ^^^^ \ /
192 * ERR --|||| |||| |||| |||| -----------------
193 * EVENT ---||| |||| |||| |||| |
194 * ----|| |||| |||| |||| |-- Crash Address
195 * UPC -----| |||| |||| ||||
196 * LEVENT -------|||| |||| ||||
197 * PDQF --------||| |||| ||||
198 * RMISS ---------|| |||| ||||
199 * BREAK ----------| |||| ||||
200 * HBEATOK ------------|||| ||||
201 * NOHBEAT -------------||| ||||
202 * ERFULL --------------|| ||||
203 * XDROP ---------------| ||||
204 * -----------------||||
205 * -----------------||||--\
206 * ||---|-CpuId of crash
208 ***************************************************************************/
209 #define SXG_ISR_ERR 0x80000000 // Error
210 #define SXG_ISR_EVENT 0x40000000 // Event ring event
211 #define SXG_ISR_NONE1 0x20000000 // Not used
212 #define SXG_ISR_UPC 0x10000000 // Dump/debug command complete
213 #define SXG_ISR_LINK 0x08000000 // Link event
214 #define SXG_ISR_PDQF 0x04000000 // Processed data queue full
215 #define SXG_ISR_RMISS 0x02000000 // Drop - no host buf
216 #define SXG_ISR_BREAK 0x01000000 // Breakpoint hit
217 #define SXG_ISR_PING 0x00800000 // Heartbeat response
218 #define SXG_ISR_DEAD 0x00400000 // Card crash
219 #define SXG_ISR_ERFULL 0x00200000 // Event ring full
220 #define SXG_ISR_XDROP 0x00100000 // XMT Drop - no DRAM bufs or XMT err
221 #define SXG_ISR_SPSEND 0x00080000 // Slow send complete
222 #define SXG_ISR_CPU 0x00070000 // Dead CPU mask
223 #define SXG_ISR_CPU_SHIFT 16 // Dead CPU shift
224 #define SXG_ISR_CRASH 0x0000FFFF // Crash address mask
226 /***************************************************************************
230 ***************************************************************************/
233 * .___________________.___________________.
234 * |<------------ Pad 0 ------------>|
235 * |_________|_________|_________|_________|0 0x00
236 * |<------------ Pad 1 ------------>|
237 * |_________|_________|_________|_________|4 0x04
238 * |<------------ Pad 2 ------------>|
239 * |_________|_________|_________|_________|8 0x08
240 * |<----------- Event Word 0 ------------>|
241 * |_________|_________|_________|_________|12 0x0c
242 * |<----------- Event Word 1 ------------>|
243 * |_________|_________|_________|_________|16 0x10
244 * |<------------- Toeplitz ------------>|
245 * |_________|_________|_________|_________|20 0x14
246 * |<----- Length ---->|<------ TCB Id --->|
247 * |_________|_________|_________|_________|24 0x18
248 * |<----- Status ---->|Evnt Code|Flsh Code|
249 * |_________|_________|_________|_________|28 0x1c
251 * |- VALID |||| ||||- RBUFC
261 * _______________________________________
262 * |<----- Status ---->|Evnt Code|Flsh Code|
263 * |_________|Cmd Index|_________|_________|28 0x1c
274 #pragma pack(push, 1)
275 typedef struct _SXG_EVENT {
276 u32 Pad[1]; // not used
277 u32 SndUna; // SndUna value
278 u32 Resid; // receive MDL resid
280 void * HostHandle; // Receive host handle
287 u32 Toeplitz; // RSS Toeplitz hash
289 ushort Rsvd3; // TOE NA
290 ushort HdrOffset; // Slowpath
293 unsigned char Rsvd4; // TOE NA
294 unsigned char Code; // Event code
295 unsigned char CommandIndex; // New ring index
296 unsigned char Status; // Event status
297 } SXG_EVENT, *PSXG_EVENT;
300 // Event code definitions
301 #define EVENT_CODE_BUFFERS 0x01 // Receive buffer list command (ring 0)
302 #define EVENT_CODE_SLOWRCV 0x02 // Slowpath receive
303 #define EVENT_CODE_UNUSED 0x04 // Was slowpath commands complete
306 #define EVENT_STATUS_VALID 0x80 // Entry valid
309 #define EVENT_STATUS_ERROR 0x40 // Completed with error. Index in next byte
310 #define EVENT_STATUS_TCPIP4 0x20 // TCPIPv4 frame
311 #define EVENT_STATUS_TCPBAD 0x10 // Bad TCP checksum
312 #define EVENT_STATUS_IPBAD 0x08 // Bad IP checksum
313 #define EVENT_STATUS_RCVERR 0x04 // Slowpath receive error
314 #define EVENT_STATUS_IPONLY 0x02 // IP frame
315 #define EVENT_STATUS_TCPIP6 0x01 // TCPIPv6 frame
316 #define EVENT_STATUS_TCPIP 0x21 // Combination of v4 and v6
319 // Size must be power of 2, between 128 and 16k
320 #define EVENT_RING_SIZE 4096 // ??
321 #define EVENT_RING_BATCH 16 // Hand entries back 16 at a time.
322 #define EVENT_BATCH_LIMIT 256 // Stop processing events after 256 (16 * 16)
324 typedef struct _SXG_EVENT_RING {
325 SXG_EVENT Ring[EVENT_RING_SIZE];
326 }SXG_EVENT_RING, *PSXG_EVENT_RING;
328 /***************************************************************************
332 ***************************************************************************/
333 // Maximum number of TCBS supported by hardware/microcode
334 #define SXG_MAX_TCB 4096
335 // Minimum TCBs before we fail initialization
336 #define SXG_MIN_TCB 512
338 // The bucket is determined by bits 11:4 of the toeplitz if we support 4k
339 // offloaded connections, 10:4 if we support 2k and so on.
340 #define SXG_TCB_BUCKET_SHIFT 4
341 #define SXG_TCB_PER_BUCKET 16
342 #define SXG_TCB_BUCKET_MASK 0xFF0 // Bucket portion of TCB ID
343 #define SXG_TCB_ELEMENT_MASK 0x00F // Element within bucket
344 #define SXG_TCB_BUCKETS 256 // 256 * 16 = 4k
346 #define SXG_TCB_BUFFER_SIZE 512 // ASSERT format is correct
348 #define SXG_TCB_RCVQ_SIZE 736
350 #define SXG_TCB_COMPOSITE_BUFFER_SIZE 1024
352 #define SXG_LOCATE_TCP_FRAME_HDR(_TcpObject, _IPv6) \
353 (((_TcpObject)->VlanId) ? \
354 ((_IPv6) ? /* Vlan frame header = yes */ \
355 &(_TcpObject)->CompBuffer->Frame.HasVlan.TcpIp6.SxgTcp : \
356 &(_TcpObject)->CompBuffer->Frame.HasVlan.TcpIp.SxgTcp) : \
357 ((_IPv6) ? /* Vlan frame header = No */ \
358 &(_TcpObject)->CompBuffer->Frame.NoVlan.TcpIp6.SxgTcp : \
359 &(_TcpObject)->CompBuffer->Frame.NoVlan.TcpIp.SxgTcp))
361 #define SXG_LOCATE_IP_FRAME_HDR(_TcpObject) \
362 (_TcpObject)->VlanId ? \
363 &(_TcpObject)->CompBuffer->Frame.HasVlan.TcpIp.Ip : \
364 &(_TcpObject)->CompBuffer->Frame.NoVlan.TcpIp.Ip
366 #define SXG_LOCATE_IP6_FRAME_HDR(_TcpObject) \
367 (_TcpObject)->VlanId ? \
368 &(_TcpObject)->CompBuffer->Frame.HasVlan.TcpIp6.Ip : \
369 &(_TcpObject)->CompBuffer->Frame.NoVlan.TcpIp6.Ip
373 // Horrible kludge to distinguish dumb-nic, slowpath, and
374 // fastpath traffic. Decrement the HopLimit by one
375 // for slowpath, two for fastpath. This assumes the limit is measurably
376 // greater than two, which I think is reasonable.
377 // Obviously this is DBG only. Maybe remove later, or #if 0 so we
378 // can set it when needed
379 #define SXG_DBG_HOP_LIMIT(_TcpObject, _FastPath) { \
380 PIPV6_HDR _Ip6FrameHdr; \
381 if((_TcpObject)->IPv6) { \
382 _Ip6FrameHdr = SXG_LOCATE_IP6_FRAME_HDR((_TcpObject)); \
384 _Ip6FrameHdr->HopLimit = (_TcpObject)->Cached.TtlOrHopLimit - 2; \
386 _Ip6FrameHdr->HopLimit = (_TcpObject)->Cached.TtlOrHopLimit - 1; \
391 // Do nothing with free build
392 #define SXG_DBG_HOP_LIMIT(_TcpObject, _FastPath)
395 /***************************************************************************
396 * Receive and transmit rings
397 ***************************************************************************/
398 #define SXG_MAX_RING_SIZE 256
399 #define SXG_XMT_RING_SIZE 128 // Start with 128
400 #define SXG_RCV_RING_SIZE 128 // Start with 128
401 #define SXG_MAX_ENTRIES 4096
403 // Structure and macros to manage a ring
404 typedef struct _SXG_RING_INFO {
405 unsigned char Head; // Where we add entries - Note unsigned char:RING_SIZE
406 unsigned char Tail; // Where we pull off completed entries
407 ushort Size; // Ring size - Must be multiple of 2
408 void * Context[SXG_MAX_RING_SIZE]; // Shadow ring
409 } SXG_RING_INFO, *PSXG_RING_INFO;
411 #define SXG_INITIALIZE_RING(_ring, _size) { \
414 (_ring).Size = (_size); \
416 #define SXG_ADVANCE_INDEX(_index, _size) ((_index) = ((_index) + 1) & ((_size) - 1))
417 #define SXG_PREVIOUS_INDEX(_index, _size) (((_index) - 1) &((_size) - 1))
418 #define SXG_RING_EMPTY(_ring) ((_ring)->Head == (_ring)->Tail)
419 #define SXG_RING_FULL(_ring) ((((_ring)->Head + 1) & ((_ring)->Size - 1)) == (_ring)->Tail)
420 #define SXG_RING_ADVANCE_HEAD(_ring) SXG_ADVANCE_INDEX((_ring)->Head, ((_ring)->Size))
421 #define SXG_RING_RETREAT_HEAD(_ring) ((_ring)->Head = \
422 SXG_PREVIOUS_INDEX((_ring)->Head, (_ring)->Size))
423 #define SXG_RING_ADVANCE_TAIL(_ring) { \
424 ASSERT((_ring)->Tail != (_ring)->Head); \
425 SXG_ADVANCE_INDEX((_ring)->Tail, ((_ring)->Size)); \
427 // Set cmd to the next available ring entry, set the shadow context
428 // entry and advance the ring.
429 // The appropriate lock must be held when calling this macro
430 #define SXG_GET_CMD(_ring, _ringinfo, _cmd, _context) { \
431 if(SXG_RING_FULL(_ringinfo)) { \
434 (_cmd) = &(_ring)->Descriptors[(_ringinfo)->Head]; \
435 (_ringinfo)->Context[(_ringinfo)->Head] = (void *)(_context);\
436 SXG_RING_ADVANCE_HEAD(_ringinfo); \
440 // Abort the previously allocated command by retreating the head.
441 // NOTE - The appopriate lock MUST NOT BE DROPPED between the SXG_GET_CMD
442 // and SXG_ABORT_CMD calls.
443 #define SXG_ABORT_CMD(_ringinfo) { \
444 ASSERT(!(SXG_RING_EMPTY(_ringinfo))); \
445 SXG_RING_RETREAT_HEAD(_ringinfo); \
446 (_ringinfo)->Context[(_ringinfo)->Head] = NULL; \
449 // For the given ring, return a pointer to the tail cmd and context,
450 // clear the context and advance the tail
451 #define SXG_RETURN_CMD(_ring, _ringinfo, _cmd, _context) { \
452 (_cmd) = &(_ring)->Descriptors[(_ringinfo)->Tail]; \
453 (_context) = (_ringinfo)->Context[(_ringinfo)->Tail]; \
454 (_ringinfo)->Context[(_ringinfo)->Tail] = NULL; \
455 SXG_RING_ADVANCE_TAIL(_ringinfo); \
458 /***************************************************************************
460 * Host Command Buffer - commands to INIC via the Cmd Rings
462 ***************************************************************************/
465 * .___________________.___________________.
466 * |<-------------- Sgl Low -------------->|
467 * |_________|_________|_________|_________|0 0x00
468 * |<-------------- Sgl High ------------->|
469 * |_________|_________|_________|_________|4 0x04
470 * |<------------- Sge 0 Low ----------->|
471 * |_________|_________|_________|_________|8 0x08
472 * |<------------- Sge 0 High ----------->|
473 * |_________|_________|_________|_________|12 0x0c
474 * |<------------ Sge 0 Length ---------->|
475 * |_________|_________|_________|_________|16 0x10
476 * |<----------- Window Update ----------->|
477 * |<-------- SP 1st SGE offset ---------->|
478 * |_________|_________|_________|_________|20 0x14
479 * |<----------- Total Length ------------>|
480 * |_________|_________|_________|_________|24 0x18
481 * |<----- LCnt ------>|<----- Flags ----->|
482 * |_________|_________|_________|_________|28 0x1c
484 #pragma pack(push, 1)
485 typedef struct _SXG_CMD {
486 dma_addr_t Sgl; // Physical address of SGL
489 dma64_addr_t FirstSgeAddress;// Address of first SGE
490 u32 FirstSgeLength; // Length of first SGE
493 u32 SgeOffset; // Slowpath - 2nd SGE offset
494 u32 Resid; // MDL completion - clobbers update
497 u32 TotalLength; // Total transfer length
504 unsigned char Flags:4; // slowpath flags
505 unsigned char IpHl:4; // Ip header length (>>2)
506 unsigned char MacLen; // Mac header len
509 ushort Flags:4; // slowpath flags
510 ushort TcpHdrOff:7; // TCP
511 ushort MacLen:5; // Mac header len
513 ushort Flags; // flags
516 ushort SgEntries; // SG entry count including first sge
518 unsigned char Status; // Copied from event status
519 unsigned char NotUsed;
522 } SXG_CMD, *PSXG_CMD;
525 #pragma pack(push, 1)
526 typedef struct _VLAN_HDR {
529 } VLAN_HDR, *PVLAN_HDR;
538 * /.--- TCP Large segment send
543 * .___________________.____________vvvv.
545 * | LCnt |hlen|hdroff|Flgs|
546 * |___________________|||||||||||||____|
553 * //.--- Checksum TCP
554 * ///.--- Checksum IP
555 * 3 1 //// No bits - normal send
557 * .___________________._______________vvvv.
558 * | | Offload | IP | |
559 * | LCnt |MAC hlen |Hlen|Flgs|
560 * |___________________|____|____|____|____|
563 // Slowpath CMD flags
564 #define SXG_SLOWCMD_CSUM_IP 0x01 // Checksum IP
565 #define SXG_SLOWCMD_CSUM_TCP 0x02 // Checksum TCP
566 #define SXG_SLOWCMD_LSO 0x04 // Large segment send
568 typedef struct _SXG_XMT_RING {
569 SXG_CMD Descriptors[SXG_XMT_RING_SIZE];
570 } SXG_XMT_RING, *PSXG_XMT_RING;
572 typedef struct _SXG_RCV_RING {
573 SXG_CMD Descriptors[SXG_RCV_RING_SIZE];
574 } SXG_RCV_RING, *PSXG_RCV_RING;
576 /***************************************************************************
577 * Share memory buffer types - Used to identify asynchronous
578 * shared memory allocation
579 ***************************************************************************/
581 SXG_BUFFER_TYPE_RCV, // Receive buffer
582 SXG_BUFFER_TYPE_SGL // SGL buffer
585 // State for SXG buffers
586 #define SXG_BUFFER_FREE 0x01
587 #define SXG_BUFFER_BUSY 0x02
588 #define SXG_BUFFER_ONCARD 0x04
589 #define SXG_BUFFER_UPSTREAM 0x08
591 /***************************************************************************
592 * Receive data buffers
594 * Receive data buffers are given to the Sahara card 128 at a time.
595 * This is accomplished by filling in a "receive descriptor block"
596 * with 128 "receive descriptors". Each descriptor consists of
597 * a physical address, which the card uses as the address to
598 * DMA data into, and a virtual address, which is given back
599 * to the host in the "HostHandle" portion of an event.
600 * The receive descriptor data structure is defined below
601 * as SXG_RCV_DATA_DESCRIPTOR, and the corresponding block
602 * is defined as SXG_RCV_DESCRIPTOR_BLOCK.
604 * This receive descriptor block is given to the card by filling
605 * in the Sgl field of a SXG_CMD entry from pAdapt->RcvRings[0]
606 * with the physical address of the receive descriptor block.
608 * Both the receive buffers and the receive descriptor blocks
609 * require additional data structures to maintain them
610 * on a free queue and contain other information associated with them.
611 * Those data structures are defined as the SXG_RCV_DATA_BUFFER_HDR
612 * and SXG_RCV_DESCRIPTOR_BLOCK_HDR respectively.
614 * Since both the receive buffers and the receive descriptor block
615 * must be accessible by the card, both must be allocated out of
616 * shared memory. To ensure that we always have a descriptor
617 * block available for every 128 buffers, we allocate all of
618 * these resources together in a single block. This entire
619 * block is managed by a SXG_RCV_BLOCK_HDR, who's sole purpose
620 * is to maintain address information so that the entire block
623 * Further complicating matters is the fact that the receive
624 * buffers must be variable in length in order to accomodate
625 * jumbo frame configurations. We configure the buffer
626 * length so that the buffer and it's corresponding SXG_RCV_DATA_BUFFER_HDR
627 * structure add up to an even boundary. Then we place the
628 * remaining data structures after 128 of them as shown in
629 * the following diagram:
631 * _________________________________________
633 * | Variable length receive buffer #1 |
634 * |_________________________________________|
636 * | SXG_RCV_DATA_BUFFER_HDR #1 |
637 * |_________________________________________| <== Even 2k or 10k boundary
639 * | ... repeat 2-128 .. |
640 * |_________________________________________|
642 * | SXG_RCV_DESCRIPTOR_BLOCK |
643 * | Contains SXG_RCV_DATA_DESCRIPTOR * 128 |
644 * |_________________________________________|
646 * | SXG_RCV_DESCRIPTOR_BLOCK_HDR |
647 * |_________________________________________|
649 * | SXG_RCV_BLOCK_HDR |
650 * |_________________________________________|
652 * Memory consumption:
654 * Buffers and SXG_RCV_DATA_BUFFER_HDR = 2k * 128 = 256k
655 * + SXG_RCV_DESCRIPTOR_BLOCK = 2k
656 * + SXG_RCV_DESCRIPTOR_BLOCK_HDR = ~32
657 * + SXG_RCV_BLOCK_HDR = ~32
658 * => Total = ~258k/block
661 * Buffers and SXG_RCV_DATA_BUFFER_HDR = 10k * 128 = 1280k
662 * + SXG_RCV_DESCRIPTOR_BLOCK = 2k
663 * + SXG_RCV_DESCRIPTOR_BLOCK_HDR = ~32
664 * + SXG_RCV_BLOCK_HDR = ~32
665 * => Total = ~1282k/block
667 ***************************************************************************/
668 #define SXG_RCV_DATA_BUFFERS 4096 // Amount to give to the card
669 #define SXG_INITIAL_RCV_DATA_BUFFERS 8192 // Initial pool of buffers
670 #define SXG_MIN_RCV_DATA_BUFFERS 2048 // Minimum amount and when to get more
671 #define SXG_MAX_RCV_BLOCKS 128 // = 16384 receive buffers
673 // Receive buffer header
674 typedef struct _SXG_RCV_DATA_BUFFER_HDR {
675 dma_addr_t PhysicalAddress; // Buffer physical address
676 // Note - DO NOT USE the VirtualAddress field to locate data.
677 // Use the sxg.h:SXG_RECEIVE_DATA_LOCATION macro instead.
678 void *VirtualAddress; // Start of buffer
679 LIST_ENTRY FreeList; // Free queue of buffers
680 struct _SXG_RCV_DATA_BUFFER_HDR *Next; // Fastpath data buffer queue
681 u32 Size; // Buffer size
682 u32 ByteOffset; // See SXG_RESTORE_MDL_OFFSET
683 unsigned char State; // See SXG_BUFFER state above
684 unsigned char Status; // Event status (to log PUSH)
685 struct sk_buff * skb; // Double mapped (nbl and pkt)
686 } SXG_RCV_DATA_BUFFER_HDR, *PSXG_RCV_DATA_BUFFER_HDR;
688 // SxgSlowReceive uses the PACKET (skb) contained
689 // in the SXG_RCV_DATA_BUFFER_HDR when indicating dumb-nic data
690 #define SxgDumbRcvPacket skb
692 #define SXG_RCV_DATA_HDR_SIZE 256 // Space for SXG_RCV_DATA_BUFFER_HDR
693 #define SXG_RCV_DATA_BUFFER_SIZE 2048 // Non jumbo = 2k including HDR
694 #define SXG_RCV_JUMBO_BUFFER_SIZE 10240 // jumbo = 10k including HDR
696 // Receive data descriptor
697 typedef struct _SXG_RCV_DATA_DESCRIPTOR {
699 struct sk_buff * VirtualAddress; // Host handle
700 u64 ForceTo8Bytes; // Force x86 to 8-byte boundary
702 dma_addr_t PhysicalAddress;
703 } SXG_RCV_DATA_DESCRIPTOR, *PSXG_RCV_DATA_DESCRIPTOR;
705 // Receive descriptor block
706 #define SXG_RCV_DESCRIPTORS_PER_BLOCK 128
707 #define SXG_RCV_DESCRIPTOR_BLOCK_SIZE 2048 // For sanity check
708 typedef struct _SXG_RCV_DESCRIPTOR_BLOCK {
709 SXG_RCV_DATA_DESCRIPTOR Descriptors[SXG_RCV_DESCRIPTORS_PER_BLOCK];
710 } SXG_RCV_DESCRIPTOR_BLOCK, *PSXG_RCV_DESCRIPTOR_BLOCK;
712 // Receive descriptor block header
713 typedef struct _SXG_RCV_DESCRIPTOR_BLOCK_HDR {
714 void * VirtualAddress; // Start of 2k buffer
715 dma_addr_t PhysicalAddress; // ..and it's physical address
716 LIST_ENTRY FreeList; // Free queue of descriptor blocks
717 unsigned char State; // See SXG_BUFFER state above
718 } SXG_RCV_DESCRIPTOR_BLOCK_HDR, *PSXG_RCV_DESCRIPTOR_BLOCK_HDR;
720 // Receive block header
721 typedef struct _SXG_RCV_BLOCK_HDR {
722 void * VirtualAddress; // Start of virtual memory
723 dma_addr_t PhysicalAddress; // ..and it's physical address
724 LIST_ENTRY AllList; // Queue of all SXG_RCV_BLOCKS
725 } SXG_RCV_BLOCK_HDR, *PSXG_RCV_BLOCK_HDR;
727 // Macros to determine data structure offsets into receive block
728 #define SXG_RCV_BLOCK_SIZE(_Buffersize) \
729 (((_Buffersize) * SXG_RCV_DESCRIPTORS_PER_BLOCK) + \
730 (sizeof(SXG_RCV_DESCRIPTOR_BLOCK)) + \
731 (sizeof(SXG_RCV_DESCRIPTOR_BLOCK_HDR)) + \
732 (sizeof(SXG_RCV_BLOCK_HDR)))
733 #define SXG_RCV_BUFFER_DATA_SIZE(_Buffersize) \
734 ((_Buffersize) - SXG_RCV_DATA_HDR_SIZE)
735 #define SXG_RCV_DATA_BUFFER_HDR_OFFSET(_Buffersize) \
736 ((_Buffersize) - SXG_RCV_DATA_HDR_SIZE)
737 #define SXG_RCV_DESCRIPTOR_BLOCK_OFFSET(_Buffersize) \
738 ((_Buffersize) * SXG_RCV_DESCRIPTORS_PER_BLOCK)
739 #define SXG_RCV_DESCRIPTOR_BLOCK_HDR_OFFSET(_Buffersize) \
740 (((_Buffersize) * SXG_RCV_DESCRIPTORS_PER_BLOCK) + \
741 (sizeof(SXG_RCV_DESCRIPTOR_BLOCK)))
742 #define SXG_RCV_BLOCK_HDR_OFFSET(_Buffersize) \
743 (((_Buffersize) * SXG_RCV_DESCRIPTORS_PER_BLOCK) + \
744 (sizeof(SXG_RCV_DESCRIPTOR_BLOCK)) + \
745 (sizeof(SXG_RCV_DESCRIPTOR_BLOCK_HDR)))
747 // Use the miniport reserved portion of the NBL to locate
748 // our SXG_RCV_DATA_BUFFER_HDR structure.
749 typedef struct _SXG_RCV_NBL_RESERVED {
750 PSXG_RCV_DATA_BUFFER_HDR RcvDataBufferHdr;
752 } SXG_RCV_NBL_RESERVED, *PSXG_RCV_NBL_RESERVED;
754 #define SXG_RCV_NBL_BUFFER_HDR(_NBL) (((PSXG_RCV_NBL_RESERVED)NET_BUFFER_LIST_MINIPORT_RESERVED(_NBL))->RcvDataBufferHdr)
756 /***************************************************************************
757 * Scatter gather list buffer
758 ***************************************************************************/
759 #define SXG_INITIAL_SGL_BUFFERS 8192 // Initial pool of SGL buffers
760 #define SXG_MIN_SGL_BUFFERS 2048 // Minimum amount and when to get more
761 #define SXG_MAX_SGL_BUFFERS 16384 // Maximum to allocate (note ADAPT:ushort)
764 // Self identifying structure type
765 typedef enum _SXG_SGL_TYPE {
766 SXG_SGL_DUMB, // Dumb NIC SGL
767 SXG_SGL_SLOW, // Slowpath protocol header - see below
768 SXG_SGL_CHIMNEY // Chimney offload SGL
769 } SXG_SGL_TYPE, PSXG_SGL_TYPE;
771 // Note - the description below is Microsoft specific
773 // The following definition specifies the amount of shared memory to allocate
774 // for the SCATTER_GATHER_LIST portion of the SXG_SCATTER_GATHER data structure.
775 // The following considerations apply when setting this value:
776 // - First, the Sahara card is designed to read the Microsoft SGL structure
777 // straight out of host memory. This means that the SGL must reside in
778 // shared memory. If the length here is smaller than the SGL for the
779 // NET_BUFFER, then NDIS will allocate its own buffer. The buffer
780 // that NDIS allocates is not in shared memory, so when this happens,
781 // the SGL will need to be copied to a set of SXG_SCATTER_GATHER buffers.
782 // In other words.. we don't want this value to be too small.
783 // - On the other hand.. we're allocating up to 16k of these things. If
784 // we make this too big, we start to consume a ton of memory..
785 // At the moment, I'm going to limit the number of SG entries to 150.
786 // If each entry maps roughly 4k, then this should cover roughly 600kB
787 // NET_BUFFERs. Furthermore, since each entry is 24 bytes, the total
788 // SGE portion of the structure consumes 3600 bytes, which should allow
789 // the entire SXG_SCATTER_GATHER structure to reside comfortably within
790 // a 4k block, providing the remaining fields stay under 500 bytes.
792 // So with 150 entries, the SXG_SCATTER_GATHER structure becomes roughly
793 // 4k. At 16k of them, that amounts to 64M of shared memory. A ton, but
795 #define SXG_SGL_ENTRIES 150
797 // The ucode expects an NDIS SGL structure that
798 // is formatted for an x64 system. When running
799 // on an x64 system, we can simply hand the NDIS SGL
800 // to the card directly. For x86 systems we must reconstruct
801 // the SGL. The following structure defines an x64
802 // formatted SGL entry
803 typedef struct _SXG_X64_SGE {
804 dma64_addr_t Address; // same as wdm.h
805 u32 Length; // same as wdm.h
806 u32 CompilerPad;// The compiler pads to 8-bytes
807 u64 Reserved; // u32 * in wdm.h. Force to 8 bytes
808 } SXG_X64_SGE, *PSXG_X64_SGE;
810 typedef struct _SCATTER_GATHER_ELEMENT {
811 dma64_addr_t Address; // same as wdm.h
812 u32 Length; // same as wdm.h
813 u32 CompilerPad;// The compiler pads to 8-bytes
814 u64 Reserved; // u32 * in wdm.h. Force to 8 bytes
815 } SCATTER_GATHER_ELEMENT, *PSCATTER_GATHER_ELEMENT;
818 typedef struct _SCATTER_GATHER_LIST {
819 u32 NumberOfElements;
821 SCATTER_GATHER_ELEMENT Elements[];
822 } SCATTER_GATHER_LIST, *PSCATTER_GATHER_LIST;
824 // The card doesn't care about anything except elements, so
825 // we can leave the u32 * reserved field alone in the following
826 // SGL structure. But redefine from wdm.h:SCATTER_GATHER_LIST so
827 // we can specify SXG_X64_SGE and define a fixed number of elements
828 typedef struct _SXG_X64_SGL {
829 u32 NumberOfElements;
831 SXG_X64_SGE Elements[SXG_SGL_ENTRIES];
832 } SXG_X64_SGL, *PSXG_X64_SGL;
834 typedef struct _SXG_SCATTER_GATHER {
835 SXG_SGL_TYPE Type; // FIRST! Dumb-nic or offload
836 void * adapter; // Back pointer to adapter
837 LIST_ENTRY FreeList; // Free SXG_SCATTER_GATHER blocks
838 LIST_ENTRY AllList; // All SXG_SCATTER_GATHER blocks
839 dma_addr_t PhysicalAddress;// physical address
840 unsigned char State; // See SXG_BUFFER state above
841 unsigned char CmdIndex; // Command ring index
842 struct sk_buff * DumbPacket; // Associated Packet
843 u32 Direction; // For asynchronous completions
844 u32 CurOffset; // Current SGL offset
845 u32 SglRef; // SGL reference count
846 VLAN_HDR VlanTag; // VLAN tag to be inserted into SGL
847 PSCATTER_GATHER_LIST pSgl; // SGL Addr. Possibly &Sgl
848 SXG_X64_SGL Sgl; // SGL handed to card
849 } SXG_SCATTER_GATHER, *PSXG_SCATTER_GATHER;
851 #if defined(CONFIG_X86_64)
852 #define SXG_SGL_BUFFER(_SxgSgl) (&_SxgSgl->Sgl)
853 #define SXG_SGL_BUF_SIZE sizeof(SXG_X64_SGL)
854 #elif defined(CONFIG_X86)
855 // Force NDIS to give us it's own buffer so we can reformat to our own
856 #define SXG_SGL_BUFFER(_SxgSgl) NULL
857 #define SXG_SGL_BUF_SIZE 0