aoe: jumbo frame support 1 of 2
[linux-drm-fsl-dcu.git] / drivers / block / aoe / aoe.h
1 /* Copyright (c) 2006 Coraid, Inc.  See COPYING for GPL terms. */
2 #define VERSION "22"
3 #define AOE_MAJOR 152
4 #define DEVICE_NAME "aoe"
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  */
9 #ifndef AOE_PARTITIONS
10 #define AOE_PARTITIONS (16)
11 #endif
12
13 #define SYSMINOR(aoemajor, aoeminor) ((aoemajor) * NPERSHELF + (aoeminor))
14 #define AOEMAJOR(sysminor) ((sysminor) / NPERSHELF)
15 #define AOEMINOR(sysminor) ((sysminor) % NPERSHELF)
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];
42         __be16 type;
43         unsigned char verfl;
44         unsigned char err;
45         __be16 major;
46         unsigned char minor;
47         unsigned char cmd;
48         __be32 tag;
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 {
66         __be16 bufcnt;
67         __be16 fwver;
68         unsigned char scnt;
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 */
78         DEVFL_GDALLOC = (1<<4), /* need to alloc gendisk */
79         DEVFL_PAUSE = (1<<5),
80         DEVFL_NEWSIZE = (1<<6), /* need to update dev size in block layer */
81         DEVFL_MAXBCNT = (1<<7), /* d->maxbcnt is not changeable */
82
83         BUFFL_FAIL = 1,
84 };
85
86 enum {
87         DEFAULTBCNT = 2 * 512,  /* 2 sectors */
88         NPERSHELF = 16,         /* number of slots per shelf address */
89         FREETAG = -1,
90         MIN_BUFS = 8,
91 };
92
93 struct buf {
94         struct list_head bufs;
95         ulong start_time;       /* for disk stats */
96         ulong flags;
97         ulong nframesout;
98         char *bufaddr;
99         ulong resid;
100         ulong bv_resid;
101         sector_t sector;
102         struct bio *bio;
103         struct bio_vec *bv;
104 };
105
106 struct frame {
107         int tag;
108         ulong waited;
109         struct buf *buf;
110         char *bufaddr;
111         ulong bcnt;
112         sector_t lba;
113         struct sk_buff *skb;
114 };
115
116 struct aoedev {
117         struct aoedev *next;
118         unsigned char addr[6];  /* remote mac addr */
119         ushort flags;
120         ulong sysminor;
121         ulong aoemajor;
122         ulong aoeminor;
123         ulong nopen;            /* (bd_openers isn't available without sleeping) */
124         ulong rttavg;           /* round trip average of requests/responses */
125         u16 fw_ver;             /* version of blade's firmware */
126         u16 maxbcnt;
127         struct work_struct work;/* disk create work struct */
128         struct gendisk *gd;
129         request_queue_t blkq;
130         struct hd_geometry geo; 
131         sector_t ssize;
132         struct timer_list timer;
133         spinlock_t lock;
134         struct net_device *ifp; /* interface ed is attached to */
135         struct sk_buff *sendq_hd; /* packets needing to be sent, list head */
136         struct sk_buff *sendq_tl;
137         mempool_t *bufpool;     /* for deadlock-free Buf allocation */
138         struct list_head bufq;  /* queue of bios to work on */
139         struct buf *inprocess;  /* the one we're currently working on */
140         ulong lasttag;          /* last tag sent */
141         ushort lostjumbo;
142         ushort nframes;         /* number of frames below */
143         struct frame *frames;
144 };
145
146
147 int aoeblk_init(void);
148 void aoeblk_exit(void);
149 void aoeblk_gdalloc(void *);
150 void aoedisk_rm_sysfs(struct aoedev *d);
151
152 int aoechr_init(void);
153 void aoechr_exit(void);
154 void aoechr_error(char *);
155
156 void aoecmd_work(struct aoedev *d);
157 void aoecmd_cfg(ushort aoemajor, unsigned char aoeminor);
158 void aoecmd_ata_rsp(struct sk_buff *);
159 void aoecmd_cfg_rsp(struct sk_buff *);
160 void aoecmd_sleepwork(void *vp);
161 struct sk_buff *new_skb(ulong);
162
163 int aoedev_init(void);
164 void aoedev_exit(void);
165 struct aoedev *aoedev_by_aoeaddr(int maj, int min);
166 struct aoedev *aoedev_by_sysminor_m(ulong sysminor, ulong bufcnt);
167 void aoedev_downdev(struct aoedev *d);
168 int aoedev_isbusy(struct aoedev *d);
169
170 int aoenet_init(void);
171 void aoenet_exit(void);
172 void aoenet_xmit(struct sk_buff *);
173 int is_aoe_netif(struct net_device *ifp);
174 int set_aoe_iflist(const char __user *str, size_t size);
175
176 u64 mac_addr(char addr[6]);