blob: 881c48d941b7342f5163570cef4143e627319483 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* Copyright (c) 2004 Coraid, Inc. See COPYING for GPL terms. */
Ed L. Cashin3dc7c552005-09-29 12:47:55 -04002#define VERSION "14"
Linus Torvalds1da177e2005-04-16 15:20:36 -07003#define AOE_MAJOR 152
4#define DEVICE_NAME "aoe"
ecashin@coraid.comfc458dc2005-04-18 22:00:17 -07005
6/* set AOE_PARTITIONS to 1 to use whole-disks only
7 * default is 16, which is 15 partitions plus the whole disk
8 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#ifndef AOE_PARTITIONS
Ed L Cashine39526e2005-08-19 16:54:43 -040010#define AOE_PARTITIONS (16)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#endif
ecashin@coraid.comfc458dc2005-04-18 22:00:17 -070012
Ed L Cashine39526e2005-08-19 16:54:43 -040013#define SYSMINOR(aoemajor, aoeminor) ((aoemajor) * NPERSHELF + (aoeminor))
14#define AOEMAJOR(sysminor) ((sysminor) / NPERSHELF)
15#define AOEMINOR(sysminor) ((sysminor) % NPERSHELF)
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#define WHITESPACE " \t\v\f\n"
17
18enum {
19 AOECMD_ATA,
20 AOECMD_CFG,
21
22 AOEFL_RSP = (1<<3),
23 AOEFL_ERR = (1<<2),
24
25 AOEAFL_EXT = (1<<6),
26 AOEAFL_DEV = (1<<4),
27 AOEAFL_ASYNC = (1<<1),
28 AOEAFL_WRITE = (1<<0),
29
30 AOECCMD_READ = 0,
31 AOECCMD_TEST,
32 AOECCMD_PTEST,
33 AOECCMD_SET,
34 AOECCMD_FSET,
35
36 AOE_HVER = 0x10,
37};
38
39struct aoe_hdr {
40 unsigned char dst[6];
41 unsigned char src[6];
ecashin@coraid.com63e9cc52005-04-18 22:00:20 -070042 __be16 type;
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 unsigned char verfl;
44 unsigned char err;
ecashin@coraid.com63e9cc52005-04-18 22:00:20 -070045 __be16 major;
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 unsigned char minor;
47 unsigned char cmd;
ecashin@coraid.com63e9cc52005-04-18 22:00:20 -070048 __be32 tag;
Linus Torvalds1da177e2005-04-16 15:20:36 -070049};
50
51struct aoe_atahdr {
52 unsigned char aflags;
53 unsigned char errfeat;
54 unsigned char scnt;
55 unsigned char cmdstat;
56 unsigned char lba0;
57 unsigned char lba1;
58 unsigned char lba2;
59 unsigned char lba3;
60 unsigned char lba4;
61 unsigned char lba5;
62 unsigned char res[2];
63};
64
65struct aoe_cfghdr {
ecashin@coraid.com63e9cc52005-04-18 22:00:20 -070066 __be16 bufcnt;
67 __be16 fwver;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 unsigned char res;
69 unsigned char aoeccmd;
70 unsigned char cslen[2];
71};
72
73enum {
74 DEVFL_UP = 1, /* device is installed in system and ready for AoE->ATA commands */
75 DEVFL_TKILL = (1<<1), /* flag for timer to know when to kill self */
76 DEVFL_EXT = (1<<2), /* device accepts lba48 commands */
77 DEVFL_CLOSEWAIT = (1<<3), /* device is waiting for all closes to revalidate */
78 DEVFL_WC_UPDATE = (1<<4), /* this device needs to update write cache status */
79 DEVFL_WORKON = (1<<4),
80
81 BUFFL_FAIL = 1,
82};
83
84enum {
85 MAXATADATA = 1024,
Ed L Cashine39526e2005-08-19 16:54:43 -040086 NPERSHELF = 16, /* number of slots per shelf address */
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 FREETAG = -1,
88 MIN_BUFS = 8,
89};
90
91struct buf {
92 struct list_head bufs;
ecashin@coraid.com0c6f0e72005-04-18 22:00:22 -070093 ulong start_time; /* for disk stats */
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 ulong flags;
95 ulong nframesout;
96 char *bufaddr;
97 ulong resid;
98 ulong bv_resid;
99 sector_t sector;
100 struct bio *bio;
101 struct bio_vec *bv;
102};
103
104struct frame {
105 int tag;
106 ulong waited;
107 struct buf *buf;
108 char *bufaddr;
109 int writedatalen;
110 int ndata;
111
112 /* largest possible */
113 unsigned char data[sizeof(struct aoe_hdr) + sizeof(struct aoe_atahdr)];
114};
115
116struct aoedev {
117 struct aoedev *next;
118 unsigned char addr[6]; /* remote mac addr */
119 ushort flags;
120 ulong sysminor;
121 ulong aoemajor;
122 ulong aoeminor;
123 ulong nopen; /* (bd_openers isn't available without sleeping) */
124 ulong rttavg; /* round trip average of requests/responses */
125 u16 fw_ver; /* version of blade's firmware */
126 struct work_struct work;/* disk create work struct */
127 struct gendisk *gd;
128 request_queue_t blkq;
129 struct hd_geometry geo;
130 sector_t ssize;
131 struct timer_list timer;
132 spinlock_t lock;
133 struct net_device *ifp; /* interface ed is attached to */
ecashin@coraid.coma4b38362005-04-18 22:00:22 -0700134 struct sk_buff *sendq_hd; /* packets needing to be sent, list head */
135 struct sk_buff *sendq_tl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 mempool_t *bufpool; /* for deadlock-free Buf allocation */
137 struct list_head bufq; /* queue of bios to work on */
138 struct buf *inprocess; /* the one we're currently working on */
139 ulong lasttag; /* last tag sent */
140 ulong nframes; /* number of frames below */
141 struct frame *frames;
142};
143
144
145int aoeblk_init(void);
146void aoeblk_exit(void);
147void aoeblk_gdalloc(void *);
148void aoedisk_rm_sysfs(struct aoedev *d);
149
150int aoechr_init(void);
151void aoechr_exit(void);
152void aoechr_error(char *);
153
154void aoecmd_work(struct aoedev *d);
155void aoecmd_cfg(ushort, unsigned char);
156void aoecmd_ata_rsp(struct sk_buff *);
157void aoecmd_cfg_rsp(struct sk_buff *);
158
159int aoedev_init(void);
160void aoedev_exit(void);
ecashin@coraid.com32465c62005-04-18 22:00:18 -0700161struct aoedev *aoedev_by_aoeaddr(int maj, int min);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162void aoedev_downdev(struct aoedev *d);
163struct aoedev *aoedev_set(ulong, unsigned char *, struct net_device *, ulong);
164int aoedev_busy(void);
165
166int aoenet_init(void);
167void aoenet_exit(void);
168void aoenet_xmit(struct sk_buff *);
169int is_aoe_netif(struct net_device *ifp);
170int set_aoe_iflist(const char __user *str, size_t size);
171
172u64 mac_addr(char addr[6]);