blob: 7b1121748633d8bda42070c8f4df4c57d855b50f [file] [log] [blame]
Ed L. Cashin26114642006-09-20 14:36:48 -04001/* Copyright (c) 2006 Coraid, Inc. See COPYING for GPL terms. */
Ed L. Cashin0fdf1092006-02-07 11:37:36 -05002#define VERSION "22"
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
Ed L. Cashin6bb6285f2006-09-20 14:36:49 -040013#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 Cashine39526e2005-08-19 16:54:43 -040018#define SYSMINOR(aoemajor, aoeminor) ((aoemajor) * NPERSHELF + (aoeminor))
19#define AOEMAJOR(sysminor) ((sysminor) / NPERSHELF)
20#define AOEMINOR(sysminor) ((sysminor) % NPERSHELF)
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#define WHITESPACE " \t\v\f\n"
22
23enum {
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
44struct aoe_hdr {
45 unsigned char dst[6];
46 unsigned char src[6];
ecashin@coraid.com63e9cc52005-04-18 22:00:20 -070047 __be16 type;
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 unsigned char verfl;
49 unsigned char err;
ecashin@coraid.com63e9cc52005-04-18 22:00:20 -070050 __be16 major;
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 unsigned char minor;
52 unsigned char cmd;
ecashin@coraid.com63e9cc52005-04-18 22:00:20 -070053 __be32 tag;
Linus Torvalds1da177e2005-04-16 15:20:36 -070054};
55
56struct 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
70struct aoe_cfghdr {
ecashin@coraid.com63e9cc52005-04-18 22:00:20 -070071 __be16 bufcnt;
72 __be16 fwver;
Ed L. Cashin19bf2632006-09-20 14:36:49 -040073 unsigned char scnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 unsigned char aoeccmd;
75 unsigned char cslen[2];
76};
77
78enum {
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. Cashin3ae1c242006-01-19 13:46:19 -050083 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. Cashin19bf2632006-09-20 14:36:49 -040086 DEVFL_MAXBCNT = (1<<7), /* d->maxbcnt is not changeable */
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
88 BUFFL_FAIL = 1,
89};
90
91enum {
Ed L. Cashin19bf2632006-09-20 14:36:49 -040092 DEFAULTBCNT = 2 * 512, /* 2 sectors */
Ed L Cashine39526e2005-08-19 16:54:43 -040093 NPERSHELF = 16, /* number of slots per shelf address */
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 FREETAG = -1,
95 MIN_BUFS = 8,
96};
97
98struct buf {
99 struct list_head bufs;
ecashin@coraid.com0c6f0e72005-04-18 22:00:22 -0700100 ulong start_time; /* for disk stats */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 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
111struct frame {
112 int tag;
113 ulong waited;
114 struct buf *buf;
115 char *bufaddr;
Ed L. Cashin19bf2632006-09-20 14:36:49 -0400116 ulong bcnt;
117 sector_t lba;
Ed L. Cashine407a7f2006-09-20 14:36:49 -0400118 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119};
120
121struct 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. Cashindced3a02006-09-20 14:36:49 -0400128 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 Torvalds1da177e2005-04-16 15:20:36 -0700132 u16 fw_ver; /* version of blade's firmware */
Ed L. Cashin19bf2632006-09-20 14:36:49 -0400133 u16 maxbcnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 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.coma4b38362005-04-18 22:00:22 -0700142 struct sk_buff *sendq_hd; /* packets needing to be sent, list head */
143 struct sk_buff *sendq_tl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 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. Cashin19bf2632006-09-20 14:36:49 -0400147 ushort lostjumbo;
148 ushort nframes; /* number of frames below */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 struct frame *frames;
150};
151
152
153int aoeblk_init(void);
154void aoeblk_exit(void);
155void aoeblk_gdalloc(void *);
156void aoedisk_rm_sysfs(struct aoedev *d);
157
158int aoechr_init(void);
159void aoechr_exit(void);
160void aoechr_error(char *);
161
162void aoecmd_work(struct aoedev *d);
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500163void aoecmd_cfg(ushort aoemajor, unsigned char aoeminor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164void aoecmd_ata_rsp(struct sk_buff *);
165void aoecmd_cfg_rsp(struct sk_buff *);
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500166void aoecmd_sleepwork(void *vp);
Ed L. Cashine407a7f2006-09-20 14:36:49 -0400167struct sk_buff *new_skb(ulong);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
169int aoedev_init(void);
170void aoedev_exit(void);
ecashin@coraid.com32465c62005-04-18 22:00:18 -0700171struct aoedev *aoedev_by_aoeaddr(int maj, int min);
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500172struct aoedev *aoedev_by_sysminor_m(ulong sysminor, ulong bufcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173void aoedev_downdev(struct aoedev *d);
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500174int aoedev_isbusy(struct aoedev *d);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
176int aoenet_init(void);
177void aoenet_exit(void);
178void aoenet_xmit(struct sk_buff *);
179int is_aoe_netif(struct net_device *ifp);
180int set_aoe_iflist(const char __user *str, size_t size);
181
182u64 mac_addr(char addr[6]);