vserver 2.0 rc7
[linux-2.6.git] / drivers / net / sk98lin / h / skdrv1st.h
1 /******************************************************************************
2  *
3  * Name:        skdrv1st.h
4  * Project:     GEnesis, PCI Gigabit Ethernet Adapter
5  * Version:     $Revision: 1.4 $
6  * Date:        $Date: 2003/11/12 14:28:14 $
7  * Purpose:     First header file for driver and all other modules
8  *
9  ******************************************************************************/
10
11 /******************************************************************************
12  *
13  *      (C)Copyright 1998-2002 SysKonnect GmbH.
14  *      (C)Copyright 2002-2003 Marvell.
15  *
16  *      This program is free software; you can redistribute it and/or modify
17  *      it under the terms of the GNU General Public License as published by
18  *      the Free Software Foundation; either version 2 of the License, or
19  *      (at your option) any later version.
20  *
21  *      The information in this file is provided "AS IS" without warranty.
22  *
23  ******************************************************************************/
24
25 /******************************************************************************
26  *
27  * Description:
28  *
29  * This is the first include file of the driver, which includes all
30  * neccessary system header files and some of the GEnesis header files.
31  * It also defines some basic items.
32  *
33  * Include File Hierarchy:
34  *
35  *      see skge.c
36  *
37  ******************************************************************************/
38
39 #ifndef __INC_SKDRV1ST_H
40 #define __INC_SKDRV1ST_H
41
42 /* Check kernel version */
43 #include <linux/version.h>
44
45 typedef struct s_AC     SK_AC;
46
47 /* Set card versions */
48 #define SK_FAR
49
50 /* override some default functions with optimized linux functions */
51
52 #define SK_PNMI_STORE_U16(p,v)          memcpy((char*)(p),(char*)&(v),2)
53 #define SK_PNMI_STORE_U32(p,v)          memcpy((char*)(p),(char*)&(v),4)
54 #define SK_PNMI_STORE_U64(p,v)          memcpy((char*)(p),(char*)&(v),8)
55 #define SK_PNMI_READ_U16(p,v)           memcpy((char*)&(v),(char*)(p),2)
56 #define SK_PNMI_READ_U32(p,v)           memcpy((char*)&(v),(char*)(p),4)
57 #define SK_PNMI_READ_U64(p,v)           memcpy((char*)&(v),(char*)(p),8)
58
59 #define SK_ADDR_EQUAL(a1,a2)            (!memcmp(a1,a2,6))
60
61 #include <linux/types.h>
62 #include <linux/kernel.h>
63 #include <linux/string.h>
64 #include <linux/errno.h>
65 #include <linux/ioport.h>
66 #include <linux/slab.h>
67 #include <linux/interrupt.h>
68 #include <linux/pci.h>
69 #include <linux/bitops.h>
70 #include <asm/byteorder.h>
71 #include <asm/io.h>
72 #include <asm/irq.h>
73 #include <linux/netdevice.h>
74 #include <linux/etherdevice.h>
75 #include <linux/skbuff.h>
76
77 #include <linux/init.h>
78 #include <asm/uaccess.h>
79 #include <net/checksum.h>
80
81 #define SK_CS_CALCULATE_CHECKSUM
82 #ifndef CONFIG_X86_64
83 #define SkCsCalculateChecksum(p,l)      ((~ip_compute_csum(p, l)) & 0xffff)
84 #else
85 #define SkCsCalculateChecksum(p,l)      ((~ip_fast_csum(p, l)) & 0xffff)
86 #endif
87
88 #include        "h/sktypes.h"
89 #include        "h/skerror.h"
90 #include        "h/skdebug.h"
91 #include        "h/lm80.h"
92 #include        "h/xmac_ii.h"
93
94 #ifdef __LITTLE_ENDIAN
95 #define SK_LITTLE_ENDIAN
96 #else
97 #define SK_BIG_ENDIAN
98 #endif
99
100 #define SK_NET_DEVICE   net_device
101
102
103 /* we use gethrtime(), return unit: nanoseconds */
104 #define SK_TICKS_PER_SEC        100
105
106 #define SK_MEM_MAPPED_IO
107
108 // #define SK_RLMT_SLOW_LOOKAHEAD
109
110 #define SK_MAX_MACS             2
111 #define SK_MAX_NETS             2
112
113 #define SK_IOC                  char __iomem *
114
115 typedef struct s_DrvRlmtMbuf SK_MBUF;
116
117 #define SK_CONST64      INT64_C
118 #define SK_CONSTU64     UINT64_C
119
120 #define SK_MEMCPY(dest,src,size)        memcpy(dest,src,size)
121 #define SK_MEMCMP(s1,s2,size)           memcmp(s1,s2,size)
122 #define SK_MEMSET(dest,val,size)        memset(dest,val,size)
123 #define SK_STRLEN(pStr)                 strlen((char*)(pStr))
124 #define SK_STRNCPY(pDest,pSrc,size)     strncpy((char*)(pDest),(char*)(pSrc),size)
125 #define SK_STRCMP(pStr1,pStr2)          strcmp((char*)(pStr1),(char*)(pStr2))
126
127 /* macros to access the adapter */
128 #define SK_OUT8(b,a,v)          writeb((v), ((b)+(a)))  
129 #define SK_OUT16(b,a,v)         writew((v), ((b)+(a)))  
130 #define SK_OUT32(b,a,v)         writel((v), ((b)+(a)))  
131 #define SK_IN8(b,a,pv)          (*(pv) = readb((b)+(a)))
132 #define SK_IN16(b,a,pv)         (*(pv) = readw((b)+(a)))
133 #define SK_IN32(b,a,pv)         (*(pv) = readl((b)+(a)))
134
135 #define int8_t          char
136 #define int16_t         short
137 #define int32_t         long
138 #define int64_t         long long
139 #define uint8_t         u_char
140 #define uint16_t        u_short
141 #define uint32_t        u_long
142 #define uint64_t        unsigned long long
143 #define t_scalar_t      int
144 #define t_uscalar_t     unsigned int
145 #define uintptr_t       unsigned long
146
147 #define __CONCAT__(A,B) A##B
148
149 #define INT32_C(a)              __CONCAT__(a,L)
150 #define INT64_C(a)              __CONCAT__(a,LL)
151 #define UINT32_C(a)             __CONCAT__(a,UL)
152 #define UINT64_C(a)             __CONCAT__(a,ULL)
153
154 #ifdef DEBUG
155 #define SK_DBG_PRINTF           printk
156 #ifndef SK_DEBUG_CHKMOD
157 #define SK_DEBUG_CHKMOD         0
158 #endif
159 #ifndef SK_DEBUG_CHKCAT
160 #define SK_DEBUG_CHKCAT         0
161 #endif
162 /* those come from the makefile */
163 #define SK_DBG_CHKMOD(pAC)      (SK_DEBUG_CHKMOD)
164 #define SK_DBG_CHKCAT(pAC)      (SK_DEBUG_CHKCAT)
165
166 extern void SkDbgPrintf(const char *format,...);
167
168 #define SK_DBGMOD_DRV                   0x00010000
169
170 /**** possible driver debug categories ********************************/
171 #define SK_DBGCAT_DRV_ENTRY             0x00010000
172 #define SK_DBGCAT_DRV_SAP               0x00020000
173 #define SK_DBGCAT_DRV_MCA               0x00040000
174 #define SK_DBGCAT_DRV_TX_PROGRESS       0x00080000
175 #define SK_DBGCAT_DRV_RX_PROGRESS       0x00100000
176 #define SK_DBGCAT_DRV_PROGRESS          0x00200000
177 #define SK_DBGCAT_DRV_MSG               0x00400000
178 #define SK_DBGCAT_DRV_PROM              0x00800000
179 #define SK_DBGCAT_DRV_TX_FRAME          0x01000000
180 #define SK_DBGCAT_DRV_ERROR             0x02000000
181 #define SK_DBGCAT_DRV_INT_SRC           0x04000000
182 #define SK_DBGCAT_DRV_EVENT             0x08000000
183
184 #endif
185
186 #define SK_ERR_LOG              SkErrorLog
187
188 extern void SkErrorLog(SK_AC*, int, int, char*);
189
190 #endif
191