blob: d17b727639735e684de78474c3a5d5b7b87f0237 [file] [log] [blame]
Ed L. Cashin52e112b2008-02-08 04:20:09 -08001/* Copyright (c) 2007 Coraid, Inc. See COPYING for GPL terms. */
Ed L. Cashin8911ef42008-02-08 04:19:58 -08002#define VERSION "47"
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,
Ed Cashinb6d6c512009-02-18 14:48:13 -080021 AOECMD_VEND_MIN = 0xf0,
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
23 AOEFL_RSP = (1<<3),
24 AOEFL_ERR = (1<<2),
25
26 AOEAFL_EXT = (1<<6),
27 AOEAFL_DEV = (1<<4),
28 AOEAFL_ASYNC = (1<<1),
29 AOEAFL_WRITE = (1<<0),
30
31 AOECCMD_READ = 0,
32 AOECCMD_TEST,
33 AOECCMD_PTEST,
34 AOECCMD_SET,
35 AOECCMD_FSET,
36
37 AOE_HVER = 0x10,
38};
39
40struct aoe_hdr {
41 unsigned char dst[6];
42 unsigned char src[6];
ecashin@coraid.com63e9cc52005-04-18 22:00:20 -070043 __be16 type;
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 unsigned char verfl;
45 unsigned char err;
ecashin@coraid.com63e9cc52005-04-18 22:00:20 -070046 __be16 major;
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 unsigned char minor;
48 unsigned char cmd;
ecashin@coraid.com63e9cc52005-04-18 22:00:20 -070049 __be32 tag;
Linus Torvalds1da177e2005-04-16 15:20:36 -070050};
51
52struct aoe_atahdr {
53 unsigned char aflags;
54 unsigned char errfeat;
55 unsigned char scnt;
56 unsigned char cmdstat;
57 unsigned char lba0;
58 unsigned char lba1;
59 unsigned char lba2;
60 unsigned char lba3;
61 unsigned char lba4;
62 unsigned char lba5;
63 unsigned char res[2];
64};
65
66struct aoe_cfghdr {
ecashin@coraid.com63e9cc52005-04-18 22:00:20 -070067 __be16 bufcnt;
68 __be16 fwver;
Ed L. Cashin19bf2632006-09-20 14:36:49 -040069 unsigned char scnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 unsigned char aoeccmd;
71 unsigned char cslen[2];
72};
73
74enum {
75 DEVFL_UP = 1, /* device is installed in system and ready for AoE->ATA commands */
76 DEVFL_TKILL = (1<<1), /* flag for timer to know when to kill self */
77 DEVFL_EXT = (1<<2), /* device accepts lba48 commands */
78 DEVFL_CLOSEWAIT = (1<<3), /* device is waiting for all closes to revalidate */
Ed L. Cashin3ae1c242006-01-19 13:46:19 -050079 DEVFL_GDALLOC = (1<<4), /* need to alloc gendisk */
Ed L. Cashin68e0d422008-02-08 04:20:00 -080080 DEVFL_KICKME = (1<<5), /* slow polling network card catch */
Ed L. Cashin3ae1c242006-01-19 13:46:19 -050081 DEVFL_NEWSIZE = (1<<6), /* need to update dev size in block layer */
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
83 BUFFL_FAIL = 1,
84};
85
86enum {
Ed L. Cashin19bf2632006-09-20 14:36:49 -040087 DEFAULTBCNT = 2 * 512, /* 2 sectors */
Ed L Cashine39526e2005-08-19 16:54:43 -040088 NPERSHELF = 16, /* number of slots per shelf address */
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 FREETAG = -1,
Ed L. Cashin68e0d422008-02-08 04:20:00 -080090 MIN_BUFS = 16,
91 NTARGETS = 8,
92 NAOEIFS = 8,
Ed Cashin69cf2d852012-10-04 17:16:23 -070093 NSKBPOOLMAX = 256,
Ed Cashin896831f2012-10-04 17:16:21 -070094 NFACTIVE = 17,
Ed L. Cashin68e0d422008-02-08 04:20:00 -080095
96 TIMERTICK = HZ / 10,
97 MINTIMER = HZ >> 2,
98 MAXTIMER = HZ << 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -070099};
100
101struct buf {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 ulong nframesout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 ulong resid;
104 ulong bv_resid;
105 sector_t sector;
106 struct bio *bio;
107 struct bio_vec *bv;
Ed Cashin69cf2d852012-10-04 17:16:23 -0700108 struct request *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109};
110
111struct frame {
Ed Cashin896831f2012-10-04 17:16:21 -0700112 struct list_head head;
113 u32 tag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 ulong waited;
Ed Cashin896831f2012-10-04 17:16:21 -0700115 struct aoetgt *t; /* parent target I belong to */
Ed L. Cashin19bf2632006-09-20 14:36:49 -0400116 sector_t lba;
Ed Cashin896831f2012-10-04 17:16:21 -0700117 struct sk_buff *skb; /* command skb freed on module exit */
118 struct sk_buff *r_skb; /* response skb for async processing */
Ed Cashin69cf2d852012-10-04 17:16:23 -0700119 struct buf *buf;
Ed Cashin3d5b0602012-10-04 17:16:20 -0700120 struct bio_vec *bv;
Ed Cashin69cf2d852012-10-04 17:16:23 -0700121 ulong bcnt;
Ed Cashin3d5b0602012-10-04 17:16:20 -0700122 ulong bv_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123};
124
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800125struct aoeif {
126 struct net_device *nd;
Ed Cashin3f0f0132012-10-04 17:16:27 -0700127 ulong lost;
128 int bcnt;
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800129};
130
131struct aoetgt {
132 unsigned char addr[6];
133 ushort nframes;
Ed Cashin896831f2012-10-04 17:16:21 -0700134 struct aoedev *d; /* parent device I belong to */
135 struct list_head factive[NFACTIVE]; /* hash of active frames */
136 struct list_head ffree; /* list of free frames */
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800137 struct aoeif ifs[NAOEIFS];
138 struct aoeif *ifp; /* current aoeif in use */
139 ushort nout;
140 ushort maxout;
141 u16 lasttag; /* last tag sent */
142 u16 useme;
Ed Cashin896831f2012-10-04 17:16:21 -0700143 ulong falloc;
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800144 ulong lastwadj; /* last window adjustment */
Ed Cashin3f0f0132012-10-04 17:16:27 -0700145 int minbcnt;
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800146 int wpkts, rpkts;
147};
148
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149struct aoedev {
150 struct aoedev *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 ulong sysminor;
152 ulong aoemajor;
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800153 u16 aoeminor;
154 u16 flags;
Ed L. Cashindced3a02006-09-20 14:36:49 -0400155 u16 nopen; /* (bd_openers isn't available without sleeping) */
Ed L. Cashindced3a02006-09-20 14:36:49 -0400156 u16 rttavg; /* round trip average of requests/responses */
157 u16 mintimer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 u16 fw_ver; /* version of blade's firmware */
Ed Cashin69cf2d852012-10-04 17:16:23 -0700159 ulong ref;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 struct work_struct work;/* disk create work struct */
161 struct gendisk *gd;
Ed Cashin7135a71b2009-09-09 14:10:18 +0200162 struct request_queue *blkq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 struct hd_geometry geo;
164 sector_t ssize;
165 struct timer_list timer;
166 spinlock_t lock;
David S. Millere9bb8fb02008-09-21 22:36:49 -0700167 struct sk_buff_head skbpool;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 mempool_t *bufpool; /* for deadlock-free Buf allocation */
Ed Cashin69cf2d852012-10-04 17:16:23 -0700169 struct { /* pointers to work in progress */
170 struct buf *buf;
171 struct bio *nxbio;
172 struct request *rq;
173 } ip;
Ed Cashin3f0f0132012-10-04 17:16:27 -0700174 ulong maxbcnt;
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800175 struct aoetgt *targets[NTARGETS];
176 struct aoetgt **tgt; /* target in use when working */
Ed Cashin896831f2012-10-04 17:16:21 -0700177 struct aoetgt *htgt; /* target needing rexmit assistance */
178 ulong ntargets;
179 ulong kicked;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180};
181
Ed Cashin896831f2012-10-04 17:16:21 -0700182/* kthread tracking */
183struct ktstate {
184 struct completion rendez;
185 struct task_struct *task;
186 wait_queue_head_t *waitq;
187 int (*fn) (void);
188 char *name;
189 spinlock_t *lock;
190};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
192int aoeblk_init(void);
193void aoeblk_exit(void);
194void aoeblk_gdalloc(void *);
195void aoedisk_rm_sysfs(struct aoedev *d);
196
197int aoechr_init(void);
198void aoechr_exit(void);
199void aoechr_error(char *);
200
201void aoecmd_work(struct aoedev *d);
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500202void aoecmd_cfg(ushort aoemajor, unsigned char aoeminor);
Ed Cashin896831f2012-10-04 17:16:21 -0700203struct sk_buff *aoecmd_ata_rsp(struct sk_buff *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204void aoecmd_cfg_rsp(struct sk_buff *);
David Howellsc4028952006-11-22 14:57:56 +0000205void aoecmd_sleepwork(struct work_struct *);
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800206void aoecmd_cleanslate(struct aoedev *);
Ed Cashin896831f2012-10-04 17:16:21 -0700207void aoecmd_exit(void);
208int aoecmd_init(void);
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800209struct sk_buff *aoecmd_ata_id(struct aoedev *);
Ed Cashin896831f2012-10-04 17:16:21 -0700210void aoe_freetframe(struct frame *);
Ed Cashin69cf2d852012-10-04 17:16:23 -0700211void aoe_flush_iocq(void);
212void aoe_end_request(struct aoedev *, struct request *, int);
Ed Cashineb086ec2012-10-04 17:16:25 -0700213int aoe_ktstart(struct ktstate *k);
214void aoe_ktstop(struct ktstate *k);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
216int aoedev_init(void);
217void aoedev_exit(void);
ecashin@coraid.com32465c62005-04-18 22:00:18 -0700218struct aoedev *aoedev_by_aoeaddr(int maj, int min);
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800219struct aoedev *aoedev_by_sysminor_m(ulong sysminor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220void aoedev_downdev(struct aoedev *d);
Ed L. Cashin262bf542008-02-08 04:20:03 -0800221int aoedev_flush(const char __user *str, size_t size);
Ed Cashin69cf2d852012-10-04 17:16:23 -0700222void aoe_failbuf(struct aoedev *, struct buf *);
223void aoedev_put(struct aoedev *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
225int aoenet_init(void);
226void aoenet_exit(void);
David S. Millere9bb8fb02008-09-21 22:36:49 -0700227void aoenet_xmit(struct sk_buff_head *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228int is_aoe_netif(struct net_device *ifp);
229int set_aoe_iflist(const char __user *str, size_t size);
230