blob: 01fbdd38e3be21979027538b64b5cd56dc516f0c [file] [log] [blame]
Ed L. Cashin26114642006-09-20 14:36:48 -04001/* Copyright (c) 2006 Coraid, Inc. See COPYING for GPL terms. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * aoecmd.c
4 * Filesystem request handling methods
5 */
6
7#include <linux/hdreg.h>
8#include <linux/blkdev.h>
9#include <linux/skbuff.h>
10#include <linux/netdevice.h>
Ed L. Cashin3ae1c242006-01-19 13:46:19 -050011#include <linux/genhd.h>
Ed L. Cashin475172f2005-09-29 12:47:40 -040012#include <asm/unaligned.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include "aoe.h"
14
15#define TIMERTICK (HZ / 10)
16#define MINTIMER (2 * TIMERTICK)
17#define MAXTIMER (HZ << 1)
Ed L. Cashinb751e8b2006-09-20 14:36:50 -040018
19static int aoe_deadsecs = 60 * 3;
20module_param(aoe_deadsecs, int, 0644);
21MODULE_PARM_DESC(aoe_deadsecs, "After aoe_deadsecs seconds, give up and fail dev.");
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
Ed L. Cashine407a7f2006-09-20 14:36:49 -040023struct sk_buff *
24new_skb(ulong len)
Linus Torvalds1da177e2005-04-16 15:20:36 -070025{
26 struct sk_buff *skb;
27
28 skb = alloc_skb(len, GFP_ATOMIC);
29 if (skb) {
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -070030 skb_reset_mac_header(skb);
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -070031 skb_reset_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 skb->protocol = __constant_htons(ETH_P_AOE);
33 skb->priority = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 skb->next = skb->prev = NULL;
35
36 /* tell the network layer not to perform IP checksums
37 * or to get the NIC to do it
38 */
39 skb->ip_summed = CHECKSUM_NONE;
40 }
41 return skb;
42}
43
Linus Torvalds1da177e2005-04-16 15:20:36 -070044static struct frame *
45getframe(struct aoedev *d, int tag)
46{
47 struct frame *f, *e;
48
49 f = d->frames;
50 e = f + d->nframes;
51 for (; f<e; f++)
52 if (f->tag == tag)
53 return f;
54 return NULL;
55}
56
57/*
58 * Leave the top bit clear so we have tagspace for userland.
59 * The bottom 16 bits are the xmit tick for rexmit/rttavg processing.
60 * This driver reserves tag -1 to mean "unused frame."
61 */
62static int
63newtag(struct aoedev *d)
64{
65 register ulong n;
66
67 n = jiffies & 0xffff;
68 return n |= (++d->lasttag & 0x7fff) << 16;
69}
70
71static int
72aoehdr_atainit(struct aoedev *d, struct aoe_hdr *h)
73{
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 u32 host_tag = newtag(d);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
76 memcpy(h->src, d->ifp->dev_addr, sizeof h->src);
77 memcpy(h->dst, d->addr, sizeof h->dst);
ecashin@coraid.com63e9cc52005-04-18 22:00:20 -070078 h->type = __constant_cpu_to_be16(ETH_P_AOE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 h->verfl = AOE_HVER;
ecashin@coraid.com63e9cc52005-04-18 22:00:20 -070080 h->major = cpu_to_be16(d->aoemajor);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 h->minor = d->aoeminor;
82 h->cmd = AOECMD_ATA;
ecashin@coraid.com63e9cc52005-04-18 22:00:20 -070083 h->tag = cpu_to_be32(host_tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
85 return host_tag;
86}
87
Ed L. Cashin19bf2632006-09-20 14:36:49 -040088static inline void
89put_lba(struct aoe_atahdr *ah, sector_t lba)
90{
91 ah->lba0 = lba;
92 ah->lba1 = lba >>= 8;
93 ah->lba2 = lba >>= 8;
94 ah->lba3 = lba >>= 8;
95 ah->lba4 = lba >>= 8;
96 ah->lba5 = lba >>= 8;
97}
98
Linus Torvalds1da177e2005-04-16 15:20:36 -070099static void
100aoecmd_ata_rw(struct aoedev *d, struct frame *f)
101{
102 struct aoe_hdr *h;
103 struct aoe_atahdr *ah;
104 struct buf *buf;
105 struct sk_buff *skb;
106 ulong bcnt;
107 register sector_t sector;
108 char writebit, extbit;
109
110 writebit = 0x10;
111 extbit = 0x4;
112
113 buf = d->inprocess;
114
115 sector = buf->sector;
116 bcnt = buf->bv_resid;
Ed L. Cashin19bf2632006-09-20 14:36:49 -0400117 if (bcnt > d->maxbcnt)
118 bcnt = d->maxbcnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
120 /* initialize the headers & frame */
Ed L. Cashine407a7f2006-09-20 14:36:49 -0400121 skb = f->skb;
Arnaldo Carvalho de Melo029720f2007-03-10 11:20:07 -0300122 h = aoe_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 ah = (struct aoe_atahdr *) (h+1);
Ed L. Cashin19900cd2006-12-22 01:09:21 -0800124 skb_put(skb, sizeof *h + sizeof *ah);
125 memset(h, 0, skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 f->tag = aoehdr_atainit(d, h);
127 f->waited = 0;
128 f->buf = buf;
129 f->bufaddr = buf->bufaddr;
Ed L. Cashin19bf2632006-09-20 14:36:49 -0400130 f->bcnt = bcnt;
131 f->lba = sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
133 /* set up ata header */
134 ah->scnt = bcnt >> 9;
Ed L. Cashin19bf2632006-09-20 14:36:49 -0400135 put_lba(ah, sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 if (d->flags & DEVFL_EXT) {
137 ah->aflags |= AOEAFL_EXT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 } else {
139 extbit = 0;
140 ah->lba3 &= 0x0f;
141 ah->lba3 |= 0xe0; /* LBA bit + obsolete 0xa0 */
142 }
143
144 if (bio_data_dir(buf->bio) == WRITE) {
Ed L. Cashine407a7f2006-09-20 14:36:49 -0400145 skb_fill_page_desc(skb, 0, virt_to_page(f->bufaddr),
146 offset_in_page(f->bufaddr), bcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 ah->aflags |= AOEAFL_WRITE;
Ed L. Cashin4f51dc52006-09-20 14:36:49 -0400148 skb->len += bcnt;
149 skb->data_len = bcnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 } else {
151 writebit = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 }
153
154 ah->cmdstat = WIN_READ | writebit | extbit;
155
156 /* mark all tracking fields and load out */
157 buf->nframesout += 1;
158 buf->bufaddr += bcnt;
159 buf->bv_resid -= bcnt;
Ed L. Cashina12c93f2006-09-20 14:36:51 -0400160/* printk(KERN_DEBUG "aoe: bv_resid=%ld\n", buf->bv_resid); */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 buf->resid -= bcnt;
162 buf->sector += bcnt >> 9;
163 if (buf->resid == 0) {
164 d->inprocess = NULL;
165 } else if (buf->bv_resid == 0) {
166 buf->bv++;
Ed L. Cashin392e4842006-09-20 14:36:50 -0400167 WARN_ON(buf->bv->bv_len == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 buf->bv_resid = buf->bv->bv_len;
169 buf->bufaddr = page_address(buf->bv->bv_page) + buf->bv->bv_offset;
170 }
171
Ed L. Cashine407a7f2006-09-20 14:36:49 -0400172 skb->dev = d->ifp;
Ed L. Cashin4f51dc52006-09-20 14:36:49 -0400173 skb = skb_clone(skb, GFP_ATOMIC);
174 if (skb == NULL)
175 return;
Ed L. Cashine407a7f2006-09-20 14:36:49 -0400176 if (d->sendq_hd)
177 d->sendq_tl->next = skb;
178 else
179 d->sendq_hd = skb;
180 d->sendq_tl = skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181}
182
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500183/* some callers cannot sleep, and they can call this function,
184 * transmitting the packets later, when interrupts are on
185 */
186static struct sk_buff *
187aoecmd_cfg_pkts(ushort aoemajor, unsigned char aoeminor, struct sk_buff **tail)
188{
189 struct aoe_hdr *h;
190 struct aoe_cfghdr *ch;
191 struct sk_buff *skb, *sl, *sl_tail;
192 struct net_device *ifp;
193
194 sl = sl_tail = NULL;
195
196 read_lock(&dev_base_lock);
Pavel Emelianov7562f872007-05-03 15:13:45 -0700197 for_each_netdev(ifp) {
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500198 dev_hold(ifp);
199 if (!is_aoe_netif(ifp))
Pavel Emelianov7562f872007-05-03 15:13:45 -0700200 goto cont;
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500201
Ed L. Cashine407a7f2006-09-20 14:36:49 -0400202 skb = new_skb(sizeof *h + sizeof *ch);
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500203 if (skb == NULL) {
Ed L. Cashina12c93f2006-09-20 14:36:51 -0400204 printk(KERN_INFO "aoe: skb alloc failure\n");
Pavel Emelianov7562f872007-05-03 15:13:45 -0700205 goto cont;
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500206 }
Ed L. Cashin19900cd2006-12-22 01:09:21 -0800207 skb_put(skb, sizeof *h + sizeof *ch);
Ed L. Cashine407a7f2006-09-20 14:36:49 -0400208 skb->dev = ifp;
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500209 if (sl_tail == NULL)
210 sl_tail = skb;
Arnaldo Carvalho de Melo029720f2007-03-10 11:20:07 -0300211 h = aoe_hdr(skb);
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500212 memset(h, 0, sizeof *h + sizeof *ch);
213
214 memset(h->dst, 0xff, sizeof h->dst);
215 memcpy(h->src, ifp->dev_addr, sizeof h->src);
216 h->type = __constant_cpu_to_be16(ETH_P_AOE);
217 h->verfl = AOE_HVER;
218 h->major = cpu_to_be16(aoemajor);
219 h->minor = aoeminor;
220 h->cmd = AOECMD_CFG;
221
222 skb->next = sl;
223 sl = skb;
Pavel Emelianov7562f872007-05-03 15:13:45 -0700224cont:
225 dev_put(ifp);
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500226 }
227 read_unlock(&dev_base_lock);
228
229 if (tail != NULL)
230 *tail = sl_tail;
231 return sl;
232}
233
Ed L. Cashin4f51dc52006-09-20 14:36:49 -0400234static struct frame *
235freeframe(struct aoedev *d)
236{
237 struct frame *f, *e;
238 int n = 0;
239
240 f = d->frames;
241 e = f + d->nframes;
242 for (; f<e; f++) {
243 if (f->tag != FREETAG)
244 continue;
245 if (atomic_read(&skb_shinfo(f->skb)->dataref) == 1) {
246 skb_shinfo(f->skb)->nr_frags = f->skb->data_len = 0;
Ed L. Cashin19900cd2006-12-22 01:09:21 -0800247 skb_trim(f->skb, 0);
Ed L. Cashin4f51dc52006-09-20 14:36:49 -0400248 return f;
249 }
250 n++;
251 }
252 if (n == d->nframes) /* wait for network layer */
253 d->flags |= DEVFL_KICKME;
254
255 return NULL;
256}
257
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258/* enters with d->lock held */
259void
260aoecmd_work(struct aoedev *d)
261{
262 struct frame *f;
263 struct buf *buf;
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500264
265 if (d->flags & DEVFL_PAUSE) {
266 if (!aoedev_isbusy(d))
267 d->sendq_hd = aoecmd_cfg_pkts(d->aoemajor,
268 d->aoeminor, &d->sendq_tl);
269 return;
270 }
271
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272loop:
Ed L. Cashin4f51dc52006-09-20 14:36:49 -0400273 f = freeframe(d);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 if (f == NULL)
275 return;
276 if (d->inprocess == NULL) {
277 if (list_empty(&d->bufq))
278 return;
279 buf = container_of(d->bufq.next, struct buf, bufs);
280 list_del(d->bufq.next);
Ed L. Cashina12c93f2006-09-20 14:36:51 -0400281/*printk(KERN_DEBUG "aoe: bi_size=%ld\n", buf->bio->bi_size); */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 d->inprocess = buf;
283 }
284 aoecmd_ata_rw(d, f);
285 goto loop;
286}
287
288static void
289rexmit(struct aoedev *d, struct frame *f)
290{
291 struct sk_buff *skb;
292 struct aoe_hdr *h;
Ed L. Cashin19bf2632006-09-20 14:36:49 -0400293 struct aoe_atahdr *ah;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 char buf[128];
295 u32 n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
297 n = newtag(d);
298
299 snprintf(buf, sizeof buf,
300 "%15s e%ld.%ld oldtag=%08x@%08lx newtag=%08x\n",
301 "retransmit",
302 d->aoemajor, d->aoeminor, f->tag, jiffies, n);
303 aoechr_error(buf);
304
Ed L. Cashine407a7f2006-09-20 14:36:49 -0400305 skb = f->skb;
Arnaldo Carvalho de Melo029720f2007-03-10 11:20:07 -0300306 h = aoe_hdr(skb);
Ed L. Cashin19bf2632006-09-20 14:36:49 -0400307 ah = (struct aoe_atahdr *) (h+1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 f->tag = n;
ecashin@coraid.com63e9cc52005-04-18 22:00:20 -0700309 h->tag = cpu_to_be32(n);
Ed L. Cashin2dd5e422006-01-19 13:46:25 -0500310 memcpy(h->dst, d->addr, sizeof h->dst);
311 memcpy(h->src, d->ifp->dev_addr, sizeof h->src);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
Ed L. Cashin19bf2632006-09-20 14:36:49 -0400313 n = DEFAULTBCNT / 512;
314 if (ah->scnt > n) {
315 ah->scnt = n;
Ed L. Cashin4f51dc52006-09-20 14:36:49 -0400316 if (ah->aflags & AOEAFL_WRITE) {
Ed L. Cashin19bf2632006-09-20 14:36:49 -0400317 skb_fill_page_desc(skb, 0, virt_to_page(f->bufaddr),
318 offset_in_page(f->bufaddr), DEFAULTBCNT);
Ed L. Cashin4f51dc52006-09-20 14:36:49 -0400319 skb->len = sizeof *h + sizeof *ah + DEFAULTBCNT;
320 skb->data_len = DEFAULTBCNT;
321 }
Ed L. Cashin19bf2632006-09-20 14:36:49 -0400322 if (++d->lostjumbo > (d->nframes << 1))
323 if (d->maxbcnt != DEFAULTBCNT) {
Ed L. Cashina12c93f2006-09-20 14:36:51 -0400324 printk(KERN_INFO "aoe: e%ld.%ld: too many lost jumbo on %s - using 1KB frames.\n",
Ed L. Cashin4f51dc52006-09-20 14:36:49 -0400325 d->aoemajor, d->aoeminor, d->ifp->name);
Ed L. Cashin19bf2632006-09-20 14:36:49 -0400326 d->maxbcnt = DEFAULTBCNT;
327 d->flags |= DEVFL_MAXBCNT;
328 }
329 }
330
Ed L. Cashine407a7f2006-09-20 14:36:49 -0400331 skb->dev = d->ifp;
Ed L. Cashin4f51dc52006-09-20 14:36:49 -0400332 skb = skb_clone(skb, GFP_ATOMIC);
333 if (skb == NULL)
334 return;
Ed L. Cashine407a7f2006-09-20 14:36:49 -0400335 if (d->sendq_hd)
336 d->sendq_tl->next = skb;
337 else
338 d->sendq_hd = skb;
339 d->sendq_tl = skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340}
341
342static int
343tsince(int tag)
344{
345 int n;
346
347 n = jiffies & 0xffff;
348 n -= tag & 0xffff;
349 if (n < 0)
350 n += 1<<16;
351 return n;
352}
353
354static void
355rexmit_timer(ulong vp)
356{
357 struct aoedev *d;
358 struct frame *f, *e;
359 struct sk_buff *sl;
360 register long timeout;
361 ulong flags, n;
362
363 d = (struct aoedev *) vp;
364 sl = NULL;
365
366 /* timeout is always ~150% of the moving average */
367 timeout = d->rttavg;
368 timeout += timeout >> 1;
369
370 spin_lock_irqsave(&d->lock, flags);
371
372 if (d->flags & DEVFL_TKILL) {
Ed L. Cashin1c6f3fc2006-01-25 13:54:44 -0500373 spin_unlock_irqrestore(&d->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 return;
375 }
376 f = d->frames;
377 e = f + d->nframes;
378 for (; f<e; f++) {
379 if (f->tag != FREETAG && tsince(f->tag) >= timeout) {
380 n = f->waited += timeout;
381 n /= HZ;
Ed L. Cashinb751e8b2006-09-20 14:36:50 -0400382 if (n > aoe_deadsecs) { /* waited too long for response */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 aoedev_downdev(d);
Ed L. Cashin1c6f3fc2006-01-25 13:54:44 -0500384 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 }
386 rexmit(d, f);
387 }
388 }
Ed L. Cashin4f51dc52006-09-20 14:36:49 -0400389 if (d->flags & DEVFL_KICKME) {
390 d->flags &= ~DEVFL_KICKME;
391 aoecmd_work(d);
392 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393
ecashin@coraid.coma4b38362005-04-18 22:00:22 -0700394 sl = d->sendq_hd;
395 d->sendq_hd = d->sendq_tl = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 if (sl) {
397 n = d->rttavg <<= 1;
398 if (n > MAXTIMER)
399 d->rttavg = MAXTIMER;
400 }
401
402 d->timer.expires = jiffies + TIMERTICK;
403 add_timer(&d->timer);
404
405 spin_unlock_irqrestore(&d->lock, flags);
406
407 aoenet_xmit(sl);
408}
409
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500410/* this function performs work that has been deferred until sleeping is OK
411 */
412void
David Howellsc4028952006-11-22 14:57:56 +0000413aoecmd_sleepwork(struct work_struct *work)
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500414{
David Howellsc4028952006-11-22 14:57:56 +0000415 struct aoedev *d = container_of(work, struct aoedev, work);
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500416
417 if (d->flags & DEVFL_GDALLOC)
418 aoeblk_gdalloc(d);
419
420 if (d->flags & DEVFL_NEWSIZE) {
421 struct block_device *bd;
422 unsigned long flags;
423 u64 ssize;
424
425 ssize = d->gd->capacity;
426 bd = bdget_disk(d->gd, 0);
427
428 if (bd) {
429 mutex_lock(&bd->bd_inode->i_mutex);
430 i_size_write(bd->bd_inode, (loff_t)ssize<<9);
431 mutex_unlock(&bd->bd_inode->i_mutex);
432 bdput(bd);
433 }
434 spin_lock_irqsave(&d->lock, flags);
435 d->flags |= DEVFL_UP;
436 d->flags &= ~DEVFL_NEWSIZE;
437 spin_unlock_irqrestore(&d->lock, flags);
438 }
439}
440
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441static void
442ataid_complete(struct aoedev *d, unsigned char *id)
443{
444 u64 ssize;
445 u16 n;
446
447 /* word 83: command set supported */
Ed L. Cashin475172f2005-09-29 12:47:40 -0400448 n = le16_to_cpu(get_unaligned((__le16 *) &id[83<<1]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
450 /* word 86: command set/feature enabled */
Ed L. Cashin475172f2005-09-29 12:47:40 -0400451 n |= le16_to_cpu(get_unaligned((__le16 *) &id[86<<1]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
453 if (n & (1<<10)) { /* bit 10: LBA 48 */
454 d->flags |= DEVFL_EXT;
455
456 /* word 100: number lba48 sectors */
Ed L. Cashin475172f2005-09-29 12:47:40 -0400457 ssize = le64_to_cpu(get_unaligned((__le64 *) &id[100<<1]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
459 /* set as in ide-disk.c:init_idedisk_capacity */
460 d->geo.cylinders = ssize;
461 d->geo.cylinders /= (255 * 63);
462 d->geo.heads = 255;
463 d->geo.sectors = 63;
464 } else {
465 d->flags &= ~DEVFL_EXT;
466
467 /* number lba28 sectors */
Ed L. Cashin475172f2005-09-29 12:47:40 -0400468 ssize = le32_to_cpu(get_unaligned((__le32 *) &id[60<<1]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469
470 /* NOTE: obsolete in ATA 6 */
Ed L. Cashin475172f2005-09-29 12:47:40 -0400471 d->geo.cylinders = le16_to_cpu(get_unaligned((__le16 *) &id[54<<1]));
472 d->geo.heads = le16_to_cpu(get_unaligned((__le16 *) &id[55<<1]));
473 d->geo.sectors = le16_to_cpu(get_unaligned((__le16 *) &id[56<<1]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 }
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500475
476 if (d->ssize != ssize)
Ed L. Cashina12c93f2006-09-20 14:36:51 -0400477 printk(KERN_INFO "aoe: %012llx e%lu.%lu v%04x has %llu sectors\n",
Ed L. Cashin6bb62852006-09-20 14:36:49 -0400478 (unsigned long long)mac_addr(d->addr),
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500479 d->aoemajor, d->aoeminor,
480 d->fw_ver, (long long)ssize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 d->ssize = ssize;
482 d->geo.start = 0;
483 if (d->gd != NULL) {
484 d->gd->capacity = ssize;
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500485 d->flags |= DEVFL_NEWSIZE;
486 } else {
487 if (d->flags & DEVFL_GDALLOC) {
Ed L. Cashina12c93f2006-09-20 14:36:51 -0400488 printk(KERN_ERR "aoe: can't schedule work for e%lu.%lu, %s\n",
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500489 d->aoemajor, d->aoeminor,
Ed L. Cashin6bb62852006-09-20 14:36:49 -0400490 "it's already on! This shouldn't happen.\n");
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500491 return;
492 }
493 d->flags |= DEVFL_GDALLOC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 schedule_work(&d->work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496}
497
498static void
499calc_rttavg(struct aoedev *d, int rtt)
500{
501 register long n;
502
503 n = rtt;
Ed L. Cashindced3a02006-09-20 14:36:49 -0400504 if (n < 0) {
505 n = -rtt;
506 if (n < MINTIMER)
507 n = MINTIMER;
508 else if (n > MAXTIMER)
509 n = MAXTIMER;
510 d->mintimer += (n - d->mintimer) >> 1;
511 } else if (n < d->mintimer)
512 n = d->mintimer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 else if (n > MAXTIMER)
514 n = MAXTIMER;
515
516 /* g == .25; cf. Congestion Avoidance and Control, Jacobson & Karels; 1988 */
517 n -= d->rttavg;
518 d->rttavg += n >> 2;
519}
520
521void
522aoecmd_ata_rsp(struct sk_buff *skb)
523{
524 struct aoedev *d;
Ed L. Cashinddec63e2006-09-20 14:36:49 -0400525 struct aoe_hdr *hin, *hout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 struct aoe_atahdr *ahin, *ahout;
527 struct frame *f;
528 struct buf *buf;
529 struct sk_buff *sl;
530 register long n;
531 ulong flags;
532 char ebuf[128];
ecashin@coraid.com32465c62005-04-18 22:00:18 -0700533 u16 aoemajor;
534
Arnaldo Carvalho de Melo029720f2007-03-10 11:20:07 -0300535 hin = aoe_hdr(skb);
David S. Miller43ecf522007-03-01 18:30:08 -0800536 aoemajor = be16_to_cpu(get_unaligned(&hin->major));
ecashin@coraid.com32465c62005-04-18 22:00:18 -0700537 d = aoedev_by_aoeaddr(aoemajor, hin->minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 if (d == NULL) {
539 snprintf(ebuf, sizeof ebuf, "aoecmd_ata_rsp: ata response "
540 "for unknown device %d.%d\n",
ecashin@coraid.com32465c62005-04-18 22:00:18 -0700541 aoemajor, hin->minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 aoechr_error(ebuf);
543 return;
544 }
545
546 spin_lock_irqsave(&d->lock, flags);
547
David S. Miller43ecf522007-03-01 18:30:08 -0800548 n = be32_to_cpu(get_unaligned(&hin->tag));
Ed L. Cashindced3a02006-09-20 14:36:49 -0400549 f = getframe(d, n);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 if (f == NULL) {
Ed L. Cashindced3a02006-09-20 14:36:49 -0400551 calc_rttavg(d, -tsince(n));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 spin_unlock_irqrestore(&d->lock, flags);
553 snprintf(ebuf, sizeof ebuf,
554 "%15s e%d.%d tag=%08x@%08lx\n",
555 "unexpected rsp",
David S. Miller43ecf522007-03-01 18:30:08 -0800556 be16_to_cpu(get_unaligned(&hin->major)),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 hin->minor,
David S. Miller43ecf522007-03-01 18:30:08 -0800558 be32_to_cpu(get_unaligned(&hin->tag)),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 jiffies);
560 aoechr_error(ebuf);
561 return;
562 }
563
564 calc_rttavg(d, tsince(f->tag));
565
566 ahin = (struct aoe_atahdr *) (hin+1);
Arnaldo Carvalho de Melo029720f2007-03-10 11:20:07 -0300567 hout = aoe_hdr(f->skb);
Ed L. Cashinddec63e2006-09-20 14:36:49 -0400568 ahout = (struct aoe_atahdr *) (hout+1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 buf = f->buf;
570
Ed L. Cashin9d419652006-02-07 11:37:24 -0500571 if (ahout->cmdstat == WIN_IDENTIFY)
572 d->flags &= ~DEVFL_PAUSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 if (ahin->cmdstat & 0xa9) { /* these bits cleared on success */
Ed L. Cashina12c93f2006-09-20 14:36:51 -0400574 printk(KERN_ERR
575 "aoe: ata error cmd=%2.2Xh stat=%2.2Xh from e%ld.%ld\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 ahout->cmdstat, ahin->cmdstat,
577 d->aoemajor, d->aoeminor);
578 if (buf)
579 buf->flags |= BUFFL_FAIL;
580 } else {
Ed L. Cashin19bf2632006-09-20 14:36:49 -0400581 n = ahout->scnt << 9;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 switch (ahout->cmdstat) {
583 case WIN_READ:
584 case WIN_READ_EXT:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 if (skb->len - sizeof *hin - sizeof *ahin < n) {
Ed L. Cashina12c93f2006-09-20 14:36:51 -0400586 printk(KERN_ERR
587 "aoe: runt data size in read. skb->len=%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 skb->len);
589 /* fail frame f? just returning will rexmit. */
590 spin_unlock_irqrestore(&d->lock, flags);
591 return;
592 }
593 memcpy(f->bufaddr, ahin+1, n);
594 case WIN_WRITE:
595 case WIN_WRITE_EXT:
Ed L. Cashin19bf2632006-09-20 14:36:49 -0400596 if (f->bcnt -= n) {
Ed L. Cashin4f51dc52006-09-20 14:36:49 -0400597 skb = f->skb;
Ed L. Cashin19bf2632006-09-20 14:36:49 -0400598 f->bufaddr += n;
599 put_lba(ahout, f->lba += ahout->scnt);
Ed L. Cashin6bb62852006-09-20 14:36:49 -0400600 n = f->bcnt;
601 if (n > DEFAULTBCNT)
602 n = DEFAULTBCNT;
Ed L. Cashin19bf2632006-09-20 14:36:49 -0400603 ahout->scnt = n >> 9;
Ed L. Cashin4f51dc52006-09-20 14:36:49 -0400604 if (ahout->aflags & AOEAFL_WRITE) {
605 skb_fill_page_desc(skb, 0,
Ed L. Cashin6bb62852006-09-20 14:36:49 -0400606 virt_to_page(f->bufaddr),
Ed L. Cashin19bf2632006-09-20 14:36:49 -0400607 offset_in_page(f->bufaddr), n);
Ed L. Cashin4f51dc52006-09-20 14:36:49 -0400608 skb->len = sizeof *hout + sizeof *ahout + n;
609 skb->data_len = n;
610 }
Ed L. Cashinddec63e2006-09-20 14:36:49 -0400611 f->tag = newtag(d);
612 hout->tag = cpu_to_be32(f->tag);
613 skb->dev = d->ifp;
Ed L. Cashin4f51dc52006-09-20 14:36:49 -0400614 skb = skb_clone(skb, GFP_ATOMIC);
Ed L. Cashin19bf2632006-09-20 14:36:49 -0400615 spin_unlock_irqrestore(&d->lock, flags);
Ed L. Cashin4f51dc52006-09-20 14:36:49 -0400616 if (skb)
617 aoenet_xmit(skb);
Ed L. Cashin19bf2632006-09-20 14:36:49 -0400618 return;
619 }
620 if (n > DEFAULTBCNT)
621 d->lostjumbo = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 break;
623 case WIN_IDENTIFY:
624 if (skb->len - sizeof *hin - sizeof *ahin < 512) {
Ed L. Cashina12c93f2006-09-20 14:36:51 -0400625 printk(KERN_INFO
626 "aoe: runt data size in ataid. skb->len=%d\n",
Ed L. Cashin6bb62852006-09-20 14:36:49 -0400627 skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 spin_unlock_irqrestore(&d->lock, flags);
629 return;
630 }
631 ataid_complete(d, (char *) (ahin+1));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 break;
633 default:
Ed L. Cashina12c93f2006-09-20 14:36:51 -0400634 printk(KERN_INFO
635 "aoe: unrecognized ata command %2.2Xh for %d.%d\n",
Ed L. Cashin6bb62852006-09-20 14:36:49 -0400636 ahout->cmdstat,
David S. Miller43ecf522007-03-01 18:30:08 -0800637 be16_to_cpu(get_unaligned(&hin->major)),
Ed L. Cashin6bb62852006-09-20 14:36:49 -0400638 hin->minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 }
640 }
641
642 if (buf) {
643 buf->nframesout -= 1;
644 if (buf->nframesout == 0 && buf->resid == 0) {
ecashin@coraid.com0c6f0e72005-04-18 22:00:22 -0700645 unsigned long duration = jiffies - buf->start_time;
646 unsigned long n_sect = buf->bio->bi_size >> 9;
647 struct gendisk *disk = d->gd;
Jens Axboe496456c2005-11-01 09:54:23 +0100648 const int rw = bio_data_dir(buf->bio);
ecashin@coraid.com0c6f0e72005-04-18 22:00:22 -0700649
Jens Axboe496456c2005-11-01 09:54:23 +0100650 disk_stat_inc(disk, ios[rw]);
651 disk_stat_add(disk, ticks[rw], duration);
652 disk_stat_add(disk, sectors[rw], n_sect);
ecashin@coraid.com0c6f0e72005-04-18 22:00:22 -0700653 disk_stat_add(disk, io_ticks, duration);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 n = (buf->flags & BUFFL_FAIL) ? -EIO : 0;
655 bio_endio(buf->bio, buf->bio->bi_size, n);
656 mempool_free(buf, d->bufpool);
657 }
658 }
659
660 f->buf = NULL;
661 f->tag = FREETAG;
662
663 aoecmd_work(d);
ecashin@coraid.coma4b38362005-04-18 22:00:22 -0700664 sl = d->sendq_hd;
665 d->sendq_hd = d->sendq_tl = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666
667 spin_unlock_irqrestore(&d->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 aoenet_xmit(sl);
669}
670
671void
672aoecmd_cfg(ushort aoemajor, unsigned char aoeminor)
673{
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500674 struct sk_buff *sl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500676 sl = aoecmd_cfg_pkts(aoemajor, aoeminor, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677
678 aoenet_xmit(sl);
679}
680
681/*
682 * Since we only call this in one place (and it only prepares one frame)
ecashin@coraid.coma4b38362005-04-18 22:00:22 -0700683 * we just return the skb. Usually we'd chain it up to the aoedev sendq.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 */
685static struct sk_buff *
686aoecmd_ata_id(struct aoedev *d)
687{
688 struct aoe_hdr *h;
689 struct aoe_atahdr *ah;
690 struct frame *f;
691 struct sk_buff *skb;
692
Ed L. Cashin4f51dc52006-09-20 14:36:49 -0400693 f = freeframe(d);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 if (f == NULL) {
Ed L. Cashina12c93f2006-09-20 14:36:51 -0400695 printk(KERN_ERR "aoe: can't get a frame. This shouldn't happen.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 return NULL;
697 }
698
699 /* initialize the headers & frame */
Ed L. Cashine407a7f2006-09-20 14:36:49 -0400700 skb = f->skb;
Arnaldo Carvalho de Melo029720f2007-03-10 11:20:07 -0300701 h = aoe_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 ah = (struct aoe_atahdr *) (h+1);
Ed L. Cashin19900cd2006-12-22 01:09:21 -0800703 skb_put(skb, sizeof *h + sizeof *ah);
704 memset(h, 0, skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 f->tag = aoehdr_atainit(d, h);
706 f->waited = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 /* set up ata header */
709 ah->scnt = 1;
710 ah->cmdstat = WIN_IDENTIFY;
711 ah->lba3 = 0xa0;
712
Ed L. Cashine407a7f2006-09-20 14:36:49 -0400713 skb->dev = d->ifp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500715 d->rttavg = MAXTIMER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 d->timer.function = rexmit_timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
Ed L. Cashin4f51dc52006-09-20 14:36:49 -0400718 return skb_clone(skb, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719}
720
721void
722aoecmd_cfg_rsp(struct sk_buff *skb)
723{
724 struct aoedev *d;
725 struct aoe_hdr *h;
726 struct aoe_cfghdr *ch;
ecashin@coraid.com63e9cc52005-04-18 22:00:20 -0700727 ulong flags, sysminor, aoemajor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 struct sk_buff *sl;
Ed L. Cashineaf0a3c2006-01-19 13:46:20 -0500729 enum { MAXFRAMES = 16 };
Ed L. Cashin19bf2632006-09-20 14:36:49 -0400730 u16 n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731
Arnaldo Carvalho de Melo029720f2007-03-10 11:20:07 -0300732 h = aoe_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 ch = (struct aoe_cfghdr *) (h+1);
734
735 /*
736 * Enough people have their dip switches set backwards to
737 * warrant a loud message for this special case.
738 */
David S. Miller43ecf522007-03-01 18:30:08 -0800739 aoemajor = be16_to_cpu(get_unaligned(&h->major));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 if (aoemajor == 0xfff) {
Ed L. Cashina12c93f2006-09-20 14:36:51 -0400741 printk(KERN_ERR "aoe: Warning: shelf address is all ones. "
Ed L. Cashin6bb62852006-09-20 14:36:49 -0400742 "Check shelf dip switches.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 return;
744 }
745
746 sysminor = SYSMINOR(aoemajor, h->minor);
ecashin@coraid.comfc458dc2005-04-18 22:00:17 -0700747 if (sysminor * AOE_PARTITIONS + AOE_PARTITIONS > MINORMASK) {
Ed L. Cashina12c93f2006-09-20 14:36:51 -0400748 printk(KERN_INFO "aoe: e%ld.%d: minor number too large\n",
ecashin@coraid.comfc458dc2005-04-18 22:00:17 -0700749 aoemajor, (int) h->minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 return;
751 }
752
Ed L. Cashin19bf2632006-09-20 14:36:49 -0400753 n = be16_to_cpu(ch->bufcnt);
754 if (n > MAXFRAMES) /* keep it reasonable */
755 n = MAXFRAMES;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756
Ed L. Cashin19bf2632006-09-20 14:36:49 -0400757 d = aoedev_by_sysminor_m(sysminor, n);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 if (d == NULL) {
Ed L. Cashina12c93f2006-09-20 14:36:51 -0400759 printk(KERN_INFO "aoe: device sysminor_m failure\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 return;
761 }
762
763 spin_lock_irqsave(&d->lock, flags);
764
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500765 /* permit device to migrate mac and network interface */
766 d->ifp = skb->dev;
767 memcpy(d->addr, h->src, sizeof d->addr);
Ed L. Cashin19bf2632006-09-20 14:36:49 -0400768 if (!(d->flags & DEVFL_MAXBCNT)) {
769 n = d->ifp->mtu;
770 n -= sizeof (struct aoe_hdr) + sizeof (struct aoe_atahdr);
771 n /= 512;
772 if (n > ch->scnt)
773 n = ch->scnt;
Ed L. Cashin4f51dc52006-09-20 14:36:49 -0400774 n = n ? n * 512 : DEFAULTBCNT;
775 if (n != d->maxbcnt) {
Ed L. Cashina12c93f2006-09-20 14:36:51 -0400776 printk(KERN_INFO
777 "aoe: e%ld.%ld: setting %d byte data frames on %s\n",
Ed L. Cashin4f51dc52006-09-20 14:36:49 -0400778 d->aoemajor, d->aoeminor, n, d->ifp->name);
779 d->maxbcnt = n;
780 }
Ed L. Cashin19bf2632006-09-20 14:36:49 -0400781 }
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500782
783 /* don't change users' perspective */
784 if (d->nopen && !(d->flags & DEVFL_PAUSE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 spin_unlock_irqrestore(&d->lock, flags);
786 return;
787 }
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500788 d->flags |= DEVFL_PAUSE; /* force pause */
Ed L. Cashindced3a02006-09-20 14:36:49 -0400789 d->mintimer = MINTIMER;
ecashin@coraid.com63e9cc52005-04-18 22:00:20 -0700790 d->fw_ver = be16_to_cpu(ch->fwver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500792 /* check for already outstanding ataid */
793 sl = aoedev_isbusy(d) == 0 ? aoecmd_ata_id(d) : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794
795 spin_unlock_irqrestore(&d->lock, flags);
796
797 aoenet_xmit(sl);
798}
799