]> asedeno.scripts.mit.edu Git - linux.git/blob - drivers/staging/qlge/qlge_mpi.c
net/mlx5: DR, Fix matching on vport gvmi
[linux.git] / drivers / staging / qlge / qlge_mpi.c
1 // SPDX-License-Identifier: GPL-2.0
2 #include "qlge.h"
3
4 int ql_unpause_mpi_risc(struct ql_adapter *qdev)
5 {
6         u32 tmp;
7
8         /* Un-pause the RISC */
9         tmp = ql_read32(qdev, CSR);
10         if (!(tmp & CSR_RP))
11                 return -EIO;
12
13         ql_write32(qdev, CSR, CSR_CMD_CLR_PAUSE);
14         return 0;
15 }
16
17 int ql_pause_mpi_risc(struct ql_adapter *qdev)
18 {
19         u32 tmp;
20         int count = UDELAY_COUNT;
21
22         /* Pause the RISC */
23         ql_write32(qdev, CSR, CSR_CMD_SET_PAUSE);
24         do {
25                 tmp = ql_read32(qdev, CSR);
26                 if (tmp & CSR_RP)
27                         break;
28                 mdelay(UDELAY_DELAY);
29                 count--;
30         } while (count);
31         return (count == 0) ? -ETIMEDOUT : 0;
32 }
33
34 int ql_hard_reset_mpi_risc(struct ql_adapter *qdev)
35 {
36         u32 tmp;
37         int count = UDELAY_COUNT;
38
39         /* Reset the RISC */
40         ql_write32(qdev, CSR, CSR_CMD_SET_RST);
41         do {
42                 tmp = ql_read32(qdev, CSR);
43                 if (tmp & CSR_RR) {
44                         ql_write32(qdev, CSR, CSR_CMD_CLR_RST);
45                         break;
46                 }
47                 mdelay(UDELAY_DELAY);
48                 count--;
49         } while (count);
50         return (count == 0) ? -ETIMEDOUT : 0;
51 }
52
53 int ql_read_mpi_reg(struct ql_adapter *qdev, u32 reg, u32 *data)
54 {
55         int status;
56         /* wait for reg to come ready */
57         status = ql_wait_reg_rdy(qdev, PROC_ADDR, PROC_ADDR_RDY, PROC_ADDR_ERR);
58         if (status)
59                 goto exit;
60         /* set up for reg read */
61         ql_write32(qdev, PROC_ADDR, reg | PROC_ADDR_R);
62         /* wait for reg to come ready */
63         status = ql_wait_reg_rdy(qdev, PROC_ADDR, PROC_ADDR_RDY, PROC_ADDR_ERR);
64         if (status)
65                 goto exit;
66         /* get the data */
67         *data = ql_read32(qdev, PROC_DATA);
68 exit:
69         return status;
70 }
71
72 int ql_write_mpi_reg(struct ql_adapter *qdev, u32 reg, u32 data)
73 {
74         int status = 0;
75         /* wait for reg to come ready */
76         status = ql_wait_reg_rdy(qdev, PROC_ADDR, PROC_ADDR_RDY, PROC_ADDR_ERR);
77         if (status)
78                 goto exit;
79         /* write the data to the data reg */
80         ql_write32(qdev, PROC_DATA, data);
81         /* trigger the write */
82         ql_write32(qdev, PROC_ADDR, reg);
83         /* wait for reg to come ready */
84         status = ql_wait_reg_rdy(qdev, PROC_ADDR, PROC_ADDR_RDY, PROC_ADDR_ERR);
85         if (status)
86                 goto exit;
87 exit:
88         return status;
89 }
90
91 int ql_soft_reset_mpi_risc(struct ql_adapter *qdev)
92 {
93         int status;
94         status = ql_write_mpi_reg(qdev, 0x00001010, 1);
95         return status;
96 }
97
98 /* Determine if we are in charge of the firwmare. If
99  * we are the lower of the 2 NIC pcie functions, or if
100  * we are the higher function and the lower function
101  * is not enabled.
102  */
103 int ql_own_firmware(struct ql_adapter *qdev)
104 {
105         u32 temp;
106
107         /* If we are the lower of the 2 NIC functions
108          * on the chip the we are responsible for
109          * core dump and firmware reset after an error.
110          */
111         if (qdev->func < qdev->alt_func)
112                 return 1;
113
114         /* If we are the higher of the 2 NIC functions
115          * on the chip and the lower function is not
116          * enabled, then we are responsible for
117          * core dump and firmware reset after an error.
118          */
119         temp =  ql_read32(qdev, STS);
120         if (!(temp & (1 << (8 + qdev->alt_func))))
121                 return 1;
122
123         return 0;
124
125 }
126
127 static int ql_get_mb_sts(struct ql_adapter *qdev, struct mbox_params *mbcp)
128 {
129         int i, status;
130
131         status = ql_sem_spinlock(qdev, SEM_PROC_REG_MASK);
132         if (status)
133                 return -EBUSY;
134         for (i = 0; i < mbcp->out_count; i++) {
135                 status =
136                     ql_read_mpi_reg(qdev, qdev->mailbox_out + i,
137                                     &mbcp->mbox_out[i]);
138                 if (status) {
139                         netif_err(qdev, drv, qdev->ndev, "Failed mailbox read.\n");
140                         break;
141                 }
142         }
143         ql_sem_unlock(qdev, SEM_PROC_REG_MASK); /* does flush too */
144         return status;
145 }
146
147 /* Wait for a single mailbox command to complete.
148  * Returns zero on success.
149  */
150 static int ql_wait_mbx_cmd_cmplt(struct ql_adapter *qdev)
151 {
152         int count = 100;
153         u32 value;
154
155         do {
156                 value = ql_read32(qdev, STS);
157                 if (value & STS_PI)
158                         return 0;
159                 mdelay(UDELAY_DELAY); /* 100ms */
160         } while (--count);
161         return -ETIMEDOUT;
162 }
163
164 /* Execute a single mailbox command.
165  * Caller must hold PROC_ADDR semaphore.
166  */
167 static int ql_exec_mb_cmd(struct ql_adapter *qdev, struct mbox_params *mbcp)
168 {
169         int i, status;
170
171         /*
172          * Make sure there's nothing pending.
173          * This shouldn't happen.
174          */
175         if (ql_read32(qdev, CSR) & CSR_HRI)
176                 return -EIO;
177
178         status = ql_sem_spinlock(qdev, SEM_PROC_REG_MASK);
179         if (status)
180                 return status;
181
182         /*
183          * Fill the outbound mailboxes.
184          */
185         for (i = 0; i < mbcp->in_count; i++) {
186                 status = ql_write_mpi_reg(qdev, qdev->mailbox_in + i,
187                                           mbcp->mbox_in[i]);
188                 if (status)
189                         goto end;
190         }
191         /*
192          * Wake up the MPI firmware.
193          */
194         ql_write32(qdev, CSR, CSR_CMD_SET_H2R_INT);
195 end:
196         ql_sem_unlock(qdev, SEM_PROC_REG_MASK);
197         return status;
198 }
199
200 /* We are being asked by firmware to accept
201  * a change to the port.  This is only
202  * a change to max frame sizes (Tx/Rx), pause
203  * parameters, or loopback mode. We wake up a worker
204  * to handler processing this since a mailbox command
205  * will need to be sent to ACK the request.
206  */
207 static int ql_idc_req_aen(struct ql_adapter *qdev)
208 {
209         int status;
210         struct mbox_params *mbcp = &qdev->idc_mbc;
211
212         netif_err(qdev, drv, qdev->ndev, "Enter!\n");
213         /* Get the status data and start up a thread to
214          * handle the request.
215          */
216         mbcp->out_count = 4;
217         status = ql_get_mb_sts(qdev, mbcp);
218         if (status) {
219                 netif_err(qdev, drv, qdev->ndev,
220                           "Could not read MPI, resetting ASIC!\n");
221                 ql_queue_asic_error(qdev);
222         } else  {
223                 /* Begin polled mode early so
224                  * we don't get another interrupt
225                  * when we leave mpi_worker.
226                  */
227                 ql_write32(qdev, INTR_MASK, (INTR_MASK_PI << 16));
228                 queue_delayed_work(qdev->workqueue, &qdev->mpi_idc_work, 0);
229         }
230         return status;
231 }
232
233 /* Process an inter-device event completion.
234  * If good, signal the caller's completion.
235  */
236 static int ql_idc_cmplt_aen(struct ql_adapter *qdev)
237 {
238         int status;
239         struct mbox_params *mbcp = &qdev->idc_mbc;
240         mbcp->out_count = 4;
241         status = ql_get_mb_sts(qdev, mbcp);
242         if (status) {
243                 netif_err(qdev, drv, qdev->ndev,
244                           "Could not read MPI, resetting RISC!\n");
245                 ql_queue_fw_error(qdev);
246         } else
247                 /* Wake up the sleeping mpi_idc_work thread that is
248                  * waiting for this event.
249                  */
250                 complete(&qdev->ide_completion);
251
252         return status;
253 }
254
255 static void ql_link_up(struct ql_adapter *qdev, struct mbox_params *mbcp)
256 {
257         int status;
258         mbcp->out_count = 2;
259
260         status = ql_get_mb_sts(qdev, mbcp);
261         if (status) {
262                 netif_err(qdev, drv, qdev->ndev,
263                           "%s: Could not get mailbox status.\n", __func__);
264                 return;
265         }
266
267         qdev->link_status = mbcp->mbox_out[1];
268         netif_err(qdev, drv, qdev->ndev, "Link Up.\n");
269
270         /* If we're coming back from an IDC event
271          * then set up the CAM and frame routing.
272          */
273         if (test_bit(QL_CAM_RT_SET, &qdev->flags)) {
274                 status = ql_cam_route_initialize(qdev);
275                 if (status) {
276                         netif_err(qdev, ifup, qdev->ndev,
277                                   "Failed to init CAM/Routing tables.\n");
278                         return;
279                 } else
280                         clear_bit(QL_CAM_RT_SET, &qdev->flags);
281         }
282
283         /* Queue up a worker to check the frame
284          * size information, and fix it if it's not
285          * to our liking.
286          */
287         if (!test_bit(QL_PORT_CFG, &qdev->flags)) {
288                 netif_err(qdev, drv, qdev->ndev, "Queue Port Config Worker!\n");
289                 set_bit(QL_PORT_CFG, &qdev->flags);
290                 /* Begin polled mode early so
291                  * we don't get another interrupt
292                  * when we leave mpi_worker dpc.
293                  */
294                 ql_write32(qdev, INTR_MASK, (INTR_MASK_PI << 16));
295                 queue_delayed_work(qdev->workqueue,
296                                    &qdev->mpi_port_cfg_work, 0);
297         }
298
299         ql_link_on(qdev);
300 }
301
302 static void ql_link_down(struct ql_adapter *qdev, struct mbox_params *mbcp)
303 {
304         int status;
305
306         mbcp->out_count = 3;
307
308         status = ql_get_mb_sts(qdev, mbcp);
309         if (status)
310                 netif_err(qdev, drv, qdev->ndev, "Link down AEN broken!\n");
311
312         ql_link_off(qdev);
313 }
314
315 static int ql_sfp_in(struct ql_adapter *qdev, struct mbox_params *mbcp)
316 {
317         int status;
318
319         mbcp->out_count = 5;
320
321         status = ql_get_mb_sts(qdev, mbcp);
322         if (status)
323                 netif_err(qdev, drv, qdev->ndev, "SFP in AEN broken!\n");
324         else
325                 netif_err(qdev, drv, qdev->ndev, "SFP insertion detected.\n");
326
327         return status;
328 }
329
330 static int ql_sfp_out(struct ql_adapter *qdev, struct mbox_params *mbcp)
331 {
332         int status;
333
334         mbcp->out_count = 1;
335
336         status = ql_get_mb_sts(qdev, mbcp);
337         if (status)
338                 netif_err(qdev, drv, qdev->ndev, "SFP out AEN broken!\n");
339         else
340                 netif_err(qdev, drv, qdev->ndev, "SFP removal detected.\n");
341
342         return status;
343 }
344
345 static int ql_aen_lost(struct ql_adapter *qdev, struct mbox_params *mbcp)
346 {
347         int status;
348
349         mbcp->out_count = 6;
350
351         status = ql_get_mb_sts(qdev, mbcp);
352         if (status)
353                 netif_err(qdev, drv, qdev->ndev, "Lost AEN broken!\n");
354         else {
355                 int i;
356                 netif_err(qdev, drv, qdev->ndev, "Lost AEN detected.\n");
357                 for (i = 0; i < mbcp->out_count; i++)
358                         netif_err(qdev, drv, qdev->ndev, "mbox_out[%d] = 0x%.08x.\n",
359                                   i, mbcp->mbox_out[i]);
360
361         }
362
363         return status;
364 }
365
366 static void ql_init_fw_done(struct ql_adapter *qdev, struct mbox_params *mbcp)
367 {
368         int status;
369
370         mbcp->out_count = 2;
371
372         status = ql_get_mb_sts(qdev, mbcp);
373         if (status) {
374                 netif_err(qdev, drv, qdev->ndev, "Firmware did not initialize!\n");
375         } else {
376                 netif_err(qdev, drv, qdev->ndev, "Firmware Revision  = 0x%.08x.\n",
377                           mbcp->mbox_out[1]);
378                 qdev->fw_rev_id = mbcp->mbox_out[1];
379                 status = ql_cam_route_initialize(qdev);
380                 if (status)
381                         netif_err(qdev, ifup, qdev->ndev,
382                                   "Failed to init CAM/Routing tables.\n");
383         }
384 }
385
386 /* Process an async event and clear it unless it's an
387  * error condition.
388  *  This can get called iteratively from the mpi_work thread
389  *  when events arrive via an interrupt.
390  *  It also gets called when a mailbox command is polling for
391  *  it's completion. */
392 static int ql_mpi_handler(struct ql_adapter *qdev, struct mbox_params *mbcp)
393 {
394         int status;
395         int orig_count = mbcp->out_count;
396
397         /* Just get mailbox zero for now. */
398         mbcp->out_count = 1;
399         status = ql_get_mb_sts(qdev, mbcp);
400         if (status) {
401                 netif_err(qdev, drv, qdev->ndev,
402                           "Could not read MPI, resetting ASIC!\n");
403                 ql_queue_asic_error(qdev);
404                 goto end;
405         }
406
407         switch (mbcp->mbox_out[0]) {
408
409         /* This case is only active when we arrive here
410          * as a result of issuing a mailbox command to
411          * the firmware.
412          */
413         case MB_CMD_STS_INTRMDT:
414         case MB_CMD_STS_GOOD:
415         case MB_CMD_STS_INVLD_CMD:
416         case MB_CMD_STS_XFC_ERR:
417         case MB_CMD_STS_CSUM_ERR:
418         case MB_CMD_STS_ERR:
419         case MB_CMD_STS_PARAM_ERR:
420                 /* We can only get mailbox status if we're polling from an
421                  * unfinished command.  Get the rest of the status data and
422                  * return back to the caller.
423                  * We only end up here when we're polling for a mailbox
424                  * command completion.
425                  */
426                 mbcp->out_count = orig_count;
427                 status = ql_get_mb_sts(qdev, mbcp);
428                 return status;
429
430         /* We are being asked by firmware to accept
431          * a change to the port.  This is only
432          * a change to max frame sizes (Tx/Rx), pause
433          * parameters, or loopback mode.
434          */
435         case AEN_IDC_REQ:
436                 status = ql_idc_req_aen(qdev);
437                 break;
438
439         /* Process and inbound IDC event.
440          * This will happen when we're trying to
441          * change tx/rx max frame size, change pause
442          * parameters or loopback mode.
443          */
444         case AEN_IDC_CMPLT:
445         case AEN_IDC_EXT:
446                 status = ql_idc_cmplt_aen(qdev);
447                 break;
448
449         case AEN_LINK_UP:
450                 ql_link_up(qdev, mbcp);
451                 break;
452
453         case AEN_LINK_DOWN:
454                 ql_link_down(qdev, mbcp);
455                 break;
456
457         case AEN_FW_INIT_DONE:
458                 /* If we're in process on executing the firmware,
459                  * then convert the status to normal mailbox status.
460                  */
461                 if (mbcp->mbox_in[0] == MB_CMD_EX_FW) {
462                         mbcp->out_count = orig_count;
463                         status = ql_get_mb_sts(qdev, mbcp);
464                         mbcp->mbox_out[0] = MB_CMD_STS_GOOD;
465                         return status;
466                 }
467                 ql_init_fw_done(qdev, mbcp);
468                 break;
469
470         case AEN_AEN_SFP_IN:
471                 ql_sfp_in(qdev, mbcp);
472                 break;
473
474         case AEN_AEN_SFP_OUT:
475                 ql_sfp_out(qdev, mbcp);
476                 break;
477
478         /* This event can arrive at boot time or after an
479          * MPI reset if the firmware failed to initialize.
480          */
481         case AEN_FW_INIT_FAIL:
482                 /* If we're in process on executing the firmware,
483                  * then convert the status to normal mailbox status.
484                  */
485                 if (mbcp->mbox_in[0] == MB_CMD_EX_FW) {
486                         mbcp->out_count = orig_count;
487                         status = ql_get_mb_sts(qdev, mbcp);
488                         mbcp->mbox_out[0] = MB_CMD_STS_ERR;
489                         return status;
490                 }
491                 netif_err(qdev, drv, qdev->ndev,
492                           "Firmware initialization failed.\n");
493                 status = -EIO;
494                 ql_queue_fw_error(qdev);
495                 break;
496
497         case AEN_SYS_ERR:
498                 netif_err(qdev, drv, qdev->ndev, "System Error.\n");
499                 ql_queue_fw_error(qdev);
500                 status = -EIO;
501                 break;
502
503         case AEN_AEN_LOST:
504                 ql_aen_lost(qdev, mbcp);
505                 break;
506
507         case AEN_DCBX_CHG:
508                 /* Need to support AEN 8110 */
509                 break;
510         default:
511                 netif_err(qdev, drv, qdev->ndev,
512                           "Unsupported AE %.08x.\n", mbcp->mbox_out[0]);
513                 /* Clear the MPI firmware status. */
514         }
515 end:
516         ql_write32(qdev, CSR, CSR_CMD_CLR_R2PCI_INT);
517         /* Restore the original mailbox count to
518          * what the caller asked for.  This can get
519          * changed when a mailbox command is waiting
520          * for a response and an AEN arrives and
521          * is handled.
522          * */
523         mbcp->out_count = orig_count;
524         return status;
525 }
526
527 /* Execute a single mailbox command.
528  * mbcp is a pointer to an array of u32.  Each
529  * element in the array contains the value for it's
530  * respective mailbox register.
531  */
532 static int ql_mailbox_command(struct ql_adapter *qdev, struct mbox_params *mbcp)
533 {
534         int status;
535         unsigned long count;
536
537         mutex_lock(&qdev->mpi_mutex);
538
539         /* Begin polled mode for MPI */
540         ql_write32(qdev, INTR_MASK, (INTR_MASK_PI << 16));
541
542         /* Load the mailbox registers and wake up MPI RISC. */
543         status = ql_exec_mb_cmd(qdev, mbcp);
544         if (status)
545                 goto end;
546
547         /* If we're generating a system error, then there's nothing
548          * to wait for.
549          */
550         if (mbcp->mbox_in[0] == MB_CMD_MAKE_SYS_ERR)
551                 goto end;
552
553         /* Wait for the command to complete. We loop
554          * here because some AEN might arrive while
555          * we're waiting for the mailbox command to
556          * complete. If more than 5 seconds expire we can
557          * assume something is wrong. */
558         count = jiffies + HZ * MAILBOX_TIMEOUT;
559         do {
560                 /* Wait for the interrupt to come in. */
561                 status = ql_wait_mbx_cmd_cmplt(qdev);
562                 if (status)
563                         continue;
564
565                 /* Process the event.  If it's an AEN, it
566                  * will be handled in-line or a worker
567                  * will be spawned. If it's our completion
568                  * we will catch it below.
569                  */
570                 status = ql_mpi_handler(qdev, mbcp);
571                 if (status)
572                         goto end;
573
574                 /* It's either the completion for our mailbox
575                  * command complete or an AEN.  If it's our
576                  * completion then get out.
577                  */
578                 if (((mbcp->mbox_out[0] & 0x0000f000) ==
579                                         MB_CMD_STS_GOOD) ||
580                         ((mbcp->mbox_out[0] & 0x0000f000) ==
581                                         MB_CMD_STS_INTRMDT))
582                         goto done;
583         } while (time_before(jiffies, count));
584
585         netif_err(qdev, drv, qdev->ndev,
586                   "Timed out waiting for mailbox complete.\n");
587         status = -ETIMEDOUT;
588         goto end;
589
590 done:
591
592         /* Now we can clear the interrupt condition
593          * and look at our status.
594          */
595         ql_write32(qdev, CSR, CSR_CMD_CLR_R2PCI_INT);
596
597         if (((mbcp->mbox_out[0] & 0x0000f000) !=
598                                         MB_CMD_STS_GOOD) &&
599                 ((mbcp->mbox_out[0] & 0x0000f000) !=
600                                         MB_CMD_STS_INTRMDT)) {
601                 status = -EIO;
602         }
603 end:
604         /* End polled mode for MPI */
605         ql_write32(qdev, INTR_MASK, (INTR_MASK_PI << 16) | INTR_MASK_PI);
606         mutex_unlock(&qdev->mpi_mutex);
607         return status;
608 }
609
610 /* Get MPI firmware version. This will be used for
611  * driver banner and for ethtool info.
612  * Returns zero on success.
613  */
614 int ql_mb_about_fw(struct ql_adapter *qdev)
615 {
616         struct mbox_params mbc;
617         struct mbox_params *mbcp = &mbc;
618         int status = 0;
619
620         memset(mbcp, 0, sizeof(struct mbox_params));
621
622         mbcp->in_count = 1;
623         mbcp->out_count = 3;
624
625         mbcp->mbox_in[0] = MB_CMD_ABOUT_FW;
626
627         status = ql_mailbox_command(qdev, mbcp);
628         if (status)
629                 return status;
630
631         if (mbcp->mbox_out[0] != MB_CMD_STS_GOOD) {
632                 netif_err(qdev, drv, qdev->ndev,
633                           "Failed about firmware command\n");
634                 status = -EIO;
635         }
636
637         /* Store the firmware version */
638         qdev->fw_rev_id = mbcp->mbox_out[1];
639
640         return status;
641 }
642
643 /* Get functional state for MPI firmware.
644  * Returns zero on success.
645  */
646 int ql_mb_get_fw_state(struct ql_adapter *qdev)
647 {
648         struct mbox_params mbc;
649         struct mbox_params *mbcp = &mbc;
650         int status = 0;
651
652         memset(mbcp, 0, sizeof(struct mbox_params));
653
654         mbcp->in_count = 1;
655         mbcp->out_count = 2;
656
657         mbcp->mbox_in[0] = MB_CMD_GET_FW_STATE;
658
659         status = ql_mailbox_command(qdev, mbcp);
660         if (status)
661                 return status;
662
663         if (mbcp->mbox_out[0] != MB_CMD_STS_GOOD) {
664                 netif_err(qdev, drv, qdev->ndev,
665                           "Failed Get Firmware State.\n");
666                 status = -EIO;
667         }
668
669         /* If bit zero is set in mbx 1 then the firmware is
670          * running, but not initialized.  This should never
671          * happen.
672          */
673         if (mbcp->mbox_out[1] & 1) {
674                 netif_err(qdev, drv, qdev->ndev,
675                           "Firmware waiting for initialization.\n");
676                 status = -EIO;
677         }
678
679         return status;
680 }
681
682 /* Send and ACK mailbox command to the firmware to
683  * let it continue with the change.
684  */
685 static int ql_mb_idc_ack(struct ql_adapter *qdev)
686 {
687         struct mbox_params mbc;
688         struct mbox_params *mbcp = &mbc;
689         int status = 0;
690
691         memset(mbcp, 0, sizeof(struct mbox_params));
692
693         mbcp->in_count = 5;
694         mbcp->out_count = 1;
695
696         mbcp->mbox_in[0] = MB_CMD_IDC_ACK;
697         mbcp->mbox_in[1] = qdev->idc_mbc.mbox_out[1];
698         mbcp->mbox_in[2] = qdev->idc_mbc.mbox_out[2];
699         mbcp->mbox_in[3] = qdev->idc_mbc.mbox_out[3];
700         mbcp->mbox_in[4] = qdev->idc_mbc.mbox_out[4];
701
702         status = ql_mailbox_command(qdev, mbcp);
703         if (status)
704                 return status;
705
706         if (mbcp->mbox_out[0] != MB_CMD_STS_GOOD) {
707                 netif_err(qdev, drv, qdev->ndev, "Failed IDC ACK send.\n");
708                 status = -EIO;
709         }
710         return status;
711 }
712
713 /* Get link settings and maximum frame size settings
714  * for the current port.
715  * Most likely will block.
716  */
717 int ql_mb_set_port_cfg(struct ql_adapter *qdev)
718 {
719         struct mbox_params mbc;
720         struct mbox_params *mbcp = &mbc;
721         int status = 0;
722
723         memset(mbcp, 0, sizeof(struct mbox_params));
724
725         mbcp->in_count = 3;
726         mbcp->out_count = 1;
727
728         mbcp->mbox_in[0] = MB_CMD_SET_PORT_CFG;
729         mbcp->mbox_in[1] = qdev->link_config;
730         mbcp->mbox_in[2] = qdev->max_frame_size;
731
732         status = ql_mailbox_command(qdev, mbcp);
733         if (status)
734                 return status;
735
736         if (mbcp->mbox_out[0] == MB_CMD_STS_INTRMDT) {
737                 netif_err(qdev, drv, qdev->ndev,
738                           "Port Config sent, wait for IDC.\n");
739         } else  if (mbcp->mbox_out[0] != MB_CMD_STS_GOOD) {
740                 netif_err(qdev, drv, qdev->ndev,
741                           "Failed Set Port Configuration.\n");
742                 status = -EIO;
743         }
744         return status;
745 }
746
747 static int ql_mb_dump_ram(struct ql_adapter *qdev, u64 req_dma, u32 addr,
748                           u32 size)
749 {
750         int status = 0;
751         struct mbox_params mbc;
752         struct mbox_params *mbcp = &mbc;
753
754         memset(mbcp, 0, sizeof(struct mbox_params));
755
756         mbcp->in_count = 9;
757         mbcp->out_count = 1;
758
759         mbcp->mbox_in[0] = MB_CMD_DUMP_RISC_RAM;
760         mbcp->mbox_in[1] = LSW(addr);
761         mbcp->mbox_in[2] = MSW(req_dma);
762         mbcp->mbox_in[3] = LSW(req_dma);
763         mbcp->mbox_in[4] = MSW(size);
764         mbcp->mbox_in[5] = LSW(size);
765         mbcp->mbox_in[6] = MSW(MSD(req_dma));
766         mbcp->mbox_in[7] = LSW(MSD(req_dma));
767         mbcp->mbox_in[8] = MSW(addr);
768
769         status = ql_mailbox_command(qdev, mbcp);
770         if (status)
771                 return status;
772
773         if (mbcp->mbox_out[0] != MB_CMD_STS_GOOD) {
774                 netif_err(qdev, drv, qdev->ndev, "Failed to dump risc RAM.\n");
775                 status = -EIO;
776         }
777         return status;
778 }
779
780 /* Issue a mailbox command to dump RISC RAM. */
781 int ql_dump_risc_ram_area(struct ql_adapter *qdev, void *buf,
782                           u32 ram_addr, int word_count)
783 {
784         int status;
785         char *my_buf;
786         dma_addr_t buf_dma;
787
788         my_buf = pci_alloc_consistent(qdev->pdev, word_count * sizeof(u32),
789                                       &buf_dma);
790         if (!my_buf)
791                 return -EIO;
792
793         status = ql_mb_dump_ram(qdev, buf_dma, ram_addr, word_count);
794         if (!status)
795                 memcpy(buf, my_buf, word_count * sizeof(u32));
796
797         pci_free_consistent(qdev->pdev, word_count * sizeof(u32), my_buf,
798                             buf_dma);
799         return status;
800 }
801
802 /* Get link settings and maximum frame size settings
803  * for the current port.
804  * Most likely will block.
805  */
806 int ql_mb_get_port_cfg(struct ql_adapter *qdev)
807 {
808         struct mbox_params mbc;
809         struct mbox_params *mbcp = &mbc;
810         int status = 0;
811
812         memset(mbcp, 0, sizeof(struct mbox_params));
813
814         mbcp->in_count = 1;
815         mbcp->out_count = 3;
816
817         mbcp->mbox_in[0] = MB_CMD_GET_PORT_CFG;
818
819         status = ql_mailbox_command(qdev, mbcp);
820         if (status)
821                 return status;
822
823         if (mbcp->mbox_out[0] != MB_CMD_STS_GOOD) {
824                 netif_err(qdev, drv, qdev->ndev,
825                           "Failed Get Port Configuration.\n");
826                 status = -EIO;
827         } else  {
828                 netif_printk(qdev, drv, KERN_DEBUG, qdev->ndev,
829                              "Passed Get Port Configuration.\n");
830                 qdev->link_config = mbcp->mbox_out[1];
831                 qdev->max_frame_size = mbcp->mbox_out[2];
832         }
833         return status;
834 }
835
836 int ql_mb_wol_mode(struct ql_adapter *qdev, u32 wol)
837 {
838         struct mbox_params mbc;
839         struct mbox_params *mbcp = &mbc;
840         int status;
841
842         memset(mbcp, 0, sizeof(struct mbox_params));
843
844         mbcp->in_count = 2;
845         mbcp->out_count = 1;
846
847         mbcp->mbox_in[0] = MB_CMD_SET_WOL_MODE;
848         mbcp->mbox_in[1] = wol;
849
850         status = ql_mailbox_command(qdev, mbcp);
851         if (status)
852                 return status;
853
854         if (mbcp->mbox_out[0] != MB_CMD_STS_GOOD) {
855                 netif_err(qdev, drv, qdev->ndev, "Failed to set WOL mode.\n");
856                 status = -EIO;
857         }
858         return status;
859 }
860
861 int ql_mb_wol_set_magic(struct ql_adapter *qdev, u32 enable_wol)
862 {
863         struct mbox_params mbc;
864         struct mbox_params *mbcp = &mbc;
865         int status;
866         u8 *addr = qdev->ndev->dev_addr;
867
868         memset(mbcp, 0, sizeof(struct mbox_params));
869
870         mbcp->in_count = 8;
871         mbcp->out_count = 1;
872
873         mbcp->mbox_in[0] = MB_CMD_SET_WOL_MAGIC;
874         if (enable_wol) {
875                 mbcp->mbox_in[1] = (u32)addr[0];
876                 mbcp->mbox_in[2] = (u32)addr[1];
877                 mbcp->mbox_in[3] = (u32)addr[2];
878                 mbcp->mbox_in[4] = (u32)addr[3];
879                 mbcp->mbox_in[5] = (u32)addr[4];
880                 mbcp->mbox_in[6] = (u32)addr[5];
881                 mbcp->mbox_in[7] = 0;
882         } else {
883                 mbcp->mbox_in[1] = 0;
884                 mbcp->mbox_in[2] = 1;
885                 mbcp->mbox_in[3] = 1;
886                 mbcp->mbox_in[4] = 1;
887                 mbcp->mbox_in[5] = 1;
888                 mbcp->mbox_in[6] = 1;
889                 mbcp->mbox_in[7] = 0;
890         }
891
892         status = ql_mailbox_command(qdev, mbcp);
893         if (status)
894                 return status;
895
896         if (mbcp->mbox_out[0] != MB_CMD_STS_GOOD) {
897                 netif_err(qdev, drv, qdev->ndev, "Failed to set WOL mode.\n");
898                 status = -EIO;
899         }
900         return status;
901 }
902
903 /* IDC - Inter Device Communication...
904  * Some firmware commands require consent of adjacent FCOE
905  * function.  This function waits for the OK, or a
906  * counter-request for a little more time.i
907  * The firmware will complete the request if the other
908  * function doesn't respond.
909  */
910 static int ql_idc_wait(struct ql_adapter *qdev)
911 {
912         int status = -ETIMEDOUT;
913         long wait_time = 1 * HZ;
914         struct mbox_params *mbcp = &qdev->idc_mbc;
915         do {
916                 /* Wait here for the command to complete
917                  * via the IDC process.
918                  */
919                 wait_time =
920                         wait_for_completion_timeout(&qdev->ide_completion,
921                                                     wait_time);
922                 if (!wait_time) {
923                         netif_err(qdev, drv, qdev->ndev, "IDC Timeout.\n");
924                         break;
925                 }
926                 /* Now examine the response from the IDC process.
927                  * We might have a good completion or a request for
928                  * more wait time.
929                  */
930                 if (mbcp->mbox_out[0] == AEN_IDC_EXT) {
931                         netif_err(qdev, drv, qdev->ndev,
932                                   "IDC Time Extension from function.\n");
933                         wait_time += (mbcp->mbox_out[1] >> 8) & 0x0000000f;
934                 } else if (mbcp->mbox_out[0] == AEN_IDC_CMPLT) {
935                         netif_err(qdev, drv, qdev->ndev, "IDC Success.\n");
936                         status = 0;
937                         break;
938                 } else {
939                         netif_err(qdev, drv, qdev->ndev,
940                                   "IDC: Invalid State 0x%.04x.\n",
941                                   mbcp->mbox_out[0]);
942                         status = -EIO;
943                         break;
944                 }
945         } while (wait_time);
946
947         return status;
948 }
949
950 int ql_mb_set_led_cfg(struct ql_adapter *qdev, u32 led_config)
951 {
952         struct mbox_params mbc;
953         struct mbox_params *mbcp = &mbc;
954         int status;
955
956         memset(mbcp, 0, sizeof(struct mbox_params));
957
958         mbcp->in_count = 2;
959         mbcp->out_count = 1;
960
961         mbcp->mbox_in[0] = MB_CMD_SET_LED_CFG;
962         mbcp->mbox_in[1] = led_config;
963
964         status = ql_mailbox_command(qdev, mbcp);
965         if (status)
966                 return status;
967
968         if (mbcp->mbox_out[0] != MB_CMD_STS_GOOD) {
969                 netif_err(qdev, drv, qdev->ndev,
970                           "Failed to set LED Configuration.\n");
971                 status = -EIO;
972         }
973
974         return status;
975 }
976
977 int ql_mb_get_led_cfg(struct ql_adapter *qdev)
978 {
979         struct mbox_params mbc;
980         struct mbox_params *mbcp = &mbc;
981         int status;
982
983         memset(mbcp, 0, sizeof(struct mbox_params));
984
985         mbcp->in_count = 1;
986         mbcp->out_count = 2;
987
988         mbcp->mbox_in[0] = MB_CMD_GET_LED_CFG;
989
990         status = ql_mailbox_command(qdev, mbcp);
991         if (status)
992                 return status;
993
994         if (mbcp->mbox_out[0] != MB_CMD_STS_GOOD) {
995                 netif_err(qdev, drv, qdev->ndev,
996                           "Failed to get LED Configuration.\n");
997                 status = -EIO;
998         } else
999                 qdev->led_config = mbcp->mbox_out[1];
1000
1001         return status;
1002 }
1003
1004 int ql_mb_set_mgmnt_traffic_ctl(struct ql_adapter *qdev, u32 control)
1005 {
1006         struct mbox_params mbc;
1007         struct mbox_params *mbcp = &mbc;
1008         int status;
1009
1010         memset(mbcp, 0, sizeof(struct mbox_params));
1011
1012         mbcp->in_count = 1;
1013         mbcp->out_count = 2;
1014
1015         mbcp->mbox_in[0] = MB_CMD_SET_MGMNT_TFK_CTL;
1016         mbcp->mbox_in[1] = control;
1017
1018         status = ql_mailbox_command(qdev, mbcp);
1019         if (status)
1020                 return status;
1021
1022         if (mbcp->mbox_out[0] == MB_CMD_STS_GOOD)
1023                 return status;
1024
1025         if (mbcp->mbox_out[0] == MB_CMD_STS_INVLD_CMD) {
1026                 netif_err(qdev, drv, qdev->ndev,
1027                           "Command not supported by firmware.\n");
1028                 status = -EINVAL;
1029         } else if (mbcp->mbox_out[0] == MB_CMD_STS_ERR) {
1030                 /* This indicates that the firmware is
1031                  * already in the state we are trying to
1032                  * change it to.
1033                  */
1034                 netif_err(qdev, drv, qdev->ndev,
1035                           "Command parameters make no change.\n");
1036         }
1037         return status;
1038 }
1039
1040 /* Returns a negative error code or the mailbox command status. */
1041 static int ql_mb_get_mgmnt_traffic_ctl(struct ql_adapter *qdev, u32 *control)
1042 {
1043         struct mbox_params mbc;
1044         struct mbox_params *mbcp = &mbc;
1045         int status;
1046
1047         memset(mbcp, 0, sizeof(struct mbox_params));
1048         *control = 0;
1049
1050         mbcp->in_count = 1;
1051         mbcp->out_count = 1;
1052
1053         mbcp->mbox_in[0] = MB_CMD_GET_MGMNT_TFK_CTL;
1054
1055         status = ql_mailbox_command(qdev, mbcp);
1056         if (status)
1057                 return status;
1058
1059         if (mbcp->mbox_out[0] == MB_CMD_STS_GOOD) {
1060                 *control = mbcp->mbox_in[1];
1061                 return status;
1062         }
1063
1064         if (mbcp->mbox_out[0] == MB_CMD_STS_INVLD_CMD) {
1065                 netif_err(qdev, drv, qdev->ndev,
1066                           "Command not supported by firmware.\n");
1067                 status = -EINVAL;
1068         } else if (mbcp->mbox_out[0] == MB_CMD_STS_ERR) {
1069                 netif_err(qdev, drv, qdev->ndev,
1070                           "Failed to get MPI traffic control.\n");
1071                 status = -EIO;
1072         }
1073         return status;
1074 }
1075
1076 int ql_wait_fifo_empty(struct ql_adapter *qdev)
1077 {
1078         int count = 5;
1079         u32 mgmnt_fifo_empty;
1080         u32 nic_fifo_empty;
1081
1082         do {
1083                 nic_fifo_empty = ql_read32(qdev, STS) & STS_NFE;
1084                 ql_mb_get_mgmnt_traffic_ctl(qdev, &mgmnt_fifo_empty);
1085                 mgmnt_fifo_empty &= MB_GET_MPI_TFK_FIFO_EMPTY;
1086                 if (nic_fifo_empty && mgmnt_fifo_empty)
1087                         return 0;
1088                 msleep(100);
1089         } while (count-- > 0);
1090         return -ETIMEDOUT;
1091 }
1092
1093 /* API called in work thread context to set new TX/RX
1094  * maximum frame size values to match MTU.
1095  */
1096 static int ql_set_port_cfg(struct ql_adapter *qdev)
1097 {
1098         int status;
1099         status = ql_mb_set_port_cfg(qdev);
1100         if (status)
1101                 return status;
1102         status = ql_idc_wait(qdev);
1103         return status;
1104 }
1105
1106 /* The following routines are worker threads that process
1107  * events that may sleep waiting for completion.
1108  */
1109
1110 /* This thread gets the maximum TX and RX frame size values
1111  * from the firmware and, if necessary, changes them to match
1112  * the MTU setting.
1113  */
1114 void ql_mpi_port_cfg_work(struct work_struct *work)
1115 {
1116         struct ql_adapter *qdev =
1117             container_of(work, struct ql_adapter, mpi_port_cfg_work.work);
1118         int status;
1119
1120         status = ql_mb_get_port_cfg(qdev);
1121         if (status) {
1122                 netif_err(qdev, drv, qdev->ndev,
1123                           "Bug: Failed to get port config data.\n");
1124                 goto err;
1125         }
1126
1127         if (qdev->link_config & CFG_JUMBO_FRAME_SIZE &&
1128             qdev->max_frame_size == CFG_DEFAULT_MAX_FRAME_SIZE)
1129                 goto end;
1130
1131         qdev->link_config |=    CFG_JUMBO_FRAME_SIZE;
1132         qdev->max_frame_size = CFG_DEFAULT_MAX_FRAME_SIZE;
1133         status = ql_set_port_cfg(qdev);
1134         if (status) {
1135                 netif_err(qdev, drv, qdev->ndev,
1136                           "Bug: Failed to set port config data.\n");
1137                 goto err;
1138         }
1139 end:
1140         clear_bit(QL_PORT_CFG, &qdev->flags);
1141         return;
1142 err:
1143         ql_queue_fw_error(qdev);
1144         goto end;
1145 }
1146
1147 /* Process an inter-device request.  This is issues by
1148  * the firmware in response to another function requesting
1149  * a change to the port. We set a flag to indicate a change
1150  * has been made and then send a mailbox command ACKing
1151  * the change request.
1152  */
1153 void ql_mpi_idc_work(struct work_struct *work)
1154 {
1155         struct ql_adapter *qdev =
1156             container_of(work, struct ql_adapter, mpi_idc_work.work);
1157         int status;
1158         struct mbox_params *mbcp = &qdev->idc_mbc;
1159         u32 aen;
1160         int timeout;
1161
1162         aen = mbcp->mbox_out[1] >> 16;
1163         timeout = (mbcp->mbox_out[1] >> 8) & 0xf;
1164
1165         switch (aen) {
1166         default:
1167                 netif_err(qdev, drv, qdev->ndev,
1168                           "Bug: Unhandled IDC action.\n");
1169                 break;
1170         case MB_CMD_PORT_RESET:
1171         case MB_CMD_STOP_FW:
1172                 ql_link_off(qdev);
1173                 /* Fall through */
1174         case MB_CMD_SET_PORT_CFG:
1175                 /* Signal the resulting link up AEN
1176                  * that the frame routing and mac addr
1177                  * needs to be set.
1178                  * */
1179                 set_bit(QL_CAM_RT_SET, &qdev->flags);
1180                 /* Do ACK if required */
1181                 if (timeout) {
1182                         status = ql_mb_idc_ack(qdev);
1183                         if (status)
1184                                 netif_err(qdev, drv, qdev->ndev,
1185                                           "Bug: No pending IDC!\n");
1186                 } else {
1187                         netif_printk(qdev, drv, KERN_DEBUG, qdev->ndev,
1188                                      "IDC ACK not required\n");
1189                         status = 0; /* success */
1190                 }
1191                 break;
1192
1193         /* These sub-commands issued by another (FCoE)
1194          * function are requesting to do an operation
1195          * on the shared resource (MPI environment).
1196          * We currently don't issue these so we just
1197          * ACK the request.
1198          */
1199         case MB_CMD_IOP_RESTART_MPI:
1200         case MB_CMD_IOP_PREP_LINK_DOWN:
1201                 /* Drop the link, reload the routing
1202                  * table when link comes up.
1203                  */
1204                 ql_link_off(qdev);
1205                 set_bit(QL_CAM_RT_SET, &qdev->flags);
1206                 /* Fall through. */
1207         case MB_CMD_IOP_DVR_START:
1208         case MB_CMD_IOP_FLASH_ACC:
1209         case MB_CMD_IOP_CORE_DUMP_MPI:
1210         case MB_CMD_IOP_PREP_UPDATE_MPI:
1211         case MB_CMD_IOP_COMP_UPDATE_MPI:
1212         case MB_CMD_IOP_NONE:   /*  an IDC without params */
1213                 /* Do ACK if required */
1214                 if (timeout) {
1215                         status = ql_mb_idc_ack(qdev);
1216                         if (status)
1217                                 netif_err(qdev, drv, qdev->ndev,
1218                                           "Bug: No pending IDC!\n");
1219                 } else {
1220                         netif_printk(qdev, drv, KERN_DEBUG, qdev->ndev,
1221                                      "IDC ACK not required\n");
1222                         status = 0; /* success */
1223                 }
1224                 break;
1225         }
1226 }
1227
1228 void ql_mpi_work(struct work_struct *work)
1229 {
1230         struct ql_adapter *qdev =
1231             container_of(work, struct ql_adapter, mpi_work.work);
1232         struct mbox_params mbc;
1233         struct mbox_params *mbcp = &mbc;
1234         int err = 0;
1235
1236         mutex_lock(&qdev->mpi_mutex);
1237         /* Begin polled mode for MPI */
1238         ql_write32(qdev, INTR_MASK, (INTR_MASK_PI << 16));
1239
1240         while (ql_read32(qdev, STS) & STS_PI) {
1241                 memset(mbcp, 0, sizeof(struct mbox_params));
1242                 mbcp->out_count = 1;
1243                 /* Don't continue if an async event
1244                  * did not complete properly.
1245                  */
1246                 err = ql_mpi_handler(qdev, mbcp);
1247                 if (err)
1248                         break;
1249         }
1250
1251         /* End polled mode for MPI */
1252         ql_write32(qdev, INTR_MASK, (INTR_MASK_PI << 16) | INTR_MASK_PI);
1253         mutex_unlock(&qdev->mpi_mutex);
1254 }
1255
1256 void ql_mpi_reset_work(struct work_struct *work)
1257 {
1258         struct ql_adapter *qdev =
1259             container_of(work, struct ql_adapter, mpi_reset_work.work);
1260         cancel_delayed_work_sync(&qdev->mpi_work);
1261         cancel_delayed_work_sync(&qdev->mpi_port_cfg_work);
1262         cancel_delayed_work_sync(&qdev->mpi_idc_work);
1263         /* If we're not the dominant NIC function,
1264          * then there is nothing to do.
1265          */
1266         if (!ql_own_firmware(qdev)) {
1267                 netif_err(qdev, drv, qdev->ndev, "Don't own firmware!\n");
1268                 return;
1269         }
1270
1271         if (qdev->mpi_coredump && !ql_core_dump(qdev, qdev->mpi_coredump)) {
1272                 netif_err(qdev, drv, qdev->ndev, "Core is dumped!\n");
1273                 qdev->core_is_dumped = 1;
1274                 queue_delayed_work(qdev->workqueue,
1275                                    &qdev->mpi_core_to_log, 5 * HZ);
1276         }
1277         ql_soft_reset_mpi_risc(qdev);
1278 }