aoe.h 4.4 KB
Newer Older
E
Ed L. Cashin 已提交
1
/* Copyright (c) 2006 Coraid, Inc.  See COPYING for GPL terms. */
E
Ed L. Cashin 已提交
2
#define VERSION "32"
L
Linus Torvalds 已提交
3 4
#define AOE_MAJOR 152
#define DEVICE_NAME "aoe"
5 6 7 8

/* set AOE_PARTITIONS to 1 to use whole-disks only
 * default is 16, which is 15 partitions plus the whole disk
 */
L
Linus Torvalds 已提交
9
#ifndef AOE_PARTITIONS
10
#define AOE_PARTITIONS (16)
L
Linus Torvalds 已提交
11
#endif
12

13 14 15
#define SYSMINOR(aoemajor, aoeminor) ((aoemajor) * NPERSHELF + (aoeminor))
#define AOEMAJOR(sysminor) ((sysminor) / NPERSHELF)
#define AOEMINOR(sysminor) ((sysminor) % NPERSHELF)
L
Linus Torvalds 已提交
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
#define WHITESPACE " \t\v\f\n"

enum {
	AOECMD_ATA,
	AOECMD_CFG,

	AOEFL_RSP = (1<<3),
	AOEFL_ERR = (1<<2),

	AOEAFL_EXT = (1<<6),
	AOEAFL_DEV = (1<<4),
	AOEAFL_ASYNC = (1<<1),
	AOEAFL_WRITE = (1<<0),

	AOECCMD_READ = 0,
	AOECCMD_TEST,
	AOECCMD_PTEST,
	AOECCMD_SET,
	AOECCMD_FSET,

	AOE_HVER = 0x10,
};

struct aoe_hdr {
	unsigned char dst[6];
	unsigned char src[6];
42
	__be16 type;
L
Linus Torvalds 已提交
43 44
	unsigned char verfl;
	unsigned char err;
45
	__be16 major;
L
Linus Torvalds 已提交
46 47
	unsigned char minor;
	unsigned char cmd;
48
	__be32 tag;
L
Linus Torvalds 已提交
49 50
};

51 52 53 54 55 56 57 58 59
#ifdef __KERNEL__
#include <linux/skbuff.h>

static inline struct aoe_hdr *aoe_hdr(const struct sk_buff *skb)
{
	return (struct aoe_hdr *)skb->mac.raw;
}
#endif

L
Linus Torvalds 已提交
60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
struct aoe_atahdr {
	unsigned char aflags;
	unsigned char errfeat;
	unsigned char scnt;
	unsigned char cmdstat;
	unsigned char lba0;
	unsigned char lba1;
	unsigned char lba2;
	unsigned char lba3;
	unsigned char lba4;
	unsigned char lba5;
	unsigned char res[2];
};

struct aoe_cfghdr {
75 76
	__be16 bufcnt;
	__be16 fwver;
E
Ed L. Cashin 已提交
77
	unsigned char scnt;
L
Linus Torvalds 已提交
78 79 80 81 82 83 84 85 86
	unsigned char aoeccmd;
	unsigned char cslen[2];
};

enum {
	DEVFL_UP = 1,	/* device is installed in system and ready for AoE->ATA commands */
	DEVFL_TKILL = (1<<1),	/* flag for timer to know when to kill self */
	DEVFL_EXT = (1<<2),	/* device accepts lba48 commands */
	DEVFL_CLOSEWAIT = (1<<3), /* device is waiting for all closes to revalidate */
87 88 89
	DEVFL_GDALLOC = (1<<4),	/* need to alloc gendisk */
	DEVFL_PAUSE = (1<<5),
	DEVFL_NEWSIZE = (1<<6),	/* need to update dev size in block layer */
E
Ed L. Cashin 已提交
90
	DEVFL_MAXBCNT = (1<<7), /* d->maxbcnt is not changeable */
E
Ed L. Cashin 已提交
91
	DEVFL_KICKME = (1<<8),
L
Linus Torvalds 已提交
92 93 94 95 96

	BUFFL_FAIL = 1,
};

enum {
E
Ed L. Cashin 已提交
97
	DEFAULTBCNT = 2 * 512,	/* 2 sectors */
98
	NPERSHELF = 16,		/* number of slots per shelf address */
L
Linus Torvalds 已提交
99 100 101 102 103 104
	FREETAG = -1,
	MIN_BUFS = 8,
};

struct buf {
	struct list_head bufs;
105
	ulong start_time;	/* for disk stats */
L
Linus Torvalds 已提交
106 107 108 109 110 111 112 113 114 115 116 117 118 119 120
	ulong flags;
	ulong nframesout;
	char *bufaddr;
	ulong resid;
	ulong bv_resid;
	sector_t sector;
	struct bio *bio;
	struct bio_vec *bv;
};

struct frame {
	int tag;
	ulong waited;
	struct buf *buf;
	char *bufaddr;
E
Ed L. Cashin 已提交
121 122
	ulong bcnt;
	sector_t lba;
E
Ed L. Cashin 已提交
123
	struct sk_buff *skb;
L
Linus Torvalds 已提交
124 125 126 127 128 129 130 131 132
};

struct aoedev {
	struct aoedev *next;
	unsigned char addr[6];	/* remote mac addr */
	ushort flags;
	ulong sysminor;
	ulong aoemajor;
	ulong aoeminor;
133 134 135 136
	u16 nopen;		/* (bd_openers isn't available without sleeping) */
	u16 lasttag;		/* last tag sent */
	u16 rttavg;		/* round trip average of requests/responses */
	u16 mintimer;
L
Linus Torvalds 已提交
137
	u16 fw_ver;		/* version of blade's firmware */
E
Ed L. Cashin 已提交
138
	u16 maxbcnt;
L
Linus Torvalds 已提交
139 140 141 142 143 144 145 146
	struct work_struct work;/* disk create work struct */
	struct gendisk *gd;
	request_queue_t blkq;
	struct hd_geometry geo; 
	sector_t ssize;
	struct timer_list timer;
	spinlock_t lock;
	struct net_device *ifp;	/* interface ed is attached to */
147 148
	struct sk_buff *sendq_hd; /* packets needing to be sent, list head */
	struct sk_buff *sendq_tl;
L
Linus Torvalds 已提交
149 150 151
	mempool_t *bufpool;	/* for deadlock-free Buf allocation */
	struct list_head bufq;	/* queue of bios to work on */
	struct buf *inprocess;	/* the one we're currently working on */
E
Ed L. Cashin 已提交
152 153
	ushort lostjumbo;
	ushort nframes;		/* number of frames below */
L
Linus Torvalds 已提交
154 155 156 157 158 159 160 161 162 163 164 165 166 167
	struct frame *frames;
};


int aoeblk_init(void);
void aoeblk_exit(void);
void aoeblk_gdalloc(void *);
void aoedisk_rm_sysfs(struct aoedev *d);

int aoechr_init(void);
void aoechr_exit(void);
void aoechr_error(char *);

void aoecmd_work(struct aoedev *d);
168
void aoecmd_cfg(ushort aoemajor, unsigned char aoeminor);
L
Linus Torvalds 已提交
169 170
void aoecmd_ata_rsp(struct sk_buff *);
void aoecmd_cfg_rsp(struct sk_buff *);
D
David Howells 已提交
171
void aoecmd_sleepwork(struct work_struct *);
E
Ed L. Cashin 已提交
172
struct sk_buff *new_skb(ulong);
L
Linus Torvalds 已提交
173 174 175

int aoedev_init(void);
void aoedev_exit(void);
176
struct aoedev *aoedev_by_aoeaddr(int maj, int min);
177
struct aoedev *aoedev_by_sysminor_m(ulong sysminor, ulong bufcnt);
L
Linus Torvalds 已提交
178
void aoedev_downdev(struct aoedev *d);
179
int aoedev_isbusy(struct aoedev *d);
L
Linus Torvalds 已提交
180 181 182 183 184 185 186 187

int aoenet_init(void);
void aoenet_exit(void);
void aoenet_xmit(struct sk_buff *);
int is_aoe_netif(struct net_device *ifp);
int set_aoe_iflist(const char __user *str, size_t size);

u64 mac_addr(char addr[6]);