Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
slic.h
Go to the documentation of this file.
1 /**************************************************************************
2  *
3  * Copyright (c) 2000-2002 Alacritech, Inc. All rights reserved.
4  *
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  *
10  * 1. Redistributions of source code must retain the above copyright
11  * notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above
13  * copyright notice, this list of conditions and the following
14  * disclaimer in the documentation and/or other materials provided
15  * with the distribution.
16  *
17  * THIS SOFTWARE IS PROVIDED BY ALACRITECH, INC. ``AS IS'' AND ANY
18  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
20  * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL ALACRITECH, INC. OR
21  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
24  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
25  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
26  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
27  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28  * SUCH DAMAGE.
29  *
30  * The views and conclusions contained in the software and documentation
31  * are those of the authors and should not be interpreted as representing
32  * official policies, either expressed or implied, of Alacritech, Inc.
33  *
34  **************************************************************************/
35 
36 /*
37  * FILENAME: slic.h
38  *
39  * This is the base set of header definitions for the SLICOSS driver.
40  */
41 #ifndef __SLIC_DRIVER_H__
42 #define __SLIC_DRIVER_H__
43 
44 /* firmware stuff */
45 #define OASIS_UCODE_VERS_STRING "1.2"
46 #define OASIS_UCODE_VERS_DATE "2006/03/27 15:10:37"
47 #define OASIS_UCODE_HOSTIF_ID 3
48 
49 #define MOJAVE_UCODE_VERS_STRING "1.2"
50 #define MOJAVE_UCODE_VERS_DATE "2006/03/27 15:12:22"
51 #define MOJAVE_UCODE_HOSTIF_ID 3
52 
53 #define GB_RCVUCODE_VERS_STRING "1.2"
54 #define GB_RCVUCODE_VERS_DATE "2006/03/27 15:12:15"
55 static u32 OasisRcvUCodeLen = 512;
56 static u32 GBRcvUCodeLen = 512;
57 #define SECTION_SIZE 65536
58 
59 struct slic_spinlock {
61  unsigned long flags;
62 };
63 
64 #define SLIC_RSPQ_PAGES_GB 10
65 #define SLIC_RSPQ_BUFSINPAGE (PAGE_SIZE / SLIC_RSPBUF_SIZE)
66 
67 struct slic_rspqueue {
74 };
75 
76 #define SLIC_RCVQ_EXPANSION 1
77 #define SLIC_RCVQ_ENTRIES (256 * SLIC_RCVQ_EXPANSION)
78 #define SLIC_RCVQ_MINENTRIES (SLIC_RCVQ_ENTRIES / 2)
79 #define SLIC_RCVQ_MAX_PROCESS_ISR ((SLIC_RCVQ_ENTRIES * 4))
80 #define SLIC_RCVQ_RCVBUFSIZE 2048
81 #define SLIC_RCVQ_FILLENTRIES (16 * SLIC_RCVQ_EXPANSION)
82 #define SLIC_RCVQ_FILLTHRESH (SLIC_RCVQ_ENTRIES - SLIC_RCVQ_FILLENTRIES)
83 
84 struct slic_rcvqueue {
85  struct sk_buff *head;
86  struct sk_buff *tail;
90 };
91 
99 };
100 /*
101  SLIC Handle structure. Used to restrict handle values to
102  32 bits by using an index rather than an address.
103  Simplifies ucode in 64-bit systems
104 */
106  union {
107  struct {
109  ushort bottombits; /* to denote num bufs to card */
110  } parts;
112  } handle;
113 };
114 
115 struct slic_handle {
116  struct slic_handle_word token; /* token passed between host and card*/
118  void *address; /* actual address of the object*/
121  struct slic_handle *next;
122 };
123 
124 #define SLIC_HANDLE_FREE 0x0000
125 #define SLIC_HANDLE_DATA 0x0001
126 #define SLIC_HANDLE_CMD 0x0002
127 #define SLIC_HANDLE_CONTEXT 0x0003
128 #define SLIC_HANDLE_TEAM 0x0004
129 
130 #define handle_index handle.parts.index
131 #define handle_bottom handle.parts.bottombits
132 #define handle_token handle.whole
133 
134 #define SLIC_HOSTCMD_SIZE 512
135 
136 struct slic_hostcmd {
139  struct sk_buff *skb;
145  struct slic_handle *pslic_handle;/* handle associated with command */
148 };
149 
150 #define SLIC_CMDQ_CMDSINPAGE (PAGE_SIZE / SLIC_HOSTCMD_SIZE)
151 #define SLIC_CMD_DUMB 3
152 #define SLIC_CMDQ_INITCMDS 256
153 #define SLIC_CMDQ_MAXCMDS 256
154 #define SLIC_CMDQ_MAXOUTSTAND SLIC_CMDQ_MAXCMDS
155 #define SLIC_CMDQ_MAXPAGES (SLIC_CMDQ_MAXCMDS / SLIC_CMDQ_CMDSINPAGE)
156 #define SLIC_CMDQ_INITPAGES (SLIC_CMDQ_INITCMDS / SLIC_CMDQ_CMDSINPAGE)
157 
158 struct slic_cmdqmem {
159  int pagecnt;
162 };
163 
167  int count;
169 };
170 
171 #define SLIC_MAX_CARDS 32
172 #define SLIC_MAX_PORTS 4 /* Max # of ports per card */
173 
174 
176  unsigned char address[6];
178 };
179 
180 #define CARD_DOWN 0x00000000
181 #define CARD_UP 0x00000001
182 #define CARD_FAIL 0x00000002
183 #define CARD_DIAG 0x00000003
184 #define CARD_SLEEP 0x00000004
185 
186 #define ADAPT_DOWN 0x00
187 #define ADAPT_UP 0x01
188 #define ADAPT_FAIL 0x02
189 #define ADAPT_RESET 0x03
190 #define ADAPT_SLEEP 0x04
191 
192 #define ADAPT_FLAGS_BOOTTIME 0x0001
193 #define ADAPT_FLAGS_IS64BIT 0x0002
194 #define ADAPT_FLAGS_PENDINGLINKDOWN 0x0004
195 #define ADAPT_FLAGS_FIBERMEDIA 0x0008
196 #define ADAPT_FLAGS_LOCKS_ALLOCED 0x0010
197 #define ADAPT_FLAGS_INT_REGISTERED 0x0020
198 #define ADAPT_FLAGS_LOAD_TIMER_SET 0x0040
199 #define ADAPT_FLAGS_STATS_TIMER_SET 0x0080
200 #define ADAPT_FLAGS_RESET_TIMER_SET 0x0100
201 
202 #define LINK_DOWN 0x00
203 #define LINK_CONFIG 0x01
204 #define LINK_UP 0x02
205 
206 #define LINK_10MB 0x00
207 #define LINK_100MB 0x01
208 #define LINK_AUTOSPEED 0x02
209 #define LINK_1000MB 0x03
210 #define LINK_10000MB 0x04
211 
212 #define LINK_HALFD 0x00
213 #define LINK_FULLD 0x01
214 #define LINK_AUTOD 0x02
215 
216 #define MAC_DIRECTED 0x00000001
217 #define MAC_BCAST 0x00000002
218 #define MAC_MCAST 0x00000004
219 #define MAC_PROMISC 0x00000008
220 #define MAC_LOOPBACK 0x00000010
221 #define MAC_ALLMCAST 0x00000020
222 
223 #define SLIC_DUPLEX(x) ((x == LINK_FULLD) ? "FDX" : "HDX")
224 #define SLIC_SPEED(x) ((x == LINK_100MB) ? "100Mb" : ((x == LINK_1000MB) ?\
225  "1000Mb" : " 10Mb"))
226 #define SLIC_LINKSTATE(x) ((x == LINK_DOWN) ? "Down" : "Up ")
227 #define SLIC_ADAPTER_STATE(x) ((x == ADAPT_UP) ? "UP" : "Down")
228 #define SLIC_CARD_STATE(x) ((x == CARD_UP) ? "UP" : "Down")
229 
231  /*
232  * Stats
233  */
248 };
249 
250 struct sliccp_stats {
255 };
256 
260 };
261 
262 #define SLIC_LOADTIMER_PERIOD 1
263 #define SLIC_INTAGG_DEFAULT 200
264 #define SLIC_LOAD_0 0
265 #define SLIC_INTAGG_0 0
266 #define SLIC_LOAD_1 8000
267 #define SLIC_LOAD_2 10000
268 #define SLIC_LOAD_3 12000
269 #define SLIC_LOAD_4 14000
270 #define SLIC_LOAD_5 16000
271 #define SLIC_INTAGG_1 50
272 #define SLIC_INTAGG_2 100
273 #define SLIC_INTAGG_3 150
274 #define SLIC_INTAGG_4 200
275 #define SLIC_INTAGG_5 250
276 #define SLIC_LOAD_1GB 3000
277 #define SLIC_LOAD_2GB 6000
278 #define SLIC_LOAD_3GB 12000
279 #define SLIC_LOAD_4GB 24000
280 #define SLIC_LOAD_5GB 48000
281 #define SLIC_INTAGG_1GB 50
282 #define SLIC_INTAGG_2GB 75
283 #define SLIC_INTAGG_3GB 100
284 #define SLIC_INTAGG_4GB 100
285 #define SLIC_INTAGG_5GB 100
286 
287 struct ether_header {
288  unsigned char ether_dhost[6];
289  unsigned char ether_shost[6];
291 };
292 
293 struct sliccard {
315  struct adapter *master;
317  struct sliccard *next;
333 };
334 
335 #define NUM_CFG_SPACES 2
336 #define NUM_CFG_REGS 64
337 #define NUM_CFG_REG_ULONGS (NUM_CFG_REGS / sizeof(u32))
338 
339 struct physcard {
341  struct physcard *next;
343 
344  /* the following is not currently needed
345  u32 bridge_busnum;
346  u32 bridge_cfg[NUM_CFG_SPACES][NUM_CFG_REG_ULONGS];
347  */
348 };
349 
350 struct base_driver {
359 };
360 
361 struct slic_shmem {
362  volatile u32 isr;
363  volatile u32 linkstatus;
364  volatile struct slic_stats inicstats;
365 };
366 
371 };
372 
373 struct slic_upr {
380  struct slic_upr *next;
381 };
382 
400 };
401 
402 struct adapter {
403  void *ifp;
404  struct sliccard *card;
415  struct pci_dev *pcidev;
438  unsigned char state;
439  unsigned char linkstate;
440  unsigned char linkspeed;
441  unsigned char linkduplex;
443  unsigned char macaddr[6];
444  unsigned char currmacaddr[6];
464  /*
465  * SLIC Handles
466  */
467  struct slic_handle slic_handles[SLIC_CMDQ_MAXCMDS+1]; /* Object handles*/
468  struct slic_handle *pfree_slic_handles; /* Free object handles*/
469  struct slic_spinlock handle_lock; /* Object handle list lock*/
471 
502 };
503 
504 
505 #define UPDATE_STATS(largestat, newstat, oldstat) \
506 { \
507  if ((newstat) < (oldstat)) \
508  (largestat) += ((newstat) + (0xFFFFFFFF - oldstat + 1)); \
509  else \
510  (largestat) += ((newstat) - (oldstat)); \
511 }
512 
513 #define UPDATE_STATS_GB(largestat, newstat, oldstat) \
514 { \
515  (largestat) += ((newstat) - (oldstat)); \
516 }
517 
518 #if BITS_PER_LONG == 64
519 #define SLIC_GET_ADDR_LOW(_addr) (u32)((u64)(_addr) & \
520  0x00000000FFFFFFFF)
521 #define SLIC_GET_ADDR_HIGH(_addr) (u32)(((u64)(_addr) >> 32) & \
522  0x00000000FFFFFFFF)
523 #elif BITS_PER_LONG == 32
524 #define SLIC_GET_ADDR_LOW(_addr) (u32)(_addr)
525 #define SLIC_GET_ADDR_HIGH(_addr) (u32)0
526 #else
527 #error BITS_PER_LONG must be 32 or 64
528 #endif
529 
530 #define FLUSH true
531 #define DONT_FLUSH false
532 
533 #define SIOCSLICDUMPCARD (SIOCDEVPRIVATE+9)
534 #define SIOCSLICSETINTAGG (SIOCDEVPRIVATE+10)
535 #define SIOCSLICTRACEDUMP (SIOCDEVPRIVATE+11)
536 
537 #endif /* __SLIC_DRIVER_H__ */