Ed L. Cashin | 52e112b | 2008-02-08 04:20:09 -0800 | [diff] [blame] | 1 | /* Copyright (c) 2007 Coraid, Inc. See COPYING for GPL terms. */ |
Ed L. Cashin | 8911ef4 | 2008-02-08 04:19:58 -0800 | [diff] [blame] | 2 | #define VERSION "47" |
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 | |
Ed L Cashin | e39526e | 2005-08-19 16:54:43 -0400 | [diff] [blame] | 13 | #define SYSMINOR(aoemajor, aoeminor) ((aoemajor) * NPERSHELF + (aoeminor)) |
| 14 | #define AOEMAJOR(sysminor) ((sysminor) / NPERSHELF) |
| 15 | #define AOEMINOR(sysminor) ((sysminor) % NPERSHELF) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | #define WHITESPACE " \t\v\f\n" |
| 17 | |
| 18 | enum { |
| 19 | AOECMD_ATA, |
| 20 | AOECMD_CFG, |
Ed Cashin | b6d6c51 | 2009-02-18 14:48:13 -0800 | [diff] [blame] | 21 | AOECMD_VEND_MIN = 0xf0, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | |
| 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 | |
| 40 | struct aoe_hdr { |
| 41 | unsigned char dst[6]; |
| 42 | unsigned char src[6]; |
ecashin@coraid.com | 63e9cc5 | 2005-04-18 22:00:20 -0700 | [diff] [blame] | 43 | __be16 type; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | unsigned char verfl; |
| 45 | unsigned char err; |
ecashin@coraid.com | 63e9cc5 | 2005-04-18 22:00:20 -0700 | [diff] [blame] | 46 | __be16 major; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | unsigned char minor; |
| 48 | unsigned char cmd; |
ecashin@coraid.com | 63e9cc5 | 2005-04-18 22:00:20 -0700 | [diff] [blame] | 49 | __be32 tag; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | }; |
| 51 | |
| 52 | struct 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 | |
| 66 | struct aoe_cfghdr { |
ecashin@coraid.com | 63e9cc5 | 2005-04-18 22:00:20 -0700 | [diff] [blame] | 67 | __be16 bufcnt; |
| 68 | __be16 fwver; |
Ed L. Cashin | 19bf263 | 2006-09-20 14:36:49 -0400 | [diff] [blame] | 69 | unsigned char scnt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | unsigned char aoeccmd; |
| 71 | unsigned char cslen[2]; |
| 72 | }; |
| 73 | |
| 74 | enum { |
| 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. Cashin | 3ae1c24 | 2006-01-19 13:46:19 -0500 | [diff] [blame] | 79 | DEVFL_GDALLOC = (1<<4), /* need to alloc gendisk */ |
Ed L. Cashin | 68e0d42 | 2008-02-08 04:20:00 -0800 | [diff] [blame] | 80 | DEVFL_KICKME = (1<<5), /* slow polling network card catch */ |
Ed L. Cashin | 3ae1c24 | 2006-01-19 13:46:19 -0500 | [diff] [blame] | 81 | DEVFL_NEWSIZE = (1<<6), /* need to update dev size in block layer */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | |
| 83 | BUFFL_FAIL = 1, |
| 84 | }; |
| 85 | |
| 86 | enum { |
Ed L. Cashin | 19bf263 | 2006-09-20 14:36:49 -0400 | [diff] [blame] | 87 | DEFAULTBCNT = 2 * 512, /* 2 sectors */ |
Ed L Cashin | e39526e | 2005-08-19 16:54:43 -0400 | [diff] [blame] | 88 | NPERSHELF = 16, /* number of slots per shelf address */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | FREETAG = -1, |
Ed L. Cashin | 68e0d42 | 2008-02-08 04:20:00 -0800 | [diff] [blame] | 90 | MIN_BUFS = 16, |
| 91 | NTARGETS = 8, |
| 92 | NAOEIFS = 8, |
Ed L. Cashin | 9bb237b | 2008-02-08 04:20:05 -0800 | [diff] [blame] | 93 | NSKBPOOLMAX = 128, |
Ed L. Cashin | 68e0d42 | 2008-02-08 04:20:00 -0800 | [diff] [blame] | 94 | |
| 95 | TIMERTICK = HZ / 10, |
| 96 | MINTIMER = HZ >> 2, |
| 97 | MAXTIMER = HZ << 1, |
| 98 | HELPWAIT = 20, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | }; |
| 100 | |
| 101 | struct buf { |
| 102 | struct list_head bufs; |
Ed L. Cashin | 68e0d42 | 2008-02-08 04:20:00 -0800 | [diff] [blame] | 103 | ulong stime; /* for disk stats */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | ulong flags; |
| 105 | ulong nframesout; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | ulong resid; |
| 107 | ulong bv_resid; |
Ed L. Cashin | 68e0d42 | 2008-02-08 04:20:00 -0800 | [diff] [blame] | 108 | ulong bv_off; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | sector_t sector; |
| 110 | struct bio *bio; |
| 111 | struct bio_vec *bv; |
| 112 | }; |
| 113 | |
| 114 | struct frame { |
| 115 | int tag; |
| 116 | ulong waited; |
| 117 | struct buf *buf; |
| 118 | char *bufaddr; |
Ed L. Cashin | 19bf263 | 2006-09-20 14:36:49 -0400 | [diff] [blame] | 119 | ulong bcnt; |
| 120 | sector_t lba; |
Ed L. Cashin | e407a7f | 2006-09-20 14:36:49 -0400 | [diff] [blame] | 121 | struct sk_buff *skb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | }; |
| 123 | |
Ed L. Cashin | 68e0d42 | 2008-02-08 04:20:00 -0800 | [diff] [blame] | 124 | struct aoeif { |
| 125 | struct net_device *nd; |
| 126 | unsigned char lost; |
| 127 | unsigned char lostjumbo; |
| 128 | ushort maxbcnt; |
| 129 | }; |
| 130 | |
| 131 | struct aoetgt { |
| 132 | unsigned char addr[6]; |
| 133 | ushort nframes; |
| 134 | struct frame *frames; |
| 135 | struct aoeif ifs[NAOEIFS]; |
| 136 | struct aoeif *ifp; /* current aoeif in use */ |
| 137 | ushort nout; |
| 138 | ushort maxout; |
| 139 | u16 lasttag; /* last tag sent */ |
| 140 | u16 useme; |
| 141 | ulong lastwadj; /* last window adjustment */ |
| 142 | int wpkts, rpkts; |
Ed L. Cashin | 9bb237b | 2008-02-08 04:20:05 -0800 | [diff] [blame] | 143 | int dataref; |
Ed L. Cashin | 68e0d42 | 2008-02-08 04:20:00 -0800 | [diff] [blame] | 144 | }; |
| 145 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | struct aoedev { |
| 147 | struct aoedev *next; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | ulong sysminor; |
| 149 | ulong aoemajor; |
Ed L. Cashin | 68e0d42 | 2008-02-08 04:20:00 -0800 | [diff] [blame] | 150 | u16 aoeminor; |
| 151 | u16 flags; |
Ed L. Cashin | dced3a0 | 2006-09-20 14:36:49 -0400 | [diff] [blame] | 152 | u16 nopen; /* (bd_openers isn't available without sleeping) */ |
Ed L. Cashin | dced3a0 | 2006-09-20 14:36:49 -0400 | [diff] [blame] | 153 | u16 rttavg; /* round trip average of requests/responses */ |
| 154 | u16 mintimer; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | u16 fw_ver; /* version of blade's firmware */ |
| 156 | struct work_struct work;/* disk create work struct */ |
| 157 | struct gendisk *gd; |
Ed Cashin | 7135a71b | 2009-09-09 14:10:18 +0200 | [diff] [blame] | 158 | struct request_queue *blkq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | struct hd_geometry geo; |
| 160 | sector_t ssize; |
| 161 | struct timer_list timer; |
| 162 | spinlock_t lock; |
David S. Miller | e9bb8fb | 2008-09-21 22:36:49 -0700 | [diff] [blame] | 163 | struct sk_buff_head sendq; |
| 164 | struct sk_buff_head skbpool; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | mempool_t *bufpool; /* for deadlock-free Buf allocation */ |
| 166 | struct list_head bufq; /* queue of bios to work on */ |
| 167 | struct buf *inprocess; /* the one we're currently working on */ |
Ed L. Cashin | 68e0d42 | 2008-02-08 04:20:00 -0800 | [diff] [blame] | 168 | struct aoetgt *targets[NTARGETS]; |
| 169 | struct aoetgt **tgt; /* target in use when working */ |
| 170 | struct aoetgt **htgt; /* target needing rexmit assistance */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | }; |
| 172 | |
| 173 | |
| 174 | int aoeblk_init(void); |
| 175 | void aoeblk_exit(void); |
| 176 | void aoeblk_gdalloc(void *); |
| 177 | void aoedisk_rm_sysfs(struct aoedev *d); |
| 178 | |
| 179 | int aoechr_init(void); |
| 180 | void aoechr_exit(void); |
| 181 | void aoechr_error(char *); |
| 182 | |
| 183 | void aoecmd_work(struct aoedev *d); |
Ed L. Cashin | 3ae1c24 | 2006-01-19 13:46:19 -0500 | [diff] [blame] | 184 | void aoecmd_cfg(ushort aoemajor, unsigned char aoeminor); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 185 | void aoecmd_ata_rsp(struct sk_buff *); |
| 186 | void aoecmd_cfg_rsp(struct sk_buff *); |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 187 | void aoecmd_sleepwork(struct work_struct *); |
Ed L. Cashin | 68e0d42 | 2008-02-08 04:20:00 -0800 | [diff] [blame] | 188 | void aoecmd_cleanslate(struct aoedev *); |
| 189 | struct sk_buff *aoecmd_ata_id(struct aoedev *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | |
| 191 | int aoedev_init(void); |
| 192 | void aoedev_exit(void); |
ecashin@coraid.com | 32465c6 | 2005-04-18 22:00:18 -0700 | [diff] [blame] | 193 | struct aoedev *aoedev_by_aoeaddr(int maj, int min); |
Ed L. Cashin | 68e0d42 | 2008-02-08 04:20:00 -0800 | [diff] [blame] | 194 | struct aoedev *aoedev_by_sysminor_m(ulong sysminor); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | void aoedev_downdev(struct aoedev *d); |
Ed L. Cashin | 262bf54 | 2008-02-08 04:20:03 -0800 | [diff] [blame] | 196 | int aoedev_flush(const char __user *str, size_t size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | |
| 198 | int aoenet_init(void); |
| 199 | void aoenet_exit(void); |
David S. Miller | e9bb8fb | 2008-09-21 22:36:49 -0700 | [diff] [blame] | 200 | void aoenet_xmit(struct sk_buff_head *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | int is_aoe_netif(struct net_device *ifp); |
| 202 | int set_aoe_iflist(const char __user *str, size_t size); |
| 203 | |