[SERIAL] Ensure 8250_pci quirks are not marked __devinit
[linux-2.6/verdex.git] / drivers / scsi / qla2xxx / qla_sup.c
blob8b0121dceb01c6651a4e3b6e078d780b394b8bc6
1 /*
2 * QLogic Fibre Channel HBA Driver
3 * Copyright (c) 2003-2005 QLogic Corporation
5 * See LICENSE.qla2xxx for copyright and licensing details.
6 */
7 #include "qla_def.h"
9 #include <linux/delay.h>
10 #include <asm/uaccess.h>
12 static uint16_t qla2x00_nvram_request(scsi_qla_host_t *, uint32_t);
13 static void qla2x00_nv_deselect(scsi_qla_host_t *);
14 static void qla2x00_nv_write(scsi_qla_host_t *, uint16_t);
17 * NVRAM support routines
20 /**
21 * qla2x00_lock_nvram_access() -
22 * @ha: HA context
24 void
25 qla2x00_lock_nvram_access(scsi_qla_host_t *ha)
27 uint16_t data;
28 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
30 if (!IS_QLA2100(ha) && !IS_QLA2200(ha) && !IS_QLA2300(ha)) {
31 data = RD_REG_WORD(&reg->nvram);
32 while (data & NVR_BUSY) {
33 udelay(100);
34 data = RD_REG_WORD(&reg->nvram);
37 /* Lock resource */
38 WRT_REG_WORD(&reg->u.isp2300.host_semaphore, 0x1);
39 RD_REG_WORD(&reg->u.isp2300.host_semaphore);
40 udelay(5);
41 data = RD_REG_WORD(&reg->u.isp2300.host_semaphore);
42 while ((data & BIT_0) == 0) {
43 /* Lock failed */
44 udelay(100);
45 WRT_REG_WORD(&reg->u.isp2300.host_semaphore, 0x1);
46 RD_REG_WORD(&reg->u.isp2300.host_semaphore);
47 udelay(5);
48 data = RD_REG_WORD(&reg->u.isp2300.host_semaphore);
53 /**
54 * qla2x00_unlock_nvram_access() -
55 * @ha: HA context
57 void
58 qla2x00_unlock_nvram_access(scsi_qla_host_t *ha)
60 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
62 if (!IS_QLA2100(ha) && !IS_QLA2200(ha) && !IS_QLA2300(ha)) {
63 WRT_REG_WORD(&reg->u.isp2300.host_semaphore, 0);
64 RD_REG_WORD(&reg->u.isp2300.host_semaphore);
68 /**
69 * qla2x00_get_nvram_word() - Calculates word position in NVRAM and calls the
70 * request routine to get the word from NVRAM.
71 * @ha: HA context
72 * @addr: Address in NVRAM to read
74 * Returns the word read from nvram @addr.
76 uint16_t
77 qla2x00_get_nvram_word(scsi_qla_host_t *ha, uint32_t addr)
79 uint16_t data;
80 uint32_t nv_cmd;
82 nv_cmd = addr << 16;
83 nv_cmd |= NV_READ_OP;
84 data = qla2x00_nvram_request(ha, nv_cmd);
86 return (data);
89 /**
90 * qla2x00_write_nvram_word() - Write NVRAM data.
91 * @ha: HA context
92 * @addr: Address in NVRAM to write
93 * @data: word to program
95 void
96 qla2x00_write_nvram_word(scsi_qla_host_t *ha, uint32_t addr, uint16_t data)
98 int count;
99 uint16_t word;
100 uint32_t nv_cmd;
101 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
103 qla2x00_nv_write(ha, NVR_DATA_OUT);
104 qla2x00_nv_write(ha, 0);
105 qla2x00_nv_write(ha, 0);
107 for (word = 0; word < 8; word++)
108 qla2x00_nv_write(ha, NVR_DATA_OUT);
110 qla2x00_nv_deselect(ha);
112 /* Write data */
113 nv_cmd = (addr << 16) | NV_WRITE_OP;
114 nv_cmd |= data;
115 nv_cmd <<= 5;
116 for (count = 0; count < 27; count++) {
117 if (nv_cmd & BIT_31)
118 qla2x00_nv_write(ha, NVR_DATA_OUT);
119 else
120 qla2x00_nv_write(ha, 0);
122 nv_cmd <<= 1;
125 qla2x00_nv_deselect(ha);
127 /* Wait for NVRAM to become ready */
128 WRT_REG_WORD(&reg->nvram, NVR_SELECT);
129 RD_REG_WORD(&reg->nvram); /* PCI Posting. */
130 do {
131 NVRAM_DELAY();
132 word = RD_REG_WORD(&reg->nvram);
133 } while ((word & NVR_DATA_IN) == 0);
135 qla2x00_nv_deselect(ha);
137 /* Disable writes */
138 qla2x00_nv_write(ha, NVR_DATA_OUT);
139 for (count = 0; count < 10; count++)
140 qla2x00_nv_write(ha, 0);
142 qla2x00_nv_deselect(ha);
145 static int
146 qla2x00_write_nvram_word_tmo(scsi_qla_host_t *ha, uint32_t addr, uint16_t data,
147 uint32_t tmo)
149 int ret, count;
150 uint16_t word;
151 uint32_t nv_cmd;
152 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
154 ret = QLA_SUCCESS;
156 qla2x00_nv_write(ha, NVR_DATA_OUT);
157 qla2x00_nv_write(ha, 0);
158 qla2x00_nv_write(ha, 0);
160 for (word = 0; word < 8; word++)
161 qla2x00_nv_write(ha, NVR_DATA_OUT);
163 qla2x00_nv_deselect(ha);
165 /* Write data */
166 nv_cmd = (addr << 16) | NV_WRITE_OP;
167 nv_cmd |= data;
168 nv_cmd <<= 5;
169 for (count = 0; count < 27; count++) {
170 if (nv_cmd & BIT_31)
171 qla2x00_nv_write(ha, NVR_DATA_OUT);
172 else
173 qla2x00_nv_write(ha, 0);
175 nv_cmd <<= 1;
178 qla2x00_nv_deselect(ha);
180 /* Wait for NVRAM to become ready */
181 WRT_REG_WORD(&reg->nvram, NVR_SELECT);
182 RD_REG_WORD(&reg->nvram); /* PCI Posting. */
183 do {
184 NVRAM_DELAY();
185 word = RD_REG_WORD(&reg->nvram);
186 if (!--tmo) {
187 ret = QLA_FUNCTION_FAILED;
188 break;
190 } while ((word & NVR_DATA_IN) == 0);
192 qla2x00_nv_deselect(ha);
194 /* Disable writes */
195 qla2x00_nv_write(ha, NVR_DATA_OUT);
196 for (count = 0; count < 10; count++)
197 qla2x00_nv_write(ha, 0);
199 qla2x00_nv_deselect(ha);
201 return ret;
205 * qla2x00_nvram_request() - Sends read command to NVRAM and gets data from
206 * NVRAM.
207 * @ha: HA context
208 * @nv_cmd: NVRAM command
210 * Bit definitions for NVRAM command:
212 * Bit 26 = start bit
213 * Bit 25, 24 = opcode
214 * Bit 23-16 = address
215 * Bit 15-0 = write data
217 * Returns the word read from nvram @addr.
219 static uint16_t
220 qla2x00_nvram_request(scsi_qla_host_t *ha, uint32_t nv_cmd)
222 uint8_t cnt;
223 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
224 uint16_t data = 0;
225 uint16_t reg_data;
227 /* Send command to NVRAM. */
228 nv_cmd <<= 5;
229 for (cnt = 0; cnt < 11; cnt++) {
230 if (nv_cmd & BIT_31)
231 qla2x00_nv_write(ha, NVR_DATA_OUT);
232 else
233 qla2x00_nv_write(ha, 0);
234 nv_cmd <<= 1;
237 /* Read data from NVRAM. */
238 for (cnt = 0; cnt < 16; cnt++) {
239 WRT_REG_WORD(&reg->nvram, NVR_SELECT | NVR_CLOCK);
240 RD_REG_WORD(&reg->nvram); /* PCI Posting. */
241 NVRAM_DELAY();
242 data <<= 1;
243 reg_data = RD_REG_WORD(&reg->nvram);
244 if (reg_data & NVR_DATA_IN)
245 data |= BIT_0;
246 WRT_REG_WORD(&reg->nvram, NVR_SELECT);
247 RD_REG_WORD(&reg->nvram); /* PCI Posting. */
248 NVRAM_DELAY();
251 /* Deselect chip. */
252 WRT_REG_WORD(&reg->nvram, NVR_DESELECT);
253 RD_REG_WORD(&reg->nvram); /* PCI Posting. */
254 NVRAM_DELAY();
256 return (data);
260 * qla2x00_nv_write() - Clean NVRAM operations.
261 * @ha: HA context
263 static void
264 qla2x00_nv_deselect(scsi_qla_host_t *ha)
266 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
268 WRT_REG_WORD(&reg->nvram, NVR_DESELECT);
269 RD_REG_WORD(&reg->nvram); /* PCI Posting. */
270 NVRAM_DELAY();
274 * qla2x00_nv_write() - Prepare for NVRAM read/write operation.
275 * @ha: HA context
276 * @data: Serial interface selector
278 static void
279 qla2x00_nv_write(scsi_qla_host_t *ha, uint16_t data)
281 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
283 WRT_REG_WORD(&reg->nvram, data | NVR_SELECT | NVR_WRT_ENABLE);
284 RD_REG_WORD(&reg->nvram); /* PCI Posting. */
285 NVRAM_DELAY();
286 WRT_REG_WORD(&reg->nvram, data | NVR_SELECT| NVR_CLOCK |
287 NVR_WRT_ENABLE);
288 RD_REG_WORD(&reg->nvram); /* PCI Posting. */
289 NVRAM_DELAY();
290 WRT_REG_WORD(&reg->nvram, data | NVR_SELECT | NVR_WRT_ENABLE);
291 RD_REG_WORD(&reg->nvram); /* PCI Posting. */
292 NVRAM_DELAY();
296 * qla2x00_clear_nvram_protection() -
297 * @ha: HA context
299 static int
300 qla2x00_clear_nvram_protection(scsi_qla_host_t *ha)
302 int ret, stat;
303 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
304 uint32_t word;
305 uint16_t wprot, wprot_old;
307 /* Clear NVRAM write protection. */
308 ret = QLA_FUNCTION_FAILED;
309 wprot_old = cpu_to_le16(qla2x00_get_nvram_word(ha, 0));
310 stat = qla2x00_write_nvram_word_tmo(ha, 0,
311 __constant_cpu_to_le16(0x1234), 100000);
312 wprot = cpu_to_le16(qla2x00_get_nvram_word(ha, 0));
313 if (stat != QLA_SUCCESS || wprot != __constant_cpu_to_le16(0x1234)) {
314 /* Write enable. */
315 qla2x00_nv_write(ha, NVR_DATA_OUT);
316 qla2x00_nv_write(ha, 0);
317 qla2x00_nv_write(ha, 0);
318 for (word = 0; word < 8; word++)
319 qla2x00_nv_write(ha, NVR_DATA_OUT);
321 qla2x00_nv_deselect(ha);
323 /* Enable protection register. */
324 qla2x00_nv_write(ha, NVR_PR_ENABLE | NVR_DATA_OUT);
325 qla2x00_nv_write(ha, NVR_PR_ENABLE);
326 qla2x00_nv_write(ha, NVR_PR_ENABLE);
327 for (word = 0; word < 8; word++)
328 qla2x00_nv_write(ha, NVR_DATA_OUT | NVR_PR_ENABLE);
330 qla2x00_nv_deselect(ha);
332 /* Clear protection register (ffff is cleared). */
333 qla2x00_nv_write(ha, NVR_PR_ENABLE | NVR_DATA_OUT);
334 qla2x00_nv_write(ha, NVR_PR_ENABLE | NVR_DATA_OUT);
335 qla2x00_nv_write(ha, NVR_PR_ENABLE | NVR_DATA_OUT);
336 for (word = 0; word < 8; word++)
337 qla2x00_nv_write(ha, NVR_DATA_OUT | NVR_PR_ENABLE);
339 qla2x00_nv_deselect(ha);
341 /* Wait for NVRAM to become ready. */
342 WRT_REG_WORD(&reg->nvram, NVR_SELECT);
343 RD_REG_WORD(&reg->nvram); /* PCI Posting. */
344 do {
345 NVRAM_DELAY();
346 word = RD_REG_WORD(&reg->nvram);
347 } while ((word & NVR_DATA_IN) == 0);
349 ret = QLA_SUCCESS;
350 } else
351 qla2x00_write_nvram_word(ha, 0, wprot_old);
353 return ret;
356 static void
357 qla2x00_set_nvram_protection(scsi_qla_host_t *ha, int stat)
359 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
360 uint32_t word;
362 if (stat != QLA_SUCCESS)
363 return;
365 /* Set NVRAM write protection. */
366 /* Write enable. */
367 qla2x00_nv_write(ha, NVR_DATA_OUT);
368 qla2x00_nv_write(ha, 0);
369 qla2x00_nv_write(ha, 0);
370 for (word = 0; word < 8; word++)
371 qla2x00_nv_write(ha, NVR_DATA_OUT);
373 qla2x00_nv_deselect(ha);
375 /* Enable protection register. */
376 qla2x00_nv_write(ha, NVR_PR_ENABLE | NVR_DATA_OUT);
377 qla2x00_nv_write(ha, NVR_PR_ENABLE);
378 qla2x00_nv_write(ha, NVR_PR_ENABLE);
379 for (word = 0; word < 8; word++)
380 qla2x00_nv_write(ha, NVR_DATA_OUT | NVR_PR_ENABLE);
382 qla2x00_nv_deselect(ha);
384 /* Enable protection register. */
385 qla2x00_nv_write(ha, NVR_PR_ENABLE | NVR_DATA_OUT);
386 qla2x00_nv_write(ha, NVR_PR_ENABLE);
387 qla2x00_nv_write(ha, NVR_PR_ENABLE | NVR_DATA_OUT);
388 for (word = 0; word < 8; word++)
389 qla2x00_nv_write(ha, NVR_PR_ENABLE);
391 qla2x00_nv_deselect(ha);
393 /* Wait for NVRAM to become ready. */
394 WRT_REG_WORD(&reg->nvram, NVR_SELECT);
395 RD_REG_WORD(&reg->nvram); /* PCI Posting. */
396 do {
397 NVRAM_DELAY();
398 word = RD_REG_WORD(&reg->nvram);
399 } while ((word & NVR_DATA_IN) == 0);
403 /*****************************************************************************/
404 /* Flash Manipulation Routines */
405 /*****************************************************************************/
407 static inline uint32_t
408 flash_conf_to_access_addr(uint32_t faddr)
410 return FARX_ACCESS_FLASH_CONF | faddr;
413 static inline uint32_t
414 flash_data_to_access_addr(uint32_t faddr)
416 return FARX_ACCESS_FLASH_DATA | faddr;
419 static inline uint32_t
420 nvram_conf_to_access_addr(uint32_t naddr)
422 return FARX_ACCESS_NVRAM_CONF | naddr;
425 static inline uint32_t
426 nvram_data_to_access_addr(uint32_t naddr)
428 return FARX_ACCESS_NVRAM_DATA | naddr;
431 uint32_t
432 qla24xx_read_flash_dword(scsi_qla_host_t *ha, uint32_t addr)
434 int rval;
435 uint32_t cnt, data;
436 struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
438 WRT_REG_DWORD(&reg->flash_addr, addr & ~FARX_DATA_FLAG);
439 /* Wait for READ cycle to complete. */
440 rval = QLA_SUCCESS;
441 for (cnt = 3000;
442 (RD_REG_DWORD(&reg->flash_addr) & FARX_DATA_FLAG) == 0 &&
443 rval == QLA_SUCCESS; cnt--) {
444 if (cnt)
445 udelay(10);
446 else
447 rval = QLA_FUNCTION_TIMEOUT;
450 /* TODO: What happens if we time out? */
451 data = 0xDEADDEAD;
452 if (rval == QLA_SUCCESS)
453 data = RD_REG_DWORD(&reg->flash_data);
455 return data;
458 uint32_t *
459 qla24xx_read_flash_data(scsi_qla_host_t *ha, uint32_t *dwptr, uint32_t faddr,
460 uint32_t dwords)
462 uint32_t i;
464 /* Dword reads to flash. */
465 for (i = 0; i < dwords; i++, faddr++)
466 dwptr[i] = cpu_to_le32(qla24xx_read_flash_dword(ha,
467 flash_data_to_access_addr(faddr)));
469 return dwptr;
473 qla24xx_write_flash_dword(scsi_qla_host_t *ha, uint32_t addr, uint32_t data)
475 int rval;
476 uint32_t cnt;
477 struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
479 WRT_REG_DWORD(&reg->flash_data, data);
480 RD_REG_DWORD(&reg->flash_data); /* PCI Posting. */
481 WRT_REG_DWORD(&reg->flash_addr, addr | FARX_DATA_FLAG);
482 /* Wait for Write cycle to complete. */
483 rval = QLA_SUCCESS;
484 for (cnt = 500000; (RD_REG_DWORD(&reg->flash_addr) & FARX_DATA_FLAG) &&
485 rval == QLA_SUCCESS; cnt--) {
486 if (cnt)
487 udelay(10);
488 else
489 rval = QLA_FUNCTION_TIMEOUT;
491 return rval;
494 void
495 qla24xx_get_flash_manufacturer(scsi_qla_host_t *ha, uint8_t *man_id,
496 uint8_t *flash_id)
498 uint32_t ids;
500 ids = qla24xx_read_flash_dword(ha, flash_data_to_access_addr(0xd03ab));
501 *man_id = LSB(ids);
502 *flash_id = MSB(ids);
506 qla24xx_write_flash_data(scsi_qla_host_t *ha, uint32_t *dwptr, uint32_t faddr,
507 uint32_t dwords)
509 int ret;
510 uint32_t liter;
511 uint32_t sec_mask, rest_addr, conf_addr;
512 uint32_t fdata;
513 uint8_t man_id, flash_id;
514 struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
516 ret = QLA_SUCCESS;
518 qla24xx_get_flash_manufacturer(ha, &man_id, &flash_id);
519 DEBUG9(printk("%s(%ld): Flash man_id=%d flash_id=%d\n", __func__,
520 ha->host_no, man_id, flash_id));
522 conf_addr = flash_conf_to_access_addr(0x03d8);
523 switch (man_id) {
524 case 0xbf: /* STT flash. */
525 rest_addr = 0x1fff;
526 sec_mask = 0x3e000;
527 if (flash_id == 0x80)
528 conf_addr = flash_conf_to_access_addr(0x0352);
529 break;
530 case 0x13: /* ST M25P80. */
531 rest_addr = 0x3fff;
532 sec_mask = 0x3c000;
533 break;
534 default:
535 /* Default to 64 kb sector size. */
536 rest_addr = 0x3fff;
537 sec_mask = 0x3c000;
538 break;
541 /* Enable flash write. */
542 WRT_REG_DWORD(&reg->ctrl_status,
543 RD_REG_DWORD(&reg->ctrl_status) | CSRX_FLASH_ENABLE);
544 RD_REG_DWORD(&reg->ctrl_status); /* PCI Posting. */
546 /* Disable flash write-protection. */
547 qla24xx_write_flash_dword(ha, flash_conf_to_access_addr(0x101), 0);
549 do { /* Loop once to provide quick error exit. */
550 for (liter = 0; liter < dwords; liter++, faddr++, dwptr++) {
551 /* Are we at the beginning of a sector? */
552 if ((faddr & rest_addr) == 0) {
553 fdata = (faddr & sec_mask) << 2;
554 ret = qla24xx_write_flash_dword(ha, conf_addr,
555 (fdata & 0xff00) |((fdata << 16) &
556 0xff0000) | ((fdata >> 16) & 0xff));
557 if (ret != QLA_SUCCESS) {
558 DEBUG9(printk("%s(%ld) Unable to flash "
559 "sector: address=%x.\n", __func__,
560 ha->host_no, faddr));
561 break;
564 ret = qla24xx_write_flash_dword(ha,
565 flash_data_to_access_addr(faddr),
566 cpu_to_le32(*dwptr));
567 if (ret != QLA_SUCCESS) {
568 DEBUG9(printk("%s(%ld) Unable to program flash "
569 "address=%x data=%x.\n", __func__,
570 ha->host_no, faddr, *dwptr));
571 break;
574 } while (0);
576 /* Enable flash write-protection. */
577 qla24xx_write_flash_dword(ha, flash_conf_to_access_addr(0x101), 0x9c);
579 /* Disable flash write. */
580 WRT_REG_DWORD(&reg->ctrl_status,
581 RD_REG_DWORD(&reg->ctrl_status) & ~CSRX_FLASH_ENABLE);
582 RD_REG_DWORD(&reg->ctrl_status); /* PCI Posting. */
584 return ret;
587 uint8_t *
588 qla2x00_read_nvram_data(scsi_qla_host_t *ha, uint8_t *buf, uint32_t naddr,
589 uint32_t bytes)
591 uint32_t i;
592 uint16_t *wptr;
594 /* Word reads to NVRAM via registers. */
595 wptr = (uint16_t *)buf;
596 qla2x00_lock_nvram_access(ha);
597 for (i = 0; i < bytes >> 1; i++, naddr++)
598 wptr[i] = cpu_to_le16(qla2x00_get_nvram_word(ha,
599 naddr));
600 qla2x00_unlock_nvram_access(ha);
602 return buf;
605 uint8_t *
606 qla24xx_read_nvram_data(scsi_qla_host_t *ha, uint8_t *buf, uint32_t naddr,
607 uint32_t bytes)
609 uint32_t i;
610 uint32_t *dwptr;
612 /* Dword reads to flash. */
613 dwptr = (uint32_t *)buf;
614 for (i = 0; i < bytes >> 2; i++, naddr++)
615 dwptr[i] = cpu_to_le32(qla24xx_read_flash_dword(ha,
616 nvram_data_to_access_addr(naddr)));
618 return buf;
622 qla2x00_write_nvram_data(scsi_qla_host_t *ha, uint8_t *buf, uint32_t naddr,
623 uint32_t bytes)
625 int ret, stat;
626 uint32_t i;
627 uint16_t *wptr;
629 ret = QLA_SUCCESS;
631 qla2x00_lock_nvram_access(ha);
633 /* Disable NVRAM write-protection. */
634 stat = qla2x00_clear_nvram_protection(ha);
636 wptr = (uint16_t *)buf;
637 for (i = 0; i < bytes >> 1; i++, naddr++) {
638 qla2x00_write_nvram_word(ha, naddr,
639 cpu_to_le16(*wptr));
640 wptr++;
643 /* Enable NVRAM write-protection. */
644 qla2x00_set_nvram_protection(ha, stat);
646 qla2x00_unlock_nvram_access(ha);
648 return ret;
652 qla24xx_write_nvram_data(scsi_qla_host_t *ha, uint8_t *buf, uint32_t naddr,
653 uint32_t bytes)
655 int ret;
656 uint32_t i;
657 uint32_t *dwptr;
658 struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
660 ret = QLA_SUCCESS;
662 /* Enable flash write. */
663 WRT_REG_DWORD(&reg->ctrl_status,
664 RD_REG_DWORD(&reg->ctrl_status) | CSRX_FLASH_ENABLE);
665 RD_REG_DWORD(&reg->ctrl_status); /* PCI Posting. */
667 /* Disable NVRAM write-protection. */
668 qla24xx_write_flash_dword(ha, nvram_conf_to_access_addr(0x101),
670 qla24xx_write_flash_dword(ha, nvram_conf_to_access_addr(0x101),
673 /* Dword writes to flash. */
674 dwptr = (uint32_t *)buf;
675 for (i = 0; i < bytes >> 2; i++, naddr++, dwptr++) {
676 ret = qla24xx_write_flash_dword(ha,
677 nvram_data_to_access_addr(naddr),
678 cpu_to_le32(*dwptr));
679 if (ret != QLA_SUCCESS) {
680 DEBUG9(printk("%s(%ld) Unable to program "
681 "nvram address=%x data=%x.\n", __func__,
682 ha->host_no, naddr, *dwptr));
683 break;
687 /* Enable NVRAM write-protection. */
688 qla24xx_write_flash_dword(ha, nvram_conf_to_access_addr(0x101),
689 0x8c);
691 /* Disable flash write. */
692 WRT_REG_DWORD(&reg->ctrl_status,
693 RD_REG_DWORD(&reg->ctrl_status) & ~CSRX_FLASH_ENABLE);
694 RD_REG_DWORD(&reg->ctrl_status); /* PCI Posting. */
696 return ret;
700 static inline void
701 qla2x00_flip_colors(scsi_qla_host_t *ha, uint16_t *pflags)
703 if (IS_QLA2322(ha)) {
704 /* Flip all colors. */
705 if (ha->beacon_color_state == QLA_LED_ALL_ON) {
706 /* Turn off. */
707 ha->beacon_color_state = 0;
708 *pflags = GPIO_LED_ALL_OFF;
709 } else {
710 /* Turn on. */
711 ha->beacon_color_state = QLA_LED_ALL_ON;
712 *pflags = GPIO_LED_RGA_ON;
714 } else {
715 /* Flip green led only. */
716 if (ha->beacon_color_state == QLA_LED_GRN_ON) {
717 /* Turn off. */
718 ha->beacon_color_state = 0;
719 *pflags = GPIO_LED_GREEN_OFF_AMBER_OFF;
720 } else {
721 /* Turn on. */
722 ha->beacon_color_state = QLA_LED_GRN_ON;
723 *pflags = GPIO_LED_GREEN_ON_AMBER_OFF;
728 void
729 qla2x00_beacon_blink(struct scsi_qla_host *ha)
731 uint16_t gpio_enable;
732 uint16_t gpio_data;
733 uint16_t led_color = 0;
734 unsigned long flags;
735 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
737 if (ha->pio_address)
738 reg = (struct device_reg_2xxx __iomem *)ha->pio_address;
740 spin_lock_irqsave(&ha->hardware_lock, flags);
742 /* Save the Original GPIOE. */
743 if (ha->pio_address) {
744 gpio_enable = RD_REG_WORD_PIO(&reg->gpioe);
745 gpio_data = RD_REG_WORD_PIO(&reg->gpiod);
746 } else {
747 gpio_enable = RD_REG_WORD(&reg->gpioe);
748 gpio_data = RD_REG_WORD(&reg->gpiod);
751 /* Set the modified gpio_enable values */
752 gpio_enable |= GPIO_LED_MASK;
754 if (ha->pio_address) {
755 WRT_REG_WORD_PIO(&reg->gpioe, gpio_enable);
756 } else {
757 WRT_REG_WORD(&reg->gpioe, gpio_enable);
758 RD_REG_WORD(&reg->gpioe);
761 qla2x00_flip_colors(ha, &led_color);
763 /* Clear out any previously set LED color. */
764 gpio_data &= ~GPIO_LED_MASK;
766 /* Set the new input LED color to GPIOD. */
767 gpio_data |= led_color;
769 /* Set the modified gpio_data values */
770 if (ha->pio_address) {
771 WRT_REG_WORD_PIO(&reg->gpiod, gpio_data);
772 } else {
773 WRT_REG_WORD(&reg->gpiod, gpio_data);
774 RD_REG_WORD(&reg->gpiod);
777 spin_unlock_irqrestore(&ha->hardware_lock, flags);
781 qla2x00_beacon_on(struct scsi_qla_host *ha)
783 uint16_t gpio_enable;
784 uint16_t gpio_data;
785 unsigned long flags;
786 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
788 ha->fw_options[1] &= ~FO1_SET_EMPHASIS_SWING;
789 ha->fw_options[1] |= FO1_DISABLE_GPIO6_7;
791 if (qla2x00_set_fw_options(ha, ha->fw_options) != QLA_SUCCESS) {
792 qla_printk(KERN_WARNING, ha,
793 "Unable to update fw options (beacon on).\n");
794 return QLA_FUNCTION_FAILED;
797 if (ha->pio_address)
798 reg = (struct device_reg_2xxx __iomem *)ha->pio_address;
800 /* Turn off LEDs. */
801 spin_lock_irqsave(&ha->hardware_lock, flags);
802 if (ha->pio_address) {
803 gpio_enable = RD_REG_WORD_PIO(&reg->gpioe);
804 gpio_data = RD_REG_WORD_PIO(&reg->gpiod);
805 } else {
806 gpio_enable = RD_REG_WORD(&reg->gpioe);
807 gpio_data = RD_REG_WORD(&reg->gpiod);
809 gpio_enable |= GPIO_LED_MASK;
811 /* Set the modified gpio_enable values. */
812 if (ha->pio_address) {
813 WRT_REG_WORD_PIO(&reg->gpioe, gpio_enable);
814 } else {
815 WRT_REG_WORD(&reg->gpioe, gpio_enable);
816 RD_REG_WORD(&reg->gpioe);
819 /* Clear out previously set LED colour. */
820 gpio_data &= ~GPIO_LED_MASK;
821 if (ha->pio_address) {
822 WRT_REG_WORD_PIO(&reg->gpiod, gpio_data);
823 } else {
824 WRT_REG_WORD(&reg->gpiod, gpio_data);
825 RD_REG_WORD(&reg->gpiod);
827 spin_unlock_irqrestore(&ha->hardware_lock, flags);
830 * Let the per HBA timer kick off the blinking process based on
831 * the following flags. No need to do anything else now.
833 ha->beacon_blink_led = 1;
834 ha->beacon_color_state = 0;
836 return QLA_SUCCESS;
840 qla2x00_beacon_off(struct scsi_qla_host *ha)
842 int rval = QLA_SUCCESS;
844 ha->beacon_blink_led = 0;
846 /* Set the on flag so when it gets flipped it will be off. */
847 if (IS_QLA2322(ha))
848 ha->beacon_color_state = QLA_LED_ALL_ON;
849 else
850 ha->beacon_color_state = QLA_LED_GRN_ON;
852 ha->isp_ops.beacon_blink(ha); /* This turns green LED off */
854 ha->fw_options[1] &= ~FO1_SET_EMPHASIS_SWING;
855 ha->fw_options[1] &= ~FO1_DISABLE_GPIO6_7;
857 rval = qla2x00_set_fw_options(ha, ha->fw_options);
858 if (rval != QLA_SUCCESS)
859 qla_printk(KERN_WARNING, ha,
860 "Unable to update fw options (beacon off).\n");
861 return rval;
865 static inline void
866 qla24xx_flip_colors(scsi_qla_host_t *ha, uint16_t *pflags)
868 /* Flip all colors. */
869 if (ha->beacon_color_state == QLA_LED_ALL_ON) {
870 /* Turn off. */
871 ha->beacon_color_state = 0;
872 *pflags = 0;
873 } else {
874 /* Turn on. */
875 ha->beacon_color_state = QLA_LED_ALL_ON;
876 *pflags = GPDX_LED_YELLOW_ON | GPDX_LED_AMBER_ON;
880 void
881 qla24xx_beacon_blink(struct scsi_qla_host *ha)
883 uint16_t led_color = 0;
884 uint32_t gpio_data;
885 unsigned long flags;
886 struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
888 /* Save the Original GPIOD. */
889 spin_lock_irqsave(&ha->hardware_lock, flags);
890 gpio_data = RD_REG_DWORD(&reg->gpiod);
892 /* Enable the gpio_data reg for update. */
893 gpio_data |= GPDX_LED_UPDATE_MASK;
895 WRT_REG_DWORD(&reg->gpiod, gpio_data);
896 gpio_data = RD_REG_DWORD(&reg->gpiod);
898 /* Set the color bits. */
899 qla24xx_flip_colors(ha, &led_color);
901 /* Clear out any previously set LED color. */
902 gpio_data &= ~GPDX_LED_COLOR_MASK;
904 /* Set the new input LED color to GPIOD. */
905 gpio_data |= led_color;
907 /* Set the modified gpio_data values. */
908 WRT_REG_DWORD(&reg->gpiod, gpio_data);
909 gpio_data = RD_REG_DWORD(&reg->gpiod);
910 spin_unlock_irqrestore(&ha->hardware_lock, flags);
914 qla24xx_beacon_on(struct scsi_qla_host *ha)
916 uint32_t gpio_data;
917 unsigned long flags;
918 struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
920 if (ha->beacon_blink_led == 0) {
921 /* Enable firmware for update */
922 ha->fw_options[1] |= ADD_FO1_DISABLE_GPIO_LED_CTRL;
924 if (qla2x00_set_fw_options(ha, ha->fw_options) != QLA_SUCCESS)
925 return QLA_FUNCTION_FAILED;
927 if (qla2x00_get_fw_options(ha, ha->fw_options) !=
928 QLA_SUCCESS) {
929 qla_printk(KERN_WARNING, ha,
930 "Unable to update fw options (beacon on).\n");
931 return QLA_FUNCTION_FAILED;
934 spin_lock_irqsave(&ha->hardware_lock, flags);
935 gpio_data = RD_REG_DWORD(&reg->gpiod);
937 /* Enable the gpio_data reg for update. */
938 gpio_data |= GPDX_LED_UPDATE_MASK;
939 WRT_REG_DWORD(&reg->gpiod, gpio_data);
940 RD_REG_DWORD(&reg->gpiod);
942 spin_unlock_irqrestore(&ha->hardware_lock, flags);
945 /* So all colors blink together. */
946 ha->beacon_color_state = 0;
948 /* Let the per HBA timer kick off the blinking process. */
949 ha->beacon_blink_led = 1;
951 return QLA_SUCCESS;
955 qla24xx_beacon_off(struct scsi_qla_host *ha)
957 uint32_t gpio_data;
958 unsigned long flags;
959 struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
961 ha->beacon_blink_led = 0;
962 ha->beacon_color_state = QLA_LED_ALL_ON;
964 ha->isp_ops.beacon_blink(ha); /* Will flip to all off. */
966 /* Give control back to firmware. */
967 spin_lock_irqsave(&ha->hardware_lock, flags);
968 gpio_data = RD_REG_DWORD(&reg->gpiod);
970 /* Disable the gpio_data reg for update. */
971 gpio_data &= ~GPDX_LED_UPDATE_MASK;
972 WRT_REG_DWORD(&reg->gpiod, gpio_data);
973 RD_REG_DWORD(&reg->gpiod);
974 spin_unlock_irqrestore(&ha->hardware_lock, flags);
976 ha->fw_options[1] &= ~ADD_FO1_DISABLE_GPIO_LED_CTRL;
978 if (qla2x00_set_fw_options(ha, ha->fw_options) != QLA_SUCCESS) {
979 qla_printk(KERN_WARNING, ha,
980 "Unable to update fw options (beacon off).\n");
981 return QLA_FUNCTION_FAILED;
984 if (qla2x00_get_fw_options(ha, ha->fw_options) != QLA_SUCCESS) {
985 qla_printk(KERN_WARNING, ha,
986 "Unable to get fw options (beacon off).\n");
987 return QLA_FUNCTION_FAILED;
990 return QLA_SUCCESS;
995 * Flash support routines
999 * qla2x00_flash_enable() - Setup flash for reading and writing.
1000 * @ha: HA context
1002 static void
1003 qla2x00_flash_enable(scsi_qla_host_t *ha)
1005 uint16_t data;
1006 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
1008 data = RD_REG_WORD(&reg->ctrl_status);
1009 data |= CSR_FLASH_ENABLE;
1010 WRT_REG_WORD(&reg->ctrl_status, data);
1011 RD_REG_WORD(&reg->ctrl_status); /* PCI Posting. */
1015 * qla2x00_flash_disable() - Disable flash and allow RISC to run.
1016 * @ha: HA context
1018 static void
1019 qla2x00_flash_disable(scsi_qla_host_t *ha)
1021 uint16_t data;
1022 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
1024 data = RD_REG_WORD(&reg->ctrl_status);
1025 data &= ~(CSR_FLASH_ENABLE);
1026 WRT_REG_WORD(&reg->ctrl_status, data);
1027 RD_REG_WORD(&reg->ctrl_status); /* PCI Posting. */
1031 * qla2x00_read_flash_byte() - Reads a byte from flash
1032 * @ha: HA context
1033 * @addr: Address in flash to read
1035 * A word is read from the chip, but, only the lower byte is valid.
1037 * Returns the byte read from flash @addr.
1039 static uint8_t
1040 qla2x00_read_flash_byte(scsi_qla_host_t *ha, uint32_t addr)
1042 uint16_t data;
1043 uint16_t bank_select;
1044 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
1046 bank_select = RD_REG_WORD(&reg->ctrl_status);
1048 if (IS_QLA2322(ha) || IS_QLA6322(ha)) {
1049 /* Specify 64K address range: */
1050 /* clear out Module Select and Flash Address bits [19:16]. */
1051 bank_select &= ~0xf8;
1052 bank_select |= addr >> 12 & 0xf0;
1053 bank_select |= CSR_FLASH_64K_BANK;
1054 WRT_REG_WORD(&reg->ctrl_status, bank_select);
1055 RD_REG_WORD(&reg->ctrl_status); /* PCI Posting. */
1057 WRT_REG_WORD(&reg->flash_address, (uint16_t)addr);
1058 data = RD_REG_WORD(&reg->flash_data);
1060 return (uint8_t)data;
1063 /* Setup bit 16 of flash address. */
1064 if ((addr & BIT_16) && ((bank_select & CSR_FLASH_64K_BANK) == 0)) {
1065 bank_select |= CSR_FLASH_64K_BANK;
1066 WRT_REG_WORD(&reg->ctrl_status, bank_select);
1067 RD_REG_WORD(&reg->ctrl_status); /* PCI Posting. */
1068 } else if (((addr & BIT_16) == 0) &&
1069 (bank_select & CSR_FLASH_64K_BANK)) {
1070 bank_select &= ~(CSR_FLASH_64K_BANK);
1071 WRT_REG_WORD(&reg->ctrl_status, bank_select);
1072 RD_REG_WORD(&reg->ctrl_status); /* PCI Posting. */
1075 /* Always perform IO mapped accesses to the FLASH registers. */
1076 if (ha->pio_address) {
1077 uint16_t data2;
1079 reg = (struct device_reg_2xxx __iomem *)ha->pio_address;
1080 WRT_REG_WORD_PIO(&reg->flash_address, (uint16_t)addr);
1081 do {
1082 data = RD_REG_WORD_PIO(&reg->flash_data);
1083 barrier();
1084 cpu_relax();
1085 data2 = RD_REG_WORD_PIO(&reg->flash_data);
1086 } while (data != data2);
1087 } else {
1088 WRT_REG_WORD(&reg->flash_address, (uint16_t)addr);
1089 data = qla2x00_debounce_register(&reg->flash_data);
1092 return (uint8_t)data;
1096 * qla2x00_write_flash_byte() - Write a byte to flash
1097 * @ha: HA context
1098 * @addr: Address in flash to write
1099 * @data: Data to write
1101 static void
1102 qla2x00_write_flash_byte(scsi_qla_host_t *ha, uint32_t addr, uint8_t data)
1104 uint16_t bank_select;
1105 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
1107 bank_select = RD_REG_WORD(&reg->ctrl_status);
1108 if (IS_QLA2322(ha) || IS_QLA6322(ha)) {
1109 /* Specify 64K address range: */
1110 /* clear out Module Select and Flash Address bits [19:16]. */
1111 bank_select &= ~0xf8;
1112 bank_select |= addr >> 12 & 0xf0;
1113 bank_select |= CSR_FLASH_64K_BANK;
1114 WRT_REG_WORD(&reg->ctrl_status, bank_select);
1115 RD_REG_WORD(&reg->ctrl_status); /* PCI Posting. */
1117 WRT_REG_WORD(&reg->flash_address, (uint16_t)addr);
1118 RD_REG_WORD(&reg->ctrl_status); /* PCI Posting. */
1119 WRT_REG_WORD(&reg->flash_data, (uint16_t)data);
1120 RD_REG_WORD(&reg->ctrl_status); /* PCI Posting. */
1122 return;
1125 /* Setup bit 16 of flash address. */
1126 if ((addr & BIT_16) && ((bank_select & CSR_FLASH_64K_BANK) == 0)) {
1127 bank_select |= CSR_FLASH_64K_BANK;
1128 WRT_REG_WORD(&reg->ctrl_status, bank_select);
1129 RD_REG_WORD(&reg->ctrl_status); /* PCI Posting. */
1130 } else if (((addr & BIT_16) == 0) &&
1131 (bank_select & CSR_FLASH_64K_BANK)) {
1132 bank_select &= ~(CSR_FLASH_64K_BANK);
1133 WRT_REG_WORD(&reg->ctrl_status, bank_select);
1134 RD_REG_WORD(&reg->ctrl_status); /* PCI Posting. */
1137 /* Always perform IO mapped accesses to the FLASH registers. */
1138 if (ha->pio_address) {
1139 reg = (struct device_reg_2xxx __iomem *)ha->pio_address;
1140 WRT_REG_WORD_PIO(&reg->flash_address, (uint16_t)addr);
1141 WRT_REG_WORD_PIO(&reg->flash_data, (uint16_t)data);
1142 } else {
1143 WRT_REG_WORD(&reg->flash_address, (uint16_t)addr);
1144 RD_REG_WORD(&reg->ctrl_status); /* PCI Posting. */
1145 WRT_REG_WORD(&reg->flash_data, (uint16_t)data);
1146 RD_REG_WORD(&reg->ctrl_status); /* PCI Posting. */
1151 * qla2x00_poll_flash() - Polls flash for completion.
1152 * @ha: HA context
1153 * @addr: Address in flash to poll
1154 * @poll_data: Data to be polled
1155 * @man_id: Flash manufacturer ID
1156 * @flash_id: Flash ID
1158 * This function polls the device until bit 7 of what is read matches data
1159 * bit 7 or until data bit 5 becomes a 1. If that hapens, the flash ROM timed
1160 * out (a fatal error). The flash book recommeds reading bit 7 again after
1161 * reading bit 5 as a 1.
1163 * Returns 0 on success, else non-zero.
1165 static int
1166 qla2x00_poll_flash(scsi_qla_host_t *ha, uint32_t addr, uint8_t poll_data,
1167 uint8_t man_id, uint8_t flash_id)
1169 int status;
1170 uint8_t flash_data;
1171 uint32_t cnt;
1173 status = 1;
1175 /* Wait for 30 seconds for command to finish. */
1176 poll_data &= BIT_7;
1177 for (cnt = 3000000; cnt; cnt--) {
1178 flash_data = qla2x00_read_flash_byte(ha, addr);
1179 if ((flash_data & BIT_7) == poll_data) {
1180 status = 0;
1181 break;
1184 if (man_id != 0x40 && man_id != 0xda) {
1185 if ((flash_data & BIT_5) && cnt > 2)
1186 cnt = 2;
1188 udelay(10);
1189 barrier();
1191 return status;
1195 * qla2x00_program_flash_address() - Programs a flash address
1196 * @ha: HA context
1197 * @addr: Address in flash to program
1198 * @data: Data to be written in flash
1199 * @man_id: Flash manufacturer ID
1200 * @flash_id: Flash ID
1202 * Returns 0 on success, else non-zero.
1204 static int
1205 qla2x00_program_flash_address(scsi_qla_host_t *ha, uint32_t addr, uint8_t data,
1206 uint8_t man_id, uint8_t flash_id)
1208 /* Write Program Command Sequence. */
1209 if (IS_OEM_001(ha)) {
1210 qla2x00_write_flash_byte(ha, 0xaaa, 0xaa);
1211 qla2x00_write_flash_byte(ha, 0x555, 0x55);
1212 qla2x00_write_flash_byte(ha, 0xaaa, 0xa0);
1213 qla2x00_write_flash_byte(ha, addr, data);
1214 } else {
1215 if (man_id == 0xda && flash_id == 0xc1) {
1216 qla2x00_write_flash_byte(ha, addr, data);
1217 if (addr & 0x7e)
1218 return 0;
1219 } else {
1220 qla2x00_write_flash_byte(ha, 0x5555, 0xaa);
1221 qla2x00_write_flash_byte(ha, 0x2aaa, 0x55);
1222 qla2x00_write_flash_byte(ha, 0x5555, 0xa0);
1223 qla2x00_write_flash_byte(ha, addr, data);
1227 udelay(150);
1229 /* Wait for write to complete. */
1230 return qla2x00_poll_flash(ha, addr, data, man_id, flash_id);
1234 * qla2x00_erase_flash() - Erase the flash.
1235 * @ha: HA context
1236 * @man_id: Flash manufacturer ID
1237 * @flash_id: Flash ID
1239 * Returns 0 on success, else non-zero.
1241 static int
1242 qla2x00_erase_flash(scsi_qla_host_t *ha, uint8_t man_id, uint8_t flash_id)
1244 /* Individual Sector Erase Command Sequence */
1245 if (IS_OEM_001(ha)) {
1246 qla2x00_write_flash_byte(ha, 0xaaa, 0xaa);
1247 qla2x00_write_flash_byte(ha, 0x555, 0x55);
1248 qla2x00_write_flash_byte(ha, 0xaaa, 0x80);
1249 qla2x00_write_flash_byte(ha, 0xaaa, 0xaa);
1250 qla2x00_write_flash_byte(ha, 0x555, 0x55);
1251 qla2x00_write_flash_byte(ha, 0xaaa, 0x10);
1252 } else {
1253 qla2x00_write_flash_byte(ha, 0x5555, 0xaa);
1254 qla2x00_write_flash_byte(ha, 0x2aaa, 0x55);
1255 qla2x00_write_flash_byte(ha, 0x5555, 0x80);
1256 qla2x00_write_flash_byte(ha, 0x5555, 0xaa);
1257 qla2x00_write_flash_byte(ha, 0x2aaa, 0x55);
1258 qla2x00_write_flash_byte(ha, 0x5555, 0x10);
1261 udelay(150);
1263 /* Wait for erase to complete. */
1264 return qla2x00_poll_flash(ha, 0x00, 0x80, man_id, flash_id);
1268 * qla2x00_erase_flash_sector() - Erase a flash sector.
1269 * @ha: HA context
1270 * @addr: Flash sector to erase
1271 * @sec_mask: Sector address mask
1272 * @man_id: Flash manufacturer ID
1273 * @flash_id: Flash ID
1275 * Returns 0 on success, else non-zero.
1277 static int
1278 qla2x00_erase_flash_sector(scsi_qla_host_t *ha, uint32_t addr,
1279 uint32_t sec_mask, uint8_t man_id, uint8_t flash_id)
1281 /* Individual Sector Erase Command Sequence */
1282 qla2x00_write_flash_byte(ha, 0x5555, 0xaa);
1283 qla2x00_write_flash_byte(ha, 0x2aaa, 0x55);
1284 qla2x00_write_flash_byte(ha, 0x5555, 0x80);
1285 qla2x00_write_flash_byte(ha, 0x5555, 0xaa);
1286 qla2x00_write_flash_byte(ha, 0x2aaa, 0x55);
1287 if (man_id == 0x1f && flash_id == 0x13)
1288 qla2x00_write_flash_byte(ha, addr & sec_mask, 0x10);
1289 else
1290 qla2x00_write_flash_byte(ha, addr & sec_mask, 0x30);
1292 udelay(150);
1294 /* Wait for erase to complete. */
1295 return qla2x00_poll_flash(ha, addr, 0x80, man_id, flash_id);
1299 * qla2x00_get_flash_manufacturer() - Read manufacturer ID from flash chip.
1300 * @man_id: Flash manufacturer ID
1301 * @flash_id: Flash ID
1303 static void
1304 qla2x00_get_flash_manufacturer(scsi_qla_host_t *ha, uint8_t *man_id,
1305 uint8_t *flash_id)
1307 qla2x00_write_flash_byte(ha, 0x5555, 0xaa);
1308 qla2x00_write_flash_byte(ha, 0x2aaa, 0x55);
1309 qla2x00_write_flash_byte(ha, 0x5555, 0x90);
1310 *man_id = qla2x00_read_flash_byte(ha, 0x0000);
1311 *flash_id = qla2x00_read_flash_byte(ha, 0x0001);
1312 qla2x00_write_flash_byte(ha, 0x5555, 0xaa);
1313 qla2x00_write_flash_byte(ha, 0x2aaa, 0x55);
1314 qla2x00_write_flash_byte(ha, 0x5555, 0xf0);
1318 static inline void
1319 qla2x00_suspend_hba(struct scsi_qla_host *ha)
1321 int cnt;
1322 unsigned long flags;
1323 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
1325 /* Suspend HBA. */
1326 scsi_block_requests(ha->host);
1327 ha->isp_ops.disable_intrs(ha);
1328 set_bit(MBX_UPDATE_FLASH_ACTIVE, &ha->mbx_cmd_flags);
1330 /* Pause RISC. */
1331 spin_lock_irqsave(&ha->hardware_lock, flags);
1332 WRT_REG_WORD(&reg->hccr, HCCR_PAUSE_RISC);
1333 RD_REG_WORD(&reg->hccr);
1334 if (IS_QLA2100(ha) || IS_QLA2200(ha) || IS_QLA2300(ha)) {
1335 for (cnt = 0; cnt < 30000; cnt++) {
1336 if ((RD_REG_WORD(&reg->hccr) & HCCR_RISC_PAUSE) != 0)
1337 break;
1338 udelay(100);
1340 } else {
1341 udelay(10);
1343 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1346 static inline void
1347 qla2x00_resume_hba(struct scsi_qla_host *ha)
1349 /* Resume HBA. */
1350 clear_bit(MBX_UPDATE_FLASH_ACTIVE, &ha->mbx_cmd_flags);
1351 set_bit(ISP_ABORT_NEEDED, &ha->dpc_flags);
1352 qla2xxx_wake_dpc(ha);
1353 qla2x00_wait_for_hba_online(ha);
1354 scsi_unblock_requests(ha->host);
1357 uint8_t *
1358 qla2x00_read_optrom_data(struct scsi_qla_host *ha, uint8_t *buf,
1359 uint32_t offset, uint32_t length)
1361 unsigned long flags;
1362 uint32_t addr, midpoint;
1363 uint8_t *data;
1364 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
1366 /* Suspend HBA. */
1367 qla2x00_suspend_hba(ha);
1369 /* Go with read. */
1370 spin_lock_irqsave(&ha->hardware_lock, flags);
1371 midpoint = ha->optrom_size / 2;
1373 qla2x00_flash_enable(ha);
1374 WRT_REG_WORD(&reg->nvram, 0);
1375 RD_REG_WORD(&reg->nvram); /* PCI Posting. */
1376 for (addr = offset, data = buf; addr < length; addr++, data++) {
1377 if (addr == midpoint) {
1378 WRT_REG_WORD(&reg->nvram, NVR_SELECT);
1379 RD_REG_WORD(&reg->nvram); /* PCI Posting. */
1382 *data = qla2x00_read_flash_byte(ha, addr);
1384 qla2x00_flash_disable(ha);
1385 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1387 /* Resume HBA. */
1388 qla2x00_resume_hba(ha);
1390 return buf;
1394 qla2x00_write_optrom_data(struct scsi_qla_host *ha, uint8_t *buf,
1395 uint32_t offset, uint32_t length)
1398 int rval;
1399 unsigned long flags;
1400 uint8_t man_id, flash_id, sec_number, data;
1401 uint16_t wd;
1402 uint32_t addr, liter, sec_mask, rest_addr;
1403 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
1405 /* Suspend HBA. */
1406 qla2x00_suspend_hba(ha);
1408 rval = QLA_SUCCESS;
1409 sec_number = 0;
1411 /* Reset ISP chip. */
1412 spin_lock_irqsave(&ha->hardware_lock, flags);
1413 WRT_REG_WORD(&reg->ctrl_status, CSR_ISP_SOFT_RESET);
1414 pci_read_config_word(ha->pdev, PCI_COMMAND, &wd);
1416 /* Go with write. */
1417 qla2x00_flash_enable(ha);
1418 do { /* Loop once to provide quick error exit */
1419 /* Structure of flash memory based on manufacturer */
1420 if (IS_OEM_001(ha)) {
1421 /* OEM variant with special flash part. */
1422 man_id = flash_id = 0;
1423 rest_addr = 0xffff;
1424 sec_mask = 0x10000;
1425 goto update_flash;
1427 qla2x00_get_flash_manufacturer(ha, &man_id, &flash_id);
1428 switch (man_id) {
1429 case 0x20: /* ST flash. */
1430 if (flash_id == 0xd2 || flash_id == 0xe3) {
1432 * ST m29w008at part - 64kb sector size with
1433 * 32kb,8kb,8kb,16kb sectors at memory address
1434 * 0xf0000.
1436 rest_addr = 0xffff;
1437 sec_mask = 0x10000;
1438 break;
1441 * ST m29w010b part - 16kb sector size
1442 * Default to 16kb sectors
1444 rest_addr = 0x3fff;
1445 sec_mask = 0x1c000;
1446 break;
1447 case 0x40: /* Mostel flash. */
1448 /* Mostel v29c51001 part - 512 byte sector size. */
1449 rest_addr = 0x1ff;
1450 sec_mask = 0x1fe00;
1451 break;
1452 case 0xbf: /* SST flash. */
1453 /* SST39sf10 part - 4kb sector size. */
1454 rest_addr = 0xfff;
1455 sec_mask = 0x1f000;
1456 break;
1457 case 0xda: /* Winbond flash. */
1458 /* Winbond W29EE011 part - 256 byte sector size. */
1459 rest_addr = 0x7f;
1460 sec_mask = 0x1ff80;
1461 break;
1462 case 0xc2: /* Macronix flash. */
1463 /* 64k sector size. */
1464 if (flash_id == 0x38 || flash_id == 0x4f) {
1465 rest_addr = 0xffff;
1466 sec_mask = 0x10000;
1467 break;
1469 /* Fall through... */
1471 case 0x1f: /* Atmel flash. */
1472 /* 512k sector size. */
1473 if (flash_id == 0x13) {
1474 rest_addr = 0x7fffffff;
1475 sec_mask = 0x80000000;
1476 break;
1478 /* Fall through... */
1480 case 0x01: /* AMD flash. */
1481 if (flash_id == 0x38 || flash_id == 0x40 ||
1482 flash_id == 0x4f) {
1483 /* Am29LV081 part - 64kb sector size. */
1484 /* Am29LV002BT part - 64kb sector size. */
1485 rest_addr = 0xffff;
1486 sec_mask = 0x10000;
1487 break;
1488 } else if (flash_id == 0x3e) {
1490 * Am29LV008b part - 64kb sector size with
1491 * 32kb,8kb,8kb,16kb sector at memory address
1492 * h0xf0000.
1494 rest_addr = 0xffff;
1495 sec_mask = 0x10000;
1496 break;
1497 } else if (flash_id == 0x20 || flash_id == 0x6e) {
1499 * Am29LV010 part or AM29f010 - 16kb sector
1500 * size.
1502 rest_addr = 0x3fff;
1503 sec_mask = 0x1c000;
1504 break;
1505 } else if (flash_id == 0x6d) {
1506 /* Am29LV001 part - 8kb sector size. */
1507 rest_addr = 0x1fff;
1508 sec_mask = 0x1e000;
1509 break;
1511 default:
1512 /* Default to 16 kb sector size. */
1513 rest_addr = 0x3fff;
1514 sec_mask = 0x1c000;
1515 break;
1518 update_flash:
1519 if (IS_QLA2322(ha) || IS_QLA6322(ha)) {
1520 if (qla2x00_erase_flash(ha, man_id, flash_id)) {
1521 rval = QLA_FUNCTION_FAILED;
1522 break;
1526 for (addr = offset, liter = 0; liter < length; liter++,
1527 addr++) {
1528 data = buf[liter];
1529 /* Are we at the beginning of a sector? */
1530 if ((addr & rest_addr) == 0) {
1531 if (IS_QLA2322(ha) || IS_QLA6322(ha)) {
1532 if (addr >= 0x10000UL) {
1533 if (((addr >> 12) & 0xf0) &&
1534 ((man_id == 0x01 &&
1535 flash_id == 0x3e) ||
1536 (man_id == 0x20 &&
1537 flash_id == 0xd2))) {
1538 sec_number++;
1539 if (sec_number == 1) {
1540 rest_addr =
1541 0x7fff;
1542 sec_mask =
1543 0x18000;
1544 } else if (
1545 sec_number == 2 ||
1546 sec_number == 3) {
1547 rest_addr =
1548 0x1fff;
1549 sec_mask =
1550 0x1e000;
1551 } else if (
1552 sec_number == 4) {
1553 rest_addr =
1554 0x3fff;
1555 sec_mask =
1556 0x1c000;
1560 } else if (addr == ha->optrom_size / 2) {
1561 WRT_REG_WORD(&reg->nvram, NVR_SELECT);
1562 RD_REG_WORD(&reg->nvram);
1565 if (flash_id == 0xda && man_id == 0xc1) {
1566 qla2x00_write_flash_byte(ha, 0x5555,
1567 0xaa);
1568 qla2x00_write_flash_byte(ha, 0x2aaa,
1569 0x55);
1570 qla2x00_write_flash_byte(ha, 0x5555,
1571 0xa0);
1572 } else if (!IS_QLA2322(ha) && !IS_QLA6322(ha)) {
1573 /* Then erase it */
1574 if (qla2x00_erase_flash_sector(ha,
1575 addr, sec_mask, man_id,
1576 flash_id)) {
1577 rval = QLA_FUNCTION_FAILED;
1578 break;
1580 if (man_id == 0x01 && flash_id == 0x6d)
1581 sec_number++;
1585 if (man_id == 0x01 && flash_id == 0x6d) {
1586 if (sec_number == 1 &&
1587 addr == (rest_addr - 1)) {
1588 rest_addr = 0x0fff;
1589 sec_mask = 0x1f000;
1590 } else if (sec_number == 3 && (addr & 0x7ffe)) {
1591 rest_addr = 0x3fff;
1592 sec_mask = 0x1c000;
1596 if (qla2x00_program_flash_address(ha, addr, data,
1597 man_id, flash_id)) {
1598 rval = QLA_FUNCTION_FAILED;
1599 break;
1602 } while (0);
1603 qla2x00_flash_disable(ha);
1604 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1606 /* Resume HBA. */
1607 qla2x00_resume_hba(ha);
1609 return rval;
1612 uint8_t *
1613 qla24xx_read_optrom_data(struct scsi_qla_host *ha, uint8_t *buf,
1614 uint32_t offset, uint32_t length)
1616 /* Suspend HBA. */
1617 scsi_block_requests(ha->host);
1618 ha->isp_ops.disable_intrs(ha);
1619 set_bit(MBX_UPDATE_FLASH_ACTIVE, &ha->mbx_cmd_flags);
1621 /* Go with read. */
1622 qla24xx_read_flash_data(ha, (uint32_t *)buf, offset >> 2, length >> 2);
1624 /* Resume HBA. */
1625 clear_bit(MBX_UPDATE_FLASH_ACTIVE, &ha->mbx_cmd_flags);
1626 ha->isp_ops.enable_intrs(ha);
1627 scsi_unblock_requests(ha->host);
1629 return buf;
1633 qla24xx_write_optrom_data(struct scsi_qla_host *ha, uint8_t *buf,
1634 uint32_t offset, uint32_t length)
1636 int rval;
1638 /* Suspend HBA. */
1639 scsi_block_requests(ha->host);
1640 ha->isp_ops.disable_intrs(ha);
1641 set_bit(MBX_UPDATE_FLASH_ACTIVE, &ha->mbx_cmd_flags);
1643 /* Go with write. */
1644 rval = qla24xx_write_flash_data(ha, (uint32_t *)buf, offset >> 2,
1645 length >> 2);
1647 /* Resume HBA -- RISC reset needed. */
1648 clear_bit(MBX_UPDATE_FLASH_ACTIVE, &ha->mbx_cmd_flags);
1649 set_bit(ISP_ABORT_NEEDED, &ha->dpc_flags);
1650 qla2xxx_wake_dpc(ha);
1651 qla2x00_wait_for_hba_online(ha);
1652 scsi_unblock_requests(ha->host);
1654 return rval;