2 * QLogic Fibre Channel HBA Driver
3 * Copyright (c) 2003-2005 QLogic Corporation
5 * See LICENSE.qla2xxx for copyright and licensing details.
9 #include <linux/delay.h>
10 #include <linux/vmalloc.h>
11 #include <asm/uaccess.h>
13 static uint16_t qla2x00_nvram_request(scsi_qla_host_t
*, uint32_t);
14 static void qla2x00_nv_deselect(scsi_qla_host_t
*);
15 static void qla2x00_nv_write(scsi_qla_host_t
*, uint16_t);
18 * NVRAM support routines
22 * qla2x00_lock_nvram_access() -
26 qla2x00_lock_nvram_access(scsi_qla_host_t
*ha
)
29 struct device_reg_2xxx __iomem
*reg
= &ha
->iobase
->isp
;
31 if (!IS_QLA2100(ha
) && !IS_QLA2200(ha
) && !IS_QLA2300(ha
)) {
32 data
= RD_REG_WORD(®
->nvram
);
33 while (data
& NVR_BUSY
) {
35 data
= RD_REG_WORD(®
->nvram
);
39 WRT_REG_WORD(®
->u
.isp2300
.host_semaphore
, 0x1);
40 RD_REG_WORD(®
->u
.isp2300
.host_semaphore
);
42 data
= RD_REG_WORD(®
->u
.isp2300
.host_semaphore
);
43 while ((data
& BIT_0
) == 0) {
46 WRT_REG_WORD(®
->u
.isp2300
.host_semaphore
, 0x1);
47 RD_REG_WORD(®
->u
.isp2300
.host_semaphore
);
49 data
= RD_REG_WORD(®
->u
.isp2300
.host_semaphore
);
55 * qla2x00_unlock_nvram_access() -
59 qla2x00_unlock_nvram_access(scsi_qla_host_t
*ha
)
61 struct device_reg_2xxx __iomem
*reg
= &ha
->iobase
->isp
;
63 if (!IS_QLA2100(ha
) && !IS_QLA2200(ha
) && !IS_QLA2300(ha
)) {
64 WRT_REG_WORD(®
->u
.isp2300
.host_semaphore
, 0);
65 RD_REG_WORD(®
->u
.isp2300
.host_semaphore
);
70 * qla2x00_get_nvram_word() - Calculates word position in NVRAM and calls the
71 * request routine to get the word from NVRAM.
73 * @addr: Address in NVRAM to read
75 * Returns the word read from nvram @addr.
78 qla2x00_get_nvram_word(scsi_qla_host_t
*ha
, uint32_t addr
)
85 data
= qla2x00_nvram_request(ha
, nv_cmd
);
91 * qla2x00_write_nvram_word() - Write NVRAM data.
93 * @addr: Address in NVRAM to write
94 * @data: word to program
97 qla2x00_write_nvram_word(scsi_qla_host_t
*ha
, uint32_t addr
, uint16_t data
)
101 uint32_t nv_cmd
, wait_cnt
;
102 struct device_reg_2xxx __iomem
*reg
= &ha
->iobase
->isp
;
104 qla2x00_nv_write(ha
, NVR_DATA_OUT
);
105 qla2x00_nv_write(ha
, 0);
106 qla2x00_nv_write(ha
, 0);
108 for (word
= 0; word
< 8; word
++)
109 qla2x00_nv_write(ha
, NVR_DATA_OUT
);
111 qla2x00_nv_deselect(ha
);
114 nv_cmd
= (addr
<< 16) | NV_WRITE_OP
;
117 for (count
= 0; count
< 27; count
++) {
119 qla2x00_nv_write(ha
, NVR_DATA_OUT
);
121 qla2x00_nv_write(ha
, 0);
126 qla2x00_nv_deselect(ha
);
128 /* Wait for NVRAM to become ready */
129 WRT_REG_WORD(®
->nvram
, NVR_SELECT
);
130 RD_REG_WORD(®
->nvram
); /* PCI Posting. */
131 wait_cnt
= NVR_WAIT_CNT
;
134 DEBUG9_10(printk("%s(%ld): NVRAM didn't go ready...\n",
135 __func__
, ha
->host_no
));
139 word
= RD_REG_WORD(®
->nvram
);
140 } while ((word
& NVR_DATA_IN
) == 0);
142 qla2x00_nv_deselect(ha
);
145 qla2x00_nv_write(ha
, NVR_DATA_OUT
);
146 for (count
= 0; count
< 10; count
++)
147 qla2x00_nv_write(ha
, 0);
149 qla2x00_nv_deselect(ha
);
153 qla2x00_write_nvram_word_tmo(scsi_qla_host_t
*ha
, uint32_t addr
, uint16_t data
,
159 struct device_reg_2xxx __iomem
*reg
= &ha
->iobase
->isp
;
163 qla2x00_nv_write(ha
, NVR_DATA_OUT
);
164 qla2x00_nv_write(ha
, 0);
165 qla2x00_nv_write(ha
, 0);
167 for (word
= 0; word
< 8; word
++)
168 qla2x00_nv_write(ha
, NVR_DATA_OUT
);
170 qla2x00_nv_deselect(ha
);
173 nv_cmd
= (addr
<< 16) | NV_WRITE_OP
;
176 for (count
= 0; count
< 27; count
++) {
178 qla2x00_nv_write(ha
, NVR_DATA_OUT
);
180 qla2x00_nv_write(ha
, 0);
185 qla2x00_nv_deselect(ha
);
187 /* Wait for NVRAM to become ready */
188 WRT_REG_WORD(®
->nvram
, NVR_SELECT
);
189 RD_REG_WORD(®
->nvram
); /* PCI Posting. */
192 word
= RD_REG_WORD(®
->nvram
);
194 ret
= QLA_FUNCTION_FAILED
;
197 } while ((word
& NVR_DATA_IN
) == 0);
199 qla2x00_nv_deselect(ha
);
202 qla2x00_nv_write(ha
, NVR_DATA_OUT
);
203 for (count
= 0; count
< 10; count
++)
204 qla2x00_nv_write(ha
, 0);
206 qla2x00_nv_deselect(ha
);
212 * qla2x00_nvram_request() - Sends read command to NVRAM and gets data from
215 * @nv_cmd: NVRAM command
217 * Bit definitions for NVRAM command:
220 * Bit 25, 24 = opcode
221 * Bit 23-16 = address
222 * Bit 15-0 = write data
224 * Returns the word read from nvram @addr.
227 qla2x00_nvram_request(scsi_qla_host_t
*ha
, uint32_t nv_cmd
)
230 struct device_reg_2xxx __iomem
*reg
= &ha
->iobase
->isp
;
234 /* Send command to NVRAM. */
236 for (cnt
= 0; cnt
< 11; cnt
++) {
238 qla2x00_nv_write(ha
, NVR_DATA_OUT
);
240 qla2x00_nv_write(ha
, 0);
244 /* Read data from NVRAM. */
245 for (cnt
= 0; cnt
< 16; cnt
++) {
246 WRT_REG_WORD(®
->nvram
, NVR_SELECT
| NVR_CLOCK
);
247 RD_REG_WORD(®
->nvram
); /* PCI Posting. */
250 reg_data
= RD_REG_WORD(®
->nvram
);
251 if (reg_data
& NVR_DATA_IN
)
253 WRT_REG_WORD(®
->nvram
, NVR_SELECT
);
254 RD_REG_WORD(®
->nvram
); /* PCI Posting. */
259 WRT_REG_WORD(®
->nvram
, NVR_DESELECT
);
260 RD_REG_WORD(®
->nvram
); /* PCI Posting. */
267 * qla2x00_nv_write() - Clean NVRAM operations.
271 qla2x00_nv_deselect(scsi_qla_host_t
*ha
)
273 struct device_reg_2xxx __iomem
*reg
= &ha
->iobase
->isp
;
275 WRT_REG_WORD(®
->nvram
, NVR_DESELECT
);
276 RD_REG_WORD(®
->nvram
); /* PCI Posting. */
281 * qla2x00_nv_write() - Prepare for NVRAM read/write operation.
283 * @data: Serial interface selector
286 qla2x00_nv_write(scsi_qla_host_t
*ha
, uint16_t data
)
288 struct device_reg_2xxx __iomem
*reg
= &ha
->iobase
->isp
;
290 WRT_REG_WORD(®
->nvram
, data
| NVR_SELECT
| NVR_WRT_ENABLE
);
291 RD_REG_WORD(®
->nvram
); /* PCI Posting. */
293 WRT_REG_WORD(®
->nvram
, data
| NVR_SELECT
| NVR_CLOCK
|
295 RD_REG_WORD(®
->nvram
); /* PCI Posting. */
297 WRT_REG_WORD(®
->nvram
, data
| NVR_SELECT
| NVR_WRT_ENABLE
);
298 RD_REG_WORD(®
->nvram
); /* PCI Posting. */
303 * qla2x00_clear_nvram_protection() -
307 qla2x00_clear_nvram_protection(scsi_qla_host_t
*ha
)
310 struct device_reg_2xxx __iomem
*reg
= &ha
->iobase
->isp
;
311 uint32_t word
, wait_cnt
;
312 uint16_t wprot
, wprot_old
;
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 __constant_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) {
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(®
->nvram
, NVR_SELECT
);
351 RD_REG_WORD(®
->nvram
); /* PCI Posting. */
352 wait_cnt
= NVR_WAIT_CNT
;
355 DEBUG9_10(printk("%s(%ld): NVRAM didn't go "
356 "ready...\n", __func__
,
361 word
= RD_REG_WORD(®
->nvram
);
362 } while ((word
& NVR_DATA_IN
) == 0);
367 qla2x00_write_nvram_word(ha
, ha
->nvram_base
, wprot_old
);
373 qla2x00_set_nvram_protection(scsi_qla_host_t
*ha
, int stat
)
375 struct device_reg_2xxx __iomem
*reg
= &ha
->iobase
->isp
;
376 uint32_t word
, wait_cnt
;
378 if (stat
!= QLA_SUCCESS
)
381 /* Set NVRAM write protection. */
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(®
->nvram
, NVR_SELECT
);
411 RD_REG_WORD(®
->nvram
); /* PCI Posting. */
412 wait_cnt
= NVR_WAIT_CNT
;
415 DEBUG9_10(printk("%s(%ld): NVRAM didn't go ready...\n",
416 __func__
, ha
->host_no
));
420 word
= RD_REG_WORD(®
->nvram
);
421 } while ((word
& NVR_DATA_IN
) == 0);
425 /*****************************************************************************/
426 /* Flash Manipulation Routines */
427 /*****************************************************************************/
429 #define OPTROM_BURST_SIZE 0x1000
430 #define OPTROM_BURST_DWORDS (OPTROM_BURST_SIZE / 4)
432 static inline uint32_t
433 flash_conf_to_access_addr(uint32_t faddr
)
435 return FARX_ACCESS_FLASH_CONF
| faddr
;
438 static inline uint32_t
439 flash_data_to_access_addr(uint32_t faddr
)
441 return FARX_ACCESS_FLASH_DATA
| faddr
;
444 static inline uint32_t
445 nvram_conf_to_access_addr(uint32_t naddr
)
447 return FARX_ACCESS_NVRAM_CONF
| naddr
;
450 static inline uint32_t
451 nvram_data_to_access_addr(uint32_t naddr
)
453 return FARX_ACCESS_NVRAM_DATA
| naddr
;
457 qla24xx_read_flash_dword(scsi_qla_host_t
*ha
, uint32_t addr
)
461 struct device_reg_24xx __iomem
*reg
= &ha
->iobase
->isp24
;
463 WRT_REG_DWORD(®
->flash_addr
, addr
& ~FARX_DATA_FLAG
);
464 /* Wait for READ cycle to complete. */
467 (RD_REG_DWORD(®
->flash_addr
) & FARX_DATA_FLAG
) == 0 &&
468 rval
== QLA_SUCCESS
; cnt
--) {
472 rval
= QLA_FUNCTION_TIMEOUT
;
476 /* TODO: What happens if we time out? */
478 if (rval
== QLA_SUCCESS
)
479 data
= RD_REG_DWORD(®
->flash_data
);
485 qla24xx_read_flash_data(scsi_qla_host_t
*ha
, uint32_t *dwptr
, uint32_t faddr
,
490 /* Dword reads to flash. */
491 for (i
= 0; i
< dwords
; i
++, faddr
++)
492 dwptr
[i
] = cpu_to_le32(qla24xx_read_flash_dword(ha
,
493 flash_data_to_access_addr(faddr
)));
499 qla24xx_write_flash_dword(scsi_qla_host_t
*ha
, uint32_t addr
, uint32_t data
)
503 struct device_reg_24xx __iomem
*reg
= &ha
->iobase
->isp24
;
505 WRT_REG_DWORD(®
->flash_data
, data
);
506 RD_REG_DWORD(®
->flash_data
); /* PCI Posting. */
507 WRT_REG_DWORD(®
->flash_addr
, addr
| FARX_DATA_FLAG
);
508 /* Wait for Write cycle to complete. */
510 for (cnt
= 500000; (RD_REG_DWORD(®
->flash_addr
) & FARX_DATA_FLAG
) &&
511 rval
== QLA_SUCCESS
; cnt
--) {
515 rval
= QLA_FUNCTION_TIMEOUT
;
522 qla24xx_get_flash_manufacturer(scsi_qla_host_t
*ha
, uint8_t *man_id
,
527 ids
= qla24xx_read_flash_dword(ha
, flash_data_to_access_addr(0xd03ab));
529 *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 ids
= qla24xx_read_flash_dword(ha
,
540 flash_data_to_access_addr(0xd009f));
542 *flash_id
= MSB(ids
);
547 qla24xx_write_flash_data(scsi_qla_host_t
*ha
, uint32_t *dwptr
, uint32_t faddr
,
551 uint32_t liter
, miter
;
552 uint32_t sec_mask
, rest_addr
, conf_addr
;
553 uint32_t fdata
, findex
, cnt
;
554 uint8_t man_id
, flash_id
;
555 struct device_reg_24xx __iomem
*reg
= &ha
->iobase
->isp24
;
556 dma_addr_t optrom_dma
;
562 /* Prepare burst-capable write on supported ISPs. */
563 if (IS_QLA25XX(ha
) && !(faddr
& 0xfff) &&
564 dwords
> OPTROM_BURST_DWORDS
) {
565 optrom
= dma_alloc_coherent(&ha
->pdev
->dev
, OPTROM_BURST_SIZE
,
566 &optrom_dma
, GFP_KERNEL
);
568 qla_printk(KERN_DEBUG
, ha
,
569 "Unable to allocate memory for optrom burst write "
570 "(%x KB).\n", OPTROM_BURST_SIZE
/ 1024);
574 qla24xx_get_flash_manufacturer(ha
, &man_id
, &flash_id
);
575 DEBUG9(printk("%s(%ld): Flash man_id=%d flash_id=%d\n", __func__
,
576 ha
->host_no
, man_id
, flash_id
));
578 conf_addr
= flash_conf_to_access_addr(0x03d8);
580 case 0xbf: /* STT flash. */
581 if (flash_id
== 0x8e) {
588 if (flash_id
== 0x80)
589 conf_addr
= flash_conf_to_access_addr(0x0352);
591 case 0x13: /* ST M25P80. */
595 case 0x1f: // Atmel 26DF081A
598 conf_addr
= flash_conf_to_access_addr(0x0320);
601 /* Default to 64 kb sector size. */
607 /* Enable flash write. */
608 WRT_REG_DWORD(®
->ctrl_status
,
609 RD_REG_DWORD(®
->ctrl_status
) | CSRX_FLASH_ENABLE
);
610 RD_REG_DWORD(®
->ctrl_status
); /* PCI Posting. */
612 /* Disable flash write-protection. */
613 qla24xx_write_flash_dword(ha
, flash_conf_to_access_addr(0x101), 0);
614 /* Some flash parts need an additional zero-write to clear bits.*/
615 qla24xx_write_flash_dword(ha
, flash_conf_to_access_addr(0x101), 0);
617 for (liter
= 0; liter
< dwords
; liter
++, faddr
++, dwptr
++) {
618 if (man_id
== 0x1f) {
620 fdata
= findex
& sec_mask
;
623 fdata
= (findex
& sec_mask
) << 2;
626 /* Are we at the beginning of a sector? */
627 if ((findex
& rest_addr
) == 0) {
628 /* Do sector unprotect at 4K boundry for Atmel part. */
630 qla24xx_write_flash_dword(ha
,
631 flash_conf_to_access_addr(0x0339),
632 (fdata
& 0xff00) | ((fdata
<< 16) &
633 0xff0000) | ((fdata
>> 16) & 0xff));
634 ret
= qla24xx_write_flash_dword(ha
, conf_addr
,
635 (fdata
& 0xff00) |((fdata
<< 16) &
636 0xff0000) | ((fdata
>> 16) & 0xff));
637 if (ret
!= QLA_SUCCESS
) {
638 DEBUG9(printk("%s(%ld) Unable to flash "
639 "sector: address=%x.\n", __func__
,
640 ha
->host_no
, faddr
));
645 /* Go with burst-write. */
646 if (optrom
&& (liter
+ OPTROM_BURST_DWORDS
) <= dwords
) {
647 /* Copy data to DMA'ble buffer. */
648 for (miter
= 0, s
= optrom
, d
= dwptr
;
649 miter
< OPTROM_BURST_DWORDS
; miter
++, s
++, d
++)
650 *s
= cpu_to_le32(*d
);
652 ret
= qla2x00_load_ram(ha
, optrom_dma
,
653 flash_data_to_access_addr(faddr
),
654 OPTROM_BURST_DWORDS
);
655 if (ret
!= QLA_SUCCESS
) {
656 qla_printk(KERN_WARNING
, ha
,
657 "Unable to burst-write optrom segment "
658 "(%x/%x/%llx).\n", ret
,
659 flash_data_to_access_addr(faddr
),
660 (unsigned long long)optrom_dma
);
661 qla_printk(KERN_WARNING
, ha
,
662 "Reverting to slow-write.\n");
664 dma_free_coherent(&ha
->pdev
->dev
,
665 OPTROM_BURST_SIZE
, optrom
, optrom_dma
);
668 liter
+= OPTROM_BURST_DWORDS
- 1;
669 faddr
+= OPTROM_BURST_DWORDS
- 1;
670 dwptr
+= OPTROM_BURST_DWORDS
- 1;
675 ret
= qla24xx_write_flash_dword(ha
,
676 flash_data_to_access_addr(faddr
), cpu_to_le32(*dwptr
));
677 if (ret
!= QLA_SUCCESS
) {
678 DEBUG9(printk("%s(%ld) Unable to program flash "
679 "address=%x data=%x.\n", __func__
,
680 ha
->host_no
, faddr
, *dwptr
));
684 /* Do sector protect at 4K boundry for Atmel part. */
685 if (man_id
== 0x1f &&
686 ((faddr
& rest_addr
) == rest_addr
))
687 qla24xx_write_flash_dword(ha
,
688 flash_conf_to_access_addr(0x0336),
689 (fdata
& 0xff00) | ((fdata
<< 16) &
690 0xff0000) | ((fdata
>> 16) & 0xff));
693 /* Enable flash write-protection and wait for completion. */
694 qla24xx_write_flash_dword(ha
, flash_conf_to_access_addr(0x101), 0x9c);
695 for (cnt
= 300; cnt
&&
696 qla24xx_read_flash_dword(ha
,
697 flash_conf_to_access_addr(0x005)) & BIT_0
;
702 /* Disable flash write. */
703 WRT_REG_DWORD(®
->ctrl_status
,
704 RD_REG_DWORD(®
->ctrl_status
) & ~CSRX_FLASH_ENABLE
);
705 RD_REG_DWORD(®
->ctrl_status
); /* PCI Posting. */
708 dma_free_coherent(&ha
->pdev
->dev
,
709 OPTROM_BURST_SIZE
, optrom
, optrom_dma
);
715 qla2x00_read_nvram_data(scsi_qla_host_t
*ha
, uint8_t *buf
, uint32_t naddr
,
721 /* Word reads to NVRAM via registers. */
722 wptr
= (uint16_t *)buf
;
723 qla2x00_lock_nvram_access(ha
);
724 for (i
= 0; i
< bytes
>> 1; i
++, naddr
++)
725 wptr
[i
] = cpu_to_le16(qla2x00_get_nvram_word(ha
,
727 qla2x00_unlock_nvram_access(ha
);
733 qla24xx_read_nvram_data(scsi_qla_host_t
*ha
, uint8_t *buf
, uint32_t naddr
,
739 /* Dword reads to flash. */
740 dwptr
= (uint32_t *)buf
;
741 for (i
= 0; i
< bytes
>> 2; i
++, naddr
++)
742 dwptr
[i
] = cpu_to_le32(qla24xx_read_flash_dword(ha
,
743 nvram_data_to_access_addr(naddr
)));
749 qla2x00_write_nvram_data(scsi_qla_host_t
*ha
, uint8_t *buf
, uint32_t naddr
,
759 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
760 qla2x00_lock_nvram_access(ha
);
762 /* Disable NVRAM write-protection. */
763 stat
= qla2x00_clear_nvram_protection(ha
);
765 wptr
= (uint16_t *)buf
;
766 for (i
= 0; i
< bytes
>> 1; i
++, naddr
++) {
767 qla2x00_write_nvram_word(ha
, naddr
,
772 /* Enable NVRAM write-protection. */
773 qla2x00_set_nvram_protection(ha
, stat
);
775 qla2x00_unlock_nvram_access(ha
);
776 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
782 qla24xx_write_nvram_data(scsi_qla_host_t
*ha
, uint8_t *buf
, uint32_t naddr
,
788 struct device_reg_24xx __iomem
*reg
= &ha
->iobase
->isp24
;
793 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
794 /* Enable flash write. */
795 WRT_REG_DWORD(®
->ctrl_status
,
796 RD_REG_DWORD(®
->ctrl_status
) | CSRX_FLASH_ENABLE
);
797 RD_REG_DWORD(®
->ctrl_status
); /* PCI Posting. */
799 /* Disable NVRAM write-protection. */
800 qla24xx_write_flash_dword(ha
, nvram_conf_to_access_addr(0x101),
802 qla24xx_write_flash_dword(ha
, nvram_conf_to_access_addr(0x101),
805 /* Dword writes to flash. */
806 dwptr
= (uint32_t *)buf
;
807 for (i
= 0; i
< bytes
>> 2; i
++, naddr
++, dwptr
++) {
808 ret
= qla24xx_write_flash_dword(ha
,
809 nvram_data_to_access_addr(naddr
),
810 cpu_to_le32(*dwptr
));
811 if (ret
!= QLA_SUCCESS
) {
812 DEBUG9(printk("%s(%ld) Unable to program "
813 "nvram address=%x data=%x.\n", __func__
,
814 ha
->host_no
, naddr
, *dwptr
));
819 /* Enable NVRAM write-protection. */
820 qla24xx_write_flash_dword(ha
, nvram_conf_to_access_addr(0x101),
823 /* Disable flash write. */
824 WRT_REG_DWORD(®
->ctrl_status
,
825 RD_REG_DWORD(®
->ctrl_status
) & ~CSRX_FLASH_ENABLE
);
826 RD_REG_DWORD(®
->ctrl_status
); /* PCI Posting. */
827 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
833 qla25xx_read_nvram_data(scsi_qla_host_t
*ha
, uint8_t *buf
, uint32_t naddr
,
839 /* Dword reads to flash. */
840 dwptr
= (uint32_t *)buf
;
841 for (i
= 0; i
< bytes
>> 2; i
++, naddr
++)
842 dwptr
[i
] = cpu_to_le32(qla24xx_read_flash_dword(ha
,
843 flash_data_to_access_addr(FA_VPD_NVRAM_ADDR
| naddr
)));
849 qla25xx_write_nvram_data(scsi_qla_host_t
*ha
, uint8_t *buf
, uint32_t naddr
,
852 #define RMW_BUFFER_SIZE (64 * 1024)
855 dbuf
= vmalloc(RMW_BUFFER_SIZE
);
857 return QLA_MEMORY_ALLOC_FAILED
;
858 ha
->isp_ops
->read_optrom(ha
, dbuf
, FA_VPD_NVRAM_ADDR
<< 2,
860 memcpy(dbuf
+ (naddr
<< 2), buf
, bytes
);
861 ha
->isp_ops
->write_optrom(ha
, dbuf
, FA_VPD_NVRAM_ADDR
<< 2,
869 qla2x00_flip_colors(scsi_qla_host_t
*ha
, uint16_t *pflags
)
871 if (IS_QLA2322(ha
)) {
872 /* Flip all colors. */
873 if (ha
->beacon_color_state
== QLA_LED_ALL_ON
) {
875 ha
->beacon_color_state
= 0;
876 *pflags
= GPIO_LED_ALL_OFF
;
879 ha
->beacon_color_state
= QLA_LED_ALL_ON
;
880 *pflags
= GPIO_LED_RGA_ON
;
883 /* Flip green led only. */
884 if (ha
->beacon_color_state
== QLA_LED_GRN_ON
) {
886 ha
->beacon_color_state
= 0;
887 *pflags
= GPIO_LED_GREEN_OFF_AMBER_OFF
;
890 ha
->beacon_color_state
= QLA_LED_GRN_ON
;
891 *pflags
= GPIO_LED_GREEN_ON_AMBER_OFF
;
897 qla2x00_beacon_blink(struct scsi_qla_host
*ha
)
899 uint16_t gpio_enable
;
901 uint16_t led_color
= 0;
903 struct device_reg_2xxx __iomem
*reg
= &ha
->iobase
->isp
;
906 reg
= (struct device_reg_2xxx __iomem
*)ha
->pio_address
;
908 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
910 /* Save the Original GPIOE. */
911 if (ha
->pio_address
) {
912 gpio_enable
= RD_REG_WORD_PIO(®
->gpioe
);
913 gpio_data
= RD_REG_WORD_PIO(®
->gpiod
);
915 gpio_enable
= RD_REG_WORD(®
->gpioe
);
916 gpio_data
= RD_REG_WORD(®
->gpiod
);
919 /* Set the modified gpio_enable values */
920 gpio_enable
|= GPIO_LED_MASK
;
922 if (ha
->pio_address
) {
923 WRT_REG_WORD_PIO(®
->gpioe
, gpio_enable
);
925 WRT_REG_WORD(®
->gpioe
, gpio_enable
);
926 RD_REG_WORD(®
->gpioe
);
929 qla2x00_flip_colors(ha
, &led_color
);
931 /* Clear out any previously set LED color. */
932 gpio_data
&= ~GPIO_LED_MASK
;
934 /* Set the new input LED color to GPIOD. */
935 gpio_data
|= led_color
;
937 /* Set the modified gpio_data values */
938 if (ha
->pio_address
) {
939 WRT_REG_WORD_PIO(®
->gpiod
, gpio_data
);
941 WRT_REG_WORD(®
->gpiod
, gpio_data
);
942 RD_REG_WORD(®
->gpiod
);
945 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
949 qla2x00_beacon_on(struct scsi_qla_host
*ha
)
951 uint16_t gpio_enable
;
954 struct device_reg_2xxx __iomem
*reg
= &ha
->iobase
->isp
;
956 ha
->fw_options
[1] &= ~FO1_SET_EMPHASIS_SWING
;
957 ha
->fw_options
[1] |= FO1_DISABLE_GPIO6_7
;
959 if (qla2x00_set_fw_options(ha
, ha
->fw_options
) != QLA_SUCCESS
) {
960 qla_printk(KERN_WARNING
, ha
,
961 "Unable to update fw options (beacon on).\n");
962 return QLA_FUNCTION_FAILED
;
966 reg
= (struct device_reg_2xxx __iomem
*)ha
->pio_address
;
969 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
970 if (ha
->pio_address
) {
971 gpio_enable
= RD_REG_WORD_PIO(®
->gpioe
);
972 gpio_data
= RD_REG_WORD_PIO(®
->gpiod
);
974 gpio_enable
= RD_REG_WORD(®
->gpioe
);
975 gpio_data
= RD_REG_WORD(®
->gpiod
);
977 gpio_enable
|= GPIO_LED_MASK
;
979 /* Set the modified gpio_enable values. */
980 if (ha
->pio_address
) {
981 WRT_REG_WORD_PIO(®
->gpioe
, gpio_enable
);
983 WRT_REG_WORD(®
->gpioe
, gpio_enable
);
984 RD_REG_WORD(®
->gpioe
);
987 /* Clear out previously set LED colour. */
988 gpio_data
&= ~GPIO_LED_MASK
;
989 if (ha
->pio_address
) {
990 WRT_REG_WORD_PIO(®
->gpiod
, gpio_data
);
992 WRT_REG_WORD(®
->gpiod
, gpio_data
);
993 RD_REG_WORD(®
->gpiod
);
995 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
998 * Let the per HBA timer kick off the blinking process based on
999 * the following flags. No need to do anything else now.
1001 ha
->beacon_blink_led
= 1;
1002 ha
->beacon_color_state
= 0;
1008 qla2x00_beacon_off(struct scsi_qla_host
*ha
)
1010 int rval
= QLA_SUCCESS
;
1012 ha
->beacon_blink_led
= 0;
1014 /* Set the on flag so when it gets flipped it will be off. */
1016 ha
->beacon_color_state
= QLA_LED_ALL_ON
;
1018 ha
->beacon_color_state
= QLA_LED_GRN_ON
;
1020 ha
->isp_ops
->beacon_blink(ha
); /* This turns green LED off */
1022 ha
->fw_options
[1] &= ~FO1_SET_EMPHASIS_SWING
;
1023 ha
->fw_options
[1] &= ~FO1_DISABLE_GPIO6_7
;
1025 rval
= qla2x00_set_fw_options(ha
, ha
->fw_options
);
1026 if (rval
!= QLA_SUCCESS
)
1027 qla_printk(KERN_WARNING
, ha
,
1028 "Unable to update fw options (beacon off).\n");
1034 qla24xx_flip_colors(scsi_qla_host_t
*ha
, uint16_t *pflags
)
1036 /* Flip all colors. */
1037 if (ha
->beacon_color_state
== QLA_LED_ALL_ON
) {
1039 ha
->beacon_color_state
= 0;
1043 ha
->beacon_color_state
= QLA_LED_ALL_ON
;
1044 *pflags
= GPDX_LED_YELLOW_ON
| GPDX_LED_AMBER_ON
;
1049 qla24xx_beacon_blink(struct scsi_qla_host
*ha
)
1051 uint16_t led_color
= 0;
1053 unsigned long flags
;
1054 struct device_reg_24xx __iomem
*reg
= &ha
->iobase
->isp24
;
1056 /* Save the Original GPIOD. */
1057 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
1058 gpio_data
= RD_REG_DWORD(®
->gpiod
);
1060 /* Enable the gpio_data reg for update. */
1061 gpio_data
|= GPDX_LED_UPDATE_MASK
;
1063 WRT_REG_DWORD(®
->gpiod
, gpio_data
);
1064 gpio_data
= RD_REG_DWORD(®
->gpiod
);
1066 /* Set the color bits. */
1067 qla24xx_flip_colors(ha
, &led_color
);
1069 /* Clear out any previously set LED color. */
1070 gpio_data
&= ~GPDX_LED_COLOR_MASK
;
1072 /* Set the new input LED color to GPIOD. */
1073 gpio_data
|= led_color
;
1075 /* Set the modified gpio_data values. */
1076 WRT_REG_DWORD(®
->gpiod
, gpio_data
);
1077 gpio_data
= RD_REG_DWORD(®
->gpiod
);
1078 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
1082 qla24xx_beacon_on(struct scsi_qla_host
*ha
)
1085 unsigned long flags
;
1086 struct device_reg_24xx __iomem
*reg
= &ha
->iobase
->isp24
;
1088 if (ha
->beacon_blink_led
== 0) {
1089 /* Enable firmware for update */
1090 ha
->fw_options
[1] |= ADD_FO1_DISABLE_GPIO_LED_CTRL
;
1092 if (qla2x00_set_fw_options(ha
, ha
->fw_options
) != QLA_SUCCESS
)
1093 return QLA_FUNCTION_FAILED
;
1095 if (qla2x00_get_fw_options(ha
, ha
->fw_options
) !=
1097 qla_printk(KERN_WARNING
, ha
,
1098 "Unable to update fw options (beacon on).\n");
1099 return QLA_FUNCTION_FAILED
;
1102 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
1103 gpio_data
= RD_REG_DWORD(®
->gpiod
);
1105 /* Enable the gpio_data reg for update. */
1106 gpio_data
|= GPDX_LED_UPDATE_MASK
;
1107 WRT_REG_DWORD(®
->gpiod
, gpio_data
);
1108 RD_REG_DWORD(®
->gpiod
);
1110 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
1113 /* So all colors blink together. */
1114 ha
->beacon_color_state
= 0;
1116 /* Let the per HBA timer kick off the blinking process. */
1117 ha
->beacon_blink_led
= 1;
1123 qla24xx_beacon_off(struct scsi_qla_host
*ha
)
1126 unsigned long flags
;
1127 struct device_reg_24xx __iomem
*reg
= &ha
->iobase
->isp24
;
1129 ha
->beacon_blink_led
= 0;
1130 ha
->beacon_color_state
= QLA_LED_ALL_ON
;
1132 ha
->isp_ops
->beacon_blink(ha
); /* Will flip to all off. */
1134 /* Give control back to firmware. */
1135 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
1136 gpio_data
= RD_REG_DWORD(®
->gpiod
);
1138 /* Disable the gpio_data reg for update. */
1139 gpio_data
&= ~GPDX_LED_UPDATE_MASK
;
1140 WRT_REG_DWORD(®
->gpiod
, gpio_data
);
1141 RD_REG_DWORD(®
->gpiod
);
1142 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
1144 ha
->fw_options
[1] &= ~ADD_FO1_DISABLE_GPIO_LED_CTRL
;
1146 if (qla2x00_set_fw_options(ha
, ha
->fw_options
) != QLA_SUCCESS
) {
1147 qla_printk(KERN_WARNING
, ha
,
1148 "Unable to update fw options (beacon off).\n");
1149 return QLA_FUNCTION_FAILED
;
1152 if (qla2x00_get_fw_options(ha
, ha
->fw_options
) != QLA_SUCCESS
) {
1153 qla_printk(KERN_WARNING
, ha
,
1154 "Unable to get fw options (beacon off).\n");
1155 return QLA_FUNCTION_FAILED
;
1163 * Flash support routines
1167 * qla2x00_flash_enable() - Setup flash for reading and writing.
1171 qla2x00_flash_enable(scsi_qla_host_t
*ha
)
1174 struct device_reg_2xxx __iomem
*reg
= &ha
->iobase
->isp
;
1176 data
= RD_REG_WORD(®
->ctrl_status
);
1177 data
|= CSR_FLASH_ENABLE
;
1178 WRT_REG_WORD(®
->ctrl_status
, data
);
1179 RD_REG_WORD(®
->ctrl_status
); /* PCI Posting. */
1183 * qla2x00_flash_disable() - Disable flash and allow RISC to run.
1187 qla2x00_flash_disable(scsi_qla_host_t
*ha
)
1190 struct device_reg_2xxx __iomem
*reg
= &ha
->iobase
->isp
;
1192 data
= RD_REG_WORD(®
->ctrl_status
);
1193 data
&= ~(CSR_FLASH_ENABLE
);
1194 WRT_REG_WORD(®
->ctrl_status
, data
);
1195 RD_REG_WORD(®
->ctrl_status
); /* PCI Posting. */
1199 * qla2x00_read_flash_byte() - Reads a byte from flash
1201 * @addr: Address in flash to read
1203 * A word is read from the chip, but, only the lower byte is valid.
1205 * Returns the byte read from flash @addr.
1208 qla2x00_read_flash_byte(scsi_qla_host_t
*ha
, uint32_t addr
)
1211 uint16_t bank_select
;
1212 struct device_reg_2xxx __iomem
*reg
= &ha
->iobase
->isp
;
1214 bank_select
= RD_REG_WORD(®
->ctrl_status
);
1216 if (IS_QLA2322(ha
) || IS_QLA6322(ha
)) {
1217 /* Specify 64K address range: */
1218 /* clear out Module Select and Flash Address bits [19:16]. */
1219 bank_select
&= ~0xf8;
1220 bank_select
|= addr
>> 12 & 0xf0;
1221 bank_select
|= CSR_FLASH_64K_BANK
;
1222 WRT_REG_WORD(®
->ctrl_status
, bank_select
);
1223 RD_REG_WORD(®
->ctrl_status
); /* PCI Posting. */
1225 WRT_REG_WORD(®
->flash_address
, (uint16_t)addr
);
1226 data
= RD_REG_WORD(®
->flash_data
);
1228 return (uint8_t)data
;
1231 /* Setup bit 16 of flash address. */
1232 if ((addr
& BIT_16
) && ((bank_select
& CSR_FLASH_64K_BANK
) == 0)) {
1233 bank_select
|= CSR_FLASH_64K_BANK
;
1234 WRT_REG_WORD(®
->ctrl_status
, bank_select
);
1235 RD_REG_WORD(®
->ctrl_status
); /* PCI Posting. */
1236 } else if (((addr
& BIT_16
) == 0) &&
1237 (bank_select
& CSR_FLASH_64K_BANK
)) {
1238 bank_select
&= ~(CSR_FLASH_64K_BANK
);
1239 WRT_REG_WORD(®
->ctrl_status
, bank_select
);
1240 RD_REG_WORD(®
->ctrl_status
); /* PCI Posting. */
1243 /* Always perform IO mapped accesses to the FLASH registers. */
1244 if (ha
->pio_address
) {
1247 reg
= (struct device_reg_2xxx __iomem
*)ha
->pio_address
;
1248 WRT_REG_WORD_PIO(®
->flash_address
, (uint16_t)addr
);
1250 data
= RD_REG_WORD_PIO(®
->flash_data
);
1253 data2
= RD_REG_WORD_PIO(®
->flash_data
);
1254 } while (data
!= data2
);
1256 WRT_REG_WORD(®
->flash_address
, (uint16_t)addr
);
1257 data
= qla2x00_debounce_register(®
->flash_data
);
1260 return (uint8_t)data
;
1264 * qla2x00_write_flash_byte() - Write a byte to flash
1266 * @addr: Address in flash to write
1267 * @data: Data to write
1270 qla2x00_write_flash_byte(scsi_qla_host_t
*ha
, uint32_t addr
, uint8_t data
)
1272 uint16_t bank_select
;
1273 struct device_reg_2xxx __iomem
*reg
= &ha
->iobase
->isp
;
1275 bank_select
= RD_REG_WORD(®
->ctrl_status
);
1276 if (IS_QLA2322(ha
) || IS_QLA6322(ha
)) {
1277 /* Specify 64K address range: */
1278 /* clear out Module Select and Flash Address bits [19:16]. */
1279 bank_select
&= ~0xf8;
1280 bank_select
|= addr
>> 12 & 0xf0;
1281 bank_select
|= CSR_FLASH_64K_BANK
;
1282 WRT_REG_WORD(®
->ctrl_status
, bank_select
);
1283 RD_REG_WORD(®
->ctrl_status
); /* PCI Posting. */
1285 WRT_REG_WORD(®
->flash_address
, (uint16_t)addr
);
1286 RD_REG_WORD(®
->ctrl_status
); /* PCI Posting. */
1287 WRT_REG_WORD(®
->flash_data
, (uint16_t)data
);
1288 RD_REG_WORD(®
->ctrl_status
); /* PCI Posting. */
1293 /* Setup bit 16 of flash address. */
1294 if ((addr
& BIT_16
) && ((bank_select
& CSR_FLASH_64K_BANK
) == 0)) {
1295 bank_select
|= CSR_FLASH_64K_BANK
;
1296 WRT_REG_WORD(®
->ctrl_status
, bank_select
);
1297 RD_REG_WORD(®
->ctrl_status
); /* PCI Posting. */
1298 } else if (((addr
& BIT_16
) == 0) &&
1299 (bank_select
& CSR_FLASH_64K_BANK
)) {
1300 bank_select
&= ~(CSR_FLASH_64K_BANK
);
1301 WRT_REG_WORD(®
->ctrl_status
, bank_select
);
1302 RD_REG_WORD(®
->ctrl_status
); /* PCI Posting. */
1305 /* Always perform IO mapped accesses to the FLASH registers. */
1306 if (ha
->pio_address
) {
1307 reg
= (struct device_reg_2xxx __iomem
*)ha
->pio_address
;
1308 WRT_REG_WORD_PIO(®
->flash_address
, (uint16_t)addr
);
1309 WRT_REG_WORD_PIO(®
->flash_data
, (uint16_t)data
);
1311 WRT_REG_WORD(®
->flash_address
, (uint16_t)addr
);
1312 RD_REG_WORD(®
->ctrl_status
); /* PCI Posting. */
1313 WRT_REG_WORD(®
->flash_data
, (uint16_t)data
);
1314 RD_REG_WORD(®
->ctrl_status
); /* PCI Posting. */
1319 * qla2x00_poll_flash() - Polls flash for completion.
1321 * @addr: Address in flash to poll
1322 * @poll_data: Data to be polled
1323 * @man_id: Flash manufacturer ID
1324 * @flash_id: Flash ID
1326 * This function polls the device until bit 7 of what is read matches data
1327 * bit 7 or until data bit 5 becomes a 1. If that hapens, the flash ROM timed
1328 * out (a fatal error). The flash book recommeds reading bit 7 again after
1329 * reading bit 5 as a 1.
1331 * Returns 0 on success, else non-zero.
1334 qla2x00_poll_flash(scsi_qla_host_t
*ha
, uint32_t addr
, uint8_t poll_data
,
1335 uint8_t man_id
, uint8_t flash_id
)
1343 /* Wait for 30 seconds for command to finish. */
1345 for (cnt
= 3000000; cnt
; cnt
--) {
1346 flash_data
= qla2x00_read_flash_byte(ha
, addr
);
1347 if ((flash_data
& BIT_7
) == poll_data
) {
1352 if (man_id
!= 0x40 && man_id
!= 0xda) {
1353 if ((flash_data
& BIT_5
) && cnt
> 2)
1364 * qla2x00_program_flash_address() - Programs a flash address
1366 * @addr: Address in flash to program
1367 * @data: Data to be written in flash
1368 * @man_id: Flash manufacturer ID
1369 * @flash_id: Flash ID
1371 * Returns 0 on success, else non-zero.
1374 qla2x00_program_flash_address(scsi_qla_host_t
*ha
, uint32_t addr
, uint8_t data
,
1375 uint8_t man_id
, uint8_t flash_id
)
1377 /* Write Program Command Sequence. */
1378 if (IS_OEM_001(ha
)) {
1379 qla2x00_write_flash_byte(ha
, 0xaaa, 0xaa);
1380 qla2x00_write_flash_byte(ha
, 0x555, 0x55);
1381 qla2x00_write_flash_byte(ha
, 0xaaa, 0xa0);
1382 qla2x00_write_flash_byte(ha
, addr
, data
);
1384 if (man_id
== 0xda && flash_id
== 0xc1) {
1385 qla2x00_write_flash_byte(ha
, addr
, data
);
1389 qla2x00_write_flash_byte(ha
, 0x5555, 0xaa);
1390 qla2x00_write_flash_byte(ha
, 0x2aaa, 0x55);
1391 qla2x00_write_flash_byte(ha
, 0x5555, 0xa0);
1392 qla2x00_write_flash_byte(ha
, addr
, data
);
1398 /* Wait for write to complete. */
1399 return qla2x00_poll_flash(ha
, addr
, data
, man_id
, flash_id
);
1403 * qla2x00_erase_flash() - Erase the flash.
1405 * @man_id: Flash manufacturer ID
1406 * @flash_id: Flash ID
1408 * Returns 0 on success, else non-zero.
1411 qla2x00_erase_flash(scsi_qla_host_t
*ha
, uint8_t man_id
, uint8_t flash_id
)
1413 /* Individual Sector Erase Command Sequence */
1414 if (IS_OEM_001(ha
)) {
1415 qla2x00_write_flash_byte(ha
, 0xaaa, 0xaa);
1416 qla2x00_write_flash_byte(ha
, 0x555, 0x55);
1417 qla2x00_write_flash_byte(ha
, 0xaaa, 0x80);
1418 qla2x00_write_flash_byte(ha
, 0xaaa, 0xaa);
1419 qla2x00_write_flash_byte(ha
, 0x555, 0x55);
1420 qla2x00_write_flash_byte(ha
, 0xaaa, 0x10);
1422 qla2x00_write_flash_byte(ha
, 0x5555, 0xaa);
1423 qla2x00_write_flash_byte(ha
, 0x2aaa, 0x55);
1424 qla2x00_write_flash_byte(ha
, 0x5555, 0x80);
1425 qla2x00_write_flash_byte(ha
, 0x5555, 0xaa);
1426 qla2x00_write_flash_byte(ha
, 0x2aaa, 0x55);
1427 qla2x00_write_flash_byte(ha
, 0x5555, 0x10);
1432 /* Wait for erase to complete. */
1433 return qla2x00_poll_flash(ha
, 0x00, 0x80, man_id
, flash_id
);
1437 * qla2x00_erase_flash_sector() - Erase a flash sector.
1439 * @addr: Flash sector to erase
1440 * @sec_mask: Sector address mask
1441 * @man_id: Flash manufacturer ID
1442 * @flash_id: Flash ID
1444 * Returns 0 on success, else non-zero.
1447 qla2x00_erase_flash_sector(scsi_qla_host_t
*ha
, uint32_t addr
,
1448 uint32_t sec_mask
, uint8_t man_id
, uint8_t flash_id
)
1450 /* Individual Sector Erase Command Sequence */
1451 qla2x00_write_flash_byte(ha
, 0x5555, 0xaa);
1452 qla2x00_write_flash_byte(ha
, 0x2aaa, 0x55);
1453 qla2x00_write_flash_byte(ha
, 0x5555, 0x80);
1454 qla2x00_write_flash_byte(ha
, 0x5555, 0xaa);
1455 qla2x00_write_flash_byte(ha
, 0x2aaa, 0x55);
1456 if (man_id
== 0x1f && flash_id
== 0x13)
1457 qla2x00_write_flash_byte(ha
, addr
& sec_mask
, 0x10);
1459 qla2x00_write_flash_byte(ha
, addr
& sec_mask
, 0x30);
1463 /* Wait for erase to complete. */
1464 return qla2x00_poll_flash(ha
, addr
, 0x80, man_id
, flash_id
);
1468 * qla2x00_get_flash_manufacturer() - Read manufacturer ID from flash chip.
1469 * @man_id: Flash manufacturer ID
1470 * @flash_id: Flash ID
1473 qla2x00_get_flash_manufacturer(scsi_qla_host_t
*ha
, uint8_t *man_id
,
1476 qla2x00_write_flash_byte(ha
, 0x5555, 0xaa);
1477 qla2x00_write_flash_byte(ha
, 0x2aaa, 0x55);
1478 qla2x00_write_flash_byte(ha
, 0x5555, 0x90);
1479 *man_id
= qla2x00_read_flash_byte(ha
, 0x0000);
1480 *flash_id
= qla2x00_read_flash_byte(ha
, 0x0001);
1481 qla2x00_write_flash_byte(ha
, 0x5555, 0xaa);
1482 qla2x00_write_flash_byte(ha
, 0x2aaa, 0x55);
1483 qla2x00_write_flash_byte(ha
, 0x5555, 0xf0);
1487 qla2x00_read_flash_data(scsi_qla_host_t
*ha
, uint8_t *tmp_buf
, uint32_t saddr
,
1490 struct device_reg_2xxx __iomem
*reg
= &ha
->iobase
->isp
;
1491 uint32_t midpoint
, ilength
;
1494 midpoint
= length
/ 2;
1496 WRT_REG_WORD(®
->nvram
, 0);
1497 RD_REG_WORD(®
->nvram
);
1498 for (ilength
= 0; ilength
< length
; saddr
++, ilength
++, tmp_buf
++) {
1499 if (ilength
== midpoint
) {
1500 WRT_REG_WORD(®
->nvram
, NVR_SELECT
);
1501 RD_REG_WORD(®
->nvram
);
1503 data
= qla2x00_read_flash_byte(ha
, saddr
);
1512 qla2x00_suspend_hba(struct scsi_qla_host
*ha
)
1515 unsigned long flags
;
1516 struct device_reg_2xxx __iomem
*reg
= &ha
->iobase
->isp
;
1519 scsi_block_requests(ha
->host
);
1520 ha
->isp_ops
->disable_intrs(ha
);
1521 set_bit(MBX_UPDATE_FLASH_ACTIVE
, &ha
->mbx_cmd_flags
);
1524 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
1525 WRT_REG_WORD(®
->hccr
, HCCR_PAUSE_RISC
);
1526 RD_REG_WORD(®
->hccr
);
1527 if (IS_QLA2100(ha
) || IS_QLA2200(ha
) || IS_QLA2300(ha
)) {
1528 for (cnt
= 0; cnt
< 30000; cnt
++) {
1529 if ((RD_REG_WORD(®
->hccr
) & HCCR_RISC_PAUSE
) != 0)
1536 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
1540 qla2x00_resume_hba(struct scsi_qla_host
*ha
)
1543 clear_bit(MBX_UPDATE_FLASH_ACTIVE
, &ha
->mbx_cmd_flags
);
1544 set_bit(ISP_ABORT_NEEDED
, &ha
->dpc_flags
);
1545 qla2xxx_wake_dpc(ha
);
1546 qla2x00_wait_for_hba_online(ha
);
1547 scsi_unblock_requests(ha
->host
);
1551 qla2x00_read_optrom_data(struct scsi_qla_host
*ha
, uint8_t *buf
,
1552 uint32_t offset
, uint32_t length
)
1554 uint32_t addr
, midpoint
;
1556 struct device_reg_2xxx __iomem
*reg
= &ha
->iobase
->isp
;
1559 qla2x00_suspend_hba(ha
);
1562 midpoint
= ha
->optrom_size
/ 2;
1564 qla2x00_flash_enable(ha
);
1565 WRT_REG_WORD(®
->nvram
, 0);
1566 RD_REG_WORD(®
->nvram
); /* PCI Posting. */
1567 for (addr
= offset
, data
= buf
; addr
< length
; addr
++, data
++) {
1568 if (addr
== midpoint
) {
1569 WRT_REG_WORD(®
->nvram
, NVR_SELECT
);
1570 RD_REG_WORD(®
->nvram
); /* PCI Posting. */
1573 *data
= qla2x00_read_flash_byte(ha
, addr
);
1575 qla2x00_flash_disable(ha
);
1578 qla2x00_resume_hba(ha
);
1584 qla2x00_write_optrom_data(struct scsi_qla_host
*ha
, uint8_t *buf
,
1585 uint32_t offset
, uint32_t length
)
1589 uint8_t man_id
, flash_id
, sec_number
, data
;
1591 uint32_t addr
, liter
, sec_mask
, rest_addr
;
1592 struct device_reg_2xxx __iomem
*reg
= &ha
->iobase
->isp
;
1595 qla2x00_suspend_hba(ha
);
1600 /* Reset ISP chip. */
1601 WRT_REG_WORD(®
->ctrl_status
, CSR_ISP_SOFT_RESET
);
1602 pci_read_config_word(ha
->pdev
, PCI_COMMAND
, &wd
);
1604 /* Go with write. */
1605 qla2x00_flash_enable(ha
);
1606 do { /* Loop once to provide quick error exit */
1607 /* Structure of flash memory based on manufacturer */
1608 if (IS_OEM_001(ha
)) {
1609 /* OEM variant with special flash part. */
1610 man_id
= flash_id
= 0;
1615 qla2x00_get_flash_manufacturer(ha
, &man_id
, &flash_id
);
1617 case 0x20: /* ST flash. */
1618 if (flash_id
== 0xd2 || flash_id
== 0xe3) {
1620 * ST m29w008at part - 64kb sector size with
1621 * 32kb,8kb,8kb,16kb sectors at memory address
1629 * ST m29w010b part - 16kb sector size
1630 * Default to 16kb sectors
1635 case 0x40: /* Mostel flash. */
1636 /* Mostel v29c51001 part - 512 byte sector size. */
1640 case 0xbf: /* SST flash. */
1641 /* SST39sf10 part - 4kb sector size. */
1645 case 0xda: /* Winbond flash. */
1646 /* Winbond W29EE011 part - 256 byte sector size. */
1650 case 0xc2: /* Macronix flash. */
1651 /* 64k sector size. */
1652 if (flash_id
== 0x38 || flash_id
== 0x4f) {
1657 /* Fall through... */
1659 case 0x1f: /* Atmel flash. */
1660 /* 512k sector size. */
1661 if (flash_id
== 0x13) {
1662 rest_addr
= 0x7fffffff;
1663 sec_mask
= 0x80000000;
1666 /* Fall through... */
1668 case 0x01: /* AMD flash. */
1669 if (flash_id
== 0x38 || flash_id
== 0x40 ||
1671 /* Am29LV081 part - 64kb sector size. */
1672 /* Am29LV002BT part - 64kb sector size. */
1676 } else if (flash_id
== 0x3e) {
1678 * Am29LV008b part - 64kb sector size with
1679 * 32kb,8kb,8kb,16kb sector at memory address
1685 } else if (flash_id
== 0x20 || flash_id
== 0x6e) {
1687 * Am29LV010 part or AM29f010 - 16kb sector
1693 } else if (flash_id
== 0x6d) {
1694 /* Am29LV001 part - 8kb sector size. */
1700 /* Default to 16 kb sector size. */
1707 if (IS_QLA2322(ha
) || IS_QLA6322(ha
)) {
1708 if (qla2x00_erase_flash(ha
, man_id
, flash_id
)) {
1709 rval
= QLA_FUNCTION_FAILED
;
1714 for (addr
= offset
, liter
= 0; liter
< length
; liter
++,
1717 /* Are we at the beginning of a sector? */
1718 if ((addr
& rest_addr
) == 0) {
1719 if (IS_QLA2322(ha
) || IS_QLA6322(ha
)) {
1720 if (addr
>= 0x10000UL
) {
1721 if (((addr
>> 12) & 0xf0) &&
1723 flash_id
== 0x3e) ||
1725 flash_id
== 0xd2))) {
1727 if (sec_number
== 1) {
1748 } else if (addr
== ha
->optrom_size
/ 2) {
1749 WRT_REG_WORD(®
->nvram
, NVR_SELECT
);
1750 RD_REG_WORD(®
->nvram
);
1753 if (flash_id
== 0xda && man_id
== 0xc1) {
1754 qla2x00_write_flash_byte(ha
, 0x5555,
1756 qla2x00_write_flash_byte(ha
, 0x2aaa,
1758 qla2x00_write_flash_byte(ha
, 0x5555,
1760 } else if (!IS_QLA2322(ha
) && !IS_QLA6322(ha
)) {
1762 if (qla2x00_erase_flash_sector(ha
,
1763 addr
, sec_mask
, man_id
,
1765 rval
= QLA_FUNCTION_FAILED
;
1768 if (man_id
== 0x01 && flash_id
== 0x6d)
1773 if (man_id
== 0x01 && flash_id
== 0x6d) {
1774 if (sec_number
== 1 &&
1775 addr
== (rest_addr
- 1)) {
1778 } else if (sec_number
== 3 && (addr
& 0x7ffe)) {
1784 if (qla2x00_program_flash_address(ha
, addr
, data
,
1785 man_id
, flash_id
)) {
1786 rval
= QLA_FUNCTION_FAILED
;
1792 qla2x00_flash_disable(ha
);
1795 qla2x00_resume_hba(ha
);
1801 qla24xx_read_optrom_data(struct scsi_qla_host
*ha
, uint8_t *buf
,
1802 uint32_t offset
, uint32_t length
)
1805 scsi_block_requests(ha
->host
);
1806 set_bit(MBX_UPDATE_FLASH_ACTIVE
, &ha
->mbx_cmd_flags
);
1809 qla24xx_read_flash_data(ha
, (uint32_t *)buf
, offset
>> 2, length
>> 2);
1812 clear_bit(MBX_UPDATE_FLASH_ACTIVE
, &ha
->mbx_cmd_flags
);
1813 scsi_unblock_requests(ha
->host
);
1819 qla24xx_write_optrom_data(struct scsi_qla_host
*ha
, uint8_t *buf
,
1820 uint32_t offset
, uint32_t length
)
1825 scsi_block_requests(ha
->host
);
1826 set_bit(MBX_UPDATE_FLASH_ACTIVE
, &ha
->mbx_cmd_flags
);
1828 /* Go with write. */
1829 rval
= qla24xx_write_flash_data(ha
, (uint32_t *)buf
, offset
>> 2,
1832 /* Resume HBA -- RISC reset needed. */
1833 clear_bit(MBX_UPDATE_FLASH_ACTIVE
, &ha
->mbx_cmd_flags
);
1834 set_bit(ISP_ABORT_NEEDED
, &ha
->dpc_flags
);
1835 qla2xxx_wake_dpc(ha
);
1836 qla2x00_wait_for_hba_online(ha
);
1837 scsi_unblock_requests(ha
->host
);
1843 qla25xx_read_optrom_data(struct scsi_qla_host
*ha
, uint8_t *buf
,
1844 uint32_t offset
, uint32_t length
)
1847 dma_addr_t optrom_dma
;
1850 uint32_t faddr
, left
, burst
;
1854 if (length
< OPTROM_BURST_SIZE
)
1857 optrom
= dma_alloc_coherent(&ha
->pdev
->dev
, OPTROM_BURST_SIZE
,
1858 &optrom_dma
, GFP_KERNEL
);
1860 qla_printk(KERN_DEBUG
, ha
,
1861 "Unable to allocate memory for optrom burst read "
1862 "(%x KB).\n", OPTROM_BURST_SIZE
/ 1024);
1868 faddr
= offset
>> 2;
1870 burst
= OPTROM_BURST_DWORDS
;
1875 rval
= qla2x00_dump_ram(ha
, optrom_dma
,
1876 flash_data_to_access_addr(faddr
), burst
);
1878 qla_printk(KERN_WARNING
, ha
,
1879 "Unable to burst-read optrom segment "
1880 "(%x/%x/%llx).\n", rval
,
1881 flash_data_to_access_addr(faddr
),
1882 (unsigned long long)optrom_dma
);
1883 qla_printk(KERN_WARNING
, ha
,
1884 "Reverting to slow-read.\n");
1886 dma_free_coherent(&ha
->pdev
->dev
, OPTROM_BURST_SIZE
,
1887 optrom
, optrom_dma
);
1891 memcpy(pbuf
, optrom
, burst
* 4);
1898 dma_free_coherent(&ha
->pdev
->dev
, OPTROM_BURST_SIZE
, optrom
,
1904 return qla24xx_read_optrom_data(ha
, buf
, offset
, length
);
1908 * qla2x00_get_fcode_version() - Determine an FCODE image's version.
1910 * @pcids: Pointer to the FCODE PCI data structure
1912 * The process of retrieving the FCODE version information is at best
1913 * described as interesting.
1915 * Within the first 100h bytes of the image an ASCII string is present
1916 * which contains several pieces of information including the FCODE
1917 * version. Unfortunately it seems the only reliable way to retrieve
1918 * the version is by scanning for another sentinel within the string,
1919 * the FCODE build date:
1921 * ... 2.00.02 10/17/02 ...
1923 * Returns QLA_SUCCESS on successful retrieval of version.
1926 qla2x00_get_fcode_version(scsi_qla_host_t
*ha
, uint32_t pcids
)
1928 int ret
= QLA_FUNCTION_FAILED
;
1929 uint32_t istart
, iend
, iter
, vend
;
1930 uint8_t do_next
, rbyte
, *vbyte
;
1932 memset(ha
->fcode_revision
, 0, sizeof(ha
->fcode_revision
));
1934 /* Skip the PCI data structure. */
1936 ((qla2x00_read_flash_byte(ha
, pcids
+ 0x0B) << 8) |
1937 qla2x00_read_flash_byte(ha
, pcids
+ 0x0A));
1938 iend
= istart
+ 0x100;
1940 /* Scan for the sentinel date string...eeewww. */
1943 while ((iter
< iend
) && !do_next
) {
1945 if (qla2x00_read_flash_byte(ha
, iter
) == '/') {
1946 if (qla2x00_read_flash_byte(ha
, iter
+ 2) ==
1949 else if (qla2x00_read_flash_byte(ha
,
1957 /* Backtrack to previous ' ' (space). */
1959 while ((iter
> istart
) && !do_next
) {
1961 if (qla2x00_read_flash_byte(ha
, iter
) == ' ')
1968 * Mark end of version tag, and find previous ' ' (space) or
1969 * string length (recent FCODE images -- major hack ahead!!!).
1973 while ((iter
> istart
) && !do_next
) {
1975 rbyte
= qla2x00_read_flash_byte(ha
, iter
);
1976 if (rbyte
== ' ' || rbyte
== 0xd || rbyte
== 0x10)
1982 /* Mark beginning of version tag, and copy data. */
1984 if ((vend
- iter
) &&
1985 ((vend
- iter
) < sizeof(ha
->fcode_revision
))) {
1986 vbyte
= ha
->fcode_revision
;
1987 while (iter
<= vend
) {
1988 *vbyte
++ = qla2x00_read_flash_byte(ha
, iter
);
1995 if (ret
!= QLA_SUCCESS
)
1996 memset(ha
->fcode_revision
, 0, sizeof(ha
->fcode_revision
));
2000 qla2x00_get_flash_version(scsi_qla_host_t
*ha
, void *mbuf
)
2002 int ret
= QLA_SUCCESS
;
2003 uint8_t code_type
, last_image
;
2004 uint32_t pcihdr
, pcids
;
2008 if (!ha
->pio_address
|| !mbuf
)
2009 return QLA_FUNCTION_FAILED
;
2011 memset(ha
->bios_revision
, 0, sizeof(ha
->bios_revision
));
2012 memset(ha
->efi_revision
, 0, sizeof(ha
->efi_revision
));
2013 memset(ha
->fcode_revision
, 0, sizeof(ha
->fcode_revision
));
2014 memset(ha
->fw_revision
, 0, sizeof(ha
->fw_revision
));
2016 qla2x00_flash_enable(ha
);
2018 /* Begin with first PCI expansion ROM header. */
2022 /* Verify PCI expansion ROM header. */
2023 if (qla2x00_read_flash_byte(ha
, pcihdr
) != 0x55 ||
2024 qla2x00_read_flash_byte(ha
, pcihdr
+ 0x01) != 0xaa) {
2026 DEBUG2(printk("scsi(%ld): No matching ROM "
2027 "signature.\n", ha
->host_no
));
2028 ret
= QLA_FUNCTION_FAILED
;
2032 /* Locate PCI data structure. */
2034 ((qla2x00_read_flash_byte(ha
, pcihdr
+ 0x19) << 8) |
2035 qla2x00_read_flash_byte(ha
, pcihdr
+ 0x18));
2037 /* Validate signature of PCI data structure. */
2038 if (qla2x00_read_flash_byte(ha
, pcids
) != 'P' ||
2039 qla2x00_read_flash_byte(ha
, pcids
+ 0x1) != 'C' ||
2040 qla2x00_read_flash_byte(ha
, pcids
+ 0x2) != 'I' ||
2041 qla2x00_read_flash_byte(ha
, pcids
+ 0x3) != 'R') {
2042 /* Incorrect header. */
2043 DEBUG2(printk("%s(): PCI data struct not found "
2044 "pcir_adr=%x.\n", __func__
, pcids
));
2045 ret
= QLA_FUNCTION_FAILED
;
2050 code_type
= qla2x00_read_flash_byte(ha
, pcids
+ 0x14);
2051 switch (code_type
) {
2052 case ROM_CODE_TYPE_BIOS
:
2053 /* Intel x86, PC-AT compatible. */
2054 ha
->bios_revision
[0] =
2055 qla2x00_read_flash_byte(ha
, pcids
+ 0x12);
2056 ha
->bios_revision
[1] =
2057 qla2x00_read_flash_byte(ha
, pcids
+ 0x13);
2058 DEBUG3(printk("%s(): read BIOS %d.%d.\n", __func__
,
2059 ha
->bios_revision
[1], ha
->bios_revision
[0]));
2061 case ROM_CODE_TYPE_FCODE
:
2062 /* Open Firmware standard for PCI (FCode). */
2064 qla2x00_get_fcode_version(ha
, pcids
);
2066 case ROM_CODE_TYPE_EFI
:
2067 /* Extensible Firmware Interface (EFI). */
2068 ha
->efi_revision
[0] =
2069 qla2x00_read_flash_byte(ha
, pcids
+ 0x12);
2070 ha
->efi_revision
[1] =
2071 qla2x00_read_flash_byte(ha
, pcids
+ 0x13);
2072 DEBUG3(printk("%s(): read EFI %d.%d.\n", __func__
,
2073 ha
->efi_revision
[1], ha
->efi_revision
[0]));
2076 DEBUG2(printk("%s(): Unrecognized code type %x at "
2077 "pcids %x.\n", __func__
, code_type
, pcids
));
2081 last_image
= qla2x00_read_flash_byte(ha
, pcids
+ 0x15) & BIT_7
;
2083 /* Locate next PCI expansion ROM. */
2084 pcihdr
+= ((qla2x00_read_flash_byte(ha
, pcids
+ 0x11) << 8) |
2085 qla2x00_read_flash_byte(ha
, pcids
+ 0x10)) * 512;
2086 } while (!last_image
);
2088 if (IS_QLA2322(ha
)) {
2089 /* Read firmware image information. */
2090 memset(ha
->fw_revision
, 0, sizeof(ha
->fw_revision
));
2092 memset(dbyte
, 0, 8);
2093 dcode
= (uint16_t *)dbyte
;
2095 qla2x00_read_flash_data(ha
, dbyte
, FA_RISC_CODE_ADDR
* 4 + 10,
2097 DEBUG3(printk("%s(%ld): dumping fw ver from flash:\n",
2098 __func__
, ha
->host_no
));
2099 DEBUG3(qla2x00_dump_buffer((uint8_t *)dbyte
, 8));
2101 if ((dcode
[0] == 0xffff && dcode
[1] == 0xffff &&
2102 dcode
[2] == 0xffff && dcode
[3] == 0xffff) ||
2103 (dcode
[0] == 0 && dcode
[1] == 0 && dcode
[2] == 0 &&
2105 DEBUG2(printk("%s(): Unrecognized fw revision at "
2106 "%x.\n", __func__
, FA_RISC_CODE_ADDR
* 4));
2108 /* values are in big endian */
2109 ha
->fw_revision
[0] = dbyte
[0] << 16 | dbyte
[1];
2110 ha
->fw_revision
[1] = dbyte
[2] << 16 | dbyte
[3];
2111 ha
->fw_revision
[2] = dbyte
[4] << 16 | dbyte
[5];
2115 qla2x00_flash_disable(ha
);
2121 qla24xx_get_flash_version(scsi_qla_host_t
*ha
, void *mbuf
)
2123 int ret
= QLA_SUCCESS
;
2124 uint32_t pcihdr
, pcids
;
2127 uint8_t code_type
, last_image
;
2131 return QLA_FUNCTION_FAILED
;
2133 memset(ha
->bios_revision
, 0, sizeof(ha
->bios_revision
));
2134 memset(ha
->efi_revision
, 0, sizeof(ha
->efi_revision
));
2135 memset(ha
->fcode_revision
, 0, sizeof(ha
->fcode_revision
));
2136 memset(ha
->fw_revision
, 0, sizeof(ha
->fw_revision
));
2140 /* Begin with first PCI expansion ROM header. */
2144 /* Verify PCI expansion ROM header. */
2145 qla24xx_read_flash_data(ha
, dcode
, pcihdr
>> 2, 0x20);
2146 bcode
= mbuf
+ (pcihdr
% 4);
2147 if (bcode
[0x0] != 0x55 || bcode
[0x1] != 0xaa) {
2149 DEBUG2(printk("scsi(%ld): No matching ROM "
2150 "signature.\n", ha
->host_no
));
2151 ret
= QLA_FUNCTION_FAILED
;
2155 /* Locate PCI data structure. */
2156 pcids
= pcihdr
+ ((bcode
[0x19] << 8) | bcode
[0x18]);
2158 qla24xx_read_flash_data(ha
, dcode
, pcids
>> 2, 0x20);
2159 bcode
= mbuf
+ (pcihdr
% 4);
2161 /* Validate signature of PCI data structure. */
2162 if (bcode
[0x0] != 'P' || bcode
[0x1] != 'C' ||
2163 bcode
[0x2] != 'I' || bcode
[0x3] != 'R') {
2164 /* Incorrect header. */
2165 DEBUG2(printk("%s(): PCI data struct not found "
2166 "pcir_adr=%x.\n", __func__
, pcids
));
2167 ret
= QLA_FUNCTION_FAILED
;
2172 code_type
= bcode
[0x14];
2173 switch (code_type
) {
2174 case ROM_CODE_TYPE_BIOS
:
2175 /* Intel x86, PC-AT compatible. */
2176 ha
->bios_revision
[0] = bcode
[0x12];
2177 ha
->bios_revision
[1] = bcode
[0x13];
2178 DEBUG3(printk("%s(): read BIOS %d.%d.\n", __func__
,
2179 ha
->bios_revision
[1], ha
->bios_revision
[0]));
2181 case ROM_CODE_TYPE_FCODE
:
2182 /* Open Firmware standard for PCI (FCode). */
2183 ha
->fcode_revision
[0] = bcode
[0x12];
2184 ha
->fcode_revision
[1] = bcode
[0x13];
2185 DEBUG3(printk("%s(): read FCODE %d.%d.\n", __func__
,
2186 ha
->fcode_revision
[1], ha
->fcode_revision
[0]));
2188 case ROM_CODE_TYPE_EFI
:
2189 /* Extensible Firmware Interface (EFI). */
2190 ha
->efi_revision
[0] = bcode
[0x12];
2191 ha
->efi_revision
[1] = bcode
[0x13];
2192 DEBUG3(printk("%s(): read EFI %d.%d.\n", __func__
,
2193 ha
->efi_revision
[1], ha
->efi_revision
[0]));
2196 DEBUG2(printk("%s(): Unrecognized code type %x at "
2197 "pcids %x.\n", __func__
, code_type
, pcids
));
2201 last_image
= bcode
[0x15] & BIT_7
;
2203 /* Locate next PCI expansion ROM. */
2204 pcihdr
+= ((bcode
[0x11] << 8) | bcode
[0x10]) * 512;
2205 } while (!last_image
);
2207 /* Read firmware image information. */
2208 memset(ha
->fw_revision
, 0, sizeof(ha
->fw_revision
));
2211 qla24xx_read_flash_data(ha
, dcode
, FA_RISC_CODE_ADDR
+ 4, 4);
2212 for (i
= 0; i
< 4; i
++)
2213 dcode
[i
] = be32_to_cpu(dcode
[i
]);
2215 if ((dcode
[0] == 0xffffffff && dcode
[1] == 0xffffffff &&
2216 dcode
[2] == 0xffffffff && dcode
[3] == 0xffffffff) ||
2217 (dcode
[0] == 0 && dcode
[1] == 0 && dcode
[2] == 0 &&
2219 DEBUG2(printk("%s(): Unrecognized fw version at %x.\n",
2220 __func__
, FA_RISC_CODE_ADDR
));
2222 ha
->fw_revision
[0] = dcode
[0];
2223 ha
->fw_revision
[1] = dcode
[1];
2224 ha
->fw_revision
[2] = dcode
[2];
2225 ha
->fw_revision
[3] = dcode
[3];