treewide: remove redundant IS_ERR() before error code check
[linux/fpc-iii.git] / drivers / scsi / qla2xxx / qla_sup.c
blob76a38bf86cbc3de6e07ff51c14a8c809d0b2c036
1 /*
2 * QLogic Fibre Channel HBA Driver
3 * Copyright (c) 2003-2014 QLogic Corporation
5 * See LICENSE.qla2xxx for copyright and licensing details.
6 */
7 #include "qla_def.h"
9 #include <linux/delay.h>
10 #include <linux/slab.h>
11 #include <linux/vmalloc.h>
12 #include <linux/uaccess.h>
15 * NVRAM support routines
18 /**
19 * qla2x00_lock_nvram_access() -
20 * @ha: HA context
22 static void
23 qla2x00_lock_nvram_access(struct qla_hw_data *ha)
25 uint16_t data;
26 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
28 if (!IS_QLA2100(ha) && !IS_QLA2200(ha) && !IS_QLA2300(ha)) {
29 data = RD_REG_WORD(&reg->nvram);
30 while (data & NVR_BUSY) {
31 udelay(100);
32 data = RD_REG_WORD(&reg->nvram);
35 /* Lock resource */
36 WRT_REG_WORD(&reg->u.isp2300.host_semaphore, 0x1);
37 RD_REG_WORD(&reg->u.isp2300.host_semaphore);
38 udelay(5);
39 data = RD_REG_WORD(&reg->u.isp2300.host_semaphore);
40 while ((data & BIT_0) == 0) {
41 /* Lock failed */
42 udelay(100);
43 WRT_REG_WORD(&reg->u.isp2300.host_semaphore, 0x1);
44 RD_REG_WORD(&reg->u.isp2300.host_semaphore);
45 udelay(5);
46 data = RD_REG_WORD(&reg->u.isp2300.host_semaphore);
51 /**
52 * qla2x00_unlock_nvram_access() -
53 * @ha: HA context
55 static void
56 qla2x00_unlock_nvram_access(struct qla_hw_data *ha)
58 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
60 if (!IS_QLA2100(ha) && !IS_QLA2200(ha) && !IS_QLA2300(ha)) {
61 WRT_REG_WORD(&reg->u.isp2300.host_semaphore, 0);
62 RD_REG_WORD(&reg->u.isp2300.host_semaphore);
66 /**
67 * qla2x00_nv_write() - Prepare for NVRAM read/write operation.
68 * @ha: HA context
69 * @data: Serial interface selector
71 static void
72 qla2x00_nv_write(struct qla_hw_data *ha, uint16_t data)
74 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
76 WRT_REG_WORD(&reg->nvram, data | NVR_SELECT | NVR_WRT_ENABLE);
77 RD_REG_WORD(&reg->nvram); /* PCI Posting. */
78 NVRAM_DELAY();
79 WRT_REG_WORD(&reg->nvram, data | NVR_SELECT | NVR_CLOCK |
80 NVR_WRT_ENABLE);
81 RD_REG_WORD(&reg->nvram); /* PCI Posting. */
82 NVRAM_DELAY();
83 WRT_REG_WORD(&reg->nvram, data | NVR_SELECT | NVR_WRT_ENABLE);
84 RD_REG_WORD(&reg->nvram); /* PCI Posting. */
85 NVRAM_DELAY();
88 /**
89 * qla2x00_nvram_request() - Sends read command to NVRAM and gets data from
90 * NVRAM.
91 * @ha: HA context
92 * @nv_cmd: NVRAM command
94 * Bit definitions for NVRAM command:
96 * Bit 26 = start bit
97 * Bit 25, 24 = opcode
98 * Bit 23-16 = address
99 * Bit 15-0 = write data
101 * Returns the word read from nvram @addr.
103 static uint16_t
104 qla2x00_nvram_request(struct qla_hw_data *ha, uint32_t nv_cmd)
106 uint8_t cnt;
107 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
108 uint16_t data = 0;
109 uint16_t reg_data;
111 /* Send command to NVRAM. */
112 nv_cmd <<= 5;
113 for (cnt = 0; cnt < 11; cnt++) {
114 if (nv_cmd & BIT_31)
115 qla2x00_nv_write(ha, NVR_DATA_OUT);
116 else
117 qla2x00_nv_write(ha, 0);
118 nv_cmd <<= 1;
121 /* Read data from NVRAM. */
122 for (cnt = 0; cnt < 16; cnt++) {
123 WRT_REG_WORD(&reg->nvram, NVR_SELECT | NVR_CLOCK);
124 RD_REG_WORD(&reg->nvram); /* PCI Posting. */
125 NVRAM_DELAY();
126 data <<= 1;
127 reg_data = RD_REG_WORD(&reg->nvram);
128 if (reg_data & NVR_DATA_IN)
129 data |= BIT_0;
130 WRT_REG_WORD(&reg->nvram, NVR_SELECT);
131 RD_REG_WORD(&reg->nvram); /* PCI Posting. */
132 NVRAM_DELAY();
135 /* Deselect chip. */
136 WRT_REG_WORD(&reg->nvram, NVR_DESELECT);
137 RD_REG_WORD(&reg->nvram); /* PCI Posting. */
138 NVRAM_DELAY();
140 return data;
145 * qla2x00_get_nvram_word() - Calculates word position in NVRAM and calls the
146 * request routine to get the word from NVRAM.
147 * @ha: HA context
148 * @addr: Address in NVRAM to read
150 * Returns the word read from nvram @addr.
152 static uint16_t
153 qla2x00_get_nvram_word(struct qla_hw_data *ha, uint32_t addr)
155 uint16_t data;
156 uint32_t nv_cmd;
158 nv_cmd = addr << 16;
159 nv_cmd |= NV_READ_OP;
160 data = qla2x00_nvram_request(ha, nv_cmd);
162 return (data);
166 * qla2x00_nv_deselect() - Deselect NVRAM operations.
167 * @ha: HA context
169 static void
170 qla2x00_nv_deselect(struct qla_hw_data *ha)
172 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
174 WRT_REG_WORD(&reg->nvram, NVR_DESELECT);
175 RD_REG_WORD(&reg->nvram); /* PCI Posting. */
176 NVRAM_DELAY();
180 * qla2x00_write_nvram_word() - Write NVRAM data.
181 * @ha: HA context
182 * @addr: Address in NVRAM to write
183 * @data: word to program
185 static void
186 qla2x00_write_nvram_word(struct qla_hw_data *ha, uint32_t addr, uint16_t data)
188 int count;
189 uint16_t word;
190 uint32_t nv_cmd, wait_cnt;
191 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
192 scsi_qla_host_t *vha = pci_get_drvdata(ha->pdev);
194 qla2x00_nv_write(ha, NVR_DATA_OUT);
195 qla2x00_nv_write(ha, 0);
196 qla2x00_nv_write(ha, 0);
198 for (word = 0; word < 8; word++)
199 qla2x00_nv_write(ha, NVR_DATA_OUT);
201 qla2x00_nv_deselect(ha);
203 /* Write data */
204 nv_cmd = (addr << 16) | NV_WRITE_OP;
205 nv_cmd |= data;
206 nv_cmd <<= 5;
207 for (count = 0; count < 27; count++) {
208 if (nv_cmd & BIT_31)
209 qla2x00_nv_write(ha, NVR_DATA_OUT);
210 else
211 qla2x00_nv_write(ha, 0);
213 nv_cmd <<= 1;
216 qla2x00_nv_deselect(ha);
218 /* Wait for NVRAM to become ready */
219 WRT_REG_WORD(&reg->nvram, NVR_SELECT);
220 RD_REG_WORD(&reg->nvram); /* PCI Posting. */
221 wait_cnt = NVR_WAIT_CNT;
222 do {
223 if (!--wait_cnt) {
224 ql_dbg(ql_dbg_user, vha, 0x708d,
225 "NVRAM didn't go ready...\n");
226 break;
228 NVRAM_DELAY();
229 word = RD_REG_WORD(&reg->nvram);
230 } while ((word & NVR_DATA_IN) == 0);
232 qla2x00_nv_deselect(ha);
234 /* Disable writes */
235 qla2x00_nv_write(ha, NVR_DATA_OUT);
236 for (count = 0; count < 10; count++)
237 qla2x00_nv_write(ha, 0);
239 qla2x00_nv_deselect(ha);
242 static int
243 qla2x00_write_nvram_word_tmo(struct qla_hw_data *ha, uint32_t addr,
244 uint16_t data, uint32_t tmo)
246 int ret, count;
247 uint16_t word;
248 uint32_t nv_cmd;
249 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
251 ret = QLA_SUCCESS;
253 qla2x00_nv_write(ha, NVR_DATA_OUT);
254 qla2x00_nv_write(ha, 0);
255 qla2x00_nv_write(ha, 0);
257 for (word = 0; word < 8; word++)
258 qla2x00_nv_write(ha, NVR_DATA_OUT);
260 qla2x00_nv_deselect(ha);
262 /* Write data */
263 nv_cmd = (addr << 16) | NV_WRITE_OP;
264 nv_cmd |= data;
265 nv_cmd <<= 5;
266 for (count = 0; count < 27; count++) {
267 if (nv_cmd & BIT_31)
268 qla2x00_nv_write(ha, NVR_DATA_OUT);
269 else
270 qla2x00_nv_write(ha, 0);
272 nv_cmd <<= 1;
275 qla2x00_nv_deselect(ha);
277 /* Wait for NVRAM to become ready */
278 WRT_REG_WORD(&reg->nvram, NVR_SELECT);
279 RD_REG_WORD(&reg->nvram); /* PCI Posting. */
280 do {
281 NVRAM_DELAY();
282 word = RD_REG_WORD(&reg->nvram);
283 if (!--tmo) {
284 ret = QLA_FUNCTION_FAILED;
285 break;
287 } while ((word & NVR_DATA_IN) == 0);
289 qla2x00_nv_deselect(ha);
291 /* Disable writes */
292 qla2x00_nv_write(ha, NVR_DATA_OUT);
293 for (count = 0; count < 10; count++)
294 qla2x00_nv_write(ha, 0);
296 qla2x00_nv_deselect(ha);
298 return ret;
302 * qla2x00_clear_nvram_protection() -
303 * @ha: HA context
305 static int
306 qla2x00_clear_nvram_protection(struct qla_hw_data *ha)
308 int ret, stat;
309 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
310 uint32_t word, wait_cnt;
311 uint16_t wprot, wprot_old;
312 scsi_qla_host_t *vha = pci_get_drvdata(ha->pdev);
314 /* Clear NVRAM write protection. */
315 ret = QLA_FUNCTION_FAILED;
317 wprot_old = cpu_to_le16(qla2x00_get_nvram_word(ha, ha->nvram_base));
318 stat = qla2x00_write_nvram_word_tmo(ha, ha->nvram_base,
319 cpu_to_le16(0x1234), 100000);
320 wprot = cpu_to_le16(qla2x00_get_nvram_word(ha, ha->nvram_base));
321 if (stat != QLA_SUCCESS || wprot != 0x1234) {
322 /* Write enable. */
323 qla2x00_nv_write(ha, NVR_DATA_OUT);
324 qla2x00_nv_write(ha, 0);
325 qla2x00_nv_write(ha, 0);
326 for (word = 0; word < 8; word++)
327 qla2x00_nv_write(ha, NVR_DATA_OUT);
329 qla2x00_nv_deselect(ha);
331 /* Enable protection register. */
332 qla2x00_nv_write(ha, NVR_PR_ENABLE | NVR_DATA_OUT);
333 qla2x00_nv_write(ha, NVR_PR_ENABLE);
334 qla2x00_nv_write(ha, NVR_PR_ENABLE);
335 for (word = 0; word < 8; word++)
336 qla2x00_nv_write(ha, NVR_DATA_OUT | NVR_PR_ENABLE);
338 qla2x00_nv_deselect(ha);
340 /* Clear protection register (ffff is cleared). */
341 qla2x00_nv_write(ha, NVR_PR_ENABLE | NVR_DATA_OUT);
342 qla2x00_nv_write(ha, NVR_PR_ENABLE | NVR_DATA_OUT);
343 qla2x00_nv_write(ha, NVR_PR_ENABLE | NVR_DATA_OUT);
344 for (word = 0; word < 8; word++)
345 qla2x00_nv_write(ha, NVR_DATA_OUT | NVR_PR_ENABLE);
347 qla2x00_nv_deselect(ha);
349 /* Wait for NVRAM to become ready. */
350 WRT_REG_WORD(&reg->nvram, NVR_SELECT);
351 RD_REG_WORD(&reg->nvram); /* PCI Posting. */
352 wait_cnt = NVR_WAIT_CNT;
353 do {
354 if (!--wait_cnt) {
355 ql_dbg(ql_dbg_user, vha, 0x708e,
356 "NVRAM didn't go ready...\n");
357 break;
359 NVRAM_DELAY();
360 word = RD_REG_WORD(&reg->nvram);
361 } while ((word & NVR_DATA_IN) == 0);
363 if (wait_cnt)
364 ret = QLA_SUCCESS;
365 } else
366 qla2x00_write_nvram_word(ha, ha->nvram_base, wprot_old);
368 return ret;
371 static void
372 qla2x00_set_nvram_protection(struct qla_hw_data *ha, int stat)
374 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
375 uint32_t word, wait_cnt;
376 scsi_qla_host_t *vha = pci_get_drvdata(ha->pdev);
378 if (stat != QLA_SUCCESS)
379 return;
381 /* Set NVRAM write protection. */
382 /* Write enable. */
383 qla2x00_nv_write(ha, NVR_DATA_OUT);
384 qla2x00_nv_write(ha, 0);
385 qla2x00_nv_write(ha, 0);
386 for (word = 0; word < 8; word++)
387 qla2x00_nv_write(ha, NVR_DATA_OUT);
389 qla2x00_nv_deselect(ha);
391 /* Enable protection register. */
392 qla2x00_nv_write(ha, NVR_PR_ENABLE | NVR_DATA_OUT);
393 qla2x00_nv_write(ha, NVR_PR_ENABLE);
394 qla2x00_nv_write(ha, NVR_PR_ENABLE);
395 for (word = 0; word < 8; word++)
396 qla2x00_nv_write(ha, NVR_DATA_OUT | NVR_PR_ENABLE);
398 qla2x00_nv_deselect(ha);
400 /* Enable protection register. */
401 qla2x00_nv_write(ha, NVR_PR_ENABLE | NVR_DATA_OUT);
402 qla2x00_nv_write(ha, NVR_PR_ENABLE);
403 qla2x00_nv_write(ha, NVR_PR_ENABLE | NVR_DATA_OUT);
404 for (word = 0; word < 8; word++)
405 qla2x00_nv_write(ha, NVR_PR_ENABLE);
407 qla2x00_nv_deselect(ha);
409 /* Wait for NVRAM to become ready. */
410 WRT_REG_WORD(&reg->nvram, NVR_SELECT);
411 RD_REG_WORD(&reg->nvram); /* PCI Posting. */
412 wait_cnt = NVR_WAIT_CNT;
413 do {
414 if (!--wait_cnt) {
415 ql_dbg(ql_dbg_user, vha, 0x708f,
416 "NVRAM didn't go ready...\n");
417 break;
419 NVRAM_DELAY();
420 word = RD_REG_WORD(&reg->nvram);
421 } while ((word & NVR_DATA_IN) == 0);
425 /*****************************************************************************/
426 /* Flash Manipulation Routines */
427 /*****************************************************************************/
429 static inline uint32_t
430 flash_conf_addr(struct qla_hw_data *ha, uint32_t faddr)
432 return ha->flash_conf_off + faddr;
435 static inline uint32_t
436 flash_data_addr(struct qla_hw_data *ha, uint32_t faddr)
438 return ha->flash_data_off + faddr;
441 static inline uint32_t
442 nvram_conf_addr(struct qla_hw_data *ha, uint32_t naddr)
444 return ha->nvram_conf_off + naddr;
447 static inline uint32_t
448 nvram_data_addr(struct qla_hw_data *ha, uint32_t naddr)
450 return ha->nvram_data_off + naddr;
453 static int
454 qla24xx_read_flash_dword(struct qla_hw_data *ha, uint32_t addr, uint32_t *data)
456 struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
457 ulong cnt = 30000;
459 WRT_REG_DWORD(&reg->flash_addr, addr & ~FARX_DATA_FLAG);
461 while (cnt--) {
462 if (RD_REG_DWORD(&reg->flash_addr) & FARX_DATA_FLAG) {
463 *data = RD_REG_DWORD(&reg->flash_data);
464 return QLA_SUCCESS;
466 udelay(10);
467 cond_resched();
470 ql_log(ql_log_warn, pci_get_drvdata(ha->pdev), 0x7090,
471 "Flash read dword at %x timeout.\n", addr);
472 *data = 0xDEADDEAD;
473 return QLA_FUNCTION_TIMEOUT;
477 qla24xx_read_flash_data(scsi_qla_host_t *vha, uint32_t *dwptr, uint32_t faddr,
478 uint32_t dwords)
480 ulong i;
481 int ret = QLA_SUCCESS;
482 struct qla_hw_data *ha = vha->hw;
484 /* Dword reads to flash. */
485 faddr = flash_data_addr(ha, faddr);
486 for (i = 0; i < dwords; i++, faddr++, dwptr++) {
487 ret = qla24xx_read_flash_dword(ha, faddr, dwptr);
488 if (ret != QLA_SUCCESS)
489 break;
490 cpu_to_le32s(dwptr);
493 return ret;
496 static int
497 qla24xx_write_flash_dword(struct qla_hw_data *ha, uint32_t addr, uint32_t data)
499 struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
500 ulong cnt = 500000;
502 WRT_REG_DWORD(&reg->flash_data, data);
503 WRT_REG_DWORD(&reg->flash_addr, addr | FARX_DATA_FLAG);
505 while (cnt--) {
506 if (!(RD_REG_DWORD(&reg->flash_addr) & FARX_DATA_FLAG))
507 return QLA_SUCCESS;
508 udelay(10);
509 cond_resched();
512 ql_log(ql_log_warn, pci_get_drvdata(ha->pdev), 0x7090,
513 "Flash write dword at %x timeout.\n", addr);
514 return QLA_FUNCTION_TIMEOUT;
517 static void
518 qla24xx_get_flash_manufacturer(struct qla_hw_data *ha, uint8_t *man_id,
519 uint8_t *flash_id)
521 uint32_t faddr, ids = 0;
523 *man_id = *flash_id = 0;
525 faddr = flash_conf_addr(ha, 0x03ab);
526 if (!qla24xx_read_flash_dword(ha, faddr, &ids)) {
527 *man_id = LSB(ids);
528 *flash_id = MSB(ids);
531 /* Check if man_id and flash_id are valid. */
532 if (ids != 0xDEADDEAD && (*man_id == 0 || *flash_id == 0)) {
533 /* Read information using 0x9f opcode
534 * Device ID, Mfg ID would be read in the format:
535 * <Ext Dev Info><Device ID Part2><Device ID Part 1><Mfg ID>
536 * Example: ATMEL 0x00 01 45 1F
537 * Extract MFG and Dev ID from last two bytes.
539 faddr = flash_conf_addr(ha, 0x009f);
540 if (!qla24xx_read_flash_dword(ha, faddr, &ids)) {
541 *man_id = LSB(ids);
542 *flash_id = MSB(ids);
547 static int
548 qla2xxx_find_flt_start(scsi_qla_host_t *vha, uint32_t *start)
550 const char *loc, *locations[] = { "DEF", "PCI" };
551 uint32_t pcihdr, pcids;
552 uint16_t cnt, chksum, *wptr;
553 struct qla_hw_data *ha = vha->hw;
554 struct req_que *req = ha->req_q_map[0];
555 struct qla_flt_location *fltl = (void *)req->ring;
556 uint32_t *dcode = (void *)req->ring;
557 uint8_t *buf = (void *)req->ring, *bcode, last_image;
560 * FLT-location structure resides after the last PCI region.
563 /* Begin with sane defaults. */
564 loc = locations[0];
565 *start = 0;
566 if (IS_QLA24XX_TYPE(ha))
567 *start = FA_FLASH_LAYOUT_ADDR_24;
568 else if (IS_QLA25XX(ha))
569 *start = FA_FLASH_LAYOUT_ADDR;
570 else if (IS_QLA81XX(ha))
571 *start = FA_FLASH_LAYOUT_ADDR_81;
572 else if (IS_P3P_TYPE(ha)) {
573 *start = FA_FLASH_LAYOUT_ADDR_82;
574 goto end;
575 } else if (IS_QLA83XX(ha) || IS_QLA27XX(ha)) {
576 *start = FA_FLASH_LAYOUT_ADDR_83;
577 goto end;
578 } else if (IS_QLA28XX(ha)) {
579 *start = FA_FLASH_LAYOUT_ADDR_28;
580 goto end;
583 /* Begin with first PCI expansion ROM header. */
584 pcihdr = 0;
585 do {
586 /* Verify PCI expansion ROM header. */
587 qla24xx_read_flash_data(vha, dcode, pcihdr >> 2, 0x20);
588 bcode = buf + (pcihdr % 4);
589 if (bcode[0x0] != 0x55 || bcode[0x1] != 0xaa)
590 goto end;
592 /* Locate PCI data structure. */
593 pcids = pcihdr + ((bcode[0x19] << 8) | bcode[0x18]);
594 qla24xx_read_flash_data(vha, dcode, pcids >> 2, 0x20);
595 bcode = buf + (pcihdr % 4);
597 /* Validate signature of PCI data structure. */
598 if (bcode[0x0] != 'P' || bcode[0x1] != 'C' ||
599 bcode[0x2] != 'I' || bcode[0x3] != 'R')
600 goto end;
602 last_image = bcode[0x15] & BIT_7;
604 /* Locate next PCI expansion ROM. */
605 pcihdr += ((bcode[0x11] << 8) | bcode[0x10]) * 512;
606 } while (!last_image);
608 /* Now verify FLT-location structure. */
609 qla24xx_read_flash_data(vha, dcode, pcihdr >> 2, sizeof(*fltl) >> 2);
610 if (memcmp(fltl->sig, "QFLT", 4))
611 goto end;
613 wptr = (void *)req->ring;
614 cnt = sizeof(*fltl) / sizeof(*wptr);
615 for (chksum = 0; cnt--; wptr++)
616 chksum += le16_to_cpu(*wptr);
617 if (chksum) {
618 ql_log(ql_log_fatal, vha, 0x0045,
619 "Inconsistent FLTL detected: checksum=0x%x.\n", chksum);
620 ql_dump_buffer(ql_dbg_init + ql_dbg_buffer, vha, 0x010e,
621 fltl, sizeof(*fltl));
622 return QLA_FUNCTION_FAILED;
625 /* Good data. Use specified location. */
626 loc = locations[1];
627 *start = (le16_to_cpu(fltl->start_hi) << 16 |
628 le16_to_cpu(fltl->start_lo)) >> 2;
629 end:
630 ql_dbg(ql_dbg_init, vha, 0x0046,
631 "FLTL[%s] = 0x%x.\n",
632 loc, *start);
633 return QLA_SUCCESS;
636 static void
637 qla2xxx_get_flt_info(scsi_qla_host_t *vha, uint32_t flt_addr)
639 const char *locations[] = { "DEF", "FLT" }, *loc = locations[1];
640 const uint32_t def_fw[] =
641 { FA_RISC_CODE_ADDR, FA_RISC_CODE_ADDR, FA_RISC_CODE_ADDR_81 };
642 const uint32_t def_boot[] =
643 { FA_BOOT_CODE_ADDR, FA_BOOT_CODE_ADDR, FA_BOOT_CODE_ADDR_81 };
644 const uint32_t def_vpd_nvram[] =
645 { FA_VPD_NVRAM_ADDR, FA_VPD_NVRAM_ADDR, FA_VPD_NVRAM_ADDR_81 };
646 const uint32_t def_vpd0[] =
647 { 0, 0, FA_VPD0_ADDR_81 };
648 const uint32_t def_vpd1[] =
649 { 0, 0, FA_VPD1_ADDR_81 };
650 const uint32_t def_nvram0[] =
651 { 0, 0, FA_NVRAM0_ADDR_81 };
652 const uint32_t def_nvram1[] =
653 { 0, 0, FA_NVRAM1_ADDR_81 };
654 const uint32_t def_fdt[] =
655 { FA_FLASH_DESCR_ADDR_24, FA_FLASH_DESCR_ADDR,
656 FA_FLASH_DESCR_ADDR_81 };
657 const uint32_t def_npiv_conf0[] =
658 { FA_NPIV_CONF0_ADDR_24, FA_NPIV_CONF0_ADDR,
659 FA_NPIV_CONF0_ADDR_81 };
660 const uint32_t def_npiv_conf1[] =
661 { FA_NPIV_CONF1_ADDR_24, FA_NPIV_CONF1_ADDR,
662 FA_NPIV_CONF1_ADDR_81 };
663 const uint32_t fcp_prio_cfg0[] =
664 { FA_FCP_PRIO0_ADDR, FA_FCP_PRIO0_ADDR_25,
665 0 };
666 const uint32_t fcp_prio_cfg1[] =
667 { FA_FCP_PRIO1_ADDR, FA_FCP_PRIO1_ADDR_25,
668 0 };
670 struct qla_hw_data *ha = vha->hw;
671 uint32_t def = IS_QLA81XX(ha) ? 2 : IS_QLA25XX(ha) ? 1 : 0;
672 struct qla_flt_header *flt = ha->flt;
673 struct qla_flt_region *region = &flt->region[0];
674 uint16_t *wptr, cnt, chksum;
675 uint32_t start;
677 /* Assign FCP prio region since older adapters may not have FLT, or
678 FCP prio region in it's FLT.
680 ha->flt_region_fcp_prio = (ha->port_no == 0) ?
681 fcp_prio_cfg0[def] : fcp_prio_cfg1[def];
683 ha->flt_region_flt = flt_addr;
684 wptr = (uint16_t *)ha->flt;
685 ha->isp_ops->read_optrom(vha, (void *)flt, flt_addr << 2,
686 (sizeof(struct qla_flt_header) + FLT_REGIONS_SIZE));
688 if (le16_to_cpu(*wptr) == 0xffff)
689 goto no_flash_data;
690 if (flt->version != cpu_to_le16(1)) {
691 ql_log(ql_log_warn, vha, 0x0047,
692 "Unsupported FLT detected: version=0x%x length=0x%x checksum=0x%x.\n",
693 le16_to_cpu(flt->version), le16_to_cpu(flt->length),
694 le16_to_cpu(flt->checksum));
695 goto no_flash_data;
698 cnt = (sizeof(*flt) + le16_to_cpu(flt->length)) / sizeof(*wptr);
699 for (chksum = 0; cnt--; wptr++)
700 chksum += le16_to_cpu(*wptr);
701 if (chksum) {
702 ql_log(ql_log_fatal, vha, 0x0048,
703 "Inconsistent FLT detected: version=0x%x length=0x%x checksum=0x%x.\n",
704 le16_to_cpu(flt->version), le16_to_cpu(flt->length),
705 le16_to_cpu(flt->checksum));
706 goto no_flash_data;
709 cnt = le16_to_cpu(flt->length) / sizeof(*region);
710 for ( ; cnt; cnt--, region++) {
711 /* Store addresses as DWORD offsets. */
712 start = le32_to_cpu(region->start) >> 2;
713 ql_dbg(ql_dbg_init, vha, 0x0049,
714 "FLT[%#x]: start=%#x end=%#x size=%#x.\n",
715 le16_to_cpu(region->code), start,
716 le32_to_cpu(region->end) >> 2,
717 le32_to_cpu(region->size) >> 2);
718 if (region->attribute)
719 ql_log(ql_dbg_init, vha, 0xffff,
720 "Region %x is secure\n", region->code);
722 switch (le16_to_cpu(region->code)) {
723 case FLT_REG_FCOE_FW:
724 if (!IS_QLA8031(ha))
725 break;
726 ha->flt_region_fw = start;
727 break;
728 case FLT_REG_FW:
729 if (IS_QLA8031(ha))
730 break;
731 ha->flt_region_fw = start;
732 break;
733 case FLT_REG_BOOT_CODE:
734 ha->flt_region_boot = start;
735 break;
736 case FLT_REG_VPD_0:
737 if (IS_QLA8031(ha))
738 break;
739 ha->flt_region_vpd_nvram = start;
740 if (IS_P3P_TYPE(ha))
741 break;
742 if (ha->port_no == 0)
743 ha->flt_region_vpd = start;
744 break;
745 case FLT_REG_VPD_1:
746 if (IS_P3P_TYPE(ha) || IS_QLA8031(ha))
747 break;
748 if (ha->port_no == 1)
749 ha->flt_region_vpd = start;
750 break;
751 case FLT_REG_VPD_2:
752 if (!IS_QLA27XX(ha) && !IS_QLA28XX(ha))
753 break;
754 if (ha->port_no == 2)
755 ha->flt_region_vpd = start;
756 break;
757 case FLT_REG_VPD_3:
758 if (!IS_QLA27XX(ha) && !IS_QLA28XX(ha))
759 break;
760 if (ha->port_no == 3)
761 ha->flt_region_vpd = start;
762 break;
763 case FLT_REG_NVRAM_0:
764 if (IS_QLA8031(ha))
765 break;
766 if (ha->port_no == 0)
767 ha->flt_region_nvram = start;
768 break;
769 case FLT_REG_NVRAM_1:
770 if (IS_QLA8031(ha))
771 break;
772 if (ha->port_no == 1)
773 ha->flt_region_nvram = start;
774 break;
775 case FLT_REG_NVRAM_2:
776 if (!IS_QLA27XX(ha) && !IS_QLA28XX(ha))
777 break;
778 if (ha->port_no == 2)
779 ha->flt_region_nvram = start;
780 break;
781 case FLT_REG_NVRAM_3:
782 if (!IS_QLA27XX(ha) && !IS_QLA28XX(ha))
783 break;
784 if (ha->port_no == 3)
785 ha->flt_region_nvram = start;
786 break;
787 case FLT_REG_FDT:
788 ha->flt_region_fdt = start;
789 break;
790 case FLT_REG_NPIV_CONF_0:
791 if (ha->port_no == 0)
792 ha->flt_region_npiv_conf = start;
793 break;
794 case FLT_REG_NPIV_CONF_1:
795 if (ha->port_no == 1)
796 ha->flt_region_npiv_conf = start;
797 break;
798 case FLT_REG_GOLD_FW:
799 ha->flt_region_gold_fw = start;
800 break;
801 case FLT_REG_FCP_PRIO_0:
802 if (ha->port_no == 0)
803 ha->flt_region_fcp_prio = start;
804 break;
805 case FLT_REG_FCP_PRIO_1:
806 if (ha->port_no == 1)
807 ha->flt_region_fcp_prio = start;
808 break;
809 case FLT_REG_BOOT_CODE_82XX:
810 ha->flt_region_boot = start;
811 break;
812 case FLT_REG_BOOT_CODE_8044:
813 if (IS_QLA8044(ha))
814 ha->flt_region_boot = start;
815 break;
816 case FLT_REG_FW_82XX:
817 ha->flt_region_fw = start;
818 break;
819 case FLT_REG_CNA_FW:
820 if (IS_CNA_CAPABLE(ha))
821 ha->flt_region_fw = start;
822 break;
823 case FLT_REG_GOLD_FW_82XX:
824 ha->flt_region_gold_fw = start;
825 break;
826 case FLT_REG_BOOTLOAD_82XX:
827 ha->flt_region_bootload = start;
828 break;
829 case FLT_REG_VPD_8XXX:
830 if (IS_CNA_CAPABLE(ha))
831 ha->flt_region_vpd = start;
832 break;
833 case FLT_REG_FCOE_NVRAM_0:
834 if (!(IS_QLA8031(ha) || IS_QLA8044(ha)))
835 break;
836 if (ha->port_no == 0)
837 ha->flt_region_nvram = start;
838 break;
839 case FLT_REG_FCOE_NVRAM_1:
840 if (!(IS_QLA8031(ha) || IS_QLA8044(ha)))
841 break;
842 if (ha->port_no == 1)
843 ha->flt_region_nvram = start;
844 break;
845 case FLT_REG_IMG_PRI_27XX:
846 if (IS_QLA27XX(ha) && !IS_QLA28XX(ha))
847 ha->flt_region_img_status_pri = start;
848 break;
849 case FLT_REG_IMG_SEC_27XX:
850 if (IS_QLA27XX(ha) || IS_QLA28XX(ha))
851 ha->flt_region_img_status_sec = start;
852 break;
853 case FLT_REG_FW_SEC_27XX:
854 if (IS_QLA27XX(ha) || IS_QLA28XX(ha))
855 ha->flt_region_fw_sec = start;
856 break;
857 case FLT_REG_BOOTLOAD_SEC_27XX:
858 if (IS_QLA27XX(ha) || IS_QLA28XX(ha))
859 ha->flt_region_boot_sec = start;
860 break;
861 case FLT_REG_AUX_IMG_PRI_28XX:
862 if (IS_QLA27XX(ha) || IS_QLA28XX(ha))
863 ha->flt_region_aux_img_status_pri = start;
864 break;
865 case FLT_REG_AUX_IMG_SEC_28XX:
866 if (IS_QLA27XX(ha) || IS_QLA28XX(ha))
867 ha->flt_region_aux_img_status_sec = start;
868 break;
869 case FLT_REG_NVRAM_SEC_28XX_0:
870 if (IS_QLA27XX(ha) || IS_QLA28XX(ha))
871 if (ha->port_no == 0)
872 ha->flt_region_nvram_sec = start;
873 break;
874 case FLT_REG_NVRAM_SEC_28XX_1:
875 if (IS_QLA27XX(ha) || IS_QLA28XX(ha))
876 if (ha->port_no == 1)
877 ha->flt_region_nvram_sec = start;
878 break;
879 case FLT_REG_NVRAM_SEC_28XX_2:
880 if (IS_QLA27XX(ha) || IS_QLA28XX(ha))
881 if (ha->port_no == 2)
882 ha->flt_region_nvram_sec = start;
883 break;
884 case FLT_REG_NVRAM_SEC_28XX_3:
885 if (IS_QLA27XX(ha) || IS_QLA28XX(ha))
886 if (ha->port_no == 3)
887 ha->flt_region_nvram_sec = start;
888 break;
889 case FLT_REG_VPD_SEC_27XX_0:
890 case FLT_REG_VPD_SEC_28XX_0:
891 if (IS_QLA27XX(ha) || IS_QLA28XX(ha)) {
892 ha->flt_region_vpd_nvram_sec = start;
893 if (ha->port_no == 0)
894 ha->flt_region_vpd_sec = start;
896 break;
897 case FLT_REG_VPD_SEC_27XX_1:
898 case FLT_REG_VPD_SEC_28XX_1:
899 if (IS_QLA27XX(ha) || IS_QLA28XX(ha))
900 if (ha->port_no == 1)
901 ha->flt_region_vpd_sec = start;
902 break;
903 case FLT_REG_VPD_SEC_27XX_2:
904 case FLT_REG_VPD_SEC_28XX_2:
905 if (IS_QLA27XX(ha) || IS_QLA28XX(ha))
906 if (ha->port_no == 2)
907 ha->flt_region_vpd_sec = start;
908 break;
909 case FLT_REG_VPD_SEC_27XX_3:
910 case FLT_REG_VPD_SEC_28XX_3:
911 if (IS_QLA27XX(ha) || IS_QLA28XX(ha))
912 if (ha->port_no == 3)
913 ha->flt_region_vpd_sec = start;
914 break;
917 goto done;
919 no_flash_data:
920 /* Use hardcoded defaults. */
921 loc = locations[0];
922 ha->flt_region_fw = def_fw[def];
923 ha->flt_region_boot = def_boot[def];
924 ha->flt_region_vpd_nvram = def_vpd_nvram[def];
925 ha->flt_region_vpd = (ha->port_no == 0) ?
926 def_vpd0[def] : def_vpd1[def];
927 ha->flt_region_nvram = (ha->port_no == 0) ?
928 def_nvram0[def] : def_nvram1[def];
929 ha->flt_region_fdt = def_fdt[def];
930 ha->flt_region_npiv_conf = (ha->port_no == 0) ?
931 def_npiv_conf0[def] : def_npiv_conf1[def];
932 done:
933 ql_dbg(ql_dbg_init, vha, 0x004a,
934 "FLT[%s]: boot=0x%x fw=0x%x vpd_nvram=0x%x vpd=0x%x nvram=0x%x "
935 "fdt=0x%x flt=0x%x npiv=0x%x fcp_prif_cfg=0x%x.\n",
936 loc, ha->flt_region_boot, ha->flt_region_fw,
937 ha->flt_region_vpd_nvram, ha->flt_region_vpd, ha->flt_region_nvram,
938 ha->flt_region_fdt, ha->flt_region_flt, ha->flt_region_npiv_conf,
939 ha->flt_region_fcp_prio);
942 static void
943 qla2xxx_get_fdt_info(scsi_qla_host_t *vha)
945 #define FLASH_BLK_SIZE_4K 0x1000
946 #define FLASH_BLK_SIZE_32K 0x8000
947 #define FLASH_BLK_SIZE_64K 0x10000
948 const char *loc, *locations[] = { "MID", "FDT" };
949 struct qla_hw_data *ha = vha->hw;
950 struct req_que *req = ha->req_q_map[0];
951 uint16_t cnt, chksum;
952 uint16_t *wptr = (void *)req->ring;
953 struct qla_fdt_layout *fdt = (struct qla_fdt_layout *)req->ring;
954 uint8_t man_id, flash_id;
955 uint16_t mid = 0, fid = 0;
957 ha->isp_ops->read_optrom(vha, fdt, ha->flt_region_fdt << 2,
958 OPTROM_BURST_DWORDS);
959 if (le16_to_cpu(*wptr) == 0xffff)
960 goto no_flash_data;
961 if (memcmp(fdt->sig, "QLID", 4))
962 goto no_flash_data;
964 for (cnt = 0, chksum = 0; cnt < sizeof(*fdt) >> 1; cnt++, wptr++)
965 chksum += le16_to_cpu(*wptr);
966 if (chksum) {
967 ql_dbg(ql_dbg_init, vha, 0x004c,
968 "Inconsistent FDT detected:"
969 " checksum=0x%x id=%c version0x%x.\n", chksum,
970 fdt->sig[0], le16_to_cpu(fdt->version));
971 ql_dump_buffer(ql_dbg_init + ql_dbg_buffer, vha, 0x0113,
972 fdt, sizeof(*fdt));
973 goto no_flash_data;
976 loc = locations[1];
977 mid = le16_to_cpu(fdt->man_id);
978 fid = le16_to_cpu(fdt->id);
979 ha->fdt_wrt_disable = fdt->wrt_disable_bits;
980 ha->fdt_wrt_enable = fdt->wrt_enable_bits;
981 ha->fdt_wrt_sts_reg_cmd = fdt->wrt_sts_reg_cmd;
982 if (IS_QLA8044(ha))
983 ha->fdt_erase_cmd = fdt->erase_cmd;
984 else
985 ha->fdt_erase_cmd =
986 flash_conf_addr(ha, 0x0300 | fdt->erase_cmd);
987 ha->fdt_block_size = le32_to_cpu(fdt->block_size);
988 if (fdt->unprotect_sec_cmd) {
989 ha->fdt_unprotect_sec_cmd = flash_conf_addr(ha, 0x0300 |
990 fdt->unprotect_sec_cmd);
991 ha->fdt_protect_sec_cmd = fdt->protect_sec_cmd ?
992 flash_conf_addr(ha, 0x0300 | fdt->protect_sec_cmd) :
993 flash_conf_addr(ha, 0x0336);
995 goto done;
996 no_flash_data:
997 loc = locations[0];
998 if (IS_P3P_TYPE(ha)) {
999 ha->fdt_block_size = FLASH_BLK_SIZE_64K;
1000 goto done;
1002 qla24xx_get_flash_manufacturer(ha, &man_id, &flash_id);
1003 mid = man_id;
1004 fid = flash_id;
1005 ha->fdt_wrt_disable = 0x9c;
1006 ha->fdt_erase_cmd = flash_conf_addr(ha, 0x03d8);
1007 switch (man_id) {
1008 case 0xbf: /* STT flash. */
1009 if (flash_id == 0x8e)
1010 ha->fdt_block_size = FLASH_BLK_SIZE_64K;
1011 else
1012 ha->fdt_block_size = FLASH_BLK_SIZE_32K;
1014 if (flash_id == 0x80)
1015 ha->fdt_erase_cmd = flash_conf_addr(ha, 0x0352);
1016 break;
1017 case 0x13: /* ST M25P80. */
1018 ha->fdt_block_size = FLASH_BLK_SIZE_64K;
1019 break;
1020 case 0x1f: /* Atmel 26DF081A. */
1021 ha->fdt_block_size = FLASH_BLK_SIZE_4K;
1022 ha->fdt_erase_cmd = flash_conf_addr(ha, 0x0320);
1023 ha->fdt_unprotect_sec_cmd = flash_conf_addr(ha, 0x0339);
1024 ha->fdt_protect_sec_cmd = flash_conf_addr(ha, 0x0336);
1025 break;
1026 default:
1027 /* Default to 64 kb sector size. */
1028 ha->fdt_block_size = FLASH_BLK_SIZE_64K;
1029 break;
1031 done:
1032 ql_dbg(ql_dbg_init, vha, 0x004d,
1033 "FDT[%s]: (0x%x/0x%x) erase=0x%x "
1034 "pr=%x wrtd=0x%x blk=0x%x.\n",
1035 loc, mid, fid,
1036 ha->fdt_erase_cmd, ha->fdt_protect_sec_cmd,
1037 ha->fdt_wrt_disable, ha->fdt_block_size);
1041 static void
1042 qla2xxx_get_idc_param(scsi_qla_host_t *vha)
1044 #define QLA82XX_IDC_PARAM_ADDR 0x003e885c
1045 uint32_t *wptr;
1046 struct qla_hw_data *ha = vha->hw;
1047 struct req_que *req = ha->req_q_map[0];
1049 if (!(IS_P3P_TYPE(ha)))
1050 return;
1052 wptr = (uint32_t *)req->ring;
1053 ha->isp_ops->read_optrom(vha, req->ring, QLA82XX_IDC_PARAM_ADDR, 8);
1055 if (*wptr == cpu_to_le32(0xffffffff)) {
1056 ha->fcoe_dev_init_timeout = QLA82XX_ROM_DEV_INIT_TIMEOUT;
1057 ha->fcoe_reset_timeout = QLA82XX_ROM_DRV_RESET_ACK_TIMEOUT;
1058 } else {
1059 ha->fcoe_dev_init_timeout = le32_to_cpu(*wptr);
1060 wptr++;
1061 ha->fcoe_reset_timeout = le32_to_cpu(*wptr);
1063 ql_dbg(ql_dbg_init, vha, 0x004e,
1064 "fcoe_dev_init_timeout=%d "
1065 "fcoe_reset_timeout=%d.\n", ha->fcoe_dev_init_timeout,
1066 ha->fcoe_reset_timeout);
1067 return;
1071 qla2xxx_get_flash_info(scsi_qla_host_t *vha)
1073 int ret;
1074 uint32_t flt_addr;
1075 struct qla_hw_data *ha = vha->hw;
1077 if (!IS_QLA24XX_TYPE(ha) && !IS_QLA25XX(ha) &&
1078 !IS_CNA_CAPABLE(ha) && !IS_QLA2031(ha) &&
1079 !IS_QLA27XX(ha) && !IS_QLA28XX(ha))
1080 return QLA_SUCCESS;
1082 ret = qla2xxx_find_flt_start(vha, &flt_addr);
1083 if (ret != QLA_SUCCESS)
1084 return ret;
1086 qla2xxx_get_flt_info(vha, flt_addr);
1087 qla2xxx_get_fdt_info(vha);
1088 qla2xxx_get_idc_param(vha);
1090 return QLA_SUCCESS;
1093 void
1094 qla2xxx_flash_npiv_conf(scsi_qla_host_t *vha)
1096 #define NPIV_CONFIG_SIZE (16*1024)
1097 void *data;
1098 uint16_t *wptr;
1099 uint16_t cnt, chksum;
1100 int i;
1101 struct qla_npiv_header hdr;
1102 struct qla_npiv_entry *entry;
1103 struct qla_hw_data *ha = vha->hw;
1105 if (!IS_QLA24XX_TYPE(ha) && !IS_QLA25XX(ha) &&
1106 !IS_CNA_CAPABLE(ha) && !IS_QLA2031(ha))
1107 return;
1109 if (ha->flags.nic_core_reset_hdlr_active)
1110 return;
1112 if (IS_QLA8044(ha))
1113 return;
1115 ha->isp_ops->read_optrom(vha, &hdr, ha->flt_region_npiv_conf << 2,
1116 sizeof(struct qla_npiv_header));
1117 if (hdr.version == cpu_to_le16(0xffff))
1118 return;
1119 if (hdr.version != cpu_to_le16(1)) {
1120 ql_dbg(ql_dbg_user, vha, 0x7090,
1121 "Unsupported NPIV-Config "
1122 "detected: version=0x%x entries=0x%x checksum=0x%x.\n",
1123 le16_to_cpu(hdr.version), le16_to_cpu(hdr.entries),
1124 le16_to_cpu(hdr.checksum));
1125 return;
1128 data = kmalloc(NPIV_CONFIG_SIZE, GFP_KERNEL);
1129 if (!data) {
1130 ql_log(ql_log_warn, vha, 0x7091,
1131 "Unable to allocate memory for data.\n");
1132 return;
1135 ha->isp_ops->read_optrom(vha, data, ha->flt_region_npiv_conf << 2,
1136 NPIV_CONFIG_SIZE);
1138 cnt = (sizeof(hdr) + le16_to_cpu(hdr.entries) * sizeof(*entry)) >> 1;
1139 for (wptr = data, chksum = 0; cnt--; wptr++)
1140 chksum += le16_to_cpu(*wptr);
1141 if (chksum) {
1142 ql_dbg(ql_dbg_user, vha, 0x7092,
1143 "Inconsistent NPIV-Config "
1144 "detected: version=0x%x entries=0x%x checksum=0x%x.\n",
1145 le16_to_cpu(hdr.version), le16_to_cpu(hdr.entries),
1146 le16_to_cpu(hdr.checksum));
1147 goto done;
1150 entry = data + sizeof(struct qla_npiv_header);
1151 cnt = le16_to_cpu(hdr.entries);
1152 for (i = 0; cnt; cnt--, entry++, i++) {
1153 uint16_t flags;
1154 struct fc_vport_identifiers vid;
1155 struct fc_vport *vport;
1157 memcpy(&ha->npiv_info[i], entry, sizeof(struct qla_npiv_entry));
1159 flags = le16_to_cpu(entry->flags);
1160 if (flags == 0xffff)
1161 continue;
1162 if ((flags & BIT_0) == 0)
1163 continue;
1165 memset(&vid, 0, sizeof(vid));
1166 vid.roles = FC_PORT_ROLE_FCP_INITIATOR;
1167 vid.vport_type = FC_PORTTYPE_NPIV;
1168 vid.disable = false;
1169 vid.port_name = wwn_to_u64(entry->port_name);
1170 vid.node_name = wwn_to_u64(entry->node_name);
1172 ql_dbg(ql_dbg_user, vha, 0x7093,
1173 "NPIV[%02x]: wwpn=%llx wwnn=%llx vf_id=%#x Q_qos=%#x F_qos=%#x.\n",
1174 cnt, vid.port_name, vid.node_name,
1175 le16_to_cpu(entry->vf_id),
1176 entry->q_qos, entry->f_qos);
1178 if (i < QLA_PRECONFIG_VPORTS) {
1179 vport = fc_vport_create(vha->host, 0, &vid);
1180 if (!vport)
1181 ql_log(ql_log_warn, vha, 0x7094,
1182 "NPIV-Config Failed to create vport [%02x]: wwpn=%llx wwnn=%llx.\n",
1183 cnt, vid.port_name, vid.node_name);
1186 done:
1187 kfree(data);
1190 static int
1191 qla24xx_unprotect_flash(scsi_qla_host_t *vha)
1193 struct qla_hw_data *ha = vha->hw;
1194 struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
1196 if (ha->flags.fac_supported)
1197 return qla81xx_fac_do_write_enable(vha, 1);
1199 /* Enable flash write. */
1200 WRT_REG_DWORD(&reg->ctrl_status,
1201 RD_REG_DWORD(&reg->ctrl_status) | CSRX_FLASH_ENABLE);
1202 RD_REG_DWORD(&reg->ctrl_status); /* PCI Posting. */
1204 if (!ha->fdt_wrt_disable)
1205 goto done;
1207 /* Disable flash write-protection, first clear SR protection bit */
1208 qla24xx_write_flash_dword(ha, flash_conf_addr(ha, 0x101), 0);
1209 /* Then write zero again to clear remaining SR bits.*/
1210 qla24xx_write_flash_dword(ha, flash_conf_addr(ha, 0x101), 0);
1211 done:
1212 return QLA_SUCCESS;
1215 static int
1216 qla24xx_protect_flash(scsi_qla_host_t *vha)
1218 struct qla_hw_data *ha = vha->hw;
1219 struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
1220 ulong cnt = 300;
1221 uint32_t faddr, dword;
1223 if (ha->flags.fac_supported)
1224 return qla81xx_fac_do_write_enable(vha, 0);
1226 if (!ha->fdt_wrt_disable)
1227 goto skip_wrt_protect;
1229 /* Enable flash write-protection and wait for completion. */
1230 faddr = flash_conf_addr(ha, 0x101);
1231 qla24xx_write_flash_dword(ha, faddr, ha->fdt_wrt_disable);
1232 faddr = flash_conf_addr(ha, 0x5);
1233 while (cnt--) {
1234 if (!qla24xx_read_flash_dword(ha, faddr, &dword)) {
1235 if (!(dword & BIT_0))
1236 break;
1238 udelay(10);
1241 skip_wrt_protect:
1242 /* Disable flash write. */
1243 WRT_REG_DWORD(&reg->ctrl_status,
1244 RD_REG_DWORD(&reg->ctrl_status) & ~CSRX_FLASH_ENABLE);
1246 return QLA_SUCCESS;
1249 static int
1250 qla24xx_erase_sector(scsi_qla_host_t *vha, uint32_t fdata)
1252 struct qla_hw_data *ha = vha->hw;
1253 uint32_t start, finish;
1255 if (ha->flags.fac_supported) {
1256 start = fdata >> 2;
1257 finish = start + (ha->fdt_block_size >> 2) - 1;
1258 return qla81xx_fac_erase_sector(vha, flash_data_addr(ha,
1259 start), flash_data_addr(ha, finish));
1262 return qla24xx_write_flash_dword(ha, ha->fdt_erase_cmd,
1263 (fdata & 0xff00) | ((fdata << 16) & 0xff0000) |
1264 ((fdata >> 16) & 0xff));
1267 static int
1268 qla24xx_write_flash_data(scsi_qla_host_t *vha, uint32_t *dwptr, uint32_t faddr,
1269 uint32_t dwords)
1271 int ret;
1272 ulong liter;
1273 ulong dburst = OPTROM_BURST_DWORDS; /* burst size in dwords */
1274 uint32_t sec_mask, rest_addr, fdata;
1275 dma_addr_t optrom_dma;
1276 void *optrom = NULL;
1277 struct qla_hw_data *ha = vha->hw;
1279 if (!IS_QLA25XX(ha) && !IS_QLA81XX(ha) && !IS_QLA83XX(ha) &&
1280 !IS_QLA27XX(ha) && !IS_QLA28XX(ha))
1281 goto next;
1283 /* Allocate dma buffer for burst write */
1284 optrom = dma_alloc_coherent(&ha->pdev->dev, OPTROM_BURST_SIZE,
1285 &optrom_dma, GFP_KERNEL);
1286 if (!optrom) {
1287 ql_log(ql_log_warn, vha, 0x7095,
1288 "Failed allocate burst (%x bytes)\n", OPTROM_BURST_SIZE);
1291 next:
1292 ql_log(ql_log_warn + ql_dbg_verbose, vha, 0x7095,
1293 "Unprotect flash...\n");
1294 ret = qla24xx_unprotect_flash(vha);
1295 if (ret) {
1296 ql_log(ql_log_warn, vha, 0x7096,
1297 "Failed to unprotect flash.\n");
1298 goto done;
1301 rest_addr = (ha->fdt_block_size >> 2) - 1;
1302 sec_mask = ~rest_addr;
1303 for (liter = 0; liter < dwords; liter++, faddr++, dwptr++) {
1304 fdata = (faddr & sec_mask) << 2;
1306 /* Are we at the beginning of a sector? */
1307 if (!(faddr & rest_addr)) {
1308 ql_log(ql_log_warn + ql_dbg_verbose, vha, 0x7095,
1309 "Erase sector %#x...\n", faddr);
1311 ret = qla24xx_erase_sector(vha, fdata);
1312 if (ret) {
1313 ql_dbg(ql_dbg_user, vha, 0x7007,
1314 "Failed to erase sector %x.\n", faddr);
1315 break;
1319 if (optrom) {
1320 /* If smaller than a burst remaining */
1321 if (dwords - liter < dburst)
1322 dburst = dwords - liter;
1324 /* Copy to dma buffer */
1325 memcpy(optrom, dwptr, dburst << 2);
1327 /* Burst write */
1328 ql_log(ql_log_warn + ql_dbg_verbose, vha, 0x7095,
1329 "Write burst (%#lx dwords)...\n", dburst);
1330 ret = qla2x00_load_ram(vha, optrom_dma,
1331 flash_data_addr(ha, faddr), dburst);
1332 if (!ret) {
1333 liter += dburst - 1;
1334 faddr += dburst - 1;
1335 dwptr += dburst - 1;
1336 continue;
1339 ql_log(ql_log_warn, vha, 0x7097,
1340 "Failed burst-write at %x (%p/%#llx)....\n",
1341 flash_data_addr(ha, faddr), optrom,
1342 (u64)optrom_dma);
1344 dma_free_coherent(&ha->pdev->dev,
1345 OPTROM_BURST_SIZE, optrom, optrom_dma);
1346 optrom = NULL;
1347 if (IS_QLA27XX(ha) || IS_QLA28XX(ha))
1348 break;
1349 ql_log(ql_log_warn, vha, 0x7098,
1350 "Reverting to slow write...\n");
1353 /* Slow write */
1354 ret = qla24xx_write_flash_dword(ha,
1355 flash_data_addr(ha, faddr), cpu_to_le32(*dwptr));
1356 if (ret) {
1357 ql_dbg(ql_dbg_user, vha, 0x7006,
1358 "Failed slopw write %x (%x)\n", faddr, *dwptr);
1359 break;
1363 ql_log(ql_log_warn + ql_dbg_verbose, vha, 0x7095,
1364 "Protect flash...\n");
1365 ret = qla24xx_protect_flash(vha);
1366 if (ret)
1367 ql_log(ql_log_warn, vha, 0x7099,
1368 "Failed to protect flash\n");
1369 done:
1370 if (optrom)
1371 dma_free_coherent(&ha->pdev->dev,
1372 OPTROM_BURST_SIZE, optrom, optrom_dma);
1374 return ret;
1377 uint8_t *
1378 qla2x00_read_nvram_data(scsi_qla_host_t *vha, void *buf, uint32_t naddr,
1379 uint32_t bytes)
1381 uint32_t i;
1382 uint16_t *wptr;
1383 struct qla_hw_data *ha = vha->hw;
1385 /* Word reads to NVRAM via registers. */
1386 wptr = (uint16_t *)buf;
1387 qla2x00_lock_nvram_access(ha);
1388 for (i = 0; i < bytes >> 1; i++, naddr++)
1389 wptr[i] = cpu_to_le16(qla2x00_get_nvram_word(ha,
1390 naddr));
1391 qla2x00_unlock_nvram_access(ha);
1393 return buf;
1396 uint8_t *
1397 qla24xx_read_nvram_data(scsi_qla_host_t *vha, void *buf, uint32_t naddr,
1398 uint32_t bytes)
1400 struct qla_hw_data *ha = vha->hw;
1401 uint32_t *dwptr = buf;
1402 uint32_t i;
1404 if (IS_P3P_TYPE(ha))
1405 return buf;
1407 /* Dword reads to flash. */
1408 naddr = nvram_data_addr(ha, naddr);
1409 bytes >>= 2;
1410 for (i = 0; i < bytes; i++, naddr++, dwptr++) {
1411 if (qla24xx_read_flash_dword(ha, naddr, dwptr))
1412 break;
1413 cpu_to_le32s(dwptr);
1416 return buf;
1420 qla2x00_write_nvram_data(scsi_qla_host_t *vha, void *buf, uint32_t naddr,
1421 uint32_t bytes)
1423 int ret, stat;
1424 uint32_t i;
1425 uint16_t *wptr;
1426 unsigned long flags;
1427 struct qla_hw_data *ha = vha->hw;
1429 ret = QLA_SUCCESS;
1431 spin_lock_irqsave(&ha->hardware_lock, flags);
1432 qla2x00_lock_nvram_access(ha);
1434 /* Disable NVRAM write-protection. */
1435 stat = qla2x00_clear_nvram_protection(ha);
1437 wptr = (uint16_t *)buf;
1438 for (i = 0; i < bytes >> 1; i++, naddr++) {
1439 qla2x00_write_nvram_word(ha, naddr,
1440 cpu_to_le16(*wptr));
1441 wptr++;
1444 /* Enable NVRAM write-protection. */
1445 qla2x00_set_nvram_protection(ha, stat);
1447 qla2x00_unlock_nvram_access(ha);
1448 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1450 return ret;
1454 qla24xx_write_nvram_data(scsi_qla_host_t *vha, void *buf, uint32_t naddr,
1455 uint32_t bytes)
1457 struct qla_hw_data *ha = vha->hw;
1458 struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
1459 uint32_t *dwptr = buf;
1460 uint32_t i;
1461 int ret;
1463 ret = QLA_SUCCESS;
1465 if (IS_P3P_TYPE(ha))
1466 return ret;
1468 /* Enable flash write. */
1469 WRT_REG_DWORD(&reg->ctrl_status,
1470 RD_REG_DWORD(&reg->ctrl_status) | CSRX_FLASH_ENABLE);
1471 RD_REG_DWORD(&reg->ctrl_status); /* PCI Posting. */
1473 /* Disable NVRAM write-protection. */
1474 qla24xx_write_flash_dword(ha, nvram_conf_addr(ha, 0x101), 0);
1475 qla24xx_write_flash_dword(ha, nvram_conf_addr(ha, 0x101), 0);
1477 /* Dword writes to flash. */
1478 naddr = nvram_data_addr(ha, naddr);
1479 bytes >>= 2;
1480 for (i = 0; i < bytes; i++, naddr++, dwptr++) {
1481 if (qla24xx_write_flash_dword(ha, naddr, cpu_to_le32(*dwptr))) {
1482 ql_dbg(ql_dbg_user, vha, 0x709a,
1483 "Unable to program nvram address=%x data=%x.\n",
1484 naddr, *dwptr);
1485 break;
1489 /* Enable NVRAM write-protection. */
1490 qla24xx_write_flash_dword(ha, nvram_conf_addr(ha, 0x101), 0x8c);
1492 /* Disable flash write. */
1493 WRT_REG_DWORD(&reg->ctrl_status,
1494 RD_REG_DWORD(&reg->ctrl_status) & ~CSRX_FLASH_ENABLE);
1495 RD_REG_DWORD(&reg->ctrl_status); /* PCI Posting. */
1497 return ret;
1500 uint8_t *
1501 qla25xx_read_nvram_data(scsi_qla_host_t *vha, void *buf, uint32_t naddr,
1502 uint32_t bytes)
1504 struct qla_hw_data *ha = vha->hw;
1505 uint32_t *dwptr = buf;
1506 uint32_t i;
1508 /* Dword reads to flash. */
1509 naddr = flash_data_addr(ha, ha->flt_region_vpd_nvram | naddr);
1510 bytes >>= 2;
1511 for (i = 0; i < bytes; i++, naddr++, dwptr++) {
1512 if (qla24xx_read_flash_dword(ha, naddr, dwptr))
1513 break;
1515 cpu_to_le32s(dwptr);
1518 return buf;
1521 #define RMW_BUFFER_SIZE (64 * 1024)
1523 qla25xx_write_nvram_data(scsi_qla_host_t *vha, void *buf, uint32_t naddr,
1524 uint32_t bytes)
1526 struct qla_hw_data *ha = vha->hw;
1527 uint8_t *dbuf = vmalloc(RMW_BUFFER_SIZE);
1529 if (!dbuf)
1530 return QLA_MEMORY_ALLOC_FAILED;
1531 ha->isp_ops->read_optrom(vha, dbuf, ha->flt_region_vpd_nvram << 2,
1532 RMW_BUFFER_SIZE);
1533 memcpy(dbuf + (naddr << 2), buf, bytes);
1534 ha->isp_ops->write_optrom(vha, dbuf, ha->flt_region_vpd_nvram << 2,
1535 RMW_BUFFER_SIZE);
1536 vfree(dbuf);
1538 return QLA_SUCCESS;
1541 static inline void
1542 qla2x00_flip_colors(struct qla_hw_data *ha, uint16_t *pflags)
1544 if (IS_QLA2322(ha)) {
1545 /* Flip all colors. */
1546 if (ha->beacon_color_state == QLA_LED_ALL_ON) {
1547 /* Turn off. */
1548 ha->beacon_color_state = 0;
1549 *pflags = GPIO_LED_ALL_OFF;
1550 } else {
1551 /* Turn on. */
1552 ha->beacon_color_state = QLA_LED_ALL_ON;
1553 *pflags = GPIO_LED_RGA_ON;
1555 } else {
1556 /* Flip green led only. */
1557 if (ha->beacon_color_state == QLA_LED_GRN_ON) {
1558 /* Turn off. */
1559 ha->beacon_color_state = 0;
1560 *pflags = GPIO_LED_GREEN_OFF_AMBER_OFF;
1561 } else {
1562 /* Turn on. */
1563 ha->beacon_color_state = QLA_LED_GRN_ON;
1564 *pflags = GPIO_LED_GREEN_ON_AMBER_OFF;
1569 #define PIO_REG(h, r) ((h)->pio_address + offsetof(struct device_reg_2xxx, r))
1571 void
1572 qla2x00_beacon_blink(struct scsi_qla_host *vha)
1574 uint16_t gpio_enable;
1575 uint16_t gpio_data;
1576 uint16_t led_color = 0;
1577 unsigned long flags;
1578 struct qla_hw_data *ha = vha->hw;
1579 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
1581 if (IS_P3P_TYPE(ha))
1582 return;
1584 spin_lock_irqsave(&ha->hardware_lock, flags);
1586 /* Save the Original GPIOE. */
1587 if (ha->pio_address) {
1588 gpio_enable = RD_REG_WORD_PIO(PIO_REG(ha, gpioe));
1589 gpio_data = RD_REG_WORD_PIO(PIO_REG(ha, gpiod));
1590 } else {
1591 gpio_enable = RD_REG_WORD(&reg->gpioe);
1592 gpio_data = RD_REG_WORD(&reg->gpiod);
1595 /* Set the modified gpio_enable values */
1596 gpio_enable |= GPIO_LED_MASK;
1598 if (ha->pio_address) {
1599 WRT_REG_WORD_PIO(PIO_REG(ha, gpioe), gpio_enable);
1600 } else {
1601 WRT_REG_WORD(&reg->gpioe, gpio_enable);
1602 RD_REG_WORD(&reg->gpioe);
1605 qla2x00_flip_colors(ha, &led_color);
1607 /* Clear out any previously set LED color. */
1608 gpio_data &= ~GPIO_LED_MASK;
1610 /* Set the new input LED color to GPIOD. */
1611 gpio_data |= led_color;
1613 /* Set the modified gpio_data values */
1614 if (ha->pio_address) {
1615 WRT_REG_WORD_PIO(PIO_REG(ha, gpiod), gpio_data);
1616 } else {
1617 WRT_REG_WORD(&reg->gpiod, gpio_data);
1618 RD_REG_WORD(&reg->gpiod);
1621 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1625 qla2x00_beacon_on(struct scsi_qla_host *vha)
1627 uint16_t gpio_enable;
1628 uint16_t gpio_data;
1629 unsigned long flags;
1630 struct qla_hw_data *ha = vha->hw;
1631 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
1633 ha->fw_options[1] &= ~FO1_SET_EMPHASIS_SWING;
1634 ha->fw_options[1] |= FO1_DISABLE_GPIO6_7;
1636 if (qla2x00_set_fw_options(vha, ha->fw_options) != QLA_SUCCESS) {
1637 ql_log(ql_log_warn, vha, 0x709b,
1638 "Unable to update fw options (beacon on).\n");
1639 return QLA_FUNCTION_FAILED;
1642 /* Turn off LEDs. */
1643 spin_lock_irqsave(&ha->hardware_lock, flags);
1644 if (ha->pio_address) {
1645 gpio_enable = RD_REG_WORD_PIO(PIO_REG(ha, gpioe));
1646 gpio_data = RD_REG_WORD_PIO(PIO_REG(ha, gpiod));
1647 } else {
1648 gpio_enable = RD_REG_WORD(&reg->gpioe);
1649 gpio_data = RD_REG_WORD(&reg->gpiod);
1651 gpio_enable |= GPIO_LED_MASK;
1653 /* Set the modified gpio_enable values. */
1654 if (ha->pio_address) {
1655 WRT_REG_WORD_PIO(PIO_REG(ha, gpioe), gpio_enable);
1656 } else {
1657 WRT_REG_WORD(&reg->gpioe, gpio_enable);
1658 RD_REG_WORD(&reg->gpioe);
1661 /* Clear out previously set LED colour. */
1662 gpio_data &= ~GPIO_LED_MASK;
1663 if (ha->pio_address) {
1664 WRT_REG_WORD_PIO(PIO_REG(ha, gpiod), gpio_data);
1665 } else {
1666 WRT_REG_WORD(&reg->gpiod, gpio_data);
1667 RD_REG_WORD(&reg->gpiod);
1669 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1672 * Let the per HBA timer kick off the blinking process based on
1673 * the following flags. No need to do anything else now.
1675 ha->beacon_blink_led = 1;
1676 ha->beacon_color_state = 0;
1678 return QLA_SUCCESS;
1682 qla2x00_beacon_off(struct scsi_qla_host *vha)
1684 int rval = QLA_SUCCESS;
1685 struct qla_hw_data *ha = vha->hw;
1687 ha->beacon_blink_led = 0;
1689 /* Set the on flag so when it gets flipped it will be off. */
1690 if (IS_QLA2322(ha))
1691 ha->beacon_color_state = QLA_LED_ALL_ON;
1692 else
1693 ha->beacon_color_state = QLA_LED_GRN_ON;
1695 ha->isp_ops->beacon_blink(vha); /* This turns green LED off */
1697 ha->fw_options[1] &= ~FO1_SET_EMPHASIS_SWING;
1698 ha->fw_options[1] &= ~FO1_DISABLE_GPIO6_7;
1700 rval = qla2x00_set_fw_options(vha, ha->fw_options);
1701 if (rval != QLA_SUCCESS)
1702 ql_log(ql_log_warn, vha, 0x709c,
1703 "Unable to update fw options (beacon off).\n");
1704 return rval;
1708 static inline void
1709 qla24xx_flip_colors(struct qla_hw_data *ha, uint16_t *pflags)
1711 /* Flip all colors. */
1712 if (ha->beacon_color_state == QLA_LED_ALL_ON) {
1713 /* Turn off. */
1714 ha->beacon_color_state = 0;
1715 *pflags = 0;
1716 } else {
1717 /* Turn on. */
1718 ha->beacon_color_state = QLA_LED_ALL_ON;
1719 *pflags = GPDX_LED_YELLOW_ON | GPDX_LED_AMBER_ON;
1723 void
1724 qla24xx_beacon_blink(struct scsi_qla_host *vha)
1726 uint16_t led_color = 0;
1727 uint32_t gpio_data;
1728 unsigned long flags;
1729 struct qla_hw_data *ha = vha->hw;
1730 struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
1732 /* Save the Original GPIOD. */
1733 spin_lock_irqsave(&ha->hardware_lock, flags);
1734 gpio_data = RD_REG_DWORD(&reg->gpiod);
1736 /* Enable the gpio_data reg for update. */
1737 gpio_data |= GPDX_LED_UPDATE_MASK;
1739 WRT_REG_DWORD(&reg->gpiod, gpio_data);
1740 gpio_data = RD_REG_DWORD(&reg->gpiod);
1742 /* Set the color bits. */
1743 qla24xx_flip_colors(ha, &led_color);
1745 /* Clear out any previously set LED color. */
1746 gpio_data &= ~GPDX_LED_COLOR_MASK;
1748 /* Set the new input LED color to GPIOD. */
1749 gpio_data |= led_color;
1751 /* Set the modified gpio_data values. */
1752 WRT_REG_DWORD(&reg->gpiod, gpio_data);
1753 gpio_data = RD_REG_DWORD(&reg->gpiod);
1754 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1757 static uint32_t
1758 qla83xx_select_led_port(struct qla_hw_data *ha)
1760 uint32_t led_select_value = 0;
1762 if (!IS_QLA83XX(ha) && !IS_QLA27XX(ha) && !IS_QLA28XX(ha))
1763 goto out;
1765 if (ha->port_no == 0)
1766 led_select_value = QLA83XX_LED_PORT0;
1767 else
1768 led_select_value = QLA83XX_LED_PORT1;
1770 out:
1771 return led_select_value;
1774 void
1775 qla83xx_beacon_blink(struct scsi_qla_host *vha)
1777 uint32_t led_select_value;
1778 struct qla_hw_data *ha = vha->hw;
1779 uint16_t led_cfg[6];
1780 uint16_t orig_led_cfg[6];
1781 uint32_t led_10_value, led_43_value;
1783 if (!IS_QLA83XX(ha) && !IS_QLA81XX(ha) && !IS_QLA27XX(ha) &&
1784 !IS_QLA28XX(ha))
1785 return;
1787 if (!ha->beacon_blink_led)
1788 return;
1790 if (IS_QLA27XX(ha) || IS_QLA28XX(ha)) {
1791 qla2x00_write_ram_word(vha, 0x1003, 0x40000230);
1792 qla2x00_write_ram_word(vha, 0x1004, 0x40000230);
1793 } else if (IS_QLA2031(ha)) {
1794 led_select_value = qla83xx_select_led_port(ha);
1796 qla83xx_wr_reg(vha, led_select_value, 0x40000230);
1797 qla83xx_wr_reg(vha, led_select_value + 4, 0x40000230);
1798 } else if (IS_QLA8031(ha)) {
1799 led_select_value = qla83xx_select_led_port(ha);
1801 qla83xx_rd_reg(vha, led_select_value, &led_10_value);
1802 qla83xx_rd_reg(vha, led_select_value + 0x10, &led_43_value);
1803 qla83xx_wr_reg(vha, led_select_value, 0x01f44000);
1804 msleep(500);
1805 qla83xx_wr_reg(vha, led_select_value, 0x400001f4);
1806 msleep(1000);
1807 qla83xx_wr_reg(vha, led_select_value, led_10_value);
1808 qla83xx_wr_reg(vha, led_select_value + 0x10, led_43_value);
1809 } else if (IS_QLA81XX(ha)) {
1810 int rval;
1812 /* Save Current */
1813 rval = qla81xx_get_led_config(vha, orig_led_cfg);
1814 /* Do the blink */
1815 if (rval == QLA_SUCCESS) {
1816 if (IS_QLA81XX(ha)) {
1817 led_cfg[0] = 0x4000;
1818 led_cfg[1] = 0x2000;
1819 led_cfg[2] = 0;
1820 led_cfg[3] = 0;
1821 led_cfg[4] = 0;
1822 led_cfg[5] = 0;
1823 } else {
1824 led_cfg[0] = 0x4000;
1825 led_cfg[1] = 0x4000;
1826 led_cfg[2] = 0x4000;
1827 led_cfg[3] = 0x2000;
1828 led_cfg[4] = 0;
1829 led_cfg[5] = 0x2000;
1831 rval = qla81xx_set_led_config(vha, led_cfg);
1832 msleep(1000);
1833 if (IS_QLA81XX(ha)) {
1834 led_cfg[0] = 0x4000;
1835 led_cfg[1] = 0x2000;
1836 led_cfg[2] = 0;
1837 } else {
1838 led_cfg[0] = 0x4000;
1839 led_cfg[1] = 0x2000;
1840 led_cfg[2] = 0x4000;
1841 led_cfg[3] = 0x4000;
1842 led_cfg[4] = 0;
1843 led_cfg[5] = 0x2000;
1845 rval = qla81xx_set_led_config(vha, led_cfg);
1847 /* On exit, restore original (presumes no status change) */
1848 qla81xx_set_led_config(vha, orig_led_cfg);
1853 qla24xx_beacon_on(struct scsi_qla_host *vha)
1855 uint32_t gpio_data;
1856 unsigned long flags;
1857 struct qla_hw_data *ha = vha->hw;
1858 struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
1860 if (IS_P3P_TYPE(ha))
1861 return QLA_SUCCESS;
1863 if (IS_QLA8031(ha) || IS_QLA81XX(ha))
1864 goto skip_gpio; /* let blink handle it */
1866 if (ha->beacon_blink_led == 0) {
1867 /* Enable firmware for update */
1868 ha->fw_options[1] |= ADD_FO1_DISABLE_GPIO_LED_CTRL;
1870 if (qla2x00_set_fw_options(vha, ha->fw_options) != QLA_SUCCESS)
1871 return QLA_FUNCTION_FAILED;
1873 if (qla2x00_get_fw_options(vha, ha->fw_options) !=
1874 QLA_SUCCESS) {
1875 ql_log(ql_log_warn, vha, 0x7009,
1876 "Unable to update fw options (beacon on).\n");
1877 return QLA_FUNCTION_FAILED;
1880 if (IS_QLA2031(ha) || IS_QLA27XX(ha) || IS_QLA28XX(ha))
1881 goto skip_gpio;
1883 spin_lock_irqsave(&ha->hardware_lock, flags);
1884 gpio_data = RD_REG_DWORD(&reg->gpiod);
1886 /* Enable the gpio_data reg for update. */
1887 gpio_data |= GPDX_LED_UPDATE_MASK;
1888 WRT_REG_DWORD(&reg->gpiod, gpio_data);
1889 RD_REG_DWORD(&reg->gpiod);
1891 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1894 /* So all colors blink together. */
1895 ha->beacon_color_state = 0;
1897 skip_gpio:
1898 /* Let the per HBA timer kick off the blinking process. */
1899 ha->beacon_blink_led = 1;
1901 return QLA_SUCCESS;
1905 qla24xx_beacon_off(struct scsi_qla_host *vha)
1907 uint32_t gpio_data;
1908 unsigned long flags;
1909 struct qla_hw_data *ha = vha->hw;
1910 struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
1912 if (IS_P3P_TYPE(ha))
1913 return QLA_SUCCESS;
1915 if (!ha->flags.fw_started)
1916 return QLA_SUCCESS;
1918 ha->beacon_blink_led = 0;
1920 if (IS_QLA2031(ha) || IS_QLA27XX(ha) || IS_QLA28XX(ha))
1921 goto set_fw_options;
1923 if (IS_QLA8031(ha) || IS_QLA81XX(ha))
1924 return QLA_SUCCESS;
1926 ha->beacon_color_state = QLA_LED_ALL_ON;
1928 ha->isp_ops->beacon_blink(vha); /* Will flip to all off. */
1930 /* Give control back to firmware. */
1931 spin_lock_irqsave(&ha->hardware_lock, flags);
1932 gpio_data = RD_REG_DWORD(&reg->gpiod);
1934 /* Disable the gpio_data reg for update. */
1935 gpio_data &= ~GPDX_LED_UPDATE_MASK;
1936 WRT_REG_DWORD(&reg->gpiod, gpio_data);
1937 RD_REG_DWORD(&reg->gpiod);
1938 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1940 set_fw_options:
1941 ha->fw_options[1] &= ~ADD_FO1_DISABLE_GPIO_LED_CTRL;
1943 if (qla2x00_set_fw_options(vha, ha->fw_options) != QLA_SUCCESS) {
1944 ql_log(ql_log_warn, vha, 0x704d,
1945 "Unable to update fw options (beacon on).\n");
1946 return QLA_FUNCTION_FAILED;
1949 if (qla2x00_get_fw_options(vha, ha->fw_options) != QLA_SUCCESS) {
1950 ql_log(ql_log_warn, vha, 0x704e,
1951 "Unable to update fw options (beacon on).\n");
1952 return QLA_FUNCTION_FAILED;
1955 return QLA_SUCCESS;
1960 * Flash support routines
1964 * qla2x00_flash_enable() - Setup flash for reading and writing.
1965 * @ha: HA context
1967 static void
1968 qla2x00_flash_enable(struct qla_hw_data *ha)
1970 uint16_t data;
1971 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
1973 data = RD_REG_WORD(&reg->ctrl_status);
1974 data |= CSR_FLASH_ENABLE;
1975 WRT_REG_WORD(&reg->ctrl_status, data);
1976 RD_REG_WORD(&reg->ctrl_status); /* PCI Posting. */
1980 * qla2x00_flash_disable() - Disable flash and allow RISC to run.
1981 * @ha: HA context
1983 static void
1984 qla2x00_flash_disable(struct qla_hw_data *ha)
1986 uint16_t data;
1987 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
1989 data = RD_REG_WORD(&reg->ctrl_status);
1990 data &= ~(CSR_FLASH_ENABLE);
1991 WRT_REG_WORD(&reg->ctrl_status, data);
1992 RD_REG_WORD(&reg->ctrl_status); /* PCI Posting. */
1996 * qla2x00_read_flash_byte() - Reads a byte from flash
1997 * @ha: HA context
1998 * @addr: Address in flash to read
2000 * A word is read from the chip, but, only the lower byte is valid.
2002 * Returns the byte read from flash @addr.
2004 static uint8_t
2005 qla2x00_read_flash_byte(struct qla_hw_data *ha, uint32_t addr)
2007 uint16_t data;
2008 uint16_t bank_select;
2009 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
2011 bank_select = RD_REG_WORD(&reg->ctrl_status);
2013 if (IS_QLA2322(ha) || IS_QLA6322(ha)) {
2014 /* Specify 64K address range: */
2015 /* clear out Module Select and Flash Address bits [19:16]. */
2016 bank_select &= ~0xf8;
2017 bank_select |= addr >> 12 & 0xf0;
2018 bank_select |= CSR_FLASH_64K_BANK;
2019 WRT_REG_WORD(&reg->ctrl_status, bank_select);
2020 RD_REG_WORD(&reg->ctrl_status); /* PCI Posting. */
2022 WRT_REG_WORD(&reg->flash_address, (uint16_t)addr);
2023 data = RD_REG_WORD(&reg->flash_data);
2025 return (uint8_t)data;
2028 /* Setup bit 16 of flash address. */
2029 if ((addr & BIT_16) && ((bank_select & CSR_FLASH_64K_BANK) == 0)) {
2030 bank_select |= CSR_FLASH_64K_BANK;
2031 WRT_REG_WORD(&reg->ctrl_status, bank_select);
2032 RD_REG_WORD(&reg->ctrl_status); /* PCI Posting. */
2033 } else if (((addr & BIT_16) == 0) &&
2034 (bank_select & CSR_FLASH_64K_BANK)) {
2035 bank_select &= ~(CSR_FLASH_64K_BANK);
2036 WRT_REG_WORD(&reg->ctrl_status, bank_select);
2037 RD_REG_WORD(&reg->ctrl_status); /* PCI Posting. */
2040 /* Always perform IO mapped accesses to the FLASH registers. */
2041 if (ha->pio_address) {
2042 uint16_t data2;
2044 WRT_REG_WORD_PIO(PIO_REG(ha, flash_address), (uint16_t)addr);
2045 do {
2046 data = RD_REG_WORD_PIO(PIO_REG(ha, flash_data));
2047 barrier();
2048 cpu_relax();
2049 data2 = RD_REG_WORD_PIO(PIO_REG(ha, flash_data));
2050 } while (data != data2);
2051 } else {
2052 WRT_REG_WORD(&reg->flash_address, (uint16_t)addr);
2053 data = qla2x00_debounce_register(&reg->flash_data);
2056 return (uint8_t)data;
2060 * qla2x00_write_flash_byte() - Write a byte to flash
2061 * @ha: HA context
2062 * @addr: Address in flash to write
2063 * @data: Data to write
2065 static void
2066 qla2x00_write_flash_byte(struct qla_hw_data *ha, uint32_t addr, uint8_t data)
2068 uint16_t bank_select;
2069 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
2071 bank_select = RD_REG_WORD(&reg->ctrl_status);
2072 if (IS_QLA2322(ha) || IS_QLA6322(ha)) {
2073 /* Specify 64K address range: */
2074 /* clear out Module Select and Flash Address bits [19:16]. */
2075 bank_select &= ~0xf8;
2076 bank_select |= addr >> 12 & 0xf0;
2077 bank_select |= CSR_FLASH_64K_BANK;
2078 WRT_REG_WORD(&reg->ctrl_status, bank_select);
2079 RD_REG_WORD(&reg->ctrl_status); /* PCI Posting. */
2081 WRT_REG_WORD(&reg->flash_address, (uint16_t)addr);
2082 RD_REG_WORD(&reg->ctrl_status); /* PCI Posting. */
2083 WRT_REG_WORD(&reg->flash_data, (uint16_t)data);
2084 RD_REG_WORD(&reg->ctrl_status); /* PCI Posting. */
2086 return;
2089 /* Setup bit 16 of flash address. */
2090 if ((addr & BIT_16) && ((bank_select & CSR_FLASH_64K_BANK) == 0)) {
2091 bank_select |= CSR_FLASH_64K_BANK;
2092 WRT_REG_WORD(&reg->ctrl_status, bank_select);
2093 RD_REG_WORD(&reg->ctrl_status); /* PCI Posting. */
2094 } else if (((addr & BIT_16) == 0) &&
2095 (bank_select & CSR_FLASH_64K_BANK)) {
2096 bank_select &= ~(CSR_FLASH_64K_BANK);
2097 WRT_REG_WORD(&reg->ctrl_status, bank_select);
2098 RD_REG_WORD(&reg->ctrl_status); /* PCI Posting. */
2101 /* Always perform IO mapped accesses to the FLASH registers. */
2102 if (ha->pio_address) {
2103 WRT_REG_WORD_PIO(PIO_REG(ha, flash_address), (uint16_t)addr);
2104 WRT_REG_WORD_PIO(PIO_REG(ha, flash_data), (uint16_t)data);
2105 } else {
2106 WRT_REG_WORD(&reg->flash_address, (uint16_t)addr);
2107 RD_REG_WORD(&reg->ctrl_status); /* PCI Posting. */
2108 WRT_REG_WORD(&reg->flash_data, (uint16_t)data);
2109 RD_REG_WORD(&reg->ctrl_status); /* PCI Posting. */
2114 * qla2x00_poll_flash() - Polls flash for completion.
2115 * @ha: HA context
2116 * @addr: Address in flash to poll
2117 * @poll_data: Data to be polled
2118 * @man_id: Flash manufacturer ID
2119 * @flash_id: Flash ID
2121 * This function polls the device until bit 7 of what is read matches data
2122 * bit 7 or until data bit 5 becomes a 1. If that hapens, the flash ROM timed
2123 * out (a fatal error). The flash book recommeds reading bit 7 again after
2124 * reading bit 5 as a 1.
2126 * Returns 0 on success, else non-zero.
2128 static int
2129 qla2x00_poll_flash(struct qla_hw_data *ha, uint32_t addr, uint8_t poll_data,
2130 uint8_t man_id, uint8_t flash_id)
2132 int status;
2133 uint8_t flash_data;
2134 uint32_t cnt;
2136 status = 1;
2138 /* Wait for 30 seconds for command to finish. */
2139 poll_data &= BIT_7;
2140 for (cnt = 3000000; cnt; cnt--) {
2141 flash_data = qla2x00_read_flash_byte(ha, addr);
2142 if ((flash_data & BIT_7) == poll_data) {
2143 status = 0;
2144 break;
2147 if (man_id != 0x40 && man_id != 0xda) {
2148 if ((flash_data & BIT_5) && cnt > 2)
2149 cnt = 2;
2151 udelay(10);
2152 barrier();
2153 cond_resched();
2155 return status;
2159 * qla2x00_program_flash_address() - Programs a flash address
2160 * @ha: HA context
2161 * @addr: Address in flash to program
2162 * @data: Data to be written in flash
2163 * @man_id: Flash manufacturer ID
2164 * @flash_id: Flash ID
2166 * Returns 0 on success, else non-zero.
2168 static int
2169 qla2x00_program_flash_address(struct qla_hw_data *ha, uint32_t addr,
2170 uint8_t data, uint8_t man_id, uint8_t flash_id)
2172 /* Write Program Command Sequence. */
2173 if (IS_OEM_001(ha)) {
2174 qla2x00_write_flash_byte(ha, 0xaaa, 0xaa);
2175 qla2x00_write_flash_byte(ha, 0x555, 0x55);
2176 qla2x00_write_flash_byte(ha, 0xaaa, 0xa0);
2177 qla2x00_write_flash_byte(ha, addr, data);
2178 } else {
2179 if (man_id == 0xda && flash_id == 0xc1) {
2180 qla2x00_write_flash_byte(ha, addr, data);
2181 if (addr & 0x7e)
2182 return 0;
2183 } else {
2184 qla2x00_write_flash_byte(ha, 0x5555, 0xaa);
2185 qla2x00_write_flash_byte(ha, 0x2aaa, 0x55);
2186 qla2x00_write_flash_byte(ha, 0x5555, 0xa0);
2187 qla2x00_write_flash_byte(ha, addr, data);
2191 udelay(150);
2193 /* Wait for write to complete. */
2194 return qla2x00_poll_flash(ha, addr, data, man_id, flash_id);
2198 * qla2x00_erase_flash() - Erase the flash.
2199 * @ha: HA context
2200 * @man_id: Flash manufacturer ID
2201 * @flash_id: Flash ID
2203 * Returns 0 on success, else non-zero.
2205 static int
2206 qla2x00_erase_flash(struct qla_hw_data *ha, uint8_t man_id, uint8_t flash_id)
2208 /* Individual Sector Erase Command Sequence */
2209 if (IS_OEM_001(ha)) {
2210 qla2x00_write_flash_byte(ha, 0xaaa, 0xaa);
2211 qla2x00_write_flash_byte(ha, 0x555, 0x55);
2212 qla2x00_write_flash_byte(ha, 0xaaa, 0x80);
2213 qla2x00_write_flash_byte(ha, 0xaaa, 0xaa);
2214 qla2x00_write_flash_byte(ha, 0x555, 0x55);
2215 qla2x00_write_flash_byte(ha, 0xaaa, 0x10);
2216 } else {
2217 qla2x00_write_flash_byte(ha, 0x5555, 0xaa);
2218 qla2x00_write_flash_byte(ha, 0x2aaa, 0x55);
2219 qla2x00_write_flash_byte(ha, 0x5555, 0x80);
2220 qla2x00_write_flash_byte(ha, 0x5555, 0xaa);
2221 qla2x00_write_flash_byte(ha, 0x2aaa, 0x55);
2222 qla2x00_write_flash_byte(ha, 0x5555, 0x10);
2225 udelay(150);
2227 /* Wait for erase to complete. */
2228 return qla2x00_poll_flash(ha, 0x00, 0x80, man_id, flash_id);
2232 * qla2x00_erase_flash_sector() - Erase a flash sector.
2233 * @ha: HA context
2234 * @addr: Flash sector to erase
2235 * @sec_mask: Sector address mask
2236 * @man_id: Flash manufacturer ID
2237 * @flash_id: Flash ID
2239 * Returns 0 on success, else non-zero.
2241 static int
2242 qla2x00_erase_flash_sector(struct qla_hw_data *ha, uint32_t addr,
2243 uint32_t sec_mask, uint8_t man_id, uint8_t flash_id)
2245 /* Individual Sector Erase Command Sequence */
2246 qla2x00_write_flash_byte(ha, 0x5555, 0xaa);
2247 qla2x00_write_flash_byte(ha, 0x2aaa, 0x55);
2248 qla2x00_write_flash_byte(ha, 0x5555, 0x80);
2249 qla2x00_write_flash_byte(ha, 0x5555, 0xaa);
2250 qla2x00_write_flash_byte(ha, 0x2aaa, 0x55);
2251 if (man_id == 0x1f && flash_id == 0x13)
2252 qla2x00_write_flash_byte(ha, addr & sec_mask, 0x10);
2253 else
2254 qla2x00_write_flash_byte(ha, addr & sec_mask, 0x30);
2256 udelay(150);
2258 /* Wait for erase to complete. */
2259 return qla2x00_poll_flash(ha, addr, 0x80, man_id, flash_id);
2263 * qla2x00_get_flash_manufacturer() - Read manufacturer ID from flash chip.
2264 * @ha: host adapter
2265 * @man_id: Flash manufacturer ID
2266 * @flash_id: Flash ID
2268 static void
2269 qla2x00_get_flash_manufacturer(struct qla_hw_data *ha, uint8_t *man_id,
2270 uint8_t *flash_id)
2272 qla2x00_write_flash_byte(ha, 0x5555, 0xaa);
2273 qla2x00_write_flash_byte(ha, 0x2aaa, 0x55);
2274 qla2x00_write_flash_byte(ha, 0x5555, 0x90);
2275 *man_id = qla2x00_read_flash_byte(ha, 0x0000);
2276 *flash_id = qla2x00_read_flash_byte(ha, 0x0001);
2277 qla2x00_write_flash_byte(ha, 0x5555, 0xaa);
2278 qla2x00_write_flash_byte(ha, 0x2aaa, 0x55);
2279 qla2x00_write_flash_byte(ha, 0x5555, 0xf0);
2282 static void
2283 qla2x00_read_flash_data(struct qla_hw_data *ha, uint8_t *tmp_buf,
2284 uint32_t saddr, uint32_t length)
2286 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
2287 uint32_t midpoint, ilength;
2288 uint8_t data;
2290 midpoint = length / 2;
2292 WRT_REG_WORD(&reg->nvram, 0);
2293 RD_REG_WORD(&reg->nvram);
2294 for (ilength = 0; ilength < length; saddr++, ilength++, tmp_buf++) {
2295 if (ilength == midpoint) {
2296 WRT_REG_WORD(&reg->nvram, NVR_SELECT);
2297 RD_REG_WORD(&reg->nvram);
2299 data = qla2x00_read_flash_byte(ha, saddr);
2300 if (saddr % 100)
2301 udelay(10);
2302 *tmp_buf = data;
2303 cond_resched();
2307 static inline void
2308 qla2x00_suspend_hba(struct scsi_qla_host *vha)
2310 int cnt;
2311 unsigned long flags;
2312 struct qla_hw_data *ha = vha->hw;
2313 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
2315 /* Suspend HBA. */
2316 scsi_block_requests(vha->host);
2317 ha->isp_ops->disable_intrs(ha);
2318 set_bit(MBX_UPDATE_FLASH_ACTIVE, &ha->mbx_cmd_flags);
2320 /* Pause RISC. */
2321 spin_lock_irqsave(&ha->hardware_lock, flags);
2322 WRT_REG_WORD(&reg->hccr, HCCR_PAUSE_RISC);
2323 RD_REG_WORD(&reg->hccr);
2324 if (IS_QLA2100(ha) || IS_QLA2200(ha) || IS_QLA2300(ha)) {
2325 for (cnt = 0; cnt < 30000; cnt++) {
2326 if ((RD_REG_WORD(&reg->hccr) & HCCR_RISC_PAUSE) != 0)
2327 break;
2328 udelay(100);
2330 } else {
2331 udelay(10);
2333 spin_unlock_irqrestore(&ha->hardware_lock, flags);
2336 static inline void
2337 qla2x00_resume_hba(struct scsi_qla_host *vha)
2339 struct qla_hw_data *ha = vha->hw;
2341 /* Resume HBA. */
2342 clear_bit(MBX_UPDATE_FLASH_ACTIVE, &ha->mbx_cmd_flags);
2343 set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
2344 qla2xxx_wake_dpc(vha);
2345 qla2x00_wait_for_chip_reset(vha);
2346 scsi_unblock_requests(vha->host);
2349 void *
2350 qla2x00_read_optrom_data(struct scsi_qla_host *vha, void *buf,
2351 uint32_t offset, uint32_t length)
2353 uint32_t addr, midpoint;
2354 uint8_t *data;
2355 struct qla_hw_data *ha = vha->hw;
2356 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
2358 /* Suspend HBA. */
2359 qla2x00_suspend_hba(vha);
2361 /* Go with read. */
2362 midpoint = ha->optrom_size / 2;
2364 qla2x00_flash_enable(ha);
2365 WRT_REG_WORD(&reg->nvram, 0);
2366 RD_REG_WORD(&reg->nvram); /* PCI Posting. */
2367 for (addr = offset, data = buf; addr < length; addr++, data++) {
2368 if (addr == midpoint) {
2369 WRT_REG_WORD(&reg->nvram, NVR_SELECT);
2370 RD_REG_WORD(&reg->nvram); /* PCI Posting. */
2373 *data = qla2x00_read_flash_byte(ha, addr);
2375 qla2x00_flash_disable(ha);
2377 /* Resume HBA. */
2378 qla2x00_resume_hba(vha);
2380 return buf;
2384 qla2x00_write_optrom_data(struct scsi_qla_host *vha, void *buf,
2385 uint32_t offset, uint32_t length)
2388 int rval;
2389 uint8_t man_id, flash_id, sec_number, *data;
2390 uint16_t wd;
2391 uint32_t addr, liter, sec_mask, rest_addr;
2392 struct qla_hw_data *ha = vha->hw;
2393 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
2395 /* Suspend HBA. */
2396 qla2x00_suspend_hba(vha);
2398 rval = QLA_SUCCESS;
2399 sec_number = 0;
2401 /* Reset ISP chip. */
2402 WRT_REG_WORD(&reg->ctrl_status, CSR_ISP_SOFT_RESET);
2403 pci_read_config_word(ha->pdev, PCI_COMMAND, &wd);
2405 /* Go with write. */
2406 qla2x00_flash_enable(ha);
2407 do { /* Loop once to provide quick error exit */
2408 /* Structure of flash memory based on manufacturer */
2409 if (IS_OEM_001(ha)) {
2410 /* OEM variant with special flash part. */
2411 man_id = flash_id = 0;
2412 rest_addr = 0xffff;
2413 sec_mask = 0x10000;
2414 goto update_flash;
2416 qla2x00_get_flash_manufacturer(ha, &man_id, &flash_id);
2417 switch (man_id) {
2418 case 0x20: /* ST flash. */
2419 if (flash_id == 0xd2 || flash_id == 0xe3) {
2421 * ST m29w008at part - 64kb sector size with
2422 * 32kb,8kb,8kb,16kb sectors at memory address
2423 * 0xf0000.
2425 rest_addr = 0xffff;
2426 sec_mask = 0x10000;
2427 break;
2430 * ST m29w010b part - 16kb sector size
2431 * Default to 16kb sectors
2433 rest_addr = 0x3fff;
2434 sec_mask = 0x1c000;
2435 break;
2436 case 0x40: /* Mostel flash. */
2437 /* Mostel v29c51001 part - 512 byte sector size. */
2438 rest_addr = 0x1ff;
2439 sec_mask = 0x1fe00;
2440 break;
2441 case 0xbf: /* SST flash. */
2442 /* SST39sf10 part - 4kb sector size. */
2443 rest_addr = 0xfff;
2444 sec_mask = 0x1f000;
2445 break;
2446 case 0xda: /* Winbond flash. */
2447 /* Winbond W29EE011 part - 256 byte sector size. */
2448 rest_addr = 0x7f;
2449 sec_mask = 0x1ff80;
2450 break;
2451 case 0xc2: /* Macronix flash. */
2452 /* 64k sector size. */
2453 if (flash_id == 0x38 || flash_id == 0x4f) {
2454 rest_addr = 0xffff;
2455 sec_mask = 0x10000;
2456 break;
2458 /* Fall through... */
2460 case 0x1f: /* Atmel flash. */
2461 /* 512k sector size. */
2462 if (flash_id == 0x13) {
2463 rest_addr = 0x7fffffff;
2464 sec_mask = 0x80000000;
2465 break;
2467 /* Fall through... */
2469 case 0x01: /* AMD flash. */
2470 if (flash_id == 0x38 || flash_id == 0x40 ||
2471 flash_id == 0x4f) {
2472 /* Am29LV081 part - 64kb sector size. */
2473 /* Am29LV002BT part - 64kb sector size. */
2474 rest_addr = 0xffff;
2475 sec_mask = 0x10000;
2476 break;
2477 } else if (flash_id == 0x3e) {
2479 * Am29LV008b part - 64kb sector size with
2480 * 32kb,8kb,8kb,16kb sector at memory address
2481 * h0xf0000.
2483 rest_addr = 0xffff;
2484 sec_mask = 0x10000;
2485 break;
2486 } else if (flash_id == 0x20 || flash_id == 0x6e) {
2488 * Am29LV010 part or AM29f010 - 16kb sector
2489 * size.
2491 rest_addr = 0x3fff;
2492 sec_mask = 0x1c000;
2493 break;
2494 } else if (flash_id == 0x6d) {
2495 /* Am29LV001 part - 8kb sector size. */
2496 rest_addr = 0x1fff;
2497 sec_mask = 0x1e000;
2498 break;
2500 /* fall through */
2501 default:
2502 /* Default to 16 kb sector size. */
2503 rest_addr = 0x3fff;
2504 sec_mask = 0x1c000;
2505 break;
2508 update_flash:
2509 if (IS_QLA2322(ha) || IS_QLA6322(ha)) {
2510 if (qla2x00_erase_flash(ha, man_id, flash_id)) {
2511 rval = QLA_FUNCTION_FAILED;
2512 break;
2516 for (addr = offset, liter = 0; liter < length; liter++,
2517 addr++) {
2518 data = buf + liter;
2519 /* Are we at the beginning of a sector? */
2520 if ((addr & rest_addr) == 0) {
2521 if (IS_QLA2322(ha) || IS_QLA6322(ha)) {
2522 if (addr >= 0x10000UL) {
2523 if (((addr >> 12) & 0xf0) &&
2524 ((man_id == 0x01 &&
2525 flash_id == 0x3e) ||
2526 (man_id == 0x20 &&
2527 flash_id == 0xd2))) {
2528 sec_number++;
2529 if (sec_number == 1) {
2530 rest_addr =
2531 0x7fff;
2532 sec_mask =
2533 0x18000;
2534 } else if (
2535 sec_number == 2 ||
2536 sec_number == 3) {
2537 rest_addr =
2538 0x1fff;
2539 sec_mask =
2540 0x1e000;
2541 } else if (
2542 sec_number == 4) {
2543 rest_addr =
2544 0x3fff;
2545 sec_mask =
2546 0x1c000;
2550 } else if (addr == ha->optrom_size / 2) {
2551 WRT_REG_WORD(&reg->nvram, NVR_SELECT);
2552 RD_REG_WORD(&reg->nvram);
2555 if (flash_id == 0xda && man_id == 0xc1) {
2556 qla2x00_write_flash_byte(ha, 0x5555,
2557 0xaa);
2558 qla2x00_write_flash_byte(ha, 0x2aaa,
2559 0x55);
2560 qla2x00_write_flash_byte(ha, 0x5555,
2561 0xa0);
2562 } else if (!IS_QLA2322(ha) && !IS_QLA6322(ha)) {
2563 /* Then erase it */
2564 if (qla2x00_erase_flash_sector(ha,
2565 addr, sec_mask, man_id,
2566 flash_id)) {
2567 rval = QLA_FUNCTION_FAILED;
2568 break;
2570 if (man_id == 0x01 && flash_id == 0x6d)
2571 sec_number++;
2575 if (man_id == 0x01 && flash_id == 0x6d) {
2576 if (sec_number == 1 &&
2577 addr == (rest_addr - 1)) {
2578 rest_addr = 0x0fff;
2579 sec_mask = 0x1f000;
2580 } else if (sec_number == 3 && (addr & 0x7ffe)) {
2581 rest_addr = 0x3fff;
2582 sec_mask = 0x1c000;
2586 if (qla2x00_program_flash_address(ha, addr, *data,
2587 man_id, flash_id)) {
2588 rval = QLA_FUNCTION_FAILED;
2589 break;
2591 cond_resched();
2593 } while (0);
2594 qla2x00_flash_disable(ha);
2596 /* Resume HBA. */
2597 qla2x00_resume_hba(vha);
2599 return rval;
2602 void *
2603 qla24xx_read_optrom_data(struct scsi_qla_host *vha, void *buf,
2604 uint32_t offset, uint32_t length)
2606 struct qla_hw_data *ha = vha->hw;
2608 /* Suspend HBA. */
2609 scsi_block_requests(vha->host);
2610 set_bit(MBX_UPDATE_FLASH_ACTIVE, &ha->mbx_cmd_flags);
2612 /* Go with read. */
2613 qla24xx_read_flash_data(vha, (void *)buf, offset >> 2, length >> 2);
2615 /* Resume HBA. */
2616 clear_bit(MBX_UPDATE_FLASH_ACTIVE, &ha->mbx_cmd_flags);
2617 scsi_unblock_requests(vha->host);
2619 return buf;
2622 static int
2623 qla28xx_extract_sfub_and_verify(struct scsi_qla_host *vha, uint32_t *buf,
2624 uint32_t len, uint32_t buf_size_without_sfub, uint8_t *sfub_buf)
2626 uint32_t *p, check_sum = 0;
2627 int i;
2629 p = buf + buf_size_without_sfub;
2631 /* Extract SFUB from end of file */
2632 memcpy(sfub_buf, (uint8_t *)p,
2633 sizeof(struct secure_flash_update_block));
2635 for (i = 0; i < (sizeof(struct secure_flash_update_block) >> 2); i++)
2636 check_sum += p[i];
2638 check_sum = (~check_sum) + 1;
2640 if (check_sum != p[i]) {
2641 ql_log(ql_log_warn, vha, 0x7097,
2642 "SFUB checksum failed, 0x%x, 0x%x\n",
2643 check_sum, p[i]);
2644 return QLA_COMMAND_ERROR;
2647 return QLA_SUCCESS;
2650 static int
2651 qla28xx_get_flash_region(struct scsi_qla_host *vha, uint32_t start,
2652 struct qla_flt_region *region)
2654 struct qla_hw_data *ha = vha->hw;
2655 struct qla_flt_header *flt = ha->flt;
2656 struct qla_flt_region *flt_reg = &flt->region[0];
2657 uint16_t cnt;
2658 int rval = QLA_FUNCTION_FAILED;
2660 if (!ha->flt)
2661 return QLA_FUNCTION_FAILED;
2663 cnt = le16_to_cpu(flt->length) / sizeof(struct qla_flt_region);
2664 for (; cnt; cnt--, flt_reg++) {
2665 if (flt_reg->start == start) {
2666 memcpy((uint8_t *)region, flt_reg,
2667 sizeof(struct qla_flt_region));
2668 rval = QLA_SUCCESS;
2669 break;
2673 return rval;
2676 static int
2677 qla28xx_write_flash_data(scsi_qla_host_t *vha, uint32_t *dwptr, uint32_t faddr,
2678 uint32_t dwords)
2680 struct qla_hw_data *ha = vha->hw;
2681 ulong liter;
2682 ulong dburst = OPTROM_BURST_DWORDS; /* burst size in dwords */
2683 uint32_t sec_mask, rest_addr, fdata;
2684 void *optrom = NULL;
2685 dma_addr_t optrom_dma;
2686 int rval;
2687 struct secure_flash_update_block *sfub;
2688 dma_addr_t sfub_dma;
2689 uint32_t offset = faddr << 2;
2690 uint32_t buf_size_without_sfub = 0;
2691 struct qla_flt_region region;
2692 bool reset_to_rom = false;
2693 uint32_t risc_size, risc_attr = 0;
2694 uint32_t *fw_array = NULL;
2696 /* Retrieve region info - must be a start address passed in */
2697 rval = qla28xx_get_flash_region(vha, offset, &region);
2699 if (rval != QLA_SUCCESS) {
2700 ql_log(ql_log_warn, vha, 0xffff,
2701 "Invalid address %x - not a region start address\n",
2702 offset);
2703 goto done;
2706 /* Allocate dma buffer for burst write */
2707 optrom = dma_alloc_coherent(&ha->pdev->dev, OPTROM_BURST_SIZE,
2708 &optrom_dma, GFP_KERNEL);
2709 if (!optrom) {
2710 ql_log(ql_log_warn, vha, 0x7095,
2711 "Failed allocate burst (%x bytes)\n", OPTROM_BURST_SIZE);
2712 rval = QLA_COMMAND_ERROR;
2713 goto done;
2717 * If adapter supports secure flash and region is secure
2718 * extract secure flash update block (SFUB) and verify
2720 if (ha->flags.secure_adapter && region.attribute) {
2722 ql_log(ql_log_warn + ql_dbg_verbose, vha, 0xffff,
2723 "Region %x is secure\n", region.code);
2725 switch (region.code) {
2726 case FLT_REG_FW:
2727 case FLT_REG_FW_SEC_27XX:
2728 case FLT_REG_MPI_PRI_28XX:
2729 case FLT_REG_MPI_SEC_28XX:
2730 fw_array = dwptr;
2732 /* 1st fw array */
2733 risc_size = be32_to_cpu(fw_array[3]);
2734 risc_attr = be32_to_cpu(fw_array[9]);
2736 buf_size_without_sfub = risc_size;
2737 fw_array += risc_size;
2739 /* 2nd fw array */
2740 risc_size = be32_to_cpu(fw_array[3]);
2742 buf_size_without_sfub += risc_size;
2743 fw_array += risc_size;
2745 /* 1st dump template */
2746 risc_size = be32_to_cpu(fw_array[2]);
2748 /* skip header and ignore checksum */
2749 buf_size_without_sfub += risc_size;
2750 fw_array += risc_size;
2752 if (risc_attr & BIT_9) {
2753 /* 2nd dump template */
2754 risc_size = be32_to_cpu(fw_array[2]);
2756 /* skip header and ignore checksum */
2757 buf_size_without_sfub += risc_size;
2758 fw_array += risc_size;
2760 break;
2762 case FLT_REG_PEP_PRI_28XX:
2763 case FLT_REG_PEP_SEC_28XX:
2764 fw_array = dwptr;
2766 /* 1st fw array */
2767 risc_size = be32_to_cpu(fw_array[3]);
2768 risc_attr = be32_to_cpu(fw_array[9]);
2770 buf_size_without_sfub = risc_size;
2771 fw_array += risc_size;
2772 break;
2774 default:
2775 ql_log(ql_log_warn + ql_dbg_verbose, vha,
2776 0xffff, "Secure region %x not supported\n",
2777 region.code);
2778 rval = QLA_COMMAND_ERROR;
2779 goto done;
2782 sfub = dma_alloc_coherent(&ha->pdev->dev,
2783 sizeof(struct secure_flash_update_block), &sfub_dma,
2784 GFP_KERNEL);
2785 if (!sfub) {
2786 ql_log(ql_log_warn, vha, 0xffff,
2787 "Unable to allocate memory for SFUB\n");
2788 rval = QLA_COMMAND_ERROR;
2789 goto done;
2792 rval = qla28xx_extract_sfub_and_verify(vha, dwptr, dwords,
2793 buf_size_without_sfub, (uint8_t *)sfub);
2795 if (rval != QLA_SUCCESS)
2796 goto done;
2798 ql_log(ql_log_warn + ql_dbg_verbose, vha, 0xffff,
2799 "SFUB extract and verify successful\n");
2802 rest_addr = (ha->fdt_block_size >> 2) - 1;
2803 sec_mask = ~rest_addr;
2805 /* Lock semaphore */
2806 rval = qla81xx_fac_semaphore_access(vha, FAC_SEMAPHORE_LOCK);
2807 if (rval != QLA_SUCCESS) {
2808 ql_log(ql_log_warn, vha, 0xffff,
2809 "Unable to lock flash semaphore.");
2810 goto done;
2813 ql_log(ql_log_warn + ql_dbg_verbose, vha, 0x7095,
2814 "Unprotect flash...\n");
2815 rval = qla24xx_unprotect_flash(vha);
2816 if (rval) {
2817 qla81xx_fac_semaphore_access(vha, FAC_SEMAPHORE_UNLOCK);
2818 ql_log(ql_log_warn, vha, 0x7096, "Failed unprotect flash\n");
2819 goto done;
2822 for (liter = 0; liter < dwords; liter++, faddr++) {
2823 fdata = (faddr & sec_mask) << 2;
2825 /* If start of sector */
2826 if (!(faddr & rest_addr)) {
2827 ql_log(ql_log_warn + ql_dbg_verbose, vha, 0x7095,
2828 "Erase sector %#x...\n", faddr);
2829 rval = qla24xx_erase_sector(vha, fdata);
2830 if (rval) {
2831 ql_dbg(ql_dbg_user, vha, 0x7007,
2832 "Failed erase sector %#x\n", faddr);
2833 goto write_protect;
2838 if (ha->flags.secure_adapter) {
2840 * If adapter supports secure flash but FW doesn't,
2841 * disable write protect, release semaphore and reset
2842 * chip to execute ROM code in order to update region securely
2844 if (!ha->flags.secure_fw) {
2845 ql_log(ql_log_warn + ql_dbg_verbose, vha, 0xffff,
2846 "Disable Write and Release Semaphore.");
2847 rval = qla24xx_protect_flash(vha);
2848 if (rval != QLA_SUCCESS) {
2849 qla81xx_fac_semaphore_access(vha,
2850 FAC_SEMAPHORE_UNLOCK);
2851 ql_log(ql_log_warn, vha, 0xffff,
2852 "Unable to protect flash.");
2853 goto done;
2856 ql_log(ql_log_warn + ql_dbg_verbose, vha, 0xffff,
2857 "Reset chip to ROM.");
2858 set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
2859 set_bit(ISP_ABORT_TO_ROM, &vha->dpc_flags);
2860 qla2xxx_wake_dpc(vha);
2861 rval = qla2x00_wait_for_chip_reset(vha);
2862 if (rval != QLA_SUCCESS) {
2863 ql_log(ql_log_warn, vha, 0xffff,
2864 "Unable to reset to ROM code.");
2865 goto done;
2867 reset_to_rom = true;
2868 ha->flags.fac_supported = 0;
2870 ql_log(ql_log_warn + ql_dbg_verbose, vha, 0xffff,
2871 "Lock Semaphore");
2872 rval = qla2xxx_write_remote_register(vha,
2873 FLASH_SEMAPHORE_REGISTER_ADDR, 0x00020002);
2874 if (rval != QLA_SUCCESS) {
2875 ql_log(ql_log_warn, vha, 0xffff,
2876 "Unable to lock flash semaphore.");
2877 goto done;
2880 /* Unprotect flash */
2881 ql_log(ql_log_warn + ql_dbg_verbose, vha, 0xffff,
2882 "Enable Write.");
2883 rval = qla2x00_write_ram_word(vha, 0x7ffd0101, 0);
2884 if (rval) {
2885 ql_log(ql_log_warn, vha, 0x7096,
2886 "Failed unprotect flash\n");
2887 goto done;
2891 /* If region is secure, send Secure Flash MB Cmd */
2892 if (region.attribute && buf_size_without_sfub) {
2893 ql_log(ql_log_warn + ql_dbg_verbose, vha, 0xffff,
2894 "Sending Secure Flash MB Cmd\n");
2895 rval = qla28xx_secure_flash_update(vha, 0, region.code,
2896 buf_size_without_sfub, sfub_dma,
2897 sizeof(struct secure_flash_update_block) >> 2);
2898 if (rval != QLA_SUCCESS) {
2899 ql_log(ql_log_warn, vha, 0xffff,
2900 "Secure Flash MB Cmd failed %x.", rval);
2901 goto write_protect;
2907 /* re-init flash offset */
2908 faddr = offset >> 2;
2910 for (liter = 0; liter < dwords; liter++, faddr++, dwptr++) {
2911 fdata = (faddr & sec_mask) << 2;
2913 /* If smaller than a burst remaining */
2914 if (dwords - liter < dburst)
2915 dburst = dwords - liter;
2917 /* Copy to dma buffer */
2918 memcpy(optrom, dwptr, dburst << 2);
2920 /* Burst write */
2921 ql_log(ql_log_warn + ql_dbg_verbose, vha, 0x7095,
2922 "Write burst (%#lx dwords)...\n", dburst);
2923 rval = qla2x00_load_ram(vha, optrom_dma,
2924 flash_data_addr(ha, faddr), dburst);
2925 if (rval != QLA_SUCCESS) {
2926 ql_log(ql_log_warn, vha, 0x7097,
2927 "Failed burst write at %x (%p/%#llx)...\n",
2928 flash_data_addr(ha, faddr), optrom,
2929 (u64)optrom_dma);
2930 break;
2933 liter += dburst - 1;
2934 faddr += dburst - 1;
2935 dwptr += dburst - 1;
2936 continue;
2939 write_protect:
2940 ql_log(ql_log_warn + ql_dbg_verbose, vha, 0x7095,
2941 "Protect flash...\n");
2942 rval = qla24xx_protect_flash(vha);
2943 if (rval) {
2944 qla81xx_fac_semaphore_access(vha, FAC_SEMAPHORE_UNLOCK);
2945 ql_log(ql_log_warn, vha, 0x7099,
2946 "Failed protect flash\n");
2949 if (reset_to_rom == true) {
2950 /* Schedule DPC to restart the RISC */
2951 set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
2952 qla2xxx_wake_dpc(vha);
2954 rval = qla2x00_wait_for_hba_online(vha);
2955 if (rval != QLA_SUCCESS)
2956 ql_log(ql_log_warn, vha, 0xffff,
2957 "Adapter did not come out of reset\n");
2960 done:
2961 if (optrom)
2962 dma_free_coherent(&ha->pdev->dev,
2963 OPTROM_BURST_SIZE, optrom, optrom_dma);
2965 return rval;
2969 qla24xx_write_optrom_data(struct scsi_qla_host *vha, void *buf,
2970 uint32_t offset, uint32_t length)
2972 int rval;
2973 struct qla_hw_data *ha = vha->hw;
2975 /* Suspend HBA. */
2976 scsi_block_requests(vha->host);
2977 set_bit(MBX_UPDATE_FLASH_ACTIVE, &ha->mbx_cmd_flags);
2979 /* Go with write. */
2980 if (IS_QLA28XX(ha))
2981 rval = qla28xx_write_flash_data(vha, (uint32_t *)buf,
2982 offset >> 2, length >> 2);
2983 else
2984 rval = qla24xx_write_flash_data(vha, (uint32_t *)buf,
2985 offset >> 2, length >> 2);
2987 clear_bit(MBX_UPDATE_FLASH_ACTIVE, &ha->mbx_cmd_flags);
2988 scsi_unblock_requests(vha->host);
2990 return rval;
2993 void *
2994 qla25xx_read_optrom_data(struct scsi_qla_host *vha, void *buf,
2995 uint32_t offset, uint32_t length)
2997 int rval;
2998 dma_addr_t optrom_dma;
2999 void *optrom;
3000 uint8_t *pbuf;
3001 uint32_t faddr, left, burst;
3002 struct qla_hw_data *ha = vha->hw;
3004 if (IS_QLA25XX(ha) || IS_QLA81XX(ha) || IS_QLA83XX(ha) ||
3005 IS_QLA27XX(ha) || IS_QLA28XX(ha))
3006 goto try_fast;
3007 if (offset & 0xfff)
3008 goto slow_read;
3009 if (length < OPTROM_BURST_SIZE)
3010 goto slow_read;
3012 try_fast:
3013 if (offset & 0xff)
3014 goto slow_read;
3015 optrom = dma_alloc_coherent(&ha->pdev->dev, OPTROM_BURST_SIZE,
3016 &optrom_dma, GFP_KERNEL);
3017 if (!optrom) {
3018 ql_log(ql_log_warn, vha, 0x00cc,
3019 "Unable to allocate memory for optrom burst read (%x KB).\n",
3020 OPTROM_BURST_SIZE / 1024);
3021 goto slow_read;
3024 pbuf = buf;
3025 faddr = offset >> 2;
3026 left = length >> 2;
3027 burst = OPTROM_BURST_DWORDS;
3028 while (left != 0) {
3029 if (burst > left)
3030 burst = left;
3032 rval = qla2x00_dump_ram(vha, optrom_dma,
3033 flash_data_addr(ha, faddr), burst);
3034 if (rval) {
3035 ql_log(ql_log_warn, vha, 0x00f5,
3036 "Unable to burst-read optrom segment (%x/%x/%llx).\n",
3037 rval, flash_data_addr(ha, faddr),
3038 (unsigned long long)optrom_dma);
3039 ql_log(ql_log_warn, vha, 0x00f6,
3040 "Reverting to slow-read.\n");
3042 dma_free_coherent(&ha->pdev->dev, OPTROM_BURST_SIZE,
3043 optrom, optrom_dma);
3044 goto slow_read;
3047 memcpy(pbuf, optrom, burst * 4);
3049 left -= burst;
3050 faddr += burst;
3051 pbuf += burst * 4;
3054 dma_free_coherent(&ha->pdev->dev, OPTROM_BURST_SIZE, optrom,
3055 optrom_dma);
3057 return buf;
3059 slow_read:
3060 return qla24xx_read_optrom_data(vha, buf, offset, length);
3064 * qla2x00_get_fcode_version() - Determine an FCODE image's version.
3065 * @ha: HA context
3066 * @pcids: Pointer to the FCODE PCI data structure
3068 * The process of retrieving the FCODE version information is at best
3069 * described as interesting.
3071 * Within the first 100h bytes of the image an ASCII string is present
3072 * which contains several pieces of information including the FCODE
3073 * version. Unfortunately it seems the only reliable way to retrieve
3074 * the version is by scanning for another sentinel within the string,
3075 * the FCODE build date:
3077 * ... 2.00.02 10/17/02 ...
3079 * Returns QLA_SUCCESS on successful retrieval of version.
3081 static void
3082 qla2x00_get_fcode_version(struct qla_hw_data *ha, uint32_t pcids)
3084 int ret = QLA_FUNCTION_FAILED;
3085 uint32_t istart, iend, iter, vend;
3086 uint8_t do_next, rbyte, *vbyte;
3088 memset(ha->fcode_revision, 0, sizeof(ha->fcode_revision));
3090 /* Skip the PCI data structure. */
3091 istart = pcids +
3092 ((qla2x00_read_flash_byte(ha, pcids + 0x0B) << 8) |
3093 qla2x00_read_flash_byte(ha, pcids + 0x0A));
3094 iend = istart + 0x100;
3095 do {
3096 /* Scan for the sentinel date string...eeewww. */
3097 do_next = 0;
3098 iter = istart;
3099 while ((iter < iend) && !do_next) {
3100 iter++;
3101 if (qla2x00_read_flash_byte(ha, iter) == '/') {
3102 if (qla2x00_read_flash_byte(ha, iter + 2) ==
3103 '/')
3104 do_next++;
3105 else if (qla2x00_read_flash_byte(ha,
3106 iter + 3) == '/')
3107 do_next++;
3110 if (!do_next)
3111 break;
3113 /* Backtrack to previous ' ' (space). */
3114 do_next = 0;
3115 while ((iter > istart) && !do_next) {
3116 iter--;
3117 if (qla2x00_read_flash_byte(ha, iter) == ' ')
3118 do_next++;
3120 if (!do_next)
3121 break;
3124 * Mark end of version tag, and find previous ' ' (space) or
3125 * string length (recent FCODE images -- major hack ahead!!!).
3127 vend = iter - 1;
3128 do_next = 0;
3129 while ((iter > istart) && !do_next) {
3130 iter--;
3131 rbyte = qla2x00_read_flash_byte(ha, iter);
3132 if (rbyte == ' ' || rbyte == 0xd || rbyte == 0x10)
3133 do_next++;
3135 if (!do_next)
3136 break;
3138 /* Mark beginning of version tag, and copy data. */
3139 iter++;
3140 if ((vend - iter) &&
3141 ((vend - iter) < sizeof(ha->fcode_revision))) {
3142 vbyte = ha->fcode_revision;
3143 while (iter <= vend) {
3144 *vbyte++ = qla2x00_read_flash_byte(ha, iter);
3145 iter++;
3147 ret = QLA_SUCCESS;
3149 } while (0);
3151 if (ret != QLA_SUCCESS)
3152 memset(ha->fcode_revision, 0, sizeof(ha->fcode_revision));
3156 qla2x00_get_flash_version(scsi_qla_host_t *vha, void *mbuf)
3158 int ret = QLA_SUCCESS;
3159 uint8_t code_type, last_image;
3160 uint32_t pcihdr, pcids;
3161 uint8_t *dbyte;
3162 uint16_t *dcode;
3163 struct qla_hw_data *ha = vha->hw;
3165 if (!ha->pio_address || !mbuf)
3166 return QLA_FUNCTION_FAILED;
3168 memset(ha->bios_revision, 0, sizeof(ha->bios_revision));
3169 memset(ha->efi_revision, 0, sizeof(ha->efi_revision));
3170 memset(ha->fcode_revision, 0, sizeof(ha->fcode_revision));
3171 memset(ha->fw_revision, 0, sizeof(ha->fw_revision));
3173 qla2x00_flash_enable(ha);
3175 /* Begin with first PCI expansion ROM header. */
3176 pcihdr = 0;
3177 last_image = 1;
3178 do {
3179 /* Verify PCI expansion ROM header. */
3180 if (qla2x00_read_flash_byte(ha, pcihdr) != 0x55 ||
3181 qla2x00_read_flash_byte(ha, pcihdr + 0x01) != 0xaa) {
3182 /* No signature */
3183 ql_log(ql_log_fatal, vha, 0x0050,
3184 "No matching ROM signature.\n");
3185 ret = QLA_FUNCTION_FAILED;
3186 break;
3189 /* Locate PCI data structure. */
3190 pcids = pcihdr +
3191 ((qla2x00_read_flash_byte(ha, pcihdr + 0x19) << 8) |
3192 qla2x00_read_flash_byte(ha, pcihdr + 0x18));
3194 /* Validate signature of PCI data structure. */
3195 if (qla2x00_read_flash_byte(ha, pcids) != 'P' ||
3196 qla2x00_read_flash_byte(ha, pcids + 0x1) != 'C' ||
3197 qla2x00_read_flash_byte(ha, pcids + 0x2) != 'I' ||
3198 qla2x00_read_flash_byte(ha, pcids + 0x3) != 'R') {
3199 /* Incorrect header. */
3200 ql_log(ql_log_fatal, vha, 0x0051,
3201 "PCI data struct not found pcir_adr=%x.\n", pcids);
3202 ret = QLA_FUNCTION_FAILED;
3203 break;
3206 /* Read version */
3207 code_type = qla2x00_read_flash_byte(ha, pcids + 0x14);
3208 switch (code_type) {
3209 case ROM_CODE_TYPE_BIOS:
3210 /* Intel x86, PC-AT compatible. */
3211 ha->bios_revision[0] =
3212 qla2x00_read_flash_byte(ha, pcids + 0x12);
3213 ha->bios_revision[1] =
3214 qla2x00_read_flash_byte(ha, pcids + 0x13);
3215 ql_dbg(ql_dbg_init, vha, 0x0052,
3216 "Read BIOS %d.%d.\n",
3217 ha->bios_revision[1], ha->bios_revision[0]);
3218 break;
3219 case ROM_CODE_TYPE_FCODE:
3220 /* Open Firmware standard for PCI (FCode). */
3221 /* Eeeewww... */
3222 qla2x00_get_fcode_version(ha, pcids);
3223 break;
3224 case ROM_CODE_TYPE_EFI:
3225 /* Extensible Firmware Interface (EFI). */
3226 ha->efi_revision[0] =
3227 qla2x00_read_flash_byte(ha, pcids + 0x12);
3228 ha->efi_revision[1] =
3229 qla2x00_read_flash_byte(ha, pcids + 0x13);
3230 ql_dbg(ql_dbg_init, vha, 0x0053,
3231 "Read EFI %d.%d.\n",
3232 ha->efi_revision[1], ha->efi_revision[0]);
3233 break;
3234 default:
3235 ql_log(ql_log_warn, vha, 0x0054,
3236 "Unrecognized code type %x at pcids %x.\n",
3237 code_type, pcids);
3238 break;
3241 last_image = qla2x00_read_flash_byte(ha, pcids + 0x15) & BIT_7;
3243 /* Locate next PCI expansion ROM. */
3244 pcihdr += ((qla2x00_read_flash_byte(ha, pcids + 0x11) << 8) |
3245 qla2x00_read_flash_byte(ha, pcids + 0x10)) * 512;
3246 } while (!last_image);
3248 if (IS_QLA2322(ha)) {
3249 /* Read firmware image information. */
3250 memset(ha->fw_revision, 0, sizeof(ha->fw_revision));
3251 dbyte = mbuf;
3252 memset(dbyte, 0, 8);
3253 dcode = (uint16_t *)dbyte;
3255 qla2x00_read_flash_data(ha, dbyte, ha->flt_region_fw * 4 + 10,
3257 ql_dbg(ql_dbg_init + ql_dbg_buffer, vha, 0x010a,
3258 "Dumping fw "
3259 "ver from flash:.\n");
3260 ql_dump_buffer(ql_dbg_init + ql_dbg_buffer, vha, 0x010b,
3261 dbyte, 32);
3263 if ((dcode[0] == 0xffff && dcode[1] == 0xffff &&
3264 dcode[2] == 0xffff && dcode[3] == 0xffff) ||
3265 (dcode[0] == 0 && dcode[1] == 0 && dcode[2] == 0 &&
3266 dcode[3] == 0)) {
3267 ql_log(ql_log_warn, vha, 0x0057,
3268 "Unrecognized fw revision at %x.\n",
3269 ha->flt_region_fw * 4);
3270 } else {
3271 /* values are in big endian */
3272 ha->fw_revision[0] = dbyte[0] << 16 | dbyte[1];
3273 ha->fw_revision[1] = dbyte[2] << 16 | dbyte[3];
3274 ha->fw_revision[2] = dbyte[4] << 16 | dbyte[5];
3275 ql_dbg(ql_dbg_init, vha, 0x0058,
3276 "FW Version: "
3277 "%d.%d.%d.\n", ha->fw_revision[0],
3278 ha->fw_revision[1], ha->fw_revision[2]);
3282 qla2x00_flash_disable(ha);
3284 return ret;
3288 qla82xx_get_flash_version(scsi_qla_host_t *vha, void *mbuf)
3290 int ret = QLA_SUCCESS;
3291 uint32_t pcihdr, pcids;
3292 uint32_t *dcode = mbuf;
3293 uint8_t *bcode = mbuf;
3294 uint8_t code_type, last_image;
3295 struct qla_hw_data *ha = vha->hw;
3297 if (!mbuf)
3298 return QLA_FUNCTION_FAILED;
3300 memset(ha->bios_revision, 0, sizeof(ha->bios_revision));
3301 memset(ha->efi_revision, 0, sizeof(ha->efi_revision));
3302 memset(ha->fcode_revision, 0, sizeof(ha->fcode_revision));
3303 memset(ha->fw_revision, 0, sizeof(ha->fw_revision));
3305 /* Begin with first PCI expansion ROM header. */
3306 pcihdr = ha->flt_region_boot << 2;
3307 last_image = 1;
3308 do {
3309 /* Verify PCI expansion ROM header. */
3310 ha->isp_ops->read_optrom(vha, dcode, pcihdr, 0x20 * 4);
3311 bcode = mbuf + (pcihdr % 4);
3312 if (memcmp(bcode, "\x55\xaa", 2)) {
3313 /* No signature */
3314 ql_log(ql_log_fatal, vha, 0x0154,
3315 "No matching ROM signature.\n");
3316 ret = QLA_FUNCTION_FAILED;
3317 break;
3320 /* Locate PCI data structure. */
3321 pcids = pcihdr + ((bcode[0x19] << 8) | bcode[0x18]);
3323 ha->isp_ops->read_optrom(vha, dcode, pcids, 0x20 * 4);
3324 bcode = mbuf + (pcihdr % 4);
3326 /* Validate signature of PCI data structure. */
3327 if (memcmp(bcode, "PCIR", 4)) {
3328 /* Incorrect header. */
3329 ql_log(ql_log_fatal, vha, 0x0155,
3330 "PCI data struct not found pcir_adr=%x.\n", pcids);
3331 ret = QLA_FUNCTION_FAILED;
3332 break;
3335 /* Read version */
3336 code_type = bcode[0x14];
3337 switch (code_type) {
3338 case ROM_CODE_TYPE_BIOS:
3339 /* Intel x86, PC-AT compatible. */
3340 ha->bios_revision[0] = bcode[0x12];
3341 ha->bios_revision[1] = bcode[0x13];
3342 ql_dbg(ql_dbg_init, vha, 0x0156,
3343 "Read BIOS %d.%d.\n",
3344 ha->bios_revision[1], ha->bios_revision[0]);
3345 break;
3346 case ROM_CODE_TYPE_FCODE:
3347 /* Open Firmware standard for PCI (FCode). */
3348 ha->fcode_revision[0] = bcode[0x12];
3349 ha->fcode_revision[1] = bcode[0x13];
3350 ql_dbg(ql_dbg_init, vha, 0x0157,
3351 "Read FCODE %d.%d.\n",
3352 ha->fcode_revision[1], ha->fcode_revision[0]);
3353 break;
3354 case ROM_CODE_TYPE_EFI:
3355 /* Extensible Firmware Interface (EFI). */
3356 ha->efi_revision[0] = bcode[0x12];
3357 ha->efi_revision[1] = bcode[0x13];
3358 ql_dbg(ql_dbg_init, vha, 0x0158,
3359 "Read EFI %d.%d.\n",
3360 ha->efi_revision[1], ha->efi_revision[0]);
3361 break;
3362 default:
3363 ql_log(ql_log_warn, vha, 0x0159,
3364 "Unrecognized code type %x at pcids %x.\n",
3365 code_type, pcids);
3366 break;
3369 last_image = bcode[0x15] & BIT_7;
3371 /* Locate next PCI expansion ROM. */
3372 pcihdr += ((bcode[0x11] << 8) | bcode[0x10]) * 512;
3373 } while (!last_image);
3375 /* Read firmware image information. */
3376 memset(ha->fw_revision, 0, sizeof(ha->fw_revision));
3377 dcode = mbuf;
3378 ha->isp_ops->read_optrom(vha, dcode, ha->flt_region_fw << 2, 0x20);
3379 bcode = mbuf + (pcihdr % 4);
3381 /* Validate signature of PCI data structure. */
3382 if (bcode[0x0] == 0x3 && bcode[0x1] == 0x0 &&
3383 bcode[0x2] == 0x40 && bcode[0x3] == 0x40) {
3384 ha->fw_revision[0] = bcode[0x4];
3385 ha->fw_revision[1] = bcode[0x5];
3386 ha->fw_revision[2] = bcode[0x6];
3387 ql_dbg(ql_dbg_init, vha, 0x0153,
3388 "Firmware revision %d.%d.%d\n",
3389 ha->fw_revision[0], ha->fw_revision[1],
3390 ha->fw_revision[2]);
3393 return ret;
3397 qla24xx_get_flash_version(scsi_qla_host_t *vha, void *mbuf)
3399 int ret = QLA_SUCCESS;
3400 uint32_t pcihdr = 0, pcids = 0;
3401 uint32_t *dcode = mbuf;
3402 uint8_t *bcode = mbuf;
3403 uint8_t code_type, last_image;
3404 int i;
3405 struct qla_hw_data *ha = vha->hw;
3406 uint32_t faddr = 0;
3407 struct active_regions active_regions = { };
3409 if (IS_P3P_TYPE(ha))
3410 return ret;
3412 if (!mbuf)
3413 return QLA_FUNCTION_FAILED;
3415 memset(ha->bios_revision, 0, sizeof(ha->bios_revision));
3416 memset(ha->efi_revision, 0, sizeof(ha->efi_revision));
3417 memset(ha->fcode_revision, 0, sizeof(ha->fcode_revision));
3418 memset(ha->fw_revision, 0, sizeof(ha->fw_revision));
3420 pcihdr = ha->flt_region_boot << 2;
3421 if (IS_QLA27XX(ha) || IS_QLA28XX(ha)) {
3422 qla27xx_get_active_image(vha, &active_regions);
3423 if (active_regions.global == QLA27XX_SECONDARY_IMAGE) {
3424 pcihdr = ha->flt_region_boot_sec << 2;
3428 do {
3429 /* Verify PCI expansion ROM header. */
3430 qla24xx_read_flash_data(vha, dcode, pcihdr >> 2, 0x20);
3431 bcode = mbuf + (pcihdr % 4);
3432 if (memcmp(bcode, "\x55\xaa", 2)) {
3433 /* No signature */
3434 ql_log(ql_log_fatal, vha, 0x0059,
3435 "No matching ROM signature.\n");
3436 ret = QLA_FUNCTION_FAILED;
3437 break;
3440 /* Locate PCI data structure. */
3441 pcids = pcihdr + ((bcode[0x19] << 8) | bcode[0x18]);
3443 qla24xx_read_flash_data(vha, dcode, pcids >> 2, 0x20);
3444 bcode = mbuf + (pcihdr % 4);
3446 /* Validate signature of PCI data structure. */
3447 if (memcmp(bcode, "PCIR", 4)) {
3448 /* Incorrect header. */
3449 ql_log(ql_log_fatal, vha, 0x005a,
3450 "PCI data struct not found pcir_adr=%x.\n", pcids);
3451 ql_dump_buffer(ql_dbg_init, vha, 0x0059, dcode, 32);
3452 ret = QLA_FUNCTION_FAILED;
3453 break;
3456 /* Read version */
3457 code_type = bcode[0x14];
3458 switch (code_type) {
3459 case ROM_CODE_TYPE_BIOS:
3460 /* Intel x86, PC-AT compatible. */
3461 ha->bios_revision[0] = bcode[0x12];
3462 ha->bios_revision[1] = bcode[0x13];
3463 ql_dbg(ql_dbg_init, vha, 0x005b,
3464 "Read BIOS %d.%d.\n",
3465 ha->bios_revision[1], ha->bios_revision[0]);
3466 break;
3467 case ROM_CODE_TYPE_FCODE:
3468 /* Open Firmware standard for PCI (FCode). */
3469 ha->fcode_revision[0] = bcode[0x12];
3470 ha->fcode_revision[1] = bcode[0x13];
3471 ql_dbg(ql_dbg_init, vha, 0x005c,
3472 "Read FCODE %d.%d.\n",
3473 ha->fcode_revision[1], ha->fcode_revision[0]);
3474 break;
3475 case ROM_CODE_TYPE_EFI:
3476 /* Extensible Firmware Interface (EFI). */
3477 ha->efi_revision[0] = bcode[0x12];
3478 ha->efi_revision[1] = bcode[0x13];
3479 ql_dbg(ql_dbg_init, vha, 0x005d,
3480 "Read EFI %d.%d.\n",
3481 ha->efi_revision[1], ha->efi_revision[0]);
3482 break;
3483 default:
3484 ql_log(ql_log_warn, vha, 0x005e,
3485 "Unrecognized code type %x at pcids %x.\n",
3486 code_type, pcids);
3487 break;
3490 last_image = bcode[0x15] & BIT_7;
3492 /* Locate next PCI expansion ROM. */
3493 pcihdr += ((bcode[0x11] << 8) | bcode[0x10]) * 512;
3494 } while (!last_image);
3496 /* Read firmware image information. */
3497 memset(ha->fw_revision, 0, sizeof(ha->fw_revision));
3498 faddr = ha->flt_region_fw;
3499 if (IS_QLA27XX(ha) || IS_QLA28XX(ha)) {
3500 qla27xx_get_active_image(vha, &active_regions);
3501 if (active_regions.global == QLA27XX_SECONDARY_IMAGE)
3502 faddr = ha->flt_region_fw_sec;
3505 qla24xx_read_flash_data(vha, dcode, faddr, 8);
3506 if (qla24xx_risc_firmware_invalid(dcode)) {
3507 ql_log(ql_log_warn, vha, 0x005f,
3508 "Unrecognized fw revision at %x.\n",
3509 ha->flt_region_fw * 4);
3510 ql_dump_buffer(ql_dbg_init, vha, 0x005f, dcode, 32);
3511 } else {
3512 for (i = 0; i < 4; i++)
3513 ha->fw_revision[i] = be32_to_cpu(dcode[4+i]);
3514 ql_dbg(ql_dbg_init, vha, 0x0060,
3515 "Firmware revision (flash) %u.%u.%u (%x).\n",
3516 ha->fw_revision[0], ha->fw_revision[1],
3517 ha->fw_revision[2], ha->fw_revision[3]);
3520 /* Check for golden firmware and get version if available */
3521 if (!IS_QLA81XX(ha)) {
3522 /* Golden firmware is not present in non 81XX adapters */
3523 return ret;
3526 memset(ha->gold_fw_version, 0, sizeof(ha->gold_fw_version));
3527 faddr = ha->flt_region_gold_fw;
3528 qla24xx_read_flash_data(vha, (void *)dcode, ha->flt_region_gold_fw, 8);
3529 if (qla24xx_risc_firmware_invalid(dcode)) {
3530 ql_log(ql_log_warn, vha, 0x0056,
3531 "Unrecognized golden fw at %#x.\n", faddr);
3532 ql_dump_buffer(ql_dbg_init, vha, 0x0056, dcode, 32);
3533 return ret;
3536 for (i = 0; i < 4; i++)
3537 ha->gold_fw_version[i] = be32_to_cpu(dcode[4+i]);
3539 return ret;
3542 static int
3543 qla2xxx_is_vpd_valid(uint8_t *pos, uint8_t *end)
3545 if (pos >= end || *pos != 0x82)
3546 return 0;
3548 pos += 3 + pos[1];
3549 if (pos >= end || *pos != 0x90)
3550 return 0;
3552 pos += 3 + pos[1];
3553 if (pos >= end || *pos != 0x78)
3554 return 0;
3556 return 1;
3560 qla2xxx_get_vpd_field(scsi_qla_host_t *vha, char *key, char *str, size_t size)
3562 struct qla_hw_data *ha = vha->hw;
3563 uint8_t *pos = ha->vpd;
3564 uint8_t *end = pos + ha->vpd_size;
3565 int len = 0;
3567 if (!IS_FWI2_CAPABLE(ha) || !qla2xxx_is_vpd_valid(pos, end))
3568 return 0;
3570 while (pos < end && *pos != 0x78) {
3571 len = (*pos == 0x82) ? pos[1] : pos[2];
3573 if (!strncmp(pos, key, strlen(key)))
3574 break;
3576 if (*pos != 0x90 && *pos != 0x91)
3577 pos += len;
3579 pos += 3;
3582 if (pos < end - len && *pos != 0x78)
3583 return scnprintf(str, size, "%.*s", len, pos + 3);
3585 return 0;
3589 qla24xx_read_fcp_prio_cfg(scsi_qla_host_t *vha)
3591 int len, max_len;
3592 uint32_t fcp_prio_addr;
3593 struct qla_hw_data *ha = vha->hw;
3595 if (!ha->fcp_prio_cfg) {
3596 ha->fcp_prio_cfg = vmalloc(FCP_PRIO_CFG_SIZE);
3597 if (!ha->fcp_prio_cfg) {
3598 ql_log(ql_log_warn, vha, 0x00d5,
3599 "Unable to allocate memory for fcp priority data (%x).\n",
3600 FCP_PRIO_CFG_SIZE);
3601 return QLA_FUNCTION_FAILED;
3604 memset(ha->fcp_prio_cfg, 0, FCP_PRIO_CFG_SIZE);
3606 fcp_prio_addr = ha->flt_region_fcp_prio;
3608 /* first read the fcp priority data header from flash */
3609 ha->isp_ops->read_optrom(vha, ha->fcp_prio_cfg,
3610 fcp_prio_addr << 2, FCP_PRIO_CFG_HDR_SIZE);
3612 if (!qla24xx_fcp_prio_cfg_valid(vha, ha->fcp_prio_cfg, 0))
3613 goto fail;
3615 /* read remaining FCP CMD config data from flash */
3616 fcp_prio_addr += (FCP_PRIO_CFG_HDR_SIZE >> 2);
3617 len = ha->fcp_prio_cfg->num_entries * FCP_PRIO_CFG_ENTRY_SIZE;
3618 max_len = FCP_PRIO_CFG_SIZE - FCP_PRIO_CFG_HDR_SIZE;
3620 ha->isp_ops->read_optrom(vha, &ha->fcp_prio_cfg->entry[0],
3621 fcp_prio_addr << 2, (len < max_len ? len : max_len));
3623 /* revalidate the entire FCP priority config data, including entries */
3624 if (!qla24xx_fcp_prio_cfg_valid(vha, ha->fcp_prio_cfg, 1))
3625 goto fail;
3627 ha->flags.fcp_prio_enabled = 1;
3628 return QLA_SUCCESS;
3629 fail:
3630 vfree(ha->fcp_prio_cfg);
3631 ha->fcp_prio_cfg = NULL;
3632 return QLA_FUNCTION_FAILED;