aoe: clean up printks via macros
[pandora-kernel.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 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
18 #define SYSMINOR(aoemajor, aoeminor) ((aoemajor) * NPERSHELF + (aoeminor))
19 #define AOEMAJOR(sysminor) ((sysminor) / NPERSHELF)
20 #define AOEMINOR(sysminor) ((sysminor) % NPERSHELF)
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];
47         __be16 type;
48         unsigned char verfl;
49         unsigned char err;
50         __be16 major;
51         unsigned char minor;
52         unsigned char cmd;
53         __be32 tag;
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 {
71         __be16 bufcnt;
72         __be16 fwver;
73         unsigned char scnt;
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 */
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 */
86         DEVFL_MAXBCNT = (1<<7), /* d->maxbcnt is not changeable */
87
88         BUFFL_FAIL = 1,
89 };
90
91 enum {
92         DEFAULTBCNT = 2 * 512,  /* 2 sectors */
93         NPERSHELF = 16,         /* number of slots per shelf address */
94         FREETAG = -1,
95         MIN_BUFS = 8,
96 };
97
98 struct buf {
99         struct list_head bufs;
100         ulong start_time;       /* for disk stats */
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;
116         ulong bcnt;
117         sector_t lba;
118         struct sk_buff *skb;
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;
128         ulong nopen;            /* (bd_openers isn't available without sleeping) */
129         ulong rttavg;           /* round trip average of requests/responses */
130         u16 fw_ver;             /* version of blade's firmware */
131         u16 maxbcnt;
132         struct work_struct work;/* disk create work struct */
133         struct gendisk *gd;
134         request_queue_t blkq;
135         struct hd_geometry geo; 
136         sector_t ssize;
137         struct timer_list timer;
138         spinlock_t lock;
139         struct net_device *ifp; /* interface ed is attached to */
140         struct sk_buff *sendq_hd; /* packets needing to be sent, list head */
141         struct sk_buff *sendq_tl;
142         mempool_t *bufpool;     /* for deadlock-free Buf allocation */
143         struct list_head bufq;  /* queue of bios to work on */
144         struct buf *inprocess;  /* the one we're currently working on */
145         ulong lasttag;          /* last tag sent */
146         ushort lostjumbo;
147         ushort nframes;         /* number of frames below */
148         struct frame *frames;
149 };
150
151
152 int aoeblk_init(void);
153 void aoeblk_exit(void);
154 void aoeblk_gdalloc(void *);
155 void aoedisk_rm_sysfs(struct aoedev *d);
156
157 int aoechr_init(void);
158 void aoechr_exit(void);
159 void aoechr_error(char *);
160
161 void aoecmd_work(struct aoedev *d);
162 void aoecmd_cfg(ushort aoemajor, unsigned char aoeminor);
163 void aoecmd_ata_rsp(struct sk_buff *);
164 void aoecmd_cfg_rsp(struct sk_buff *);
165 void aoecmd_sleepwork(void *vp);
166 struct sk_buff *new_skb(ulong);
167
168 int aoedev_init(void);
169 void aoedev_exit(void);
170 struct aoedev *aoedev_by_aoeaddr(int maj, int min);
171 struct aoedev *aoedev_by_sysminor_m(ulong sysminor, ulong bufcnt);
172 void aoedev_downdev(struct aoedev *d);
173 int aoedev_isbusy(struct aoedev *d);
174
175 int aoenet_init(void);
176 void aoenet_exit(void);
177 void aoenet_xmit(struct sk_buff *);
178 int is_aoe_netif(struct net_device *ifp);
179 int set_aoe_iflist(const char __user *str, size_t size);
180
181 u64 mac_addr(char addr[6]);