blob: f6e0c03fe7b2a642f63a52bc436a0c0932771477 [file] [log] [blame]
Ed Cashinfea05a22012-10-04 17:16:38 -07001/* Copyright (c) 2012 Coraid, Inc. See COPYING for GPL terms. */
Ed Cashincd220bf2012-12-17 16:03:41 -08002#define VERSION "60"
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
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#define WHITESPACE " \t\v\f\n"
14
15enum {
16 AOECMD_ATA,
17 AOECMD_CFG,
Ed Cashinb6d6c512009-02-18 14:48:13 -080018 AOECMD_VEND_MIN = 0xf0,
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
20 AOEFL_RSP = (1<<3),
21 AOEFL_ERR = (1<<2),
22
23 AOEAFL_EXT = (1<<6),
24 AOEAFL_DEV = (1<<4),
25 AOEAFL_ASYNC = (1<<1),
26 AOEAFL_WRITE = (1<<0),
27
28 AOECCMD_READ = 0,
29 AOECCMD_TEST,
30 AOECCMD_PTEST,
31 AOECCMD_SET,
32 AOECCMD_FSET,
33
34 AOE_HVER = 0x10,
35};
36
37struct aoe_hdr {
38 unsigned char dst[6];
39 unsigned char src[6];
ecashin@coraid.com63e9cc52005-04-18 22:00:20 -070040 __be16 type;
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 unsigned char verfl;
42 unsigned char err;
ecashin@coraid.com63e9cc52005-04-18 22:00:20 -070043 __be16 major;
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 unsigned char minor;
45 unsigned char cmd;
ecashin@coraid.com63e9cc52005-04-18 22:00:20 -070046 __be32 tag;
Linus Torvalds1da177e2005-04-16 15:20:36 -070047};
48
49struct aoe_atahdr {
50 unsigned char aflags;
51 unsigned char errfeat;
52 unsigned char scnt;
53 unsigned char cmdstat;
54 unsigned char lba0;
55 unsigned char lba1;
56 unsigned char lba2;
57 unsigned char lba3;
58 unsigned char lba4;
59 unsigned char lba5;
60 unsigned char res[2];
61};
62
63struct aoe_cfghdr {
ecashin@coraid.com63e9cc52005-04-18 22:00:20 -070064 __be16 bufcnt;
65 __be16 fwver;
Ed L. Cashin19bf2632006-09-20 14:36:49 -040066 unsigned char scnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 unsigned char aoeccmd;
68 unsigned char cslen[2];
69};
70
71enum {
72 DEVFL_UP = 1, /* device is installed in system and ready for AoE->ATA commands */
73 DEVFL_TKILL = (1<<1), /* flag for timer to know when to kill self */
74 DEVFL_EXT = (1<<2), /* device accepts lba48 commands */
Ed Cashinb21faa22012-10-04 17:16:35 -070075 DEVFL_GDALLOC = (1<<3), /* need to alloc gendisk */
76 DEVFL_KICKME = (1<<4), /* slow polling network card catch */
77 DEVFL_NEWSIZE = (1<<5), /* need to update dev size in block layer */
Linus Torvalds1da177e2005-04-16 15:20:36 -070078};
79
80enum {
Ed L. Cashin19bf2632006-09-20 14:36:49 -040081 DEFAULTBCNT = 2 * 512, /* 2 sectors */
Ed L. Cashin68e0d422008-02-08 04:20:00 -080082 MIN_BUFS = 16,
83 NTARGETS = 8,
84 NAOEIFS = 8,
Ed Cashin69cf2d852012-10-04 17:16:23 -070085 NSKBPOOLMAX = 256,
Ed Cashin64a80f52012-10-04 17:16:33 -070086 NFACTIVE = 61,
Ed L. Cashin68e0d422008-02-08 04:20:00 -080087
88 TIMERTICK = HZ / 10,
89 MINTIMER = HZ >> 2,
90 MAXTIMER = HZ << 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -070091};
92
93struct buf {
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 ulong nframesout;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 ulong resid;
96 ulong bv_resid;
97 sector_t sector;
98 struct bio *bio;
99 struct bio_vec *bv;
Ed Cashin69cf2d852012-10-04 17:16:23 -0700100 struct request *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101};
102
103struct frame {
Ed Cashin896831f2012-10-04 17:16:21 -0700104 struct list_head head;
105 u32 tag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 ulong waited;
Ed Cashin896831f2012-10-04 17:16:21 -0700107 struct aoetgt *t; /* parent target I belong to */
Ed L. Cashin19bf2632006-09-20 14:36:49 -0400108 sector_t lba;
Ed Cashin896831f2012-10-04 17:16:21 -0700109 struct sk_buff *skb; /* command skb freed on module exit */
110 struct sk_buff *r_skb; /* response skb for async processing */
Ed Cashin69cf2d852012-10-04 17:16:23 -0700111 struct buf *buf;
Ed Cashin3d5b0602012-10-04 17:16:20 -0700112 struct bio_vec *bv;
Ed Cashin69cf2d852012-10-04 17:16:23 -0700113 ulong bcnt;
Ed Cashin3d5b0602012-10-04 17:16:20 -0700114 ulong bv_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115};
116
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800117struct aoeif {
118 struct net_device *nd;
Ed Cashin3f0f0132012-10-04 17:16:27 -0700119 ulong lost;
120 int bcnt;
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800121};
122
123struct aoetgt {
124 unsigned char addr[6];
Ed Cashin1b8a1632012-12-17 16:03:29 -0800125 ushort nframes; /* cap on frames to use */
Ed Cashin896831f2012-10-04 17:16:21 -0700126 struct aoedev *d; /* parent device I belong to */
Ed Cashin896831f2012-10-04 17:16:21 -0700127 struct list_head ffree; /* list of free frames */
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800128 struct aoeif ifs[NAOEIFS];
129 struct aoeif *ifp; /* current aoeif in use */
130 ushort nout;
Ed Cashin1b8a1632012-12-17 16:03:29 -0800131 ushort maxout; /* current value for max outstanding */
132 ulong falloc; /* number of allocated frames */
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800133 ulong lastwadj; /* last window adjustment */
Ed Cashin3f0f0132012-10-04 17:16:27 -0700134 int minbcnt;
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800135 int wpkts, rpkts;
136};
137
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138struct aoedev {
139 struct aoedev *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 ulong sysminor;
141 ulong aoemajor;
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800142 u16 aoeminor;
143 u16 flags;
Ed L. Cashindced3a02006-09-20 14:36:49 -0400144 u16 nopen; /* (bd_openers isn't available without sleeping) */
Ed L. Cashindced3a02006-09-20 14:36:49 -0400145 u16 rttavg; /* round trip average of requests/responses */
146 u16 mintimer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 u16 fw_ver; /* version of blade's firmware */
Ed Cashin64a80f52012-10-04 17:16:33 -0700148 u16 lasttag; /* last tag sent */
149 u16 useme;
Ed Cashin69cf2d852012-10-04 17:16:23 -0700150 ulong ref;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 struct work_struct work;/* disk create work struct */
152 struct gendisk *gd;
Ed Cashin7135a71b2009-09-09 14:10:18 +0200153 struct request_queue *blkq;
Ed Cashina04b41c2012-12-17 16:03:39 -0800154 struct hd_geometry geo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 sector_t ssize;
156 struct timer_list timer;
157 spinlock_t lock;
David S. Millere9bb8fb02008-09-21 22:36:49 -0700158 struct sk_buff_head skbpool;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 mempool_t *bufpool; /* for deadlock-free Buf allocation */
Ed Cashin69cf2d852012-10-04 17:16:23 -0700160 struct { /* pointers to work in progress */
161 struct buf *buf;
162 struct bio *nxbio;
163 struct request *rq;
164 } ip;
Ed Cashin3f0f0132012-10-04 17:16:27 -0700165 ulong maxbcnt;
Ed Cashin64a80f52012-10-04 17:16:33 -0700166 struct list_head factive[NFACTIVE]; /* hash of active frames */
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800167 struct aoetgt *targets[NTARGETS];
168 struct aoetgt **tgt; /* target in use when working */
Ed Cashin896831f2012-10-04 17:16:21 -0700169 struct aoetgt *htgt; /* target needing rexmit assistance */
170 ulong ntargets;
171 ulong kicked;
Ed Cashin667be1e2012-12-17 16:03:42 -0800172 char ident[512];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173};
174
Ed Cashin896831f2012-10-04 17:16:21 -0700175/* kthread tracking */
176struct ktstate {
177 struct completion rendez;
178 struct task_struct *task;
179 wait_queue_head_t *waitq;
180 int (*fn) (void);
181 char *name;
182 spinlock_t *lock;
183};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
185int aoeblk_init(void);
186void aoeblk_exit(void);
187void aoeblk_gdalloc(void *);
188void aoedisk_rm_sysfs(struct aoedev *d);
189
190int aoechr_init(void);
191void aoechr_exit(void);
192void aoechr_error(char *);
193
194void aoecmd_work(struct aoedev *d);
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500195void aoecmd_cfg(ushort aoemajor, unsigned char aoeminor);
Ed Cashin896831f2012-10-04 17:16:21 -0700196struct sk_buff *aoecmd_ata_rsp(struct sk_buff *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197void aoecmd_cfg_rsp(struct sk_buff *);
David Howellsc4028952006-11-22 14:57:56 +0000198void aoecmd_sleepwork(struct work_struct *);
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800199void aoecmd_cleanslate(struct aoedev *);
Ed Cashin896831f2012-10-04 17:16:21 -0700200void aoecmd_exit(void);
201int aoecmd_init(void);
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800202struct sk_buff *aoecmd_ata_id(struct aoedev *);
Ed Cashin896831f2012-10-04 17:16:21 -0700203void aoe_freetframe(struct frame *);
Ed Cashin69cf2d852012-10-04 17:16:23 -0700204void aoe_flush_iocq(void);
205void aoe_end_request(struct aoedev *, struct request *, int);
Ed Cashineb086ec2012-10-04 17:16:25 -0700206int aoe_ktstart(struct ktstate *k);
207void aoe_ktstop(struct ktstate *k);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
209int aoedev_init(void);
210void aoedev_exit(void);
Ed Cashin0c966212012-10-04 17:16:40 -0700211struct aoedev *aoedev_by_aoeaddr(ulong maj, int min, int do_alloc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212void aoedev_downdev(struct aoedev *d);
Ed L. Cashin262bf542008-02-08 04:20:03 -0800213int aoedev_flush(const char __user *str, size_t size);
Ed Cashin69cf2d852012-10-04 17:16:23 -0700214void aoe_failbuf(struct aoedev *, struct buf *);
215void aoedev_put(struct aoedev *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
217int aoenet_init(void);
218void aoenet_exit(void);
David S. Millere9bb8fb02008-09-21 22:36:49 -0700219void aoenet_xmit(struct sk_buff_head *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220int is_aoe_netif(struct net_device *ifp);
221int set_aoe_iflist(const char __user *str, size_t size);