diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
commit | 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch) | |
tree | 0bba044c4ce775e45a88a51686b5d9f90697ea9d /drivers/message/fusion/mptlan.h |
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history,
even though we have it. We can create a separate "historical" git
archive of that later if we want to, and in the meantime it's about
3.2GB when imported into git - space that would just make the early
git days unnecessarily complicated, when we don't have a lot of good
infrastructure for it.
Let it rip!
Diffstat (limited to 'drivers/message/fusion/mptlan.h')
-rw-r--r-- | drivers/message/fusion/mptlan.h | 85 |
1 files changed, 85 insertions, 0 deletions
diff --git a/drivers/message/fusion/mptlan.h b/drivers/message/fusion/mptlan.h new file mode 100644 index 000000000000..057904260ab1 --- /dev/null +++ b/drivers/message/fusion/mptlan.h | |||
@@ -0,0 +1,85 @@ | |||
1 | /* mptlan.h */ | ||
2 | |||
3 | #ifndef LINUX_MPTLAN_H_INCLUDED | ||
4 | #define LINUX_MPTLAN_H_INCLUDED | ||
5 | /*****************************************************************************/ | ||
6 | |||
7 | #if !defined(__GENKSYMS__) | ||
8 | #include <linux/module.h> | ||
9 | #endif | ||
10 | |||
11 | #include <linux/netdevice.h> | ||
12 | #include <linux/errno.h> | ||
13 | // #include <linux/etherdevice.h> | ||
14 | #include <linux/fcdevice.h> | ||
15 | // #include <linux/fddidevice.h> | ||
16 | #include <linux/skbuff.h> | ||
17 | #include <linux/if_arp.h> | ||
18 | #include <linux/init.h> | ||
19 | #include <linux/kernel.h> | ||
20 | #include <linux/slab.h> | ||
21 | #include <linux/miscdevice.h> | ||
22 | #include <linux/spinlock.h> | ||
23 | #include <linux/version.h> | ||
24 | #include <linux/workqueue.h> | ||
25 | #include <linux/delay.h> | ||
26 | // #include <linux/trdevice.h> | ||
27 | |||
28 | #include <asm/uaccess.h> | ||
29 | #include <asm/io.h> | ||
30 | |||
31 | /* Override mptbase.h by pre-defining these! */ | ||
32 | #define MODULEAUTHOR "Noah Romer, Eddie C. Dost" | ||
33 | |||
34 | #include "mptbase.h" | ||
35 | |||
36 | /*****************************************************************************/ | ||
37 | #define LANAME "Fusion MPT LAN driver" | ||
38 | #define LANVER MPT_LINUX_VERSION_COMMON | ||
39 | |||
40 | #ifdef MODULE | ||
41 | MODULE_AUTHOR(MODULEAUTHOR); | ||
42 | MODULE_DESCRIPTION(LANAME); | ||
43 | #endif | ||
44 | /*****************************************************************************/ | ||
45 | |||
46 | #define MPT_LAN_MAX_BUCKETS_OUT 256 | ||
47 | #define MPT_LAN_BUCKET_THRESH 18 /* 9 buckets in one message */ | ||
48 | #define MPT_LAN_BUCKETS_REMAIN_MISMATCH_THRESH 10 | ||
49 | #define MPT_LAN_RX_COPYBREAK 200 | ||
50 | #define MPT_LAN_TX_TIMEOUT (1*HZ) | ||
51 | #define MPT_TX_MAX_OUT_LIM 127 | ||
52 | |||
53 | #define MPT_LAN_MIN_MTU 96 /* RFC2625 */ | ||
54 | #define MPT_LAN_MAX_MTU 65280 /* RFC2625 */ | ||
55 | #define MPT_LAN_MTU 13312 /* Max perf range + lower mem | ||
56 | usage than 16128 */ | ||
57 | |||
58 | #define MPT_LAN_NAA_RFC2625 0x1 | ||
59 | #define MPT_LAN_NAA_QLOGIC 0x2 | ||
60 | |||
61 | /* MPT LAN Reset and Suspend Resource Flags Defines */ | ||
62 | |||
63 | #define MPT_LAN_RESOURCE_FLAG_RETURN_POSTED_BUCKETS 0x01 | ||
64 | #define MPT_LAN_RESOURCE_FLAG_RETURN_PEND_TRANSMITS 0x02 | ||
65 | |||
66 | /*****************************************************************************/ | ||
67 | #ifdef MPT_LAN_IO_DEBUG | ||
68 | #define dioprintk(x) printk x | ||
69 | #else | ||
70 | #define dioprintk(x) | ||
71 | #endif | ||
72 | |||
73 | #ifdef MPT_LAN_DEBUG | ||
74 | #define dlprintk(x) printk x | ||
75 | #else | ||
76 | #define dlprintk(x) | ||
77 | #endif | ||
78 | |||
79 | #define NETDEV_TO_LANPRIV_PTR(d) ((struct mpt_lan_priv *)(d)->priv) | ||
80 | #define NETDEV_PTR_TO_IOC_NAME_s(d) (NETDEV_TO_LANPRIV_PTR(d)->mpt_dev->name) | ||
81 | #define IOC_AND_NETDEV_NAMES_s_s(d) NETDEV_PTR_TO_IOC_NAME_s(d), (d)->name | ||
82 | |||
83 | /*****************************************************************************/ | ||
84 | #endif | ||
85 | |||