OMAP3: PM: decouple PER and CORE context save and restore
[linux-ginger.git] / drivers / net / qlge / qlge_mpi.c
blob99e58e3f8e22a59b6d83f5130bd90f4f789e618b
1 #include "qlge.h"
3 static void ql_display_mb_sts(struct ql_adapter *qdev,
4 struct mbox_params *mbcp)
6 int i;
7 static char *err_sts[] = {
8 "Command Complete",
9 "Command Not Supported",
10 "Host Interface Error",
11 "Checksum Error",
12 "Unused Completion Status",
13 "Test Failed",
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)
25 int status;
26 /* wait for reg to come ready */
27 status = ql_wait_reg_rdy(qdev, PROC_ADDR, PROC_ADDR_RDY, PROC_ADDR_ERR);
28 if (status)
29 goto exit;
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);
34 if (status)
35 goto exit;
36 /* get the data */
37 *data = ql_read32(qdev, PROC_DATA);
38 exit:
39 return status;
42 int ql_write_mpi_reg(struct ql_adapter *qdev, u32 reg, u32 data)
44 int status = 0;
45 /* wait for reg to come ready */
46 status = ql_wait_reg_rdy(qdev, PROC_ADDR, PROC_ADDR_RDY, PROC_ADDR_ERR);
47 if (status)
48 goto exit;
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);
55 if (status)
56 goto exit;
57 exit:
58 return status;
61 int ql_soft_reset_mpi_risc(struct ql_adapter *qdev)
63 int status;
64 status = ql_write_mpi_reg(qdev, 0x00001010, 1);
65 return status;
68 static int ql_get_mb_sts(struct ql_adapter *qdev, struct mbox_params *mbcp)
70 int i, status;
72 status = ql_sem_spinlock(qdev, SEM_PROC_REG_MASK);
73 if (status)
74 return -EBUSY;
75 for (i = 0; i < mbcp->out_count; i++) {
76 status =
77 ql_read_mpi_reg(qdev, qdev->mailbox_out + i,
78 &mbcp->mbox_out[i]);
79 if (status) {
80 QPRINTK(qdev, DRV, ERR, "Failed mailbox read.\n");
81 break;
84 ql_sem_unlock(qdev, SEM_PROC_REG_MASK); /* does flush too */
85 return status;
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)
93 int count = 100;
94 u32 value;
96 do {
97 value = ql_read32(qdev, STS);
98 if (value & STS_PI)
99 return 0;
100 mdelay(UDELAY_DELAY); /* 100ms */
101 } while (--count);
102 return -ETIMEDOUT;
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)
110 int i, status;
113 * Make sure there's nothing pending.
114 * This shouldn't happen.
116 if (ql_read32(qdev, CSR) & CSR_HRI)
117 return -EIO;
119 status = ql_sem_spinlock(qdev, SEM_PROC_REG_MASK);
120 if (status)
121 return status;
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,
128 mbcp->mbox_in[i]);
129 if (status)
130 goto end;
133 * Wake up the MPI firmware.
135 ql_write32(qdev, CSR, CSR_CMD_SET_H2R_INT);
136 end:
137 ql_sem_unlock(qdev, SEM_PROC_REG_MASK);
138 return status;
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)
150 int status;
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;
158 mbcp->out_count = 4;
159 status = ql_get_mb_sts(qdev, mbcp);
160 if (status) {
161 QPRINTK(qdev, DRV, ERR,
162 "Could not read MPI, resetting ASIC!\n");
163 ql_queue_asic_error(qdev);
164 } else {
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);
172 return status;
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)
180 int status;
181 struct mbox_params *mbcp = &qdev->idc_mbc;
182 mbcp->out_count = 4;
183 status = ql_get_mb_sts(qdev, mbcp);
184 if (status) {
185 QPRINTK(qdev, DRV, ERR,
186 "Could not read MPI, resetting RISC!\n");
187 ql_queue_fw_error(qdev);
188 } else
189 /* Wake up the sleeping mpi_idc_work thread that is
190 * waiting for this event.
192 complete(&qdev->ide_completion);
194 return status;
197 static void ql_link_up(struct ql_adapter *qdev, struct mbox_params *mbcp)
199 int status;
200 mbcp->out_count = 2;
202 status = ql_get_mb_sts(qdev, mbcp);
203 if (status) {
204 QPRINTK(qdev, DRV, ERR,
205 "%s: Could not get mailbox status.\n", __func__);
206 return;
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);
217 if (status) {
218 QPRINTK(qdev, IFUP, ERR,
219 "Failed to init CAM/Routing tables.\n");
220 return;
221 } else
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
227 * to our liking.
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);
241 ql_link_on(qdev);
244 static void ql_link_down(struct ql_adapter *qdev, struct mbox_params *mbcp)
246 int status;
248 mbcp->out_count = 3;
250 status = ql_get_mb_sts(qdev, mbcp);
251 if (status)
252 QPRINTK(qdev, DRV, ERR, "Link down AEN broken!\n");
254 ql_link_off(qdev);
257 static int ql_sfp_in(struct ql_adapter *qdev, struct mbox_params *mbcp)
259 int status;
261 mbcp->out_count = 5;
263 status = ql_get_mb_sts(qdev, mbcp);
264 if (status)
265 QPRINTK(qdev, DRV, ERR, "SFP in AEN broken!\n");
266 else
267 QPRINTK(qdev, DRV, ERR, "SFP insertion detected.\n");
269 return status;
272 static int ql_sfp_out(struct ql_adapter *qdev, struct mbox_params *mbcp)
274 int status;
276 mbcp->out_count = 1;
278 status = ql_get_mb_sts(qdev, mbcp);
279 if (status)
280 QPRINTK(qdev, DRV, ERR, "SFP out AEN broken!\n");
281 else
282 QPRINTK(qdev, DRV, ERR, "SFP removal detected.\n");
284 return status;
287 static int ql_aen_lost(struct ql_adapter *qdev, struct mbox_params *mbcp)
289 int status;
291 mbcp->out_count = 6;
293 status = ql_get_mb_sts(qdev, mbcp);
294 if (status)
295 QPRINTK(qdev, DRV, ERR, "Lost AEN broken!\n");
296 else {
297 int i;
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]);
305 return status;
308 static void ql_init_fw_done(struct ql_adapter *qdev, struct mbox_params *mbcp)
310 int status;
312 mbcp->out_count = 2;
314 status = ql_get_mb_sts(qdev, mbcp);
315 if (status) {
316 QPRINTK(qdev, DRV, ERR, "Firmware did not initialize!\n");
317 } else {
318 QPRINTK(qdev, DRV, ERR, "Firmware Revision = 0x%.08x.\n",
319 mbcp->mbox_out[1]);
320 status = ql_cam_route_initialize(qdev);
321 if (status)
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
328 * error condition.
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)
335 int status;
336 int orig_count = mbcp->out_count;
338 /* Just get mailbox zero for now. */
339 mbcp->out_count = 1;
340 status = ql_get_mb_sts(qdev, mbcp);
341 if (status) {
342 QPRINTK(qdev, DRV, ERR,
343 "Could not read MPI, resetting ASIC!\n");
344 ql_queue_asic_error(qdev);
345 goto end;
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
352 * the firmware.
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:
359 case MB_CMD_STS_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);
369 return status;
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.
376 case AEN_IDC_REQ:
377 status = ql_idc_req_aen(qdev);
378 break;
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.
385 case AEN_IDC_CMPLT:
386 case AEN_IDC_EXT:
387 status = ql_idc_cmplt_aen(qdev);
388 break;
390 case AEN_LINK_UP:
391 ql_link_up(qdev, mbcp);
392 break;
394 case AEN_LINK_DOWN:
395 ql_link_down(qdev, mbcp);
396 break;
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;
406 return status;
408 ql_init_fw_done(qdev, mbcp);
409 break;
411 case AEN_AEN_SFP_IN:
412 ql_sfp_in(qdev, mbcp);
413 break;
415 case AEN_AEN_SFP_OUT:
416 ql_sfp_out(qdev, mbcp);
417 break;
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;
430 return status;
432 QPRINTK(qdev, DRV, ERR,
433 "Firmware initialization failed.\n");
434 status = -EIO;
435 ql_queue_fw_error(qdev);
436 break;
438 case AEN_SYS_ERR:
439 QPRINTK(qdev, DRV, ERR,
440 "System Error.\n");
441 ql_queue_fw_error(qdev);
442 status = -EIO;
443 break;
445 case AEN_AEN_LOST:
446 ql_aen_lost(qdev, mbcp);
447 break;
449 default:
450 QPRINTK(qdev, DRV, ERR,
451 "Unsupported AE %.08x.\n", mbcp->mbox_out[0]);
452 /* Clear the MPI firmware status. */
454 end:
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
460 * is handled.
461 * */
462 mbcp->out_count = orig_count;
463 return status;
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)
473 int status, count;
476 /* Begin polled mode for MPI */
477 ql_write32(qdev, INTR_MASK, (INTR_MASK_PI << 16));
479 /* Load the mailbox registers and wake up MPI RISC. */
480 status = ql_exec_mb_cmd(qdev, mbcp);
481 if (status)
482 goto end;
485 /* If we're generating a system error, then there's nothing
486 * to wait for.
488 if (mbcp->mbox_in[0] == MB_CMD_MAKE_SYS_ERR)
489 goto end;
491 /* Wait for the command to complete. We loop
492 * here because some AEN might arrive while
493 * we're waiting for the mailbox command to
494 * complete. If more than 5 arrive then we can
495 * assume something is wrong. */
496 count = 5;
497 do {
498 /* Wait for the interrupt to come in. */
499 status = ql_wait_mbx_cmd_cmplt(qdev);
500 if (status)
501 goto end;
503 /* Process the event. If it's an AEN, it
504 * will be handled in-line or a worker
505 * will be spawned. If it's our completion
506 * we will catch it below.
508 status = ql_mpi_handler(qdev, mbcp);
509 if (status)
510 goto end;
512 /* It's either the completion for our mailbox
513 * command complete or an AEN. If it's our
514 * completion then get out.
516 if (((mbcp->mbox_out[0] & 0x0000f000) ==
517 MB_CMD_STS_GOOD) ||
518 ((mbcp->mbox_out[0] & 0x0000f000) ==
519 MB_CMD_STS_INTRMDT))
520 break;
521 } while (--count);
523 if (!count) {
524 QPRINTK(qdev, DRV, ERR,
525 "Timed out waiting for mailbox complete.\n");
526 status = -ETIMEDOUT;
527 goto end;
530 /* Now we can clear the interrupt condition
531 * and look at our status.
533 ql_write32(qdev, CSR, CSR_CMD_CLR_R2PCI_INT);
535 if (((mbcp->mbox_out[0] & 0x0000f000) !=
536 MB_CMD_STS_GOOD) &&
537 ((mbcp->mbox_out[0] & 0x0000f000) !=
538 MB_CMD_STS_INTRMDT)) {
539 ql_display_mb_sts(qdev, mbcp);
540 status = -EIO;
542 end:
543 /* End polled mode for MPI */
544 ql_write32(qdev, INTR_MASK, (INTR_MASK_PI << 16) | INTR_MASK_PI);
545 return status;
549 /* Get MPI firmware version. This will be used for
550 * driver banner and for ethtool info.
551 * Returns zero on success.
553 int ql_mb_about_fw(struct ql_adapter *qdev)
555 struct mbox_params mbc;
556 struct mbox_params *mbcp = &mbc;
557 int status = 0;
559 memset(mbcp, 0, sizeof(struct mbox_params));
561 mbcp->in_count = 1;
562 mbcp->out_count = 3;
564 mbcp->mbox_in[0] = MB_CMD_ABOUT_FW;
566 status = ql_mailbox_command(qdev, mbcp);
567 if (status)
568 return status;
570 if (mbcp->mbox_out[0] != MB_CMD_STS_GOOD) {
571 QPRINTK(qdev, DRV, ERR,
572 "Failed about firmware command\n");
573 status = -EIO;
576 /* Store the firmware version */
577 qdev->fw_rev_id = mbcp->mbox_out[1];
579 return status;
582 /* Get functional state for MPI firmware.
583 * Returns zero on success.
585 int ql_mb_get_fw_state(struct ql_adapter *qdev)
587 struct mbox_params mbc;
588 struct mbox_params *mbcp = &mbc;
589 int status = 0;
591 memset(mbcp, 0, sizeof(struct mbox_params));
593 mbcp->in_count = 1;
594 mbcp->out_count = 2;
596 mbcp->mbox_in[0] = MB_CMD_GET_FW_STATE;
598 status = ql_mailbox_command(qdev, mbcp);
599 if (status)
600 return status;
602 if (mbcp->mbox_out[0] != MB_CMD_STS_GOOD) {
603 QPRINTK(qdev, DRV, ERR,
604 "Failed Get Firmware State.\n");
605 status = -EIO;
608 /* If bit zero is set in mbx 1 then the firmware is
609 * running, but not initialized. This should never
610 * happen.
612 if (mbcp->mbox_out[1] & 1) {
613 QPRINTK(qdev, DRV, ERR,
614 "Firmware waiting for initialization.\n");
615 status = -EIO;
618 return status;
621 /* Send and ACK mailbox command to the firmware to
622 * let it continue with the change.
624 int ql_mb_idc_ack(struct ql_adapter *qdev)
626 struct mbox_params mbc;
627 struct mbox_params *mbcp = &mbc;
628 int status = 0;
630 memset(mbcp, 0, sizeof(struct mbox_params));
632 mbcp->in_count = 5;
633 mbcp->out_count = 1;
635 mbcp->mbox_in[0] = MB_CMD_IDC_ACK;
636 mbcp->mbox_in[1] = qdev->idc_mbc.mbox_out[1];
637 mbcp->mbox_in[2] = qdev->idc_mbc.mbox_out[2];
638 mbcp->mbox_in[3] = qdev->idc_mbc.mbox_out[3];
639 mbcp->mbox_in[4] = qdev->idc_mbc.mbox_out[4];
641 status = ql_mailbox_command(qdev, mbcp);
642 if (status)
643 return status;
645 if (mbcp->mbox_out[0] != MB_CMD_STS_GOOD) {
646 QPRINTK(qdev, DRV, ERR,
647 "Failed IDC ACK send.\n");
648 status = -EIO;
650 return status;
653 /* Get link settings and maximum frame size settings
654 * for the current port.
655 * Most likely will block.
657 static int ql_mb_set_port_cfg(struct ql_adapter *qdev)
659 struct mbox_params mbc;
660 struct mbox_params *mbcp = &mbc;
661 int status = 0;
663 memset(mbcp, 0, sizeof(struct mbox_params));
665 mbcp->in_count = 3;
666 mbcp->out_count = 1;
668 mbcp->mbox_in[0] = MB_CMD_SET_PORT_CFG;
669 mbcp->mbox_in[1] = qdev->link_config;
670 mbcp->mbox_in[2] = qdev->max_frame_size;
673 status = ql_mailbox_command(qdev, mbcp);
674 if (status)
675 return status;
677 if (mbcp->mbox_out[0] == MB_CMD_STS_INTRMDT) {
678 QPRINTK(qdev, DRV, ERR,
679 "Port Config sent, wait for IDC.\n");
680 } else if (mbcp->mbox_out[0] != MB_CMD_STS_GOOD) {
681 QPRINTK(qdev, DRV, ERR,
682 "Failed Set Port Configuration.\n");
683 status = -EIO;
685 return status;
688 /* Get link settings and maximum frame size settings
689 * for the current port.
690 * Most likely will block.
692 static int ql_mb_get_port_cfg(struct ql_adapter *qdev)
694 struct mbox_params mbc;
695 struct mbox_params *mbcp = &mbc;
696 int status = 0;
698 memset(mbcp, 0, sizeof(struct mbox_params));
700 mbcp->in_count = 1;
701 mbcp->out_count = 3;
703 mbcp->mbox_in[0] = MB_CMD_GET_PORT_CFG;
705 status = ql_mailbox_command(qdev, mbcp);
706 if (status)
707 return status;
709 if (mbcp->mbox_out[0] != MB_CMD_STS_GOOD) {
710 QPRINTK(qdev, DRV, ERR,
711 "Failed Get Port Configuration.\n");
712 status = -EIO;
713 } else {
714 QPRINTK(qdev, DRV, DEBUG,
715 "Passed Get Port Configuration.\n");
716 qdev->link_config = mbcp->mbox_out[1];
717 qdev->max_frame_size = mbcp->mbox_out[2];
719 return status;
722 /* IDC - Inter Device Communication...
723 * Some firmware commands require consent of adjacent FCOE
724 * function. This function waits for the OK, or a
725 * counter-request for a little more time.i
726 * The firmware will complete the request if the other
727 * function doesn't respond.
729 static int ql_idc_wait(struct ql_adapter *qdev)
731 int status = -ETIMEDOUT;
732 long wait_time = 1 * HZ;
733 struct mbox_params *mbcp = &qdev->idc_mbc;
734 do {
735 /* Wait here for the command to complete
736 * via the IDC process.
738 wait_time =
739 wait_for_completion_timeout(&qdev->ide_completion,
740 wait_time);
741 if (!wait_time) {
742 QPRINTK(qdev, DRV, ERR,
743 "IDC Timeout.\n");
744 break;
746 /* Now examine the response from the IDC process.
747 * We might have a good completion or a request for
748 * more wait time.
750 if (mbcp->mbox_out[0] == AEN_IDC_EXT) {
751 QPRINTK(qdev, DRV, ERR,
752 "IDC Time Extension from function.\n");
753 wait_time += (mbcp->mbox_out[1] >> 8) & 0x0000000f;
754 } else if (mbcp->mbox_out[0] == AEN_IDC_CMPLT) {
755 QPRINTK(qdev, DRV, ERR,
756 "IDC Success.\n");
757 status = 0;
758 break;
759 } else {
760 QPRINTK(qdev, DRV, ERR,
761 "IDC: Invalid State 0x%.04x.\n",
762 mbcp->mbox_out[0]);
763 status = -EIO;
764 break;
766 } while (wait_time);
768 return status;
771 int ql_mb_set_mgmnt_traffic_ctl(struct ql_adapter *qdev, u32 control)
773 struct mbox_params mbc;
774 struct mbox_params *mbcp = &mbc;
775 int status;
777 memset(mbcp, 0, sizeof(struct mbox_params));
779 mbcp->in_count = 1;
780 mbcp->out_count = 2;
782 mbcp->mbox_in[0] = MB_CMD_SET_MGMNT_TFK_CTL;
783 mbcp->mbox_in[1] = control;
785 status = ql_mailbox_command(qdev, mbcp);
786 if (status)
787 return status;
789 if (mbcp->mbox_out[0] == MB_CMD_STS_GOOD)
790 return status;
792 if (mbcp->mbox_out[0] == MB_CMD_STS_INVLD_CMD) {
793 QPRINTK(qdev, DRV, ERR,
794 "Command not supported by firmware.\n");
795 status = -EINVAL;
796 } else if (mbcp->mbox_out[0] == MB_CMD_STS_ERR) {
797 /* This indicates that the firmware is
798 * already in the state we are trying to
799 * change it to.
801 QPRINTK(qdev, DRV, ERR,
802 "Command parameters make no change.\n");
804 return status;
807 /* Returns a negative error code or the mailbox command status. */
808 static int ql_mb_get_mgmnt_traffic_ctl(struct ql_adapter *qdev, u32 *control)
810 struct mbox_params mbc;
811 struct mbox_params *mbcp = &mbc;
812 int status;
814 memset(mbcp, 0, sizeof(struct mbox_params));
815 *control = 0;
817 mbcp->in_count = 1;
818 mbcp->out_count = 1;
820 mbcp->mbox_in[0] = MB_CMD_GET_MGMNT_TFK_CTL;
822 status = ql_mailbox_command(qdev, mbcp);
823 if (status)
824 return status;
826 if (mbcp->mbox_out[0] == MB_CMD_STS_GOOD) {
827 *control = mbcp->mbox_in[1];
828 return status;
831 if (mbcp->mbox_out[0] == MB_CMD_STS_INVLD_CMD) {
832 QPRINTK(qdev, DRV, ERR,
833 "Command not supported by firmware.\n");
834 status = -EINVAL;
835 } else if (mbcp->mbox_out[0] == MB_CMD_STS_ERR) {
836 QPRINTK(qdev, DRV, ERR,
837 "Failed to get MPI traffic control.\n");
838 status = -EIO;
840 return status;
843 int ql_wait_fifo_empty(struct ql_adapter *qdev)
845 int count = 5;
846 u32 mgmnt_fifo_empty;
847 u32 nic_fifo_empty;
849 do {
850 nic_fifo_empty = ql_read32(qdev, STS) & STS_NFE;
851 ql_mb_get_mgmnt_traffic_ctl(qdev, &mgmnt_fifo_empty);
852 mgmnt_fifo_empty &= MB_GET_MPI_TFK_FIFO_EMPTY;
853 if (nic_fifo_empty && mgmnt_fifo_empty)
854 return 0;
855 msleep(100);
856 } while (count-- > 0);
857 return -ETIMEDOUT;
860 /* API called in work thread context to set new TX/RX
861 * maximum frame size values to match MTU.
863 static int ql_set_port_cfg(struct ql_adapter *qdev)
865 int status;
866 rtnl_lock();
867 status = ql_mb_set_port_cfg(qdev);
868 rtnl_unlock();
869 if (status)
870 return status;
871 status = ql_idc_wait(qdev);
872 return status;
875 /* The following routines are worker threads that process
876 * events that may sleep waiting for completion.
879 /* This thread gets the maximum TX and RX frame size values
880 * from the firmware and, if necessary, changes them to match
881 * the MTU setting.
883 void ql_mpi_port_cfg_work(struct work_struct *work)
885 struct ql_adapter *qdev =
886 container_of(work, struct ql_adapter, mpi_port_cfg_work.work);
887 int status;
889 rtnl_lock();
890 status = ql_mb_get_port_cfg(qdev);
891 rtnl_unlock();
892 if (status) {
893 QPRINTK(qdev, DRV, ERR,
894 "Bug: Failed to get port config data.\n");
895 goto err;
898 if (qdev->link_config & CFG_JUMBO_FRAME_SIZE &&
899 qdev->max_frame_size ==
900 CFG_DEFAULT_MAX_FRAME_SIZE)
901 goto end;
903 qdev->link_config |= CFG_JUMBO_FRAME_SIZE;
904 qdev->max_frame_size = CFG_DEFAULT_MAX_FRAME_SIZE;
905 status = ql_set_port_cfg(qdev);
906 if (status) {
907 QPRINTK(qdev, DRV, ERR,
908 "Bug: Failed to set port config data.\n");
909 goto err;
911 end:
912 clear_bit(QL_PORT_CFG, &qdev->flags);
913 return;
914 err:
915 ql_queue_fw_error(qdev);
916 goto end;
919 /* Process an inter-device request. This is issues by
920 * the firmware in response to another function requesting
921 * a change to the port. We set a flag to indicate a change
922 * has been made and then send a mailbox command ACKing
923 * the change request.
925 void ql_mpi_idc_work(struct work_struct *work)
927 struct ql_adapter *qdev =
928 container_of(work, struct ql_adapter, mpi_idc_work.work);
929 int status;
930 struct mbox_params *mbcp = &qdev->idc_mbc;
931 u32 aen;
933 aen = mbcp->mbox_out[1] >> 16;
935 switch (aen) {
936 default:
937 QPRINTK(qdev, DRV, ERR,
938 "Bug: Unhandled IDC action.\n");
939 break;
940 case MB_CMD_PORT_RESET:
941 case MB_CMD_SET_PORT_CFG:
942 case MB_CMD_STOP_FW:
943 ql_link_off(qdev);
944 /* Signal the resulting link up AEN
945 * that the frame routing and mac addr
946 * needs to be set.
947 * */
948 set_bit(QL_CAM_RT_SET, &qdev->flags);
949 rtnl_lock();
950 status = ql_mb_idc_ack(qdev);
951 rtnl_unlock();
952 if (status) {
953 QPRINTK(qdev, DRV, ERR,
954 "Bug: No pending IDC!\n");
959 void ql_mpi_work(struct work_struct *work)
961 struct ql_adapter *qdev =
962 container_of(work, struct ql_adapter, mpi_work.work);
963 struct mbox_params mbc;
964 struct mbox_params *mbcp = &mbc;
965 int err = 0;
967 rtnl_lock();
968 /* Begin polled mode for MPI */
969 ql_write32(qdev, INTR_MASK, (INTR_MASK_PI << 16));
971 while (ql_read32(qdev, STS) & STS_PI) {
972 memset(mbcp, 0, sizeof(struct mbox_params));
973 mbcp->out_count = 1;
974 /* Don't continue if an async event
975 * did not complete properly.
977 err = ql_mpi_handler(qdev, mbcp);
978 if (err)
979 break;
982 /* End polled mode for MPI */
983 ql_write32(qdev, INTR_MASK, (INTR_MASK_PI << 16) | INTR_MASK_PI);
984 rtnl_unlock();
985 ql_enable_completion_interrupt(qdev, 0);
988 void ql_mpi_reset_work(struct work_struct *work)
990 struct ql_adapter *qdev =
991 container_of(work, struct ql_adapter, mpi_reset_work.work);
992 cancel_delayed_work_sync(&qdev->mpi_work);
993 cancel_delayed_work_sync(&qdev->mpi_port_cfg_work);
994 cancel_delayed_work_sync(&qdev->mpi_idc_work);
995 ql_soft_reset_mpi_risc(qdev);