]> bbs.cooldavid.org Git - net-next-2.6.git/blob - drivers/net/enic/vnic_dev.c
bebadb325b9c6852027ab7e691c92e93a376ac8b
[net-next-2.6.git] / drivers / net / enic / vnic_dev.c
1 /*
2  * Copyright 2008 Cisco Systems, Inc.  All rights reserved.
3  * Copyright 2007 Nuova Systems, Inc.  All rights reserved.
4  *
5  * This program is free software; you may redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; version 2 of the License.
8  *
9  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
10  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
11  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
12  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
13  * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
14  * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
15  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
16  * SOFTWARE.
17  *
18  */
19
20 #include <linux/kernel.h>
21 #include <linux/errno.h>
22 #include <linux/types.h>
23 #include <linux/pci.h>
24 #include <linux/delay.h>
25 #include <linux/if_ether.h>
26 #include <linux/slab.h>
27
28 #include "vnic_resource.h"
29 #include "vnic_devcmd.h"
30 #include "vnic_dev.h"
31 #include "vnic_stats.h"
32
33 struct vnic_res {
34         void __iomem *vaddr;
35         dma_addr_t bus_addr;
36         unsigned int count;
37 };
38
39 #define VNIC_DEV_CAP_INIT       0x0001
40
41 struct vnic_dev {
42         void *priv;
43         struct pci_dev *pdev;
44         struct vnic_res res[RES_TYPE_MAX];
45         enum vnic_dev_intr_mode intr_mode;
46         struct vnic_devcmd __iomem *devcmd;
47         struct vnic_devcmd_notify *notify;
48         struct vnic_devcmd_notify notify_copy;
49         dma_addr_t notify_pa;
50         u32 notify_sz;
51         u32 *linkstatus;
52         dma_addr_t linkstatus_pa;
53         struct vnic_stats *stats;
54         dma_addr_t stats_pa;
55         struct vnic_devcmd_fw_info *fw_info;
56         dma_addr_t fw_info_pa;
57         u32 cap_flags;
58 };
59
60 #define VNIC_MAX_RES_HDR_SIZE \
61         (sizeof(struct vnic_resource_header) + \
62         sizeof(struct vnic_resource) * RES_TYPE_MAX)
63 #define VNIC_RES_STRIDE 128
64
65 void *vnic_dev_priv(struct vnic_dev *vdev)
66 {
67         return vdev->priv;
68 }
69
70 static int vnic_dev_discover_res(struct vnic_dev *vdev,
71         struct vnic_dev_bar *bar, unsigned int num_bars)
72 {
73         struct vnic_resource_header __iomem *rh;
74         struct vnic_resource __iomem *r;
75         u8 type;
76
77         if (num_bars == 0)
78                 return -EINVAL;
79
80         if (bar->len < VNIC_MAX_RES_HDR_SIZE) {
81                 printk(KERN_ERR "vNIC BAR0 res hdr length error\n");
82                 return -EINVAL;
83         }
84
85         rh = bar->vaddr;
86         if (!rh) {
87                 printk(KERN_ERR "vNIC BAR0 res hdr not mem-mapped\n");
88                 return -EINVAL;
89         }
90
91         if (ioread32(&rh->magic) != VNIC_RES_MAGIC ||
92             ioread32(&rh->version) != VNIC_RES_VERSION) {
93                 printk(KERN_ERR "vNIC BAR0 res magic/version error "
94                         "exp (%lx/%lx) curr (%x/%x)\n",
95                         VNIC_RES_MAGIC, VNIC_RES_VERSION,
96                         ioread32(&rh->magic), ioread32(&rh->version));
97                 return -EINVAL;
98         }
99
100         r = (struct vnic_resource __iomem *)(rh + 1);
101
102         while ((type = ioread8(&r->type)) != RES_TYPE_EOL) {
103
104                 u8 bar_num = ioread8(&r->bar);
105                 u32 bar_offset = ioread32(&r->bar_offset);
106                 u32 count = ioread32(&r->count);
107                 u32 len;
108
109                 r++;
110
111                 if (bar_num >= num_bars)
112                         continue;
113
114                 if (!bar[bar_num].len || !bar[bar_num].vaddr)
115                         continue;
116
117                 switch (type) {
118                 case RES_TYPE_WQ:
119                 case RES_TYPE_RQ:
120                 case RES_TYPE_CQ:
121                 case RES_TYPE_INTR_CTRL:
122                         /* each count is stride bytes long */
123                         len = count * VNIC_RES_STRIDE;
124                         if (len + bar_offset > bar[bar_num].len) {
125                                 printk(KERN_ERR "vNIC BAR0 resource %d "
126                                         "out-of-bounds, offset 0x%x + "
127                                         "size 0x%x > bar len 0x%lx\n",
128                                         type, bar_offset,
129                                         len,
130                                         bar[bar_num].len);
131                                 return -EINVAL;
132                         }
133                         break;
134                 case RES_TYPE_INTR_PBA_LEGACY:
135                 case RES_TYPE_DEVCMD:
136                         len = count;
137                         break;
138                 default:
139                         continue;
140                 }
141
142                 vdev->res[type].count = count;
143                 vdev->res[type].vaddr = (char __iomem *)bar[bar_num].vaddr +
144                         bar_offset;
145                 vdev->res[type].bus_addr = bar[bar_num].bus_addr + bar_offset;
146         }
147
148         return 0;
149 }
150
151 unsigned int vnic_dev_get_res_count(struct vnic_dev *vdev,
152         enum vnic_res_type type)
153 {
154         return vdev->res[type].count;
155 }
156
157 void __iomem *vnic_dev_get_res(struct vnic_dev *vdev, enum vnic_res_type type,
158         unsigned int index)
159 {
160         if (!vdev->res[type].vaddr)
161                 return NULL;
162
163         switch (type) {
164         case RES_TYPE_WQ:
165         case RES_TYPE_RQ:
166         case RES_TYPE_CQ:
167         case RES_TYPE_INTR_CTRL:
168                 return (char __iomem *)vdev->res[type].vaddr +
169                         index * VNIC_RES_STRIDE;
170         default:
171                 return (char __iomem *)vdev->res[type].vaddr;
172         }
173 }
174
175 dma_addr_t vnic_dev_get_res_bus_addr(struct vnic_dev *vdev,
176         enum vnic_res_type type, unsigned int index)
177 {
178         switch (type) {
179         case RES_TYPE_WQ:
180         case RES_TYPE_RQ:
181         case RES_TYPE_CQ:
182         case RES_TYPE_INTR_CTRL:
183                 return vdev->res[type].bus_addr +
184                         index * VNIC_RES_STRIDE;
185         default:
186                 return vdev->res[type].bus_addr;
187         }
188 }
189
190 unsigned int vnic_dev_desc_ring_size(struct vnic_dev_ring *ring,
191         unsigned int desc_count, unsigned int desc_size)
192 {
193         /* The base address of the desc rings must be 512 byte aligned.
194          * Descriptor count is aligned to groups of 32 descriptors.  A
195          * count of 0 means the maximum 4096 descriptors.  Descriptor
196          * size is aligned to 16 bytes.
197          */
198
199         unsigned int count_align = 32;
200         unsigned int desc_align = 16;
201
202         ring->base_align = 512;
203
204         if (desc_count == 0)
205                 desc_count = 4096;
206
207         ring->desc_count = ALIGN(desc_count, count_align);
208
209         ring->desc_size = ALIGN(desc_size, desc_align);
210
211         ring->size = ring->desc_count * ring->desc_size;
212         ring->size_unaligned = ring->size + ring->base_align;
213
214         return ring->size_unaligned;
215 }
216
217 void vnic_dev_clear_desc_ring(struct vnic_dev_ring *ring)
218 {
219         memset(ring->descs, 0, ring->size);
220 }
221
222 int vnic_dev_alloc_desc_ring(struct vnic_dev *vdev, struct vnic_dev_ring *ring,
223         unsigned int desc_count, unsigned int desc_size)
224 {
225         vnic_dev_desc_ring_size(ring, desc_count, desc_size);
226
227         ring->descs_unaligned = pci_alloc_consistent(vdev->pdev,
228                 ring->size_unaligned,
229                 &ring->base_addr_unaligned);
230
231         if (!ring->descs_unaligned) {
232                 printk(KERN_ERR
233                   "Failed to allocate ring (size=%d), aborting\n",
234                         (int)ring->size);
235                 return -ENOMEM;
236         }
237
238         ring->base_addr = ALIGN(ring->base_addr_unaligned,
239                 ring->base_align);
240         ring->descs = (u8 *)ring->descs_unaligned +
241                 (ring->base_addr - ring->base_addr_unaligned);
242
243         vnic_dev_clear_desc_ring(ring);
244
245         ring->desc_avail = ring->desc_count - 1;
246
247         return 0;
248 }
249
250 void vnic_dev_free_desc_ring(struct vnic_dev *vdev, struct vnic_dev_ring *ring)
251 {
252         if (ring->descs) {
253                 pci_free_consistent(vdev->pdev,
254                         ring->size_unaligned,
255                         ring->descs_unaligned,
256                         ring->base_addr_unaligned);
257                 ring->descs = NULL;
258         }
259 }
260
261 int vnic_dev_cmd(struct vnic_dev *vdev, enum vnic_devcmd_cmd cmd,
262         u64 *a0, u64 *a1, int wait)
263 {
264         struct vnic_devcmd __iomem *devcmd = vdev->devcmd;
265         int delay;
266         u32 status;
267         int err;
268
269         status = ioread32(&devcmd->status);
270         if (status & STAT_BUSY) {
271                 printk(KERN_ERR "Busy devcmd %d\n", _CMD_N(cmd));
272                 return -EBUSY;
273         }
274
275         if (_CMD_DIR(cmd) & _CMD_DIR_WRITE) {
276                 writeq(*a0, &devcmd->args[0]);
277                 writeq(*a1, &devcmd->args[1]);
278                 wmb();
279         }
280
281         iowrite32(cmd, &devcmd->cmd);
282
283         if ((_CMD_FLAGS(cmd) & _CMD_FLAGS_NOWAIT))
284                 return 0;
285
286         for (delay = 0; delay < wait; delay++) {
287
288                 udelay(100);
289
290                 status = ioread32(&devcmd->status);
291                 if (!(status & STAT_BUSY)) {
292
293                         if (status & STAT_ERROR) {
294                                 err = (int)readq(&devcmd->args[0]);
295                                 if (err != ERR_ECMDUNKNOWN ||
296                                     cmd != CMD_CAPABILITY)
297                                         printk(KERN_ERR "Error %d devcmd %d\n",
298                                                 err, _CMD_N(cmd));
299                                 return err;
300                         }
301
302                         if (_CMD_DIR(cmd) & _CMD_DIR_READ) {
303                                 rmb();
304                                 *a0 = readq(&devcmd->args[0]);
305                                 *a1 = readq(&devcmd->args[1]);
306                         }
307
308                         return 0;
309                 }
310         }
311
312         printk(KERN_ERR "Timedout devcmd %d\n", _CMD_N(cmd));
313         return -ETIMEDOUT;
314 }
315
316 static int vnic_dev_capable(struct vnic_dev *vdev, enum vnic_devcmd_cmd cmd)
317 {
318         u64 a0 = (u32)cmd, a1 = 0;
319         int wait = 1000;
320         int err;
321
322         err = vnic_dev_cmd(vdev, CMD_CAPABILITY, &a0, &a1, wait);
323
324         return !(err || a0);
325 }
326
327 int vnic_dev_fw_info(struct vnic_dev *vdev,
328         struct vnic_devcmd_fw_info **fw_info)
329 {
330         u64 a0, a1 = 0;
331         int wait = 1000;
332         int err = 0;
333
334         if (!vdev->fw_info) {
335                 vdev->fw_info = pci_alloc_consistent(vdev->pdev,
336                         sizeof(struct vnic_devcmd_fw_info),
337                         &vdev->fw_info_pa);
338                 if (!vdev->fw_info)
339                         return -ENOMEM;
340
341                 a0 = vdev->fw_info_pa;
342
343                 /* only get fw_info once and cache it */
344                 err = vnic_dev_cmd(vdev, CMD_MCPU_FW_INFO, &a0, &a1, wait);
345         }
346
347         *fw_info = vdev->fw_info;
348
349         return err;
350 }
351
352 int vnic_dev_hw_version(struct vnic_dev *vdev, enum vnic_dev_hw_version *hw_ver)
353 {
354         struct vnic_devcmd_fw_info *fw_info;
355         int err;
356
357         err = vnic_dev_fw_info(vdev, &fw_info);
358         if (err)
359                 return err;
360
361         if (strncmp(fw_info->hw_version, "A1", sizeof("A1")) == 0)
362                 *hw_ver = VNIC_DEV_HW_VER_A1;
363         else if (strncmp(fw_info->hw_version, "A2", sizeof("A2")) == 0)
364                 *hw_ver = VNIC_DEV_HW_VER_A2;
365         else
366                 *hw_ver = VNIC_DEV_HW_VER_UNKNOWN;
367
368         return 0;
369 }
370
371 int vnic_dev_spec(struct vnic_dev *vdev, unsigned int offset, unsigned int size,
372         void *value)
373 {
374         u64 a0, a1;
375         int wait = 1000;
376         int err;
377
378         a0 = offset;
379         a1 = size;
380
381         err = vnic_dev_cmd(vdev, CMD_DEV_SPEC, &a0, &a1, wait);
382
383         switch (size) {
384         case 1: *(u8 *)value = (u8)a0; break;
385         case 2: *(u16 *)value = (u16)a0; break;
386         case 4: *(u32 *)value = (u32)a0; break;
387         case 8: *(u64 *)value = a0; break;
388         default: BUG(); break;
389         }
390
391         return err;
392 }
393
394 int vnic_dev_stats_clear(struct vnic_dev *vdev)
395 {
396         u64 a0 = 0, a1 = 0;
397         int wait = 1000;
398         return vnic_dev_cmd(vdev, CMD_STATS_CLEAR, &a0, &a1, wait);
399 }
400
401 int vnic_dev_stats_dump(struct vnic_dev *vdev, struct vnic_stats **stats)
402 {
403         u64 a0, a1;
404         int wait = 1000;
405
406         if (!vdev->stats) {
407                 vdev->stats = pci_alloc_consistent(vdev->pdev,
408                         sizeof(struct vnic_stats), &vdev->stats_pa);
409                 if (!vdev->stats)
410                         return -ENOMEM;
411         }
412
413         *stats = vdev->stats;
414         a0 = vdev->stats_pa;
415         a1 = sizeof(struct vnic_stats);
416
417         return vnic_dev_cmd(vdev, CMD_STATS_DUMP, &a0, &a1, wait);
418 }
419
420 int vnic_dev_close(struct vnic_dev *vdev)
421 {
422         u64 a0 = 0, a1 = 0;
423         int wait = 1000;
424         return vnic_dev_cmd(vdev, CMD_CLOSE, &a0, &a1, wait);
425 }
426
427 int vnic_dev_enable(struct vnic_dev *vdev)
428 {
429         u64 a0 = 0, a1 = 0;
430         int wait = 1000;
431         return vnic_dev_cmd(vdev, CMD_ENABLE, &a0, &a1, wait);
432 }
433
434 int vnic_dev_disable(struct vnic_dev *vdev)
435 {
436         u64 a0 = 0, a1 = 0;
437         int wait = 1000;
438         return vnic_dev_cmd(vdev, CMD_DISABLE, &a0, &a1, wait);
439 }
440
441 int vnic_dev_open(struct vnic_dev *vdev, int arg)
442 {
443         u64 a0 = (u32)arg, a1 = 0;
444         int wait = 1000;
445         return vnic_dev_cmd(vdev, CMD_OPEN, &a0, &a1, wait);
446 }
447
448 int vnic_dev_open_done(struct vnic_dev *vdev, int *done)
449 {
450         u64 a0 = 0, a1 = 0;
451         int wait = 1000;
452         int err;
453
454         *done = 0;
455
456         err = vnic_dev_cmd(vdev, CMD_OPEN_STATUS, &a0, &a1, wait);
457         if (err)
458                 return err;
459
460         *done = (a0 == 0);
461
462         return 0;
463 }
464
465 int vnic_dev_soft_reset(struct vnic_dev *vdev, int arg)
466 {
467         u64 a0 = (u32)arg, a1 = 0;
468         int wait = 1000;
469         return vnic_dev_cmd(vdev, CMD_SOFT_RESET, &a0, &a1, wait);
470 }
471
472 int vnic_dev_soft_reset_done(struct vnic_dev *vdev, int *done)
473 {
474         u64 a0 = 0, a1 = 0;
475         int wait = 1000;
476         int err;
477
478         *done = 0;
479
480         err = vnic_dev_cmd(vdev, CMD_SOFT_RESET_STATUS, &a0, &a1, wait);
481         if (err)
482                 return err;
483
484         *done = (a0 == 0);
485
486         return 0;
487 }
488
489 int vnic_dev_hang_reset(struct vnic_dev *vdev, int arg)
490 {
491         u64 a0 = (u32)arg, a1 = 0;
492         int wait = 1000;
493         int err;
494
495         err = vnic_dev_cmd(vdev, CMD_HANG_RESET, &a0, &a1, wait);
496         if (err == ERR_ECMDUNKNOWN) {
497                 err = vnic_dev_soft_reset(vdev, arg);
498                 if (err)
499                         return err;
500
501                 return vnic_dev_init(vdev, 0);
502         }
503
504         return err;
505 }
506
507 int vnic_dev_hang_reset_done(struct vnic_dev *vdev, int *done)
508 {
509         u64 a0 = 0, a1 = 0;
510         int wait = 1000;
511         int err;
512
513         *done = 0;
514
515         err = vnic_dev_cmd(vdev, CMD_HANG_RESET_STATUS, &a0, &a1, wait);
516         if (err) {
517                 if (err == ERR_ECMDUNKNOWN)
518                         return vnic_dev_soft_reset_done(vdev, done);
519                 return err;
520         }
521
522         *done = (a0 == 0);
523
524         return 0;
525 }
526
527 int vnic_dev_hang_notify(struct vnic_dev *vdev)
528 {
529         u64 a0, a1;
530         int wait = 1000;
531         return vnic_dev_cmd(vdev, CMD_HANG_NOTIFY, &a0, &a1, wait);
532 }
533
534 int vnic_dev_mac_addr(struct vnic_dev *vdev, u8 *mac_addr)
535 {
536         u64 a0, a1;
537         int wait = 1000;
538         int err, i;
539
540         for (i = 0; i < ETH_ALEN; i++)
541                 mac_addr[i] = 0;
542
543         err = vnic_dev_cmd(vdev, CMD_MAC_ADDR, &a0, &a1, wait);
544         if (err)
545                 return err;
546
547         for (i = 0; i < ETH_ALEN; i++)
548                 mac_addr[i] = ((u8 *)&a0)[i];
549
550         return 0;
551 }
552
553 int vnic_dev_packet_filter(struct vnic_dev *vdev, int directed, int multicast,
554         int broadcast, int promisc, int allmulti)
555 {
556         u64 a0, a1 = 0;
557         int wait = 1000;
558         int err;
559
560         a0 = (directed ? CMD_PFILTER_DIRECTED : 0) |
561              (multicast ? CMD_PFILTER_MULTICAST : 0) |
562              (broadcast ? CMD_PFILTER_BROADCAST : 0) |
563              (promisc ? CMD_PFILTER_PROMISCUOUS : 0) |
564              (allmulti ? CMD_PFILTER_ALL_MULTICAST : 0);
565
566         err = vnic_dev_cmd(vdev, CMD_PACKET_FILTER, &a0, &a1, wait);
567         if (err)
568                 printk(KERN_ERR "Can't set packet filter\n");
569
570         return err;
571 }
572
573 int vnic_dev_add_addr(struct vnic_dev *vdev, u8 *addr)
574 {
575         u64 a0 = 0, a1 = 0;
576         int wait = 1000;
577         int err;
578         int i;
579
580         for (i = 0; i < ETH_ALEN; i++)
581                 ((u8 *)&a0)[i] = addr[i];
582
583         err = vnic_dev_cmd(vdev, CMD_ADDR_ADD, &a0, &a1, wait);
584         if (err)
585                 printk(KERN_ERR "Can't add addr [%pM], %d\n", addr, err);
586
587         return err;
588 }
589
590 int vnic_dev_del_addr(struct vnic_dev *vdev, u8 *addr)
591 {
592         u64 a0 = 0, a1 = 0;
593         int wait = 1000;
594         int err;
595         int i;
596
597         for (i = 0; i < ETH_ALEN; i++)
598                 ((u8 *)&a0)[i] = addr[i];
599
600         err = vnic_dev_cmd(vdev, CMD_ADDR_DEL, &a0, &a1, wait);
601         if (err)
602                 printk(KERN_ERR "Can't del addr [%pM], %d\n", addr, err);
603
604         return err;
605 }
606
607 int vnic_dev_set_ig_vlan_rewrite_mode(struct vnic_dev *vdev,
608         u8 ig_vlan_rewrite_mode)
609 {
610         u64 a0 = ig_vlan_rewrite_mode, a1 = 0;
611         int wait = 1000;
612         int err;
613
614         err = vnic_dev_cmd(vdev, CMD_IG_VLAN_REWRITE_MODE, &a0, &a1, wait);
615         if (err == ERR_ECMDUNKNOWN)
616                 return 0;
617
618         return err;
619 }
620
621 int vnic_dev_raise_intr(struct vnic_dev *vdev, u16 intr)
622 {
623         u64 a0 = intr, a1 = 0;
624         int wait = 1000;
625         int err;
626
627         err = vnic_dev_cmd(vdev, CMD_IAR, &a0, &a1, wait);
628         if (err)
629                 printk(KERN_ERR "Failed to raise INTR[%d], err %d\n",
630                         intr, err);
631
632         return err;
633 }
634
635 int vnic_dev_notify_setcmd(struct vnic_dev *vdev,
636         void *notify_addr, dma_addr_t notify_pa, u16 intr)
637 {
638         u64 a0, a1;
639         int wait = 1000;
640         int r;
641
642         memset(notify_addr, 0, sizeof(struct vnic_devcmd_notify));
643         vdev->notify = notify_addr;
644         vdev->notify_pa = notify_pa;
645
646         a0 = (u64)notify_pa;
647         a1 = ((u64)intr << 32) & 0x0000ffff00000000ULL;
648         a1 += sizeof(struct vnic_devcmd_notify);
649
650         r = vnic_dev_cmd(vdev, CMD_NOTIFY, &a0, &a1, wait);
651         vdev->notify_sz = (r == 0) ? (u32)a1 : 0;
652         return r;
653 }
654
655 int vnic_dev_notify_set(struct vnic_dev *vdev, u16 intr)
656 {
657         void *notify_addr;
658         dma_addr_t notify_pa;
659
660         if (vdev->notify || vdev->notify_pa) {
661                 printk(KERN_ERR "notify block %p still allocated",
662                         vdev->notify);
663                 return -EINVAL;
664         }
665
666         notify_addr = pci_alloc_consistent(vdev->pdev,
667                         sizeof(struct vnic_devcmd_notify),
668                         &notify_pa);
669         if (!notify_addr)
670                 return -ENOMEM;
671
672         return vnic_dev_notify_setcmd(vdev, notify_addr, notify_pa, intr);
673 }
674
675 int vnic_dev_notify_unsetcmd(struct vnic_dev *vdev)
676 {
677         u64 a0, a1;
678         int wait = 1000;
679         int err;
680
681         a0 = 0;  /* paddr = 0 to unset notify buffer */
682         a1 = 0x0000ffff00000000ULL; /* intr num = -1 to unreg for intr */
683         a1 += sizeof(struct vnic_devcmd_notify);
684
685         err = vnic_dev_cmd(vdev, CMD_NOTIFY, &a0, &a1, wait);
686         vdev->notify = NULL;
687         vdev->notify_pa = 0;
688         vdev->notify_sz = 0;
689
690         return err;
691 }
692
693 int vnic_dev_notify_unset(struct vnic_dev *vdev)
694 {
695         if (vdev->notify) {
696                 pci_free_consistent(vdev->pdev,
697                         sizeof(struct vnic_devcmd_notify),
698                         vdev->notify,
699                         vdev->notify_pa);
700         }
701
702         return vnic_dev_notify_unsetcmd(vdev);
703 }
704
705 static int vnic_dev_notify_ready(struct vnic_dev *vdev)
706 {
707         u32 *words;
708         unsigned int nwords = vdev->notify_sz / 4;
709         unsigned int i;
710         u32 csum;
711
712         if (!vdev->notify || !vdev->notify_sz)
713                 return 0;
714
715         do {
716                 csum = 0;
717                 memcpy(&vdev->notify_copy, vdev->notify, vdev->notify_sz);
718                 words = (u32 *)&vdev->notify_copy;
719                 for (i = 1; i < nwords; i++)
720                         csum += words[i];
721         } while (csum != words[0]);
722
723         return 1;
724 }
725
726 int vnic_dev_init(struct vnic_dev *vdev, int arg)
727 {
728         u64 a0 = (u32)arg, a1 = 0;
729         int wait = 1000;
730         int r = 0;
731
732         if (vdev->cap_flags & VNIC_DEV_CAP_INIT)
733                 r = vnic_dev_cmd(vdev, CMD_INIT, &a0, &a1, wait);
734         else {
735                 vnic_dev_cmd(vdev, CMD_INIT_v1, &a0, &a1, wait);
736                 if (a0 & CMD_INITF_DEFAULT_MAC) {
737                         // Emulate these for old CMD_INIT_v1 which
738                         // didn't pass a0 so no CMD_INITF_*.
739                         vnic_dev_cmd(vdev, CMD_MAC_ADDR, &a0, &a1, wait);
740                         vnic_dev_cmd(vdev, CMD_ADDR_ADD, &a0, &a1, wait);
741                 }
742         }
743         return r;
744 }
745
746 int vnic_dev_init_done(struct vnic_dev *vdev, int *done, int *err)
747 {
748         u64 a0 = 0, a1 = 0;
749         int wait = 1000;
750         int ret;
751
752         *done = 0;
753
754         ret = vnic_dev_cmd(vdev, CMD_INIT_STATUS, &a0, &a1, wait);
755         if (ret)
756                 return ret;
757
758         *done = (a0 == 0);
759
760         *err = (a0 == 0) ? a1 : 0;
761
762         return 0;
763 }
764
765 int vnic_dev_init_prov(struct vnic_dev *vdev, u8 *buf, u32 len)
766 {
767         u64 a0, a1 = len;
768         int wait = 1000;
769         dma_addr_t prov_pa;
770         void *prov_buf;
771         int ret;
772
773         prov_buf = pci_alloc_consistent(vdev->pdev, len, &prov_pa);
774         if (!prov_buf)
775                 return -ENOMEM;
776
777         memcpy(prov_buf, buf, len);
778
779         a0 = prov_pa;
780
781         ret = vnic_dev_cmd(vdev, CMD_INIT_PROV_INFO, &a0, &a1, wait);
782
783         pci_free_consistent(vdev->pdev, len, prov_buf, prov_pa);
784
785         return ret;
786 }
787
788 int vnic_dev_deinit(struct vnic_dev *vdev)
789 {
790         u64 a0 = 0, a1 = 0;
791         int wait = 1000;
792
793         return vnic_dev_cmd(vdev, CMD_DEINIT, &a0, &a1, wait);
794 }
795
796 int vnic_dev_link_status(struct vnic_dev *vdev)
797 {
798         if (vdev->linkstatus)
799                 return *vdev->linkstatus;
800
801         if (!vnic_dev_notify_ready(vdev))
802                 return 0;
803
804         return vdev->notify_copy.link_state;
805 }
806
807 u32 vnic_dev_port_speed(struct vnic_dev *vdev)
808 {
809         if (!vnic_dev_notify_ready(vdev))
810                 return 0;
811
812         return vdev->notify_copy.port_speed;
813 }
814
815 u32 vnic_dev_msg_lvl(struct vnic_dev *vdev)
816 {
817         if (!vnic_dev_notify_ready(vdev))
818                 return 0;
819
820         return vdev->notify_copy.msglvl;
821 }
822
823 u32 vnic_dev_mtu(struct vnic_dev *vdev)
824 {
825         if (!vnic_dev_notify_ready(vdev))
826                 return 0;
827
828         return vdev->notify_copy.mtu;
829 }
830
831 u32 vnic_dev_link_down_cnt(struct vnic_dev *vdev)
832 {
833         if (!vnic_dev_notify_ready(vdev))
834                 return 0;
835
836         return vdev->notify_copy.link_down_cnt;
837 }
838
839 u32 vnic_dev_notify_status(struct vnic_dev *vdev)
840 {
841         if (!vnic_dev_notify_ready(vdev))
842                 return 0;
843
844         return vdev->notify_copy.status;
845 }
846
847 u32 vnic_dev_uif(struct vnic_dev *vdev)
848 {
849         if (!vnic_dev_notify_ready(vdev))
850                 return 0;
851
852         return vdev->notify_copy.uif;
853 }
854
855 void vnic_dev_set_intr_mode(struct vnic_dev *vdev,
856         enum vnic_dev_intr_mode intr_mode)
857 {
858         vdev->intr_mode = intr_mode;
859 }
860
861 enum vnic_dev_intr_mode vnic_dev_get_intr_mode(
862         struct vnic_dev *vdev)
863 {
864         return vdev->intr_mode;
865 }
866
867 void vnic_dev_unregister(struct vnic_dev *vdev)
868 {
869         if (vdev) {
870                 if (vdev->notify)
871                         pci_free_consistent(vdev->pdev,
872                                 sizeof(struct vnic_devcmd_notify),
873                                 vdev->notify,
874                                 vdev->notify_pa);
875                 if (vdev->linkstatus)
876                         pci_free_consistent(vdev->pdev,
877                                 sizeof(u32),
878                                 vdev->linkstatus,
879                                 vdev->linkstatus_pa);
880                 if (vdev->stats)
881                         pci_free_consistent(vdev->pdev,
882                                 sizeof(struct vnic_dev),
883                                 vdev->stats, vdev->stats_pa);
884                 if (vdev->fw_info)
885                         pci_free_consistent(vdev->pdev,
886                                 sizeof(struct vnic_devcmd_fw_info),
887                                 vdev->fw_info, vdev->fw_info_pa);
888                 kfree(vdev);
889         }
890 }
891
892 struct vnic_dev *vnic_dev_register(struct vnic_dev *vdev,
893         void *priv, struct pci_dev *pdev, struct vnic_dev_bar *bar,
894         unsigned int num_bars)
895 {
896         if (!vdev) {
897                 vdev = kzalloc(sizeof(struct vnic_dev), GFP_ATOMIC);
898                 if (!vdev)
899                         return NULL;
900         }
901
902         vdev->priv = priv;
903         vdev->pdev = pdev;
904
905         if (vnic_dev_discover_res(vdev, bar, num_bars))
906                 goto err_out;
907
908         vdev->devcmd = vnic_dev_get_res(vdev, RES_TYPE_DEVCMD, 0);
909         if (!vdev->devcmd)
910                 goto err_out;
911
912         vdev->cap_flags = 0;
913
914         if (vnic_dev_capable(vdev, CMD_INIT))
915                 vdev->cap_flags |= VNIC_DEV_CAP_INIT;
916
917         return vdev;
918
919 err_out:
920         vnic_dev_unregister(vdev);
921         return NULL;
922 }
923
924