Ed Cashin | fea05a2 | 2012-10-04 17:16:38 -0700 | [diff] [blame] | 1 | /* Copyright (c) 2012 Coraid, Inc. See COPYING for GPL terms. */ |
Ed Cashin | 322c9ec | 2012-10-04 17:16:50 -0700 | [diff] [blame] | 2 | #define VERSION "50" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | #define AOE_MAJOR 152 |
| 4 | #define DEVICE_NAME "aoe" |
ecashin@coraid.com | fc458dc | 2005-04-18 22:00:17 -0700 | [diff] [blame] | 5 | |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | #ifndef AOE_PARTITIONS |
Ed L Cashin | e39526e | 2005-08-19 16:54:43 -0400 | [diff] [blame] | 10 | #define AOE_PARTITIONS (16) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | #endif |
ecashin@coraid.com | fc458dc | 2005-04-18 22:00:17 -0700 | [diff] [blame] | 12 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | #define WHITESPACE " \t\v\f\n" |
| 14 | |
| 15 | enum { |
| 16 | AOECMD_ATA, |
| 17 | AOECMD_CFG, |
Ed Cashin | b6d6c51 | 2009-02-18 14:48:13 -0800 | [diff] [blame] | 18 | AOECMD_VEND_MIN = 0xf0, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | |
| 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 | |
| 37 | struct aoe_hdr { |
| 38 | unsigned char dst[6]; |
| 39 | unsigned char src[6]; |
ecashin@coraid.com | 63e9cc5 | 2005-04-18 22:00:20 -0700 | [diff] [blame] | 40 | __be16 type; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | unsigned char verfl; |
| 42 | unsigned char err; |
ecashin@coraid.com | 63e9cc5 | 2005-04-18 22:00:20 -0700 | [diff] [blame] | 43 | __be16 major; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | unsigned char minor; |
| 45 | unsigned char cmd; |
ecashin@coraid.com | 63e9cc5 | 2005-04-18 22:00:20 -0700 | [diff] [blame] | 46 | __be32 tag; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | }; |
| 48 | |
| 49 | struct 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 | |
| 63 | struct aoe_cfghdr { |
ecashin@coraid.com | 63e9cc5 | 2005-04-18 22:00:20 -0700 | [diff] [blame] | 64 | __be16 bufcnt; |
| 65 | __be16 fwver; |
Ed L. Cashin | 19bf263 | 2006-09-20 14:36:49 -0400 | [diff] [blame] | 66 | unsigned char scnt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | unsigned char aoeccmd; |
| 68 | unsigned char cslen[2]; |
| 69 | }; |
| 70 | |
| 71 | enum { |
| 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 Cashin | b21faa2 | 2012-10-04 17:16:35 -0700 | [diff] [blame] | 75 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | }; |
| 79 | |
| 80 | enum { |
Ed L. Cashin | 19bf263 | 2006-09-20 14:36:49 -0400 | [diff] [blame] | 81 | DEFAULTBCNT = 2 * 512, /* 2 sectors */ |
Ed L. Cashin | 68e0d42 | 2008-02-08 04:20:00 -0800 | [diff] [blame] | 82 | MIN_BUFS = 16, |
| 83 | NTARGETS = 8, |
| 84 | NAOEIFS = 8, |
Ed Cashin | 69cf2d85 | 2012-10-04 17:16:23 -0700 | [diff] [blame] | 85 | NSKBPOOLMAX = 256, |
Ed Cashin | 64a80f5 | 2012-10-04 17:16:33 -0700 | [diff] [blame] | 86 | NFACTIVE = 61, |
Ed L. Cashin | 68e0d42 | 2008-02-08 04:20:00 -0800 | [diff] [blame] | 87 | |
| 88 | TIMERTICK = HZ / 10, |
| 89 | MINTIMER = HZ >> 2, |
| 90 | MAXTIMER = HZ << 1, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | }; |
| 92 | |
| 93 | struct buf { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | ulong nframesout; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | ulong resid; |
| 96 | ulong bv_resid; |
| 97 | sector_t sector; |
| 98 | struct bio *bio; |
| 99 | struct bio_vec *bv; |
Ed Cashin | 69cf2d85 | 2012-10-04 17:16:23 -0700 | [diff] [blame] | 100 | struct request *rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | }; |
| 102 | |
| 103 | struct frame { |
Ed Cashin | 896831f | 2012-10-04 17:16:21 -0700 | [diff] [blame] | 104 | struct list_head head; |
| 105 | u32 tag; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | ulong waited; |
Ed Cashin | 896831f | 2012-10-04 17:16:21 -0700 | [diff] [blame] | 107 | struct aoetgt *t; /* parent target I belong to */ |
Ed L. Cashin | 19bf263 | 2006-09-20 14:36:49 -0400 | [diff] [blame] | 108 | sector_t lba; |
Ed Cashin | 896831f | 2012-10-04 17:16:21 -0700 | [diff] [blame] | 109 | struct sk_buff *skb; /* command skb freed on module exit */ |
| 110 | struct sk_buff *r_skb; /* response skb for async processing */ |
Ed Cashin | 69cf2d85 | 2012-10-04 17:16:23 -0700 | [diff] [blame] | 111 | struct buf *buf; |
Ed Cashin | 3d5b060 | 2012-10-04 17:16:20 -0700 | [diff] [blame] | 112 | struct bio_vec *bv; |
Ed Cashin | 69cf2d85 | 2012-10-04 17:16:23 -0700 | [diff] [blame] | 113 | ulong bcnt; |
Ed Cashin | 3d5b060 | 2012-10-04 17:16:20 -0700 | [diff] [blame] | 114 | ulong bv_off; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | }; |
| 116 | |
Ed L. Cashin | 68e0d42 | 2008-02-08 04:20:00 -0800 | [diff] [blame] | 117 | struct aoeif { |
| 118 | struct net_device *nd; |
Ed Cashin | 3f0f013 | 2012-10-04 17:16:27 -0700 | [diff] [blame] | 119 | ulong lost; |
| 120 | int bcnt; |
Ed L. Cashin | 68e0d42 | 2008-02-08 04:20:00 -0800 | [diff] [blame] | 121 | }; |
| 122 | |
| 123 | struct aoetgt { |
| 124 | unsigned char addr[6]; |
Ed Cashin | 1b8a163 | 2012-12-17 16:03:29 -0800 | [diff] [blame^] | 125 | ushort nframes; /* cap on frames to use */ |
Ed Cashin | 896831f | 2012-10-04 17:16:21 -0700 | [diff] [blame] | 126 | struct aoedev *d; /* parent device I belong to */ |
Ed Cashin | 896831f | 2012-10-04 17:16:21 -0700 | [diff] [blame] | 127 | struct list_head ffree; /* list of free frames */ |
Ed L. Cashin | 68e0d42 | 2008-02-08 04:20:00 -0800 | [diff] [blame] | 128 | struct aoeif ifs[NAOEIFS]; |
| 129 | struct aoeif *ifp; /* current aoeif in use */ |
| 130 | ushort nout; |
Ed Cashin | 1b8a163 | 2012-12-17 16:03:29 -0800 | [diff] [blame^] | 131 | ushort maxout; /* current value for max outstanding */ |
| 132 | ulong falloc; /* number of allocated frames */ |
Ed L. Cashin | 68e0d42 | 2008-02-08 04:20:00 -0800 | [diff] [blame] | 133 | ulong lastwadj; /* last window adjustment */ |
Ed Cashin | 3f0f013 | 2012-10-04 17:16:27 -0700 | [diff] [blame] | 134 | int minbcnt; |
Ed L. Cashin | 68e0d42 | 2008-02-08 04:20:00 -0800 | [diff] [blame] | 135 | int wpkts, rpkts; |
| 136 | }; |
| 137 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | struct aoedev { |
| 139 | struct aoedev *next; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | ulong sysminor; |
| 141 | ulong aoemajor; |
Ed L. Cashin | 68e0d42 | 2008-02-08 04:20:00 -0800 | [diff] [blame] | 142 | u16 aoeminor; |
| 143 | u16 flags; |
Ed L. Cashin | dced3a0 | 2006-09-20 14:36:49 -0400 | [diff] [blame] | 144 | u16 nopen; /* (bd_openers isn't available without sleeping) */ |
Ed L. Cashin | dced3a0 | 2006-09-20 14:36:49 -0400 | [diff] [blame] | 145 | u16 rttavg; /* round trip average of requests/responses */ |
| 146 | u16 mintimer; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | u16 fw_ver; /* version of blade's firmware */ |
Ed Cashin | 64a80f5 | 2012-10-04 17:16:33 -0700 | [diff] [blame] | 148 | u16 lasttag; /* last tag sent */ |
| 149 | u16 useme; |
Ed Cashin | 69cf2d85 | 2012-10-04 17:16:23 -0700 | [diff] [blame] | 150 | ulong ref; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | struct work_struct work;/* disk create work struct */ |
| 152 | struct gendisk *gd; |
Ed Cashin | 7135a71b | 2009-09-09 14:10:18 +0200 | [diff] [blame] | 153 | struct request_queue *blkq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | struct hd_geometry geo; |
| 155 | sector_t ssize; |
| 156 | struct timer_list timer; |
| 157 | spinlock_t lock; |
David S. Miller | e9bb8fb0 | 2008-09-21 22:36:49 -0700 | [diff] [blame] | 158 | struct sk_buff_head skbpool; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | mempool_t *bufpool; /* for deadlock-free Buf allocation */ |
Ed Cashin | 69cf2d85 | 2012-10-04 17:16:23 -0700 | [diff] [blame] | 160 | struct { /* pointers to work in progress */ |
| 161 | struct buf *buf; |
| 162 | struct bio *nxbio; |
| 163 | struct request *rq; |
| 164 | } ip; |
Ed Cashin | 3f0f013 | 2012-10-04 17:16:27 -0700 | [diff] [blame] | 165 | ulong maxbcnt; |
Ed Cashin | 64a80f5 | 2012-10-04 17:16:33 -0700 | [diff] [blame] | 166 | struct list_head factive[NFACTIVE]; /* hash of active frames */ |
Ed L. Cashin | 68e0d42 | 2008-02-08 04:20:00 -0800 | [diff] [blame] | 167 | struct aoetgt *targets[NTARGETS]; |
| 168 | struct aoetgt **tgt; /* target in use when working */ |
Ed Cashin | 896831f | 2012-10-04 17:16:21 -0700 | [diff] [blame] | 169 | struct aoetgt *htgt; /* target needing rexmit assistance */ |
| 170 | ulong ntargets; |
| 171 | ulong kicked; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | }; |
| 173 | |
Ed Cashin | 896831f | 2012-10-04 17:16:21 -0700 | [diff] [blame] | 174 | /* kthread tracking */ |
| 175 | struct ktstate { |
| 176 | struct completion rendez; |
| 177 | struct task_struct *task; |
| 178 | wait_queue_head_t *waitq; |
| 179 | int (*fn) (void); |
| 180 | char *name; |
| 181 | spinlock_t *lock; |
| 182 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | |
| 184 | int aoeblk_init(void); |
| 185 | void aoeblk_exit(void); |
| 186 | void aoeblk_gdalloc(void *); |
| 187 | void aoedisk_rm_sysfs(struct aoedev *d); |
| 188 | |
| 189 | int aoechr_init(void); |
| 190 | void aoechr_exit(void); |
| 191 | void aoechr_error(char *); |
| 192 | |
| 193 | void aoecmd_work(struct aoedev *d); |
Ed L. Cashin | 3ae1c24 | 2006-01-19 13:46:19 -0500 | [diff] [blame] | 194 | void aoecmd_cfg(ushort aoemajor, unsigned char aoeminor); |
Ed Cashin | 896831f | 2012-10-04 17:16:21 -0700 | [diff] [blame] | 195 | struct sk_buff *aoecmd_ata_rsp(struct sk_buff *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 | void aoecmd_cfg_rsp(struct sk_buff *); |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 197 | void aoecmd_sleepwork(struct work_struct *); |
Ed L. Cashin | 68e0d42 | 2008-02-08 04:20:00 -0800 | [diff] [blame] | 198 | void aoecmd_cleanslate(struct aoedev *); |
Ed Cashin | 896831f | 2012-10-04 17:16:21 -0700 | [diff] [blame] | 199 | void aoecmd_exit(void); |
| 200 | int aoecmd_init(void); |
Ed L. Cashin | 68e0d42 | 2008-02-08 04:20:00 -0800 | [diff] [blame] | 201 | struct sk_buff *aoecmd_ata_id(struct aoedev *); |
Ed Cashin | 896831f | 2012-10-04 17:16:21 -0700 | [diff] [blame] | 202 | void aoe_freetframe(struct frame *); |
Ed Cashin | 69cf2d85 | 2012-10-04 17:16:23 -0700 | [diff] [blame] | 203 | void aoe_flush_iocq(void); |
| 204 | void aoe_end_request(struct aoedev *, struct request *, int); |
Ed Cashin | eb086ec | 2012-10-04 17:16:25 -0700 | [diff] [blame] | 205 | int aoe_ktstart(struct ktstate *k); |
| 206 | void aoe_ktstop(struct ktstate *k); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | |
| 208 | int aoedev_init(void); |
| 209 | void aoedev_exit(void); |
Ed Cashin | 0c96621 | 2012-10-04 17:16:40 -0700 | [diff] [blame] | 210 | struct aoedev *aoedev_by_aoeaddr(ulong maj, int min, int do_alloc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 | void aoedev_downdev(struct aoedev *d); |
Ed L. Cashin | 262bf54 | 2008-02-08 04:20:03 -0800 | [diff] [blame] | 212 | int aoedev_flush(const char __user *str, size_t size); |
Ed Cashin | 69cf2d85 | 2012-10-04 17:16:23 -0700 | [diff] [blame] | 213 | void aoe_failbuf(struct aoedev *, struct buf *); |
| 214 | void aoedev_put(struct aoedev *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 215 | |
| 216 | int aoenet_init(void); |
| 217 | void aoenet_exit(void); |
David S. Miller | e9bb8fb0 | 2008-09-21 22:36:49 -0700 | [diff] [blame] | 218 | void aoenet_xmit(struct sk_buff_head *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 | int is_aoe_netif(struct net_device *ifp); |
| 220 | int set_aoe_iflist(const char __user *str, size_t size); |