3 static void ql_display_mb_sts(struct ql_adapter
*qdev
,
4 struct mbox_params
*mbcp
)
7 static char *err_sts
[] = {
9 "Command Not Supported",
10 "Host Interface Error",
12 "Unused Completion Status",
14 "Command Parameter Error"};
16 QPRINTK(qdev
, DRV
, DEBUG
, "%s.\n",
17 err_sts
[mbcp
->mbox_out
[0] & 0x0000000f]);
18 for (i
= 0; i
< mbcp
->out_count
; i
++)
19 QPRINTK(qdev
, DRV
, DEBUG
, "mbox_out[%d] = 0x%.08x.\n",
20 i
, mbcp
->mbox_out
[i
]);
23 int ql_read_mpi_reg(struct ql_adapter
*qdev
, u32 reg
, u32
*data
)
26 /* wait for reg to come ready */
27 status
= ql_wait_reg_rdy(qdev
, PROC_ADDR
, PROC_ADDR_RDY
, PROC_ADDR_ERR
);
30 /* set up for reg read */
31 ql_write32(qdev
, PROC_ADDR
, reg
| PROC_ADDR_R
);
32 /* wait for reg to come ready */
33 status
= ql_wait_reg_rdy(qdev
, PROC_ADDR
, PROC_ADDR_RDY
, PROC_ADDR_ERR
);
37 *data
= ql_read32(qdev
, PROC_DATA
);
42 int ql_write_mpi_reg(struct ql_adapter
*qdev
, u32 reg
, u32 data
)
45 /* wait for reg to come ready */
46 status
= ql_wait_reg_rdy(qdev
, PROC_ADDR
, PROC_ADDR_RDY
, PROC_ADDR_ERR
);
49 /* write the data to the data reg */
50 ql_write32(qdev
, PROC_DATA
, data
);
51 /* trigger the write */
52 ql_write32(qdev
, PROC_ADDR
, reg
);
53 /* wait for reg to come ready */
54 status
= ql_wait_reg_rdy(qdev
, PROC_ADDR
, PROC_ADDR_RDY
, PROC_ADDR_ERR
);
61 int ql_soft_reset_mpi_risc(struct ql_adapter
*qdev
)
64 status
= ql_write_mpi_reg(qdev
, 0x00001010, 1);
68 static int ql_get_mb_sts(struct ql_adapter
*qdev
, struct mbox_params
*mbcp
)
72 status
= ql_sem_spinlock(qdev
, SEM_PROC_REG_MASK
);
75 for (i
= 0; i
< mbcp
->out_count
; i
++) {
77 ql_read_mpi_reg(qdev
, qdev
->mailbox_out
+ i
,
80 QPRINTK(qdev
, DRV
, ERR
, "Failed mailbox read.\n");
84 ql_sem_unlock(qdev
, SEM_PROC_REG_MASK
); /* does flush too */
88 /* Wait for a single mailbox command to complete.
89 * Returns zero on success.
91 static int ql_wait_mbx_cmd_cmplt(struct ql_adapter
*qdev
)
97 value
= ql_read32(qdev
, STS
);
100 mdelay(UDELAY_DELAY
); /* 100ms */
105 /* Execute a single mailbox command.
106 * Caller must hold PROC_ADDR semaphore.
108 static int ql_exec_mb_cmd(struct ql_adapter
*qdev
, struct mbox_params
*mbcp
)
113 * Make sure there's nothing pending.
114 * This shouldn't happen.
116 if (ql_read32(qdev
, CSR
) & CSR_HRI
)
119 status
= ql_sem_spinlock(qdev
, SEM_PROC_REG_MASK
);
124 * Fill the outbound mailboxes.
126 for (i
= 0; i
< mbcp
->in_count
; i
++) {
127 status
= ql_write_mpi_reg(qdev
, qdev
->mailbox_in
+ i
,
133 * Wake up the MPI firmware.
135 ql_write32(qdev
, CSR
, CSR_CMD_SET_H2R_INT
);
137 ql_sem_unlock(qdev
, SEM_PROC_REG_MASK
);
141 /* We are being asked by firmware to accept
142 * a change to the port. This is only
143 * a change to max frame sizes (Tx/Rx), pause
144 * parameters, or loopback mode. We wake up a worker
145 * to handler processing this since a mailbox command
146 * will need to be sent to ACK the request.
148 static int ql_idc_req_aen(struct ql_adapter
*qdev
)
151 struct mbox_params
*mbcp
= &qdev
->idc_mbc
;
153 QPRINTK(qdev
, DRV
, ERR
, "Enter!\n");
154 /* Get the status data and start up a thread to
155 * handle the request.
157 mbcp
= &qdev
->idc_mbc
;
159 status
= ql_get_mb_sts(qdev
, mbcp
);
161 QPRINTK(qdev
, DRV
, ERR
,
162 "Could not read MPI, resetting ASIC!\n");
163 ql_queue_asic_error(qdev
);
165 /* Begin polled mode early so
166 * we don't get another interrupt
167 * when we leave mpi_worker.
169 ql_write32(qdev
, INTR_MASK
, (INTR_MASK_PI
<< 16));
170 queue_delayed_work(qdev
->workqueue
, &qdev
->mpi_idc_work
, 0);
175 /* Process an inter-device event completion.
176 * If good, signal the caller's completion.
178 static int ql_idc_cmplt_aen(struct ql_adapter
*qdev
)
181 struct mbox_params
*mbcp
= &qdev
->idc_mbc
;
183 status
= ql_get_mb_sts(qdev
, mbcp
);
185 QPRINTK(qdev
, DRV
, ERR
,
186 "Could not read MPI, resetting RISC!\n");
187 ql_queue_fw_error(qdev
);
189 /* Wake up the sleeping mpi_idc_work thread that is
190 * waiting for this event.
192 complete(&qdev
->ide_completion
);
197 static void ql_link_up(struct ql_adapter
*qdev
, struct mbox_params
*mbcp
)
202 status
= ql_get_mb_sts(qdev
, mbcp
);
204 QPRINTK(qdev
, DRV
, ERR
,
205 "%s: Could not get mailbox status.\n", __func__
);
209 qdev
->link_status
= mbcp
->mbox_out
[1];
210 QPRINTK(qdev
, DRV
, ERR
, "Link Up.\n");
212 /* If we're coming back from an IDC event
213 * then set up the CAM and frame routing.
215 if (test_bit(QL_CAM_RT_SET
, &qdev
->flags
)) {
216 status
= ql_cam_route_initialize(qdev
);
218 QPRINTK(qdev
, IFUP
, ERR
,
219 "Failed to init CAM/Routing tables.\n");
222 clear_bit(QL_CAM_RT_SET
, &qdev
->flags
);
225 /* Queue up a worker to check the frame
226 * size information, and fix it if it's not
229 if (!test_bit(QL_PORT_CFG
, &qdev
->flags
)) {
230 QPRINTK(qdev
, DRV
, ERR
, "Queue Port Config Worker!\n");
231 set_bit(QL_PORT_CFG
, &qdev
->flags
);
232 /* Begin polled mode early so
233 * we don't get another interrupt
234 * when we leave mpi_worker dpc.
236 ql_write32(qdev
, INTR_MASK
, (INTR_MASK_PI
<< 16));
237 queue_delayed_work(qdev
->workqueue
,
238 &qdev
->mpi_port_cfg_work
, 0);
244 static void ql_link_down(struct ql_adapter
*qdev
, struct mbox_params
*mbcp
)
250 status
= ql_get_mb_sts(qdev
, mbcp
);
252 QPRINTK(qdev
, DRV
, ERR
, "Link down AEN broken!\n");
257 static int ql_sfp_in(struct ql_adapter
*qdev
, struct mbox_params
*mbcp
)
263 status
= ql_get_mb_sts(qdev
, mbcp
);
265 QPRINTK(qdev
, DRV
, ERR
, "SFP in AEN broken!\n");
267 QPRINTK(qdev
, DRV
, ERR
, "SFP insertion detected.\n");
272 static int ql_sfp_out(struct ql_adapter
*qdev
, struct mbox_params
*mbcp
)
278 status
= ql_get_mb_sts(qdev
, mbcp
);
280 QPRINTK(qdev
, DRV
, ERR
, "SFP out AEN broken!\n");
282 QPRINTK(qdev
, DRV
, ERR
, "SFP removal detected.\n");
287 static int ql_aen_lost(struct ql_adapter
*qdev
, struct mbox_params
*mbcp
)
293 status
= ql_get_mb_sts(qdev
, mbcp
);
295 QPRINTK(qdev
, DRV
, ERR
, "Lost AEN broken!\n");
298 QPRINTK(qdev
, DRV
, ERR
, "Lost AEN detected.\n");
299 for (i
= 0; i
< mbcp
->out_count
; i
++)
300 QPRINTK(qdev
, DRV
, ERR
, "mbox_out[%d] = 0x%.08x.\n",
301 i
, mbcp
->mbox_out
[i
]);
308 static void ql_init_fw_done(struct ql_adapter
*qdev
, struct mbox_params
*mbcp
)
314 status
= ql_get_mb_sts(qdev
, mbcp
);
316 QPRINTK(qdev
, DRV
, ERR
, "Firmware did not initialize!\n");
318 QPRINTK(qdev
, DRV
, ERR
, "Firmware Revision = 0x%.08x.\n",
320 status
= ql_cam_route_initialize(qdev
);
322 QPRINTK(qdev
, IFUP
, ERR
,
323 "Failed to init CAM/Routing tables.\n");
327 /* Process an async event and clear it unless it's an
329 * This can get called iteratively from the mpi_work thread
330 * when events arrive via an interrupt.
331 * It also gets called when a mailbox command is polling for
332 * it's completion. */
333 static int ql_mpi_handler(struct ql_adapter
*qdev
, struct mbox_params
*mbcp
)
336 int orig_count
= mbcp
->out_count
;
338 /* Just get mailbox zero for now. */
340 status
= ql_get_mb_sts(qdev
, mbcp
);
342 QPRINTK(qdev
, DRV
, ERR
,
343 "Could not read MPI, resetting ASIC!\n");
344 ql_queue_asic_error(qdev
);
348 switch (mbcp
->mbox_out
[0]) {
350 /* This case is only active when we arrive here
351 * as a result of issuing a mailbox command to
354 case MB_CMD_STS_INTRMDT
:
355 case MB_CMD_STS_GOOD
:
356 case MB_CMD_STS_INVLD_CMD
:
357 case MB_CMD_STS_XFC_ERR
:
358 case MB_CMD_STS_CSUM_ERR
:
360 case MB_CMD_STS_PARAM_ERR
:
361 /* We can only get mailbox status if we're polling from an
362 * unfinished command. Get the rest of the status data and
363 * return back to the caller.
364 * We only end up here when we're polling for a mailbox
365 * command completion.
367 mbcp
->out_count
= orig_count
;
368 status
= ql_get_mb_sts(qdev
, mbcp
);
371 /* We are being asked by firmware to accept
372 * a change to the port. This is only
373 * a change to max frame sizes (Tx/Rx), pause
374 * parameters, or loopback mode.
377 status
= ql_idc_req_aen(qdev
);
380 /* Process and inbound IDC event.
381 * This will happen when we're trying to
382 * change tx/rx max frame size, change pause
383 * parameters or loopback mode.
387 status
= ql_idc_cmplt_aen(qdev
);
391 ql_link_up(qdev
, mbcp
);
395 ql_link_down(qdev
, mbcp
);
398 case AEN_FW_INIT_DONE
:
399 /* If we're in process on executing the firmware,
400 * then convert the status to normal mailbox status.
402 if (mbcp
->mbox_in
[0] == MB_CMD_EX_FW
) {
403 mbcp
->out_count
= orig_count
;
404 status
= ql_get_mb_sts(qdev
, mbcp
);
405 mbcp
->mbox_out
[0] = MB_CMD_STS_GOOD
;
408 ql_init_fw_done(qdev
, mbcp
);
412 ql_sfp_in(qdev
, mbcp
);
415 case AEN_AEN_SFP_OUT
:
416 ql_sfp_out(qdev
, mbcp
);
419 /* This event can arrive at boot time or after an
420 * MPI reset if the firmware failed to initialize.
422 case AEN_FW_INIT_FAIL
:
423 /* If we're in process on executing the firmware,
424 * then convert the status to normal mailbox status.
426 if (mbcp
->mbox_in
[0] == MB_CMD_EX_FW
) {
427 mbcp
->out_count
= orig_count
;
428 status
= ql_get_mb_sts(qdev
, mbcp
);
429 mbcp
->mbox_out
[0] = MB_CMD_STS_ERR
;
432 QPRINTK(qdev
, DRV
, ERR
,
433 "Firmware initialization failed.\n");
435 ql_queue_fw_error(qdev
);
439 QPRINTK(qdev
, DRV
, ERR
,
441 ql_queue_fw_error(qdev
);
446 ql_aen_lost(qdev
, mbcp
);
450 QPRINTK(qdev
, DRV
, ERR
,
451 "Unsupported AE %.08x.\n", mbcp
->mbox_out
[0]);
452 /* Clear the MPI firmware status. */
455 ql_write32(qdev
, CSR
, CSR_CMD_CLR_R2PCI_INT
);
456 /* Restore the original mailbox count to
457 * what the caller asked for. This can get
458 * changed when a mailbox command is waiting
459 * for a response and an AEN arrives and
462 mbcp
->out_count
= orig_count
;
466 /* Execute a single mailbox command.
467 * mbcp is a pointer to an array of u32. Each
468 * element in the array contains the value for it's
469 * respective mailbox register.
471 static int ql_mailbox_command(struct ql_adapter
*qdev
, struct mbox_params
*mbcp
)
477 /* Begin polled mode for MPI */
478 ql_write32(qdev
, INTR_MASK
, (INTR_MASK_PI
<< 16));
480 /* Load the mailbox registers and wake up MPI RISC. */
481 status
= ql_exec_mb_cmd(qdev
, mbcp
);
486 /* If we're generating a system error, then there's nothing
489 if (mbcp
->mbox_in
[0] == MB_CMD_MAKE_SYS_ERR
)
492 /* Wait for the command to complete. We loop
493 * here because some AEN might arrive while
494 * we're waiting for the mailbox command to
495 * complete. If more than 5 seconds expire we can
496 * assume something is wrong. */
497 count
= jiffies
+ HZ
* MAILBOX_TIMEOUT
;
499 /* Wait for the interrupt to come in. */
500 status
= ql_wait_mbx_cmd_cmplt(qdev
);
504 /* Process the event. If it's an AEN, it
505 * will be handled in-line or a worker
506 * will be spawned. If it's our completion
507 * we will catch it below.
509 status
= ql_mpi_handler(qdev
, mbcp
);
513 /* It's either the completion for our mailbox
514 * command complete or an AEN. If it's our
515 * completion then get out.
517 if (((mbcp
->mbox_out
[0] & 0x0000f000) ==
519 ((mbcp
->mbox_out
[0] & 0x0000f000) ==
522 } while (time_before(jiffies
, count
));
524 QPRINTK(qdev
, DRV
, ERR
,
525 "Timed out waiting for mailbox complete.\n");
531 /* Now we can clear the interrupt condition
532 * and look at our status.
534 ql_write32(qdev
, CSR
, CSR_CMD_CLR_R2PCI_INT
);
536 if (((mbcp
->mbox_out
[0] & 0x0000f000) !=
538 ((mbcp
->mbox_out
[0] & 0x0000f000) !=
539 MB_CMD_STS_INTRMDT
)) {
540 ql_display_mb_sts(qdev
, mbcp
);
544 /* End polled mode for MPI */
545 ql_write32(qdev
, INTR_MASK
, (INTR_MASK_PI
<< 16) | INTR_MASK_PI
);
550 /* Get MPI firmware version. This will be used for
551 * driver banner and for ethtool info.
552 * Returns zero on success.
554 int ql_mb_about_fw(struct ql_adapter
*qdev
)
556 struct mbox_params mbc
;
557 struct mbox_params
*mbcp
= &mbc
;
560 memset(mbcp
, 0, sizeof(struct mbox_params
));
565 mbcp
->mbox_in
[0] = MB_CMD_ABOUT_FW
;
567 status
= ql_mailbox_command(qdev
, mbcp
);
571 if (mbcp
->mbox_out
[0] != MB_CMD_STS_GOOD
) {
572 QPRINTK(qdev
, DRV
, ERR
,
573 "Failed about firmware command\n");
577 /* Store the firmware version */
578 qdev
->fw_rev_id
= mbcp
->mbox_out
[1];
583 /* Get functional state for MPI firmware.
584 * Returns zero on success.
586 int ql_mb_get_fw_state(struct ql_adapter
*qdev
)
588 struct mbox_params mbc
;
589 struct mbox_params
*mbcp
= &mbc
;
592 memset(mbcp
, 0, sizeof(struct mbox_params
));
597 mbcp
->mbox_in
[0] = MB_CMD_GET_FW_STATE
;
599 status
= ql_mailbox_command(qdev
, mbcp
);
603 if (mbcp
->mbox_out
[0] != MB_CMD_STS_GOOD
) {
604 QPRINTK(qdev
, DRV
, ERR
,
605 "Failed Get Firmware State.\n");
609 /* If bit zero is set in mbx 1 then the firmware is
610 * running, but not initialized. This should never
613 if (mbcp
->mbox_out
[1] & 1) {
614 QPRINTK(qdev
, DRV
, ERR
,
615 "Firmware waiting for initialization.\n");
622 /* Send and ACK mailbox command to the firmware to
623 * let it continue with the change.
625 int ql_mb_idc_ack(struct ql_adapter
*qdev
)
627 struct mbox_params mbc
;
628 struct mbox_params
*mbcp
= &mbc
;
631 memset(mbcp
, 0, sizeof(struct mbox_params
));
636 mbcp
->mbox_in
[0] = MB_CMD_IDC_ACK
;
637 mbcp
->mbox_in
[1] = qdev
->idc_mbc
.mbox_out
[1];
638 mbcp
->mbox_in
[2] = qdev
->idc_mbc
.mbox_out
[2];
639 mbcp
->mbox_in
[3] = qdev
->idc_mbc
.mbox_out
[3];
640 mbcp
->mbox_in
[4] = qdev
->idc_mbc
.mbox_out
[4];
642 status
= ql_mailbox_command(qdev
, mbcp
);
646 if (mbcp
->mbox_out
[0] != MB_CMD_STS_GOOD
) {
647 QPRINTK(qdev
, DRV
, ERR
,
648 "Failed IDC ACK send.\n");
654 /* Get link settings and maximum frame size settings
655 * for the current port.
656 * Most likely will block.
658 static int ql_mb_set_port_cfg(struct ql_adapter
*qdev
)
660 struct mbox_params mbc
;
661 struct mbox_params
*mbcp
= &mbc
;
664 memset(mbcp
, 0, sizeof(struct mbox_params
));
669 mbcp
->mbox_in
[0] = MB_CMD_SET_PORT_CFG
;
670 mbcp
->mbox_in
[1] = qdev
->link_config
;
671 mbcp
->mbox_in
[2] = qdev
->max_frame_size
;
674 status
= ql_mailbox_command(qdev
, mbcp
);
678 if (mbcp
->mbox_out
[0] == MB_CMD_STS_INTRMDT
) {
679 QPRINTK(qdev
, DRV
, ERR
,
680 "Port Config sent, wait for IDC.\n");
681 } else if (mbcp
->mbox_out
[0] != MB_CMD_STS_GOOD
) {
682 QPRINTK(qdev
, DRV
, ERR
,
683 "Failed Set Port Configuration.\n");
689 /* Get link settings and maximum frame size settings
690 * for the current port.
691 * Most likely will block.
693 static int ql_mb_get_port_cfg(struct ql_adapter
*qdev
)
695 struct mbox_params mbc
;
696 struct mbox_params
*mbcp
= &mbc
;
699 memset(mbcp
, 0, sizeof(struct mbox_params
));
704 mbcp
->mbox_in
[0] = MB_CMD_GET_PORT_CFG
;
706 status
= ql_mailbox_command(qdev
, mbcp
);
710 if (mbcp
->mbox_out
[0] != MB_CMD_STS_GOOD
) {
711 QPRINTK(qdev
, DRV
, ERR
,
712 "Failed Get Port Configuration.\n");
715 QPRINTK(qdev
, DRV
, DEBUG
,
716 "Passed Get Port Configuration.\n");
717 qdev
->link_config
= mbcp
->mbox_out
[1];
718 qdev
->max_frame_size
= mbcp
->mbox_out
[2];
723 /* IDC - Inter Device Communication...
724 * Some firmware commands require consent of adjacent FCOE
725 * function. This function waits for the OK, or a
726 * counter-request for a little more time.i
727 * The firmware will complete the request if the other
728 * function doesn't respond.
730 static int ql_idc_wait(struct ql_adapter
*qdev
)
732 int status
= -ETIMEDOUT
;
733 long wait_time
= 1 * HZ
;
734 struct mbox_params
*mbcp
= &qdev
->idc_mbc
;
736 /* Wait here for the command to complete
737 * via the IDC process.
740 wait_for_completion_timeout(&qdev
->ide_completion
,
743 QPRINTK(qdev
, DRV
, ERR
,
747 /* Now examine the response from the IDC process.
748 * We might have a good completion or a request for
751 if (mbcp
->mbox_out
[0] == AEN_IDC_EXT
) {
752 QPRINTK(qdev
, DRV
, ERR
,
753 "IDC Time Extension from function.\n");
754 wait_time
+= (mbcp
->mbox_out
[1] >> 8) & 0x0000000f;
755 } else if (mbcp
->mbox_out
[0] == AEN_IDC_CMPLT
) {
756 QPRINTK(qdev
, DRV
, ERR
,
761 QPRINTK(qdev
, DRV
, ERR
,
762 "IDC: Invalid State 0x%.04x.\n",
772 int ql_mb_set_mgmnt_traffic_ctl(struct ql_adapter
*qdev
, u32 control
)
774 struct mbox_params mbc
;
775 struct mbox_params
*mbcp
= &mbc
;
778 memset(mbcp
, 0, sizeof(struct mbox_params
));
783 mbcp
->mbox_in
[0] = MB_CMD_SET_MGMNT_TFK_CTL
;
784 mbcp
->mbox_in
[1] = control
;
786 status
= ql_mailbox_command(qdev
, mbcp
);
790 if (mbcp
->mbox_out
[0] == MB_CMD_STS_GOOD
)
793 if (mbcp
->mbox_out
[0] == MB_CMD_STS_INVLD_CMD
) {
794 QPRINTK(qdev
, DRV
, ERR
,
795 "Command not supported by firmware.\n");
797 } else if (mbcp
->mbox_out
[0] == MB_CMD_STS_ERR
) {
798 /* This indicates that the firmware is
799 * already in the state we are trying to
802 QPRINTK(qdev
, DRV
, ERR
,
803 "Command parameters make no change.\n");
808 /* Returns a negative error code or the mailbox command status. */
809 static int ql_mb_get_mgmnt_traffic_ctl(struct ql_adapter
*qdev
, u32
*control
)
811 struct mbox_params mbc
;
812 struct mbox_params
*mbcp
= &mbc
;
815 memset(mbcp
, 0, sizeof(struct mbox_params
));
821 mbcp
->mbox_in
[0] = MB_CMD_GET_MGMNT_TFK_CTL
;
823 status
= ql_mailbox_command(qdev
, mbcp
);
827 if (mbcp
->mbox_out
[0] == MB_CMD_STS_GOOD
) {
828 *control
= mbcp
->mbox_in
[1];
832 if (mbcp
->mbox_out
[0] == MB_CMD_STS_INVLD_CMD
) {
833 QPRINTK(qdev
, DRV
, ERR
,
834 "Command not supported by firmware.\n");
836 } else if (mbcp
->mbox_out
[0] == MB_CMD_STS_ERR
) {
837 QPRINTK(qdev
, DRV
, ERR
,
838 "Failed to get MPI traffic control.\n");
844 int ql_wait_fifo_empty(struct ql_adapter
*qdev
)
847 u32 mgmnt_fifo_empty
;
851 nic_fifo_empty
= ql_read32(qdev
, STS
) & STS_NFE
;
852 ql_mb_get_mgmnt_traffic_ctl(qdev
, &mgmnt_fifo_empty
);
853 mgmnt_fifo_empty
&= MB_GET_MPI_TFK_FIFO_EMPTY
;
854 if (nic_fifo_empty
&& mgmnt_fifo_empty
)
857 } while (count
-- > 0);
861 /* API called in work thread context to set new TX/RX
862 * maximum frame size values to match MTU.
864 static int ql_set_port_cfg(struct ql_adapter
*qdev
)
868 status
= ql_mb_set_port_cfg(qdev
);
872 status
= ql_idc_wait(qdev
);
876 /* The following routines are worker threads that process
877 * events that may sleep waiting for completion.
880 /* This thread gets the maximum TX and RX frame size values
881 * from the firmware and, if necessary, changes them to match
884 void ql_mpi_port_cfg_work(struct work_struct
*work
)
886 struct ql_adapter
*qdev
=
887 container_of(work
, struct ql_adapter
, mpi_port_cfg_work
.work
);
891 status
= ql_mb_get_port_cfg(qdev
);
894 QPRINTK(qdev
, DRV
, ERR
,
895 "Bug: Failed to get port config data.\n");
899 if (qdev
->link_config
& CFG_JUMBO_FRAME_SIZE
&&
900 qdev
->max_frame_size
==
901 CFG_DEFAULT_MAX_FRAME_SIZE
)
904 qdev
->link_config
|= CFG_JUMBO_FRAME_SIZE
;
905 qdev
->max_frame_size
= CFG_DEFAULT_MAX_FRAME_SIZE
;
906 status
= ql_set_port_cfg(qdev
);
908 QPRINTK(qdev
, DRV
, ERR
,
909 "Bug: Failed to set port config data.\n");
913 clear_bit(QL_PORT_CFG
, &qdev
->flags
);
916 ql_queue_fw_error(qdev
);
920 /* Process an inter-device request. This is issues by
921 * the firmware in response to another function requesting
922 * a change to the port. We set a flag to indicate a change
923 * has been made and then send a mailbox command ACKing
924 * the change request.
926 void ql_mpi_idc_work(struct work_struct
*work
)
928 struct ql_adapter
*qdev
=
929 container_of(work
, struct ql_adapter
, mpi_idc_work
.work
);
931 struct mbox_params
*mbcp
= &qdev
->idc_mbc
;
934 aen
= mbcp
->mbox_out
[1] >> 16;
938 QPRINTK(qdev
, DRV
, ERR
,
939 "Bug: Unhandled IDC action.\n");
941 case MB_CMD_PORT_RESET
:
942 case MB_CMD_SET_PORT_CFG
:
945 /* Signal the resulting link up AEN
946 * that the frame routing and mac addr
949 set_bit(QL_CAM_RT_SET
, &qdev
->flags
);
951 status
= ql_mb_idc_ack(qdev
);
954 QPRINTK(qdev
, DRV
, ERR
,
955 "Bug: No pending IDC!\n");
960 void ql_mpi_work(struct work_struct
*work
)
962 struct ql_adapter
*qdev
=
963 container_of(work
, struct ql_adapter
, mpi_work
.work
);
964 struct mbox_params mbc
;
965 struct mbox_params
*mbcp
= &mbc
;
969 /* Begin polled mode for MPI */
970 ql_write32(qdev
, INTR_MASK
, (INTR_MASK_PI
<< 16));
972 while (ql_read32(qdev
, STS
) & STS_PI
) {
973 memset(mbcp
, 0, sizeof(struct mbox_params
));
975 /* Don't continue if an async event
976 * did not complete properly.
978 err
= ql_mpi_handler(qdev
, mbcp
);
983 /* End polled mode for MPI */
984 ql_write32(qdev
, INTR_MASK
, (INTR_MASK_PI
<< 16) | INTR_MASK_PI
);
986 ql_enable_completion_interrupt(qdev
, 0);
989 void ql_mpi_reset_work(struct work_struct
*work
)
991 struct ql_adapter
*qdev
=
992 container_of(work
, struct ql_adapter
, mpi_reset_work
.work
);
993 cancel_delayed_work_sync(&qdev
->mpi_work
);
994 cancel_delayed_work_sync(&qdev
->mpi_port_cfg_work
);
995 cancel_delayed_work_sync(&qdev
->mpi_idc_work
);
996 ql_soft_reset_mpi_risc(qdev
);