blob: bca173e56f1610e3f854515ab24493a814ebfd03 [file] [log] [blame]
Andrew Vasquezfa90c542005-10-27 11:10:08 -07001/*
2 * QLogic Fibre Channel HBA Driver
Armen Baloyanbd21eaf2014-04-11 16:54:24 -04003 * Copyright (c) 2003-2014 QLogic Corporation
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Andrew Vasquezfa90c542005-10-27 11:10:08 -07005 * See LICENSE.qla2xxx for copyright and licensing details.
6 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007#include "qla_def.h"
8
9#include <linux/delay.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090010#include <linux/slab.h>
Andrew Vasquez2c96d8d2007-10-19 15:59:15 -070011#include <linux/vmalloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <asm/uaccess.h>
13
Linus Torvalds1da177e2005-04-16 15:20:36 -070014/*
15 * NVRAM support routines
16 */
17
18/**
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -070019 * qla2x00_lock_nvram_access() -
Linus Torvalds1da177e2005-04-16 15:20:36 -070020 * @ha: HA context
21 */
Adrian Bunka824ebb2008-01-17 09:02:15 -080022static void
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -080023qla2x00_lock_nvram_access(struct qla_hw_data *ha)
Linus Torvalds1da177e2005-04-16 15:20:36 -070024{
25 uint16_t data;
Andrew Vasquez3d716442005-07-06 10:30:26 -070026 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
28 if (!IS_QLA2100(ha) && !IS_QLA2200(ha) && !IS_QLA2300(ha)) {
29 data = RD_REG_WORD(&reg->nvram);
30 while (data & NVR_BUSY) {
31 udelay(100);
32 data = RD_REG_WORD(&reg->nvram);
33 }
34
35 /* Lock resource */
36 WRT_REG_WORD(&reg->u.isp2300.host_semaphore, 0x1);
37 RD_REG_WORD(&reg->u.isp2300.host_semaphore);
38 udelay(5);
39 data = RD_REG_WORD(&reg->u.isp2300.host_semaphore);
40 while ((data & BIT_0) == 0) {
41 /* Lock failed */
42 udelay(100);
43 WRT_REG_WORD(&reg->u.isp2300.host_semaphore, 0x1);
44 RD_REG_WORD(&reg->u.isp2300.host_semaphore);
45 udelay(5);
46 data = RD_REG_WORD(&reg->u.isp2300.host_semaphore);
47 }
48 }
49}
50
51/**
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -070052 * qla2x00_unlock_nvram_access() -
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 * @ha: HA context
54 */
Adrian Bunka824ebb2008-01-17 09:02:15 -080055static void
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -080056qla2x00_unlock_nvram_access(struct qla_hw_data *ha)
Linus Torvalds1da177e2005-04-16 15:20:36 -070057{
Andrew Vasquez3d716442005-07-06 10:30:26 -070058 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60 if (!IS_QLA2100(ha) && !IS_QLA2200(ha) && !IS_QLA2300(ha)) {
61 WRT_REG_WORD(&reg->u.isp2300.host_semaphore, 0);
62 RD_REG_WORD(&reg->u.isp2300.host_semaphore);
63 }
64}
65
66/**
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -080067 * qla2x00_nv_write() - Prepare for NVRAM read/write operation.
68 * @ha: HA context
69 * @data: Serial interface selector
70 */
71static void
72qla2x00_nv_write(struct qla_hw_data *ha, uint16_t data)
73{
74 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
75
76 WRT_REG_WORD(&reg->nvram, data | NVR_SELECT | NVR_WRT_ENABLE);
77 RD_REG_WORD(&reg->nvram); /* PCI Posting. */
78 NVRAM_DELAY();
79 WRT_REG_WORD(&reg->nvram, data | NVR_SELECT | NVR_CLOCK |
80 NVR_WRT_ENABLE);
81 RD_REG_WORD(&reg->nvram); /* PCI Posting. */
82 NVRAM_DELAY();
83 WRT_REG_WORD(&reg->nvram, data | NVR_SELECT | NVR_WRT_ENABLE);
84 RD_REG_WORD(&reg->nvram); /* PCI Posting. */
85 NVRAM_DELAY();
86}
87
88/**
89 * qla2x00_nvram_request() - Sends read command to NVRAM and gets data from
90 * NVRAM.
91 * @ha: HA context
92 * @nv_cmd: NVRAM command
93 *
94 * Bit definitions for NVRAM command:
95 *
96 * Bit 26 = start bit
97 * Bit 25, 24 = opcode
98 * Bit 23-16 = address
99 * Bit 15-0 = write data
100 *
101 * Returns the word read from nvram @addr.
102 */
103static uint16_t
104qla2x00_nvram_request(struct qla_hw_data *ha, uint32_t nv_cmd)
105{
106 uint8_t cnt;
107 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
108 uint16_t data = 0;
109 uint16_t reg_data;
110
111 /* Send command to NVRAM. */
112 nv_cmd <<= 5;
113 for (cnt = 0; cnt < 11; cnt++) {
114 if (nv_cmd & BIT_31)
115 qla2x00_nv_write(ha, NVR_DATA_OUT);
116 else
117 qla2x00_nv_write(ha, 0);
118 nv_cmd <<= 1;
119 }
120
121 /* Read data from NVRAM. */
122 for (cnt = 0; cnt < 16; cnt++) {
123 WRT_REG_WORD(&reg->nvram, NVR_SELECT | NVR_CLOCK);
124 RD_REG_WORD(&reg->nvram); /* PCI Posting. */
125 NVRAM_DELAY();
126 data <<= 1;
127 reg_data = RD_REG_WORD(&reg->nvram);
128 if (reg_data & NVR_DATA_IN)
129 data |= BIT_0;
130 WRT_REG_WORD(&reg->nvram, NVR_SELECT);
131 RD_REG_WORD(&reg->nvram); /* PCI Posting. */
132 NVRAM_DELAY();
133 }
134
135 /* Deselect chip. */
136 WRT_REG_WORD(&reg->nvram, NVR_DESELECT);
137 RD_REG_WORD(&reg->nvram); /* PCI Posting. */
138 NVRAM_DELAY();
139
140 return data;
141}
142
143
144/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 * qla2x00_get_nvram_word() - Calculates word position in NVRAM and calls the
146 * request routine to get the word from NVRAM.
147 * @ha: HA context
148 * @addr: Address in NVRAM to read
149 *
150 * Returns the word read from nvram @addr.
151 */
Adrian Bunka824ebb2008-01-17 09:02:15 -0800152static uint16_t
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800153qla2x00_get_nvram_word(struct qla_hw_data *ha, uint32_t addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154{
155 uint16_t data;
156 uint32_t nv_cmd;
157
158 nv_cmd = addr << 16;
159 nv_cmd |= NV_READ_OP;
160 data = qla2x00_nvram_request(ha, nv_cmd);
161
162 return (data);
163}
164
165/**
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800166 * qla2x00_nv_deselect() - Deselect NVRAM operations.
167 * @ha: HA context
168 */
169static void
170qla2x00_nv_deselect(struct qla_hw_data *ha)
171{
172 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
173
174 WRT_REG_WORD(&reg->nvram, NVR_DESELECT);
175 RD_REG_WORD(&reg->nvram); /* PCI Posting. */
176 NVRAM_DELAY();
177}
178
179/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 * qla2x00_write_nvram_word() - Write NVRAM data.
181 * @ha: HA context
182 * @addr: Address in NVRAM to write
183 * @data: word to program
184 */
Adrian Bunka824ebb2008-01-17 09:02:15 -0800185static void
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800186qla2x00_write_nvram_word(struct qla_hw_data *ha, uint32_t addr, uint16_t data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187{
188 int count;
189 uint16_t word;
Ravi Anand45aeaf12006-05-17 15:08:49 -0700190 uint32_t nv_cmd, wait_cnt;
Andrew Vasquez3d716442005-07-06 10:30:26 -0700191 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700192 scsi_qla_host_t *vha = pci_get_drvdata(ha->pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
194 qla2x00_nv_write(ha, NVR_DATA_OUT);
195 qla2x00_nv_write(ha, 0);
196 qla2x00_nv_write(ha, 0);
197
198 for (word = 0; word < 8; word++)
199 qla2x00_nv_write(ha, NVR_DATA_OUT);
200
201 qla2x00_nv_deselect(ha);
202
203 /* Write data */
204 nv_cmd = (addr << 16) | NV_WRITE_OP;
205 nv_cmd |= data;
206 nv_cmd <<= 5;
207 for (count = 0; count < 27; count++) {
208 if (nv_cmd & BIT_31)
209 qla2x00_nv_write(ha, NVR_DATA_OUT);
210 else
211 qla2x00_nv_write(ha, 0);
212
213 nv_cmd <<= 1;
214 }
215
216 qla2x00_nv_deselect(ha);
217
218 /* Wait for NVRAM to become ready */
219 WRT_REG_WORD(&reg->nvram, NVR_SELECT);
Andrew Vasquezdcb36ce2005-11-08 14:37:06 -0800220 RD_REG_WORD(&reg->nvram); /* PCI Posting. */
Ravi Anand45aeaf12006-05-17 15:08:49 -0700221 wait_cnt = NVR_WAIT_CNT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 do {
Ravi Anand45aeaf12006-05-17 15:08:49 -0700223 if (!--wait_cnt) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700224 ql_dbg(ql_dbg_user, vha, 0x708d,
225 "NVRAM didn't go ready...\n");
Ravi Anand45aeaf12006-05-17 15:08:49 -0700226 break;
227 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 NVRAM_DELAY();
229 word = RD_REG_WORD(&reg->nvram);
230 } while ((word & NVR_DATA_IN) == 0);
231
232 qla2x00_nv_deselect(ha);
233
234 /* Disable writes */
235 qla2x00_nv_write(ha, NVR_DATA_OUT);
236 for (count = 0; count < 10; count++)
237 qla2x00_nv_write(ha, 0);
238
239 qla2x00_nv_deselect(ha);
240}
241
Andrew Vasquez459c5372005-07-06 10:31:07 -0700242static int
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800243qla2x00_write_nvram_word_tmo(struct qla_hw_data *ha, uint32_t addr,
244 uint16_t data, uint32_t tmo)
Andrew Vasquez459c5372005-07-06 10:31:07 -0700245{
246 int ret, count;
247 uint16_t word;
248 uint32_t nv_cmd;
249 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
250
251 ret = QLA_SUCCESS;
252
253 qla2x00_nv_write(ha, NVR_DATA_OUT);
254 qla2x00_nv_write(ha, 0);
255 qla2x00_nv_write(ha, 0);
256
257 for (word = 0; word < 8; word++)
258 qla2x00_nv_write(ha, NVR_DATA_OUT);
259
260 qla2x00_nv_deselect(ha);
261
262 /* Write data */
263 nv_cmd = (addr << 16) | NV_WRITE_OP;
264 nv_cmd |= data;
265 nv_cmd <<= 5;
266 for (count = 0; count < 27; count++) {
267 if (nv_cmd & BIT_31)
268 qla2x00_nv_write(ha, NVR_DATA_OUT);
269 else
270 qla2x00_nv_write(ha, 0);
271
272 nv_cmd <<= 1;
273 }
274
275 qla2x00_nv_deselect(ha);
276
277 /* Wait for NVRAM to become ready */
278 WRT_REG_WORD(&reg->nvram, NVR_SELECT);
Andrew Vasquezdcb36ce2005-11-08 14:37:06 -0800279 RD_REG_WORD(&reg->nvram); /* PCI Posting. */
Andrew Vasquez459c5372005-07-06 10:31:07 -0700280 do {
281 NVRAM_DELAY();
282 word = RD_REG_WORD(&reg->nvram);
283 if (!--tmo) {
284 ret = QLA_FUNCTION_FAILED;
285 break;
286 }
287 } while ((word & NVR_DATA_IN) == 0);
288
289 qla2x00_nv_deselect(ha);
290
291 /* Disable writes */
292 qla2x00_nv_write(ha, NVR_DATA_OUT);
293 for (count = 0; count < 10; count++)
294 qla2x00_nv_write(ha, 0);
295
296 qla2x00_nv_deselect(ha);
297
298 return ret;
299}
300
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301/**
Andrew Vasquez459c5372005-07-06 10:31:07 -0700302 * qla2x00_clear_nvram_protection() -
303 * @ha: HA context
304 */
305static int
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800306qla2x00_clear_nvram_protection(struct qla_hw_data *ha)
Andrew Vasquez459c5372005-07-06 10:31:07 -0700307{
308 int ret, stat;
309 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
Ravi Anand45aeaf12006-05-17 15:08:49 -0700310 uint32_t word, wait_cnt;
Andrew Vasquez459c5372005-07-06 10:31:07 -0700311 uint16_t wprot, wprot_old;
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700312 scsi_qla_host_t *vha = pci_get_drvdata(ha->pdev);
Andrew Vasquez459c5372005-07-06 10:31:07 -0700313
314 /* Clear NVRAM write protection. */
315 ret = QLA_FUNCTION_FAILED;
Ravi Anand45aeaf12006-05-17 15:08:49 -0700316
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,
Andrew Vasquez459c5372005-07-06 10:31:07 -0700319 __constant_cpu_to_le16(0x1234), 100000);
Ravi Anand45aeaf12006-05-17 15:08:49 -0700320 wprot = cpu_to_le16(qla2x00_get_nvram_word(ha, ha->nvram_base));
321 if (stat != QLA_SUCCESS || wprot != 0x1234) {
Andrew Vasquez459c5372005-07-06 10:31:07 -0700322 /* Write enable. */
323 qla2x00_nv_write(ha, NVR_DATA_OUT);
324 qla2x00_nv_write(ha, 0);
325 qla2x00_nv_write(ha, 0);
326 for (word = 0; word < 8; word++)
327 qla2x00_nv_write(ha, NVR_DATA_OUT);
328
329 qla2x00_nv_deselect(ha);
330
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);
337
338 qla2x00_nv_deselect(ha);
339
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);
346
347 qla2x00_nv_deselect(ha);
348
349 /* Wait for NVRAM to become ready. */
350 WRT_REG_WORD(&reg->nvram, NVR_SELECT);
Andrew Vasquezdcb36ce2005-11-08 14:37:06 -0800351 RD_REG_WORD(&reg->nvram); /* PCI Posting. */
Ravi Anand45aeaf12006-05-17 15:08:49 -0700352 wait_cnt = NVR_WAIT_CNT;
Andrew Vasquez459c5372005-07-06 10:31:07 -0700353 do {
Ravi Anand45aeaf12006-05-17 15:08:49 -0700354 if (!--wait_cnt) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700355 ql_dbg(ql_dbg_user, vha, 0x708e,
356 "NVRAM didn't go ready...\n");
Ravi Anand45aeaf12006-05-17 15:08:49 -0700357 break;
358 }
Andrew Vasquez459c5372005-07-06 10:31:07 -0700359 NVRAM_DELAY();
360 word = RD_REG_WORD(&reg->nvram);
361 } while ((word & NVR_DATA_IN) == 0);
362
Ravi Anand45aeaf12006-05-17 15:08:49 -0700363 if (wait_cnt)
364 ret = QLA_SUCCESS;
Andrew Vasquez459c5372005-07-06 10:31:07 -0700365 } else
Ravi Anand45aeaf12006-05-17 15:08:49 -0700366 qla2x00_write_nvram_word(ha, ha->nvram_base, wprot_old);
Andrew Vasquez459c5372005-07-06 10:31:07 -0700367
368 return ret;
369}
370
371static void
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800372qla2x00_set_nvram_protection(struct qla_hw_data *ha, int stat)
Andrew Vasquez459c5372005-07-06 10:31:07 -0700373{
374 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
Ravi Anand45aeaf12006-05-17 15:08:49 -0700375 uint32_t word, wait_cnt;
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700376 scsi_qla_host_t *vha = pci_get_drvdata(ha->pdev);
Andrew Vasquez459c5372005-07-06 10:31:07 -0700377
378 if (stat != QLA_SUCCESS)
379 return;
380
381 /* Set NVRAM write protection. */
382 /* Write enable. */
383 qla2x00_nv_write(ha, NVR_DATA_OUT);
384 qla2x00_nv_write(ha, 0);
385 qla2x00_nv_write(ha, 0);
386 for (word = 0; word < 8; word++)
387 qla2x00_nv_write(ha, NVR_DATA_OUT);
388
389 qla2x00_nv_deselect(ha);
390
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);
397
398 qla2x00_nv_deselect(ha);
399
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);
406
407 qla2x00_nv_deselect(ha);
408
409 /* Wait for NVRAM to become ready. */
410 WRT_REG_WORD(&reg->nvram, NVR_SELECT);
Andrew Vasquezdcb36ce2005-11-08 14:37:06 -0800411 RD_REG_WORD(&reg->nvram); /* PCI Posting. */
Ravi Anand45aeaf12006-05-17 15:08:49 -0700412 wait_cnt = NVR_WAIT_CNT;
Andrew Vasquez459c5372005-07-06 10:31:07 -0700413 do {
Ravi Anand45aeaf12006-05-17 15:08:49 -0700414 if (!--wait_cnt) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700415 ql_dbg(ql_dbg_user, vha, 0x708f,
416 "NVRAM didn't go ready...\n");
Ravi Anand45aeaf12006-05-17 15:08:49 -0700417 break;
418 }
Andrew Vasquez459c5372005-07-06 10:31:07 -0700419 NVRAM_DELAY();
420 word = RD_REG_WORD(&reg->nvram);
421 } while ((word & NVR_DATA_IN) == 0);
422}
423
424
425/*****************************************************************************/
426/* Flash Manipulation Routines */
427/*****************************************************************************/
428
429static inline uint32_t
Andrew Vasquez3a03eb72009-01-05 11:18:11 -0800430flash_conf_addr(struct qla_hw_data *ha, uint32_t faddr)
Andrew Vasquez459c5372005-07-06 10:31:07 -0700431{
Andrew Vasquez3a03eb72009-01-05 11:18:11 -0800432 return ha->flash_conf_off | faddr;
Andrew Vasquez459c5372005-07-06 10:31:07 -0700433}
434
435static inline uint32_t
Andrew Vasquez3a03eb72009-01-05 11:18:11 -0800436flash_data_addr(struct qla_hw_data *ha, uint32_t faddr)
Andrew Vasquez459c5372005-07-06 10:31:07 -0700437{
Andrew Vasquez3a03eb72009-01-05 11:18:11 -0800438 return ha->flash_data_off | faddr;
Andrew Vasquez459c5372005-07-06 10:31:07 -0700439}
440
441static inline uint32_t
Andrew Vasquez3a03eb72009-01-05 11:18:11 -0800442nvram_conf_addr(struct qla_hw_data *ha, uint32_t naddr)
Andrew Vasquez459c5372005-07-06 10:31:07 -0700443{
Andrew Vasquez3a03eb72009-01-05 11:18:11 -0800444 return ha->nvram_conf_off | naddr;
Andrew Vasquez459c5372005-07-06 10:31:07 -0700445}
446
447static inline uint32_t
Andrew Vasquez3a03eb72009-01-05 11:18:11 -0800448nvram_data_addr(struct qla_hw_data *ha, uint32_t naddr)
Andrew Vasquez459c5372005-07-06 10:31:07 -0700449{
Andrew Vasquez3a03eb72009-01-05 11:18:11 -0800450 return ha->nvram_data_off | naddr;
Andrew Vasquez459c5372005-07-06 10:31:07 -0700451}
452
Adrian Bunke5f82ab2006-11-08 19:55:50 -0800453static uint32_t
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800454qla24xx_read_flash_dword(struct qla_hw_data *ha, uint32_t addr)
Andrew Vasquez459c5372005-07-06 10:31:07 -0700455{
456 int rval;
457 uint32_t cnt, data;
458 struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
459
460 WRT_REG_DWORD(&reg->flash_addr, addr & ~FARX_DATA_FLAG);
461 /* Wait for READ cycle to complete. */
462 rval = QLA_SUCCESS;
463 for (cnt = 3000;
464 (RD_REG_DWORD(&reg->flash_addr) & FARX_DATA_FLAG) == 0 &&
465 rval == QLA_SUCCESS; cnt--) {
466 if (cnt)
467 udelay(10);
468 else
469 rval = QLA_FUNCTION_TIMEOUT;
Andrew Vasquez40a2e342007-03-12 10:41:28 -0700470 cond_resched();
Andrew Vasquez459c5372005-07-06 10:31:07 -0700471 }
472
473 /* TODO: What happens if we time out? */
474 data = 0xDEADDEAD;
475 if (rval == QLA_SUCCESS)
476 data = RD_REG_DWORD(&reg->flash_data);
477
478 return data;
479}
480
481uint32_t *
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800482qla24xx_read_flash_data(scsi_qla_host_t *vha, uint32_t *dwptr, uint32_t faddr,
Andrew Vasquez459c5372005-07-06 10:31:07 -0700483 uint32_t dwords)
484{
485 uint32_t i;
Andrew Vasquez3a03eb72009-01-05 11:18:11 -0800486 struct qla_hw_data *ha = vha->hw;
487
Andrew Vasquez459c5372005-07-06 10:31:07 -0700488 /* Dword reads to flash. */
489 for (i = 0; i < dwords; i++, faddr++)
Andrew Vasquez3a03eb72009-01-05 11:18:11 -0800490 dwptr[i] = cpu_to_le32(qla24xx_read_flash_dword(ha,
491 flash_data_addr(ha, faddr)));
Andrew Vasquez459c5372005-07-06 10:31:07 -0700492
Andrew Vasquez459c5372005-07-06 10:31:07 -0700493 return dwptr;
494}
495
Adrian Bunke5f82ab2006-11-08 19:55:50 -0800496static int
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800497qla24xx_write_flash_dword(struct qla_hw_data *ha, uint32_t addr, uint32_t data)
Andrew Vasquez459c5372005-07-06 10:31:07 -0700498{
499 int rval;
500 uint32_t cnt;
501 struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
502
503 WRT_REG_DWORD(&reg->flash_data, data);
504 RD_REG_DWORD(&reg->flash_data); /* PCI Posting. */
505 WRT_REG_DWORD(&reg->flash_addr, addr | FARX_DATA_FLAG);
506 /* Wait for Write cycle to complete. */
507 rval = QLA_SUCCESS;
508 for (cnt = 500000; (RD_REG_DWORD(&reg->flash_addr) & FARX_DATA_FLAG) &&
509 rval == QLA_SUCCESS; cnt--) {
510 if (cnt)
511 udelay(10);
512 else
513 rval = QLA_FUNCTION_TIMEOUT;
Andrew Vasquez40a2e342007-03-12 10:41:28 -0700514 cond_resched();
Andrew Vasquez459c5372005-07-06 10:31:07 -0700515 }
516 return rval;
517}
518
Adrian Bunke5f82ab2006-11-08 19:55:50 -0800519static void
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800520qla24xx_get_flash_manufacturer(struct qla_hw_data *ha, uint8_t *man_id,
Andrew Vasquez459c5372005-07-06 10:31:07 -0700521 uint8_t *flash_id)
522{
523 uint32_t ids;
524
Andrew Vasquez3a03eb72009-01-05 11:18:11 -0800525 ids = qla24xx_read_flash_dword(ha, flash_conf_addr(ha, 0x03ab));
Andrew Vasquez459c5372005-07-06 10:31:07 -0700526 *man_id = LSB(ids);
527 *flash_id = MSB(ids);
Ravi Anand45aeaf12006-05-17 15:08:49 -0700528
529 /* Check if man_id and flash_id are valid. */
530 if (ids != 0xDEADDEAD && (*man_id == 0 || *flash_id == 0)) {
531 /* Read information using 0x9f opcode
532 * Device ID, Mfg ID would be read in the format:
533 * <Ext Dev Info><Device ID Part2><Device ID Part 1><Mfg ID>
534 * Example: ATMEL 0x00 01 45 1F
535 * Extract MFG and Dev ID from last two bytes.
536 */
Andrew Vasquez3a03eb72009-01-05 11:18:11 -0800537 ids = qla24xx_read_flash_dword(ha, flash_conf_addr(ha, 0x009f));
Ravi Anand45aeaf12006-05-17 15:08:49 -0700538 *man_id = LSB(ids);
539 *flash_id = MSB(ids);
540 }
Andrew Vasquez459c5372005-07-06 10:31:07 -0700541}
542
Andrew Vasquezc00d8992008-09-11 21:22:49 -0700543static int
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800544qla2xxx_find_flt_start(scsi_qla_host_t *vha, uint32_t *start)
Andrew Vasquezc00d8992008-09-11 21:22:49 -0700545{
546 const char *loc, *locations[] = { "DEF", "PCI" };
547 uint32_t pcihdr, pcids;
548 uint32_t *dcode;
549 uint8_t *buf, *bcode, last_image;
550 uint16_t cnt, chksum, *wptr;
551 struct qla_flt_location *fltl;
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800552 struct qla_hw_data *ha = vha->hw;
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800553 struct req_que *req = ha->req_q_map[0];
Andrew Vasquezc00d8992008-09-11 21:22:49 -0700554
555 /*
556 * FLT-location structure resides after the last PCI region.
557 */
558
559 /* Begin with sane defaults. */
560 loc = locations[0];
Andrew Vasquez3a03eb72009-01-05 11:18:11 -0800561 *start = 0;
562 if (IS_QLA24XX_TYPE(ha))
563 *start = FA_FLASH_LAYOUT_ADDR_24;
564 else if (IS_QLA25XX(ha))
565 *start = FA_FLASH_LAYOUT_ADDR;
566 else if (IS_QLA81XX(ha))
567 *start = FA_FLASH_LAYOUT_ADDR_81;
Atul Deshmukh7ec0eff2013-08-27 01:37:28 -0400568 else if (IS_P3P_TYPE(ha)) {
Giridhar Malavalia9083012010-04-12 17:59:55 -0700569 *start = FA_FLASH_LAYOUT_ADDR_82;
570 goto end;
Chad Dupuisf73cb692014-02-26 04:15:06 -0500571 } else if (IS_QLA83XX(ha) || IS_QLA27XX(ha)) {
Giridhar Malavali6246b8a2012-02-09 11:15:34 -0800572 *start = FA_FLASH_LAYOUT_ADDR_83;
573 goto end;
Giridhar Malavalia9083012010-04-12 17:59:55 -0700574 }
Andrew Vasquezc00d8992008-09-11 21:22:49 -0700575 /* Begin with first PCI expansion ROM header. */
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800576 buf = (uint8_t *)req->ring;
577 dcode = (uint32_t *)req->ring;
Andrew Vasquezc00d8992008-09-11 21:22:49 -0700578 pcihdr = 0;
579 last_image = 1;
580 do {
581 /* Verify PCI expansion ROM header. */
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800582 qla24xx_read_flash_data(vha, dcode, pcihdr >> 2, 0x20);
Andrew Vasquezc00d8992008-09-11 21:22:49 -0700583 bcode = buf + (pcihdr % 4);
584 if (bcode[0x0] != 0x55 || bcode[0x1] != 0xaa)
585 goto end;
586
587 /* Locate PCI data structure. */
588 pcids = pcihdr + ((bcode[0x19] << 8) | bcode[0x18]);
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800589 qla24xx_read_flash_data(vha, dcode, pcids >> 2, 0x20);
Andrew Vasquezc00d8992008-09-11 21:22:49 -0700590 bcode = buf + (pcihdr % 4);
591
592 /* Validate signature of PCI data structure. */
593 if (bcode[0x0] != 'P' || bcode[0x1] != 'C' ||
594 bcode[0x2] != 'I' || bcode[0x3] != 'R')
595 goto end;
596
597 last_image = bcode[0x15] & BIT_7;
598
599 /* Locate next PCI expansion ROM. */
600 pcihdr += ((bcode[0x11] << 8) | bcode[0x10]) * 512;
601 } while (!last_image);
602
603 /* Now verify FLT-location structure. */
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800604 fltl = (struct qla_flt_location *)req->ring;
605 qla24xx_read_flash_data(vha, dcode, pcihdr >> 2,
Andrew Vasquezc00d8992008-09-11 21:22:49 -0700606 sizeof(struct qla_flt_location) >> 2);
607 if (fltl->sig[0] != 'Q' || fltl->sig[1] != 'F' ||
608 fltl->sig[2] != 'L' || fltl->sig[3] != 'T')
609 goto end;
610
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800611 wptr = (uint16_t *)req->ring;
Andrew Vasquezc00d8992008-09-11 21:22:49 -0700612 cnt = sizeof(struct qla_flt_location) >> 1;
613 for (chksum = 0; cnt; cnt--)
614 chksum += le16_to_cpu(*wptr++);
615 if (chksum) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700616 ql_log(ql_log_fatal, vha, 0x0045,
Andrew Vasquezc00d8992008-09-11 21:22:49 -0700617 "Inconsistent FLTL detected: checksum=0x%x.\n", chksum);
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700618 ql_dump_buffer(ql_dbg_init + ql_dbg_buffer, vha, 0x010e,
619 buf, sizeof(struct qla_flt_location));
Andrew Vasquezc00d8992008-09-11 21:22:49 -0700620 return QLA_FUNCTION_FAILED;
621 }
622
623 /* Good data. Use specified location. */
624 loc = locations[1];
Harish Zunjarrao79c13a72009-03-24 09:08:19 -0700625 *start = (le16_to_cpu(fltl->start_hi) << 16 |
626 le16_to_cpu(fltl->start_lo)) >> 2;
Andrew Vasquezc00d8992008-09-11 21:22:49 -0700627end:
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700628 ql_dbg(ql_dbg_init, vha, 0x0046,
629 "FLTL[%s] = 0x%x.\n",
630 loc, *start);
Andrew Vasquezc00d8992008-09-11 21:22:49 -0700631 return QLA_SUCCESS;
632}
633
634static void
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800635qla2xxx_get_flt_info(scsi_qla_host_t *vha, uint32_t flt_addr)
Andrew Vasquezc00d8992008-09-11 21:22:49 -0700636{
637 const char *loc, *locations[] = { "DEF", "FLT" };
Andrew Vasquez3a03eb72009-01-05 11:18:11 -0800638 const uint32_t def_fw[] =
639 { FA_RISC_CODE_ADDR, FA_RISC_CODE_ADDR, FA_RISC_CODE_ADDR_81 };
640 const uint32_t def_boot[] =
641 { FA_BOOT_CODE_ADDR, FA_BOOT_CODE_ADDR, FA_BOOT_CODE_ADDR_81 };
642 const uint32_t def_vpd_nvram[] =
643 { FA_VPD_NVRAM_ADDR, FA_VPD_NVRAM_ADDR, FA_VPD_NVRAM_ADDR_81 };
Andrew Vasquez3d79038f2009-03-24 09:08:14 -0700644 const uint32_t def_vpd0[] =
645 { 0, 0, FA_VPD0_ADDR_81 };
646 const uint32_t def_vpd1[] =
647 { 0, 0, FA_VPD1_ADDR_81 };
648 const uint32_t def_nvram0[] =
649 { 0, 0, FA_NVRAM0_ADDR_81 };
650 const uint32_t def_nvram1[] =
651 { 0, 0, FA_NVRAM1_ADDR_81 };
Andrew Vasquez3a03eb72009-01-05 11:18:11 -0800652 const uint32_t def_fdt[] =
653 { FA_FLASH_DESCR_ADDR_24, FA_FLASH_DESCR_ADDR,
654 FA_FLASH_DESCR_ADDR_81 };
655 const uint32_t def_npiv_conf0[] =
656 { FA_NPIV_CONF0_ADDR_24, FA_NPIV_CONF0_ADDR,
657 FA_NPIV_CONF0_ADDR_81 };
658 const uint32_t def_npiv_conf1[] =
659 { FA_NPIV_CONF1_ADDR_24, FA_NPIV_CONF1_ADDR,
660 FA_NPIV_CONF1_ADDR_81 };
Sarang Radke09ff7012010-03-19 17:03:59 -0700661 const uint32_t fcp_prio_cfg0[] =
662 { FA_FCP_PRIO0_ADDR, FA_FCP_PRIO0_ADDR_25,
663 0 };
664 const uint32_t fcp_prio_cfg1[] =
665 { FA_FCP_PRIO1_ADDR, FA_FCP_PRIO1_ADDR_25,
666 0 };
Andrew Vasquez3a03eb72009-01-05 11:18:11 -0800667 uint32_t def;
Andrew Vasquezc00d8992008-09-11 21:22:49 -0700668 uint16_t *wptr;
669 uint16_t cnt, chksum;
670 uint32_t start;
671 struct qla_flt_header *flt;
672 struct qla_flt_region *region;
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800673 struct qla_hw_data *ha = vha->hw;
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800674 struct req_que *req = ha->req_q_map[0];
Andrew Vasquezc00d8992008-09-11 21:22:49 -0700675
Madhuranath Iyengar2f0f3f42010-07-23 15:28:24 +0500676 def = 0;
677 if (IS_QLA25XX(ha))
678 def = 1;
679 else if (IS_QLA81XX(ha))
680 def = 2;
Andrew Vasquezff8073f2010-12-21 16:00:16 -0800681
682 /* Assign FCP prio region since older adapters may not have FLT, or
683 FCP prio region in it's FLT.
684 */
Chad Dupuisf73cb692014-02-26 04:15:06 -0500685 ha->flt_region_fcp_prio = (ha->port_no == 0) ?
Andrew Vasquezff8073f2010-12-21 16:00:16 -0800686 fcp_prio_cfg0[def] : fcp_prio_cfg1[def];
687
Andrew Vasquezc00d8992008-09-11 21:22:49 -0700688 ha->flt_region_flt = flt_addr;
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800689 wptr = (uint16_t *)req->ring;
690 flt = (struct qla_flt_header *)req->ring;
Andrew Vasquezc00d8992008-09-11 21:22:49 -0700691 region = (struct qla_flt_region *)&flt[1];
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800692 ha->isp_ops->read_optrom(vha, (uint8_t *)req->ring,
Andrew Vasquezc00d8992008-09-11 21:22:49 -0700693 flt_addr << 2, OPTROM_BURST_SIZE);
694 if (*wptr == __constant_cpu_to_le16(0xffff))
695 goto no_flash_data;
696 if (flt->version != __constant_cpu_to_le16(1)) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700697 ql_log(ql_log_warn, vha, 0x0047,
698 "Unsupported FLT detected: version=0x%x length=0x%x checksum=0x%x.\n",
Andrew Vasquezc00d8992008-09-11 21:22:49 -0700699 le16_to_cpu(flt->version), le16_to_cpu(flt->length),
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700700 le16_to_cpu(flt->checksum));
Andrew Vasquezc00d8992008-09-11 21:22:49 -0700701 goto no_flash_data;
702 }
703
704 cnt = (sizeof(struct qla_flt_header) + le16_to_cpu(flt->length)) >> 1;
705 for (chksum = 0; cnt; cnt--)
706 chksum += le16_to_cpu(*wptr++);
707 if (chksum) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700708 ql_log(ql_log_fatal, vha, 0x0048,
709 "Inconsistent FLT detected: version=0x%x length=0x%x checksum=0x%x.\n",
Andrew Vasquezc00d8992008-09-11 21:22:49 -0700710 le16_to_cpu(flt->version), le16_to_cpu(flt->length),
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700711 le16_to_cpu(flt->checksum));
Andrew Vasquezc00d8992008-09-11 21:22:49 -0700712 goto no_flash_data;
713 }
714
715 loc = locations[1];
716 cnt = le16_to_cpu(flt->length) / sizeof(struct qla_flt_region);
717 for ( ; cnt; cnt--, region++) {
718 /* Store addresses as DWORD offsets. */
719 start = le32_to_cpu(region->start) >> 2;
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700720 ql_dbg(ql_dbg_init, vha, 0x0049,
721 "FLT[%02x]: start=0x%x "
Atul Deshmukh7ec0eff2013-08-27 01:37:28 -0400722 "end=0x%x size=0x%x.\n", le32_to_cpu(region->code) & 0xff,
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700723 start, le32_to_cpu(region->end) >> 2,
724 le32_to_cpu(region->size));
Andrew Vasquezc00d8992008-09-11 21:22:49 -0700725
Andrew Vasquez90886082009-02-08 20:50:14 -0800726 switch (le32_to_cpu(region->code) & 0xff) {
Giridhar Malavali6246b8a2012-02-09 11:15:34 -0800727 case FLT_REG_FCOE_FW:
728 if (!IS_QLA8031(ha))
729 break;
730 ha->flt_region_fw = start;
731 break;
Andrew Vasquezc00d8992008-09-11 21:22:49 -0700732 case FLT_REG_FW:
Giridhar Malavali6246b8a2012-02-09 11:15:34 -0800733 if (IS_QLA8031(ha))
734 break;
Andrew Vasquezc00d8992008-09-11 21:22:49 -0700735 ha->flt_region_fw = start;
736 break;
737 case FLT_REG_BOOT_CODE:
738 ha->flt_region_boot = start;
739 break;
740 case FLT_REG_VPD_0:
Giridhar Malavali6246b8a2012-02-09 11:15:34 -0800741 if (IS_QLA8031(ha))
742 break;
Andrew Vasquezc00d8992008-09-11 21:22:49 -0700743 ha->flt_region_vpd_nvram = start;
Atul Deshmukh7ec0eff2013-08-27 01:37:28 -0400744 if (IS_P3P_TYPE(ha))
Giridhar Malavalia9083012010-04-12 17:59:55 -0700745 break;
Chad Dupuisf73cb692014-02-26 04:15:06 -0500746 if (ha->port_no == 0)
Andrew Vasquez3d79038f2009-03-24 09:08:14 -0700747 ha->flt_region_vpd = start;
748 break;
749 case FLT_REG_VPD_1:
Atul Deshmukh7ec0eff2013-08-27 01:37:28 -0400750 if (IS_P3P_TYPE(ha) || IS_QLA8031(ha))
Giridhar Malavalia9083012010-04-12 17:59:55 -0700751 break;
Chad Dupuisf73cb692014-02-26 04:15:06 -0500752 if (ha->port_no == 1)
753 ha->flt_region_vpd = start;
754 break;
755 case FLT_REG_VPD_2:
756 if (!IS_QLA27XX(ha))
757 break;
758 if (ha->port_no == 2)
759 ha->flt_region_vpd = start;
760 break;
761 case FLT_REG_VPD_3:
762 if (!IS_QLA27XX(ha))
763 break;
764 if (ha->port_no == 3)
Andrew Vasquez3d79038f2009-03-24 09:08:14 -0700765 ha->flt_region_vpd = start;
766 break;
767 case FLT_REG_NVRAM_0:
Giridhar Malavali6246b8a2012-02-09 11:15:34 -0800768 if (IS_QLA8031(ha))
769 break;
Chad Dupuisf73cb692014-02-26 04:15:06 -0500770 if (ha->port_no == 0)
Andrew Vasquez3d79038f2009-03-24 09:08:14 -0700771 ha->flt_region_nvram = start;
772 break;
773 case FLT_REG_NVRAM_1:
Giridhar Malavali6246b8a2012-02-09 11:15:34 -0800774 if (IS_QLA8031(ha))
775 break;
Chad Dupuisf73cb692014-02-26 04:15:06 -0500776 if (ha->port_no == 1)
777 ha->flt_region_nvram = start;
778 break;
779 case FLT_REG_NVRAM_2:
780 if (!IS_QLA27XX(ha))
781 break;
782 if (ha->port_no == 2)
783 ha->flt_region_nvram = start;
784 break;
785 case FLT_REG_NVRAM_3:
786 if (!IS_QLA27XX(ha))
787 break;
788 if (ha->port_no == 3)
Andrew Vasquez3d79038f2009-03-24 09:08:14 -0700789 ha->flt_region_nvram = start;
Andrew Vasquezc00d8992008-09-11 21:22:49 -0700790 break;
791 case FLT_REG_FDT:
792 ha->flt_region_fdt = start;
793 break;
Andrew Vasquez272976c2008-09-11 21:22:50 -0700794 case FLT_REG_NPIV_CONF_0:
Chad Dupuisf73cb692014-02-26 04:15:06 -0500795 if (ha->port_no == 0)
Andrew Vasquez272976c2008-09-11 21:22:50 -0700796 ha->flt_region_npiv_conf = start;
797 break;
798 case FLT_REG_NPIV_CONF_1:
Chad Dupuisf73cb692014-02-26 04:15:06 -0500799 if (ha->port_no == 1)
Andrew Vasquez272976c2008-09-11 21:22:50 -0700800 ha->flt_region_npiv_conf = start;
801 break;
Andrew Vasquezcbc8eb62009-06-03 09:55:17 -0700802 case FLT_REG_GOLD_FW:
803 ha->flt_region_gold_fw = start;
804 break;
Sarang Radke09ff7012010-03-19 17:03:59 -0700805 case FLT_REG_FCP_PRIO_0:
Chad Dupuisf73cb692014-02-26 04:15:06 -0500806 if (ha->port_no == 0)
Sarang Radke09ff7012010-03-19 17:03:59 -0700807 ha->flt_region_fcp_prio = start;
808 break;
809 case FLT_REG_FCP_PRIO_1:
Chad Dupuisf73cb692014-02-26 04:15:06 -0500810 if (ha->port_no == 1)
Sarang Radke09ff7012010-03-19 17:03:59 -0700811 ha->flt_region_fcp_prio = start;
812 break;
Giridhar Malavalia9083012010-04-12 17:59:55 -0700813 case FLT_REG_BOOT_CODE_82XX:
814 ha->flt_region_boot = start;
815 break;
Atul Deshmukh7ec0eff2013-08-27 01:37:28 -0400816 case FLT_REG_BOOT_CODE_8044:
817 if (IS_QLA8044(ha))
818 ha->flt_region_boot = start;
819 break;
Giridhar Malavalia9083012010-04-12 17:59:55 -0700820 case FLT_REG_FW_82XX:
821 ha->flt_region_fw = start;
822 break;
Atul Deshmukh7ec0eff2013-08-27 01:37:28 -0400823 case FLT_REG_CNA_FW:
824 if (IS_CNA_CAPABLE(ha))
825 ha->flt_region_fw = start;
826 break;
Giridhar Malavalia9083012010-04-12 17:59:55 -0700827 case FLT_REG_GOLD_FW_82XX:
828 ha->flt_region_gold_fw = start;
829 break;
830 case FLT_REG_BOOTLOAD_82XX:
831 ha->flt_region_bootload = start;
832 break;
Saurav Kashyapa865c502013-02-08 01:57:43 -0500833 case FLT_REG_VPD_8XXX:
834 if (IS_CNA_CAPABLE(ha))
Giridhar Malavali6246b8a2012-02-09 11:15:34 -0800835 ha->flt_region_vpd = start;
836 break;
837 case FLT_REG_FCOE_NVRAM_0:
Atul Deshmukh7ec0eff2013-08-27 01:37:28 -0400838 if (!(IS_QLA8031(ha) || IS_QLA8044(ha)))
Giridhar Malavali6246b8a2012-02-09 11:15:34 -0800839 break;
Chad Dupuisf73cb692014-02-26 04:15:06 -0500840 if (ha->port_no == 0)
Giridhar Malavali6246b8a2012-02-09 11:15:34 -0800841 ha->flt_region_nvram = start;
842 break;
843 case FLT_REG_FCOE_NVRAM_1:
Atul Deshmukh7ec0eff2013-08-27 01:37:28 -0400844 if (!(IS_QLA8031(ha) || IS_QLA8044(ha)))
Giridhar Malavali6246b8a2012-02-09 11:15:34 -0800845 break;
Chad Dupuisf73cb692014-02-26 04:15:06 -0500846 if (ha->port_no == 1)
Giridhar Malavali6246b8a2012-02-09 11:15:34 -0800847 ha->flt_region_nvram = start;
848 break;
Andrew Vasquezc00d8992008-09-11 21:22:49 -0700849 }
850 }
851 goto done;
852
853no_flash_data:
854 /* Use hardcoded defaults. */
855 loc = locations[0];
Andrew Vasquez3a03eb72009-01-05 11:18:11 -0800856 ha->flt_region_fw = def_fw[def];
857 ha->flt_region_boot = def_boot[def];
858 ha->flt_region_vpd_nvram = def_vpd_nvram[def];
Chad Dupuisf73cb692014-02-26 04:15:06 -0500859 ha->flt_region_vpd = (ha->port_no == 0) ?
Sarang Radke09ff7012010-03-19 17:03:59 -0700860 def_vpd0[def] : def_vpd1[def];
Chad Dupuisf73cb692014-02-26 04:15:06 -0500861 ha->flt_region_nvram = (ha->port_no == 0) ?
Sarang Radke09ff7012010-03-19 17:03:59 -0700862 def_nvram0[def] : def_nvram1[def];
Andrew Vasquez3a03eb72009-01-05 11:18:11 -0800863 ha->flt_region_fdt = def_fdt[def];
Chad Dupuisf73cb692014-02-26 04:15:06 -0500864 ha->flt_region_npiv_conf = (ha->port_no == 0) ?
Sarang Radke09ff7012010-03-19 17:03:59 -0700865 def_npiv_conf0[def] : def_npiv_conf1[def];
Andrew Vasquezc00d8992008-09-11 21:22:49 -0700866done:
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700867 ql_dbg(ql_dbg_init, vha, 0x004a,
Giridhar Malavali6246b8a2012-02-09 11:15:34 -0800868 "FLT[%s]: boot=0x%x fw=0x%x vpd_nvram=0x%x vpd=0x%x nvram=0x%x "
869 "fdt=0x%x flt=0x%x npiv=0x%x fcp_prif_cfg=0x%x.\n",
870 loc, ha->flt_region_boot, ha->flt_region_fw,
871 ha->flt_region_vpd_nvram, ha->flt_region_vpd, ha->flt_region_nvram,
872 ha->flt_region_fdt, ha->flt_region_flt, ha->flt_region_npiv_conf,
873 ha->flt_region_fcp_prio);
Andrew Vasquezc00d8992008-09-11 21:22:49 -0700874}
875
876static void
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800877qla2xxx_get_fdt_info(scsi_qla_host_t *vha)
Andrew Vasquez7d232c72008-04-03 13:13:22 -0700878{
Lalit Chandivade821b3992008-10-24 15:13:44 -0700879#define FLASH_BLK_SIZE_4K 0x1000
Andrew Vasquez7d232c72008-04-03 13:13:22 -0700880#define FLASH_BLK_SIZE_32K 0x8000
881#define FLASH_BLK_SIZE_64K 0x10000
Andrew Vasquezc00d8992008-09-11 21:22:49 -0700882 const char *loc, *locations[] = { "MID", "FDT" };
Andrew Vasquez7d232c72008-04-03 13:13:22 -0700883 uint16_t cnt, chksum;
884 uint16_t *wptr;
885 struct qla_fdt_layout *fdt;
886 uint8_t man_id, flash_id;
Giridhar Malavalia9083012010-04-12 17:59:55 -0700887 uint16_t mid = 0, fid = 0;
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800888 struct qla_hw_data *ha = vha->hw;
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800889 struct req_que *req = ha->req_q_map[0];
Andrew Vasquez7d232c72008-04-03 13:13:22 -0700890
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800891 wptr = (uint16_t *)req->ring;
892 fdt = (struct qla_fdt_layout *)req->ring;
893 ha->isp_ops->read_optrom(vha, (uint8_t *)req->ring,
Andrew Vasquezc00d8992008-09-11 21:22:49 -0700894 ha->flt_region_fdt << 2, OPTROM_BURST_SIZE);
Andrew Vasquez7d232c72008-04-03 13:13:22 -0700895 if (*wptr == __constant_cpu_to_le16(0xffff))
896 goto no_flash_data;
897 if (fdt->sig[0] != 'Q' || fdt->sig[1] != 'L' || fdt->sig[2] != 'I' ||
898 fdt->sig[3] != 'D')
899 goto no_flash_data;
900
901 for (cnt = 0, chksum = 0; cnt < sizeof(struct qla_fdt_layout) >> 1;
902 cnt++)
903 chksum += le16_to_cpu(*wptr++);
904 if (chksum) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700905 ql_dbg(ql_dbg_init, vha, 0x004c,
906 "Inconsistent FDT detected:"
907 " checksum=0x%x id=%c version0x%x.\n", chksum,
908 fdt->sig[0], le16_to_cpu(fdt->version));
909 ql_dump_buffer(ql_dbg_init + ql_dbg_buffer, vha, 0x0113,
910 (uint8_t *)fdt, sizeof(*fdt));
Andrew Vasquez7d232c72008-04-03 13:13:22 -0700911 goto no_flash_data;
912 }
913
Andrew Vasquezc00d8992008-09-11 21:22:49 -0700914 loc = locations[1];
915 mid = le16_to_cpu(fdt->man_id);
916 fid = le16_to_cpu(fdt->id);
Andrew Vasquez7d232c72008-04-03 13:13:22 -0700917 ha->fdt_wrt_disable = fdt->wrt_disable_bits;
Atul Deshmukh7ec0eff2013-08-27 01:37:28 -0400918 ha->fdt_wrt_enable = fdt->wrt_enable_bits;
919 ha->fdt_wrt_sts_reg_cmd = fdt->wrt_sts_reg_cmd;
920 if (IS_QLA8044(ha))
921 ha->fdt_erase_cmd = fdt->erase_cmd;
922 else
923 ha->fdt_erase_cmd =
924 flash_conf_addr(ha, 0x0300 | fdt->erase_cmd);
Andrew Vasquez7d232c72008-04-03 13:13:22 -0700925 ha->fdt_block_size = le32_to_cpu(fdt->block_size);
926 if (fdt->unprotect_sec_cmd) {
Andrew Vasquez3a03eb72009-01-05 11:18:11 -0800927 ha->fdt_unprotect_sec_cmd = flash_conf_addr(ha, 0x0300 |
Andrew Vasquez7d232c72008-04-03 13:13:22 -0700928 fdt->unprotect_sec_cmd);
929 ha->fdt_protect_sec_cmd = fdt->protect_sec_cmd ?
Andrew Vasquez3a03eb72009-01-05 11:18:11 -0800930 flash_conf_addr(ha, 0x0300 | fdt->protect_sec_cmd):
931 flash_conf_addr(ha, 0x0336);
Andrew Vasquez7d232c72008-04-03 13:13:22 -0700932 }
Andrew Vasquezc00d8992008-09-11 21:22:49 -0700933 goto done;
Andrew Vasquez7d232c72008-04-03 13:13:22 -0700934no_flash_data:
Andrew Vasquezc00d8992008-09-11 21:22:49 -0700935 loc = locations[0];
Atul Deshmukh7ec0eff2013-08-27 01:37:28 -0400936 if (IS_P3P_TYPE(ha)) {
Giridhar Malavalia9083012010-04-12 17:59:55 -0700937 ha->fdt_block_size = FLASH_BLK_SIZE_64K;
938 goto done;
939 }
Andrew Vasquez7d232c72008-04-03 13:13:22 -0700940 qla24xx_get_flash_manufacturer(ha, &man_id, &flash_id);
Andrew Vasquezc00d8992008-09-11 21:22:49 -0700941 mid = man_id;
942 fid = flash_id;
Andrew Vasquez7d232c72008-04-03 13:13:22 -0700943 ha->fdt_wrt_disable = 0x9c;
Andrew Vasquez3a03eb72009-01-05 11:18:11 -0800944 ha->fdt_erase_cmd = flash_conf_addr(ha, 0x03d8);
Andrew Vasquez7d232c72008-04-03 13:13:22 -0700945 switch (man_id) {
946 case 0xbf: /* STT flash. */
947 if (flash_id == 0x8e)
948 ha->fdt_block_size = FLASH_BLK_SIZE_64K;
949 else
950 ha->fdt_block_size = FLASH_BLK_SIZE_32K;
951
952 if (flash_id == 0x80)
Andrew Vasquez3a03eb72009-01-05 11:18:11 -0800953 ha->fdt_erase_cmd = flash_conf_addr(ha, 0x0352);
Andrew Vasquez7d232c72008-04-03 13:13:22 -0700954 break;
955 case 0x13: /* ST M25P80. */
956 ha->fdt_block_size = FLASH_BLK_SIZE_64K;
957 break;
958 case 0x1f: /* Atmel 26DF081A. */
Lalit Chandivade821b3992008-10-24 15:13:44 -0700959 ha->fdt_block_size = FLASH_BLK_SIZE_4K;
Andrew Vasquez3a03eb72009-01-05 11:18:11 -0800960 ha->fdt_erase_cmd = flash_conf_addr(ha, 0x0320);
961 ha->fdt_unprotect_sec_cmd = flash_conf_addr(ha, 0x0339);
962 ha->fdt_protect_sec_cmd = flash_conf_addr(ha, 0x0336);
Andrew Vasquez7d232c72008-04-03 13:13:22 -0700963 break;
964 default:
965 /* Default to 64 kb sector size. */
966 ha->fdt_block_size = FLASH_BLK_SIZE_64K;
967 break;
968 }
Andrew Vasquezc00d8992008-09-11 21:22:49 -0700969done:
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700970 ql_dbg(ql_dbg_init, vha, 0x004d,
Joe Perchesd8424f62011-11-18 09:03:06 -0800971 "FDT[%s]: (0x%x/0x%x) erase=0x%x "
972 "pr=%x wrtd=0x%x blk=0x%x.\n",
973 loc, mid, fid,
Andrew Vasquez7d232c72008-04-03 13:13:22 -0700974 ha->fdt_erase_cmd, ha->fdt_protect_sec_cmd,
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700975 ha->fdt_wrt_disable, ha->fdt_block_size);
976
Andrew Vasquez7d232c72008-04-03 13:13:22 -0700977}
978
Giridhar Malavalia9083012010-04-12 17:59:55 -0700979static void
980qla2xxx_get_idc_param(scsi_qla_host_t *vha)
981{
982#define QLA82XX_IDC_PARAM_ADDR 0x003e885c
983 uint32_t *wptr;
984 struct qla_hw_data *ha = vha->hw;
985 struct req_que *req = ha->req_q_map[0];
986
Atul Deshmukh7ec0eff2013-08-27 01:37:28 -0400987 if (!(IS_P3P_TYPE(ha)))
Giridhar Malavalia9083012010-04-12 17:59:55 -0700988 return;
989
990 wptr = (uint32_t *)req->ring;
991 ha->isp_ops->read_optrom(vha, (uint8_t *)req->ring,
992 QLA82XX_IDC_PARAM_ADDR , 8);
993
994 if (*wptr == __constant_cpu_to_le32(0xffffffff)) {
Santosh Vernekar7d613ac2012-08-22 14:21:03 -0400995 ha->fcoe_dev_init_timeout = QLA82XX_ROM_DEV_INIT_TIMEOUT;
996 ha->fcoe_reset_timeout = QLA82XX_ROM_DRV_RESET_ACK_TIMEOUT;
Giridhar Malavalia9083012010-04-12 17:59:55 -0700997 } else {
Santosh Vernekar7d613ac2012-08-22 14:21:03 -0400998 ha->fcoe_dev_init_timeout = le32_to_cpu(*wptr++);
999 ha->fcoe_reset_timeout = le32_to_cpu(*wptr);
Giridhar Malavalia9083012010-04-12 17:59:55 -07001000 }
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001001 ql_dbg(ql_dbg_init, vha, 0x004e,
Santosh Vernekar7d613ac2012-08-22 14:21:03 -04001002 "fcoe_dev_init_timeout=%d "
1003 "fcoe_reset_timeout=%d.\n", ha->fcoe_dev_init_timeout,
1004 ha->fcoe_reset_timeout);
Giridhar Malavalia9083012010-04-12 17:59:55 -07001005 return;
1006}
1007
Andrew Vasquezc00d8992008-09-11 21:22:49 -07001008int
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001009qla2xxx_get_flash_info(scsi_qla_host_t *vha)
Andrew Vasquezc00d8992008-09-11 21:22:49 -07001010{
1011 int ret;
1012 uint32_t flt_addr;
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001013 struct qla_hw_data *ha = vha->hw;
Andrew Vasquezc00d8992008-09-11 21:22:49 -07001014
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08001015 if (!IS_QLA24XX_TYPE(ha) && !IS_QLA25XX(ha) &&
Chad Dupuisf73cb692014-02-26 04:15:06 -05001016 !IS_CNA_CAPABLE(ha) && !IS_QLA2031(ha) && !IS_QLA27XX(ha))
Andrew Vasquezc00d8992008-09-11 21:22:49 -07001017 return QLA_SUCCESS;
1018
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001019 ret = qla2xxx_find_flt_start(vha, &flt_addr);
Andrew Vasquezc00d8992008-09-11 21:22:49 -07001020 if (ret != QLA_SUCCESS)
1021 return ret;
1022
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001023 qla2xxx_get_flt_info(vha, flt_addr);
1024 qla2xxx_get_fdt_info(vha);
Giridhar Malavalia9083012010-04-12 17:59:55 -07001025 qla2xxx_get_idc_param(vha);
Andrew Vasquezc00d8992008-09-11 21:22:49 -07001026
1027 return QLA_SUCCESS;
1028}
1029
Andrew Vasquez272976c2008-09-11 21:22:50 -07001030void
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001031qla2xxx_flash_npiv_conf(scsi_qla_host_t *vha)
Andrew Vasquez272976c2008-09-11 21:22:50 -07001032{
1033#define NPIV_CONFIG_SIZE (16*1024)
1034 void *data;
1035 uint16_t *wptr;
1036 uint16_t cnt, chksum;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001037 int i;
Andrew Vasquez272976c2008-09-11 21:22:50 -07001038 struct qla_npiv_header hdr;
1039 struct qla_npiv_entry *entry;
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001040 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez272976c2008-09-11 21:22:50 -07001041
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08001042 if (!IS_QLA24XX_TYPE(ha) && !IS_QLA25XX(ha) &&
1043 !IS_CNA_CAPABLE(ha) && !IS_QLA2031(ha))
Andrew Vasquez272976c2008-09-11 21:22:50 -07001044 return;
1045
Santosh Vernekar7d613ac2012-08-22 14:21:03 -04001046 if (ha->flags.nic_core_reset_hdlr_active)
Giridhar Malavalia49393f2012-04-25 07:26:14 -07001047 return;
1048
Atul Deshmukh7ec0eff2013-08-27 01:37:28 -04001049 if (IS_QLA8044(ha))
1050 return;
1051
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001052 ha->isp_ops->read_optrom(vha, (uint8_t *)&hdr,
Andrew Vasquez272976c2008-09-11 21:22:50 -07001053 ha->flt_region_npiv_conf << 2, sizeof(struct qla_npiv_header));
1054 if (hdr.version == __constant_cpu_to_le16(0xffff))
1055 return;
1056 if (hdr.version != __constant_cpu_to_le16(1)) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001057 ql_dbg(ql_dbg_user, vha, 0x7090,
1058 "Unsupported NPIV-Config "
Andrew Vasquez272976c2008-09-11 21:22:50 -07001059 "detected: version=0x%x entries=0x%x checksum=0x%x.\n",
1060 le16_to_cpu(hdr.version), le16_to_cpu(hdr.entries),
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001061 le16_to_cpu(hdr.checksum));
Andrew Vasquez272976c2008-09-11 21:22:50 -07001062 return;
1063 }
1064
1065 data = kmalloc(NPIV_CONFIG_SIZE, GFP_KERNEL);
1066 if (!data) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001067 ql_log(ql_log_warn, vha, 0x7091,
1068 "Unable to allocate memory for data.\n");
Andrew Vasquez272976c2008-09-11 21:22:50 -07001069 return;
1070 }
1071
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001072 ha->isp_ops->read_optrom(vha, (uint8_t *)data,
Andrew Vasquez272976c2008-09-11 21:22:50 -07001073 ha->flt_region_npiv_conf << 2, NPIV_CONFIG_SIZE);
1074
1075 cnt = (sizeof(struct qla_npiv_header) + le16_to_cpu(hdr.entries) *
1076 sizeof(struct qla_npiv_entry)) >> 1;
1077 for (wptr = data, chksum = 0; cnt; cnt--)
1078 chksum += le16_to_cpu(*wptr++);
1079 if (chksum) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001080 ql_dbg(ql_dbg_user, vha, 0x7092,
1081 "Inconsistent NPIV-Config "
Andrew Vasquez272976c2008-09-11 21:22:50 -07001082 "detected: version=0x%x entries=0x%x checksum=0x%x.\n",
1083 le16_to_cpu(hdr.version), le16_to_cpu(hdr.entries),
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001084 le16_to_cpu(hdr.checksum));
Andrew Vasquez272976c2008-09-11 21:22:50 -07001085 goto done;
1086 }
1087
1088 entry = data + sizeof(struct qla_npiv_header);
1089 cnt = le16_to_cpu(hdr.entries);
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001090 for (i = 0; cnt; cnt--, entry++, i++) {
Andrew Vasquez272976c2008-09-11 21:22:50 -07001091 uint16_t flags;
1092 struct fc_vport_identifiers vid;
1093 struct fc_vport *vport;
1094
Anirban Chakraborty40859ae2009-06-03 09:55:16 -07001095 memcpy(&ha->npiv_info[i], entry, sizeof(struct qla_npiv_entry));
1096
Andrew Vasquez272976c2008-09-11 21:22:50 -07001097 flags = le16_to_cpu(entry->flags);
1098 if (flags == 0xffff)
1099 continue;
1100 if ((flags & BIT_0) == 0)
1101 continue;
1102
1103 memset(&vid, 0, sizeof(vid));
1104 vid.roles = FC_PORT_ROLE_FCP_INITIATOR;
1105 vid.vport_type = FC_PORTTYPE_NPIV;
1106 vid.disable = false;
1107 vid.port_name = wwn_to_u64(entry->port_name);
1108 vid.node_name = wwn_to_u64(entry->node_name);
1109
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001110 ql_dbg(ql_dbg_user, vha, 0x7093,
1111 "NPIV[%02x]: wwpn=%llx "
1112 "wwnn=%llx vf_id=0x%x Q_qos=0x%x F_qos=0x%x.\n", cnt,
1113 (unsigned long long)vid.port_name,
1114 (unsigned long long)vid.node_name,
1115 le16_to_cpu(entry->vf_id),
1116 entry->q_qos, entry->f_qos);
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001117
1118 if (i < QLA_PRECONFIG_VPORTS) {
1119 vport = fc_vport_create(vha->host, 0, &vid);
1120 if (!vport)
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001121 ql_log(ql_log_warn, vha, 0x7094,
1122 "NPIV-Config Failed to create vport [%02x]: "
1123 "wwpn=%llx wwnn=%llx.\n", cnt,
1124 (unsigned long long)vid.port_name,
1125 (unsigned long long)vid.node_name);
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001126 }
Andrew Vasquez272976c2008-09-11 21:22:50 -07001127 }
1128done:
1129 kfree(data);
1130}
1131
Joe Carnuccio1d2874d2009-03-24 09:08:06 -07001132static int
1133qla24xx_unprotect_flash(scsi_qla_host_t *vha)
Andrew Vasquezcb8dacb2008-04-03 13:13:19 -07001134{
Joe Carnuccio1d2874d2009-03-24 09:08:06 -07001135 struct qla_hw_data *ha = vha->hw;
Andrew Vasquezcb8dacb2008-04-03 13:13:19 -07001136 struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
1137
Joe Carnuccio1d2874d2009-03-24 09:08:06 -07001138 if (ha->flags.fac_supported)
1139 return qla81xx_fac_do_write_enable(vha, 1);
1140
Andrew Vasquezcb8dacb2008-04-03 13:13:19 -07001141 /* Enable flash write. */
1142 WRT_REG_DWORD(&reg->ctrl_status,
1143 RD_REG_DWORD(&reg->ctrl_status) | CSRX_FLASH_ENABLE);
1144 RD_REG_DWORD(&reg->ctrl_status); /* PCI Posting. */
1145
Andrew Vasquez7d232c72008-04-03 13:13:22 -07001146 if (!ha->fdt_wrt_disable)
Joe Carnuccio1d2874d2009-03-24 09:08:06 -07001147 goto done;
Andrew Vasquez7d232c72008-04-03 13:13:22 -07001148
Joe Carnucciob872ca42009-01-22 09:45:36 -08001149 /* Disable flash write-protection, first clear SR protection bit */
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08001150 qla24xx_write_flash_dword(ha, flash_conf_addr(ha, 0x101), 0);
Joe Carnucciob872ca42009-01-22 09:45:36 -08001151 /* Then write zero again to clear remaining SR bits.*/
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08001152 qla24xx_write_flash_dword(ha, flash_conf_addr(ha, 0x101), 0);
Joe Carnuccio1d2874d2009-03-24 09:08:06 -07001153done:
1154 return QLA_SUCCESS;
Andrew Vasquezcb8dacb2008-04-03 13:13:19 -07001155}
1156
Joe Carnuccio1d2874d2009-03-24 09:08:06 -07001157static int
1158qla24xx_protect_flash(scsi_qla_host_t *vha)
Andrew Vasquezcb8dacb2008-04-03 13:13:19 -07001159{
1160 uint32_t cnt;
Joe Carnuccio1d2874d2009-03-24 09:08:06 -07001161 struct qla_hw_data *ha = vha->hw;
Andrew Vasquezcb8dacb2008-04-03 13:13:19 -07001162 struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
1163
Joe Carnuccio1d2874d2009-03-24 09:08:06 -07001164 if (ha->flags.fac_supported)
1165 return qla81xx_fac_do_write_enable(vha, 0);
1166
Andrew Vasquez7d232c72008-04-03 13:13:22 -07001167 if (!ha->fdt_wrt_disable)
1168 goto skip_wrt_protect;
1169
Andrew Vasquezcb8dacb2008-04-03 13:13:19 -07001170 /* Enable flash write-protection and wait for completion. */
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08001171 qla24xx_write_flash_dword(ha, flash_conf_addr(ha, 0x101),
Andrew Vasquez7d232c72008-04-03 13:13:22 -07001172 ha->fdt_wrt_disable);
Andrew Vasquezcb8dacb2008-04-03 13:13:19 -07001173 for (cnt = 300; cnt &&
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08001174 qla24xx_read_flash_dword(ha, flash_conf_addr(ha, 0x005)) & BIT_0;
Andrew Vasquezcb8dacb2008-04-03 13:13:19 -07001175 cnt--) {
1176 udelay(10);
1177 }
1178
Andrew Vasquez7d232c72008-04-03 13:13:22 -07001179skip_wrt_protect:
Andrew Vasquezcb8dacb2008-04-03 13:13:19 -07001180 /* Disable flash write. */
1181 WRT_REG_DWORD(&reg->ctrl_status,
1182 RD_REG_DWORD(&reg->ctrl_status) & ~CSRX_FLASH_ENABLE);
1183 RD_REG_DWORD(&reg->ctrl_status); /* PCI Posting. */
Joe Carnuccio1d2874d2009-03-24 09:08:06 -07001184
1185 return QLA_SUCCESS;
1186}
1187
1188static int
1189qla24xx_erase_sector(scsi_qla_host_t *vha, uint32_t fdata)
1190{
1191 struct qla_hw_data *ha = vha->hw;
1192 uint32_t start, finish;
1193
1194 if (ha->flags.fac_supported) {
1195 start = fdata >> 2;
1196 finish = start + (ha->fdt_block_size >> 2) - 1;
1197 return qla81xx_fac_erase_sector(vha, flash_data_addr(ha,
1198 start), flash_data_addr(ha, finish));
1199 }
1200
1201 return qla24xx_write_flash_dword(ha, ha->fdt_erase_cmd,
1202 (fdata & 0xff00) | ((fdata << 16) & 0xff0000) |
1203 ((fdata >> 16) & 0xff));
Andrew Vasquezcb8dacb2008-04-03 13:13:19 -07001204}
1205
Adrian Bunke5f82ab2006-11-08 19:55:50 -08001206static int
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001207qla24xx_write_flash_data(scsi_qla_host_t *vha, uint32_t *dwptr, uint32_t faddr,
Andrew Vasquez459c5372005-07-06 10:31:07 -07001208 uint32_t dwords)
1209{
1210 int ret;
Andrew Vasquez7c283172009-01-22 09:45:34 -08001211 uint32_t liter;
Andrew Vasquez7d232c72008-04-03 13:13:22 -07001212 uint32_t sec_mask, rest_addr;
Andrew Vasquez85d0acb2009-01-22 09:45:29 -08001213 uint32_t fdata;
Andrew Vasquez338c9162007-09-20 14:07:33 -07001214 dma_addr_t optrom_dma;
1215 void *optrom = NULL;
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001216 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez459c5372005-07-06 10:31:07 -07001217
Andrew Vasquez338c9162007-09-20 14:07:33 -07001218 /* Prepare burst-capable write on supported ISPs. */
Chad Dupuisf73cb692014-02-26 04:15:06 -05001219 if ((IS_QLA25XX(ha) || IS_QLA81XX(ha) || IS_QLA83XX(ha) ||
1220 IS_QLA27XX(ha)) &&
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08001221 !(faddr & 0xfff) && dwords > OPTROM_BURST_DWORDS) {
Andrew Vasquez338c9162007-09-20 14:07:33 -07001222 optrom = dma_alloc_coherent(&ha->pdev->dev, OPTROM_BURST_SIZE,
1223 &optrom_dma, GFP_KERNEL);
1224 if (!optrom) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001225 ql_log(ql_log_warn, vha, 0x7095,
1226 "Unable to allocate "
1227 "memory for optrom burst write (%x KB).\n",
1228 OPTROM_BURST_SIZE / 1024);
Andrew Vasquez338c9162007-09-20 14:07:33 -07001229 }
1230 }
1231
Andrew Vasquez7d232c72008-04-03 13:13:22 -07001232 rest_addr = (ha->fdt_block_size >> 2) - 1;
Andrew Vasquez85d0acb2009-01-22 09:45:29 -08001233 sec_mask = ~rest_addr;
Andrew Vasquez459c5372005-07-06 10:31:07 -07001234
Joe Carnuccio1d2874d2009-03-24 09:08:06 -07001235 ret = qla24xx_unprotect_flash(vha);
1236 if (ret != QLA_SUCCESS) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001237 ql_log(ql_log_warn, vha, 0x7096,
Joe Carnuccio1d2874d2009-03-24 09:08:06 -07001238 "Unable to unprotect flash for update.\n");
1239 goto done;
1240 }
Andrew Vasquez459c5372005-07-06 10:31:07 -07001241
Andrew Vasquez338c9162007-09-20 14:07:33 -07001242 for (liter = 0; liter < dwords; liter++, faddr++, dwptr++) {
Andrew Vasquez85d0acb2009-01-22 09:45:29 -08001243 fdata = (faddr & sec_mask) << 2;
Ravi Anand45aeaf12006-05-17 15:08:49 -07001244
Andrew Vasquez338c9162007-09-20 14:07:33 -07001245 /* Are we at the beginning of a sector? */
Andrew Vasquez85d0acb2009-01-22 09:45:29 -08001246 if ((faddr & rest_addr) == 0) {
Andrew Vasquez7d232c72008-04-03 13:13:22 -07001247 /* Do sector unprotect. */
1248 if (ha->fdt_unprotect_sec_cmd)
Ravi Anand45aeaf12006-05-17 15:08:49 -07001249 qla24xx_write_flash_dword(ha,
Andrew Vasquez7d232c72008-04-03 13:13:22 -07001250 ha->fdt_unprotect_sec_cmd,
Ravi Anand45aeaf12006-05-17 15:08:49 -07001251 (fdata & 0xff00) | ((fdata << 16) &
1252 0xff0000) | ((fdata >> 16) & 0xff));
Joe Carnuccio1d2874d2009-03-24 09:08:06 -07001253 ret = qla24xx_erase_sector(vha, fdata);
Andrew Vasquez338c9162007-09-20 14:07:33 -07001254 if (ret != QLA_SUCCESS) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001255 ql_dbg(ql_dbg_user, vha, 0x7007,
1256 "Unable to erase erase sector: address=%x.\n",
1257 faddr);
Andrew Vasquez338c9162007-09-20 14:07:33 -07001258 break;
1259 }
Andrew Vasquez459c5372005-07-06 10:31:07 -07001260 }
Andrew Vasquez338c9162007-09-20 14:07:33 -07001261
1262 /* Go with burst-write. */
Andrew Vasquez94d6a2b2007-10-19 15:59:16 -07001263 if (optrom && (liter + OPTROM_BURST_DWORDS) <= dwords) {
Andrew Vasquez338c9162007-09-20 14:07:33 -07001264 /* Copy data to DMA'ble buffer. */
Andrew Vasquez7c283172009-01-22 09:45:34 -08001265 memcpy(optrom, dwptr, OPTROM_BURST_SIZE);
Andrew Vasquez338c9162007-09-20 14:07:33 -07001266
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001267 ret = qla2x00_load_ram(vha, optrom_dma,
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08001268 flash_data_addr(ha, faddr),
Andrew Vasquez338c9162007-09-20 14:07:33 -07001269 OPTROM_BURST_DWORDS);
1270 if (ret != QLA_SUCCESS) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001271 ql_log(ql_log_warn, vha, 0x7097,
Andrew Vasquez338c9162007-09-20 14:07:33 -07001272 "Unable to burst-write optrom segment "
1273 "(%x/%x/%llx).\n", ret,
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08001274 flash_data_addr(ha, faddr),
Andrew Morton875baf32007-10-16 14:28:20 -07001275 (unsigned long long)optrom_dma);
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001276 ql_log(ql_log_warn, vha, 0x7098,
Andrew Vasquez338c9162007-09-20 14:07:33 -07001277 "Reverting to slow-write.\n");
1278
1279 dma_free_coherent(&ha->pdev->dev,
1280 OPTROM_BURST_SIZE, optrom, optrom_dma);
1281 optrom = NULL;
1282 } else {
1283 liter += OPTROM_BURST_DWORDS - 1;
1284 faddr += OPTROM_BURST_DWORDS - 1;
1285 dwptr += OPTROM_BURST_DWORDS - 1;
1286 continue;
1287 }
1288 }
1289
1290 ret = qla24xx_write_flash_dword(ha,
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08001291 flash_data_addr(ha, faddr), cpu_to_le32(*dwptr));
Andrew Vasquez338c9162007-09-20 14:07:33 -07001292 if (ret != QLA_SUCCESS) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001293 ql_dbg(ql_dbg_user, vha, 0x7006,
1294 "Unable to program flash address=%x data=%x.\n",
1295 faddr, *dwptr);
Andrew Vasquez338c9162007-09-20 14:07:33 -07001296 break;
1297 }
1298
Andrew Vasquez7d232c72008-04-03 13:13:22 -07001299 /* Do sector protect. */
1300 if (ha->fdt_unprotect_sec_cmd &&
Andrew Vasquez338c9162007-09-20 14:07:33 -07001301 ((faddr & rest_addr) == rest_addr))
1302 qla24xx_write_flash_dword(ha,
Andrew Vasquez7d232c72008-04-03 13:13:22 -07001303 ha->fdt_protect_sec_cmd,
Andrew Vasquez338c9162007-09-20 14:07:33 -07001304 (fdata & 0xff00) | ((fdata << 16) &
1305 0xff0000) | ((fdata >> 16) & 0xff));
1306 }
Andrew Vasquez459c5372005-07-06 10:31:07 -07001307
Joe Carnuccio1d2874d2009-03-24 09:08:06 -07001308 ret = qla24xx_protect_flash(vha);
1309 if (ret != QLA_SUCCESS)
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001310 ql_log(ql_log_warn, vha, 0x7099,
Joe Carnuccio1d2874d2009-03-24 09:08:06 -07001311 "Unable to protect flash after update.\n");
1312done:
Andrew Vasquez338c9162007-09-20 14:07:33 -07001313 if (optrom)
1314 dma_free_coherent(&ha->pdev->dev,
1315 OPTROM_BURST_SIZE, optrom, optrom_dma);
1316
Andrew Vasquez459c5372005-07-06 10:31:07 -07001317 return ret;
1318}
1319
1320uint8_t *
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001321qla2x00_read_nvram_data(scsi_qla_host_t *vha, uint8_t *buf, uint32_t naddr,
Andrew Vasquez459c5372005-07-06 10:31:07 -07001322 uint32_t bytes)
1323{
1324 uint32_t i;
1325 uint16_t *wptr;
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001326 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez459c5372005-07-06 10:31:07 -07001327
1328 /* Word reads to NVRAM via registers. */
1329 wptr = (uint16_t *)buf;
1330 qla2x00_lock_nvram_access(ha);
1331 for (i = 0; i < bytes >> 1; i++, naddr++)
1332 wptr[i] = cpu_to_le16(qla2x00_get_nvram_word(ha,
1333 naddr));
1334 qla2x00_unlock_nvram_access(ha);
1335
1336 return buf;
1337}
1338
1339uint8_t *
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001340qla24xx_read_nvram_data(scsi_qla_host_t *vha, uint8_t *buf, uint32_t naddr,
Andrew Vasquez459c5372005-07-06 10:31:07 -07001341 uint32_t bytes)
1342{
1343 uint32_t i;
1344 uint32_t *dwptr;
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08001345 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez459c5372005-07-06 10:31:07 -07001346
Atul Deshmukh7ec0eff2013-08-27 01:37:28 -04001347 if (IS_P3P_TYPE(ha))
Giridhar Malavalia9083012010-04-12 17:59:55 -07001348 return buf;
1349
Andrew Vasquez459c5372005-07-06 10:31:07 -07001350 /* Dword reads to flash. */
1351 dwptr = (uint32_t *)buf;
1352 for (i = 0; i < bytes >> 2; i++, naddr++)
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08001353 dwptr[i] = cpu_to_le32(qla24xx_read_flash_dword(ha,
1354 nvram_data_addr(ha, naddr)));
Andrew Vasquez459c5372005-07-06 10:31:07 -07001355
Andrew Vasquez459c5372005-07-06 10:31:07 -07001356 return buf;
1357}
1358
1359int
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001360qla2x00_write_nvram_data(scsi_qla_host_t *vha, uint8_t *buf, uint32_t naddr,
Andrew Vasquez459c5372005-07-06 10:31:07 -07001361 uint32_t bytes)
1362{
1363 int ret, stat;
1364 uint32_t i;
1365 uint16_t *wptr;
Andrew Vasquez2c96d8d2007-10-19 15:59:15 -07001366 unsigned long flags;
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001367 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez459c5372005-07-06 10:31:07 -07001368
1369 ret = QLA_SUCCESS;
1370
Andrew Vasquez2c96d8d2007-10-19 15:59:15 -07001371 spin_lock_irqsave(&ha->hardware_lock, flags);
Andrew Vasquez459c5372005-07-06 10:31:07 -07001372 qla2x00_lock_nvram_access(ha);
1373
1374 /* Disable NVRAM write-protection. */
1375 stat = qla2x00_clear_nvram_protection(ha);
1376
1377 wptr = (uint16_t *)buf;
1378 for (i = 0; i < bytes >> 1; i++, naddr++) {
1379 qla2x00_write_nvram_word(ha, naddr,
1380 cpu_to_le16(*wptr));
1381 wptr++;
1382 }
1383
1384 /* Enable NVRAM write-protection. */
1385 qla2x00_set_nvram_protection(ha, stat);
1386
1387 qla2x00_unlock_nvram_access(ha);
Andrew Vasquez2c96d8d2007-10-19 15:59:15 -07001388 spin_unlock_irqrestore(&ha->hardware_lock, flags);
Andrew Vasquez459c5372005-07-06 10:31:07 -07001389
1390 return ret;
1391}
1392
1393int
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001394qla24xx_write_nvram_data(scsi_qla_host_t *vha, uint8_t *buf, uint32_t naddr,
Andrew Vasquez459c5372005-07-06 10:31:07 -07001395 uint32_t bytes)
1396{
1397 int ret;
1398 uint32_t i;
1399 uint32_t *dwptr;
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001400 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez459c5372005-07-06 10:31:07 -07001401 struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
1402
1403 ret = QLA_SUCCESS;
1404
Atul Deshmukh7ec0eff2013-08-27 01:37:28 -04001405 if (IS_P3P_TYPE(ha))
Giridhar Malavalia9083012010-04-12 17:59:55 -07001406 return ret;
1407
Andrew Vasquez459c5372005-07-06 10:31:07 -07001408 /* Enable flash write. */
1409 WRT_REG_DWORD(&reg->ctrl_status,
1410 RD_REG_DWORD(&reg->ctrl_status) | CSRX_FLASH_ENABLE);
1411 RD_REG_DWORD(&reg->ctrl_status); /* PCI Posting. */
1412
1413 /* Disable NVRAM write-protection. */
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08001414 qla24xx_write_flash_dword(ha, nvram_conf_addr(ha, 0x101), 0);
1415 qla24xx_write_flash_dword(ha, nvram_conf_addr(ha, 0x101), 0);
Andrew Vasquez459c5372005-07-06 10:31:07 -07001416
1417 /* Dword writes to flash. */
1418 dwptr = (uint32_t *)buf;
1419 for (i = 0; i < bytes >> 2; i++, naddr++, dwptr++) {
1420 ret = qla24xx_write_flash_dword(ha,
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08001421 nvram_data_addr(ha, naddr), cpu_to_le32(*dwptr));
Andrew Vasquez459c5372005-07-06 10:31:07 -07001422 if (ret != QLA_SUCCESS) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001423 ql_dbg(ql_dbg_user, vha, 0x709a,
Andrew Vasquez76403352009-04-06 22:33:39 -07001424 "Unable to program nvram address=%x data=%x.\n",
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001425 naddr, *dwptr);
Andrew Vasquez459c5372005-07-06 10:31:07 -07001426 break;
1427 }
1428 }
1429
1430 /* Enable NVRAM write-protection. */
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08001431 qla24xx_write_flash_dword(ha, nvram_conf_addr(ha, 0x101), 0x8c);
Andrew Vasquez459c5372005-07-06 10:31:07 -07001432
1433 /* Disable flash write. */
1434 WRT_REG_DWORD(&reg->ctrl_status,
1435 RD_REG_DWORD(&reg->ctrl_status) & ~CSRX_FLASH_ENABLE);
1436 RD_REG_DWORD(&reg->ctrl_status); /* PCI Posting. */
1437
Andrew Vasquez459c5372005-07-06 10:31:07 -07001438 return ret;
1439}
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08001440
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07001441uint8_t *
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001442qla25xx_read_nvram_data(scsi_qla_host_t *vha, uint8_t *buf, uint32_t naddr,
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07001443 uint32_t bytes)
1444{
1445 uint32_t i;
1446 uint32_t *dwptr;
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001447 struct qla_hw_data *ha = vha->hw;
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07001448
1449 /* Dword reads to flash. */
1450 dwptr = (uint32_t *)buf;
1451 for (i = 0; i < bytes >> 2; i++, naddr++)
1452 dwptr[i] = cpu_to_le32(qla24xx_read_flash_dword(ha,
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08001453 flash_data_addr(ha, ha->flt_region_vpd_nvram | naddr)));
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07001454
1455 return buf;
1456}
1457
1458int
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001459qla25xx_write_nvram_data(scsi_qla_host_t *vha, uint8_t *buf, uint32_t naddr,
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07001460 uint32_t bytes)
1461{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001462 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez2c96d8d2007-10-19 15:59:15 -07001463#define RMW_BUFFER_SIZE (64 * 1024)
1464 uint8_t *dbuf;
1465
1466 dbuf = vmalloc(RMW_BUFFER_SIZE);
1467 if (!dbuf)
1468 return QLA_MEMORY_ALLOC_FAILED;
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001469 ha->isp_ops->read_optrom(vha, dbuf, ha->flt_region_vpd_nvram << 2,
Andrew Vasquez2c96d8d2007-10-19 15:59:15 -07001470 RMW_BUFFER_SIZE);
1471 memcpy(dbuf + (naddr << 2), buf, bytes);
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001472 ha->isp_ops->write_optrom(vha, dbuf, ha->flt_region_vpd_nvram << 2,
Andrew Vasquez2c96d8d2007-10-19 15:59:15 -07001473 RMW_BUFFER_SIZE);
1474 vfree(dbuf);
1475
1476 return QLA_SUCCESS;
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07001477}
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08001478
1479static inline void
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001480qla2x00_flip_colors(struct qla_hw_data *ha, uint16_t *pflags)
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08001481{
1482 if (IS_QLA2322(ha)) {
1483 /* Flip all colors. */
1484 if (ha->beacon_color_state == QLA_LED_ALL_ON) {
1485 /* Turn off. */
1486 ha->beacon_color_state = 0;
1487 *pflags = GPIO_LED_ALL_OFF;
1488 } else {
1489 /* Turn on. */
1490 ha->beacon_color_state = QLA_LED_ALL_ON;
1491 *pflags = GPIO_LED_RGA_ON;
1492 }
1493 } else {
1494 /* Flip green led only. */
1495 if (ha->beacon_color_state == QLA_LED_GRN_ON) {
1496 /* Turn off. */
1497 ha->beacon_color_state = 0;
1498 *pflags = GPIO_LED_GREEN_OFF_AMBER_OFF;
1499 } else {
1500 /* Turn on. */
1501 ha->beacon_color_state = QLA_LED_GRN_ON;
1502 *pflags = GPIO_LED_GREEN_ON_AMBER_OFF;
1503 }
1504 }
1505}
1506
Andrew Vasquez948882f2008-01-31 12:33:44 -08001507#define PIO_REG(h, r) ((h)->pio_address + offsetof(struct device_reg_2xxx, r))
1508
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08001509void
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001510qla2x00_beacon_blink(struct scsi_qla_host *vha)
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08001511{
1512 uint16_t gpio_enable;
1513 uint16_t gpio_data;
1514 uint16_t led_color = 0;
1515 unsigned long flags;
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001516 struct qla_hw_data *ha = vha->hw;
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08001517 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
1518
Atul Deshmukh7ec0eff2013-08-27 01:37:28 -04001519 if (IS_P3P_TYPE(ha))
Giridhar Malavalia9083012010-04-12 17:59:55 -07001520 return;
1521
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08001522 spin_lock_irqsave(&ha->hardware_lock, flags);
1523
1524 /* Save the Original GPIOE. */
1525 if (ha->pio_address) {
Andrew Vasquez948882f2008-01-31 12:33:44 -08001526 gpio_enable = RD_REG_WORD_PIO(PIO_REG(ha, gpioe));
1527 gpio_data = RD_REG_WORD_PIO(PIO_REG(ha, gpiod));
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08001528 } else {
1529 gpio_enable = RD_REG_WORD(&reg->gpioe);
1530 gpio_data = RD_REG_WORD(&reg->gpiod);
1531 }
1532
1533 /* Set the modified gpio_enable values */
1534 gpio_enable |= GPIO_LED_MASK;
1535
1536 if (ha->pio_address) {
Andrew Vasquez948882f2008-01-31 12:33:44 -08001537 WRT_REG_WORD_PIO(PIO_REG(ha, gpioe), gpio_enable);
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08001538 } else {
1539 WRT_REG_WORD(&reg->gpioe, gpio_enable);
1540 RD_REG_WORD(&reg->gpioe);
1541 }
1542
1543 qla2x00_flip_colors(ha, &led_color);
1544
1545 /* Clear out any previously set LED color. */
1546 gpio_data &= ~GPIO_LED_MASK;
1547
1548 /* Set the new input LED color to GPIOD. */
1549 gpio_data |= led_color;
1550
1551 /* Set the modified gpio_data values */
1552 if (ha->pio_address) {
Andrew Vasquez948882f2008-01-31 12:33:44 -08001553 WRT_REG_WORD_PIO(PIO_REG(ha, gpiod), gpio_data);
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08001554 } else {
1555 WRT_REG_WORD(&reg->gpiod, gpio_data);
1556 RD_REG_WORD(&reg->gpiod);
1557 }
1558
1559 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1560}
1561
1562int
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001563qla2x00_beacon_on(struct scsi_qla_host *vha)
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08001564{
1565 uint16_t gpio_enable;
1566 uint16_t gpio_data;
1567 unsigned long flags;
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001568 struct qla_hw_data *ha = vha->hw;
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08001569 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
1570
1571 ha->fw_options[1] &= ~FO1_SET_EMPHASIS_SWING;
1572 ha->fw_options[1] |= FO1_DISABLE_GPIO6_7;
1573
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001574 if (qla2x00_set_fw_options(vha, ha->fw_options) != QLA_SUCCESS) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001575 ql_log(ql_log_warn, vha, 0x709b,
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08001576 "Unable to update fw options (beacon on).\n");
1577 return QLA_FUNCTION_FAILED;
1578 }
1579
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08001580 /* Turn off LEDs. */
1581 spin_lock_irqsave(&ha->hardware_lock, flags);
1582 if (ha->pio_address) {
Andrew Vasquez948882f2008-01-31 12:33:44 -08001583 gpio_enable = RD_REG_WORD_PIO(PIO_REG(ha, gpioe));
1584 gpio_data = RD_REG_WORD_PIO(PIO_REG(ha, gpiod));
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08001585 } else {
1586 gpio_enable = RD_REG_WORD(&reg->gpioe);
1587 gpio_data = RD_REG_WORD(&reg->gpiod);
1588 }
1589 gpio_enable |= GPIO_LED_MASK;
1590
1591 /* Set the modified gpio_enable values. */
1592 if (ha->pio_address) {
Andrew Vasquez948882f2008-01-31 12:33:44 -08001593 WRT_REG_WORD_PIO(PIO_REG(ha, gpioe), gpio_enable);
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08001594 } else {
1595 WRT_REG_WORD(&reg->gpioe, gpio_enable);
1596 RD_REG_WORD(&reg->gpioe);
1597 }
1598
1599 /* Clear out previously set LED colour. */
1600 gpio_data &= ~GPIO_LED_MASK;
1601 if (ha->pio_address) {
Andrew Vasquez948882f2008-01-31 12:33:44 -08001602 WRT_REG_WORD_PIO(PIO_REG(ha, gpiod), gpio_data);
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08001603 } else {
1604 WRT_REG_WORD(&reg->gpiod, gpio_data);
1605 RD_REG_WORD(&reg->gpiod);
1606 }
1607 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1608
1609 /*
1610 * Let the per HBA timer kick off the blinking process based on
1611 * the following flags. No need to do anything else now.
1612 */
1613 ha->beacon_blink_led = 1;
1614 ha->beacon_color_state = 0;
1615
1616 return QLA_SUCCESS;
1617}
1618
1619int
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001620qla2x00_beacon_off(struct scsi_qla_host *vha)
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08001621{
1622 int rval = QLA_SUCCESS;
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001623 struct qla_hw_data *ha = vha->hw;
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08001624
1625 ha->beacon_blink_led = 0;
1626
1627 /* Set the on flag so when it gets flipped it will be off. */
1628 if (IS_QLA2322(ha))
1629 ha->beacon_color_state = QLA_LED_ALL_ON;
1630 else
1631 ha->beacon_color_state = QLA_LED_GRN_ON;
1632
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001633 ha->isp_ops->beacon_blink(vha); /* This turns green LED off */
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08001634
1635 ha->fw_options[1] &= ~FO1_SET_EMPHASIS_SWING;
1636 ha->fw_options[1] &= ~FO1_DISABLE_GPIO6_7;
1637
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001638 rval = qla2x00_set_fw_options(vha, ha->fw_options);
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08001639 if (rval != QLA_SUCCESS)
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001640 ql_log(ql_log_warn, vha, 0x709c,
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08001641 "Unable to update fw options (beacon off).\n");
1642 return rval;
1643}
1644
1645
1646static inline void
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001647qla24xx_flip_colors(struct qla_hw_data *ha, uint16_t *pflags)
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08001648{
1649 /* Flip all colors. */
1650 if (ha->beacon_color_state == QLA_LED_ALL_ON) {
1651 /* Turn off. */
1652 ha->beacon_color_state = 0;
1653 *pflags = 0;
1654 } else {
1655 /* Turn on. */
1656 ha->beacon_color_state = QLA_LED_ALL_ON;
1657 *pflags = GPDX_LED_YELLOW_ON | GPDX_LED_AMBER_ON;
1658 }
1659}
1660
1661void
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001662qla24xx_beacon_blink(struct scsi_qla_host *vha)
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08001663{
1664 uint16_t led_color = 0;
1665 uint32_t gpio_data;
1666 unsigned long flags;
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001667 struct qla_hw_data *ha = vha->hw;
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08001668 struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
1669
1670 /* Save the Original GPIOD. */
1671 spin_lock_irqsave(&ha->hardware_lock, flags);
1672 gpio_data = RD_REG_DWORD(&reg->gpiod);
1673
1674 /* Enable the gpio_data reg for update. */
1675 gpio_data |= GPDX_LED_UPDATE_MASK;
1676
1677 WRT_REG_DWORD(&reg->gpiod, gpio_data);
1678 gpio_data = RD_REG_DWORD(&reg->gpiod);
1679
1680 /* Set the color bits. */
1681 qla24xx_flip_colors(ha, &led_color);
1682
1683 /* Clear out any previously set LED color. */
1684 gpio_data &= ~GPDX_LED_COLOR_MASK;
1685
1686 /* Set the new input LED color to GPIOD. */
1687 gpio_data |= led_color;
1688
1689 /* Set the modified gpio_data values. */
1690 WRT_REG_DWORD(&reg->gpiod, gpio_data);
1691 gpio_data = RD_REG_DWORD(&reg->gpiod);
1692 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1693}
1694
Chad Dupuis0143d8b72012-08-22 14:21:11 -04001695static uint32_t
1696qla83xx_select_led_port(struct qla_hw_data *ha)
1697{
1698 uint32_t led_select_value = 0;
1699
1700 if (!IS_QLA83XX(ha))
1701 goto out;
1702
Chad Dupuisf73cb692014-02-26 04:15:06 -05001703 if (ha->port_no == 0)
Chad Dupuis0143d8b72012-08-22 14:21:11 -04001704 led_select_value = QLA83XX_LED_PORT0;
1705 else
1706 led_select_value = QLA83XX_LED_PORT1;
1707
1708out:
1709 return led_select_value;
1710}
1711
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08001712void
1713qla83xx_beacon_blink(struct scsi_qla_host *vha)
1714{
1715 uint32_t led_select_value;
1716 struct qla_hw_data *ha = vha->hw;
1717 uint16_t led_cfg[6];
1718 uint16_t orig_led_cfg[6];
Chad Dupuis0143d8b72012-08-22 14:21:11 -04001719 uint32_t led_10_value, led_43_value;
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08001720
1721 if (!IS_QLA83XX(ha) && !IS_QLA81XX(ha))
1722 return;
1723
Chad Dupuis0143d8b72012-08-22 14:21:11 -04001724 if (!ha->beacon_blink_led)
1725 return;
1726
1727 if (IS_QLA2031(ha)) {
1728 led_select_value = qla83xx_select_led_port(ha);
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08001729
Himanshu Madani90b604f2014-04-11 16:54:40 -04001730 qla83xx_wr_reg(vha, led_select_value, 0x40000230);
1731 qla83xx_wr_reg(vha, led_select_value + 4, 0x40000230);
Chad Dupuis0143d8b72012-08-22 14:21:11 -04001732 } else if (IS_QLA8031(ha)) {
1733 led_select_value = qla83xx_select_led_port(ha);
1734
1735 qla83xx_rd_reg(vha, led_select_value, &led_10_value);
1736 qla83xx_rd_reg(vha, led_select_value + 0x10, &led_43_value);
1737 qla83xx_wr_reg(vha, led_select_value, 0x01f44000);
1738 msleep(500);
1739 qla83xx_wr_reg(vha, led_select_value, 0x400001f4);
1740 msleep(1000);
1741 qla83xx_wr_reg(vha, led_select_value, led_10_value);
1742 qla83xx_wr_reg(vha, led_select_value + 0x10, led_43_value);
1743 } else if (IS_QLA81XX(ha)) {
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08001744 int rval;
1745
1746 /* Save Current */
1747 rval = qla81xx_get_led_config(vha, orig_led_cfg);
1748 /* Do the blink */
1749 if (rval == QLA_SUCCESS) {
1750 if (IS_QLA81XX(ha)) {
1751 led_cfg[0] = 0x4000;
1752 led_cfg[1] = 0x2000;
1753 led_cfg[2] = 0;
1754 led_cfg[3] = 0;
1755 led_cfg[4] = 0;
1756 led_cfg[5] = 0;
1757 } else {
1758 led_cfg[0] = 0x4000;
1759 led_cfg[1] = 0x4000;
1760 led_cfg[2] = 0x4000;
1761 led_cfg[3] = 0x2000;
1762 led_cfg[4] = 0;
1763 led_cfg[5] = 0x2000;
1764 }
1765 rval = qla81xx_set_led_config(vha, led_cfg);
1766 msleep(1000);
1767 if (IS_QLA81XX(ha)) {
1768 led_cfg[0] = 0x4000;
1769 led_cfg[1] = 0x2000;
1770 led_cfg[2] = 0;
1771 } else {
1772 led_cfg[0] = 0x4000;
1773 led_cfg[1] = 0x2000;
1774 led_cfg[2] = 0x4000;
1775 led_cfg[3] = 0x4000;
1776 led_cfg[4] = 0;
1777 led_cfg[5] = 0x2000;
1778 }
1779 rval = qla81xx_set_led_config(vha, led_cfg);
1780 }
1781 /* On exit, restore original (presumes no status change) */
1782 qla81xx_set_led_config(vha, orig_led_cfg);
1783 }
1784}
1785
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08001786int
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001787qla24xx_beacon_on(struct scsi_qla_host *vha)
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08001788{
1789 uint32_t gpio_data;
1790 unsigned long flags;
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001791 struct qla_hw_data *ha = vha->hw;
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08001792 struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
1793
Atul Deshmukh7ec0eff2013-08-27 01:37:28 -04001794 if (IS_P3P_TYPE(ha))
Giridhar Malavalia9083012010-04-12 17:59:55 -07001795 return QLA_SUCCESS;
1796
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08001797 if (IS_QLA8031(ha) || IS_QLA81XX(ha))
1798 goto skip_gpio; /* let blink handle it */
1799
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08001800 if (ha->beacon_blink_led == 0) {
1801 /* Enable firmware for update */
1802 ha->fw_options[1] |= ADD_FO1_DISABLE_GPIO_LED_CTRL;
1803
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001804 if (qla2x00_set_fw_options(vha, ha->fw_options) != QLA_SUCCESS)
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08001805 return QLA_FUNCTION_FAILED;
1806
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001807 if (qla2x00_get_fw_options(vha, ha->fw_options) !=
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08001808 QLA_SUCCESS) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001809 ql_log(ql_log_warn, vha, 0x7009,
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08001810 "Unable to update fw options (beacon on).\n");
1811 return QLA_FUNCTION_FAILED;
1812 }
1813
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08001814 if (IS_QLA2031(ha))
1815 goto skip_gpio;
1816
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08001817 spin_lock_irqsave(&ha->hardware_lock, flags);
1818 gpio_data = RD_REG_DWORD(&reg->gpiod);
1819
1820 /* Enable the gpio_data reg for update. */
1821 gpio_data |= GPDX_LED_UPDATE_MASK;
1822 WRT_REG_DWORD(&reg->gpiod, gpio_data);
1823 RD_REG_DWORD(&reg->gpiod);
1824
1825 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1826 }
1827
1828 /* So all colors blink together. */
1829 ha->beacon_color_state = 0;
1830
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08001831skip_gpio:
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08001832 /* Let the per HBA timer kick off the blinking process. */
1833 ha->beacon_blink_led = 1;
1834
1835 return QLA_SUCCESS;
1836}
1837
1838int
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001839qla24xx_beacon_off(struct scsi_qla_host *vha)
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08001840{
1841 uint32_t gpio_data;
1842 unsigned long flags;
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001843 struct qla_hw_data *ha = vha->hw;
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08001844 struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
1845
Atul Deshmukh7ec0eff2013-08-27 01:37:28 -04001846 if (IS_P3P_TYPE(ha))
Giridhar Malavalia9083012010-04-12 17:59:55 -07001847 return QLA_SUCCESS;
1848
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08001849 ha->beacon_blink_led = 0;
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08001850
1851 if (IS_QLA2031(ha))
1852 goto set_fw_options;
1853
1854 if (IS_QLA8031(ha) || IS_QLA81XX(ha))
1855 return QLA_SUCCESS;
1856
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08001857 ha->beacon_color_state = QLA_LED_ALL_ON;
1858
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001859 ha->isp_ops->beacon_blink(vha); /* Will flip to all off. */
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08001860
1861 /* Give control back to firmware. */
1862 spin_lock_irqsave(&ha->hardware_lock, flags);
1863 gpio_data = RD_REG_DWORD(&reg->gpiod);
1864
1865 /* Disable the gpio_data reg for update. */
1866 gpio_data &= ~GPDX_LED_UPDATE_MASK;
1867 WRT_REG_DWORD(&reg->gpiod, gpio_data);
1868 RD_REG_DWORD(&reg->gpiod);
1869 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1870
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08001871set_fw_options:
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08001872 ha->fw_options[1] &= ~ADD_FO1_DISABLE_GPIO_LED_CTRL;
1873
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001874 if (qla2x00_set_fw_options(vha, ha->fw_options) != QLA_SUCCESS) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001875 ql_log(ql_log_warn, vha, 0x704d,
1876 "Unable to update fw options (beacon on).\n");
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08001877 return QLA_FUNCTION_FAILED;
1878 }
1879
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001880 if (qla2x00_get_fw_options(vha, ha->fw_options) != QLA_SUCCESS) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001881 ql_log(ql_log_warn, vha, 0x704e,
1882 "Unable to update fw options (beacon on).\n");
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08001883 return QLA_FUNCTION_FAILED;
1884 }
1885
1886 return QLA_SUCCESS;
1887}
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -08001888
1889
1890/*
1891 * Flash support routines
1892 */
1893
1894/**
1895 * qla2x00_flash_enable() - Setup flash for reading and writing.
1896 * @ha: HA context
1897 */
1898static void
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001899qla2x00_flash_enable(struct qla_hw_data *ha)
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -08001900{
1901 uint16_t data;
1902 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
1903
1904 data = RD_REG_WORD(&reg->ctrl_status);
1905 data |= CSR_FLASH_ENABLE;
1906 WRT_REG_WORD(&reg->ctrl_status, data);
1907 RD_REG_WORD(&reg->ctrl_status); /* PCI Posting. */
1908}
1909
1910/**
1911 * qla2x00_flash_disable() - Disable flash and allow RISC to run.
1912 * @ha: HA context
1913 */
1914static void
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001915qla2x00_flash_disable(struct qla_hw_data *ha)
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -08001916{
1917 uint16_t data;
1918 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
1919
1920 data = RD_REG_WORD(&reg->ctrl_status);
1921 data &= ~(CSR_FLASH_ENABLE);
1922 WRT_REG_WORD(&reg->ctrl_status, data);
1923 RD_REG_WORD(&reg->ctrl_status); /* PCI Posting. */
1924}
1925
1926/**
1927 * qla2x00_read_flash_byte() - Reads a byte from flash
1928 * @ha: HA context
1929 * @addr: Address in flash to read
1930 *
1931 * A word is read from the chip, but, only the lower byte is valid.
1932 *
1933 * Returns the byte read from flash @addr.
1934 */
1935static uint8_t
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001936qla2x00_read_flash_byte(struct qla_hw_data *ha, uint32_t addr)
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -08001937{
1938 uint16_t data;
1939 uint16_t bank_select;
1940 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
1941
1942 bank_select = RD_REG_WORD(&reg->ctrl_status);
1943
1944 if (IS_QLA2322(ha) || IS_QLA6322(ha)) {
1945 /* Specify 64K address range: */
1946 /* clear out Module Select and Flash Address bits [19:16]. */
1947 bank_select &= ~0xf8;
1948 bank_select |= addr >> 12 & 0xf0;
1949 bank_select |= CSR_FLASH_64K_BANK;
1950 WRT_REG_WORD(&reg->ctrl_status, bank_select);
1951 RD_REG_WORD(&reg->ctrl_status); /* PCI Posting. */
1952
1953 WRT_REG_WORD(&reg->flash_address, (uint16_t)addr);
1954 data = RD_REG_WORD(&reg->flash_data);
1955
1956 return (uint8_t)data;
1957 }
1958
1959 /* Setup bit 16 of flash address. */
1960 if ((addr & BIT_16) && ((bank_select & CSR_FLASH_64K_BANK) == 0)) {
1961 bank_select |= CSR_FLASH_64K_BANK;
1962 WRT_REG_WORD(&reg->ctrl_status, bank_select);
1963 RD_REG_WORD(&reg->ctrl_status); /* PCI Posting. */
1964 } else if (((addr & BIT_16) == 0) &&
1965 (bank_select & CSR_FLASH_64K_BANK)) {
1966 bank_select &= ~(CSR_FLASH_64K_BANK);
1967 WRT_REG_WORD(&reg->ctrl_status, bank_select);
1968 RD_REG_WORD(&reg->ctrl_status); /* PCI Posting. */
1969 }
1970
1971 /* Always perform IO mapped accesses to the FLASH registers. */
1972 if (ha->pio_address) {
1973 uint16_t data2;
1974
Andrew Vasquez948882f2008-01-31 12:33:44 -08001975 WRT_REG_WORD_PIO(PIO_REG(ha, flash_address), (uint16_t)addr);
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -08001976 do {
Andrew Vasquez948882f2008-01-31 12:33:44 -08001977 data = RD_REG_WORD_PIO(PIO_REG(ha, flash_data));
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -08001978 barrier();
1979 cpu_relax();
Andrew Vasquez948882f2008-01-31 12:33:44 -08001980 data2 = RD_REG_WORD_PIO(PIO_REG(ha, flash_data));
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -08001981 } while (data != data2);
1982 } else {
1983 WRT_REG_WORD(&reg->flash_address, (uint16_t)addr);
1984 data = qla2x00_debounce_register(&reg->flash_data);
1985 }
1986
1987 return (uint8_t)data;
1988}
1989
1990/**
1991 * qla2x00_write_flash_byte() - Write a byte to flash
1992 * @ha: HA context
1993 * @addr: Address in flash to write
1994 * @data: Data to write
1995 */
1996static void
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001997qla2x00_write_flash_byte(struct qla_hw_data *ha, uint32_t addr, uint8_t data)
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -08001998{
1999 uint16_t bank_select;
2000 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
2001
2002 bank_select = RD_REG_WORD(&reg->ctrl_status);
2003 if (IS_QLA2322(ha) || IS_QLA6322(ha)) {
2004 /* Specify 64K address range: */
2005 /* clear out Module Select and Flash Address bits [19:16]. */
2006 bank_select &= ~0xf8;
2007 bank_select |= addr >> 12 & 0xf0;
2008 bank_select |= CSR_FLASH_64K_BANK;
2009 WRT_REG_WORD(&reg->ctrl_status, bank_select);
2010 RD_REG_WORD(&reg->ctrl_status); /* PCI Posting. */
2011
2012 WRT_REG_WORD(&reg->flash_address, (uint16_t)addr);
2013 RD_REG_WORD(&reg->ctrl_status); /* PCI Posting. */
2014 WRT_REG_WORD(&reg->flash_data, (uint16_t)data);
2015 RD_REG_WORD(&reg->ctrl_status); /* PCI Posting. */
2016
2017 return;
2018 }
2019
2020 /* Setup bit 16 of flash address. */
2021 if ((addr & BIT_16) && ((bank_select & CSR_FLASH_64K_BANK) == 0)) {
2022 bank_select |= CSR_FLASH_64K_BANK;
2023 WRT_REG_WORD(&reg->ctrl_status, bank_select);
2024 RD_REG_WORD(&reg->ctrl_status); /* PCI Posting. */
2025 } else if (((addr & BIT_16) == 0) &&
2026 (bank_select & CSR_FLASH_64K_BANK)) {
2027 bank_select &= ~(CSR_FLASH_64K_BANK);
2028 WRT_REG_WORD(&reg->ctrl_status, bank_select);
2029 RD_REG_WORD(&reg->ctrl_status); /* PCI Posting. */
2030 }
2031
2032 /* Always perform IO mapped accesses to the FLASH registers. */
2033 if (ha->pio_address) {
Andrew Vasquez948882f2008-01-31 12:33:44 -08002034 WRT_REG_WORD_PIO(PIO_REG(ha, flash_address), (uint16_t)addr);
2035 WRT_REG_WORD_PIO(PIO_REG(ha, flash_data), (uint16_t)data);
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -08002036 } else {
2037 WRT_REG_WORD(&reg->flash_address, (uint16_t)addr);
2038 RD_REG_WORD(&reg->ctrl_status); /* PCI Posting. */
2039 WRT_REG_WORD(&reg->flash_data, (uint16_t)data);
2040 RD_REG_WORD(&reg->ctrl_status); /* PCI Posting. */
2041 }
2042}
2043
2044/**
2045 * qla2x00_poll_flash() - Polls flash for completion.
2046 * @ha: HA context
2047 * @addr: Address in flash to poll
2048 * @poll_data: Data to be polled
2049 * @man_id: Flash manufacturer ID
2050 * @flash_id: Flash ID
2051 *
2052 * This function polls the device until bit 7 of what is read matches data
2053 * bit 7 or until data bit 5 becomes a 1. If that hapens, the flash ROM timed
2054 * out (a fatal error). The flash book recommeds reading bit 7 again after
2055 * reading bit 5 as a 1.
2056 *
2057 * Returns 0 on success, else non-zero.
2058 */
2059static int
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08002060qla2x00_poll_flash(struct qla_hw_data *ha, uint32_t addr, uint8_t poll_data,
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -08002061 uint8_t man_id, uint8_t flash_id)
2062{
2063 int status;
2064 uint8_t flash_data;
2065 uint32_t cnt;
2066
2067 status = 1;
2068
2069 /* Wait for 30 seconds for command to finish. */
2070 poll_data &= BIT_7;
2071 for (cnt = 3000000; cnt; cnt--) {
2072 flash_data = qla2x00_read_flash_byte(ha, addr);
2073 if ((flash_data & BIT_7) == poll_data) {
2074 status = 0;
2075 break;
2076 }
2077
2078 if (man_id != 0x40 && man_id != 0xda) {
2079 if ((flash_data & BIT_5) && cnt > 2)
2080 cnt = 2;
2081 }
2082 udelay(10);
2083 barrier();
Andrew Vasquez40a2e342007-03-12 10:41:28 -07002084 cond_resched();
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -08002085 }
2086 return status;
2087}
2088
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -08002089/**
2090 * qla2x00_program_flash_address() - Programs a flash address
2091 * @ha: HA context
2092 * @addr: Address in flash to program
2093 * @data: Data to be written in flash
2094 * @man_id: Flash manufacturer ID
2095 * @flash_id: Flash ID
2096 *
2097 * Returns 0 on success, else non-zero.
2098 */
2099static int
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08002100qla2x00_program_flash_address(struct qla_hw_data *ha, uint32_t addr,
2101 uint8_t data, uint8_t man_id, uint8_t flash_id)
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -08002102{
2103 /* Write Program Command Sequence. */
2104 if (IS_OEM_001(ha)) {
2105 qla2x00_write_flash_byte(ha, 0xaaa, 0xaa);
2106 qla2x00_write_flash_byte(ha, 0x555, 0x55);
2107 qla2x00_write_flash_byte(ha, 0xaaa, 0xa0);
2108 qla2x00_write_flash_byte(ha, addr, data);
2109 } else {
2110 if (man_id == 0xda && flash_id == 0xc1) {
2111 qla2x00_write_flash_byte(ha, addr, data);
2112 if (addr & 0x7e)
2113 return 0;
2114 } else {
2115 qla2x00_write_flash_byte(ha, 0x5555, 0xaa);
2116 qla2x00_write_flash_byte(ha, 0x2aaa, 0x55);
2117 qla2x00_write_flash_byte(ha, 0x5555, 0xa0);
2118 qla2x00_write_flash_byte(ha, addr, data);
2119 }
2120 }
2121
2122 udelay(150);
2123
2124 /* Wait for write to complete. */
2125 return qla2x00_poll_flash(ha, addr, data, man_id, flash_id);
2126}
2127
2128/**
2129 * qla2x00_erase_flash() - Erase the flash.
2130 * @ha: HA context
2131 * @man_id: Flash manufacturer ID
2132 * @flash_id: Flash ID
2133 *
2134 * Returns 0 on success, else non-zero.
2135 */
2136static int
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08002137qla2x00_erase_flash(struct qla_hw_data *ha, uint8_t man_id, uint8_t flash_id)
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -08002138{
2139 /* Individual Sector Erase Command Sequence */
2140 if (IS_OEM_001(ha)) {
2141 qla2x00_write_flash_byte(ha, 0xaaa, 0xaa);
2142 qla2x00_write_flash_byte(ha, 0x555, 0x55);
2143 qla2x00_write_flash_byte(ha, 0xaaa, 0x80);
2144 qla2x00_write_flash_byte(ha, 0xaaa, 0xaa);
2145 qla2x00_write_flash_byte(ha, 0x555, 0x55);
2146 qla2x00_write_flash_byte(ha, 0xaaa, 0x10);
2147 } else {
2148 qla2x00_write_flash_byte(ha, 0x5555, 0xaa);
2149 qla2x00_write_flash_byte(ha, 0x2aaa, 0x55);
2150 qla2x00_write_flash_byte(ha, 0x5555, 0x80);
2151 qla2x00_write_flash_byte(ha, 0x5555, 0xaa);
2152 qla2x00_write_flash_byte(ha, 0x2aaa, 0x55);
2153 qla2x00_write_flash_byte(ha, 0x5555, 0x10);
2154 }
2155
2156 udelay(150);
2157
2158 /* Wait for erase to complete. */
2159 return qla2x00_poll_flash(ha, 0x00, 0x80, man_id, flash_id);
2160}
2161
2162/**
2163 * qla2x00_erase_flash_sector() - Erase a flash sector.
2164 * @ha: HA context
2165 * @addr: Flash sector to erase
2166 * @sec_mask: Sector address mask
2167 * @man_id: Flash manufacturer ID
2168 * @flash_id: Flash ID
2169 *
2170 * Returns 0 on success, else non-zero.
2171 */
2172static int
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08002173qla2x00_erase_flash_sector(struct qla_hw_data *ha, uint32_t addr,
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -08002174 uint32_t sec_mask, uint8_t man_id, uint8_t flash_id)
2175{
2176 /* Individual Sector Erase Command Sequence */
2177 qla2x00_write_flash_byte(ha, 0x5555, 0xaa);
2178 qla2x00_write_flash_byte(ha, 0x2aaa, 0x55);
2179 qla2x00_write_flash_byte(ha, 0x5555, 0x80);
2180 qla2x00_write_flash_byte(ha, 0x5555, 0xaa);
2181 qla2x00_write_flash_byte(ha, 0x2aaa, 0x55);
2182 if (man_id == 0x1f && flash_id == 0x13)
2183 qla2x00_write_flash_byte(ha, addr & sec_mask, 0x10);
2184 else
2185 qla2x00_write_flash_byte(ha, addr & sec_mask, 0x30);
2186
2187 udelay(150);
2188
2189 /* Wait for erase to complete. */
2190 return qla2x00_poll_flash(ha, addr, 0x80, man_id, flash_id);
2191}
2192
2193/**
2194 * qla2x00_get_flash_manufacturer() - Read manufacturer ID from flash chip.
2195 * @man_id: Flash manufacturer ID
2196 * @flash_id: Flash ID
2197 */
2198static void
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08002199qla2x00_get_flash_manufacturer(struct qla_hw_data *ha, uint8_t *man_id,
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -08002200 uint8_t *flash_id)
2201{
2202 qla2x00_write_flash_byte(ha, 0x5555, 0xaa);
2203 qla2x00_write_flash_byte(ha, 0x2aaa, 0x55);
2204 qla2x00_write_flash_byte(ha, 0x5555, 0x90);
2205 *man_id = qla2x00_read_flash_byte(ha, 0x0000);
2206 *flash_id = qla2x00_read_flash_byte(ha, 0x0001);
2207 qla2x00_write_flash_byte(ha, 0x5555, 0xaa);
2208 qla2x00_write_flash_byte(ha, 0x2aaa, 0x55);
2209 qla2x00_write_flash_byte(ha, 0x5555, 0xf0);
2210}
2211
Andrew Vasquez30c47662007-01-29 10:22:21 -08002212static void
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08002213qla2x00_read_flash_data(struct qla_hw_data *ha, uint8_t *tmp_buf,
2214 uint32_t saddr, uint32_t length)
Andrew Vasquez30c47662007-01-29 10:22:21 -08002215{
2216 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
2217 uint32_t midpoint, ilength;
2218 uint8_t data;
2219
2220 midpoint = length / 2;
2221
2222 WRT_REG_WORD(&reg->nvram, 0);
2223 RD_REG_WORD(&reg->nvram);
2224 for (ilength = 0; ilength < length; saddr++, ilength++, tmp_buf++) {
2225 if (ilength == midpoint) {
2226 WRT_REG_WORD(&reg->nvram, NVR_SELECT);
2227 RD_REG_WORD(&reg->nvram);
2228 }
2229 data = qla2x00_read_flash_byte(ha, saddr);
2230 if (saddr % 100)
2231 udelay(10);
2232 *tmp_buf = data;
Andrew Vasquez40a2e342007-03-12 10:41:28 -07002233 cond_resched();
Andrew Vasquez30c47662007-01-29 10:22:21 -08002234 }
2235}
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -08002236
2237static inline void
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08002238qla2x00_suspend_hba(struct scsi_qla_host *vha)
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -08002239{
2240 int cnt;
2241 unsigned long flags;
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08002242 struct qla_hw_data *ha = vha->hw;
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -08002243 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
2244
2245 /* Suspend HBA. */
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08002246 scsi_block_requests(vha->host);
Andrew Vasquezfd34f552007-07-19 15:06:00 -07002247 ha->isp_ops->disable_intrs(ha);
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -08002248 set_bit(MBX_UPDATE_FLASH_ACTIVE, &ha->mbx_cmd_flags);
2249
2250 /* Pause RISC. */
2251 spin_lock_irqsave(&ha->hardware_lock, flags);
2252 WRT_REG_WORD(&reg->hccr, HCCR_PAUSE_RISC);
2253 RD_REG_WORD(&reg->hccr);
2254 if (IS_QLA2100(ha) || IS_QLA2200(ha) || IS_QLA2300(ha)) {
2255 for (cnt = 0; cnt < 30000; cnt++) {
2256 if ((RD_REG_WORD(&reg->hccr) & HCCR_RISC_PAUSE) != 0)
2257 break;
2258 udelay(100);
2259 }
2260 } else {
2261 udelay(10);
2262 }
2263 spin_unlock_irqrestore(&ha->hardware_lock, flags);
2264}
2265
2266static inline void
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08002267qla2x00_resume_hba(struct scsi_qla_host *vha)
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -08002268{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08002269 struct qla_hw_data *ha = vha->hw;
2270
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -08002271 /* Resume HBA. */
2272 clear_bit(MBX_UPDATE_FLASH_ACTIVE, &ha->mbx_cmd_flags);
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08002273 set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
2274 qla2xxx_wake_dpc(vha);
Lalit Chandivade2533cf62009-03-24 09:08:07 -07002275 qla2x00_wait_for_chip_reset(vha);
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08002276 scsi_unblock_requests(vha->host);
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -08002277}
2278
2279uint8_t *
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08002280qla2x00_read_optrom_data(struct scsi_qla_host *vha, uint8_t *buf,
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -08002281 uint32_t offset, uint32_t length)
2282{
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -08002283 uint32_t addr, midpoint;
2284 uint8_t *data;
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08002285 struct qla_hw_data *ha = vha->hw;
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -08002286 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
2287
2288 /* Suspend HBA. */
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08002289 qla2x00_suspend_hba(vha);
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -08002290
2291 /* Go with read. */
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -08002292 midpoint = ha->optrom_size / 2;
2293
2294 qla2x00_flash_enable(ha);
2295 WRT_REG_WORD(&reg->nvram, 0);
2296 RD_REG_WORD(&reg->nvram); /* PCI Posting. */
2297 for (addr = offset, data = buf; addr < length; addr++, data++) {
2298 if (addr == midpoint) {
2299 WRT_REG_WORD(&reg->nvram, NVR_SELECT);
2300 RD_REG_WORD(&reg->nvram); /* PCI Posting. */
2301 }
2302
2303 *data = qla2x00_read_flash_byte(ha, addr);
2304 }
2305 qla2x00_flash_disable(ha);
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -08002306
2307 /* Resume HBA. */
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08002308 qla2x00_resume_hba(vha);
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -08002309
2310 return buf;
2311}
2312
2313int
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08002314qla2x00_write_optrom_data(struct scsi_qla_host *vha, uint8_t *buf,
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -08002315 uint32_t offset, uint32_t length)
2316{
2317
2318 int rval;
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -08002319 uint8_t man_id, flash_id, sec_number, data;
2320 uint16_t wd;
2321 uint32_t addr, liter, sec_mask, rest_addr;
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08002322 struct qla_hw_data *ha = vha->hw;
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -08002323 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
2324
2325 /* Suspend HBA. */
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08002326 qla2x00_suspend_hba(vha);
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -08002327
2328 rval = QLA_SUCCESS;
2329 sec_number = 0;
2330
2331 /* Reset ISP chip. */
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -08002332 WRT_REG_WORD(&reg->ctrl_status, CSR_ISP_SOFT_RESET);
2333 pci_read_config_word(ha->pdev, PCI_COMMAND, &wd);
2334
2335 /* Go with write. */
2336 qla2x00_flash_enable(ha);
2337 do { /* Loop once to provide quick error exit */
2338 /* Structure of flash memory based on manufacturer */
2339 if (IS_OEM_001(ha)) {
2340 /* OEM variant with special flash part. */
2341 man_id = flash_id = 0;
2342 rest_addr = 0xffff;
2343 sec_mask = 0x10000;
2344 goto update_flash;
2345 }
2346 qla2x00_get_flash_manufacturer(ha, &man_id, &flash_id);
2347 switch (man_id) {
2348 case 0x20: /* ST flash. */
2349 if (flash_id == 0xd2 || flash_id == 0xe3) {
2350 /*
2351 * ST m29w008at part - 64kb sector size with
2352 * 32kb,8kb,8kb,16kb sectors at memory address
2353 * 0xf0000.
2354 */
2355 rest_addr = 0xffff;
2356 sec_mask = 0x10000;
Chad Dupuisf73cb692014-02-26 04:15:06 -05002357 break;
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -08002358 }
2359 /*
2360 * ST m29w010b part - 16kb sector size
2361 * Default to 16kb sectors
2362 */
2363 rest_addr = 0x3fff;
2364 sec_mask = 0x1c000;
2365 break;
2366 case 0x40: /* Mostel flash. */
2367 /* Mostel v29c51001 part - 512 byte sector size. */
2368 rest_addr = 0x1ff;
2369 sec_mask = 0x1fe00;
2370 break;
2371 case 0xbf: /* SST flash. */
2372 /* SST39sf10 part - 4kb sector size. */
2373 rest_addr = 0xfff;
2374 sec_mask = 0x1f000;
2375 break;
2376 case 0xda: /* Winbond flash. */
2377 /* Winbond W29EE011 part - 256 byte sector size. */
2378 rest_addr = 0x7f;
2379 sec_mask = 0x1ff80;
2380 break;
2381 case 0xc2: /* Macronix flash. */
2382 /* 64k sector size. */
2383 if (flash_id == 0x38 || flash_id == 0x4f) {
2384 rest_addr = 0xffff;
2385 sec_mask = 0x10000;
2386 break;
2387 }
2388 /* Fall through... */
2389
2390 case 0x1f: /* Atmel flash. */
2391 /* 512k sector size. */
2392 if (flash_id == 0x13) {
2393 rest_addr = 0x7fffffff;
2394 sec_mask = 0x80000000;
2395 break;
2396 }
2397 /* Fall through... */
2398
2399 case 0x01: /* AMD flash. */
2400 if (flash_id == 0x38 || flash_id == 0x40 ||
2401 flash_id == 0x4f) {
2402 /* Am29LV081 part - 64kb sector size. */
2403 /* Am29LV002BT part - 64kb sector size. */
2404 rest_addr = 0xffff;
2405 sec_mask = 0x10000;
2406 break;
2407 } else if (flash_id == 0x3e) {
2408 /*
2409 * Am29LV008b part - 64kb sector size with
2410 * 32kb,8kb,8kb,16kb sector at memory address
2411 * h0xf0000.
2412 */
2413 rest_addr = 0xffff;
2414 sec_mask = 0x10000;
2415 break;
2416 } else if (flash_id == 0x20 || flash_id == 0x6e) {
2417 /*
2418 * Am29LV010 part or AM29f010 - 16kb sector
2419 * size.
2420 */
2421 rest_addr = 0x3fff;
2422 sec_mask = 0x1c000;
2423 break;
2424 } else if (flash_id == 0x6d) {
2425 /* Am29LV001 part - 8kb sector size. */
2426 rest_addr = 0x1fff;
2427 sec_mask = 0x1e000;
2428 break;
2429 }
2430 default:
2431 /* Default to 16 kb sector size. */
2432 rest_addr = 0x3fff;
2433 sec_mask = 0x1c000;
2434 break;
2435 }
2436
2437update_flash:
2438 if (IS_QLA2322(ha) || IS_QLA6322(ha)) {
2439 if (qla2x00_erase_flash(ha, man_id, flash_id)) {
2440 rval = QLA_FUNCTION_FAILED;
2441 break;
2442 }
2443 }
2444
2445 for (addr = offset, liter = 0; liter < length; liter++,
2446 addr++) {
2447 data = buf[liter];
2448 /* Are we at the beginning of a sector? */
2449 if ((addr & rest_addr) == 0) {
2450 if (IS_QLA2322(ha) || IS_QLA6322(ha)) {
2451 if (addr >= 0x10000UL) {
2452 if (((addr >> 12) & 0xf0) &&
2453 ((man_id == 0x01 &&
2454 flash_id == 0x3e) ||
2455 (man_id == 0x20 &&
2456 flash_id == 0xd2))) {
2457 sec_number++;
2458 if (sec_number == 1) {
2459 rest_addr =
2460 0x7fff;
2461 sec_mask =
2462 0x18000;
2463 } else if (
2464 sec_number == 2 ||
2465 sec_number == 3) {
2466 rest_addr =
2467 0x1fff;
2468 sec_mask =
2469 0x1e000;
2470 } else if (
2471 sec_number == 4) {
2472 rest_addr =
2473 0x3fff;
2474 sec_mask =
2475 0x1c000;
2476 }
2477 }
2478 }
2479 } else if (addr == ha->optrom_size / 2) {
2480 WRT_REG_WORD(&reg->nvram, NVR_SELECT);
2481 RD_REG_WORD(&reg->nvram);
2482 }
2483
2484 if (flash_id == 0xda && man_id == 0xc1) {
2485 qla2x00_write_flash_byte(ha, 0x5555,
2486 0xaa);
2487 qla2x00_write_flash_byte(ha, 0x2aaa,
2488 0x55);
2489 qla2x00_write_flash_byte(ha, 0x5555,
2490 0xa0);
2491 } else if (!IS_QLA2322(ha) && !IS_QLA6322(ha)) {
2492 /* Then erase it */
2493 if (qla2x00_erase_flash_sector(ha,
2494 addr, sec_mask, man_id,
2495 flash_id)) {
2496 rval = QLA_FUNCTION_FAILED;
2497 break;
2498 }
2499 if (man_id == 0x01 && flash_id == 0x6d)
2500 sec_number++;
2501 }
2502 }
2503
2504 if (man_id == 0x01 && flash_id == 0x6d) {
2505 if (sec_number == 1 &&
2506 addr == (rest_addr - 1)) {
2507 rest_addr = 0x0fff;
2508 sec_mask = 0x1f000;
2509 } else if (sec_number == 3 && (addr & 0x7ffe)) {
2510 rest_addr = 0x3fff;
2511 sec_mask = 0x1c000;
2512 }
2513 }
2514
2515 if (qla2x00_program_flash_address(ha, addr, data,
2516 man_id, flash_id)) {
2517 rval = QLA_FUNCTION_FAILED;
2518 break;
2519 }
Andrew Vasquez40a2e342007-03-12 10:41:28 -07002520 cond_resched();
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -08002521 }
2522 } while (0);
2523 qla2x00_flash_disable(ha);
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -08002524
2525 /* Resume HBA. */
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08002526 qla2x00_resume_hba(vha);
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -08002527
2528 return rval;
2529}
2530
2531uint8_t *
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08002532qla24xx_read_optrom_data(struct scsi_qla_host *vha, uint8_t *buf,
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -08002533 uint32_t offset, uint32_t length)
2534{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08002535 struct qla_hw_data *ha = vha->hw;
2536
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -08002537 /* Suspend HBA. */
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08002538 scsi_block_requests(vha->host);
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -08002539 set_bit(MBX_UPDATE_FLASH_ACTIVE, &ha->mbx_cmd_flags);
2540
2541 /* Go with read. */
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08002542 qla24xx_read_flash_data(vha, (uint32_t *)buf, offset >> 2, length >> 2);
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -08002543
2544 /* Resume HBA. */
2545 clear_bit(MBX_UPDATE_FLASH_ACTIVE, &ha->mbx_cmd_flags);
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08002546 scsi_unblock_requests(vha->host);
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -08002547
2548 return buf;
2549}
2550
2551int
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08002552qla24xx_write_optrom_data(struct scsi_qla_host *vha, uint8_t *buf,
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -08002553 uint32_t offset, uint32_t length)
2554{
2555 int rval;
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08002556 struct qla_hw_data *ha = vha->hw;
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -08002557
2558 /* Suspend HBA. */
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08002559 scsi_block_requests(vha->host);
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -08002560 set_bit(MBX_UPDATE_FLASH_ACTIVE, &ha->mbx_cmd_flags);
2561
2562 /* Go with write. */
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08002563 rval = qla24xx_write_flash_data(vha, (uint32_t *)buf, offset >> 2,
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -08002564 length >> 2);
2565
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -08002566 clear_bit(MBX_UPDATE_FLASH_ACTIVE, &ha->mbx_cmd_flags);
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08002567 scsi_unblock_requests(vha->host);
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -08002568
2569 return rval;
2570}
Andrew Vasquez30c47662007-01-29 10:22:21 -08002571
Andrew Vasquez338c9162007-09-20 14:07:33 -07002572uint8_t *
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08002573qla25xx_read_optrom_data(struct scsi_qla_host *vha, uint8_t *buf,
Andrew Vasquez338c9162007-09-20 14:07:33 -07002574 uint32_t offset, uint32_t length)
2575{
2576 int rval;
2577 dma_addr_t optrom_dma;
2578 void *optrom;
2579 uint8_t *pbuf;
2580 uint32_t faddr, left, burst;
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08002581 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez338c9162007-09-20 14:07:33 -07002582
Chad Dupuisf73cb692014-02-26 04:15:06 -05002583 if (IS_QLA25XX(ha) || IS_QLA81XX(ha) || IS_QLA27XX(ha))
Andrew Vasquez368bbe02010-01-12 12:59:49 -08002584 goto try_fast;
Joe Carnucciob7cc1762007-09-20 14:07:35 -07002585 if (offset & 0xfff)
Andrew Vasquez338c9162007-09-20 14:07:33 -07002586 goto slow_read;
2587 if (length < OPTROM_BURST_SIZE)
2588 goto slow_read;
2589
Andrew Vasquez368bbe02010-01-12 12:59:49 -08002590try_fast:
Andrew Vasquez338c9162007-09-20 14:07:33 -07002591 optrom = dma_alloc_coherent(&ha->pdev->dev, OPTROM_BURST_SIZE,
2592 &optrom_dma, GFP_KERNEL);
2593 if (!optrom) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002594 ql_log(ql_log_warn, vha, 0x00cc,
2595 "Unable to allocate memory for optrom burst read (%x KB).\n",
2596 OPTROM_BURST_SIZE / 1024);
Andrew Vasquez338c9162007-09-20 14:07:33 -07002597 goto slow_read;
2598 }
2599
2600 pbuf = buf;
2601 faddr = offset >> 2;
2602 left = length >> 2;
2603 burst = OPTROM_BURST_DWORDS;
2604 while (left != 0) {
2605 if (burst > left)
2606 burst = left;
2607
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08002608 rval = qla2x00_dump_ram(vha, optrom_dma,
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08002609 flash_data_addr(ha, faddr), burst);
Andrew Vasquez338c9162007-09-20 14:07:33 -07002610 if (rval) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002611 ql_log(ql_log_warn, vha, 0x00f5,
2612 "Unable to burst-read optrom segment (%x/%x/%llx).\n",
2613 rval, flash_data_addr(ha, faddr),
Andrew Morton875baf32007-10-16 14:28:20 -07002614 (unsigned long long)optrom_dma);
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002615 ql_log(ql_log_warn, vha, 0x00f6,
Andrew Vasquez338c9162007-09-20 14:07:33 -07002616 "Reverting to slow-read.\n");
2617
2618 dma_free_coherent(&ha->pdev->dev, OPTROM_BURST_SIZE,
2619 optrom, optrom_dma);
2620 goto slow_read;
2621 }
2622
2623 memcpy(pbuf, optrom, burst * 4);
2624
2625 left -= burst;
2626 faddr += burst;
2627 pbuf += burst * 4;
2628 }
2629
2630 dma_free_coherent(&ha->pdev->dev, OPTROM_BURST_SIZE, optrom,
2631 optrom_dma);
2632
2633 return buf;
2634
2635slow_read:
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08002636 return qla24xx_read_optrom_data(vha, buf, offset, length);
Andrew Vasquez338c9162007-09-20 14:07:33 -07002637}
2638
Andrew Vasquez30c47662007-01-29 10:22:21 -08002639/**
2640 * qla2x00_get_fcode_version() - Determine an FCODE image's version.
2641 * @ha: HA context
2642 * @pcids: Pointer to the FCODE PCI data structure
2643 *
2644 * The process of retrieving the FCODE version information is at best
2645 * described as interesting.
2646 *
2647 * Within the first 100h bytes of the image an ASCII string is present
2648 * which contains several pieces of information including the FCODE
2649 * version. Unfortunately it seems the only reliable way to retrieve
2650 * the version is by scanning for another sentinel within the string,
2651 * the FCODE build date:
2652 *
2653 * ... 2.00.02 10/17/02 ...
2654 *
2655 * Returns QLA_SUCCESS on successful retrieval of version.
2656 */
2657static void
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08002658qla2x00_get_fcode_version(struct qla_hw_data *ha, uint32_t pcids)
Andrew Vasquez30c47662007-01-29 10:22:21 -08002659{
2660 int ret = QLA_FUNCTION_FAILED;
2661 uint32_t istart, iend, iter, vend;
2662 uint8_t do_next, rbyte, *vbyte;
2663
2664 memset(ha->fcode_revision, 0, sizeof(ha->fcode_revision));
2665
2666 /* Skip the PCI data structure. */
2667 istart = pcids +
2668 ((qla2x00_read_flash_byte(ha, pcids + 0x0B) << 8) |
2669 qla2x00_read_flash_byte(ha, pcids + 0x0A));
2670 iend = istart + 0x100;
2671 do {
2672 /* Scan for the sentinel date string...eeewww. */
2673 do_next = 0;
2674 iter = istart;
2675 while ((iter < iend) && !do_next) {
2676 iter++;
2677 if (qla2x00_read_flash_byte(ha, iter) == '/') {
2678 if (qla2x00_read_flash_byte(ha, iter + 2) ==
2679 '/')
2680 do_next++;
2681 else if (qla2x00_read_flash_byte(ha,
2682 iter + 3) == '/')
2683 do_next++;
2684 }
2685 }
2686 if (!do_next)
2687 break;
2688
2689 /* Backtrack to previous ' ' (space). */
2690 do_next = 0;
2691 while ((iter > istart) && !do_next) {
2692 iter--;
2693 if (qla2x00_read_flash_byte(ha, iter) == ' ')
2694 do_next++;
2695 }
2696 if (!do_next)
2697 break;
2698
2699 /*
2700 * Mark end of version tag, and find previous ' ' (space) or
2701 * string length (recent FCODE images -- major hack ahead!!!).
2702 */
2703 vend = iter - 1;
2704 do_next = 0;
2705 while ((iter > istart) && !do_next) {
2706 iter--;
2707 rbyte = qla2x00_read_flash_byte(ha, iter);
2708 if (rbyte == ' ' || rbyte == 0xd || rbyte == 0x10)
2709 do_next++;
2710 }
2711 if (!do_next)
2712 break;
2713
2714 /* Mark beginning of version tag, and copy data. */
2715 iter++;
2716 if ((vend - iter) &&
2717 ((vend - iter) < sizeof(ha->fcode_revision))) {
2718 vbyte = ha->fcode_revision;
2719 while (iter <= vend) {
2720 *vbyte++ = qla2x00_read_flash_byte(ha, iter);
2721 iter++;
2722 }
2723 ret = QLA_SUCCESS;
2724 }
2725 } while (0);
2726
2727 if (ret != QLA_SUCCESS)
2728 memset(ha->fcode_revision, 0, sizeof(ha->fcode_revision));
2729}
2730
2731int
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08002732qla2x00_get_flash_version(scsi_qla_host_t *vha, void *mbuf)
Andrew Vasquez30c47662007-01-29 10:22:21 -08002733{
2734 int ret = QLA_SUCCESS;
2735 uint8_t code_type, last_image;
2736 uint32_t pcihdr, pcids;
2737 uint8_t *dbyte;
2738 uint16_t *dcode;
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08002739 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez30c47662007-01-29 10:22:21 -08002740
2741 if (!ha->pio_address || !mbuf)
2742 return QLA_FUNCTION_FAILED;
2743
2744 memset(ha->bios_revision, 0, sizeof(ha->bios_revision));
2745 memset(ha->efi_revision, 0, sizeof(ha->efi_revision));
2746 memset(ha->fcode_revision, 0, sizeof(ha->fcode_revision));
2747 memset(ha->fw_revision, 0, sizeof(ha->fw_revision));
2748
2749 qla2x00_flash_enable(ha);
2750
2751 /* Begin with first PCI expansion ROM header. */
2752 pcihdr = 0;
2753 last_image = 1;
2754 do {
2755 /* Verify PCI expansion ROM header. */
2756 if (qla2x00_read_flash_byte(ha, pcihdr) != 0x55 ||
2757 qla2x00_read_flash_byte(ha, pcihdr + 0x01) != 0xaa) {
2758 /* No signature */
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002759 ql_log(ql_log_fatal, vha, 0x0050,
2760 "No matching ROM signature.\n");
Andrew Vasquez30c47662007-01-29 10:22:21 -08002761 ret = QLA_FUNCTION_FAILED;
2762 break;
2763 }
2764
2765 /* Locate PCI data structure. */
2766 pcids = pcihdr +
2767 ((qla2x00_read_flash_byte(ha, pcihdr + 0x19) << 8) |
2768 qla2x00_read_flash_byte(ha, pcihdr + 0x18));
2769
2770 /* Validate signature of PCI data structure. */
2771 if (qla2x00_read_flash_byte(ha, pcids) != 'P' ||
2772 qla2x00_read_flash_byte(ha, pcids + 0x1) != 'C' ||
2773 qla2x00_read_flash_byte(ha, pcids + 0x2) != 'I' ||
2774 qla2x00_read_flash_byte(ha, pcids + 0x3) != 'R') {
2775 /* Incorrect header. */
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002776 ql_log(ql_log_fatal, vha, 0x0051,
2777 "PCI data struct not found pcir_adr=%x.\n", pcids);
Andrew Vasquez30c47662007-01-29 10:22:21 -08002778 ret = QLA_FUNCTION_FAILED;
2779 break;
2780 }
2781
2782 /* Read version */
2783 code_type = qla2x00_read_flash_byte(ha, pcids + 0x14);
2784 switch (code_type) {
2785 case ROM_CODE_TYPE_BIOS:
2786 /* Intel x86, PC-AT compatible. */
2787 ha->bios_revision[0] =
2788 qla2x00_read_flash_byte(ha, pcids + 0x12);
2789 ha->bios_revision[1] =
2790 qla2x00_read_flash_byte(ha, pcids + 0x13);
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002791 ql_dbg(ql_dbg_init, vha, 0x0052,
2792 "Read BIOS %d.%d.\n",
2793 ha->bios_revision[1], ha->bios_revision[0]);
Andrew Vasquez30c47662007-01-29 10:22:21 -08002794 break;
2795 case ROM_CODE_TYPE_FCODE:
2796 /* Open Firmware standard for PCI (FCode). */
2797 /* Eeeewww... */
2798 qla2x00_get_fcode_version(ha, pcids);
2799 break;
2800 case ROM_CODE_TYPE_EFI:
2801 /* Extensible Firmware Interface (EFI). */
2802 ha->efi_revision[0] =
2803 qla2x00_read_flash_byte(ha, pcids + 0x12);
2804 ha->efi_revision[1] =
2805 qla2x00_read_flash_byte(ha, pcids + 0x13);
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002806 ql_dbg(ql_dbg_init, vha, 0x0053,
2807 "Read EFI %d.%d.\n",
2808 ha->efi_revision[1], ha->efi_revision[0]);
Andrew Vasquez30c47662007-01-29 10:22:21 -08002809 break;
2810 default:
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002811 ql_log(ql_log_warn, vha, 0x0054,
2812 "Unrecognized code type %x at pcids %x.\n",
2813 code_type, pcids);
Andrew Vasquez30c47662007-01-29 10:22:21 -08002814 break;
2815 }
2816
2817 last_image = qla2x00_read_flash_byte(ha, pcids + 0x15) & BIT_7;
2818
2819 /* Locate next PCI expansion ROM. */
2820 pcihdr += ((qla2x00_read_flash_byte(ha, pcids + 0x11) << 8) |
2821 qla2x00_read_flash_byte(ha, pcids + 0x10)) * 512;
2822 } while (!last_image);
2823
2824 if (IS_QLA2322(ha)) {
2825 /* Read firmware image information. */
2826 memset(ha->fw_revision, 0, sizeof(ha->fw_revision));
2827 dbyte = mbuf;
2828 memset(dbyte, 0, 8);
2829 dcode = (uint16_t *)dbyte;
2830
Andrew Vasquezc00d8992008-09-11 21:22:49 -07002831 qla2x00_read_flash_data(ha, dbyte, ha->flt_region_fw * 4 + 10,
Andrew Vasquez30c47662007-01-29 10:22:21 -08002832 8);
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002833 ql_dbg(ql_dbg_init + ql_dbg_buffer, vha, 0x010a,
2834 "Dumping fw "
2835 "ver from flash:.\n");
2836 ql_dump_buffer(ql_dbg_init + ql_dbg_buffer, vha, 0x010b,
2837 (uint8_t *)dbyte, 8);
Andrew Vasquez30c47662007-01-29 10:22:21 -08002838
2839 if ((dcode[0] == 0xffff && dcode[1] == 0xffff &&
2840 dcode[2] == 0xffff && dcode[3] == 0xffff) ||
2841 (dcode[0] == 0 && dcode[1] == 0 && dcode[2] == 0 &&
2842 dcode[3] == 0)) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002843 ql_log(ql_log_warn, vha, 0x0057,
2844 "Unrecognized fw revision at %x.\n",
2845 ha->flt_region_fw * 4);
Andrew Vasquez30c47662007-01-29 10:22:21 -08002846 } else {
2847 /* values are in big endian */
2848 ha->fw_revision[0] = dbyte[0] << 16 | dbyte[1];
2849 ha->fw_revision[1] = dbyte[2] << 16 | dbyte[3];
2850 ha->fw_revision[2] = dbyte[4] << 16 | dbyte[5];
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002851 ql_dbg(ql_dbg_init, vha, 0x0058,
2852 "FW Version: "
2853 "%d.%d.%d.\n", ha->fw_revision[0],
2854 ha->fw_revision[1], ha->fw_revision[2]);
Andrew Vasquez30c47662007-01-29 10:22:21 -08002855 }
2856 }
2857
2858 qla2x00_flash_disable(ha);
2859
2860 return ret;
2861}
2862
2863int
Atul Deshmukh7ec0eff2013-08-27 01:37:28 -04002864qla82xx_get_flash_version(scsi_qla_host_t *vha, void *mbuf)
2865{
2866 int ret = QLA_SUCCESS;
2867 uint32_t pcihdr, pcids;
2868 uint32_t *dcode;
2869 uint8_t *bcode;
2870 uint8_t code_type, last_image;
2871 struct qla_hw_data *ha = vha->hw;
2872
2873 if (!mbuf)
2874 return QLA_FUNCTION_FAILED;
2875
2876 memset(ha->bios_revision, 0, sizeof(ha->bios_revision));
2877 memset(ha->efi_revision, 0, sizeof(ha->efi_revision));
2878 memset(ha->fcode_revision, 0, sizeof(ha->fcode_revision));
2879 memset(ha->fw_revision, 0, sizeof(ha->fw_revision));
2880
2881 dcode = mbuf;
2882
2883 /* Begin with first PCI expansion ROM header. */
2884 pcihdr = ha->flt_region_boot << 2;
2885 last_image = 1;
2886 do {
2887 /* Verify PCI expansion ROM header. */
2888 ha->isp_ops->read_optrom(vha, (uint8_t *)dcode, pcihdr,
2889 0x20 * 4);
2890 bcode = mbuf + (pcihdr % 4);
2891 if (bcode[0x0] != 0x55 || bcode[0x1] != 0xaa) {
2892 /* No signature */
2893 ql_log(ql_log_fatal, vha, 0x0154,
2894 "No matching ROM signature.\n");
2895 ret = QLA_FUNCTION_FAILED;
2896 break;
2897 }
2898
2899 /* Locate PCI data structure. */
2900 pcids = pcihdr + ((bcode[0x19] << 8) | bcode[0x18]);
2901
2902 ha->isp_ops->read_optrom(vha, (uint8_t *)dcode, pcids,
2903 0x20 * 4);
2904 bcode = mbuf + (pcihdr % 4);
2905
2906 /* Validate signature of PCI data structure. */
2907 if (bcode[0x0] != 'P' || bcode[0x1] != 'C' ||
2908 bcode[0x2] != 'I' || bcode[0x3] != 'R') {
2909 /* Incorrect header. */
2910 ql_log(ql_log_fatal, vha, 0x0155,
2911 "PCI data struct not found pcir_adr=%x.\n", pcids);
2912 ret = QLA_FUNCTION_FAILED;
2913 break;
2914 }
2915
2916 /* Read version */
2917 code_type = bcode[0x14];
2918 switch (code_type) {
2919 case ROM_CODE_TYPE_BIOS:
2920 /* Intel x86, PC-AT compatible. */
2921 ha->bios_revision[0] = bcode[0x12];
2922 ha->bios_revision[1] = bcode[0x13];
2923 ql_dbg(ql_dbg_init, vha, 0x0156,
2924 "Read BIOS %d.%d.\n",
2925 ha->bios_revision[1], ha->bios_revision[0]);
2926 break;
2927 case ROM_CODE_TYPE_FCODE:
2928 /* Open Firmware standard for PCI (FCode). */
2929 ha->fcode_revision[0] = bcode[0x12];
2930 ha->fcode_revision[1] = bcode[0x13];
2931 ql_dbg(ql_dbg_init, vha, 0x0157,
2932 "Read FCODE %d.%d.\n",
2933 ha->fcode_revision[1], ha->fcode_revision[0]);
2934 break;
2935 case ROM_CODE_TYPE_EFI:
2936 /* Extensible Firmware Interface (EFI). */
2937 ha->efi_revision[0] = bcode[0x12];
2938 ha->efi_revision[1] = bcode[0x13];
2939 ql_dbg(ql_dbg_init, vha, 0x0158,
2940 "Read EFI %d.%d.\n",
2941 ha->efi_revision[1], ha->efi_revision[0]);
2942 break;
2943 default:
2944 ql_log(ql_log_warn, vha, 0x0159,
2945 "Unrecognized code type %x at pcids %x.\n",
2946 code_type, pcids);
2947 break;
2948 }
2949
2950 last_image = bcode[0x15] & BIT_7;
2951
2952 /* Locate next PCI expansion ROM. */
2953 pcihdr += ((bcode[0x11] << 8) | bcode[0x10]) * 512;
2954 } while (!last_image);
2955
2956 /* Read firmware image information. */
2957 memset(ha->fw_revision, 0, sizeof(ha->fw_revision));
2958 dcode = mbuf;
2959 ha->isp_ops->read_optrom(vha, (uint8_t *)dcode, ha->flt_region_fw << 2,
2960 0x20);
2961 bcode = mbuf + (pcihdr % 4);
2962
2963 /* Validate signature of PCI data structure. */
2964 if (bcode[0x0] == 0x3 && bcode[0x1] == 0x0 &&
2965 bcode[0x2] == 0x40 && bcode[0x3] == 0x40) {
2966 ha->fw_revision[0] = bcode[0x4];
2967 ha->fw_revision[1] = bcode[0x5];
2968 ha->fw_revision[2] = bcode[0x6];
Saurav Kashyap6ddcfef2013-08-27 01:37:53 -04002969 ql_dbg(ql_dbg_init, vha, 0x0153,
Atul Deshmukh7ec0eff2013-08-27 01:37:28 -04002970 "Firmware revision %d.%d.%d\n",
2971 ha->fw_revision[0], ha->fw_revision[1],
2972 ha->fw_revision[2]);
2973 }
2974
2975 return ret;
2976}
2977
2978int
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08002979qla24xx_get_flash_version(scsi_qla_host_t *vha, void *mbuf)
Andrew Vasquez30c47662007-01-29 10:22:21 -08002980{
2981 int ret = QLA_SUCCESS;
2982 uint32_t pcihdr, pcids;
2983 uint32_t *dcode;
2984 uint8_t *bcode;
2985 uint8_t code_type, last_image;
2986 int i;
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08002987 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez30c47662007-01-29 10:22:21 -08002988
Atul Deshmukh7ec0eff2013-08-27 01:37:28 -04002989 if (IS_P3P_TYPE(ha))
Giridhar Malavalia9083012010-04-12 17:59:55 -07002990 return ret;
2991
Andrew Vasquez30c47662007-01-29 10:22:21 -08002992 if (!mbuf)
2993 return QLA_FUNCTION_FAILED;
2994
2995 memset(ha->bios_revision, 0, sizeof(ha->bios_revision));
2996 memset(ha->efi_revision, 0, sizeof(ha->efi_revision));
2997 memset(ha->fcode_revision, 0, sizeof(ha->fcode_revision));
2998 memset(ha->fw_revision, 0, sizeof(ha->fw_revision));
2999
3000 dcode = mbuf;
3001
3002 /* Begin with first PCI expansion ROM header. */
Harish Zunjarrao6315a5f2009-03-24 09:07:59 -07003003 pcihdr = ha->flt_region_boot << 2;
Andrew Vasquez30c47662007-01-29 10:22:21 -08003004 last_image = 1;
3005 do {
3006 /* Verify PCI expansion ROM header. */
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08003007 qla24xx_read_flash_data(vha, dcode, pcihdr >> 2, 0x20);
Andrew Vasquez30c47662007-01-29 10:22:21 -08003008 bcode = mbuf + (pcihdr % 4);
3009 if (bcode[0x0] != 0x55 || bcode[0x1] != 0xaa) {
3010 /* No signature */
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003011 ql_log(ql_log_fatal, vha, 0x0059,
3012 "No matching ROM signature.\n");
Andrew Vasquez30c47662007-01-29 10:22:21 -08003013 ret = QLA_FUNCTION_FAILED;
3014 break;
3015 }
3016
3017 /* Locate PCI data structure. */
3018 pcids = pcihdr + ((bcode[0x19] << 8) | bcode[0x18]);
3019
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08003020 qla24xx_read_flash_data(vha, dcode, pcids >> 2, 0x20);
Andrew Vasquez30c47662007-01-29 10:22:21 -08003021 bcode = mbuf + (pcihdr % 4);
3022
3023 /* Validate signature of PCI data structure. */
3024 if (bcode[0x0] != 'P' || bcode[0x1] != 'C' ||
3025 bcode[0x2] != 'I' || bcode[0x3] != 'R') {
3026 /* Incorrect header. */
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003027 ql_log(ql_log_fatal, vha, 0x005a,
3028 "PCI data struct not found pcir_adr=%x.\n", pcids);
Andrew Vasquez30c47662007-01-29 10:22:21 -08003029 ret = QLA_FUNCTION_FAILED;
3030 break;
3031 }
3032
3033 /* Read version */
3034 code_type = bcode[0x14];
3035 switch (code_type) {
3036 case ROM_CODE_TYPE_BIOS:
3037 /* Intel x86, PC-AT compatible. */
3038 ha->bios_revision[0] = bcode[0x12];
3039 ha->bios_revision[1] = bcode[0x13];
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003040 ql_dbg(ql_dbg_init, vha, 0x005b,
3041 "Read BIOS %d.%d.\n",
3042 ha->bios_revision[1], ha->bios_revision[0]);
Andrew Vasquez30c47662007-01-29 10:22:21 -08003043 break;
3044 case ROM_CODE_TYPE_FCODE:
3045 /* Open Firmware standard for PCI (FCode). */
3046 ha->fcode_revision[0] = bcode[0x12];
3047 ha->fcode_revision[1] = bcode[0x13];
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003048 ql_dbg(ql_dbg_init, vha, 0x005c,
3049 "Read FCODE %d.%d.\n",
3050 ha->fcode_revision[1], ha->fcode_revision[0]);
Andrew Vasquez30c47662007-01-29 10:22:21 -08003051 break;
3052 case ROM_CODE_TYPE_EFI:
3053 /* Extensible Firmware Interface (EFI). */
3054 ha->efi_revision[0] = bcode[0x12];
3055 ha->efi_revision[1] = bcode[0x13];
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003056 ql_dbg(ql_dbg_init, vha, 0x005d,
3057 "Read EFI %d.%d.\n",
3058 ha->efi_revision[1], ha->efi_revision[0]);
Andrew Vasquez30c47662007-01-29 10:22:21 -08003059 break;
3060 default:
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003061 ql_log(ql_log_warn, vha, 0x005e,
3062 "Unrecognized code type %x at pcids %x.\n",
3063 code_type, pcids);
Andrew Vasquez30c47662007-01-29 10:22:21 -08003064 break;
3065 }
3066
3067 last_image = bcode[0x15] & BIT_7;
3068
3069 /* Locate next PCI expansion ROM. */
3070 pcihdr += ((bcode[0x11] << 8) | bcode[0x10]) * 512;
3071 } while (!last_image);
3072
3073 /* Read firmware image information. */
3074 memset(ha->fw_revision, 0, sizeof(ha->fw_revision));
3075 dcode = mbuf;
3076
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08003077 qla24xx_read_flash_data(vha, dcode, ha->flt_region_fw + 4, 4);
Andrew Vasquez30c47662007-01-29 10:22:21 -08003078 for (i = 0; i < 4; i++)
3079 dcode[i] = be32_to_cpu(dcode[i]);
3080
3081 if ((dcode[0] == 0xffffffff && dcode[1] == 0xffffffff &&
3082 dcode[2] == 0xffffffff && dcode[3] == 0xffffffff) ||
3083 (dcode[0] == 0 && dcode[1] == 0 && dcode[2] == 0 &&
3084 dcode[3] == 0)) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003085 ql_log(ql_log_warn, vha, 0x005f,
3086 "Unrecognized fw revision at %x.\n",
3087 ha->flt_region_fw * 4);
Andrew Vasquez30c47662007-01-29 10:22:21 -08003088 } else {
3089 ha->fw_revision[0] = dcode[0];
3090 ha->fw_revision[1] = dcode[1];
3091 ha->fw_revision[2] = dcode[2];
3092 ha->fw_revision[3] = dcode[3];
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003093 ql_dbg(ql_dbg_init, vha, 0x0060,
3094 "Firmware revision %d.%d.%d.%d.\n",
3095 ha->fw_revision[0], ha->fw_revision[1],
3096 ha->fw_revision[2], ha->fw_revision[3]);
Andrew Vasquez30c47662007-01-29 10:22:21 -08003097 }
3098
Madhuranath Iyengar0f2d9622010-07-23 15:28:26 +05003099 /* Check for golden firmware and get version if available */
3100 if (!IS_QLA81XX(ha)) {
3101 /* Golden firmware is not present in non 81XX adapters */
3102 return ret;
3103 }
3104
3105 memset(ha->gold_fw_version, 0, sizeof(ha->gold_fw_version));
3106 dcode = mbuf;
3107 ha->isp_ops->read_optrom(vha, (uint8_t *)dcode,
3108 ha->flt_region_gold_fw << 2, 32);
3109
3110 if (dcode[4] == 0xFFFFFFFF && dcode[5] == 0xFFFFFFFF &&
3111 dcode[6] == 0xFFFFFFFF && dcode[7] == 0xFFFFFFFF) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003112 ql_log(ql_log_warn, vha, 0x0056,
3113 "Unrecognized golden fw at 0x%x.\n",
3114 ha->flt_region_gold_fw * 4);
Madhuranath Iyengar0f2d9622010-07-23 15:28:26 +05003115 return ret;
3116 }
3117
3118 for (i = 4; i < 8; i++)
3119 ha->gold_fw_version[i-4] = be32_to_cpu(dcode[i]);
3120
Andrew Vasquez30c47662007-01-29 10:22:21 -08003121 return ret;
3122}
Andrew Vasquezcb8dacb2008-04-03 13:13:19 -07003123
3124static int
Joe Carnuccio1ee27142008-07-10 16:55:53 -07003125qla2xxx_is_vpd_valid(uint8_t *pos, uint8_t *end)
3126{
3127 if (pos >= end || *pos != 0x82)
3128 return 0;
3129
3130 pos += 3 + pos[1];
3131 if (pos >= end || *pos != 0x90)
3132 return 0;
3133
3134 pos += 3 + pos[1];
3135 if (pos >= end || *pos != 0x78)
3136 return 0;
3137
3138 return 1;
3139}
3140
3141int
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08003142qla2xxx_get_vpd_field(scsi_qla_host_t *vha, char *key, char *str, size_t size)
Joe Carnuccio1ee27142008-07-10 16:55:53 -07003143{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08003144 struct qla_hw_data *ha = vha->hw;
Joe Carnuccio1ee27142008-07-10 16:55:53 -07003145 uint8_t *pos = ha->vpd;
3146 uint8_t *end = pos + ha->vpd_size;
3147 int len = 0;
3148
3149 if (!IS_FWI2_CAPABLE(ha) || !qla2xxx_is_vpd_valid(pos, end))
3150 return 0;
3151
3152 while (pos < end && *pos != 0x78) {
3153 len = (*pos == 0x82) ? pos[1] : pos[2];
3154
3155 if (!strncmp(pos, key, strlen(key)))
3156 break;
3157
3158 if (*pos != 0x90 && *pos != 0x91)
3159 pos += len;
3160
3161 pos += 3;
3162 }
3163
3164 if (pos < end - len && *pos != 0x78)
3165 return snprintf(str, size, "%.*s", len, pos + 3);
3166
3167 return 0;
3168}
Sarang Radke09ff7012010-03-19 17:03:59 -07003169
3170int
3171qla24xx_read_fcp_prio_cfg(scsi_qla_host_t *vha)
3172{
3173 int len, max_len;
3174 uint32_t fcp_prio_addr;
3175 struct qla_hw_data *ha = vha->hw;
3176
3177 if (!ha->fcp_prio_cfg) {
3178 ha->fcp_prio_cfg = vmalloc(FCP_PRIO_CFG_SIZE);
3179 if (!ha->fcp_prio_cfg) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003180 ql_log(ql_log_warn, vha, 0x00d5,
3181 "Unable to allocate memory for fcp priorty data (%x).\n",
3182 FCP_PRIO_CFG_SIZE);
Sarang Radke09ff7012010-03-19 17:03:59 -07003183 return QLA_FUNCTION_FAILED;
3184 }
3185 }
3186 memset(ha->fcp_prio_cfg, 0, FCP_PRIO_CFG_SIZE);
3187
3188 fcp_prio_addr = ha->flt_region_fcp_prio;
3189
3190 /* first read the fcp priority data header from flash */
3191 ha->isp_ops->read_optrom(vha, (uint8_t *)ha->fcp_prio_cfg,
3192 fcp_prio_addr << 2, FCP_PRIO_CFG_HDR_SIZE);
3193
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003194 if (!qla24xx_fcp_prio_cfg_valid(vha, ha->fcp_prio_cfg, 0))
Sarang Radke09ff7012010-03-19 17:03:59 -07003195 goto fail;
3196
3197 /* read remaining FCP CMD config data from flash */
3198 fcp_prio_addr += (FCP_PRIO_CFG_HDR_SIZE >> 2);
3199 len = ha->fcp_prio_cfg->num_entries * FCP_PRIO_CFG_ENTRY_SIZE;
3200 max_len = FCP_PRIO_CFG_SIZE - FCP_PRIO_CFG_HDR_SIZE;
3201
3202 ha->isp_ops->read_optrom(vha, (uint8_t *)&ha->fcp_prio_cfg->entry[0],
3203 fcp_prio_addr << 2, (len < max_len ? len : max_len));
3204
3205 /* revalidate the entire FCP priority config data, including entries */
Saurav Kashyap7c3df132011-07-14 12:00:13 -07003206 if (!qla24xx_fcp_prio_cfg_valid(vha, ha->fcp_prio_cfg, 1))
Sarang Radke09ff7012010-03-19 17:03:59 -07003207 goto fail;
3208
3209 ha->flags.fcp_prio_enabled = 1;
3210 return QLA_SUCCESS;
3211fail:
3212 vfree(ha->fcp_prio_cfg);
3213 ha->fcp_prio_cfg = NULL;
3214 return QLA_FUNCTION_FAILED;
3215}