Ed L. Cashin | 2611464 | 2006-09-20 14:36:48 -0400 | [diff] [blame] | 1 | /* Copyright (c) 2006 Coraid, Inc. See COPYING for GPL terms. */ |
Ed L. Cashin | 0fdf109 | 2006-02-07 11:37:36 -0500 | [diff] [blame] | 2 | #define VERSION "22" |
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 | 6bb6285f | 2006-09-20 14:36:49 -0400 | [diff] [blame] | 13 | #define xprintk(L, fmt, arg...) printk(L "aoe: " "%s: " fmt, __func__, ## arg) |
| 14 | #define iprintk(fmt, arg...) xprintk(KERN_INFO, fmt, ## arg) |
| 15 | #define eprintk(fmt, arg...) xprintk(KERN_ERR, fmt, ## arg) |
| 16 | #define dprintk(fmt, arg...) xprintk(KERN_DEBUG, fmt, ## arg) |
| 17 | |
Ed L Cashin | e39526e | 2005-08-19 16:54:43 -0400 | [diff] [blame] | 18 | #define SYSMINOR(aoemajor, aoeminor) ((aoemajor) * NPERSHELF + (aoeminor)) |
| 19 | #define AOEMAJOR(sysminor) ((sysminor) / NPERSHELF) |
| 20 | #define AOEMINOR(sysminor) ((sysminor) % NPERSHELF) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | #define WHITESPACE " \t\v\f\n" |
| 22 | |
| 23 | enum { |
| 24 | AOECMD_ATA, |
| 25 | AOECMD_CFG, |
| 26 | |
| 27 | AOEFL_RSP = (1<<3), |
| 28 | AOEFL_ERR = (1<<2), |
| 29 | |
| 30 | AOEAFL_EXT = (1<<6), |
| 31 | AOEAFL_DEV = (1<<4), |
| 32 | AOEAFL_ASYNC = (1<<1), |
| 33 | AOEAFL_WRITE = (1<<0), |
| 34 | |
| 35 | AOECCMD_READ = 0, |
| 36 | AOECCMD_TEST, |
| 37 | AOECCMD_PTEST, |
| 38 | AOECCMD_SET, |
| 39 | AOECCMD_FSET, |
| 40 | |
| 41 | AOE_HVER = 0x10, |
| 42 | }; |
| 43 | |
| 44 | struct aoe_hdr { |
| 45 | unsigned char dst[6]; |
| 46 | unsigned char src[6]; |
ecashin@coraid.com | 63e9cc5 | 2005-04-18 22:00:20 -0700 | [diff] [blame] | 47 | __be16 type; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | unsigned char verfl; |
| 49 | unsigned char err; |
ecashin@coraid.com | 63e9cc5 | 2005-04-18 22:00:20 -0700 | [diff] [blame] | 50 | __be16 major; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | unsigned char minor; |
| 52 | unsigned char cmd; |
ecashin@coraid.com | 63e9cc5 | 2005-04-18 22:00:20 -0700 | [diff] [blame] | 53 | __be32 tag; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | }; |
| 55 | |
| 56 | struct aoe_atahdr { |
| 57 | unsigned char aflags; |
| 58 | unsigned char errfeat; |
| 59 | unsigned char scnt; |
| 60 | unsigned char cmdstat; |
| 61 | unsigned char lba0; |
| 62 | unsigned char lba1; |
| 63 | unsigned char lba2; |
| 64 | unsigned char lba3; |
| 65 | unsigned char lba4; |
| 66 | unsigned char lba5; |
| 67 | unsigned char res[2]; |
| 68 | }; |
| 69 | |
| 70 | struct aoe_cfghdr { |
ecashin@coraid.com | 63e9cc5 | 2005-04-18 22:00:20 -0700 | [diff] [blame] | 71 | __be16 bufcnt; |
| 72 | __be16 fwver; |
Ed L. Cashin | 19bf263 | 2006-09-20 14:36:49 -0400 | [diff] [blame] | 73 | unsigned char scnt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | unsigned char aoeccmd; |
| 75 | unsigned char cslen[2]; |
| 76 | }; |
| 77 | |
| 78 | enum { |
| 79 | DEVFL_UP = 1, /* device is installed in system and ready for AoE->ATA commands */ |
| 80 | DEVFL_TKILL = (1<<1), /* flag for timer to know when to kill self */ |
| 81 | DEVFL_EXT = (1<<2), /* device accepts lba48 commands */ |
| 82 | 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] | 83 | DEVFL_GDALLOC = (1<<4), /* need to alloc gendisk */ |
| 84 | DEVFL_PAUSE = (1<<5), |
| 85 | DEVFL_NEWSIZE = (1<<6), /* need to update dev size in block layer */ |
Ed L. Cashin | 19bf263 | 2006-09-20 14:36:49 -0400 | [diff] [blame] | 86 | DEVFL_MAXBCNT = (1<<7), /* d->maxbcnt is not changeable */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | |
| 88 | BUFFL_FAIL = 1, |
| 89 | }; |
| 90 | |
| 91 | enum { |
Ed L. Cashin | 19bf263 | 2006-09-20 14:36:49 -0400 | [diff] [blame] | 92 | DEFAULTBCNT = 2 * 512, /* 2 sectors */ |
Ed L Cashin | e39526e | 2005-08-19 16:54:43 -0400 | [diff] [blame] | 93 | NPERSHELF = 16, /* number of slots per shelf address */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | FREETAG = -1, |
| 95 | MIN_BUFS = 8, |
| 96 | }; |
| 97 | |
| 98 | struct buf { |
| 99 | struct list_head bufs; |
ecashin@coraid.com | 0c6f0e7 | 2005-04-18 22:00:22 -0700 | [diff] [blame] | 100 | ulong start_time; /* for disk stats */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | ulong flags; |
| 102 | ulong nframesout; |
| 103 | char *bufaddr; |
| 104 | ulong resid; |
| 105 | ulong bv_resid; |
| 106 | sector_t sector; |
| 107 | struct bio *bio; |
| 108 | struct bio_vec *bv; |
| 109 | }; |
| 110 | |
| 111 | struct frame { |
| 112 | int tag; |
| 113 | ulong waited; |
| 114 | struct buf *buf; |
| 115 | char *bufaddr; |
Ed L. Cashin | 19bf263 | 2006-09-20 14:36:49 -0400 | [diff] [blame] | 116 | ulong bcnt; |
| 117 | sector_t lba; |
Ed L. Cashin | e407a7f | 2006-09-20 14:36:49 -0400 | [diff] [blame] | 118 | struct sk_buff *skb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | }; |
| 120 | |
| 121 | struct aoedev { |
| 122 | struct aoedev *next; |
| 123 | unsigned char addr[6]; /* remote mac addr */ |
| 124 | ushort flags; |
| 125 | ulong sysminor; |
| 126 | ulong aoemajor; |
| 127 | ulong aoeminor; |
Ed L. Cashin | dced3a0 | 2006-09-20 14:36:49 -0400 | [diff] [blame^] | 128 | u16 nopen; /* (bd_openers isn't available without sleeping) */ |
| 129 | u16 lasttag; /* last tag sent */ |
| 130 | u16 rttavg; /* round trip average of requests/responses */ |
| 131 | u16 mintimer; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | u16 fw_ver; /* version of blade's firmware */ |
Ed L. Cashin | 19bf263 | 2006-09-20 14:36:49 -0400 | [diff] [blame] | 133 | u16 maxbcnt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | struct work_struct work;/* disk create work struct */ |
| 135 | struct gendisk *gd; |
| 136 | request_queue_t blkq; |
| 137 | struct hd_geometry geo; |
| 138 | sector_t ssize; |
| 139 | struct timer_list timer; |
| 140 | spinlock_t lock; |
| 141 | struct net_device *ifp; /* interface ed is attached to */ |
ecashin@coraid.com | a4b3836 | 2005-04-18 22:00:22 -0700 | [diff] [blame] | 142 | struct sk_buff *sendq_hd; /* packets needing to be sent, list head */ |
| 143 | struct sk_buff *sendq_tl; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | mempool_t *bufpool; /* for deadlock-free Buf allocation */ |
| 145 | struct list_head bufq; /* queue of bios to work on */ |
| 146 | struct buf *inprocess; /* the one we're currently working on */ |
Ed L. Cashin | 19bf263 | 2006-09-20 14:36:49 -0400 | [diff] [blame] | 147 | ushort lostjumbo; |
| 148 | ushort nframes; /* number of frames below */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | struct frame *frames; |
| 150 | }; |
| 151 | |
| 152 | |
| 153 | int aoeblk_init(void); |
| 154 | void aoeblk_exit(void); |
| 155 | void aoeblk_gdalloc(void *); |
| 156 | void aoedisk_rm_sysfs(struct aoedev *d); |
| 157 | |
| 158 | int aoechr_init(void); |
| 159 | void aoechr_exit(void); |
| 160 | void aoechr_error(char *); |
| 161 | |
| 162 | void aoecmd_work(struct aoedev *d); |
Ed L. Cashin | 3ae1c24 | 2006-01-19 13:46:19 -0500 | [diff] [blame] | 163 | void aoecmd_cfg(ushort aoemajor, unsigned char aoeminor); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | void aoecmd_ata_rsp(struct sk_buff *); |
| 165 | void aoecmd_cfg_rsp(struct sk_buff *); |
Ed L. Cashin | 3ae1c24 | 2006-01-19 13:46:19 -0500 | [diff] [blame] | 166 | void aoecmd_sleepwork(void *vp); |
Ed L. Cashin | e407a7f | 2006-09-20 14:36:49 -0400 | [diff] [blame] | 167 | struct sk_buff *new_skb(ulong); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | |
| 169 | int aoedev_init(void); |
| 170 | void aoedev_exit(void); |
ecashin@coraid.com | 32465c6 | 2005-04-18 22:00:18 -0700 | [diff] [blame] | 171 | struct aoedev *aoedev_by_aoeaddr(int maj, int min); |
Ed L. Cashin | 3ae1c24 | 2006-01-19 13:46:19 -0500 | [diff] [blame] | 172 | struct aoedev *aoedev_by_sysminor_m(ulong sysminor, ulong bufcnt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | void aoedev_downdev(struct aoedev *d); |
Ed L. Cashin | 3ae1c24 | 2006-01-19 13:46:19 -0500 | [diff] [blame] | 174 | int aoedev_isbusy(struct aoedev *d); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 | |
| 176 | int aoenet_init(void); |
| 177 | void aoenet_exit(void); |
| 178 | void aoenet_xmit(struct sk_buff *); |
| 179 | int is_aoe_netif(struct net_device *ifp); |
| 180 | int set_aoe_iflist(const char __user *str, size_t size); |
| 181 | |
| 182 | u64 mac_addr(char addr[6]); |