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