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