1 /**************************************************************************
3 * Copyright (c) 2000-2002 Alacritech, Inc. All rights reserved.
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
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.
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
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.
34 **************************************************************************/
39 * This is the base set of header definitions for the SLICOSS driver.
41 #ifndef __SLIC_DRIVER_H__
42 #define __SLIC_DRIVER_H__
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
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
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
59 struct slic_spinlock {
64 #define SLIC_RSPQ_PAGES_GB 10
65 #define SLIC_RSPQ_BUFSINPAGE (PAGE_SIZE / SLIC_RSPBUF_SIZE)
67 struct slic_rspqueue {
71 struct slic_rspbuf *rspbuf;
72 u32 *vaddr[SLIC_RSPQ_PAGES_GB];
73 dma_addr_t paddr[SLIC_RSPQ_PAGES_GB];
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)
84 struct slic_rcvqueue {
92 struct slic_rcvbuf_info {
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
105 struct slic_handle_word {
109 ushort bottombits; /* to denote num bufs to card */
116 struct slic_handle_word token; /* token passed between host and card*/
118 void *address; /* actual address of the object*/
120 struct slic_handle *other_handle;
121 struct slic_handle *next;
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
130 #define handle_index handle.parts.index
131 #define handle_bottom handle.parts.bottombits
132 #define handle_token handle.whole
134 #define SLIC_HOSTCMD_SIZE 512
136 struct slic_hostcmd {
137 struct slic_host64_cmd cmd64;
145 struct slic_handle *pslic_handle;/* handle associated with command */
146 struct slic_hostcmd *next;
147 struct slic_hostcmd *next_all;
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)
158 struct slic_cmdqmem {
160 u32 *pages[SLIC_CMDQ_MAXPAGES];
161 dma_addr_t dma_pages[SLIC_CMDQ_MAXPAGES];
164 struct slic_cmdqueue {
165 struct slic_hostcmd *head;
166 struct slic_hostcmd *tail;
168 struct slic_spinlock lock;
171 #ifdef STATUS_SUCCESS
172 #undef STATUS_SUCCESS
175 #define STATUS_SUCCESS 0
176 #define STATUS_PENDING 0
177 #define STATUS_FAILURE -1
178 #define STATUS_ERROR -2
179 #define STATUS_NOT_SUPPORTED -3
180 #define STATUS_BUFFER_TOO_SHORT -4
182 #define SLIC_MAX_CARDS 32
183 #define SLIC_MAX_PORTS 4 /* Max # of ports per card */
186 struct mcast_address {
187 unsigned char address[6];
188 struct mcast_address *next;
191 #define CARD_DOWN 0x00000000
192 #define CARD_UP 0x00000001
193 #define CARD_FAIL 0x00000002
194 #define CARD_DIAG 0x00000003
195 #define CARD_SLEEP 0x00000004
197 #define ADAPT_DOWN 0x00
198 #define ADAPT_UP 0x01
199 #define ADAPT_FAIL 0x02
200 #define ADAPT_RESET 0x03
201 #define ADAPT_SLEEP 0x04
203 #define ADAPT_FLAGS_BOOTTIME 0x0001
204 #define ADAPT_FLAGS_IS64BIT 0x0002
205 #define ADAPT_FLAGS_PENDINGLINKDOWN 0x0004
206 #define ADAPT_FLAGS_FIBERMEDIA 0x0008
207 #define ADAPT_FLAGS_LOCKS_ALLOCED 0x0010
208 #define ADAPT_FLAGS_INT_REGISTERED 0x0020
209 #define ADAPT_FLAGS_LOAD_TIMER_SET 0x0040
210 #define ADAPT_FLAGS_STATS_TIMER_SET 0x0080
211 #define ADAPT_FLAGS_RESET_TIMER_SET 0x0100
213 #define LINK_DOWN 0x00
214 #define LINK_CONFIG 0x01
217 #define LINK_10MB 0x00
218 #define LINK_100MB 0x01
219 #define LINK_AUTOSPEED 0x02
220 #define LINK_1000MB 0x03
221 #define LINK_10000MB 0x04
223 #define LINK_HALFD 0x00
224 #define LINK_FULLD 0x01
225 #define LINK_AUTOD 0x02
227 #define MAC_DIRECTED 0x00000001
228 #define MAC_BCAST 0x00000002
229 #define MAC_MCAST 0x00000004
230 #define MAC_PROMISC 0x00000008
231 #define MAC_LOOPBACK 0x00000010
232 #define MAC_ALLMCAST 0x00000020
234 #define SLIC_DUPLEX(x) ((x == LINK_FULLD) ? "FDX" : "HDX")
235 #define SLIC_SPEED(x) ((x == LINK_100MB) ? "100Mb" : ((x == LINK_1000MB) ?\
237 #define SLIC_LINKSTATE(x) ((x == LINK_DOWN) ? "Down" : "Up ")
238 #define SLIC_ADAPTER_STATE(x) ((x == ADAPT_UP) ? "UP" : "Down")
239 #define SLIC_CARD_STATE(x) ((x == CARD_UP) ? "UP" : "Down")
241 struct slic_iface_stats {
252 u64 xmit_excess_xmit_collisions;
261 struct sliccp_stats {
268 struct slicnet_stats {
269 struct sliccp_stats tcp;
270 struct slic_iface_stats iface;
273 #define SLIC_LOADTIMER_PERIOD 1
274 #define SLIC_INTAGG_DEFAULT 200
275 #define SLIC_LOAD_0 0
276 #define SLIC_INTAGG_0 0
277 #define SLIC_LOAD_1 8000
278 #define SLIC_LOAD_2 10000
279 #define SLIC_LOAD_3 12000
280 #define SLIC_LOAD_4 14000
281 #define SLIC_LOAD_5 16000
282 #define SLIC_INTAGG_1 50
283 #define SLIC_INTAGG_2 100
284 #define SLIC_INTAGG_3 150
285 #define SLIC_INTAGG_4 200
286 #define SLIC_INTAGG_5 250
287 #define SLIC_LOAD_1GB 3000
288 #define SLIC_LOAD_2GB 6000
289 #define SLIC_LOAD_3GB 12000
290 #define SLIC_LOAD_4GB 24000
291 #define SLIC_LOAD_5GB 48000
292 #define SLIC_INTAGG_1GB 50
293 #define SLIC_INTAGG_2GB 75
294 #define SLIC_INTAGG_3GB 100
295 #define SLIC_INTAGG_4GB 100
296 #define SLIC_INTAGG_5GB 100
298 struct ether_header {
299 unsigned char ether_dhost[6];
300 unsigned char ether_shost[6];
310 uint adapters_activated;
311 uint adapters_allocated;
312 uint adapters_sleeping;
315 u32 loadlevel_current;
317 uint reset_in_progress;
320 struct timer_list loadtimer;
323 struct slic_config config;
324 struct dentry *debugfs_dir;
325 struct dentry *debugfs_cardinfo;
326 struct adapter *master;
327 struct adapter *adapter[SLIC_MAX_PORTS];
328 struct sliccard *next;
329 u32 error_interrupts;
330 u32 error_rmiss_interrupts;
334 u32 false_interrupts;
337 u32 rcv_interrupt_yields;
341 ushort reg_offset[32];
346 #define NUM_CFG_SPACES 2
347 #define NUM_CFG_REGS 64
348 #define NUM_CFG_REG_ULONGS (NUM_CFG_REGS / sizeof(u32))
351 struct adapter *adapter[SLIC_MAX_PORTS];
352 struct physcard *next;
353 uint adapters_allocd;
355 /* the following is not currently needed
357 u32 bridge_cfg[NUM_CFG_SPACES][NUM_CFG_REG_ULONGS];
362 struct slic_spinlock driver_lock;
365 u32 num_slic_ports_active;
367 struct sliccard *slic_card;
368 struct physcard *phys_card;
369 uint cardnuminuse[SLIC_MAX_CARDS];
374 volatile u32 linkstatus;
375 volatile struct slic_stats inicstats;
378 struct slic_reg_params {
381 u32 fail_on_bad_eeprom;
391 struct slic_upr *next;
394 struct slic_ifevents {
415 struct sliccard *card;
417 struct physcard *physcard;
422 struct net_device *netdev;
423 struct net_device *next_netdevice;
424 struct slic_spinlock adapter_lock;
425 struct slic_spinlock reset_lock;
426 struct pci_dev *pcidev;
434 void __iomem *memorybase;
438 uint queues_initialized;
442 uint isp_initialized;
445 struct slic_shmem *pshmem;
446 dma_addr_t phys_shmem;
448 __iomem struct slic_regs *slic_regs;
450 unsigned char linkstate;
451 unsigned char linkspeed;
452 unsigned char linkduplex;
454 unsigned char macaddr[6];
455 unsigned char currmacaddr[6];
457 ushort devflags_prev;
459 struct mcast_address *mcastaddrs;
460 struct slic_upr *upr_list;
462 struct timer_list pingtimer;
464 struct timer_list loadtimer;
466 struct dentry *debugfs_entry;
467 struct slic_spinlock upr_lock;
468 struct slic_spinlock bit64reglock;
469 struct slic_rspqueue rspqueue;
470 struct slic_rcvqueue rcvqueue;
471 struct slic_cmdqueue cmdq_free;
472 struct slic_cmdqueue cmdq_done;
473 struct slic_cmdqueue cmdq_all;
474 struct slic_cmdqmem cmdqmem;
478 struct slic_handle slic_handles[SLIC_CMDQ_MAXCMDS+1]; /* Object handles*/
479 struct slic_handle *pfree_slic_handles; /* Free object handles*/
480 struct slic_spinlock handle_lock; /* Object handle list lock*/
481 ushort slic_handle_ix;
487 u32 error_interrupts;
488 u32 error_rmiss_interrupts;
493 u32 linkevent_interrupts;
496 u32 false_interrupts;
505 u32 rcv_interrupt_yields;
507 struct inicpm_state *inicpm_info;
509 struct slic_reg_params reg_params;
510 struct slic_ifevents if_events;
511 struct slic_stats inicstats_prev;
512 struct slicnet_stats slic_stats;
513 struct net_device_stats stats;
517 #define UPDATE_STATS(largestat, newstat, oldstat) \
519 if ((newstat) < (oldstat)) \
520 (largestat) += ((newstat) + (0xFFFFFFFF - oldstat + 1)); \
522 (largestat) += ((newstat) - (oldstat)); \
525 #define UPDATE_STATS_GB(largestat, newstat, oldstat) \
527 (largestat) += ((newstat) - (oldstat)); \
530 #define ETHER_EQ_ADDR(_AddrA, _AddrB, _Result) \
533 if (*(u32 *)(_AddrA) != *(u32 *)(_AddrB)) \
535 if (*(u16 *)(&((_AddrA)[4])) != *(u16 *)(&((_AddrB)[4]))) \
539 #if defined(CONFIG_X86_64) || defined(CONFIG_IA64)
540 #define SLIC_GET_ADDR_LOW(_addr) (u32)((u64)(_addr) & \
542 #define SLIC_GET_ADDR_HIGH(_addr) (u32)(((u64)(_addr) >> 32) & \
545 #define SLIC_GET_ADDR_LOW(_addr) (u32)_addr
546 #define SLIC_GET_ADDR_HIGH(_addr) (u32)0
550 #define DONT_FLUSH false
552 #define SIOCSLICDUMPCARD (SIOCDEVPRIVATE+9)
553 #define SIOCSLICSETINTAGG (SIOCDEVPRIVATE+10)
554 #define SIOCSLICTRACEDUMP (SIOCDEVPRIVATE+11)
556 #endif /* __SLIC_DRIVER_H__ */