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