blob: 3304eb7df581961afba323ec14b41e614823d16c [file] [log] [blame]
Ron Mercerc4e84bd2008-09-18 11:56:28 -04001#include "qlge.h"
2
Ron Mercer8aae2602010-01-15 13:31:28 +00003int ql_unpause_mpi_risc(struct ql_adapter *qdev)
4{
5 u32 tmp;
6
7 /* Un-pause the RISC */
8 tmp = ql_read32(qdev, CSR);
9 if (!(tmp & CSR_RP))
10 return -EIO;
11
12 ql_write32(qdev, CSR, CSR_CMD_CLR_PAUSE);
13 return 0;
14}
15
16int ql_pause_mpi_risc(struct ql_adapter *qdev)
17{
18 u32 tmp;
19 int count = UDELAY_COUNT;
20
21 /* Pause the RISC */
22 ql_write32(qdev, CSR, CSR_CMD_SET_PAUSE);
23 do {
24 tmp = ql_read32(qdev, CSR);
25 if (tmp & CSR_RP)
26 break;
27 mdelay(UDELAY_DELAY);
28 count--;
29 } while (count);
30 return (count == 0) ? -ETIMEDOUT : 0;
31}
32
Ron Mercer2c1f73c2010-01-15 13:31:30 +000033int ql_hard_reset_mpi_risc(struct ql_adapter *qdev)
34{
35 u32 tmp;
36 int count = UDELAY_COUNT;
37
38 /* Reset the RISC */
39 ql_write32(qdev, CSR, CSR_CMD_SET_RST);
40 do {
41 tmp = ql_read32(qdev, CSR);
42 if (tmp & CSR_RR) {
43 ql_write32(qdev, CSR, CSR_CMD_CLR_RST);
44 break;
45 }
46 mdelay(UDELAY_DELAY);
47 count--;
48 } while (count);
49 return (count == 0) ? -ETIMEDOUT : 0;
50}
51
Ron Mercera2e809b2009-02-26 10:08:33 +000052int ql_read_mpi_reg(struct ql_adapter *qdev, u32 reg, u32 *data)
Ron Mercerc4e84bd2008-09-18 11:56:28 -040053{
54 int status;
55 /* wait for reg to come ready */
56 status = ql_wait_reg_rdy(qdev, PROC_ADDR, PROC_ADDR_RDY, PROC_ADDR_ERR);
57 if (status)
58 goto exit;
59 /* set up for reg read */
60 ql_write32(qdev, PROC_ADDR, reg | PROC_ADDR_R);
61 /* wait for reg to come ready */
62 status = ql_wait_reg_rdy(qdev, PROC_ADDR, PROC_ADDR_RDY, PROC_ADDR_ERR);
63 if (status)
64 goto exit;
65 /* get the data */
66 *data = ql_read32(qdev, PROC_DATA);
67exit:
68 return status;
69}
70
Ron Mercera2e809b2009-02-26 10:08:33 +000071int ql_write_mpi_reg(struct ql_adapter *qdev, u32 reg, u32 data)
72{
73 int status = 0;
74 /* wait for reg to come ready */
75 status = ql_wait_reg_rdy(qdev, PROC_ADDR, PROC_ADDR_RDY, PROC_ADDR_ERR);
76 if (status)
77 goto exit;
78 /* write the data to the data reg */
79 ql_write32(qdev, PROC_DATA, data);
80 /* trigger the write */
81 ql_write32(qdev, PROC_ADDR, reg);
82 /* wait for reg to come ready */
83 status = ql_wait_reg_rdy(qdev, PROC_ADDR, PROC_ADDR_RDY, PROC_ADDR_ERR);
84 if (status)
85 goto exit;
86exit:
87 return status;
88}
89
90int ql_soft_reset_mpi_risc(struct ql_adapter *qdev)
91{
92 int status;
93 status = ql_write_mpi_reg(qdev, 0x00001010, 1);
94 return status;
95}
96
Ron Mercer8aae2602010-01-15 13:31:28 +000097/* Determine if we are in charge of the firwmare. If
98 * we are the lower of the 2 NIC pcie functions, or if
99 * we are the higher function and the lower function
100 * is not enabled.
101 */
102int ql_own_firmware(struct ql_adapter *qdev)
103{
104 u32 temp;
105
106 /* If we are the lower of the 2 NIC functions
107 * on the chip the we are responsible for
108 * core dump and firmware reset after an error.
109 */
110 if (qdev->func < qdev->alt_func)
111 return 1;
112
113 /* If we are the higher of the 2 NIC functions
114 * on the chip and the lower function is not
115 * enabled, then we are responsible for
116 * core dump and firmware reset after an error.
117 */
118 temp = ql_read32(qdev, STS);
119 if (!(temp & (1 << (8 + qdev->alt_func))))
120 return 1;
121
122 return 0;
123
124}
125
Hannes Eder2f22d222008-12-26 00:04:53 -0800126static int ql_get_mb_sts(struct ql_adapter *qdev, struct mbox_params *mbcp)
Ron Mercerc4e84bd2008-09-18 11:56:28 -0400127{
128 int i, status;
129
130 status = ql_sem_spinlock(qdev, SEM_PROC_REG_MASK);
131 if (status)
132 return -EBUSY;
133 for (i = 0; i < mbcp->out_count; i++) {
134 status =
Ron Mercera2e809b2009-02-26 10:08:33 +0000135 ql_read_mpi_reg(qdev, qdev->mailbox_out + i,
Ron Mercerc4e84bd2008-09-18 11:56:28 -0400136 &mbcp->mbox_out[i]);
137 if (status) {
138 QPRINTK(qdev, DRV, ERR, "Failed mailbox read.\n");
139 break;
140 }
141 }
142 ql_sem_unlock(qdev, SEM_PROC_REG_MASK); /* does flush too */
143 return status;
144}
145
Ron Mercerca0413b2009-03-02 08:07:30 +0000146/* Wait for a single mailbox command to complete.
147 * Returns zero on success.
148 */
149static int ql_wait_mbx_cmd_cmplt(struct ql_adapter *qdev)
150{
Ron Mercer365da872009-06-07 13:58:29 +0000151 int count = 100;
Ron Mercerca0413b2009-03-02 08:07:30 +0000152 u32 value;
153
154 do {
155 value = ql_read32(qdev, STS);
156 if (value & STS_PI)
157 return 0;
Ron Mercer365da872009-06-07 13:58:29 +0000158 mdelay(UDELAY_DELAY); /* 100ms */
Ron Mercerca0413b2009-03-02 08:07:30 +0000159 } while (--count);
160 return -ETIMEDOUT;
161}
162
163/* Execute a single mailbox command.
164 * Caller must hold PROC_ADDR semaphore.
165 */
166static int ql_exec_mb_cmd(struct ql_adapter *qdev, struct mbox_params *mbcp)
167{
168 int i, status;
169
170 /*
171 * Make sure there's nothing pending.
172 * This shouldn't happen.
173 */
174 if (ql_read32(qdev, CSR) & CSR_HRI)
175 return -EIO;
176
177 status = ql_sem_spinlock(qdev, SEM_PROC_REG_MASK);
178 if (status)
179 return status;
180
181 /*
182 * Fill the outbound mailboxes.
183 */
184 for (i = 0; i < mbcp->in_count; i++) {
185 status = ql_write_mpi_reg(qdev, qdev->mailbox_in + i,
186 mbcp->mbox_in[i]);
187 if (status)
188 goto end;
189 }
190 /*
191 * Wake up the MPI firmware.
192 */
193 ql_write32(qdev, CSR, CSR_CMD_SET_H2R_INT);
194end:
195 ql_sem_unlock(qdev, SEM_PROC_REG_MASK);
196 return status;
197}
198
Ron Mercer2ee1e272009-03-03 12:10:33 +0000199/* We are being asked by firmware to accept
200 * a change to the port. This is only
201 * a change to max frame sizes (Tx/Rx), pause
Martin Olsson98a17082009-04-22 18:21:29 +0200202 * parameters, or loopback mode. We wake up a worker
Ron Mercer2ee1e272009-03-03 12:10:33 +0000203 * to handler processing this since a mailbox command
204 * will need to be sent to ACK the request.
205 */
206static int ql_idc_req_aen(struct ql_adapter *qdev)
207{
208 int status;
209 struct mbox_params *mbcp = &qdev->idc_mbc;
210
211 QPRINTK(qdev, DRV, ERR, "Enter!\n");
212 /* Get the status data and start up a thread to
213 * handle the request.
214 */
215 mbcp = &qdev->idc_mbc;
216 mbcp->out_count = 4;
217 status = ql_get_mb_sts(qdev, mbcp);
218 if (status) {
219 QPRINTK(qdev, DRV, ERR,
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
Ron Mercerbcc2cb3b2009-03-02 08:07:32 +0000233/* Process an inter-device event completion.
234 * If good, signal the caller's completion.
235 */
236static 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 QPRINTK(qdev, DRV, ERR,
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}
Ron Mercer5700abe2009-03-03 12:10:32 +0000254
Ron Mercerc4e84bd2008-09-18 11:56:28 -0400255static void ql_link_up(struct ql_adapter *qdev, struct mbox_params *mbcp)
256{
Ron Mercer5700abe2009-03-03 12:10:32 +0000257 int status;
Ron Mercerc4e84bd2008-09-18 11:56:28 -0400258 mbcp->out_count = 2;
259
Ron Mercer5700abe2009-03-03 12:10:32 +0000260 status = ql_get_mb_sts(qdev, mbcp);
261 if (status) {
262 QPRINTK(qdev, DRV, ERR,
263 "%s: Could not get mailbox status.\n", __func__);
264 return;
265 }
Ron Mercerc4e84bd2008-09-18 11:56:28 -0400266
267 qdev->link_status = mbcp->mbox_out[1];
268 QPRINTK(qdev, DRV, ERR, "Link Up.\n");
Ron Mercer5700abe2009-03-03 12:10:32 +0000269
Ron Mercer2ee1e272009-03-03 12:10:33 +0000270 /* 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 QPRINTK(qdev, IFUP, ERR,
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 QPRINTK(qdev, DRV, ERR, "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
Ron Mercer6a473302009-07-02 06:06:12 +0000299 ql_link_on(qdev);
Ron Mercerc4e84bd2008-09-18 11:56:28 -0400300}
301
302static void ql_link_down(struct ql_adapter *qdev, struct mbox_params *mbcp)
303{
Ron Mercer11d9fe62009-03-03 12:10:31 +0000304 int status;
305
Ron Mercerc4e84bd2008-09-18 11:56:28 -0400306 mbcp->out_count = 3;
307
Ron Mercer11d9fe62009-03-03 12:10:31 +0000308 status = ql_get_mb_sts(qdev, mbcp);
309 if (status)
310 QPRINTK(qdev, DRV, ERR, "Link down AEN broken!\n");
Ron Mercerc4e84bd2008-09-18 11:56:28 -0400311
Ron Mercer6a473302009-07-02 06:06:12 +0000312 ql_link_off(qdev);
Ron Mercerc4e84bd2008-09-18 11:56:28 -0400313}
314
Ron Mercereae6b582009-03-03 12:10:30 +0000315static 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 QPRINTK(qdev, DRV, ERR, "SFP in AEN broken!\n");
324 else
325 QPRINTK(qdev, DRV, ERR, "SFP insertion detected.\n");
326
327 return status;
328}
329
330static 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 QPRINTK(qdev, DRV, ERR, "SFP out AEN broken!\n");
339 else
340 QPRINTK(qdev, DRV, ERR, "SFP removal detected.\n");
341
342 return status;
343}
344
Ron Mercerfc1f9ea2009-03-03 12:10:37 +0000345static 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 QPRINTK(qdev, DRV, ERR, "Lost AEN broken!\n");
354 else {
355 int i;
356 QPRINTK(qdev, DRV, ERR, "Lost AEN detected.\n");
357 for (i = 0; i < mbcp->out_count; i++)
358 QPRINTK(qdev, DRV, ERR, "mbox_out[%d] = 0x%.08x.\n",
359 i, mbcp->mbox_out[i]);
360
361 }
362
363 return status;
364}
365
Ron Mercerc4e84bd2008-09-18 11:56:28 -0400366static void ql_init_fw_done(struct ql_adapter *qdev, struct mbox_params *mbcp)
367{
Ron Mercerf56b54f2009-03-03 12:10:34 +0000368 int status;
369
Ron Mercerc4e84bd2008-09-18 11:56:28 -0400370 mbcp->out_count = 2;
371
Ron Mercerf56b54f2009-03-03 12:10:34 +0000372 status = ql_get_mb_sts(qdev, mbcp);
373 if (status) {
Ron Mercerc4e84bd2008-09-18 11:56:28 -0400374 QPRINTK(qdev, DRV, ERR, "Firmware did not initialize!\n");
Ron Mercerf56b54f2009-03-03 12:10:34 +0000375 } else {
376 QPRINTK(qdev, DRV, ERR, "Firmware Revision = 0x%.08x.\n",
377 mbcp->mbox_out[1]);
Ron Mercer88051b42009-10-10 09:35:06 +0000378 qdev->fw_rev_id = mbcp->mbox_out[1];
Ron Mercerf56b54f2009-03-03 12:10:34 +0000379 status = ql_cam_route_initialize(qdev);
380 if (status)
381 QPRINTK(qdev, IFUP, ERR,
382 "Failed to init CAM/Routing tables.\n");
Ron Mercerc4e84bd2008-09-18 11:56:28 -0400383 }
Ron Mercerc4e84bd2008-09-18 11:56:28 -0400384}
385
Ron Mercer125844e2009-02-26 10:08:34 +0000386/* 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. */
392static int ql_mpi_handler(struct ql_adapter *qdev, struct mbox_params *mbcp)
393{
394 int status;
Ron Mercerca0413b2009-03-02 08:07:30 +0000395 int orig_count = mbcp->out_count;
Ron Mercer125844e2009-02-26 10:08:34 +0000396
397 /* Just get mailbox zero for now. */
398 mbcp->out_count = 1;
399 status = ql_get_mb_sts(qdev, mbcp);
400 if (status) {
401 QPRINTK(qdev, DRV, ERR,
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
Ron Mercerca0413b2009-03-02 08:07:30 +0000409 /* 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
Ron Mercer2ee1e272009-03-03 12:10:33 +0000430 /* 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
Martin Olsson98a17082009-04-22 18:21:29 +0200433 * parameters, or loopback mode.
Ron Mercer2ee1e272009-03-03 12:10:33 +0000434 */
435 case AEN_IDC_REQ:
436 status = ql_idc_req_aen(qdev);
437 break;
438
Ron Mercerbcc2cb3b2009-03-02 08:07:32 +0000439 /* Process and inbound IDC event.
440 * This will happen when we're trying to
441 * change tx/rx max frame size, change pause
Martin Olsson98a17082009-04-22 18:21:29 +0200442 * parameters or loopback mode.
Ron Mercerbcc2cb3b2009-03-02 08:07:32 +0000443 */
444 case AEN_IDC_CMPLT:
445 case AEN_IDC_EXT:
446 status = ql_idc_cmplt_aen(qdev);
447 break;
448
Ron Mercer125844e2009-02-26 10:08:34 +0000449 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:
Ron Mercerf56b54f2009-03-03 12:10:34 +0000458 /* 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 }
Ron Mercer125844e2009-02-26 10:08:34 +0000467 ql_init_fw_done(qdev, mbcp);
468 break;
469
Ron Mercereae6b582009-03-03 12:10:30 +0000470 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
Ron Mercer7c921912009-03-03 12:10:35 +0000478 /* This event can arrive at boot time or after an
479 * MPI reset if the firmware failed to initialize.
480 */
Ron Mercer125844e2009-02-26 10:08:34 +0000481 case AEN_FW_INIT_FAIL:
Ron Mercer7c921912009-03-03 12:10:35 +0000482 /* 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 QPRINTK(qdev, DRV, ERR,
492 "Firmware initialization failed.\n");
493 status = -EIO;
494 ql_queue_fw_error(qdev);
495 break;
496
Ron Mercer125844e2009-02-26 10:08:34 +0000497 case AEN_SYS_ERR:
Ron Mercerbb667672009-03-03 12:10:36 +0000498 QPRINTK(qdev, DRV, ERR,
499 "System Error.\n");
Ron Mercer125844e2009-02-26 10:08:34 +0000500 ql_queue_fw_error(qdev);
Ron Mercerbb667672009-03-03 12:10:36 +0000501 status = -EIO;
Ron Mercer125844e2009-02-26 10:08:34 +0000502 break;
503
Ron Mercerfc1f9ea2009-03-03 12:10:37 +0000504 case AEN_AEN_LOST:
505 ql_aen_lost(qdev, mbcp);
506 break;
507
Ron Mercer91ced682009-10-10 09:35:05 +0000508 case AEN_DCBX_CHG:
509 /* Need to support AEN 8110 */
510 break;
Ron Mercer125844e2009-02-26 10:08:34 +0000511 default:
512 QPRINTK(qdev, DRV, ERR,
513 "Unsupported AE %.08x.\n", mbcp->mbox_out[0]);
514 /* Clear the MPI firmware status. */
515 }
516end:
517 ql_write32(qdev, CSR, CSR_CMD_CLR_R2PCI_INT);
Ron Mercer709ac4f2009-06-07 13:58:26 +0000518 /* Restore the original mailbox count to
519 * what the caller asked for. This can get
520 * changed when a mailbox command is waiting
521 * for a response and an AEN arrives and
522 * is handled.
523 * */
524 mbcp->out_count = orig_count;
Ron Mercer125844e2009-02-26 10:08:34 +0000525 return status;
526}
527
Ron Mercerca0413b2009-03-02 08:07:30 +0000528/* Execute a single mailbox command.
529 * mbcp is a pointer to an array of u32. Each
530 * element in the array contains the value for it's
531 * respective mailbox register.
532 */
533static int ql_mailbox_command(struct ql_adapter *qdev, struct mbox_params *mbcp)
534{
Ron Mercerda039452009-10-28 08:39:21 +0000535 int status;
536 unsigned long count;
Ron Mercerca0413b2009-03-02 08:07:30 +0000537
Ron Mercerca0413b2009-03-02 08:07:30 +0000538
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
548 /* If we're generating a system error, then there's nothing
549 * to wait for.
550 */
551 if (mbcp->mbox_in[0] == MB_CMD_MAKE_SYS_ERR)
552 goto end;
553
554 /* Wait for the command to complete. We loop
555 * here because some AEN might arrive while
556 * we're waiting for the mailbox command to
Ron Mercerda039452009-10-28 08:39:21 +0000557 * complete. If more than 5 seconds expire we can
Ron Mercerca0413b2009-03-02 08:07:30 +0000558 * assume something is wrong. */
Ron Mercerda039452009-10-28 08:39:21 +0000559 count = jiffies + HZ * MAILBOX_TIMEOUT;
Ron Mercerca0413b2009-03-02 08:07:30 +0000560 do {
561 /* Wait for the interrupt to come in. */
562 status = ql_wait_mbx_cmd_cmplt(qdev);
563 if (status)
Ron Mercer60fa6c32009-11-06 07:44:57 +0000564 continue;
Ron Mercerca0413b2009-03-02 08:07:30 +0000565
566 /* Process the event. If it's an AEN, it
567 * will be handled in-line or a worker
568 * will be spawned. If it's our completion
569 * we will catch it below.
570 */
571 status = ql_mpi_handler(qdev, mbcp);
572 if (status)
573 goto end;
574
575 /* It's either the completion for our mailbox
576 * command complete or an AEN. If it's our
577 * completion then get out.
578 */
579 if (((mbcp->mbox_out[0] & 0x0000f000) ==
580 MB_CMD_STS_GOOD) ||
581 ((mbcp->mbox_out[0] & 0x0000f000) ==
582 MB_CMD_STS_INTRMDT))
Ron Mercerda039452009-10-28 08:39:21 +0000583 goto done;
584 } while (time_before(jiffies, count));
Ron Mercerca0413b2009-03-02 08:07:30 +0000585
Ron Mercerda039452009-10-28 08:39:21 +0000586 QPRINTK(qdev, DRV, ERR,
587 "Timed out waiting for mailbox complete.\n");
588 status = -ETIMEDOUT;
589 goto end;
590
591done:
Ron Mercerca0413b2009-03-02 08:07:30 +0000592
593 /* Now we can clear the interrupt condition
594 * and look at our status.
595 */
596 ql_write32(qdev, CSR, CSR_CMD_CLR_R2PCI_INT);
597
598 if (((mbcp->mbox_out[0] & 0x0000f000) !=
599 MB_CMD_STS_GOOD) &&
600 ((mbcp->mbox_out[0] & 0x0000f000) !=
601 MB_CMD_STS_INTRMDT)) {
Ron Mercerca0413b2009-03-02 08:07:30 +0000602 status = -EIO;
603 }
604end:
Ron Mercerca0413b2009-03-02 08:07:30 +0000605 /* End polled mode for MPI */
606 ql_write32(qdev, INTR_MASK, (INTR_MASK_PI << 16) | INTR_MASK_PI);
607 return status;
608}
609
Ron Mercercfec0cb2009-06-09 05:39:29 +0000610
611/* Get MPI firmware version. This will be used for
612 * driver banner and for ethtool info.
613 * Returns zero on success.
614 */
615int ql_mb_about_fw(struct ql_adapter *qdev)
616{
617 struct mbox_params mbc;
618 struct mbox_params *mbcp = &mbc;
619 int status = 0;
620
621 memset(mbcp, 0, sizeof(struct mbox_params));
622
623 mbcp->in_count = 1;
624 mbcp->out_count = 3;
625
626 mbcp->mbox_in[0] = MB_CMD_ABOUT_FW;
627
628 status = ql_mailbox_command(qdev, mbcp);
629 if (status)
630 return status;
631
632 if (mbcp->mbox_out[0] != MB_CMD_STS_GOOD) {
633 QPRINTK(qdev, DRV, ERR,
634 "Failed about firmware command\n");
635 status = -EIO;
636 }
637
638 /* Store the firmware version */
639 qdev->fw_rev_id = mbcp->mbox_out[1];
640
641 return status;
642}
643
Ron Mercerca0413b2009-03-02 08:07:30 +0000644/* Get functional state for MPI firmware.
645 * Returns zero on success.
646 */
647int ql_mb_get_fw_state(struct ql_adapter *qdev)
648{
649 struct mbox_params mbc;
650 struct mbox_params *mbcp = &mbc;
651 int status = 0;
652
653 memset(mbcp, 0, sizeof(struct mbox_params));
654
655 mbcp->in_count = 1;
656 mbcp->out_count = 2;
657
658 mbcp->mbox_in[0] = MB_CMD_GET_FW_STATE;
659
660 status = ql_mailbox_command(qdev, mbcp);
661 if (status)
662 return status;
663
664 if (mbcp->mbox_out[0] != MB_CMD_STS_GOOD) {
665 QPRINTK(qdev, DRV, ERR,
666 "Failed Get Firmware State.\n");
667 status = -EIO;
668 }
669
670 /* If bit zero is set in mbx 1 then the firmware is
671 * running, but not initialized. This should never
672 * happen.
673 */
674 if (mbcp->mbox_out[1] & 1) {
675 QPRINTK(qdev, DRV, ERR,
676 "Firmware waiting for initialization.\n");
677 status = -EIO;
678 }
679
680 return status;
681}
682
Ron Mercer2ee1e272009-03-03 12:10:33 +0000683/* Send and ACK mailbox command to the firmware to
684 * let it continue with the change.
685 */
686int ql_mb_idc_ack(struct ql_adapter *qdev)
687{
688 struct mbox_params mbc;
689 struct mbox_params *mbcp = &mbc;
690 int status = 0;
691
692 memset(mbcp, 0, sizeof(struct mbox_params));
693
694 mbcp->in_count = 5;
695 mbcp->out_count = 1;
696
697 mbcp->mbox_in[0] = MB_CMD_IDC_ACK;
698 mbcp->mbox_in[1] = qdev->idc_mbc.mbox_out[1];
699 mbcp->mbox_in[2] = qdev->idc_mbc.mbox_out[2];
700 mbcp->mbox_in[3] = qdev->idc_mbc.mbox_out[3];
701 mbcp->mbox_in[4] = qdev->idc_mbc.mbox_out[4];
702
703 status = ql_mailbox_command(qdev, mbcp);
704 if (status)
705 return status;
706
707 if (mbcp->mbox_out[0] != MB_CMD_STS_GOOD) {
708 QPRINTK(qdev, DRV, ERR,
709 "Failed IDC ACK send.\n");
710 status = -EIO;
711 }
712 return status;
713}
714
Ron Mercerbcc2cb3b2009-03-02 08:07:32 +0000715/* Get link settings and maximum frame size settings
716 * for the current port.
717 * Most likely will block.
718 */
Ron Mercer1d30df22009-10-21 11:07:38 +0000719int ql_mb_set_port_cfg(struct ql_adapter *qdev)
Ron Mercerbcc2cb3b2009-03-02 08:07:32 +0000720{
721 struct mbox_params mbc;
722 struct mbox_params *mbcp = &mbc;
723 int status = 0;
724
725 memset(mbcp, 0, sizeof(struct mbox_params));
726
727 mbcp->in_count = 3;
728 mbcp->out_count = 1;
729
730 mbcp->mbox_in[0] = MB_CMD_SET_PORT_CFG;
731 mbcp->mbox_in[1] = qdev->link_config;
732 mbcp->mbox_in[2] = qdev->max_frame_size;
733
734
735 status = ql_mailbox_command(qdev, mbcp);
736 if (status)
737 return status;
738
739 if (mbcp->mbox_out[0] == MB_CMD_STS_INTRMDT) {
740 QPRINTK(qdev, DRV, ERR,
741 "Port Config sent, wait for IDC.\n");
742 } else if (mbcp->mbox_out[0] != MB_CMD_STS_GOOD) {
743 QPRINTK(qdev, DRV, ERR,
744 "Failed Set Port Configuration.\n");
745 status = -EIO;
746 }
747 return status;
748}
749
Ron Mercer2c1f73c2010-01-15 13:31:30 +0000750int ql_mb_dump_ram(struct ql_adapter *qdev, u64 req_dma, u32 addr,
751 u32 size)
752{
753 int status = 0;
754 struct mbox_params mbc;
755 struct mbox_params *mbcp = &mbc;
756
757 memset(mbcp, 0, sizeof(struct mbox_params));
758
759 mbcp->in_count = 9;
760 mbcp->out_count = 1;
761
762 mbcp->mbox_in[0] = MB_CMD_DUMP_RISC_RAM;
763 mbcp->mbox_in[1] = LSW(addr);
764 mbcp->mbox_in[2] = MSW(req_dma);
765 mbcp->mbox_in[3] = LSW(req_dma);
766 mbcp->mbox_in[4] = MSW(size);
767 mbcp->mbox_in[5] = LSW(size);
768 mbcp->mbox_in[6] = MSW(MSD(req_dma));
769 mbcp->mbox_in[7] = LSW(MSD(req_dma));
770 mbcp->mbox_in[8] = MSW(addr);
771
772
773 status = ql_mailbox_command(qdev, mbcp);
774 if (status)
775 return status;
776
777 if (mbcp->mbox_out[0] != MB_CMD_STS_GOOD) {
778 QPRINTK(qdev, DRV, ERR,
779 "Failed to dump risc RAM.\n");
780 status = -EIO;
781 }
782 return status;
783}
784
785/* Issue a mailbox command to dump RISC RAM. */
786int ql_dump_risc_ram_area(struct ql_adapter *qdev, void *buf,
787 u32 ram_addr, int word_count)
788{
789 int status;
790 char *my_buf;
791 dma_addr_t buf_dma;
792
793 my_buf = pci_alloc_consistent(qdev->pdev, word_count * sizeof(u32),
794 &buf_dma);
795 if (!my_buf)
796 return -EIO;
797
798 status = ql_mb_dump_ram(qdev, buf_dma, ram_addr, word_count);
799 if (!status)
800 memcpy(buf, my_buf, word_count * sizeof(u32));
801
802 pci_free_consistent(qdev->pdev, word_count * sizeof(u32), my_buf,
803 buf_dma);
804 return status;
805}
806
Ron Mercerbcc2cb3b2009-03-02 08:07:32 +0000807/* Get link settings and maximum frame size settings
808 * for the current port.
809 * Most likely will block.
810 */
Ron Mercer1d30df22009-10-21 11:07:38 +0000811int ql_mb_get_port_cfg(struct ql_adapter *qdev)
Ron Mercerbcc2cb3b2009-03-02 08:07:32 +0000812{
813 struct mbox_params mbc;
814 struct mbox_params *mbcp = &mbc;
815 int status = 0;
816
817 memset(mbcp, 0, sizeof(struct mbox_params));
818
819 mbcp->in_count = 1;
820 mbcp->out_count = 3;
821
822 mbcp->mbox_in[0] = MB_CMD_GET_PORT_CFG;
823
824 status = ql_mailbox_command(qdev, mbcp);
825 if (status)
826 return status;
827
828 if (mbcp->mbox_out[0] != MB_CMD_STS_GOOD) {
829 QPRINTK(qdev, DRV, ERR,
830 "Failed Get Port Configuration.\n");
831 status = -EIO;
832 } else {
833 QPRINTK(qdev, DRV, DEBUG,
834 "Passed Get Port Configuration.\n");
835 qdev->link_config = mbcp->mbox_out[1];
836 qdev->max_frame_size = mbcp->mbox_out[2];
837 }
838 return status;
839}
840
Ron Mercerbc083ce2009-10-21 11:07:40 +0000841int ql_mb_wol_mode(struct ql_adapter *qdev, u32 wol)
842{
843 struct mbox_params mbc;
844 struct mbox_params *mbcp = &mbc;
845 int status;
846
847 memset(mbcp, 0, sizeof(struct mbox_params));
848
849 mbcp->in_count = 2;
850 mbcp->out_count = 1;
851
852 mbcp->mbox_in[0] = MB_CMD_SET_WOL_MODE;
853 mbcp->mbox_in[1] = wol;
854
855
856 status = ql_mailbox_command(qdev, mbcp);
857 if (status)
858 return status;
859
860 if (mbcp->mbox_out[0] != MB_CMD_STS_GOOD) {
861 QPRINTK(qdev, DRV, ERR,
862 "Failed to set WOL mode.\n");
863 status = -EIO;
864 }
865 return status;
866}
867
868int ql_mb_wol_set_magic(struct ql_adapter *qdev, u32 enable_wol)
869{
870 struct mbox_params mbc;
871 struct mbox_params *mbcp = &mbc;
872 int status;
873 u8 *addr = qdev->ndev->dev_addr;
874
875 memset(mbcp, 0, sizeof(struct mbox_params));
876
877 mbcp->in_count = 8;
878 mbcp->out_count = 1;
879
880 mbcp->mbox_in[0] = MB_CMD_SET_WOL_MAGIC;
881 if (enable_wol) {
882 mbcp->mbox_in[1] = (u32)addr[0];
883 mbcp->mbox_in[2] = (u32)addr[1];
884 mbcp->mbox_in[3] = (u32)addr[2];
885 mbcp->mbox_in[4] = (u32)addr[3];
886 mbcp->mbox_in[5] = (u32)addr[4];
887 mbcp->mbox_in[6] = (u32)addr[5];
888 mbcp->mbox_in[7] = 0;
889 } else {
890 mbcp->mbox_in[1] = 0;
891 mbcp->mbox_in[2] = 1;
892 mbcp->mbox_in[3] = 1;
893 mbcp->mbox_in[4] = 1;
894 mbcp->mbox_in[5] = 1;
895 mbcp->mbox_in[6] = 1;
896 mbcp->mbox_in[7] = 0;
897 }
898
899 status = ql_mailbox_command(qdev, mbcp);
900 if (status)
901 return status;
902
903 if (mbcp->mbox_out[0] != MB_CMD_STS_GOOD) {
904 QPRINTK(qdev, DRV, ERR,
905 "Failed to set WOL mode.\n");
906 status = -EIO;
907 }
908 return status;
909}
910
Ron Mercerbcc2cb3b2009-03-02 08:07:32 +0000911/* IDC - Inter Device Communication...
912 * Some firmware commands require consent of adjacent FCOE
913 * function. This function waits for the OK, or a
914 * counter-request for a little more time.i
915 * The firmware will complete the request if the other
916 * function doesn't respond.
917 */
918static int ql_idc_wait(struct ql_adapter *qdev)
919{
920 int status = -ETIMEDOUT;
921 long wait_time = 1 * HZ;
922 struct mbox_params *mbcp = &qdev->idc_mbc;
923 do {
924 /* Wait here for the command to complete
925 * via the IDC process.
926 */
927 wait_time =
928 wait_for_completion_timeout(&qdev->ide_completion,
929 wait_time);
930 if (!wait_time) {
931 QPRINTK(qdev, DRV, ERR,
932 "IDC Timeout.\n");
933 break;
934 }
935 /* Now examine the response from the IDC process.
936 * We might have a good completion or a request for
937 * more wait time.
938 */
939 if (mbcp->mbox_out[0] == AEN_IDC_EXT) {
940 QPRINTK(qdev, DRV, ERR,
941 "IDC Time Extension from function.\n");
942 wait_time += (mbcp->mbox_out[1] >> 8) & 0x0000000f;
943 } else if (mbcp->mbox_out[0] == AEN_IDC_CMPLT) {
944 QPRINTK(qdev, DRV, ERR,
945 "IDC Success.\n");
946 status = 0;
947 break;
948 } else {
949 QPRINTK(qdev, DRV, ERR,
950 "IDC: Invalid State 0x%.04x.\n",
951 mbcp->mbox_out[0]);
952 status = -EIO;
953 break;
954 }
955 } while (wait_time);
956
957 return status;
958}
959
Ron Mercerd8eb59d2009-10-21 11:07:39 +0000960int ql_mb_set_led_cfg(struct ql_adapter *qdev, u32 led_config)
961{
962 struct mbox_params mbc;
963 struct mbox_params *mbcp = &mbc;
964 int status;
965
966 memset(mbcp, 0, sizeof(struct mbox_params));
967
968 mbcp->in_count = 2;
969 mbcp->out_count = 1;
970
971 mbcp->mbox_in[0] = MB_CMD_SET_LED_CFG;
972 mbcp->mbox_in[1] = led_config;
973
974
975 status = ql_mailbox_command(qdev, mbcp);
976 if (status)
977 return status;
978
979 if (mbcp->mbox_out[0] != MB_CMD_STS_GOOD) {
980 QPRINTK(qdev, DRV, ERR,
981 "Failed to set LED Configuration.\n");
982 status = -EIO;
983 }
984
985 return status;
986}
987
988int ql_mb_get_led_cfg(struct ql_adapter *qdev)
989{
990 struct mbox_params mbc;
991 struct mbox_params *mbcp = &mbc;
992 int status;
993
994 memset(mbcp, 0, sizeof(struct mbox_params));
995
996 mbcp->in_count = 1;
997 mbcp->out_count = 2;
998
999 mbcp->mbox_in[0] = MB_CMD_GET_LED_CFG;
1000
1001 status = ql_mailbox_command(qdev, mbcp);
1002 if (status)
1003 return status;
1004
1005 if (mbcp->mbox_out[0] != MB_CMD_STS_GOOD) {
1006 QPRINTK(qdev, DRV, ERR,
1007 "Failed to get LED Configuration.\n");
1008 status = -EIO;
1009 } else
1010 qdev->led_config = mbcp->mbox_out[1];
1011
1012 return status;
1013}
1014
Ron Mercer84087f42009-10-08 09:54:41 +00001015int ql_mb_set_mgmnt_traffic_ctl(struct ql_adapter *qdev, u32 control)
1016{
1017 struct mbox_params mbc;
1018 struct mbox_params *mbcp = &mbc;
1019 int status;
1020
1021 memset(mbcp, 0, sizeof(struct mbox_params));
1022
1023 mbcp->in_count = 1;
1024 mbcp->out_count = 2;
1025
1026 mbcp->mbox_in[0] = MB_CMD_SET_MGMNT_TFK_CTL;
1027 mbcp->mbox_in[1] = control;
1028
1029 status = ql_mailbox_command(qdev, mbcp);
1030 if (status)
1031 return status;
1032
1033 if (mbcp->mbox_out[0] == MB_CMD_STS_GOOD)
1034 return status;
1035
1036 if (mbcp->mbox_out[0] == MB_CMD_STS_INVLD_CMD) {
1037 QPRINTK(qdev, DRV, ERR,
1038 "Command not supported by firmware.\n");
1039 status = -EINVAL;
1040 } else if (mbcp->mbox_out[0] == MB_CMD_STS_ERR) {
1041 /* This indicates that the firmware is
1042 * already in the state we are trying to
1043 * change it to.
1044 */
1045 QPRINTK(qdev, DRV, ERR,
1046 "Command parameters make no change.\n");
1047 }
1048 return status;
1049}
1050
1051/* Returns a negative error code or the mailbox command status. */
1052static int ql_mb_get_mgmnt_traffic_ctl(struct ql_adapter *qdev, u32 *control)
1053{
1054 struct mbox_params mbc;
1055 struct mbox_params *mbcp = &mbc;
1056 int status;
1057
1058 memset(mbcp, 0, sizeof(struct mbox_params));
1059 *control = 0;
1060
1061 mbcp->in_count = 1;
1062 mbcp->out_count = 1;
1063
1064 mbcp->mbox_in[0] = MB_CMD_GET_MGMNT_TFK_CTL;
1065
1066 status = ql_mailbox_command(qdev, mbcp);
1067 if (status)
1068 return status;
1069
1070 if (mbcp->mbox_out[0] == MB_CMD_STS_GOOD) {
1071 *control = mbcp->mbox_in[1];
1072 return status;
1073 }
1074
1075 if (mbcp->mbox_out[0] == MB_CMD_STS_INVLD_CMD) {
1076 QPRINTK(qdev, DRV, ERR,
1077 "Command not supported by firmware.\n");
1078 status = -EINVAL;
1079 } else if (mbcp->mbox_out[0] == MB_CMD_STS_ERR) {
1080 QPRINTK(qdev, DRV, ERR,
1081 "Failed to get MPI traffic control.\n");
1082 status = -EIO;
1083 }
1084 return status;
1085}
1086
1087int ql_wait_fifo_empty(struct ql_adapter *qdev)
1088{
1089 int count = 5;
1090 u32 mgmnt_fifo_empty;
1091 u32 nic_fifo_empty;
1092
1093 do {
1094 nic_fifo_empty = ql_read32(qdev, STS) & STS_NFE;
1095 ql_mb_get_mgmnt_traffic_ctl(qdev, &mgmnt_fifo_empty);
1096 mgmnt_fifo_empty &= MB_GET_MPI_TFK_FIFO_EMPTY;
1097 if (nic_fifo_empty && mgmnt_fifo_empty)
1098 return 0;
1099 msleep(100);
1100 } while (count-- > 0);
1101 return -ETIMEDOUT;
1102}
1103
Ron Mercerbcc2cb3b2009-03-02 08:07:32 +00001104/* API called in work thread context to set new TX/RX
1105 * maximum frame size values to match MTU.
1106 */
1107static int ql_set_port_cfg(struct ql_adapter *qdev)
1108{
1109 int status;
Ron Mercer86aaf9a2009-10-05 11:46:49 +00001110 rtnl_lock();
Ron Mercerbcc2cb3b2009-03-02 08:07:32 +00001111 status = ql_mb_set_port_cfg(qdev);
Ron Mercer86aaf9a2009-10-05 11:46:49 +00001112 rtnl_unlock();
Ron Mercerbcc2cb3b2009-03-02 08:07:32 +00001113 if (status)
1114 return status;
1115 status = ql_idc_wait(qdev);
1116 return status;
1117}
1118
1119/* The following routines are worker threads that process
1120 * events that may sleep waiting for completion.
1121 */
1122
1123/* This thread gets the maximum TX and RX frame size values
1124 * from the firmware and, if necessary, changes them to match
1125 * the MTU setting.
1126 */
1127void ql_mpi_port_cfg_work(struct work_struct *work)
1128{
1129 struct ql_adapter *qdev =
1130 container_of(work, struct ql_adapter, mpi_port_cfg_work.work);
Ron Mercerbcc2cb3b2009-03-02 08:07:32 +00001131 int status;
1132
Ron Mercer86aaf9a2009-10-05 11:46:49 +00001133 rtnl_lock();
Ron Mercerbcc2cb3b2009-03-02 08:07:32 +00001134 status = ql_mb_get_port_cfg(qdev);
Ron Mercer86aaf9a2009-10-05 11:46:49 +00001135 rtnl_unlock();
Ron Mercerbcc2cb3b2009-03-02 08:07:32 +00001136 if (status) {
1137 QPRINTK(qdev, DRV, ERR,
1138 "Bug: Failed to get port config data.\n");
1139 goto err;
1140 }
1141
Ron Mercerc8269b22009-06-07 13:58:27 +00001142 if (qdev->link_config & CFG_JUMBO_FRAME_SIZE &&
Ron Mercerbcc2cb3b2009-03-02 08:07:32 +00001143 qdev->max_frame_size ==
1144 CFG_DEFAULT_MAX_FRAME_SIZE)
1145 goto end;
1146
1147 qdev->link_config |= CFG_JUMBO_FRAME_SIZE;
1148 qdev->max_frame_size = CFG_DEFAULT_MAX_FRAME_SIZE;
1149 status = ql_set_port_cfg(qdev);
1150 if (status) {
1151 QPRINTK(qdev, DRV, ERR,
1152 "Bug: Failed to set port config data.\n");
1153 goto err;
1154 }
1155end:
1156 clear_bit(QL_PORT_CFG, &qdev->flags);
1157 return;
1158err:
1159 ql_queue_fw_error(qdev);
1160 goto end;
1161}
1162
Ron Mercer2ee1e272009-03-03 12:10:33 +00001163/* Process an inter-device request. This is issues by
1164 * the firmware in response to another function requesting
1165 * a change to the port. We set a flag to indicate a change
1166 * has been made and then send a mailbox command ACKing
1167 * the change request.
1168 */
1169void ql_mpi_idc_work(struct work_struct *work)
1170{
1171 struct ql_adapter *qdev =
1172 container_of(work, struct ql_adapter, mpi_idc_work.work);
1173 int status;
1174 struct mbox_params *mbcp = &qdev->idc_mbc;
1175 u32 aen;
Ron Mercer1e34e302009-11-03 13:49:30 +00001176 int timeout;
Ron Mercer2ee1e272009-03-03 12:10:33 +00001177
Ron Mercer1e34e302009-11-03 13:49:30 +00001178 rtnl_lock();
Ron Mercer2ee1e272009-03-03 12:10:33 +00001179 aen = mbcp->mbox_out[1] >> 16;
Ron Mercer1e34e302009-11-03 13:49:30 +00001180 timeout = (mbcp->mbox_out[1] >> 8) & 0xf;
Ron Mercer2ee1e272009-03-03 12:10:33 +00001181
1182 switch (aen) {
1183 default:
1184 QPRINTK(qdev, DRV, ERR,
1185 "Bug: Unhandled IDC action.\n");
1186 break;
1187 case MB_CMD_PORT_RESET:
Ron Mercer2ee1e272009-03-03 12:10:33 +00001188 case MB_CMD_STOP_FW:
Ron Mercer6a473302009-07-02 06:06:12 +00001189 ql_link_off(qdev);
Ron Mercer1e34e302009-11-03 13:49:30 +00001190 case MB_CMD_SET_PORT_CFG:
Ron Mercer2ee1e272009-03-03 12:10:33 +00001191 /* Signal the resulting link up AEN
1192 * that the frame routing and mac addr
1193 * needs to be set.
1194 * */
1195 set_bit(QL_CAM_RT_SET, &qdev->flags);
Ron Mercer1e34e302009-11-03 13:49:30 +00001196 /* Do ACK if required */
1197 if (timeout) {
1198 status = ql_mb_idc_ack(qdev);
1199 if (status)
1200 QPRINTK(qdev, DRV, ERR,
1201 "Bug: No pending IDC!\n");
1202 } else {
1203 QPRINTK(qdev, DRV, DEBUG,
1204 "IDC ACK not required\n");
1205 status = 0; /* success */
Ron Mercer2ee1e272009-03-03 12:10:33 +00001206 }
Ron Mercer1e34e302009-11-03 13:49:30 +00001207 break;
1208
1209 /* These sub-commands issued by another (FCoE)
1210 * function are requesting to do an operation
1211 * on the shared resource (MPI environment).
1212 * We currently don't issue these so we just
1213 * ACK the request.
1214 */
1215 case MB_CMD_IOP_RESTART_MPI:
1216 case MB_CMD_IOP_PREP_LINK_DOWN:
1217 /* Drop the link, reload the routing
1218 * table when link comes up.
1219 */
1220 ql_link_off(qdev);
1221 set_bit(QL_CAM_RT_SET, &qdev->flags);
1222 /* Fall through. */
1223 case MB_CMD_IOP_DVR_START:
1224 case MB_CMD_IOP_FLASH_ACC:
1225 case MB_CMD_IOP_CORE_DUMP_MPI:
1226 case MB_CMD_IOP_PREP_UPDATE_MPI:
1227 case MB_CMD_IOP_COMP_UPDATE_MPI:
1228 case MB_CMD_IOP_NONE: /* an IDC without params */
1229 /* Do ACK if required */
1230 if (timeout) {
1231 status = ql_mb_idc_ack(qdev);
1232 if (status)
1233 QPRINTK(qdev, DRV, ERR,
1234 "Bug: No pending IDC!\n");
1235 } else {
1236 QPRINTK(qdev, DRV, DEBUG,
1237 "IDC ACK not required\n");
1238 status = 0; /* success */
1239 }
1240 break;
Ron Mercer2ee1e272009-03-03 12:10:33 +00001241 }
Ron Mercer1e34e302009-11-03 13:49:30 +00001242 rtnl_unlock();
Ron Mercer2ee1e272009-03-03 12:10:33 +00001243}
1244
Ron Mercerc4e84bd2008-09-18 11:56:28 -04001245void ql_mpi_work(struct work_struct *work)
1246{
1247 struct ql_adapter *qdev =
1248 container_of(work, struct ql_adapter, mpi_work.work);
1249 struct mbox_params mbc;
1250 struct mbox_params *mbcp = &mbc;
Ron Mercerd6f58c22009-06-07 13:58:25 +00001251 int err = 0;
Ron Mercer125844e2009-02-26 10:08:34 +00001252
Ron Mercer86aaf9a2009-10-05 11:46:49 +00001253 rtnl_lock();
Ron Mercerefd7d262009-10-08 09:54:43 +00001254 /* Begin polled mode for MPI */
1255 ql_write32(qdev, INTR_MASK, (INTR_MASK_PI << 16));
Ron Mercerc4e84bd2008-09-18 11:56:28 -04001256
1257 while (ql_read32(qdev, STS) & STS_PI) {
Ron Mercer125844e2009-02-26 10:08:34 +00001258 memset(mbcp, 0, sizeof(struct mbox_params));
1259 mbcp->out_count = 1;
Ron Mercerd6f58c22009-06-07 13:58:25 +00001260 /* Don't continue if an async event
1261 * did not complete properly.
1262 */
1263 err = ql_mpi_handler(qdev, mbcp);
1264 if (err)
1265 break;
Ron Mercerc4e84bd2008-09-18 11:56:28 -04001266 }
Ron Mercer125844e2009-02-26 10:08:34 +00001267
Ron Mercerefd7d262009-10-08 09:54:43 +00001268 /* End polled mode for MPI */
1269 ql_write32(qdev, INTR_MASK, (INTR_MASK_PI << 16) | INTR_MASK_PI);
Ron Mercer86aaf9a2009-10-05 11:46:49 +00001270 rtnl_unlock();
Ron Mercerc4e84bd2008-09-18 11:56:28 -04001271 ql_enable_completion_interrupt(qdev, 0);
1272}
1273
1274void ql_mpi_reset_work(struct work_struct *work)
1275{
1276 struct ql_adapter *qdev =
1277 container_of(work, struct ql_adapter, mpi_reset_work.work);
Ron Mercerbcc2cb3b2009-03-02 08:07:32 +00001278 cancel_delayed_work_sync(&qdev->mpi_work);
1279 cancel_delayed_work_sync(&qdev->mpi_port_cfg_work);
Ron Mercer2ee1e272009-03-03 12:10:33 +00001280 cancel_delayed_work_sync(&qdev->mpi_idc_work);
Ron Mercer8aae2602010-01-15 13:31:28 +00001281 /* If we're not the dominant NIC function,
1282 * then there is nothing to do.
1283 */
1284 if (!ql_own_firmware(qdev)) {
1285 QPRINTK(qdev, DRV, ERR, "Don't own firmware!\n");
1286 return;
1287 }
1288
1289 if (!ql_core_dump(qdev, qdev->mpi_coredump)) {
1290 QPRINTK(qdev, DRV, ERR, "Core is dumped!\n");
1291 qdev->core_is_dumped = 1;
1292 queue_delayed_work(qdev->workqueue,
1293 &qdev->mpi_core_to_log, 5 * HZ);
1294 }
Ron Mercera2e809b2009-02-26 10:08:33 +00001295 ql_soft_reset_mpi_risc(qdev);
Ron Mercerc4e84bd2008-09-18 11:56:28 -04001296}