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