Andrew Vasquez | fa90c54 | 2005-10-27 11:10:08 -0700 | [diff] [blame] | 1 | /* |
| 2 | * QLogic Fibre Channel HBA Driver |
Armen Baloyan | bd21eaf | 2014-04-11 16:54:24 -0400 | [diff] [blame] | 3 | * Copyright (c) 2003-2014 QLogic Corporation |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | * |
Andrew Vasquez | fa90c54 | 2005-10-27 11:10:08 -0700 | [diff] [blame] | 5 | * See LICENSE.qla2xxx for copyright and licensing details. |
| 6 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | #include "qla_def.h" |
| 8 | |
| 9 | #include <linux/delay.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 10 | #include <linux/slab.h> |
Andrew Vasquez | 2c96d8d | 2007-10-19 15:59:15 -0700 | [diff] [blame] | 11 | #include <linux/vmalloc.h> |
Linus Torvalds | 7c0f6ba | 2016-12-24 11:46:01 -0800 | [diff] [blame] | 12 | #include <linux/uaccess.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | /* |
| 15 | * NVRAM support routines |
| 16 | */ |
| 17 | |
| 18 | /** |
Andrew Vasquez | fa2a1ce | 2005-07-06 10:32:07 -0700 | [diff] [blame] | 19 | * qla2x00_lock_nvram_access() - |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | * @ha: HA context |
| 21 | */ |
Adrian Bunk | a824ebb | 2008-01-17 09:02:15 -0800 | [diff] [blame] | 22 | static void |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 23 | qla2x00_lock_nvram_access(struct qla_hw_data *ha) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | { |
| 25 | uint16_t data; |
Andrew Vasquez | 3d71644 | 2005-07-06 10:30:26 -0700 | [diff] [blame] | 26 | struct device_reg_2xxx __iomem *reg = &ha->iobase->isp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | |
| 28 | if (!IS_QLA2100(ha) && !IS_QLA2200(ha) && !IS_QLA2300(ha)) { |
| 29 | data = RD_REG_WORD(®->nvram); |
| 30 | while (data & NVR_BUSY) { |
| 31 | udelay(100); |
| 32 | data = RD_REG_WORD(®->nvram); |
| 33 | } |
| 34 | |
| 35 | /* Lock resource */ |
| 36 | WRT_REG_WORD(®->u.isp2300.host_semaphore, 0x1); |
| 37 | RD_REG_WORD(®->u.isp2300.host_semaphore); |
| 38 | udelay(5); |
| 39 | data = RD_REG_WORD(®->u.isp2300.host_semaphore); |
| 40 | while ((data & BIT_0) == 0) { |
| 41 | /* Lock failed */ |
| 42 | udelay(100); |
| 43 | WRT_REG_WORD(®->u.isp2300.host_semaphore, 0x1); |
| 44 | RD_REG_WORD(®->u.isp2300.host_semaphore); |
| 45 | udelay(5); |
| 46 | data = RD_REG_WORD(®->u.isp2300.host_semaphore); |
| 47 | } |
| 48 | } |
| 49 | } |
| 50 | |
| 51 | /** |
Andrew Vasquez | fa2a1ce | 2005-07-06 10:32:07 -0700 | [diff] [blame] | 52 | * qla2x00_unlock_nvram_access() - |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | * @ha: HA context |
| 54 | */ |
Adrian Bunk | a824ebb | 2008-01-17 09:02:15 -0800 | [diff] [blame] | 55 | static void |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 56 | qla2x00_unlock_nvram_access(struct qla_hw_data *ha) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | { |
Andrew Vasquez | 3d71644 | 2005-07-06 10:30:26 -0700 | [diff] [blame] | 58 | struct device_reg_2xxx __iomem *reg = &ha->iobase->isp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | |
| 60 | if (!IS_QLA2100(ha) && !IS_QLA2200(ha) && !IS_QLA2300(ha)) { |
| 61 | WRT_REG_WORD(®->u.isp2300.host_semaphore, 0); |
| 62 | RD_REG_WORD(®->u.isp2300.host_semaphore); |
| 63 | } |
| 64 | } |
| 65 | |
| 66 | /** |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 67 | * qla2x00_nv_write() - Prepare for NVRAM read/write operation. |
| 68 | * @ha: HA context |
| 69 | * @data: Serial interface selector |
| 70 | */ |
| 71 | static void |
| 72 | qla2x00_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(®->nvram, data | NVR_SELECT | NVR_WRT_ENABLE); |
| 77 | RD_REG_WORD(®->nvram); /* PCI Posting. */ |
| 78 | NVRAM_DELAY(); |
| 79 | WRT_REG_WORD(®->nvram, data | NVR_SELECT | NVR_CLOCK | |
| 80 | NVR_WRT_ENABLE); |
| 81 | RD_REG_WORD(®->nvram); /* PCI Posting. */ |
| 82 | NVRAM_DELAY(); |
| 83 | WRT_REG_WORD(®->nvram, data | NVR_SELECT | NVR_WRT_ENABLE); |
| 84 | RD_REG_WORD(®->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 | */ |
| 103 | static uint16_t |
| 104 | qla2x00_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(®->nvram, NVR_SELECT | NVR_CLOCK); |
| 124 | RD_REG_WORD(®->nvram); /* PCI Posting. */ |
| 125 | NVRAM_DELAY(); |
| 126 | data <<= 1; |
| 127 | reg_data = RD_REG_WORD(®->nvram); |
| 128 | if (reg_data & NVR_DATA_IN) |
| 129 | data |= BIT_0; |
| 130 | WRT_REG_WORD(®->nvram, NVR_SELECT); |
| 131 | RD_REG_WORD(®->nvram); /* PCI Posting. */ |
| 132 | NVRAM_DELAY(); |
| 133 | } |
| 134 | |
| 135 | /* Deselect chip. */ |
| 136 | WRT_REG_WORD(®->nvram, NVR_DESELECT); |
| 137 | RD_REG_WORD(®->nvram); /* PCI Posting. */ |
| 138 | NVRAM_DELAY(); |
| 139 | |
| 140 | return data; |
| 141 | } |
| 142 | |
| 143 | |
| 144 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | * qla2x00_get_nvram_word() - Calculates word position in NVRAM and calls the |
| 146 | * request routine to get the word from NVRAM. |
| 147 | * @ha: HA context |
| 148 | * @addr: Address in NVRAM to read |
| 149 | * |
| 150 | * Returns the word read from nvram @addr. |
| 151 | */ |
Adrian Bunk | a824ebb | 2008-01-17 09:02:15 -0800 | [diff] [blame] | 152 | static uint16_t |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 153 | qla2x00_get_nvram_word(struct qla_hw_data *ha, uint32_t addr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | { |
| 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 Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 166 | * qla2x00_nv_deselect() - Deselect NVRAM operations. |
| 167 | * @ha: HA context |
| 168 | */ |
| 169 | static void |
| 170 | qla2x00_nv_deselect(struct qla_hw_data *ha) |
| 171 | { |
| 172 | struct device_reg_2xxx __iomem *reg = &ha->iobase->isp; |
| 173 | |
| 174 | WRT_REG_WORD(®->nvram, NVR_DESELECT); |
| 175 | RD_REG_WORD(®->nvram); /* PCI Posting. */ |
| 176 | NVRAM_DELAY(); |
| 177 | } |
| 178 | |
| 179 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | * 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 Bunk | a824ebb | 2008-01-17 09:02:15 -0800 | [diff] [blame] | 185 | static void |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 186 | qla2x00_write_nvram_word(struct qla_hw_data *ha, uint32_t addr, uint16_t data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | { |
| 188 | int count; |
| 189 | uint16_t word; |
Ravi Anand | 45aeaf1 | 2006-05-17 15:08:49 -0700 | [diff] [blame] | 190 | uint32_t nv_cmd, wait_cnt; |
Andrew Vasquez | 3d71644 | 2005-07-06 10:30:26 -0700 | [diff] [blame] | 191 | struct device_reg_2xxx __iomem *reg = &ha->iobase->isp; |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 192 | scsi_qla_host_t *vha = pci_get_drvdata(ha->pdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 193 | |
| 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(®->nvram, NVR_SELECT); |
Andrew Vasquez | dcb36ce | 2005-11-08 14:37:06 -0800 | [diff] [blame] | 220 | RD_REG_WORD(®->nvram); /* PCI Posting. */ |
Ravi Anand | 45aeaf1 | 2006-05-17 15:08:49 -0700 | [diff] [blame] | 221 | wait_cnt = NVR_WAIT_CNT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 222 | do { |
Ravi Anand | 45aeaf1 | 2006-05-17 15:08:49 -0700 | [diff] [blame] | 223 | if (!--wait_cnt) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 224 | ql_dbg(ql_dbg_user, vha, 0x708d, |
| 225 | "NVRAM didn't go ready...\n"); |
Ravi Anand | 45aeaf1 | 2006-05-17 15:08:49 -0700 | [diff] [blame] | 226 | break; |
| 227 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | NVRAM_DELAY(); |
| 229 | word = RD_REG_WORD(®->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 Vasquez | 459c537 | 2005-07-06 10:31:07 -0700 | [diff] [blame] | 242 | static int |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 243 | qla2x00_write_nvram_word_tmo(struct qla_hw_data *ha, uint32_t addr, |
| 244 | uint16_t data, uint32_t tmo) |
Andrew Vasquez | 459c537 | 2005-07-06 10:31:07 -0700 | [diff] [blame] | 245 | { |
| 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(®->nvram, NVR_SELECT); |
Andrew Vasquez | dcb36ce | 2005-11-08 14:37:06 -0800 | [diff] [blame] | 279 | RD_REG_WORD(®->nvram); /* PCI Posting. */ |
Andrew Vasquez | 459c537 | 2005-07-06 10:31:07 -0700 | [diff] [blame] | 280 | do { |
| 281 | NVRAM_DELAY(); |
| 282 | word = RD_REG_WORD(®->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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 301 | /** |
Andrew Vasquez | 459c537 | 2005-07-06 10:31:07 -0700 | [diff] [blame] | 302 | * qla2x00_clear_nvram_protection() - |
| 303 | * @ha: HA context |
| 304 | */ |
| 305 | static int |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 306 | qla2x00_clear_nvram_protection(struct qla_hw_data *ha) |
Andrew Vasquez | 459c537 | 2005-07-06 10:31:07 -0700 | [diff] [blame] | 307 | { |
| 308 | int ret, stat; |
| 309 | struct device_reg_2xxx __iomem *reg = &ha->iobase->isp; |
Ravi Anand | 45aeaf1 | 2006-05-17 15:08:49 -0700 | [diff] [blame] | 310 | uint32_t word, wait_cnt; |
Andrew Vasquez | 459c537 | 2005-07-06 10:31:07 -0700 | [diff] [blame] | 311 | uint16_t wprot, wprot_old; |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 312 | scsi_qla_host_t *vha = pci_get_drvdata(ha->pdev); |
Andrew Vasquez | 459c537 | 2005-07-06 10:31:07 -0700 | [diff] [blame] | 313 | |
| 314 | /* Clear NVRAM write protection. */ |
| 315 | ret = QLA_FUNCTION_FAILED; |
Ravi Anand | 45aeaf1 | 2006-05-17 15:08:49 -0700 | [diff] [blame] | 316 | |
| 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, |
Bart Van Assche | ad95036 | 2015-07-09 07:24:08 -0700 | [diff] [blame] | 319 | cpu_to_le16(0x1234), 100000); |
Ravi Anand | 45aeaf1 | 2006-05-17 15:08:49 -0700 | [diff] [blame] | 320 | wprot = cpu_to_le16(qla2x00_get_nvram_word(ha, ha->nvram_base)); |
| 321 | if (stat != QLA_SUCCESS || wprot != 0x1234) { |
Andrew Vasquez | 459c537 | 2005-07-06 10:31:07 -0700 | [diff] [blame] | 322 | /* Write enable. */ |
| 323 | qla2x00_nv_write(ha, NVR_DATA_OUT); |
| 324 | qla2x00_nv_write(ha, 0); |
| 325 | qla2x00_nv_write(ha, 0); |
| 326 | for (word = 0; word < 8; word++) |
| 327 | qla2x00_nv_write(ha, NVR_DATA_OUT); |
| 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(®->nvram, NVR_SELECT); |
Andrew Vasquez | dcb36ce | 2005-11-08 14:37:06 -0800 | [diff] [blame] | 351 | RD_REG_WORD(®->nvram); /* PCI Posting. */ |
Ravi Anand | 45aeaf1 | 2006-05-17 15:08:49 -0700 | [diff] [blame] | 352 | wait_cnt = NVR_WAIT_CNT; |
Andrew Vasquez | 459c537 | 2005-07-06 10:31:07 -0700 | [diff] [blame] | 353 | do { |
Ravi Anand | 45aeaf1 | 2006-05-17 15:08:49 -0700 | [diff] [blame] | 354 | if (!--wait_cnt) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 355 | ql_dbg(ql_dbg_user, vha, 0x708e, |
| 356 | "NVRAM didn't go ready...\n"); |
Ravi Anand | 45aeaf1 | 2006-05-17 15:08:49 -0700 | [diff] [blame] | 357 | break; |
| 358 | } |
Andrew Vasquez | 459c537 | 2005-07-06 10:31:07 -0700 | [diff] [blame] | 359 | NVRAM_DELAY(); |
| 360 | word = RD_REG_WORD(®->nvram); |
| 361 | } while ((word & NVR_DATA_IN) == 0); |
| 362 | |
Ravi Anand | 45aeaf1 | 2006-05-17 15:08:49 -0700 | [diff] [blame] | 363 | if (wait_cnt) |
| 364 | ret = QLA_SUCCESS; |
Andrew Vasquez | 459c537 | 2005-07-06 10:31:07 -0700 | [diff] [blame] | 365 | } else |
Ravi Anand | 45aeaf1 | 2006-05-17 15:08:49 -0700 | [diff] [blame] | 366 | qla2x00_write_nvram_word(ha, ha->nvram_base, wprot_old); |
Andrew Vasquez | 459c537 | 2005-07-06 10:31:07 -0700 | [diff] [blame] | 367 | |
| 368 | return ret; |
| 369 | } |
| 370 | |
| 371 | static void |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 372 | qla2x00_set_nvram_protection(struct qla_hw_data *ha, int stat) |
Andrew Vasquez | 459c537 | 2005-07-06 10:31:07 -0700 | [diff] [blame] | 373 | { |
| 374 | struct device_reg_2xxx __iomem *reg = &ha->iobase->isp; |
Ravi Anand | 45aeaf1 | 2006-05-17 15:08:49 -0700 | [diff] [blame] | 375 | uint32_t word, wait_cnt; |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 376 | scsi_qla_host_t *vha = pci_get_drvdata(ha->pdev); |
Andrew Vasquez | 459c537 | 2005-07-06 10:31:07 -0700 | [diff] [blame] | 377 | |
| 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(®->nvram, NVR_SELECT); |
Andrew Vasquez | dcb36ce | 2005-11-08 14:37:06 -0800 | [diff] [blame] | 411 | RD_REG_WORD(®->nvram); /* PCI Posting. */ |
Ravi Anand | 45aeaf1 | 2006-05-17 15:08:49 -0700 | [diff] [blame] | 412 | wait_cnt = NVR_WAIT_CNT; |
Andrew Vasquez | 459c537 | 2005-07-06 10:31:07 -0700 | [diff] [blame] | 413 | do { |
Ravi Anand | 45aeaf1 | 2006-05-17 15:08:49 -0700 | [diff] [blame] | 414 | if (!--wait_cnt) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 415 | ql_dbg(ql_dbg_user, vha, 0x708f, |
| 416 | "NVRAM didn't go ready...\n"); |
Ravi Anand | 45aeaf1 | 2006-05-17 15:08:49 -0700 | [diff] [blame] | 417 | break; |
| 418 | } |
Andrew Vasquez | 459c537 | 2005-07-06 10:31:07 -0700 | [diff] [blame] | 419 | NVRAM_DELAY(); |
| 420 | word = RD_REG_WORD(®->nvram); |
| 421 | } while ((word & NVR_DATA_IN) == 0); |
| 422 | } |
| 423 | |
| 424 | |
| 425 | /*****************************************************************************/ |
| 426 | /* Flash Manipulation Routines */ |
| 427 | /*****************************************************************************/ |
| 428 | |
| 429 | static inline uint32_t |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 430 | flash_conf_addr(struct qla_hw_data *ha, uint32_t faddr) |
Andrew Vasquez | 459c537 | 2005-07-06 10:31:07 -0700 | [diff] [blame] | 431 | { |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 432 | return ha->flash_conf_off + faddr; |
Andrew Vasquez | 459c537 | 2005-07-06 10:31:07 -0700 | [diff] [blame] | 433 | } |
| 434 | |
| 435 | static inline uint32_t |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 436 | flash_data_addr(struct qla_hw_data *ha, uint32_t faddr) |
Andrew Vasquez | 459c537 | 2005-07-06 10:31:07 -0700 | [diff] [blame] | 437 | { |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 438 | return ha->flash_data_off + faddr; |
Andrew Vasquez | 459c537 | 2005-07-06 10:31:07 -0700 | [diff] [blame] | 439 | } |
| 440 | |
| 441 | static inline uint32_t |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 442 | nvram_conf_addr(struct qla_hw_data *ha, uint32_t naddr) |
Andrew Vasquez | 459c537 | 2005-07-06 10:31:07 -0700 | [diff] [blame] | 443 | { |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 444 | return ha->nvram_conf_off + naddr; |
Andrew Vasquez | 459c537 | 2005-07-06 10:31:07 -0700 | [diff] [blame] | 445 | } |
| 446 | |
| 447 | static inline uint32_t |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 448 | nvram_data_addr(struct qla_hw_data *ha, uint32_t naddr) |
Andrew Vasquez | 459c537 | 2005-07-06 10:31:07 -0700 | [diff] [blame] | 449 | { |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 450 | return ha->nvram_data_off + naddr; |
Andrew Vasquez | 459c537 | 2005-07-06 10:31:07 -0700 | [diff] [blame] | 451 | } |
| 452 | |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 453 | static int |
| 454 | qla24xx_read_flash_dword(struct qla_hw_data *ha, uint32_t addr, uint32_t *data) |
Andrew Vasquez | 459c537 | 2005-07-06 10:31:07 -0700 | [diff] [blame] | 455 | { |
Andrew Vasquez | 459c537 | 2005-07-06 10:31:07 -0700 | [diff] [blame] | 456 | struct device_reg_24xx __iomem *reg = &ha->iobase->isp24; |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 457 | ulong cnt = 30000; |
Andrew Vasquez | 459c537 | 2005-07-06 10:31:07 -0700 | [diff] [blame] | 458 | |
| 459 | WRT_REG_DWORD(®->flash_addr, addr & ~FARX_DATA_FLAG); |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 460 | |
| 461 | while (cnt--) { |
| 462 | if (RD_REG_DWORD(®->flash_addr) & FARX_DATA_FLAG) { |
| 463 | *data = RD_REG_DWORD(®->flash_data); |
| 464 | return QLA_SUCCESS; |
| 465 | } |
| 466 | udelay(10); |
Andrew Vasquez | 40a2e34 | 2007-03-12 10:41:28 -0700 | [diff] [blame] | 467 | cond_resched(); |
Andrew Vasquez | 459c537 | 2005-07-06 10:31:07 -0700 | [diff] [blame] | 468 | } |
| 469 | |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 470 | ql_log(ql_log_warn, pci_get_drvdata(ha->pdev), 0x7090, |
| 471 | "Flash read dword at %x timeout.\n", addr); |
| 472 | *data = 0xDEADDEAD; |
| 473 | return QLA_FUNCTION_TIMEOUT; |
Andrew Vasquez | 459c537 | 2005-07-06 10:31:07 -0700 | [diff] [blame] | 474 | } |
| 475 | |
Bart Van Assche | c43e783 | 2019-08-08 20:01:59 -0700 | [diff] [blame] | 476 | int |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 477 | qla24xx_read_flash_data(scsi_qla_host_t *vha, uint32_t *dwptr, uint32_t faddr, |
Andrew Vasquez | 459c537 | 2005-07-06 10:31:07 -0700 | [diff] [blame] | 478 | uint32_t dwords) |
| 479 | { |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 480 | ulong i; |
Bart Van Assche | c43e783 | 2019-08-08 20:01:59 -0700 | [diff] [blame] | 481 | int ret = QLA_SUCCESS; |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 482 | struct qla_hw_data *ha = vha->hw; |
| 483 | |
Andrew Vasquez | 459c537 | 2005-07-06 10:31:07 -0700 | [diff] [blame] | 484 | /* Dword reads to flash. */ |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 485 | faddr = flash_data_addr(ha, faddr); |
| 486 | for (i = 0; i < dwords; i++, faddr++, dwptr++) { |
Bart Van Assche | c43e783 | 2019-08-08 20:01:59 -0700 | [diff] [blame] | 487 | ret = qla24xx_read_flash_dword(ha, faddr, dwptr); |
| 488 | if (ret != QLA_SUCCESS) |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 489 | break; |
| 490 | cpu_to_le32s(dwptr); |
| 491 | } |
Andrew Vasquez | 459c537 | 2005-07-06 10:31:07 -0700 | [diff] [blame] | 492 | |
Bart Van Assche | c43e783 | 2019-08-08 20:01:59 -0700 | [diff] [blame] | 493 | return ret; |
Andrew Vasquez | 459c537 | 2005-07-06 10:31:07 -0700 | [diff] [blame] | 494 | } |
| 495 | |
Adrian Bunk | e5f82ab | 2006-11-08 19:55:50 -0800 | [diff] [blame] | 496 | static int |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 497 | qla24xx_write_flash_dword(struct qla_hw_data *ha, uint32_t addr, uint32_t data) |
Andrew Vasquez | 459c537 | 2005-07-06 10:31:07 -0700 | [diff] [blame] | 498 | { |
Andrew Vasquez | 459c537 | 2005-07-06 10:31:07 -0700 | [diff] [blame] | 499 | struct device_reg_24xx __iomem *reg = &ha->iobase->isp24; |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 500 | ulong cnt = 500000; |
Andrew Vasquez | 459c537 | 2005-07-06 10:31:07 -0700 | [diff] [blame] | 501 | |
| 502 | WRT_REG_DWORD(®->flash_data, data); |
Andrew Vasquez | 459c537 | 2005-07-06 10:31:07 -0700 | [diff] [blame] | 503 | WRT_REG_DWORD(®->flash_addr, addr | FARX_DATA_FLAG); |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 504 | |
| 505 | while (cnt--) { |
| 506 | if (!(RD_REG_DWORD(®->flash_addr) & FARX_DATA_FLAG)) |
| 507 | return QLA_SUCCESS; |
| 508 | udelay(10); |
Andrew Vasquez | 40a2e34 | 2007-03-12 10:41:28 -0700 | [diff] [blame] | 509 | cond_resched(); |
Andrew Vasquez | 459c537 | 2005-07-06 10:31:07 -0700 | [diff] [blame] | 510 | } |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 511 | |
| 512 | ql_log(ql_log_warn, pci_get_drvdata(ha->pdev), 0x7090, |
| 513 | "Flash write dword at %x timeout.\n", addr); |
| 514 | return QLA_FUNCTION_TIMEOUT; |
Andrew Vasquez | 459c537 | 2005-07-06 10:31:07 -0700 | [diff] [blame] | 515 | } |
| 516 | |
Adrian Bunk | e5f82ab | 2006-11-08 19:55:50 -0800 | [diff] [blame] | 517 | static void |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 518 | qla24xx_get_flash_manufacturer(struct qla_hw_data *ha, uint8_t *man_id, |
Andrew Vasquez | 459c537 | 2005-07-06 10:31:07 -0700 | [diff] [blame] | 519 | uint8_t *flash_id) |
| 520 | { |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 521 | uint32_t faddr, ids = 0; |
Andrew Vasquez | 459c537 | 2005-07-06 10:31:07 -0700 | [diff] [blame] | 522 | |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 523 | *man_id = *flash_id = 0; |
| 524 | |
| 525 | faddr = flash_conf_addr(ha, 0x03ab); |
| 526 | if (!qla24xx_read_flash_dword(ha, faddr, &ids)) { |
| 527 | *man_id = LSB(ids); |
| 528 | *flash_id = MSB(ids); |
| 529 | } |
Ravi Anand | 45aeaf1 | 2006-05-17 15:08:49 -0700 | [diff] [blame] | 530 | |
| 531 | /* Check if man_id and flash_id are valid. */ |
| 532 | if (ids != 0xDEADDEAD && (*man_id == 0 || *flash_id == 0)) { |
| 533 | /* Read information using 0x9f opcode |
| 534 | * Device ID, Mfg ID would be read in the format: |
| 535 | * <Ext Dev Info><Device ID Part2><Device ID Part 1><Mfg ID> |
| 536 | * Example: ATMEL 0x00 01 45 1F |
| 537 | * Extract MFG and Dev ID from last two bytes. |
| 538 | */ |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 539 | faddr = flash_conf_addr(ha, 0x009f); |
| 540 | if (!qla24xx_read_flash_dword(ha, faddr, &ids)) { |
| 541 | *man_id = LSB(ids); |
| 542 | *flash_id = MSB(ids); |
| 543 | } |
Ravi Anand | 45aeaf1 | 2006-05-17 15:08:49 -0700 | [diff] [blame] | 544 | } |
Andrew Vasquez | 459c537 | 2005-07-06 10:31:07 -0700 | [diff] [blame] | 545 | } |
| 546 | |
Andrew Vasquez | c00d899 | 2008-09-11 21:22:49 -0700 | [diff] [blame] | 547 | static int |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 548 | qla2xxx_find_flt_start(scsi_qla_host_t *vha, uint32_t *start) |
Andrew Vasquez | c00d899 | 2008-09-11 21:22:49 -0700 | [diff] [blame] | 549 | { |
| 550 | const char *loc, *locations[] = { "DEF", "PCI" }; |
| 551 | uint32_t pcihdr, pcids; |
Andrew Vasquez | c00d899 | 2008-09-11 21:22:49 -0700 | [diff] [blame] | 552 | uint16_t cnt, chksum, *wptr; |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 553 | struct qla_hw_data *ha = vha->hw; |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 554 | struct req_que *req = ha->req_q_map[0]; |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 555 | struct qla_flt_location *fltl = (void *)req->ring; |
| 556 | uint32_t *dcode = (void *)req->ring; |
| 557 | uint8_t *buf = (void *)req->ring, *bcode, last_image; |
Andrew Vasquez | c00d899 | 2008-09-11 21:22:49 -0700 | [diff] [blame] | 558 | |
| 559 | /* |
| 560 | * FLT-location structure resides after the last PCI region. |
| 561 | */ |
| 562 | |
| 563 | /* Begin with sane defaults. */ |
| 564 | loc = locations[0]; |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 565 | *start = 0; |
| 566 | if (IS_QLA24XX_TYPE(ha)) |
| 567 | *start = FA_FLASH_LAYOUT_ADDR_24; |
| 568 | else if (IS_QLA25XX(ha)) |
| 569 | *start = FA_FLASH_LAYOUT_ADDR; |
| 570 | else if (IS_QLA81XX(ha)) |
| 571 | *start = FA_FLASH_LAYOUT_ADDR_81; |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 572 | else if (IS_P3P_TYPE(ha)) { |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 573 | *start = FA_FLASH_LAYOUT_ADDR_82; |
| 574 | goto end; |
Chad Dupuis | f73cb69 | 2014-02-26 04:15:06 -0500 | [diff] [blame] | 575 | } else if (IS_QLA83XX(ha) || IS_QLA27XX(ha)) { |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 576 | *start = FA_FLASH_LAYOUT_ADDR_83; |
| 577 | goto end; |
Joe Carnuccio | ecc89f2 | 2019-03-12 11:08:13 -0700 | [diff] [blame] | 578 | } else if (IS_QLA28XX(ha)) { |
| 579 | *start = FA_FLASH_LAYOUT_ADDR_28; |
| 580 | goto end; |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 581 | } |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 582 | |
Andrew Vasquez | c00d899 | 2008-09-11 21:22:49 -0700 | [diff] [blame] | 583 | /* Begin with first PCI expansion ROM header. */ |
Andrew Vasquez | c00d899 | 2008-09-11 21:22:49 -0700 | [diff] [blame] | 584 | pcihdr = 0; |
Andrew Vasquez | c00d899 | 2008-09-11 21:22:49 -0700 | [diff] [blame] | 585 | do { |
| 586 | /* Verify PCI expansion ROM header. */ |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 587 | qla24xx_read_flash_data(vha, dcode, pcihdr >> 2, 0x20); |
Andrew Vasquez | c00d899 | 2008-09-11 21:22:49 -0700 | [diff] [blame] | 588 | bcode = buf + (pcihdr % 4); |
| 589 | if (bcode[0x0] != 0x55 || bcode[0x1] != 0xaa) |
| 590 | goto end; |
| 591 | |
| 592 | /* Locate PCI data structure. */ |
| 593 | pcids = pcihdr + ((bcode[0x19] << 8) | bcode[0x18]); |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 594 | qla24xx_read_flash_data(vha, dcode, pcids >> 2, 0x20); |
Andrew Vasquez | c00d899 | 2008-09-11 21:22:49 -0700 | [diff] [blame] | 595 | bcode = buf + (pcihdr % 4); |
| 596 | |
| 597 | /* Validate signature of PCI data structure. */ |
| 598 | if (bcode[0x0] != 'P' || bcode[0x1] != 'C' || |
| 599 | bcode[0x2] != 'I' || bcode[0x3] != 'R') |
| 600 | goto end; |
| 601 | |
| 602 | last_image = bcode[0x15] & BIT_7; |
| 603 | |
| 604 | /* Locate next PCI expansion ROM. */ |
| 605 | pcihdr += ((bcode[0x11] << 8) | bcode[0x10]) * 512; |
| 606 | } while (!last_image); |
| 607 | |
| 608 | /* Now verify FLT-location structure. */ |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 609 | qla24xx_read_flash_data(vha, dcode, pcihdr >> 2, sizeof(*fltl) >> 2); |
| 610 | if (memcmp(fltl->sig, "QFLT", 4)) |
Andrew Vasquez | c00d899 | 2008-09-11 21:22:49 -0700 | [diff] [blame] | 611 | goto end; |
| 612 | |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 613 | wptr = (void *)req->ring; |
| 614 | cnt = sizeof(*fltl) / sizeof(*wptr); |
Joe Carnuccio | da08ef5 | 2016-01-27 12:03:34 -0500 | [diff] [blame] | 615 | for (chksum = 0; cnt--; wptr++) |
| 616 | chksum += le16_to_cpu(*wptr); |
Andrew Vasquez | c00d899 | 2008-09-11 21:22:49 -0700 | [diff] [blame] | 617 | if (chksum) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 618 | ql_log(ql_log_fatal, vha, 0x0045, |
Andrew Vasquez | c00d899 | 2008-09-11 21:22:49 -0700 | [diff] [blame] | 619 | "Inconsistent FLTL detected: checksum=0x%x.\n", chksum); |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 620 | ql_dump_buffer(ql_dbg_init + ql_dbg_buffer, vha, 0x010e, |
Joe Carnuccio | f8f97b0 | 2019-03-12 11:08:16 -0700 | [diff] [blame] | 621 | fltl, sizeof(*fltl)); |
Andrew Vasquez | c00d899 | 2008-09-11 21:22:49 -0700 | [diff] [blame] | 622 | return QLA_FUNCTION_FAILED; |
| 623 | } |
| 624 | |
| 625 | /* Good data. Use specified location. */ |
| 626 | loc = locations[1]; |
Harish Zunjarrao | 79c13a7 | 2009-03-24 09:08:19 -0700 | [diff] [blame] | 627 | *start = (le16_to_cpu(fltl->start_hi) << 16 | |
| 628 | le16_to_cpu(fltl->start_lo)) >> 2; |
Andrew Vasquez | c00d899 | 2008-09-11 21:22:49 -0700 | [diff] [blame] | 629 | end: |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 630 | ql_dbg(ql_dbg_init, vha, 0x0046, |
| 631 | "FLTL[%s] = 0x%x.\n", |
| 632 | loc, *start); |
Andrew Vasquez | c00d899 | 2008-09-11 21:22:49 -0700 | [diff] [blame] | 633 | return QLA_SUCCESS; |
| 634 | } |
| 635 | |
| 636 | static void |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 637 | qla2xxx_get_flt_info(scsi_qla_host_t *vha, uint32_t flt_addr) |
Andrew Vasquez | c00d899 | 2008-09-11 21:22:49 -0700 | [diff] [blame] | 638 | { |
Michael Hernandez | 3f006ac | 2019-03-12 11:08:22 -0700 | [diff] [blame] | 639 | const char *locations[] = { "DEF", "FLT" }, *loc = locations[1]; |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 640 | const uint32_t def_fw[] = |
| 641 | { FA_RISC_CODE_ADDR, FA_RISC_CODE_ADDR, FA_RISC_CODE_ADDR_81 }; |
| 642 | const uint32_t def_boot[] = |
| 643 | { FA_BOOT_CODE_ADDR, FA_BOOT_CODE_ADDR, FA_BOOT_CODE_ADDR_81 }; |
| 644 | const uint32_t def_vpd_nvram[] = |
| 645 | { FA_VPD_NVRAM_ADDR, FA_VPD_NVRAM_ADDR, FA_VPD_NVRAM_ADDR_81 }; |
Andrew Vasquez | 3d79038f | 2009-03-24 09:08:14 -0700 | [diff] [blame] | 646 | const uint32_t def_vpd0[] = |
| 647 | { 0, 0, FA_VPD0_ADDR_81 }; |
| 648 | const uint32_t def_vpd1[] = |
| 649 | { 0, 0, FA_VPD1_ADDR_81 }; |
| 650 | const uint32_t def_nvram0[] = |
| 651 | { 0, 0, FA_NVRAM0_ADDR_81 }; |
| 652 | const uint32_t def_nvram1[] = |
| 653 | { 0, 0, FA_NVRAM1_ADDR_81 }; |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 654 | const uint32_t def_fdt[] = |
| 655 | { FA_FLASH_DESCR_ADDR_24, FA_FLASH_DESCR_ADDR, |
| 656 | FA_FLASH_DESCR_ADDR_81 }; |
| 657 | const uint32_t def_npiv_conf0[] = |
| 658 | { FA_NPIV_CONF0_ADDR_24, FA_NPIV_CONF0_ADDR, |
| 659 | FA_NPIV_CONF0_ADDR_81 }; |
| 660 | const uint32_t def_npiv_conf1[] = |
| 661 | { FA_NPIV_CONF1_ADDR_24, FA_NPIV_CONF1_ADDR, |
| 662 | FA_NPIV_CONF1_ADDR_81 }; |
Sarang Radke | 09ff701 | 2010-03-19 17:03:59 -0700 | [diff] [blame] | 663 | const uint32_t fcp_prio_cfg0[] = |
| 664 | { FA_FCP_PRIO0_ADDR, FA_FCP_PRIO0_ADDR_25, |
| 665 | 0 }; |
| 666 | const uint32_t fcp_prio_cfg1[] = |
| 667 | { FA_FCP_PRIO1_ADDR, FA_FCP_PRIO1_ADDR_25, |
| 668 | 0 }; |
Andrew Vasquez | c00d899 | 2008-09-11 21:22:49 -0700 | [diff] [blame] | 669 | |
Michael Hernandez | 3f006ac | 2019-03-12 11:08:22 -0700 | [diff] [blame] | 670 | struct qla_hw_data *ha = vha->hw; |
| 671 | uint32_t def = IS_QLA81XX(ha) ? 2 : IS_QLA25XX(ha) ? 1 : 0; |
| 672 | struct qla_flt_header *flt = (void *)ha->flt; |
| 673 | struct qla_flt_region *region = (void *)&flt[1]; |
| 674 | uint16_t *wptr, cnt, chksum; |
| 675 | uint32_t start; |
Andrew Vasquez | ff8073f | 2010-12-21 16:00:16 -0800 | [diff] [blame] | 676 | |
| 677 | /* Assign FCP prio region since older adapters may not have FLT, or |
| 678 | FCP prio region in it's FLT. |
| 679 | */ |
Chad Dupuis | f73cb69 | 2014-02-26 04:15:06 -0500 | [diff] [blame] | 680 | ha->flt_region_fcp_prio = (ha->port_no == 0) ? |
Andrew Vasquez | ff8073f | 2010-12-21 16:00:16 -0800 | [diff] [blame] | 681 | fcp_prio_cfg0[def] : fcp_prio_cfg1[def]; |
| 682 | |
Andrew Vasquez | c00d899 | 2008-09-11 21:22:49 -0700 | [diff] [blame] | 683 | ha->flt_region_flt = flt_addr; |
Michael Hernandez | 3f006ac | 2019-03-12 11:08:22 -0700 | [diff] [blame] | 684 | wptr = (uint16_t *)ha->flt; |
Quinn Tran | cb92cb1 | 2019-08-30 15:23:58 -0700 | [diff] [blame] | 685 | ha->isp_ops->read_optrom(vha, (void *)flt, flt_addr << 2, |
| 686 | (sizeof(struct qla_flt_header) + FLT_REGIONS_SIZE)); |
Michael Hernandez | 3f006ac | 2019-03-12 11:08:22 -0700 | [diff] [blame] | 687 | |
| 688 | if (le16_to_cpu(*wptr) == 0xffff) |
Andrew Vasquez | c00d899 | 2008-09-11 21:22:49 -0700 | [diff] [blame] | 689 | goto no_flash_data; |
Bart Van Assche | ad95036 | 2015-07-09 07:24:08 -0700 | [diff] [blame] | 690 | if (flt->version != cpu_to_le16(1)) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 691 | ql_log(ql_log_warn, vha, 0x0047, |
| 692 | "Unsupported FLT detected: version=0x%x length=0x%x checksum=0x%x.\n", |
Andrew Vasquez | c00d899 | 2008-09-11 21:22:49 -0700 | [diff] [blame] | 693 | le16_to_cpu(flt->version), le16_to_cpu(flt->length), |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 694 | le16_to_cpu(flt->checksum)); |
Andrew Vasquez | c00d899 | 2008-09-11 21:22:49 -0700 | [diff] [blame] | 695 | goto no_flash_data; |
| 696 | } |
| 697 | |
Michael Hernandez | 3f006ac | 2019-03-12 11:08:22 -0700 | [diff] [blame] | 698 | cnt = (sizeof(*flt) + le16_to_cpu(flt->length)) / sizeof(*wptr); |
Joe Carnuccio | da08ef5 | 2016-01-27 12:03:34 -0500 | [diff] [blame] | 699 | for (chksum = 0; cnt--; wptr++) |
| 700 | chksum += le16_to_cpu(*wptr); |
Andrew Vasquez | c00d899 | 2008-09-11 21:22:49 -0700 | [diff] [blame] | 701 | if (chksum) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 702 | ql_log(ql_log_fatal, vha, 0x0048, |
| 703 | "Inconsistent FLT detected: version=0x%x length=0x%x checksum=0x%x.\n", |
Andrew Vasquez | c00d899 | 2008-09-11 21:22:49 -0700 | [diff] [blame] | 704 | le16_to_cpu(flt->version), le16_to_cpu(flt->length), |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 705 | le16_to_cpu(flt->checksum)); |
Andrew Vasquez | c00d899 | 2008-09-11 21:22:49 -0700 | [diff] [blame] | 706 | goto no_flash_data; |
| 707 | } |
| 708 | |
Michael Hernandez | 3f006ac | 2019-03-12 11:08:22 -0700 | [diff] [blame] | 709 | cnt = le16_to_cpu(flt->length) / sizeof(*region); |
Andrew Vasquez | c00d899 | 2008-09-11 21:22:49 -0700 | [diff] [blame] | 710 | for ( ; cnt; cnt--, region++) { |
| 711 | /* Store addresses as DWORD offsets. */ |
| 712 | start = le32_to_cpu(region->start) >> 2; |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 713 | ql_dbg(ql_dbg_init, vha, 0x0049, |
Joe Carnuccio | f8f97b0 | 2019-03-12 11:08:16 -0700 | [diff] [blame] | 714 | "FLT[%#x]: start=%#x end=%#x size=%#x.\n", |
Michael Hernandez | 3f006ac | 2019-03-12 11:08:22 -0700 | [diff] [blame] | 715 | le16_to_cpu(region->code), start, |
| 716 | le32_to_cpu(region->end) >> 2, |
| 717 | le32_to_cpu(region->size) >> 2); |
| 718 | if (region->attribute) |
| 719 | ql_log(ql_dbg_init, vha, 0xffff, |
| 720 | "Region %x is secure\n", region->code); |
Andrew Vasquez | c00d899 | 2008-09-11 21:22:49 -0700 | [diff] [blame] | 721 | |
Joe Carnuccio | f8f97b0 | 2019-03-12 11:08:16 -0700 | [diff] [blame] | 722 | switch (le16_to_cpu(region->code)) { |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 723 | case FLT_REG_FCOE_FW: |
| 724 | if (!IS_QLA8031(ha)) |
| 725 | break; |
| 726 | ha->flt_region_fw = start; |
| 727 | break; |
Andrew Vasquez | c00d899 | 2008-09-11 21:22:49 -0700 | [diff] [blame] | 728 | case FLT_REG_FW: |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 729 | if (IS_QLA8031(ha)) |
| 730 | break; |
Andrew Vasquez | c00d899 | 2008-09-11 21:22:49 -0700 | [diff] [blame] | 731 | ha->flt_region_fw = start; |
| 732 | break; |
| 733 | case FLT_REG_BOOT_CODE: |
| 734 | ha->flt_region_boot = start; |
| 735 | break; |
| 736 | case FLT_REG_VPD_0: |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 737 | if (IS_QLA8031(ha)) |
| 738 | break; |
Andrew Vasquez | c00d899 | 2008-09-11 21:22:49 -0700 | [diff] [blame] | 739 | ha->flt_region_vpd_nvram = start; |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 740 | if (IS_P3P_TYPE(ha)) |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 741 | break; |
Chad Dupuis | f73cb69 | 2014-02-26 04:15:06 -0500 | [diff] [blame] | 742 | if (ha->port_no == 0) |
Andrew Vasquez | 3d79038f | 2009-03-24 09:08:14 -0700 | [diff] [blame] | 743 | ha->flt_region_vpd = start; |
| 744 | break; |
| 745 | case FLT_REG_VPD_1: |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 746 | if (IS_P3P_TYPE(ha) || IS_QLA8031(ha)) |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 747 | break; |
Chad Dupuis | f73cb69 | 2014-02-26 04:15:06 -0500 | [diff] [blame] | 748 | if (ha->port_no == 1) |
| 749 | ha->flt_region_vpd = start; |
| 750 | break; |
| 751 | case FLT_REG_VPD_2: |
Joe Carnuccio | ecc89f2 | 2019-03-12 11:08:13 -0700 | [diff] [blame] | 752 | if (!IS_QLA27XX(ha) && !IS_QLA28XX(ha)) |
Chad Dupuis | f73cb69 | 2014-02-26 04:15:06 -0500 | [diff] [blame] | 753 | break; |
| 754 | if (ha->port_no == 2) |
| 755 | ha->flt_region_vpd = start; |
| 756 | break; |
| 757 | case FLT_REG_VPD_3: |
Joe Carnuccio | ecc89f2 | 2019-03-12 11:08:13 -0700 | [diff] [blame] | 758 | if (!IS_QLA27XX(ha) && !IS_QLA28XX(ha)) |
Chad Dupuis | f73cb69 | 2014-02-26 04:15:06 -0500 | [diff] [blame] | 759 | break; |
| 760 | if (ha->port_no == 3) |
Andrew Vasquez | 3d79038f | 2009-03-24 09:08:14 -0700 | [diff] [blame] | 761 | ha->flt_region_vpd = start; |
| 762 | break; |
| 763 | case FLT_REG_NVRAM_0: |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 764 | if (IS_QLA8031(ha)) |
| 765 | break; |
Chad Dupuis | f73cb69 | 2014-02-26 04:15:06 -0500 | [diff] [blame] | 766 | if (ha->port_no == 0) |
Andrew Vasquez | 3d79038f | 2009-03-24 09:08:14 -0700 | [diff] [blame] | 767 | ha->flt_region_nvram = start; |
| 768 | break; |
| 769 | case FLT_REG_NVRAM_1: |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 770 | if (IS_QLA8031(ha)) |
| 771 | break; |
Chad Dupuis | f73cb69 | 2014-02-26 04:15:06 -0500 | [diff] [blame] | 772 | if (ha->port_no == 1) |
| 773 | ha->flt_region_nvram = start; |
| 774 | break; |
| 775 | case FLT_REG_NVRAM_2: |
Joe Carnuccio | ecc89f2 | 2019-03-12 11:08:13 -0700 | [diff] [blame] | 776 | if (!IS_QLA27XX(ha) && !IS_QLA28XX(ha)) |
Chad Dupuis | f73cb69 | 2014-02-26 04:15:06 -0500 | [diff] [blame] | 777 | break; |
| 778 | if (ha->port_no == 2) |
| 779 | ha->flt_region_nvram = start; |
| 780 | break; |
| 781 | case FLT_REG_NVRAM_3: |
Joe Carnuccio | ecc89f2 | 2019-03-12 11:08:13 -0700 | [diff] [blame] | 782 | if (!IS_QLA27XX(ha) && !IS_QLA28XX(ha)) |
Chad Dupuis | f73cb69 | 2014-02-26 04:15:06 -0500 | [diff] [blame] | 783 | break; |
| 784 | if (ha->port_no == 3) |
Andrew Vasquez | 3d79038f | 2009-03-24 09:08:14 -0700 | [diff] [blame] | 785 | ha->flt_region_nvram = start; |
Andrew Vasquez | c00d899 | 2008-09-11 21:22:49 -0700 | [diff] [blame] | 786 | break; |
| 787 | case FLT_REG_FDT: |
| 788 | ha->flt_region_fdt = start; |
| 789 | break; |
Andrew Vasquez | 272976c | 2008-09-11 21:22:50 -0700 | [diff] [blame] | 790 | case FLT_REG_NPIV_CONF_0: |
Chad Dupuis | f73cb69 | 2014-02-26 04:15:06 -0500 | [diff] [blame] | 791 | if (ha->port_no == 0) |
Andrew Vasquez | 272976c | 2008-09-11 21:22:50 -0700 | [diff] [blame] | 792 | ha->flt_region_npiv_conf = start; |
| 793 | break; |
| 794 | case FLT_REG_NPIV_CONF_1: |
Chad Dupuis | f73cb69 | 2014-02-26 04:15:06 -0500 | [diff] [blame] | 795 | if (ha->port_no == 1) |
Andrew Vasquez | 272976c | 2008-09-11 21:22:50 -0700 | [diff] [blame] | 796 | ha->flt_region_npiv_conf = start; |
| 797 | break; |
Andrew Vasquez | cbc8eb6 | 2009-06-03 09:55:17 -0700 | [diff] [blame] | 798 | case FLT_REG_GOLD_FW: |
| 799 | ha->flt_region_gold_fw = start; |
| 800 | break; |
Sarang Radke | 09ff701 | 2010-03-19 17:03:59 -0700 | [diff] [blame] | 801 | case FLT_REG_FCP_PRIO_0: |
Chad Dupuis | f73cb69 | 2014-02-26 04:15:06 -0500 | [diff] [blame] | 802 | if (ha->port_no == 0) |
Sarang Radke | 09ff701 | 2010-03-19 17:03:59 -0700 | [diff] [blame] | 803 | ha->flt_region_fcp_prio = start; |
| 804 | break; |
| 805 | case FLT_REG_FCP_PRIO_1: |
Chad Dupuis | f73cb69 | 2014-02-26 04:15:06 -0500 | [diff] [blame] | 806 | if (ha->port_no == 1) |
Sarang Radke | 09ff701 | 2010-03-19 17:03:59 -0700 | [diff] [blame] | 807 | ha->flt_region_fcp_prio = start; |
| 808 | break; |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 809 | case FLT_REG_BOOT_CODE_82XX: |
| 810 | ha->flt_region_boot = start; |
| 811 | break; |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 812 | case FLT_REG_BOOT_CODE_8044: |
| 813 | if (IS_QLA8044(ha)) |
| 814 | ha->flt_region_boot = start; |
| 815 | break; |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 816 | case FLT_REG_FW_82XX: |
| 817 | ha->flt_region_fw = start; |
| 818 | break; |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 819 | case FLT_REG_CNA_FW: |
| 820 | if (IS_CNA_CAPABLE(ha)) |
| 821 | ha->flt_region_fw = start; |
| 822 | break; |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 823 | case FLT_REG_GOLD_FW_82XX: |
| 824 | ha->flt_region_gold_fw = start; |
| 825 | break; |
| 826 | case FLT_REG_BOOTLOAD_82XX: |
| 827 | ha->flt_region_bootload = start; |
| 828 | break; |
Saurav Kashyap | a865c50 | 2013-02-08 01:57:43 -0500 | [diff] [blame] | 829 | case FLT_REG_VPD_8XXX: |
| 830 | if (IS_CNA_CAPABLE(ha)) |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 831 | ha->flt_region_vpd = start; |
| 832 | break; |
| 833 | case FLT_REG_FCOE_NVRAM_0: |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 834 | if (!(IS_QLA8031(ha) || IS_QLA8044(ha))) |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 835 | break; |
Chad Dupuis | f73cb69 | 2014-02-26 04:15:06 -0500 | [diff] [blame] | 836 | if (ha->port_no == 0) |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 837 | ha->flt_region_nvram = start; |
| 838 | break; |
| 839 | case FLT_REG_FCOE_NVRAM_1: |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 840 | if (!(IS_QLA8031(ha) || IS_QLA8044(ha))) |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 841 | break; |
Chad Dupuis | f73cb69 | 2014-02-26 04:15:06 -0500 | [diff] [blame] | 842 | if (ha->port_no == 1) |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 843 | ha->flt_region_nvram = start; |
| 844 | break; |
Sawan Chandak | 4243c11 | 2016-01-27 12:03:31 -0500 | [diff] [blame] | 845 | case FLT_REG_IMG_PRI_27XX: |
Joe Carnuccio | ecc89f2 | 2019-03-12 11:08:13 -0700 | [diff] [blame] | 846 | if (IS_QLA27XX(ha) && !IS_QLA28XX(ha)) |
Sawan Chandak | 4243c11 | 2016-01-27 12:03:31 -0500 | [diff] [blame] | 847 | ha->flt_region_img_status_pri = start; |
| 848 | break; |
| 849 | case FLT_REG_IMG_SEC_27XX: |
Himanshu Madhani | 4e71dca | 2019-12-03 14:36:55 -0800 | [diff] [blame] | 850 | if (IS_QLA27XX(ha) || IS_QLA28XX(ha)) |
Sawan Chandak | 4243c11 | 2016-01-27 12:03:31 -0500 | [diff] [blame] | 851 | ha->flt_region_img_status_sec = start; |
| 852 | break; |
| 853 | case FLT_REG_FW_SEC_27XX: |
Himanshu Madhani | 4e71dca | 2019-12-03 14:36:55 -0800 | [diff] [blame] | 854 | if (IS_QLA27XX(ha) || IS_QLA28XX(ha)) |
Sawan Chandak | 4243c11 | 2016-01-27 12:03:31 -0500 | [diff] [blame] | 855 | ha->flt_region_fw_sec = start; |
| 856 | break; |
| 857 | case FLT_REG_BOOTLOAD_SEC_27XX: |
Himanshu Madhani | 4e71dca | 2019-12-03 14:36:55 -0800 | [diff] [blame] | 858 | if (IS_QLA27XX(ha) || IS_QLA28XX(ha)) |
Sawan Chandak | 4243c11 | 2016-01-27 12:03:31 -0500 | [diff] [blame] | 859 | ha->flt_region_boot_sec = start; |
| 860 | break; |
Joe Carnuccio | 5fa8774 | 2019-03-12 11:08:21 -0700 | [diff] [blame] | 861 | case FLT_REG_AUX_IMG_PRI_28XX: |
| 862 | if (IS_QLA27XX(ha) || IS_QLA28XX(ha)) |
| 863 | ha->flt_region_aux_img_status_pri = start; |
| 864 | break; |
| 865 | case FLT_REG_AUX_IMG_SEC_28XX: |
| 866 | if (IS_QLA27XX(ha) || IS_QLA28XX(ha)) |
| 867 | ha->flt_region_aux_img_status_sec = start; |
| 868 | break; |
| 869 | case FLT_REG_NVRAM_SEC_28XX_0: |
| 870 | if (IS_QLA27XX(ha) || IS_QLA28XX(ha)) |
| 871 | if (ha->port_no == 0) |
| 872 | ha->flt_region_nvram_sec = start; |
| 873 | break; |
| 874 | case FLT_REG_NVRAM_SEC_28XX_1: |
| 875 | if (IS_QLA27XX(ha) || IS_QLA28XX(ha)) |
| 876 | if (ha->port_no == 1) |
| 877 | ha->flt_region_nvram_sec = start; |
| 878 | break; |
| 879 | case FLT_REG_NVRAM_SEC_28XX_2: |
| 880 | if (IS_QLA27XX(ha) || IS_QLA28XX(ha)) |
| 881 | if (ha->port_no == 2) |
| 882 | ha->flt_region_nvram_sec = start; |
| 883 | break; |
| 884 | case FLT_REG_NVRAM_SEC_28XX_3: |
| 885 | if (IS_QLA27XX(ha) || IS_QLA28XX(ha)) |
| 886 | if (ha->port_no == 3) |
| 887 | ha->flt_region_nvram_sec = start; |
| 888 | break; |
Sawan Chandak | 4243c11 | 2016-01-27 12:03:31 -0500 | [diff] [blame] | 889 | case FLT_REG_VPD_SEC_27XX_0: |
Joe Carnuccio | 5fa8774 | 2019-03-12 11:08:21 -0700 | [diff] [blame] | 890 | case FLT_REG_VPD_SEC_28XX_0: |
| 891 | if (IS_QLA27XX(ha) || IS_QLA28XX(ha)) { |
| 892 | ha->flt_region_vpd_nvram_sec = start; |
| 893 | if (ha->port_no == 0) |
| 894 | ha->flt_region_vpd_sec = start; |
| 895 | } |
Sawan Chandak | 4243c11 | 2016-01-27 12:03:31 -0500 | [diff] [blame] | 896 | break; |
| 897 | case FLT_REG_VPD_SEC_27XX_1: |
Joe Carnuccio | 5fa8774 | 2019-03-12 11:08:21 -0700 | [diff] [blame] | 898 | case FLT_REG_VPD_SEC_28XX_1: |
| 899 | if (IS_QLA27XX(ha) || IS_QLA28XX(ha)) |
| 900 | if (ha->port_no == 1) |
| 901 | ha->flt_region_vpd_sec = start; |
Sawan Chandak | 4243c11 | 2016-01-27 12:03:31 -0500 | [diff] [blame] | 902 | break; |
| 903 | case FLT_REG_VPD_SEC_27XX_2: |
Joe Carnuccio | 5fa8774 | 2019-03-12 11:08:21 -0700 | [diff] [blame] | 904 | case FLT_REG_VPD_SEC_28XX_2: |
| 905 | if (IS_QLA27XX(ha) || IS_QLA28XX(ha)) |
| 906 | if (ha->port_no == 2) |
| 907 | ha->flt_region_vpd_sec = start; |
Sawan Chandak | 4243c11 | 2016-01-27 12:03:31 -0500 | [diff] [blame] | 908 | break; |
| 909 | case FLT_REG_VPD_SEC_27XX_3: |
Joe Carnuccio | 5fa8774 | 2019-03-12 11:08:21 -0700 | [diff] [blame] | 910 | case FLT_REG_VPD_SEC_28XX_3: |
| 911 | if (IS_QLA27XX(ha) || IS_QLA28XX(ha)) |
| 912 | if (ha->port_no == 3) |
| 913 | ha->flt_region_vpd_sec = start; |
Sawan Chandak | 4243c11 | 2016-01-27 12:03:31 -0500 | [diff] [blame] | 914 | break; |
Andrew Vasquez | c00d899 | 2008-09-11 21:22:49 -0700 | [diff] [blame] | 915 | } |
| 916 | } |
| 917 | goto done; |
| 918 | |
| 919 | no_flash_data: |
| 920 | /* Use hardcoded defaults. */ |
| 921 | loc = locations[0]; |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 922 | ha->flt_region_fw = def_fw[def]; |
| 923 | ha->flt_region_boot = def_boot[def]; |
| 924 | ha->flt_region_vpd_nvram = def_vpd_nvram[def]; |
Chad Dupuis | f73cb69 | 2014-02-26 04:15:06 -0500 | [diff] [blame] | 925 | ha->flt_region_vpd = (ha->port_no == 0) ? |
Sarang Radke | 09ff701 | 2010-03-19 17:03:59 -0700 | [diff] [blame] | 926 | def_vpd0[def] : def_vpd1[def]; |
Chad Dupuis | f73cb69 | 2014-02-26 04:15:06 -0500 | [diff] [blame] | 927 | ha->flt_region_nvram = (ha->port_no == 0) ? |
Sarang Radke | 09ff701 | 2010-03-19 17:03:59 -0700 | [diff] [blame] | 928 | def_nvram0[def] : def_nvram1[def]; |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 929 | ha->flt_region_fdt = def_fdt[def]; |
Chad Dupuis | f73cb69 | 2014-02-26 04:15:06 -0500 | [diff] [blame] | 930 | ha->flt_region_npiv_conf = (ha->port_no == 0) ? |
Sarang Radke | 09ff701 | 2010-03-19 17:03:59 -0700 | [diff] [blame] | 931 | def_npiv_conf0[def] : def_npiv_conf1[def]; |
Andrew Vasquez | c00d899 | 2008-09-11 21:22:49 -0700 | [diff] [blame] | 932 | done: |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 933 | ql_dbg(ql_dbg_init, vha, 0x004a, |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 934 | "FLT[%s]: boot=0x%x fw=0x%x vpd_nvram=0x%x vpd=0x%x nvram=0x%x " |
| 935 | "fdt=0x%x flt=0x%x npiv=0x%x fcp_prif_cfg=0x%x.\n", |
| 936 | loc, ha->flt_region_boot, ha->flt_region_fw, |
| 937 | ha->flt_region_vpd_nvram, ha->flt_region_vpd, ha->flt_region_nvram, |
| 938 | ha->flt_region_fdt, ha->flt_region_flt, ha->flt_region_npiv_conf, |
| 939 | ha->flt_region_fcp_prio); |
Andrew Vasquez | c00d899 | 2008-09-11 21:22:49 -0700 | [diff] [blame] | 940 | } |
| 941 | |
| 942 | static void |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 943 | qla2xxx_get_fdt_info(scsi_qla_host_t *vha) |
Andrew Vasquez | 7d232c7 | 2008-04-03 13:13:22 -0700 | [diff] [blame] | 944 | { |
Lalit Chandivade | 821b399 | 2008-10-24 15:13:44 -0700 | [diff] [blame] | 945 | #define FLASH_BLK_SIZE_4K 0x1000 |
Andrew Vasquez | 7d232c7 | 2008-04-03 13:13:22 -0700 | [diff] [blame] | 946 | #define FLASH_BLK_SIZE_32K 0x8000 |
| 947 | #define FLASH_BLK_SIZE_64K 0x10000 |
Andrew Vasquez | c00d899 | 2008-09-11 21:22:49 -0700 | [diff] [blame] | 948 | const char *loc, *locations[] = { "MID", "FDT" }; |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 949 | struct qla_hw_data *ha = vha->hw; |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 950 | struct req_que *req = ha->req_q_map[0]; |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 951 | uint16_t cnt, chksum; |
| 952 | uint16_t *wptr = (void *)req->ring; |
Quinn Tran | cb92cb1 | 2019-08-30 15:23:58 -0700 | [diff] [blame] | 953 | struct qla_fdt_layout *fdt = (struct qla_fdt_layout *)req->ring; |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 954 | uint8_t man_id, flash_id; |
| 955 | uint16_t mid = 0, fid = 0; |
Andrew Vasquez | 7d232c7 | 2008-04-03 13:13:22 -0700 | [diff] [blame] | 956 | |
Quinn Tran | cb92cb1 | 2019-08-30 15:23:58 -0700 | [diff] [blame] | 957 | ha->isp_ops->read_optrom(vha, fdt, ha->flt_region_fdt << 2, |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 958 | OPTROM_BURST_DWORDS); |
| 959 | if (le16_to_cpu(*wptr) == 0xffff) |
Andrew Vasquez | 7d232c7 | 2008-04-03 13:13:22 -0700 | [diff] [blame] | 960 | goto no_flash_data; |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 961 | if (memcmp(fdt->sig, "QLID", 4)) |
Andrew Vasquez | 7d232c7 | 2008-04-03 13:13:22 -0700 | [diff] [blame] | 962 | goto no_flash_data; |
| 963 | |
Joe Carnuccio | da08ef5 | 2016-01-27 12:03:34 -0500 | [diff] [blame] | 964 | for (cnt = 0, chksum = 0; cnt < sizeof(*fdt) >> 1; cnt++, wptr++) |
| 965 | chksum += le16_to_cpu(*wptr); |
Andrew Vasquez | 7d232c7 | 2008-04-03 13:13:22 -0700 | [diff] [blame] | 966 | if (chksum) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 967 | ql_dbg(ql_dbg_init, vha, 0x004c, |
| 968 | "Inconsistent FDT detected:" |
| 969 | " checksum=0x%x id=%c version0x%x.\n", chksum, |
| 970 | fdt->sig[0], le16_to_cpu(fdt->version)); |
| 971 | ql_dump_buffer(ql_dbg_init + ql_dbg_buffer, vha, 0x0113, |
Joe Carnuccio | f8f97b0 | 2019-03-12 11:08:16 -0700 | [diff] [blame] | 972 | fdt, sizeof(*fdt)); |
Andrew Vasquez | 7d232c7 | 2008-04-03 13:13:22 -0700 | [diff] [blame] | 973 | goto no_flash_data; |
| 974 | } |
| 975 | |
Andrew Vasquez | c00d899 | 2008-09-11 21:22:49 -0700 | [diff] [blame] | 976 | loc = locations[1]; |
| 977 | mid = le16_to_cpu(fdt->man_id); |
| 978 | fid = le16_to_cpu(fdt->id); |
Andrew Vasquez | 7d232c7 | 2008-04-03 13:13:22 -0700 | [diff] [blame] | 979 | ha->fdt_wrt_disable = fdt->wrt_disable_bits; |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 980 | ha->fdt_wrt_enable = fdt->wrt_enable_bits; |
| 981 | ha->fdt_wrt_sts_reg_cmd = fdt->wrt_sts_reg_cmd; |
| 982 | if (IS_QLA8044(ha)) |
| 983 | ha->fdt_erase_cmd = fdt->erase_cmd; |
| 984 | else |
| 985 | ha->fdt_erase_cmd = |
| 986 | flash_conf_addr(ha, 0x0300 | fdt->erase_cmd); |
Andrew Vasquez | 7d232c7 | 2008-04-03 13:13:22 -0700 | [diff] [blame] | 987 | ha->fdt_block_size = le32_to_cpu(fdt->block_size); |
| 988 | if (fdt->unprotect_sec_cmd) { |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 989 | ha->fdt_unprotect_sec_cmd = flash_conf_addr(ha, 0x0300 | |
Andrew Vasquez | 7d232c7 | 2008-04-03 13:13:22 -0700 | [diff] [blame] | 990 | fdt->unprotect_sec_cmd); |
| 991 | ha->fdt_protect_sec_cmd = fdt->protect_sec_cmd ? |
Bart Van Assche | 58e2753 | 2019-04-11 14:53:19 -0700 | [diff] [blame] | 992 | flash_conf_addr(ha, 0x0300 | fdt->protect_sec_cmd) : |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 993 | flash_conf_addr(ha, 0x0336); |
Andrew Vasquez | 7d232c7 | 2008-04-03 13:13:22 -0700 | [diff] [blame] | 994 | } |
Andrew Vasquez | c00d899 | 2008-09-11 21:22:49 -0700 | [diff] [blame] | 995 | goto done; |
Andrew Vasquez | 7d232c7 | 2008-04-03 13:13:22 -0700 | [diff] [blame] | 996 | no_flash_data: |
Andrew Vasquez | c00d899 | 2008-09-11 21:22:49 -0700 | [diff] [blame] | 997 | loc = locations[0]; |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 998 | if (IS_P3P_TYPE(ha)) { |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 999 | ha->fdt_block_size = FLASH_BLK_SIZE_64K; |
| 1000 | goto done; |
| 1001 | } |
Andrew Vasquez | 7d232c7 | 2008-04-03 13:13:22 -0700 | [diff] [blame] | 1002 | qla24xx_get_flash_manufacturer(ha, &man_id, &flash_id); |
Andrew Vasquez | c00d899 | 2008-09-11 21:22:49 -0700 | [diff] [blame] | 1003 | mid = man_id; |
| 1004 | fid = flash_id; |
Andrew Vasquez | 7d232c7 | 2008-04-03 13:13:22 -0700 | [diff] [blame] | 1005 | ha->fdt_wrt_disable = 0x9c; |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 1006 | ha->fdt_erase_cmd = flash_conf_addr(ha, 0x03d8); |
Andrew Vasquez | 7d232c7 | 2008-04-03 13:13:22 -0700 | [diff] [blame] | 1007 | switch (man_id) { |
| 1008 | case 0xbf: /* STT flash. */ |
| 1009 | if (flash_id == 0x8e) |
| 1010 | ha->fdt_block_size = FLASH_BLK_SIZE_64K; |
| 1011 | else |
| 1012 | ha->fdt_block_size = FLASH_BLK_SIZE_32K; |
| 1013 | |
| 1014 | if (flash_id == 0x80) |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 1015 | ha->fdt_erase_cmd = flash_conf_addr(ha, 0x0352); |
Andrew Vasquez | 7d232c7 | 2008-04-03 13:13:22 -0700 | [diff] [blame] | 1016 | break; |
| 1017 | case 0x13: /* ST M25P80. */ |
| 1018 | ha->fdt_block_size = FLASH_BLK_SIZE_64K; |
| 1019 | break; |
| 1020 | case 0x1f: /* Atmel 26DF081A. */ |
Lalit Chandivade | 821b399 | 2008-10-24 15:13:44 -0700 | [diff] [blame] | 1021 | ha->fdt_block_size = FLASH_BLK_SIZE_4K; |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 1022 | ha->fdt_erase_cmd = flash_conf_addr(ha, 0x0320); |
| 1023 | ha->fdt_unprotect_sec_cmd = flash_conf_addr(ha, 0x0339); |
| 1024 | ha->fdt_protect_sec_cmd = flash_conf_addr(ha, 0x0336); |
Andrew Vasquez | 7d232c7 | 2008-04-03 13:13:22 -0700 | [diff] [blame] | 1025 | break; |
| 1026 | default: |
| 1027 | /* Default to 64 kb sector size. */ |
| 1028 | ha->fdt_block_size = FLASH_BLK_SIZE_64K; |
| 1029 | break; |
| 1030 | } |
Andrew Vasquez | c00d899 | 2008-09-11 21:22:49 -0700 | [diff] [blame] | 1031 | done: |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1032 | ql_dbg(ql_dbg_init, vha, 0x004d, |
Joe Perches | d8424f6 | 2011-11-18 09:03:06 -0800 | [diff] [blame] | 1033 | "FDT[%s]: (0x%x/0x%x) erase=0x%x " |
| 1034 | "pr=%x wrtd=0x%x blk=0x%x.\n", |
| 1035 | loc, mid, fid, |
Andrew Vasquez | 7d232c7 | 2008-04-03 13:13:22 -0700 | [diff] [blame] | 1036 | ha->fdt_erase_cmd, ha->fdt_protect_sec_cmd, |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1037 | ha->fdt_wrt_disable, ha->fdt_block_size); |
| 1038 | |
Andrew Vasquez | 7d232c7 | 2008-04-03 13:13:22 -0700 | [diff] [blame] | 1039 | } |
| 1040 | |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 1041 | static void |
| 1042 | qla2xxx_get_idc_param(scsi_qla_host_t *vha) |
| 1043 | { |
| 1044 | #define QLA82XX_IDC_PARAM_ADDR 0x003e885c |
| 1045 | uint32_t *wptr; |
| 1046 | struct qla_hw_data *ha = vha->hw; |
| 1047 | struct req_que *req = ha->req_q_map[0]; |
| 1048 | |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 1049 | if (!(IS_P3P_TYPE(ha))) |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 1050 | return; |
| 1051 | |
| 1052 | wptr = (uint32_t *)req->ring; |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 1053 | ha->isp_ops->read_optrom(vha, req->ring, QLA82XX_IDC_PARAM_ADDR, 8); |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 1054 | |
Bart Van Assche | ad95036 | 2015-07-09 07:24:08 -0700 | [diff] [blame] | 1055 | if (*wptr == cpu_to_le32(0xffffffff)) { |
Santosh Vernekar | 7d613ac | 2012-08-22 14:21:03 -0400 | [diff] [blame] | 1056 | ha->fcoe_dev_init_timeout = QLA82XX_ROM_DEV_INIT_TIMEOUT; |
| 1057 | ha->fcoe_reset_timeout = QLA82XX_ROM_DRV_RESET_ACK_TIMEOUT; |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 1058 | } else { |
Joe Carnuccio | da08ef5 | 2016-01-27 12:03:34 -0500 | [diff] [blame] | 1059 | ha->fcoe_dev_init_timeout = le32_to_cpu(*wptr); |
| 1060 | wptr++; |
Santosh Vernekar | 7d613ac | 2012-08-22 14:21:03 -0400 | [diff] [blame] | 1061 | ha->fcoe_reset_timeout = le32_to_cpu(*wptr); |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 1062 | } |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1063 | ql_dbg(ql_dbg_init, vha, 0x004e, |
Santosh Vernekar | 7d613ac | 2012-08-22 14:21:03 -0400 | [diff] [blame] | 1064 | "fcoe_dev_init_timeout=%d " |
| 1065 | "fcoe_reset_timeout=%d.\n", ha->fcoe_dev_init_timeout, |
| 1066 | ha->fcoe_reset_timeout); |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 1067 | return; |
| 1068 | } |
| 1069 | |
Andrew Vasquez | c00d899 | 2008-09-11 21:22:49 -0700 | [diff] [blame] | 1070 | int |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 1071 | qla2xxx_get_flash_info(scsi_qla_host_t *vha) |
Andrew Vasquez | c00d899 | 2008-09-11 21:22:49 -0700 | [diff] [blame] | 1072 | { |
| 1073 | int ret; |
| 1074 | uint32_t flt_addr; |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 1075 | struct qla_hw_data *ha = vha->hw; |
Andrew Vasquez | c00d899 | 2008-09-11 21:22:49 -0700 | [diff] [blame] | 1076 | |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 1077 | if (!IS_QLA24XX_TYPE(ha) && !IS_QLA25XX(ha) && |
Joe Carnuccio | ecc89f2 | 2019-03-12 11:08:13 -0700 | [diff] [blame] | 1078 | !IS_CNA_CAPABLE(ha) && !IS_QLA2031(ha) && |
| 1079 | !IS_QLA27XX(ha) && !IS_QLA28XX(ha)) |
Andrew Vasquez | c00d899 | 2008-09-11 21:22:49 -0700 | [diff] [blame] | 1080 | return QLA_SUCCESS; |
| 1081 | |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 1082 | ret = qla2xxx_find_flt_start(vha, &flt_addr); |
Andrew Vasquez | c00d899 | 2008-09-11 21:22:49 -0700 | [diff] [blame] | 1083 | if (ret != QLA_SUCCESS) |
| 1084 | return ret; |
| 1085 | |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 1086 | qla2xxx_get_flt_info(vha, flt_addr); |
| 1087 | qla2xxx_get_fdt_info(vha); |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 1088 | qla2xxx_get_idc_param(vha); |
Andrew Vasquez | c00d899 | 2008-09-11 21:22:49 -0700 | [diff] [blame] | 1089 | |
| 1090 | return QLA_SUCCESS; |
| 1091 | } |
| 1092 | |
Andrew Vasquez | 272976c | 2008-09-11 21:22:50 -0700 | [diff] [blame] | 1093 | void |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 1094 | qla2xxx_flash_npiv_conf(scsi_qla_host_t *vha) |
Andrew Vasquez | 272976c | 2008-09-11 21:22:50 -0700 | [diff] [blame] | 1095 | { |
| 1096 | #define NPIV_CONFIG_SIZE (16*1024) |
| 1097 | void *data; |
| 1098 | uint16_t *wptr; |
| 1099 | uint16_t cnt, chksum; |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 1100 | int i; |
Andrew Vasquez | 272976c | 2008-09-11 21:22:50 -0700 | [diff] [blame] | 1101 | struct qla_npiv_header hdr; |
| 1102 | struct qla_npiv_entry *entry; |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 1103 | struct qla_hw_data *ha = vha->hw; |
Andrew Vasquez | 272976c | 2008-09-11 21:22:50 -0700 | [diff] [blame] | 1104 | |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 1105 | if (!IS_QLA24XX_TYPE(ha) && !IS_QLA25XX(ha) && |
| 1106 | !IS_CNA_CAPABLE(ha) && !IS_QLA2031(ha)) |
Andrew Vasquez | 272976c | 2008-09-11 21:22:50 -0700 | [diff] [blame] | 1107 | return; |
| 1108 | |
Santosh Vernekar | 7d613ac | 2012-08-22 14:21:03 -0400 | [diff] [blame] | 1109 | if (ha->flags.nic_core_reset_hdlr_active) |
Giridhar Malavali | a49393f | 2012-04-25 07:26:14 -0700 | [diff] [blame] | 1110 | return; |
| 1111 | |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 1112 | if (IS_QLA8044(ha)) |
| 1113 | return; |
| 1114 | |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 1115 | ha->isp_ops->read_optrom(vha, &hdr, ha->flt_region_npiv_conf << 2, |
| 1116 | sizeof(struct qla_npiv_header)); |
Bart Van Assche | ad95036 | 2015-07-09 07:24:08 -0700 | [diff] [blame] | 1117 | if (hdr.version == cpu_to_le16(0xffff)) |
Andrew Vasquez | 272976c | 2008-09-11 21:22:50 -0700 | [diff] [blame] | 1118 | return; |
Bart Van Assche | ad95036 | 2015-07-09 07:24:08 -0700 | [diff] [blame] | 1119 | if (hdr.version != cpu_to_le16(1)) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1120 | ql_dbg(ql_dbg_user, vha, 0x7090, |
| 1121 | "Unsupported NPIV-Config " |
Andrew Vasquez | 272976c | 2008-09-11 21:22:50 -0700 | [diff] [blame] | 1122 | "detected: version=0x%x entries=0x%x checksum=0x%x.\n", |
| 1123 | le16_to_cpu(hdr.version), le16_to_cpu(hdr.entries), |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1124 | le16_to_cpu(hdr.checksum)); |
Andrew Vasquez | 272976c | 2008-09-11 21:22:50 -0700 | [diff] [blame] | 1125 | return; |
| 1126 | } |
| 1127 | |
| 1128 | data = kmalloc(NPIV_CONFIG_SIZE, GFP_KERNEL); |
| 1129 | if (!data) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1130 | ql_log(ql_log_warn, vha, 0x7091, |
| 1131 | "Unable to allocate memory for data.\n"); |
Andrew Vasquez | 272976c | 2008-09-11 21:22:50 -0700 | [diff] [blame] | 1132 | return; |
| 1133 | } |
| 1134 | |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 1135 | ha->isp_ops->read_optrom(vha, data, ha->flt_region_npiv_conf << 2, |
| 1136 | NPIV_CONFIG_SIZE); |
Andrew Vasquez | 272976c | 2008-09-11 21:22:50 -0700 | [diff] [blame] | 1137 | |
Joe Carnuccio | da08ef5 | 2016-01-27 12:03:34 -0500 | [diff] [blame] | 1138 | cnt = (sizeof(hdr) + le16_to_cpu(hdr.entries) * sizeof(*entry)) >> 1; |
| 1139 | for (wptr = data, chksum = 0; cnt--; wptr++) |
| 1140 | chksum += le16_to_cpu(*wptr); |
Andrew Vasquez | 272976c | 2008-09-11 21:22:50 -0700 | [diff] [blame] | 1141 | if (chksum) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1142 | ql_dbg(ql_dbg_user, vha, 0x7092, |
| 1143 | "Inconsistent NPIV-Config " |
Andrew Vasquez | 272976c | 2008-09-11 21:22:50 -0700 | [diff] [blame] | 1144 | "detected: version=0x%x entries=0x%x checksum=0x%x.\n", |
| 1145 | le16_to_cpu(hdr.version), le16_to_cpu(hdr.entries), |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1146 | le16_to_cpu(hdr.checksum)); |
Andrew Vasquez | 272976c | 2008-09-11 21:22:50 -0700 | [diff] [blame] | 1147 | goto done; |
| 1148 | } |
| 1149 | |
| 1150 | entry = data + sizeof(struct qla_npiv_header); |
| 1151 | cnt = le16_to_cpu(hdr.entries); |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 1152 | for (i = 0; cnt; cnt--, entry++, i++) { |
Andrew Vasquez | 272976c | 2008-09-11 21:22:50 -0700 | [diff] [blame] | 1153 | uint16_t flags; |
| 1154 | struct fc_vport_identifiers vid; |
| 1155 | struct fc_vport *vport; |
| 1156 | |
Anirban Chakraborty | 40859ae | 2009-06-03 09:55:16 -0700 | [diff] [blame] | 1157 | memcpy(&ha->npiv_info[i], entry, sizeof(struct qla_npiv_entry)); |
| 1158 | |
Andrew Vasquez | 272976c | 2008-09-11 21:22:50 -0700 | [diff] [blame] | 1159 | flags = le16_to_cpu(entry->flags); |
| 1160 | if (flags == 0xffff) |
| 1161 | continue; |
| 1162 | if ((flags & BIT_0) == 0) |
| 1163 | continue; |
| 1164 | |
| 1165 | memset(&vid, 0, sizeof(vid)); |
| 1166 | vid.roles = FC_PORT_ROLE_FCP_INITIATOR; |
| 1167 | vid.vport_type = FC_PORTTYPE_NPIV; |
| 1168 | vid.disable = false; |
| 1169 | vid.port_name = wwn_to_u64(entry->port_name); |
| 1170 | vid.node_name = wwn_to_u64(entry->node_name); |
| 1171 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1172 | ql_dbg(ql_dbg_user, vha, 0x7093, |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 1173 | "NPIV[%02x]: wwpn=%llx wwnn=%llx vf_id=%#x Q_qos=%#x F_qos=%#x.\n", |
| 1174 | cnt, vid.port_name, vid.node_name, |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1175 | le16_to_cpu(entry->vf_id), |
| 1176 | entry->q_qos, entry->f_qos); |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 1177 | |
| 1178 | if (i < QLA_PRECONFIG_VPORTS) { |
| 1179 | vport = fc_vport_create(vha->host, 0, &vid); |
| 1180 | if (!vport) |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1181 | ql_log(ql_log_warn, vha, 0x7094, |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 1182 | "NPIV-Config Failed to create vport [%02x]: wwpn=%llx wwnn=%llx.\n", |
| 1183 | cnt, vid.port_name, vid.node_name); |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 1184 | } |
Andrew Vasquez | 272976c | 2008-09-11 21:22:50 -0700 | [diff] [blame] | 1185 | } |
| 1186 | done: |
| 1187 | kfree(data); |
| 1188 | } |
| 1189 | |
Joe Carnuccio | 1d2874d | 2009-03-24 09:08:06 -0700 | [diff] [blame] | 1190 | static int |
| 1191 | qla24xx_unprotect_flash(scsi_qla_host_t *vha) |
Andrew Vasquez | cb8dacb | 2008-04-03 13:13:19 -0700 | [diff] [blame] | 1192 | { |
Joe Carnuccio | 1d2874d | 2009-03-24 09:08:06 -0700 | [diff] [blame] | 1193 | struct qla_hw_data *ha = vha->hw; |
Andrew Vasquez | cb8dacb | 2008-04-03 13:13:19 -0700 | [diff] [blame] | 1194 | struct device_reg_24xx __iomem *reg = &ha->iobase->isp24; |
| 1195 | |
Joe Carnuccio | 1d2874d | 2009-03-24 09:08:06 -0700 | [diff] [blame] | 1196 | if (ha->flags.fac_supported) |
| 1197 | return qla81xx_fac_do_write_enable(vha, 1); |
| 1198 | |
Andrew Vasquez | cb8dacb | 2008-04-03 13:13:19 -0700 | [diff] [blame] | 1199 | /* Enable flash write. */ |
| 1200 | WRT_REG_DWORD(®->ctrl_status, |
| 1201 | RD_REG_DWORD(®->ctrl_status) | CSRX_FLASH_ENABLE); |
| 1202 | RD_REG_DWORD(®->ctrl_status); /* PCI Posting. */ |
| 1203 | |
Andrew Vasquez | 7d232c7 | 2008-04-03 13:13:22 -0700 | [diff] [blame] | 1204 | if (!ha->fdt_wrt_disable) |
Joe Carnuccio | 1d2874d | 2009-03-24 09:08:06 -0700 | [diff] [blame] | 1205 | goto done; |
Andrew Vasquez | 7d232c7 | 2008-04-03 13:13:22 -0700 | [diff] [blame] | 1206 | |
Joe Carnuccio | b872ca4 | 2009-01-22 09:45:36 -0800 | [diff] [blame] | 1207 | /* Disable flash write-protection, first clear SR protection bit */ |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 1208 | qla24xx_write_flash_dword(ha, flash_conf_addr(ha, 0x101), 0); |
Joe Carnuccio | b872ca4 | 2009-01-22 09:45:36 -0800 | [diff] [blame] | 1209 | /* Then write zero again to clear remaining SR bits.*/ |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 1210 | qla24xx_write_flash_dword(ha, flash_conf_addr(ha, 0x101), 0); |
Joe Carnuccio | 1d2874d | 2009-03-24 09:08:06 -0700 | [diff] [blame] | 1211 | done: |
| 1212 | return QLA_SUCCESS; |
Andrew Vasquez | cb8dacb | 2008-04-03 13:13:19 -0700 | [diff] [blame] | 1213 | } |
| 1214 | |
Joe Carnuccio | 1d2874d | 2009-03-24 09:08:06 -0700 | [diff] [blame] | 1215 | static int |
| 1216 | qla24xx_protect_flash(scsi_qla_host_t *vha) |
Andrew Vasquez | cb8dacb | 2008-04-03 13:13:19 -0700 | [diff] [blame] | 1217 | { |
Joe Carnuccio | 1d2874d | 2009-03-24 09:08:06 -0700 | [diff] [blame] | 1218 | struct qla_hw_data *ha = vha->hw; |
Andrew Vasquez | cb8dacb | 2008-04-03 13:13:19 -0700 | [diff] [blame] | 1219 | struct device_reg_24xx __iomem *reg = &ha->iobase->isp24; |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 1220 | ulong cnt = 300; |
| 1221 | uint32_t faddr, dword; |
Andrew Vasquez | cb8dacb | 2008-04-03 13:13:19 -0700 | [diff] [blame] | 1222 | |
Joe Carnuccio | 1d2874d | 2009-03-24 09:08:06 -0700 | [diff] [blame] | 1223 | if (ha->flags.fac_supported) |
| 1224 | return qla81xx_fac_do_write_enable(vha, 0); |
| 1225 | |
Andrew Vasquez | 7d232c7 | 2008-04-03 13:13:22 -0700 | [diff] [blame] | 1226 | if (!ha->fdt_wrt_disable) |
| 1227 | goto skip_wrt_protect; |
| 1228 | |
Andrew Vasquez | cb8dacb | 2008-04-03 13:13:19 -0700 | [diff] [blame] | 1229 | /* Enable flash write-protection and wait for completion. */ |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 1230 | faddr = flash_conf_addr(ha, 0x101); |
| 1231 | qla24xx_write_flash_dword(ha, faddr, ha->fdt_wrt_disable); |
| 1232 | faddr = flash_conf_addr(ha, 0x5); |
| 1233 | while (cnt--) { |
| 1234 | if (!qla24xx_read_flash_dword(ha, faddr, &dword)) { |
| 1235 | if (!(dword & BIT_0)) |
| 1236 | break; |
| 1237 | } |
Andrew Vasquez | cb8dacb | 2008-04-03 13:13:19 -0700 | [diff] [blame] | 1238 | udelay(10); |
| 1239 | } |
| 1240 | |
Andrew Vasquez | 7d232c7 | 2008-04-03 13:13:22 -0700 | [diff] [blame] | 1241 | skip_wrt_protect: |
Andrew Vasquez | cb8dacb | 2008-04-03 13:13:19 -0700 | [diff] [blame] | 1242 | /* Disable flash write. */ |
| 1243 | WRT_REG_DWORD(®->ctrl_status, |
| 1244 | RD_REG_DWORD(®->ctrl_status) & ~CSRX_FLASH_ENABLE); |
Joe Carnuccio | 1d2874d | 2009-03-24 09:08:06 -0700 | [diff] [blame] | 1245 | |
| 1246 | return QLA_SUCCESS; |
| 1247 | } |
| 1248 | |
| 1249 | static int |
| 1250 | qla24xx_erase_sector(scsi_qla_host_t *vha, uint32_t fdata) |
| 1251 | { |
| 1252 | struct qla_hw_data *ha = vha->hw; |
| 1253 | uint32_t start, finish; |
| 1254 | |
| 1255 | if (ha->flags.fac_supported) { |
| 1256 | start = fdata >> 2; |
| 1257 | finish = start + (ha->fdt_block_size >> 2) - 1; |
| 1258 | return qla81xx_fac_erase_sector(vha, flash_data_addr(ha, |
| 1259 | start), flash_data_addr(ha, finish)); |
| 1260 | } |
| 1261 | |
| 1262 | return qla24xx_write_flash_dword(ha, ha->fdt_erase_cmd, |
| 1263 | (fdata & 0xff00) | ((fdata << 16) & 0xff0000) | |
| 1264 | ((fdata >> 16) & 0xff)); |
Andrew Vasquez | cb8dacb | 2008-04-03 13:13:19 -0700 | [diff] [blame] | 1265 | } |
| 1266 | |
Adrian Bunk | e5f82ab | 2006-11-08 19:55:50 -0800 | [diff] [blame] | 1267 | static int |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 1268 | qla24xx_write_flash_data(scsi_qla_host_t *vha, uint32_t *dwptr, uint32_t faddr, |
Andrew Vasquez | 459c537 | 2005-07-06 10:31:07 -0700 | [diff] [blame] | 1269 | uint32_t dwords) |
| 1270 | { |
| 1271 | int ret; |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 1272 | ulong liter; |
| 1273 | ulong dburst = OPTROM_BURST_DWORDS; /* burst size in dwords */ |
| 1274 | uint32_t sec_mask, rest_addr, fdata; |
Andrew Vasquez | 338c916 | 2007-09-20 14:07:33 -0700 | [diff] [blame] | 1275 | dma_addr_t optrom_dma; |
| 1276 | void *optrom = NULL; |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 1277 | struct qla_hw_data *ha = vha->hw; |
Andrew Vasquez | 459c537 | 2005-07-06 10:31:07 -0700 | [diff] [blame] | 1278 | |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 1279 | if (!IS_QLA25XX(ha) && !IS_QLA81XX(ha) && !IS_QLA83XX(ha) && |
| 1280 | !IS_QLA27XX(ha) && !IS_QLA28XX(ha)) |
| 1281 | goto next; |
| 1282 | |
| 1283 | /* Allocate dma buffer for burst write */ |
| 1284 | optrom = dma_alloc_coherent(&ha->pdev->dev, OPTROM_BURST_SIZE, |
| 1285 | &optrom_dma, GFP_KERNEL); |
| 1286 | if (!optrom) { |
| 1287 | ql_log(ql_log_warn, vha, 0x7095, |
| 1288 | "Failed allocate burst (%x bytes)\n", OPTROM_BURST_SIZE); |
| 1289 | } |
| 1290 | |
| 1291 | next: |
| 1292 | ql_log(ql_log_warn + ql_dbg_verbose, vha, 0x7095, |
| 1293 | "Unprotect flash...\n"); |
| 1294 | ret = qla24xx_unprotect_flash(vha); |
| 1295 | if (ret) { |
| 1296 | ql_log(ql_log_warn, vha, 0x7096, |
| 1297 | "Failed to unprotect flash.\n"); |
| 1298 | goto done; |
Andrew Vasquez | 338c916 | 2007-09-20 14:07:33 -0700 | [diff] [blame] | 1299 | } |
| 1300 | |
Andrew Vasquez | 7d232c7 | 2008-04-03 13:13:22 -0700 | [diff] [blame] | 1301 | rest_addr = (ha->fdt_block_size >> 2) - 1; |
Andrew Vasquez | 85d0acb | 2009-01-22 09:45:29 -0800 | [diff] [blame] | 1302 | sec_mask = ~rest_addr; |
Andrew Vasquez | 338c916 | 2007-09-20 14:07:33 -0700 | [diff] [blame] | 1303 | for (liter = 0; liter < dwords; liter++, faddr++, dwptr++) { |
Andrew Vasquez | 85d0acb | 2009-01-22 09:45:29 -0800 | [diff] [blame] | 1304 | fdata = (faddr & sec_mask) << 2; |
Ravi Anand | 45aeaf1 | 2006-05-17 15:08:49 -0700 | [diff] [blame] | 1305 | |
Andrew Vasquez | 338c916 | 2007-09-20 14:07:33 -0700 | [diff] [blame] | 1306 | /* Are we at the beginning of a sector? */ |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 1307 | if (!(faddr & rest_addr)) { |
| 1308 | ql_log(ql_log_warn + ql_dbg_verbose, vha, 0x7095, |
| 1309 | "Erase sector %#x...\n", faddr); |
| 1310 | |
Joe Carnuccio | 1d2874d | 2009-03-24 09:08:06 -0700 | [diff] [blame] | 1311 | ret = qla24xx_erase_sector(vha, fdata); |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 1312 | if (ret) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1313 | ql_dbg(ql_dbg_user, vha, 0x7007, |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 1314 | "Failed to erase sector %x.\n", faddr); |
Andrew Vasquez | 338c916 | 2007-09-20 14:07:33 -0700 | [diff] [blame] | 1315 | break; |
| 1316 | } |
Andrew Vasquez | 459c537 | 2005-07-06 10:31:07 -0700 | [diff] [blame] | 1317 | } |
Andrew Vasquez | 338c916 | 2007-09-20 14:07:33 -0700 | [diff] [blame] | 1318 | |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 1319 | if (optrom) { |
| 1320 | /* If smaller than a burst remaining */ |
| 1321 | if (dwords - liter < dburst) |
| 1322 | dburst = dwords - liter; |
Andrew Vasquez | 338c916 | 2007-09-20 14:07:33 -0700 | [diff] [blame] | 1323 | |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 1324 | /* Copy to dma buffer */ |
| 1325 | memcpy(optrom, dwptr, dburst << 2); |
| 1326 | |
| 1327 | /* Burst write */ |
| 1328 | ql_log(ql_log_warn + ql_dbg_verbose, vha, 0x7095, |
| 1329 | "Write burst (%#lx dwords)...\n", dburst); |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 1330 | ret = qla2x00_load_ram(vha, optrom_dma, |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 1331 | flash_data_addr(ha, faddr), dburst); |
| 1332 | if (!ret) { |
| 1333 | liter += dburst - 1; |
| 1334 | faddr += dburst - 1; |
| 1335 | dwptr += dburst - 1; |
Andrew Vasquez | 338c916 | 2007-09-20 14:07:33 -0700 | [diff] [blame] | 1336 | continue; |
| 1337 | } |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 1338 | |
| 1339 | ql_log(ql_log_warn, vha, 0x7097, |
| 1340 | "Failed burst-write at %x (%p/%#llx)....\n", |
| 1341 | flash_data_addr(ha, faddr), optrom, |
| 1342 | (u64)optrom_dma); |
| 1343 | |
| 1344 | dma_free_coherent(&ha->pdev->dev, |
| 1345 | OPTROM_BURST_SIZE, optrom, optrom_dma); |
| 1346 | optrom = NULL; |
| 1347 | if (IS_QLA27XX(ha) || IS_QLA28XX(ha)) |
| 1348 | break; |
| 1349 | ql_log(ql_log_warn, vha, 0x7098, |
| 1350 | "Reverting to slow write...\n"); |
Andrew Vasquez | 338c916 | 2007-09-20 14:07:33 -0700 | [diff] [blame] | 1351 | } |
| 1352 | |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 1353 | /* Slow write */ |
Andrew Vasquez | 338c916 | 2007-09-20 14:07:33 -0700 | [diff] [blame] | 1354 | ret = qla24xx_write_flash_dword(ha, |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 1355 | flash_data_addr(ha, faddr), cpu_to_le32(*dwptr)); |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 1356 | if (ret) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1357 | ql_dbg(ql_dbg_user, vha, 0x7006, |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 1358 | "Failed slopw write %x (%x)\n", faddr, *dwptr); |
Andrew Vasquez | 338c916 | 2007-09-20 14:07:33 -0700 | [diff] [blame] | 1359 | break; |
| 1360 | } |
Andrew Vasquez | 338c916 | 2007-09-20 14:07:33 -0700 | [diff] [blame] | 1361 | } |
Andrew Vasquez | 459c537 | 2005-07-06 10:31:07 -0700 | [diff] [blame] | 1362 | |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 1363 | ql_log(ql_log_warn + ql_dbg_verbose, vha, 0x7095, |
| 1364 | "Protect flash...\n"); |
Joe Carnuccio | 1d2874d | 2009-03-24 09:08:06 -0700 | [diff] [blame] | 1365 | ret = qla24xx_protect_flash(vha); |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 1366 | if (ret) |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1367 | ql_log(ql_log_warn, vha, 0x7099, |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 1368 | "Failed to protect flash\n"); |
Joe Carnuccio | 1d2874d | 2009-03-24 09:08:06 -0700 | [diff] [blame] | 1369 | done: |
Andrew Vasquez | 338c916 | 2007-09-20 14:07:33 -0700 | [diff] [blame] | 1370 | if (optrom) |
| 1371 | dma_free_coherent(&ha->pdev->dev, |
| 1372 | OPTROM_BURST_SIZE, optrom, optrom_dma); |
| 1373 | |
Andrew Vasquez | 459c537 | 2005-07-06 10:31:07 -0700 | [diff] [blame] | 1374 | return ret; |
| 1375 | } |
| 1376 | |
| 1377 | uint8_t * |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 1378 | qla2x00_read_nvram_data(scsi_qla_host_t *vha, void *buf, uint32_t naddr, |
Andrew Vasquez | 459c537 | 2005-07-06 10:31:07 -0700 | [diff] [blame] | 1379 | uint32_t bytes) |
| 1380 | { |
| 1381 | uint32_t i; |
| 1382 | uint16_t *wptr; |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 1383 | struct qla_hw_data *ha = vha->hw; |
Andrew Vasquez | 459c537 | 2005-07-06 10:31:07 -0700 | [diff] [blame] | 1384 | |
| 1385 | /* Word reads to NVRAM via registers. */ |
| 1386 | wptr = (uint16_t *)buf; |
| 1387 | qla2x00_lock_nvram_access(ha); |
| 1388 | for (i = 0; i < bytes >> 1; i++, naddr++) |
| 1389 | wptr[i] = cpu_to_le16(qla2x00_get_nvram_word(ha, |
| 1390 | naddr)); |
| 1391 | qla2x00_unlock_nvram_access(ha); |
| 1392 | |
| 1393 | return buf; |
| 1394 | } |
| 1395 | |
| 1396 | uint8_t * |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 1397 | qla24xx_read_nvram_data(scsi_qla_host_t *vha, void *buf, uint32_t naddr, |
Andrew Vasquez | 459c537 | 2005-07-06 10:31:07 -0700 | [diff] [blame] | 1398 | uint32_t bytes) |
| 1399 | { |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 1400 | struct qla_hw_data *ha = vha->hw; |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 1401 | uint32_t *dwptr = buf; |
| 1402 | uint32_t i; |
Andrew Vasquez | 459c537 | 2005-07-06 10:31:07 -0700 | [diff] [blame] | 1403 | |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 1404 | if (IS_P3P_TYPE(ha)) |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 1405 | return buf; |
| 1406 | |
Andrew Vasquez | 459c537 | 2005-07-06 10:31:07 -0700 | [diff] [blame] | 1407 | /* Dword reads to flash. */ |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 1408 | naddr = nvram_data_addr(ha, naddr); |
| 1409 | bytes >>= 2; |
| 1410 | for (i = 0; i < bytes; i++, naddr++, dwptr++) { |
| 1411 | if (qla24xx_read_flash_dword(ha, naddr, dwptr)) |
| 1412 | break; |
| 1413 | cpu_to_le32s(dwptr); |
| 1414 | } |
Andrew Vasquez | 459c537 | 2005-07-06 10:31:07 -0700 | [diff] [blame] | 1415 | |
Andrew Vasquez | 459c537 | 2005-07-06 10:31:07 -0700 | [diff] [blame] | 1416 | return buf; |
| 1417 | } |
| 1418 | |
| 1419 | int |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 1420 | qla2x00_write_nvram_data(scsi_qla_host_t *vha, void *buf, uint32_t naddr, |
Andrew Vasquez | 459c537 | 2005-07-06 10:31:07 -0700 | [diff] [blame] | 1421 | uint32_t bytes) |
| 1422 | { |
| 1423 | int ret, stat; |
| 1424 | uint32_t i; |
| 1425 | uint16_t *wptr; |
Andrew Vasquez | 2c96d8d | 2007-10-19 15:59:15 -0700 | [diff] [blame] | 1426 | unsigned long flags; |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 1427 | struct qla_hw_data *ha = vha->hw; |
Andrew Vasquez | 459c537 | 2005-07-06 10:31:07 -0700 | [diff] [blame] | 1428 | |
| 1429 | ret = QLA_SUCCESS; |
| 1430 | |
Andrew Vasquez | 2c96d8d | 2007-10-19 15:59:15 -0700 | [diff] [blame] | 1431 | spin_lock_irqsave(&ha->hardware_lock, flags); |
Andrew Vasquez | 459c537 | 2005-07-06 10:31:07 -0700 | [diff] [blame] | 1432 | qla2x00_lock_nvram_access(ha); |
| 1433 | |
| 1434 | /* Disable NVRAM write-protection. */ |
| 1435 | stat = qla2x00_clear_nvram_protection(ha); |
| 1436 | |
| 1437 | wptr = (uint16_t *)buf; |
| 1438 | for (i = 0; i < bytes >> 1; i++, naddr++) { |
| 1439 | qla2x00_write_nvram_word(ha, naddr, |
| 1440 | cpu_to_le16(*wptr)); |
| 1441 | wptr++; |
| 1442 | } |
| 1443 | |
| 1444 | /* Enable NVRAM write-protection. */ |
| 1445 | qla2x00_set_nvram_protection(ha, stat); |
| 1446 | |
| 1447 | qla2x00_unlock_nvram_access(ha); |
Andrew Vasquez | 2c96d8d | 2007-10-19 15:59:15 -0700 | [diff] [blame] | 1448 | spin_unlock_irqrestore(&ha->hardware_lock, flags); |
Andrew Vasquez | 459c537 | 2005-07-06 10:31:07 -0700 | [diff] [blame] | 1449 | |
| 1450 | return ret; |
| 1451 | } |
| 1452 | |
| 1453 | int |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 1454 | qla24xx_write_nvram_data(scsi_qla_host_t *vha, void *buf, uint32_t naddr, |
Andrew Vasquez | 459c537 | 2005-07-06 10:31:07 -0700 | [diff] [blame] | 1455 | uint32_t bytes) |
| 1456 | { |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 1457 | struct qla_hw_data *ha = vha->hw; |
Andrew Vasquez | 459c537 | 2005-07-06 10:31:07 -0700 | [diff] [blame] | 1458 | struct device_reg_24xx __iomem *reg = &ha->iobase->isp24; |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 1459 | uint32_t *dwptr = buf; |
| 1460 | uint32_t i; |
| 1461 | int ret; |
Andrew Vasquez | 459c537 | 2005-07-06 10:31:07 -0700 | [diff] [blame] | 1462 | |
| 1463 | ret = QLA_SUCCESS; |
| 1464 | |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 1465 | if (IS_P3P_TYPE(ha)) |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 1466 | return ret; |
| 1467 | |
Andrew Vasquez | 459c537 | 2005-07-06 10:31:07 -0700 | [diff] [blame] | 1468 | /* Enable flash write. */ |
| 1469 | WRT_REG_DWORD(®->ctrl_status, |
| 1470 | RD_REG_DWORD(®->ctrl_status) | CSRX_FLASH_ENABLE); |
| 1471 | RD_REG_DWORD(®->ctrl_status); /* PCI Posting. */ |
| 1472 | |
| 1473 | /* Disable NVRAM write-protection. */ |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 1474 | qla24xx_write_flash_dword(ha, nvram_conf_addr(ha, 0x101), 0); |
| 1475 | qla24xx_write_flash_dword(ha, nvram_conf_addr(ha, 0x101), 0); |
Andrew Vasquez | 459c537 | 2005-07-06 10:31:07 -0700 | [diff] [blame] | 1476 | |
| 1477 | /* Dword writes to flash. */ |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 1478 | naddr = nvram_data_addr(ha, naddr); |
| 1479 | bytes >>= 2; |
| 1480 | for (i = 0; i < bytes; i++, naddr++, dwptr++) { |
| 1481 | if (qla24xx_write_flash_dword(ha, naddr, cpu_to_le32(*dwptr))) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1482 | ql_dbg(ql_dbg_user, vha, 0x709a, |
Andrew Vasquez | 7640335 | 2009-04-06 22:33:39 -0700 | [diff] [blame] | 1483 | "Unable to program nvram address=%x data=%x.\n", |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1484 | naddr, *dwptr); |
Andrew Vasquez | 459c537 | 2005-07-06 10:31:07 -0700 | [diff] [blame] | 1485 | break; |
| 1486 | } |
| 1487 | } |
| 1488 | |
| 1489 | /* Enable NVRAM write-protection. */ |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 1490 | qla24xx_write_flash_dword(ha, nvram_conf_addr(ha, 0x101), 0x8c); |
Andrew Vasquez | 459c537 | 2005-07-06 10:31:07 -0700 | [diff] [blame] | 1491 | |
| 1492 | /* Disable flash write. */ |
| 1493 | WRT_REG_DWORD(®->ctrl_status, |
| 1494 | RD_REG_DWORD(®->ctrl_status) & ~CSRX_FLASH_ENABLE); |
| 1495 | RD_REG_DWORD(®->ctrl_status); /* PCI Posting. */ |
| 1496 | |
Andrew Vasquez | 459c537 | 2005-07-06 10:31:07 -0700 | [diff] [blame] | 1497 | return ret; |
| 1498 | } |
andrew.vasquez@qlogic.com | f6df144 | 2006-01-31 16:05:07 -0800 | [diff] [blame] | 1499 | |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 1500 | uint8_t * |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 1501 | qla25xx_read_nvram_data(scsi_qla_host_t *vha, void *buf, uint32_t naddr, |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 1502 | uint32_t bytes) |
| 1503 | { |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 1504 | struct qla_hw_data *ha = vha->hw; |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 1505 | uint32_t *dwptr = buf; |
| 1506 | uint32_t i; |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 1507 | |
| 1508 | /* Dword reads to flash. */ |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 1509 | naddr = flash_data_addr(ha, ha->flt_region_vpd_nvram | naddr); |
| 1510 | bytes >>= 2; |
| 1511 | for (i = 0; i < bytes; i++, naddr++, dwptr++) { |
| 1512 | if (qla24xx_read_flash_dword(ha, naddr, dwptr)) |
| 1513 | break; |
| 1514 | |
| 1515 | cpu_to_le32s(dwptr); |
| 1516 | } |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 1517 | |
| 1518 | return buf; |
| 1519 | } |
| 1520 | |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 1521 | #define RMW_BUFFER_SIZE (64 * 1024) |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 1522 | int |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 1523 | qla25xx_write_nvram_data(scsi_qla_host_t *vha, void *buf, uint32_t naddr, |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 1524 | uint32_t bytes) |
| 1525 | { |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 1526 | struct qla_hw_data *ha = vha->hw; |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 1527 | uint8_t *dbuf = vmalloc(RMW_BUFFER_SIZE); |
Andrew Vasquez | 2c96d8d | 2007-10-19 15:59:15 -0700 | [diff] [blame] | 1528 | |
Andrew Vasquez | 2c96d8d | 2007-10-19 15:59:15 -0700 | [diff] [blame] | 1529 | if (!dbuf) |
| 1530 | return QLA_MEMORY_ALLOC_FAILED; |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 1531 | ha->isp_ops->read_optrom(vha, dbuf, ha->flt_region_vpd_nvram << 2, |
Andrew Vasquez | 2c96d8d | 2007-10-19 15:59:15 -0700 | [diff] [blame] | 1532 | RMW_BUFFER_SIZE); |
| 1533 | memcpy(dbuf + (naddr << 2), buf, bytes); |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 1534 | ha->isp_ops->write_optrom(vha, dbuf, ha->flt_region_vpd_nvram << 2, |
Andrew Vasquez | 2c96d8d | 2007-10-19 15:59:15 -0700 | [diff] [blame] | 1535 | RMW_BUFFER_SIZE); |
| 1536 | vfree(dbuf); |
| 1537 | |
| 1538 | return QLA_SUCCESS; |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 1539 | } |
andrew.vasquez@qlogic.com | f6df144 | 2006-01-31 16:05:07 -0800 | [diff] [blame] | 1540 | |
| 1541 | static inline void |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 1542 | qla2x00_flip_colors(struct qla_hw_data *ha, uint16_t *pflags) |
andrew.vasquez@qlogic.com | f6df144 | 2006-01-31 16:05:07 -0800 | [diff] [blame] | 1543 | { |
| 1544 | if (IS_QLA2322(ha)) { |
| 1545 | /* Flip all colors. */ |
| 1546 | if (ha->beacon_color_state == QLA_LED_ALL_ON) { |
| 1547 | /* Turn off. */ |
| 1548 | ha->beacon_color_state = 0; |
| 1549 | *pflags = GPIO_LED_ALL_OFF; |
| 1550 | } else { |
| 1551 | /* Turn on. */ |
| 1552 | ha->beacon_color_state = QLA_LED_ALL_ON; |
| 1553 | *pflags = GPIO_LED_RGA_ON; |
| 1554 | } |
| 1555 | } else { |
| 1556 | /* Flip green led only. */ |
| 1557 | if (ha->beacon_color_state == QLA_LED_GRN_ON) { |
| 1558 | /* Turn off. */ |
| 1559 | ha->beacon_color_state = 0; |
| 1560 | *pflags = GPIO_LED_GREEN_OFF_AMBER_OFF; |
| 1561 | } else { |
| 1562 | /* Turn on. */ |
| 1563 | ha->beacon_color_state = QLA_LED_GRN_ON; |
| 1564 | *pflags = GPIO_LED_GREEN_ON_AMBER_OFF; |
| 1565 | } |
| 1566 | } |
| 1567 | } |
| 1568 | |
Andrew Vasquez | 948882f | 2008-01-31 12:33:44 -0800 | [diff] [blame] | 1569 | #define PIO_REG(h, r) ((h)->pio_address + offsetof(struct device_reg_2xxx, r)) |
| 1570 | |
andrew.vasquez@qlogic.com | f6df144 | 2006-01-31 16:05:07 -0800 | [diff] [blame] | 1571 | void |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 1572 | qla2x00_beacon_blink(struct scsi_qla_host *vha) |
andrew.vasquez@qlogic.com | f6df144 | 2006-01-31 16:05:07 -0800 | [diff] [blame] | 1573 | { |
| 1574 | uint16_t gpio_enable; |
| 1575 | uint16_t gpio_data; |
| 1576 | uint16_t led_color = 0; |
| 1577 | unsigned long flags; |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 1578 | struct qla_hw_data *ha = vha->hw; |
andrew.vasquez@qlogic.com | f6df144 | 2006-01-31 16:05:07 -0800 | [diff] [blame] | 1579 | struct device_reg_2xxx __iomem *reg = &ha->iobase->isp; |
| 1580 | |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 1581 | if (IS_P3P_TYPE(ha)) |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 1582 | return; |
| 1583 | |
andrew.vasquez@qlogic.com | f6df144 | 2006-01-31 16:05:07 -0800 | [diff] [blame] | 1584 | spin_lock_irqsave(&ha->hardware_lock, flags); |
| 1585 | |
| 1586 | /* Save the Original GPIOE. */ |
| 1587 | if (ha->pio_address) { |
Andrew Vasquez | 948882f | 2008-01-31 12:33:44 -0800 | [diff] [blame] | 1588 | gpio_enable = RD_REG_WORD_PIO(PIO_REG(ha, gpioe)); |
| 1589 | gpio_data = RD_REG_WORD_PIO(PIO_REG(ha, gpiod)); |
andrew.vasquez@qlogic.com | f6df144 | 2006-01-31 16:05:07 -0800 | [diff] [blame] | 1590 | } else { |
| 1591 | gpio_enable = RD_REG_WORD(®->gpioe); |
| 1592 | gpio_data = RD_REG_WORD(®->gpiod); |
| 1593 | } |
| 1594 | |
| 1595 | /* Set the modified gpio_enable values */ |
| 1596 | gpio_enable |= GPIO_LED_MASK; |
| 1597 | |
| 1598 | if (ha->pio_address) { |
Andrew Vasquez | 948882f | 2008-01-31 12:33:44 -0800 | [diff] [blame] | 1599 | WRT_REG_WORD_PIO(PIO_REG(ha, gpioe), gpio_enable); |
andrew.vasquez@qlogic.com | f6df144 | 2006-01-31 16:05:07 -0800 | [diff] [blame] | 1600 | } else { |
| 1601 | WRT_REG_WORD(®->gpioe, gpio_enable); |
| 1602 | RD_REG_WORD(®->gpioe); |
| 1603 | } |
| 1604 | |
| 1605 | qla2x00_flip_colors(ha, &led_color); |
| 1606 | |
| 1607 | /* Clear out any previously set LED color. */ |
| 1608 | gpio_data &= ~GPIO_LED_MASK; |
| 1609 | |
| 1610 | /* Set the new input LED color to GPIOD. */ |
| 1611 | gpio_data |= led_color; |
| 1612 | |
| 1613 | /* Set the modified gpio_data values */ |
| 1614 | if (ha->pio_address) { |
Andrew Vasquez | 948882f | 2008-01-31 12:33:44 -0800 | [diff] [blame] | 1615 | WRT_REG_WORD_PIO(PIO_REG(ha, gpiod), gpio_data); |
andrew.vasquez@qlogic.com | f6df144 | 2006-01-31 16:05:07 -0800 | [diff] [blame] | 1616 | } else { |
| 1617 | WRT_REG_WORD(®->gpiod, gpio_data); |
| 1618 | RD_REG_WORD(®->gpiod); |
| 1619 | } |
| 1620 | |
| 1621 | spin_unlock_irqrestore(&ha->hardware_lock, flags); |
| 1622 | } |
| 1623 | |
| 1624 | int |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 1625 | qla2x00_beacon_on(struct scsi_qla_host *vha) |
andrew.vasquez@qlogic.com | f6df144 | 2006-01-31 16:05:07 -0800 | [diff] [blame] | 1626 | { |
| 1627 | uint16_t gpio_enable; |
| 1628 | uint16_t gpio_data; |
| 1629 | unsigned long flags; |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 1630 | struct qla_hw_data *ha = vha->hw; |
andrew.vasquez@qlogic.com | f6df144 | 2006-01-31 16:05:07 -0800 | [diff] [blame] | 1631 | struct device_reg_2xxx __iomem *reg = &ha->iobase->isp; |
| 1632 | |
| 1633 | ha->fw_options[1] &= ~FO1_SET_EMPHASIS_SWING; |
| 1634 | ha->fw_options[1] |= FO1_DISABLE_GPIO6_7; |
| 1635 | |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 1636 | if (qla2x00_set_fw_options(vha, ha->fw_options) != QLA_SUCCESS) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1637 | ql_log(ql_log_warn, vha, 0x709b, |
andrew.vasquez@qlogic.com | f6df144 | 2006-01-31 16:05:07 -0800 | [diff] [blame] | 1638 | "Unable to update fw options (beacon on).\n"); |
| 1639 | return QLA_FUNCTION_FAILED; |
| 1640 | } |
| 1641 | |
andrew.vasquez@qlogic.com | f6df144 | 2006-01-31 16:05:07 -0800 | [diff] [blame] | 1642 | /* Turn off LEDs. */ |
| 1643 | spin_lock_irqsave(&ha->hardware_lock, flags); |
| 1644 | if (ha->pio_address) { |
Andrew Vasquez | 948882f | 2008-01-31 12:33:44 -0800 | [diff] [blame] | 1645 | gpio_enable = RD_REG_WORD_PIO(PIO_REG(ha, gpioe)); |
| 1646 | gpio_data = RD_REG_WORD_PIO(PIO_REG(ha, gpiod)); |
andrew.vasquez@qlogic.com | f6df144 | 2006-01-31 16:05:07 -0800 | [diff] [blame] | 1647 | } else { |
| 1648 | gpio_enable = RD_REG_WORD(®->gpioe); |
| 1649 | gpio_data = RD_REG_WORD(®->gpiod); |
| 1650 | } |
| 1651 | gpio_enable |= GPIO_LED_MASK; |
| 1652 | |
| 1653 | /* Set the modified gpio_enable values. */ |
| 1654 | if (ha->pio_address) { |
Andrew Vasquez | 948882f | 2008-01-31 12:33:44 -0800 | [diff] [blame] | 1655 | WRT_REG_WORD_PIO(PIO_REG(ha, gpioe), gpio_enable); |
andrew.vasquez@qlogic.com | f6df144 | 2006-01-31 16:05:07 -0800 | [diff] [blame] | 1656 | } else { |
| 1657 | WRT_REG_WORD(®->gpioe, gpio_enable); |
| 1658 | RD_REG_WORD(®->gpioe); |
| 1659 | } |
| 1660 | |
| 1661 | /* Clear out previously set LED colour. */ |
| 1662 | gpio_data &= ~GPIO_LED_MASK; |
| 1663 | if (ha->pio_address) { |
Andrew Vasquez | 948882f | 2008-01-31 12:33:44 -0800 | [diff] [blame] | 1664 | WRT_REG_WORD_PIO(PIO_REG(ha, gpiod), gpio_data); |
andrew.vasquez@qlogic.com | f6df144 | 2006-01-31 16:05:07 -0800 | [diff] [blame] | 1665 | } else { |
| 1666 | WRT_REG_WORD(®->gpiod, gpio_data); |
| 1667 | RD_REG_WORD(®->gpiod); |
| 1668 | } |
| 1669 | spin_unlock_irqrestore(&ha->hardware_lock, flags); |
| 1670 | |
| 1671 | /* |
| 1672 | * Let the per HBA timer kick off the blinking process based on |
| 1673 | * the following flags. No need to do anything else now. |
| 1674 | */ |
| 1675 | ha->beacon_blink_led = 1; |
| 1676 | ha->beacon_color_state = 0; |
| 1677 | |
| 1678 | return QLA_SUCCESS; |
| 1679 | } |
| 1680 | |
| 1681 | int |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 1682 | qla2x00_beacon_off(struct scsi_qla_host *vha) |
andrew.vasquez@qlogic.com | f6df144 | 2006-01-31 16:05:07 -0800 | [diff] [blame] | 1683 | { |
| 1684 | int rval = QLA_SUCCESS; |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 1685 | struct qla_hw_data *ha = vha->hw; |
andrew.vasquez@qlogic.com | f6df144 | 2006-01-31 16:05:07 -0800 | [diff] [blame] | 1686 | |
| 1687 | ha->beacon_blink_led = 0; |
| 1688 | |
| 1689 | /* Set the on flag so when it gets flipped it will be off. */ |
| 1690 | if (IS_QLA2322(ha)) |
| 1691 | ha->beacon_color_state = QLA_LED_ALL_ON; |
| 1692 | else |
| 1693 | ha->beacon_color_state = QLA_LED_GRN_ON; |
| 1694 | |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 1695 | ha->isp_ops->beacon_blink(vha); /* This turns green LED off */ |
andrew.vasquez@qlogic.com | f6df144 | 2006-01-31 16:05:07 -0800 | [diff] [blame] | 1696 | |
| 1697 | ha->fw_options[1] &= ~FO1_SET_EMPHASIS_SWING; |
| 1698 | ha->fw_options[1] &= ~FO1_DISABLE_GPIO6_7; |
| 1699 | |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 1700 | rval = qla2x00_set_fw_options(vha, ha->fw_options); |
andrew.vasquez@qlogic.com | f6df144 | 2006-01-31 16:05:07 -0800 | [diff] [blame] | 1701 | if (rval != QLA_SUCCESS) |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1702 | ql_log(ql_log_warn, vha, 0x709c, |
andrew.vasquez@qlogic.com | f6df144 | 2006-01-31 16:05:07 -0800 | [diff] [blame] | 1703 | "Unable to update fw options (beacon off).\n"); |
| 1704 | return rval; |
| 1705 | } |
| 1706 | |
| 1707 | |
| 1708 | static inline void |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 1709 | qla24xx_flip_colors(struct qla_hw_data *ha, uint16_t *pflags) |
andrew.vasquez@qlogic.com | f6df144 | 2006-01-31 16:05:07 -0800 | [diff] [blame] | 1710 | { |
| 1711 | /* Flip all colors. */ |
| 1712 | if (ha->beacon_color_state == QLA_LED_ALL_ON) { |
| 1713 | /* Turn off. */ |
| 1714 | ha->beacon_color_state = 0; |
| 1715 | *pflags = 0; |
| 1716 | } else { |
| 1717 | /* Turn on. */ |
| 1718 | ha->beacon_color_state = QLA_LED_ALL_ON; |
| 1719 | *pflags = GPDX_LED_YELLOW_ON | GPDX_LED_AMBER_ON; |
| 1720 | } |
| 1721 | } |
| 1722 | |
| 1723 | void |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 1724 | qla24xx_beacon_blink(struct scsi_qla_host *vha) |
andrew.vasquez@qlogic.com | f6df144 | 2006-01-31 16:05:07 -0800 | [diff] [blame] | 1725 | { |
| 1726 | uint16_t led_color = 0; |
| 1727 | uint32_t gpio_data; |
| 1728 | unsigned long flags; |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 1729 | struct qla_hw_data *ha = vha->hw; |
andrew.vasquez@qlogic.com | f6df144 | 2006-01-31 16:05:07 -0800 | [diff] [blame] | 1730 | struct device_reg_24xx __iomem *reg = &ha->iobase->isp24; |
| 1731 | |
| 1732 | /* Save the Original GPIOD. */ |
| 1733 | spin_lock_irqsave(&ha->hardware_lock, flags); |
| 1734 | gpio_data = RD_REG_DWORD(®->gpiod); |
| 1735 | |
| 1736 | /* Enable the gpio_data reg for update. */ |
| 1737 | gpio_data |= GPDX_LED_UPDATE_MASK; |
| 1738 | |
| 1739 | WRT_REG_DWORD(®->gpiod, gpio_data); |
| 1740 | gpio_data = RD_REG_DWORD(®->gpiod); |
| 1741 | |
| 1742 | /* Set the color bits. */ |
| 1743 | qla24xx_flip_colors(ha, &led_color); |
| 1744 | |
| 1745 | /* Clear out any previously set LED color. */ |
| 1746 | gpio_data &= ~GPDX_LED_COLOR_MASK; |
| 1747 | |
| 1748 | /* Set the new input LED color to GPIOD. */ |
| 1749 | gpio_data |= led_color; |
| 1750 | |
| 1751 | /* Set the modified gpio_data values. */ |
| 1752 | WRT_REG_DWORD(®->gpiod, gpio_data); |
| 1753 | gpio_data = RD_REG_DWORD(®->gpiod); |
| 1754 | spin_unlock_irqrestore(&ha->hardware_lock, flags); |
| 1755 | } |
| 1756 | |
Chad Dupuis | 0143d8b7 | 2012-08-22 14:21:11 -0400 | [diff] [blame] | 1757 | static uint32_t |
| 1758 | qla83xx_select_led_port(struct qla_hw_data *ha) |
| 1759 | { |
| 1760 | uint32_t led_select_value = 0; |
| 1761 | |
Joe Carnuccio | ecc89f2 | 2019-03-12 11:08:13 -0700 | [diff] [blame] | 1762 | if (!IS_QLA83XX(ha) && !IS_QLA27XX(ha) && !IS_QLA28XX(ha)) |
Chad Dupuis | 0143d8b7 | 2012-08-22 14:21:11 -0400 | [diff] [blame] | 1763 | goto out; |
| 1764 | |
Chad Dupuis | f73cb69 | 2014-02-26 04:15:06 -0500 | [diff] [blame] | 1765 | if (ha->port_no == 0) |
Chad Dupuis | 0143d8b7 | 2012-08-22 14:21:11 -0400 | [diff] [blame] | 1766 | led_select_value = QLA83XX_LED_PORT0; |
| 1767 | else |
| 1768 | led_select_value = QLA83XX_LED_PORT1; |
| 1769 | |
| 1770 | out: |
| 1771 | return led_select_value; |
| 1772 | } |
| 1773 | |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 1774 | void |
| 1775 | qla83xx_beacon_blink(struct scsi_qla_host *vha) |
| 1776 | { |
| 1777 | uint32_t led_select_value; |
| 1778 | struct qla_hw_data *ha = vha->hw; |
| 1779 | uint16_t led_cfg[6]; |
| 1780 | uint16_t orig_led_cfg[6]; |
Chad Dupuis | 0143d8b7 | 2012-08-22 14:21:11 -0400 | [diff] [blame] | 1781 | uint32_t led_10_value, led_43_value; |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 1782 | |
Joe Carnuccio | ecc89f2 | 2019-03-12 11:08:13 -0700 | [diff] [blame] | 1783 | if (!IS_QLA83XX(ha) && !IS_QLA81XX(ha) && !IS_QLA27XX(ha) && |
| 1784 | !IS_QLA28XX(ha)) |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 1785 | return; |
| 1786 | |
Chad Dupuis | 0143d8b7 | 2012-08-22 14:21:11 -0400 | [diff] [blame] | 1787 | if (!ha->beacon_blink_led) |
| 1788 | return; |
| 1789 | |
Joe Carnuccio | ecc89f2 | 2019-03-12 11:08:13 -0700 | [diff] [blame] | 1790 | if (IS_QLA27XX(ha) || IS_QLA28XX(ha)) { |
Nigel Kirkland | b21ba31 | 2015-04-09 14:59:58 -0400 | [diff] [blame] | 1791 | qla2x00_write_ram_word(vha, 0x1003, 0x40000230); |
| 1792 | qla2x00_write_ram_word(vha, 0x1004, 0x40000230); |
| 1793 | } else if (IS_QLA2031(ha)) { |
Chad Dupuis | 0143d8b7 | 2012-08-22 14:21:11 -0400 | [diff] [blame] | 1794 | led_select_value = qla83xx_select_led_port(ha); |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 1795 | |
Himanshu Madani | 90b604f | 2014-04-11 16:54:40 -0400 | [diff] [blame] | 1796 | qla83xx_wr_reg(vha, led_select_value, 0x40000230); |
| 1797 | qla83xx_wr_reg(vha, led_select_value + 4, 0x40000230); |
Chad Dupuis | 0143d8b7 | 2012-08-22 14:21:11 -0400 | [diff] [blame] | 1798 | } else if (IS_QLA8031(ha)) { |
| 1799 | led_select_value = qla83xx_select_led_port(ha); |
| 1800 | |
| 1801 | qla83xx_rd_reg(vha, led_select_value, &led_10_value); |
| 1802 | qla83xx_rd_reg(vha, led_select_value + 0x10, &led_43_value); |
| 1803 | qla83xx_wr_reg(vha, led_select_value, 0x01f44000); |
| 1804 | msleep(500); |
| 1805 | qla83xx_wr_reg(vha, led_select_value, 0x400001f4); |
| 1806 | msleep(1000); |
| 1807 | qla83xx_wr_reg(vha, led_select_value, led_10_value); |
| 1808 | qla83xx_wr_reg(vha, led_select_value + 0x10, led_43_value); |
| 1809 | } else if (IS_QLA81XX(ha)) { |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 1810 | int rval; |
| 1811 | |
| 1812 | /* Save Current */ |
| 1813 | rval = qla81xx_get_led_config(vha, orig_led_cfg); |
| 1814 | /* Do the blink */ |
| 1815 | if (rval == QLA_SUCCESS) { |
| 1816 | if (IS_QLA81XX(ha)) { |
| 1817 | led_cfg[0] = 0x4000; |
| 1818 | led_cfg[1] = 0x2000; |
| 1819 | led_cfg[2] = 0; |
| 1820 | led_cfg[3] = 0; |
| 1821 | led_cfg[4] = 0; |
| 1822 | led_cfg[5] = 0; |
| 1823 | } else { |
| 1824 | led_cfg[0] = 0x4000; |
| 1825 | led_cfg[1] = 0x4000; |
| 1826 | led_cfg[2] = 0x4000; |
| 1827 | led_cfg[3] = 0x2000; |
| 1828 | led_cfg[4] = 0; |
| 1829 | led_cfg[5] = 0x2000; |
| 1830 | } |
| 1831 | rval = qla81xx_set_led_config(vha, led_cfg); |
| 1832 | msleep(1000); |
| 1833 | if (IS_QLA81XX(ha)) { |
| 1834 | led_cfg[0] = 0x4000; |
| 1835 | led_cfg[1] = 0x2000; |
| 1836 | led_cfg[2] = 0; |
| 1837 | } else { |
| 1838 | led_cfg[0] = 0x4000; |
| 1839 | led_cfg[1] = 0x2000; |
| 1840 | led_cfg[2] = 0x4000; |
| 1841 | led_cfg[3] = 0x4000; |
| 1842 | led_cfg[4] = 0; |
| 1843 | led_cfg[5] = 0x2000; |
| 1844 | } |
| 1845 | rval = qla81xx_set_led_config(vha, led_cfg); |
| 1846 | } |
| 1847 | /* On exit, restore original (presumes no status change) */ |
| 1848 | qla81xx_set_led_config(vha, orig_led_cfg); |
| 1849 | } |
| 1850 | } |
| 1851 | |
andrew.vasquez@qlogic.com | f6df144 | 2006-01-31 16:05:07 -0800 | [diff] [blame] | 1852 | int |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 1853 | qla24xx_beacon_on(struct scsi_qla_host *vha) |
andrew.vasquez@qlogic.com | f6df144 | 2006-01-31 16:05:07 -0800 | [diff] [blame] | 1854 | { |
| 1855 | uint32_t gpio_data; |
| 1856 | unsigned long flags; |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 1857 | struct qla_hw_data *ha = vha->hw; |
andrew.vasquez@qlogic.com | f6df144 | 2006-01-31 16:05:07 -0800 | [diff] [blame] | 1858 | struct device_reg_24xx __iomem *reg = &ha->iobase->isp24; |
| 1859 | |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 1860 | if (IS_P3P_TYPE(ha)) |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 1861 | return QLA_SUCCESS; |
| 1862 | |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 1863 | if (IS_QLA8031(ha) || IS_QLA81XX(ha)) |
| 1864 | goto skip_gpio; /* let blink handle it */ |
| 1865 | |
andrew.vasquez@qlogic.com | f6df144 | 2006-01-31 16:05:07 -0800 | [diff] [blame] | 1866 | if (ha->beacon_blink_led == 0) { |
| 1867 | /* Enable firmware for update */ |
| 1868 | ha->fw_options[1] |= ADD_FO1_DISABLE_GPIO_LED_CTRL; |
| 1869 | |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 1870 | if (qla2x00_set_fw_options(vha, ha->fw_options) != QLA_SUCCESS) |
andrew.vasquez@qlogic.com | f6df144 | 2006-01-31 16:05:07 -0800 | [diff] [blame] | 1871 | return QLA_FUNCTION_FAILED; |
| 1872 | |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 1873 | if (qla2x00_get_fw_options(vha, ha->fw_options) != |
andrew.vasquez@qlogic.com | f6df144 | 2006-01-31 16:05:07 -0800 | [diff] [blame] | 1874 | QLA_SUCCESS) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1875 | ql_log(ql_log_warn, vha, 0x7009, |
andrew.vasquez@qlogic.com | f6df144 | 2006-01-31 16:05:07 -0800 | [diff] [blame] | 1876 | "Unable to update fw options (beacon on).\n"); |
| 1877 | return QLA_FUNCTION_FAILED; |
| 1878 | } |
| 1879 | |
Joe Carnuccio | ecc89f2 | 2019-03-12 11:08:13 -0700 | [diff] [blame] | 1880 | if (IS_QLA2031(ha) || IS_QLA27XX(ha) || IS_QLA28XX(ha)) |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 1881 | goto skip_gpio; |
| 1882 | |
andrew.vasquez@qlogic.com | f6df144 | 2006-01-31 16:05:07 -0800 | [diff] [blame] | 1883 | spin_lock_irqsave(&ha->hardware_lock, flags); |
| 1884 | gpio_data = RD_REG_DWORD(®->gpiod); |
| 1885 | |
| 1886 | /* Enable the gpio_data reg for update. */ |
| 1887 | gpio_data |= GPDX_LED_UPDATE_MASK; |
| 1888 | WRT_REG_DWORD(®->gpiod, gpio_data); |
| 1889 | RD_REG_DWORD(®->gpiod); |
| 1890 | |
| 1891 | spin_unlock_irqrestore(&ha->hardware_lock, flags); |
| 1892 | } |
| 1893 | |
| 1894 | /* So all colors blink together. */ |
| 1895 | ha->beacon_color_state = 0; |
| 1896 | |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 1897 | skip_gpio: |
andrew.vasquez@qlogic.com | f6df144 | 2006-01-31 16:05:07 -0800 | [diff] [blame] | 1898 | /* Let the per HBA timer kick off the blinking process. */ |
| 1899 | ha->beacon_blink_led = 1; |
| 1900 | |
| 1901 | return QLA_SUCCESS; |
| 1902 | } |
| 1903 | |
| 1904 | int |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 1905 | qla24xx_beacon_off(struct scsi_qla_host *vha) |
andrew.vasquez@qlogic.com | f6df144 | 2006-01-31 16:05:07 -0800 | [diff] [blame] | 1906 | { |
| 1907 | uint32_t gpio_data; |
| 1908 | unsigned long flags; |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 1909 | struct qla_hw_data *ha = vha->hw; |
andrew.vasquez@qlogic.com | f6df144 | 2006-01-31 16:05:07 -0800 | [diff] [blame] | 1910 | struct device_reg_24xx __iomem *reg = &ha->iobase->isp24; |
| 1911 | |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 1912 | if (IS_P3P_TYPE(ha)) |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 1913 | return QLA_SUCCESS; |
| 1914 | |
Quinn Tran | 4523502 | 2018-07-18 14:29:53 -0700 | [diff] [blame] | 1915 | if (!ha->flags.fw_started) |
| 1916 | return QLA_SUCCESS; |
| 1917 | |
andrew.vasquez@qlogic.com | f6df144 | 2006-01-31 16:05:07 -0800 | [diff] [blame] | 1918 | ha->beacon_blink_led = 0; |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 1919 | |
Joe Carnuccio | ecc89f2 | 2019-03-12 11:08:13 -0700 | [diff] [blame] | 1920 | if (IS_QLA2031(ha) || IS_QLA27XX(ha) || IS_QLA28XX(ha)) |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 1921 | goto set_fw_options; |
| 1922 | |
| 1923 | if (IS_QLA8031(ha) || IS_QLA81XX(ha)) |
| 1924 | return QLA_SUCCESS; |
| 1925 | |
andrew.vasquez@qlogic.com | f6df144 | 2006-01-31 16:05:07 -0800 | [diff] [blame] | 1926 | ha->beacon_color_state = QLA_LED_ALL_ON; |
| 1927 | |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 1928 | ha->isp_ops->beacon_blink(vha); /* Will flip to all off. */ |
andrew.vasquez@qlogic.com | f6df144 | 2006-01-31 16:05:07 -0800 | [diff] [blame] | 1929 | |
| 1930 | /* Give control back to firmware. */ |
| 1931 | spin_lock_irqsave(&ha->hardware_lock, flags); |
| 1932 | gpio_data = RD_REG_DWORD(®->gpiod); |
| 1933 | |
| 1934 | /* Disable the gpio_data reg for update. */ |
| 1935 | gpio_data &= ~GPDX_LED_UPDATE_MASK; |
| 1936 | WRT_REG_DWORD(®->gpiod, gpio_data); |
| 1937 | RD_REG_DWORD(®->gpiod); |
| 1938 | spin_unlock_irqrestore(&ha->hardware_lock, flags); |
| 1939 | |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 1940 | set_fw_options: |
andrew.vasquez@qlogic.com | f6df144 | 2006-01-31 16:05:07 -0800 | [diff] [blame] | 1941 | ha->fw_options[1] &= ~ADD_FO1_DISABLE_GPIO_LED_CTRL; |
| 1942 | |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 1943 | if (qla2x00_set_fw_options(vha, ha->fw_options) != QLA_SUCCESS) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1944 | ql_log(ql_log_warn, vha, 0x704d, |
| 1945 | "Unable to update fw options (beacon on).\n"); |
andrew.vasquez@qlogic.com | f6df144 | 2006-01-31 16:05:07 -0800 | [diff] [blame] | 1946 | return QLA_FUNCTION_FAILED; |
| 1947 | } |
| 1948 | |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 1949 | if (qla2x00_get_fw_options(vha, ha->fw_options) != QLA_SUCCESS) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1950 | ql_log(ql_log_warn, vha, 0x704e, |
| 1951 | "Unable to update fw options (beacon on).\n"); |
andrew.vasquez@qlogic.com | f6df144 | 2006-01-31 16:05:07 -0800 | [diff] [blame] | 1952 | return QLA_FUNCTION_FAILED; |
| 1953 | } |
| 1954 | |
| 1955 | return QLA_SUCCESS; |
| 1956 | } |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 1957 | |
| 1958 | |
| 1959 | /* |
| 1960 | * Flash support routines |
| 1961 | */ |
| 1962 | |
| 1963 | /** |
| 1964 | * qla2x00_flash_enable() - Setup flash for reading and writing. |
| 1965 | * @ha: HA context |
| 1966 | */ |
| 1967 | static void |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 1968 | qla2x00_flash_enable(struct qla_hw_data *ha) |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 1969 | { |
| 1970 | uint16_t data; |
| 1971 | struct device_reg_2xxx __iomem *reg = &ha->iobase->isp; |
| 1972 | |
| 1973 | data = RD_REG_WORD(®->ctrl_status); |
| 1974 | data |= CSR_FLASH_ENABLE; |
| 1975 | WRT_REG_WORD(®->ctrl_status, data); |
| 1976 | RD_REG_WORD(®->ctrl_status); /* PCI Posting. */ |
| 1977 | } |
| 1978 | |
| 1979 | /** |
| 1980 | * qla2x00_flash_disable() - Disable flash and allow RISC to run. |
| 1981 | * @ha: HA context |
| 1982 | */ |
| 1983 | static void |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 1984 | qla2x00_flash_disable(struct qla_hw_data *ha) |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 1985 | { |
| 1986 | uint16_t data; |
| 1987 | struct device_reg_2xxx __iomem *reg = &ha->iobase->isp; |
| 1988 | |
| 1989 | data = RD_REG_WORD(®->ctrl_status); |
| 1990 | data &= ~(CSR_FLASH_ENABLE); |
| 1991 | WRT_REG_WORD(®->ctrl_status, data); |
| 1992 | RD_REG_WORD(®->ctrl_status); /* PCI Posting. */ |
| 1993 | } |
| 1994 | |
| 1995 | /** |
| 1996 | * qla2x00_read_flash_byte() - Reads a byte from flash |
| 1997 | * @ha: HA context |
| 1998 | * @addr: Address in flash to read |
| 1999 | * |
| 2000 | * A word is read from the chip, but, only the lower byte is valid. |
| 2001 | * |
| 2002 | * Returns the byte read from flash @addr. |
| 2003 | */ |
| 2004 | static uint8_t |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 2005 | qla2x00_read_flash_byte(struct qla_hw_data *ha, uint32_t addr) |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 2006 | { |
| 2007 | uint16_t data; |
| 2008 | uint16_t bank_select; |
| 2009 | struct device_reg_2xxx __iomem *reg = &ha->iobase->isp; |
| 2010 | |
| 2011 | bank_select = RD_REG_WORD(®->ctrl_status); |
| 2012 | |
| 2013 | if (IS_QLA2322(ha) || IS_QLA6322(ha)) { |
| 2014 | /* Specify 64K address range: */ |
| 2015 | /* clear out Module Select and Flash Address bits [19:16]. */ |
| 2016 | bank_select &= ~0xf8; |
| 2017 | bank_select |= addr >> 12 & 0xf0; |
| 2018 | bank_select |= CSR_FLASH_64K_BANK; |
| 2019 | WRT_REG_WORD(®->ctrl_status, bank_select); |
| 2020 | RD_REG_WORD(®->ctrl_status); /* PCI Posting. */ |
| 2021 | |
| 2022 | WRT_REG_WORD(®->flash_address, (uint16_t)addr); |
| 2023 | data = RD_REG_WORD(®->flash_data); |
| 2024 | |
| 2025 | return (uint8_t)data; |
| 2026 | } |
| 2027 | |
| 2028 | /* Setup bit 16 of flash address. */ |
| 2029 | if ((addr & BIT_16) && ((bank_select & CSR_FLASH_64K_BANK) == 0)) { |
| 2030 | bank_select |= CSR_FLASH_64K_BANK; |
| 2031 | WRT_REG_WORD(®->ctrl_status, bank_select); |
| 2032 | RD_REG_WORD(®->ctrl_status); /* PCI Posting. */ |
| 2033 | } else if (((addr & BIT_16) == 0) && |
| 2034 | (bank_select & CSR_FLASH_64K_BANK)) { |
| 2035 | bank_select &= ~(CSR_FLASH_64K_BANK); |
| 2036 | WRT_REG_WORD(®->ctrl_status, bank_select); |
| 2037 | RD_REG_WORD(®->ctrl_status); /* PCI Posting. */ |
| 2038 | } |
| 2039 | |
| 2040 | /* Always perform IO mapped accesses to the FLASH registers. */ |
| 2041 | if (ha->pio_address) { |
| 2042 | uint16_t data2; |
| 2043 | |
Andrew Vasquez | 948882f | 2008-01-31 12:33:44 -0800 | [diff] [blame] | 2044 | WRT_REG_WORD_PIO(PIO_REG(ha, flash_address), (uint16_t)addr); |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 2045 | do { |
Andrew Vasquez | 948882f | 2008-01-31 12:33:44 -0800 | [diff] [blame] | 2046 | data = RD_REG_WORD_PIO(PIO_REG(ha, flash_data)); |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 2047 | barrier(); |
| 2048 | cpu_relax(); |
Andrew Vasquez | 948882f | 2008-01-31 12:33:44 -0800 | [diff] [blame] | 2049 | data2 = RD_REG_WORD_PIO(PIO_REG(ha, flash_data)); |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 2050 | } while (data != data2); |
| 2051 | } else { |
| 2052 | WRT_REG_WORD(®->flash_address, (uint16_t)addr); |
| 2053 | data = qla2x00_debounce_register(®->flash_data); |
| 2054 | } |
| 2055 | |
| 2056 | return (uint8_t)data; |
| 2057 | } |
| 2058 | |
| 2059 | /** |
| 2060 | * qla2x00_write_flash_byte() - Write a byte to flash |
| 2061 | * @ha: HA context |
| 2062 | * @addr: Address in flash to write |
| 2063 | * @data: Data to write |
| 2064 | */ |
| 2065 | static void |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 2066 | qla2x00_write_flash_byte(struct qla_hw_data *ha, uint32_t addr, uint8_t data) |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 2067 | { |
| 2068 | uint16_t bank_select; |
| 2069 | struct device_reg_2xxx __iomem *reg = &ha->iobase->isp; |
| 2070 | |
| 2071 | bank_select = RD_REG_WORD(®->ctrl_status); |
| 2072 | if (IS_QLA2322(ha) || IS_QLA6322(ha)) { |
| 2073 | /* Specify 64K address range: */ |
| 2074 | /* clear out Module Select and Flash Address bits [19:16]. */ |
| 2075 | bank_select &= ~0xf8; |
| 2076 | bank_select |= addr >> 12 & 0xf0; |
| 2077 | bank_select |= CSR_FLASH_64K_BANK; |
| 2078 | WRT_REG_WORD(®->ctrl_status, bank_select); |
| 2079 | RD_REG_WORD(®->ctrl_status); /* PCI Posting. */ |
| 2080 | |
| 2081 | WRT_REG_WORD(®->flash_address, (uint16_t)addr); |
| 2082 | RD_REG_WORD(®->ctrl_status); /* PCI Posting. */ |
| 2083 | WRT_REG_WORD(®->flash_data, (uint16_t)data); |
| 2084 | RD_REG_WORD(®->ctrl_status); /* PCI Posting. */ |
| 2085 | |
| 2086 | return; |
| 2087 | } |
| 2088 | |
| 2089 | /* Setup bit 16 of flash address. */ |
| 2090 | if ((addr & BIT_16) && ((bank_select & CSR_FLASH_64K_BANK) == 0)) { |
| 2091 | bank_select |= CSR_FLASH_64K_BANK; |
| 2092 | WRT_REG_WORD(®->ctrl_status, bank_select); |
| 2093 | RD_REG_WORD(®->ctrl_status); /* PCI Posting. */ |
| 2094 | } else if (((addr & BIT_16) == 0) && |
| 2095 | (bank_select & CSR_FLASH_64K_BANK)) { |
| 2096 | bank_select &= ~(CSR_FLASH_64K_BANK); |
| 2097 | WRT_REG_WORD(®->ctrl_status, bank_select); |
| 2098 | RD_REG_WORD(®->ctrl_status); /* PCI Posting. */ |
| 2099 | } |
| 2100 | |
| 2101 | /* Always perform IO mapped accesses to the FLASH registers. */ |
| 2102 | if (ha->pio_address) { |
Andrew Vasquez | 948882f | 2008-01-31 12:33:44 -0800 | [diff] [blame] | 2103 | WRT_REG_WORD_PIO(PIO_REG(ha, flash_address), (uint16_t)addr); |
| 2104 | WRT_REG_WORD_PIO(PIO_REG(ha, flash_data), (uint16_t)data); |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 2105 | } else { |
| 2106 | WRT_REG_WORD(®->flash_address, (uint16_t)addr); |
| 2107 | RD_REG_WORD(®->ctrl_status); /* PCI Posting. */ |
| 2108 | WRT_REG_WORD(®->flash_data, (uint16_t)data); |
| 2109 | RD_REG_WORD(®->ctrl_status); /* PCI Posting. */ |
| 2110 | } |
| 2111 | } |
| 2112 | |
| 2113 | /** |
| 2114 | * qla2x00_poll_flash() - Polls flash for completion. |
| 2115 | * @ha: HA context |
| 2116 | * @addr: Address in flash to poll |
| 2117 | * @poll_data: Data to be polled |
| 2118 | * @man_id: Flash manufacturer ID |
| 2119 | * @flash_id: Flash ID |
| 2120 | * |
| 2121 | * This function polls the device until bit 7 of what is read matches data |
| 2122 | * bit 7 or until data bit 5 becomes a 1. If that hapens, the flash ROM timed |
| 2123 | * out (a fatal error). The flash book recommeds reading bit 7 again after |
| 2124 | * reading bit 5 as a 1. |
| 2125 | * |
| 2126 | * Returns 0 on success, else non-zero. |
| 2127 | */ |
| 2128 | static int |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 2129 | qla2x00_poll_flash(struct qla_hw_data *ha, uint32_t addr, uint8_t poll_data, |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 2130 | uint8_t man_id, uint8_t flash_id) |
| 2131 | { |
| 2132 | int status; |
| 2133 | uint8_t flash_data; |
| 2134 | uint32_t cnt; |
| 2135 | |
| 2136 | status = 1; |
| 2137 | |
| 2138 | /* Wait for 30 seconds for command to finish. */ |
| 2139 | poll_data &= BIT_7; |
| 2140 | for (cnt = 3000000; cnt; cnt--) { |
| 2141 | flash_data = qla2x00_read_flash_byte(ha, addr); |
| 2142 | if ((flash_data & BIT_7) == poll_data) { |
| 2143 | status = 0; |
| 2144 | break; |
| 2145 | } |
| 2146 | |
| 2147 | if (man_id != 0x40 && man_id != 0xda) { |
| 2148 | if ((flash_data & BIT_5) && cnt > 2) |
| 2149 | cnt = 2; |
| 2150 | } |
| 2151 | udelay(10); |
| 2152 | barrier(); |
Andrew Vasquez | 40a2e34 | 2007-03-12 10:41:28 -0700 | [diff] [blame] | 2153 | cond_resched(); |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 2154 | } |
| 2155 | return status; |
| 2156 | } |
| 2157 | |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 2158 | /** |
| 2159 | * qla2x00_program_flash_address() - Programs a flash address |
| 2160 | * @ha: HA context |
| 2161 | * @addr: Address in flash to program |
| 2162 | * @data: Data to be written in flash |
| 2163 | * @man_id: Flash manufacturer ID |
| 2164 | * @flash_id: Flash ID |
| 2165 | * |
| 2166 | * Returns 0 on success, else non-zero. |
| 2167 | */ |
| 2168 | static int |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 2169 | qla2x00_program_flash_address(struct qla_hw_data *ha, uint32_t addr, |
| 2170 | uint8_t data, uint8_t man_id, uint8_t flash_id) |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 2171 | { |
| 2172 | /* Write Program Command Sequence. */ |
| 2173 | if (IS_OEM_001(ha)) { |
| 2174 | qla2x00_write_flash_byte(ha, 0xaaa, 0xaa); |
| 2175 | qla2x00_write_flash_byte(ha, 0x555, 0x55); |
| 2176 | qla2x00_write_flash_byte(ha, 0xaaa, 0xa0); |
| 2177 | qla2x00_write_flash_byte(ha, addr, data); |
| 2178 | } else { |
| 2179 | if (man_id == 0xda && flash_id == 0xc1) { |
| 2180 | qla2x00_write_flash_byte(ha, addr, data); |
| 2181 | if (addr & 0x7e) |
| 2182 | return 0; |
| 2183 | } else { |
| 2184 | qla2x00_write_flash_byte(ha, 0x5555, 0xaa); |
| 2185 | qla2x00_write_flash_byte(ha, 0x2aaa, 0x55); |
| 2186 | qla2x00_write_flash_byte(ha, 0x5555, 0xa0); |
| 2187 | qla2x00_write_flash_byte(ha, addr, data); |
| 2188 | } |
| 2189 | } |
| 2190 | |
| 2191 | udelay(150); |
| 2192 | |
| 2193 | /* Wait for write to complete. */ |
| 2194 | return qla2x00_poll_flash(ha, addr, data, man_id, flash_id); |
| 2195 | } |
| 2196 | |
| 2197 | /** |
| 2198 | * qla2x00_erase_flash() - Erase the flash. |
| 2199 | * @ha: HA context |
| 2200 | * @man_id: Flash manufacturer ID |
| 2201 | * @flash_id: Flash ID |
| 2202 | * |
| 2203 | * Returns 0 on success, else non-zero. |
| 2204 | */ |
| 2205 | static int |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 2206 | qla2x00_erase_flash(struct qla_hw_data *ha, uint8_t man_id, uint8_t flash_id) |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 2207 | { |
| 2208 | /* Individual Sector Erase Command Sequence */ |
| 2209 | if (IS_OEM_001(ha)) { |
| 2210 | qla2x00_write_flash_byte(ha, 0xaaa, 0xaa); |
| 2211 | qla2x00_write_flash_byte(ha, 0x555, 0x55); |
| 2212 | qla2x00_write_flash_byte(ha, 0xaaa, 0x80); |
| 2213 | qla2x00_write_flash_byte(ha, 0xaaa, 0xaa); |
| 2214 | qla2x00_write_flash_byte(ha, 0x555, 0x55); |
| 2215 | qla2x00_write_flash_byte(ha, 0xaaa, 0x10); |
| 2216 | } else { |
| 2217 | qla2x00_write_flash_byte(ha, 0x5555, 0xaa); |
| 2218 | qla2x00_write_flash_byte(ha, 0x2aaa, 0x55); |
| 2219 | qla2x00_write_flash_byte(ha, 0x5555, 0x80); |
| 2220 | qla2x00_write_flash_byte(ha, 0x5555, 0xaa); |
| 2221 | qla2x00_write_flash_byte(ha, 0x2aaa, 0x55); |
| 2222 | qla2x00_write_flash_byte(ha, 0x5555, 0x10); |
| 2223 | } |
| 2224 | |
| 2225 | udelay(150); |
| 2226 | |
| 2227 | /* Wait for erase to complete. */ |
| 2228 | return qla2x00_poll_flash(ha, 0x00, 0x80, man_id, flash_id); |
| 2229 | } |
| 2230 | |
| 2231 | /** |
| 2232 | * qla2x00_erase_flash_sector() - Erase a flash sector. |
| 2233 | * @ha: HA context |
| 2234 | * @addr: Flash sector to erase |
| 2235 | * @sec_mask: Sector address mask |
| 2236 | * @man_id: Flash manufacturer ID |
| 2237 | * @flash_id: Flash ID |
| 2238 | * |
| 2239 | * Returns 0 on success, else non-zero. |
| 2240 | */ |
| 2241 | static int |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 2242 | qla2x00_erase_flash_sector(struct qla_hw_data *ha, uint32_t addr, |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 2243 | uint32_t sec_mask, uint8_t man_id, uint8_t flash_id) |
| 2244 | { |
| 2245 | /* Individual Sector Erase Command Sequence */ |
| 2246 | qla2x00_write_flash_byte(ha, 0x5555, 0xaa); |
| 2247 | qla2x00_write_flash_byte(ha, 0x2aaa, 0x55); |
| 2248 | qla2x00_write_flash_byte(ha, 0x5555, 0x80); |
| 2249 | qla2x00_write_flash_byte(ha, 0x5555, 0xaa); |
| 2250 | qla2x00_write_flash_byte(ha, 0x2aaa, 0x55); |
| 2251 | if (man_id == 0x1f && flash_id == 0x13) |
| 2252 | qla2x00_write_flash_byte(ha, addr & sec_mask, 0x10); |
| 2253 | else |
| 2254 | qla2x00_write_flash_byte(ha, addr & sec_mask, 0x30); |
| 2255 | |
| 2256 | udelay(150); |
| 2257 | |
| 2258 | /* Wait for erase to complete. */ |
| 2259 | return qla2x00_poll_flash(ha, addr, 0x80, man_id, flash_id); |
| 2260 | } |
| 2261 | |
| 2262 | /** |
| 2263 | * qla2x00_get_flash_manufacturer() - Read manufacturer ID from flash chip. |
Bart Van Assche | 807eb90 | 2018-10-18 15:45:41 -0700 | [diff] [blame] | 2264 | * @ha: host adapter |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 2265 | * @man_id: Flash manufacturer ID |
| 2266 | * @flash_id: Flash ID |
| 2267 | */ |
| 2268 | static void |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 2269 | qla2x00_get_flash_manufacturer(struct qla_hw_data *ha, uint8_t *man_id, |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 2270 | uint8_t *flash_id) |
| 2271 | { |
| 2272 | qla2x00_write_flash_byte(ha, 0x5555, 0xaa); |
| 2273 | qla2x00_write_flash_byte(ha, 0x2aaa, 0x55); |
| 2274 | qla2x00_write_flash_byte(ha, 0x5555, 0x90); |
| 2275 | *man_id = qla2x00_read_flash_byte(ha, 0x0000); |
| 2276 | *flash_id = qla2x00_read_flash_byte(ha, 0x0001); |
| 2277 | qla2x00_write_flash_byte(ha, 0x5555, 0xaa); |
| 2278 | qla2x00_write_flash_byte(ha, 0x2aaa, 0x55); |
| 2279 | qla2x00_write_flash_byte(ha, 0x5555, 0xf0); |
| 2280 | } |
| 2281 | |
Andrew Vasquez | 30c4766 | 2007-01-29 10:22:21 -0800 | [diff] [blame] | 2282 | static void |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 2283 | qla2x00_read_flash_data(struct qla_hw_data *ha, uint8_t *tmp_buf, |
| 2284 | uint32_t saddr, uint32_t length) |
Andrew Vasquez | 30c4766 | 2007-01-29 10:22:21 -0800 | [diff] [blame] | 2285 | { |
| 2286 | struct device_reg_2xxx __iomem *reg = &ha->iobase->isp; |
| 2287 | uint32_t midpoint, ilength; |
| 2288 | uint8_t data; |
| 2289 | |
| 2290 | midpoint = length / 2; |
| 2291 | |
| 2292 | WRT_REG_WORD(®->nvram, 0); |
| 2293 | RD_REG_WORD(®->nvram); |
| 2294 | for (ilength = 0; ilength < length; saddr++, ilength++, tmp_buf++) { |
| 2295 | if (ilength == midpoint) { |
| 2296 | WRT_REG_WORD(®->nvram, NVR_SELECT); |
| 2297 | RD_REG_WORD(®->nvram); |
| 2298 | } |
| 2299 | data = qla2x00_read_flash_byte(ha, saddr); |
| 2300 | if (saddr % 100) |
| 2301 | udelay(10); |
| 2302 | *tmp_buf = data; |
Andrew Vasquez | 40a2e34 | 2007-03-12 10:41:28 -0700 | [diff] [blame] | 2303 | cond_resched(); |
Andrew Vasquez | 30c4766 | 2007-01-29 10:22:21 -0800 | [diff] [blame] | 2304 | } |
| 2305 | } |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 2306 | |
| 2307 | static inline void |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 2308 | qla2x00_suspend_hba(struct scsi_qla_host *vha) |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 2309 | { |
| 2310 | int cnt; |
| 2311 | unsigned long flags; |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 2312 | struct qla_hw_data *ha = vha->hw; |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 2313 | struct device_reg_2xxx __iomem *reg = &ha->iobase->isp; |
| 2314 | |
| 2315 | /* Suspend HBA. */ |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 2316 | scsi_block_requests(vha->host); |
Andrew Vasquez | fd34f55 | 2007-07-19 15:06:00 -0700 | [diff] [blame] | 2317 | ha->isp_ops->disable_intrs(ha); |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 2318 | set_bit(MBX_UPDATE_FLASH_ACTIVE, &ha->mbx_cmd_flags); |
| 2319 | |
| 2320 | /* Pause RISC. */ |
| 2321 | spin_lock_irqsave(&ha->hardware_lock, flags); |
| 2322 | WRT_REG_WORD(®->hccr, HCCR_PAUSE_RISC); |
| 2323 | RD_REG_WORD(®->hccr); |
| 2324 | if (IS_QLA2100(ha) || IS_QLA2200(ha) || IS_QLA2300(ha)) { |
| 2325 | for (cnt = 0; cnt < 30000; cnt++) { |
| 2326 | if ((RD_REG_WORD(®->hccr) & HCCR_RISC_PAUSE) != 0) |
| 2327 | break; |
| 2328 | udelay(100); |
| 2329 | } |
| 2330 | } else { |
| 2331 | udelay(10); |
| 2332 | } |
| 2333 | spin_unlock_irqrestore(&ha->hardware_lock, flags); |
| 2334 | } |
| 2335 | |
| 2336 | static inline void |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 2337 | qla2x00_resume_hba(struct scsi_qla_host *vha) |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 2338 | { |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 2339 | struct qla_hw_data *ha = vha->hw; |
| 2340 | |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 2341 | /* Resume HBA. */ |
| 2342 | clear_bit(MBX_UPDATE_FLASH_ACTIVE, &ha->mbx_cmd_flags); |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 2343 | set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags); |
| 2344 | qla2xxx_wake_dpc(vha); |
Lalit Chandivade | 2533cf6 | 2009-03-24 09:08:07 -0700 | [diff] [blame] | 2345 | qla2x00_wait_for_chip_reset(vha); |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 2346 | scsi_unblock_requests(vha->host); |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 2347 | } |
| 2348 | |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 2349 | void * |
| 2350 | qla2x00_read_optrom_data(struct scsi_qla_host *vha, void *buf, |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 2351 | uint32_t offset, uint32_t length) |
| 2352 | { |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 2353 | uint32_t addr, midpoint; |
| 2354 | uint8_t *data; |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 2355 | struct qla_hw_data *ha = vha->hw; |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 2356 | struct device_reg_2xxx __iomem *reg = &ha->iobase->isp; |
| 2357 | |
| 2358 | /* Suspend HBA. */ |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 2359 | qla2x00_suspend_hba(vha); |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 2360 | |
| 2361 | /* Go with read. */ |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 2362 | midpoint = ha->optrom_size / 2; |
| 2363 | |
| 2364 | qla2x00_flash_enable(ha); |
| 2365 | WRT_REG_WORD(®->nvram, 0); |
| 2366 | RD_REG_WORD(®->nvram); /* PCI Posting. */ |
| 2367 | for (addr = offset, data = buf; addr < length; addr++, data++) { |
| 2368 | if (addr == midpoint) { |
| 2369 | WRT_REG_WORD(®->nvram, NVR_SELECT); |
| 2370 | RD_REG_WORD(®->nvram); /* PCI Posting. */ |
| 2371 | } |
| 2372 | |
| 2373 | *data = qla2x00_read_flash_byte(ha, addr); |
| 2374 | } |
| 2375 | qla2x00_flash_disable(ha); |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 2376 | |
| 2377 | /* Resume HBA. */ |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 2378 | qla2x00_resume_hba(vha); |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 2379 | |
| 2380 | return buf; |
| 2381 | } |
| 2382 | |
| 2383 | int |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 2384 | qla2x00_write_optrom_data(struct scsi_qla_host *vha, void *buf, |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 2385 | uint32_t offset, uint32_t length) |
| 2386 | { |
| 2387 | |
| 2388 | int rval; |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 2389 | uint8_t man_id, flash_id, sec_number, *data; |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 2390 | uint16_t wd; |
| 2391 | uint32_t addr, liter, sec_mask, rest_addr; |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 2392 | struct qla_hw_data *ha = vha->hw; |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 2393 | struct device_reg_2xxx __iomem *reg = &ha->iobase->isp; |
| 2394 | |
| 2395 | /* Suspend HBA. */ |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 2396 | qla2x00_suspend_hba(vha); |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 2397 | |
| 2398 | rval = QLA_SUCCESS; |
| 2399 | sec_number = 0; |
| 2400 | |
| 2401 | /* Reset ISP chip. */ |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 2402 | WRT_REG_WORD(®->ctrl_status, CSR_ISP_SOFT_RESET); |
| 2403 | pci_read_config_word(ha->pdev, PCI_COMMAND, &wd); |
| 2404 | |
| 2405 | /* Go with write. */ |
| 2406 | qla2x00_flash_enable(ha); |
| 2407 | do { /* Loop once to provide quick error exit */ |
| 2408 | /* Structure of flash memory based on manufacturer */ |
| 2409 | if (IS_OEM_001(ha)) { |
| 2410 | /* OEM variant with special flash part. */ |
| 2411 | man_id = flash_id = 0; |
| 2412 | rest_addr = 0xffff; |
| 2413 | sec_mask = 0x10000; |
| 2414 | goto update_flash; |
| 2415 | } |
| 2416 | qla2x00_get_flash_manufacturer(ha, &man_id, &flash_id); |
| 2417 | switch (man_id) { |
| 2418 | case 0x20: /* ST flash. */ |
| 2419 | if (flash_id == 0xd2 || flash_id == 0xe3) { |
| 2420 | /* |
| 2421 | * ST m29w008at part - 64kb sector size with |
| 2422 | * 32kb,8kb,8kb,16kb sectors at memory address |
| 2423 | * 0xf0000. |
| 2424 | */ |
| 2425 | rest_addr = 0xffff; |
| 2426 | sec_mask = 0x10000; |
Chad Dupuis | f73cb69 | 2014-02-26 04:15:06 -0500 | [diff] [blame] | 2427 | break; |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 2428 | } |
| 2429 | /* |
| 2430 | * ST m29w010b part - 16kb sector size |
| 2431 | * Default to 16kb sectors |
| 2432 | */ |
| 2433 | rest_addr = 0x3fff; |
| 2434 | sec_mask = 0x1c000; |
| 2435 | break; |
| 2436 | case 0x40: /* Mostel flash. */ |
| 2437 | /* Mostel v29c51001 part - 512 byte sector size. */ |
| 2438 | rest_addr = 0x1ff; |
| 2439 | sec_mask = 0x1fe00; |
| 2440 | break; |
| 2441 | case 0xbf: /* SST flash. */ |
| 2442 | /* SST39sf10 part - 4kb sector size. */ |
| 2443 | rest_addr = 0xfff; |
| 2444 | sec_mask = 0x1f000; |
| 2445 | break; |
| 2446 | case 0xda: /* Winbond flash. */ |
| 2447 | /* Winbond W29EE011 part - 256 byte sector size. */ |
| 2448 | rest_addr = 0x7f; |
| 2449 | sec_mask = 0x1ff80; |
| 2450 | break; |
| 2451 | case 0xc2: /* Macronix flash. */ |
| 2452 | /* 64k sector size. */ |
| 2453 | if (flash_id == 0x38 || flash_id == 0x4f) { |
| 2454 | rest_addr = 0xffff; |
| 2455 | sec_mask = 0x10000; |
| 2456 | break; |
| 2457 | } |
| 2458 | /* Fall through... */ |
| 2459 | |
| 2460 | case 0x1f: /* Atmel flash. */ |
| 2461 | /* 512k sector size. */ |
| 2462 | if (flash_id == 0x13) { |
| 2463 | rest_addr = 0x7fffffff; |
| 2464 | sec_mask = 0x80000000; |
| 2465 | break; |
| 2466 | } |
| 2467 | /* Fall through... */ |
| 2468 | |
| 2469 | case 0x01: /* AMD flash. */ |
| 2470 | if (flash_id == 0x38 || flash_id == 0x40 || |
| 2471 | flash_id == 0x4f) { |
| 2472 | /* Am29LV081 part - 64kb sector size. */ |
| 2473 | /* Am29LV002BT part - 64kb sector size. */ |
| 2474 | rest_addr = 0xffff; |
| 2475 | sec_mask = 0x10000; |
| 2476 | break; |
| 2477 | } else if (flash_id == 0x3e) { |
| 2478 | /* |
| 2479 | * Am29LV008b part - 64kb sector size with |
| 2480 | * 32kb,8kb,8kb,16kb sector at memory address |
| 2481 | * h0xf0000. |
| 2482 | */ |
| 2483 | rest_addr = 0xffff; |
| 2484 | sec_mask = 0x10000; |
| 2485 | break; |
| 2486 | } else if (flash_id == 0x20 || flash_id == 0x6e) { |
| 2487 | /* |
| 2488 | * Am29LV010 part or AM29f010 - 16kb sector |
| 2489 | * size. |
| 2490 | */ |
| 2491 | rest_addr = 0x3fff; |
| 2492 | sec_mask = 0x1c000; |
| 2493 | break; |
| 2494 | } else if (flash_id == 0x6d) { |
| 2495 | /* Am29LV001 part - 8kb sector size. */ |
| 2496 | rest_addr = 0x1fff; |
| 2497 | sec_mask = 0x1e000; |
| 2498 | break; |
| 2499 | } |
Bart Van Assche | 8188186 | 2017-12-07 16:02:46 -0800 | [diff] [blame] | 2500 | /* fall through */ |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 2501 | default: |
| 2502 | /* Default to 16 kb sector size. */ |
| 2503 | rest_addr = 0x3fff; |
| 2504 | sec_mask = 0x1c000; |
| 2505 | break; |
| 2506 | } |
| 2507 | |
| 2508 | update_flash: |
| 2509 | if (IS_QLA2322(ha) || IS_QLA6322(ha)) { |
| 2510 | if (qla2x00_erase_flash(ha, man_id, flash_id)) { |
| 2511 | rval = QLA_FUNCTION_FAILED; |
| 2512 | break; |
| 2513 | } |
| 2514 | } |
| 2515 | |
| 2516 | for (addr = offset, liter = 0; liter < length; liter++, |
| 2517 | addr++) { |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 2518 | data = buf + liter; |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 2519 | /* Are we at the beginning of a sector? */ |
| 2520 | if ((addr & rest_addr) == 0) { |
| 2521 | if (IS_QLA2322(ha) || IS_QLA6322(ha)) { |
| 2522 | if (addr >= 0x10000UL) { |
| 2523 | if (((addr >> 12) & 0xf0) && |
| 2524 | ((man_id == 0x01 && |
| 2525 | flash_id == 0x3e) || |
| 2526 | (man_id == 0x20 && |
| 2527 | flash_id == 0xd2))) { |
| 2528 | sec_number++; |
| 2529 | if (sec_number == 1) { |
| 2530 | rest_addr = |
| 2531 | 0x7fff; |
| 2532 | sec_mask = |
| 2533 | 0x18000; |
| 2534 | } else if ( |
| 2535 | sec_number == 2 || |
| 2536 | sec_number == 3) { |
| 2537 | rest_addr = |
| 2538 | 0x1fff; |
| 2539 | sec_mask = |
| 2540 | 0x1e000; |
| 2541 | } else if ( |
| 2542 | sec_number == 4) { |
| 2543 | rest_addr = |
| 2544 | 0x3fff; |
| 2545 | sec_mask = |
| 2546 | 0x1c000; |
| 2547 | } |
| 2548 | } |
| 2549 | } |
| 2550 | } else if (addr == ha->optrom_size / 2) { |
| 2551 | WRT_REG_WORD(®->nvram, NVR_SELECT); |
| 2552 | RD_REG_WORD(®->nvram); |
| 2553 | } |
| 2554 | |
| 2555 | if (flash_id == 0xda && man_id == 0xc1) { |
| 2556 | qla2x00_write_flash_byte(ha, 0x5555, |
| 2557 | 0xaa); |
| 2558 | qla2x00_write_flash_byte(ha, 0x2aaa, |
| 2559 | 0x55); |
| 2560 | qla2x00_write_flash_byte(ha, 0x5555, |
| 2561 | 0xa0); |
| 2562 | } else if (!IS_QLA2322(ha) && !IS_QLA6322(ha)) { |
| 2563 | /* Then erase it */ |
| 2564 | if (qla2x00_erase_flash_sector(ha, |
| 2565 | addr, sec_mask, man_id, |
| 2566 | flash_id)) { |
| 2567 | rval = QLA_FUNCTION_FAILED; |
| 2568 | break; |
| 2569 | } |
| 2570 | if (man_id == 0x01 && flash_id == 0x6d) |
| 2571 | sec_number++; |
| 2572 | } |
| 2573 | } |
| 2574 | |
| 2575 | if (man_id == 0x01 && flash_id == 0x6d) { |
| 2576 | if (sec_number == 1 && |
| 2577 | addr == (rest_addr - 1)) { |
| 2578 | rest_addr = 0x0fff; |
| 2579 | sec_mask = 0x1f000; |
| 2580 | } else if (sec_number == 3 && (addr & 0x7ffe)) { |
| 2581 | rest_addr = 0x3fff; |
| 2582 | sec_mask = 0x1c000; |
| 2583 | } |
| 2584 | } |
| 2585 | |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 2586 | if (qla2x00_program_flash_address(ha, addr, *data, |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 2587 | man_id, flash_id)) { |
| 2588 | rval = QLA_FUNCTION_FAILED; |
| 2589 | break; |
| 2590 | } |
Andrew Vasquez | 40a2e34 | 2007-03-12 10:41:28 -0700 | [diff] [blame] | 2591 | cond_resched(); |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 2592 | } |
| 2593 | } while (0); |
| 2594 | qla2x00_flash_disable(ha); |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 2595 | |
| 2596 | /* Resume HBA. */ |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 2597 | qla2x00_resume_hba(vha); |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 2598 | |
| 2599 | return rval; |
| 2600 | } |
| 2601 | |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 2602 | void * |
| 2603 | qla24xx_read_optrom_data(struct scsi_qla_host *vha, void *buf, |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 2604 | uint32_t offset, uint32_t length) |
| 2605 | { |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 2606 | struct qla_hw_data *ha = vha->hw; |
| 2607 | |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 2608 | /* Suspend HBA. */ |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 2609 | scsi_block_requests(vha->host); |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 2610 | set_bit(MBX_UPDATE_FLASH_ACTIVE, &ha->mbx_cmd_flags); |
| 2611 | |
| 2612 | /* Go with read. */ |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 2613 | qla24xx_read_flash_data(vha, (void *)buf, offset >> 2, length >> 2); |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 2614 | |
| 2615 | /* Resume HBA. */ |
| 2616 | clear_bit(MBX_UPDATE_FLASH_ACTIVE, &ha->mbx_cmd_flags); |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 2617 | scsi_unblock_requests(vha->host); |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 2618 | |
| 2619 | return buf; |
| 2620 | } |
| 2621 | |
Michael Hernandez | 3f006ac | 2019-03-12 11:08:22 -0700 | [diff] [blame] | 2622 | static int |
| 2623 | qla28xx_extract_sfub_and_verify(struct scsi_qla_host *vha, uint32_t *buf, |
| 2624 | uint32_t len, uint32_t buf_size_without_sfub, uint8_t *sfub_buf) |
| 2625 | { |
| 2626 | uint32_t *p, check_sum = 0; |
| 2627 | int i; |
| 2628 | |
| 2629 | p = buf + buf_size_without_sfub; |
| 2630 | |
| 2631 | /* Extract SFUB from end of file */ |
| 2632 | memcpy(sfub_buf, (uint8_t *)p, |
| 2633 | sizeof(struct secure_flash_update_block)); |
| 2634 | |
| 2635 | for (i = 0; i < (sizeof(struct secure_flash_update_block) >> 2); i++) |
| 2636 | check_sum += p[i]; |
| 2637 | |
| 2638 | check_sum = (~check_sum) + 1; |
| 2639 | |
| 2640 | if (check_sum != p[i]) { |
| 2641 | ql_log(ql_log_warn, vha, 0x7097, |
| 2642 | "SFUB checksum failed, 0x%x, 0x%x\n", |
| 2643 | check_sum, p[i]); |
| 2644 | return QLA_COMMAND_ERROR; |
| 2645 | } |
| 2646 | |
| 2647 | return QLA_SUCCESS; |
| 2648 | } |
| 2649 | |
| 2650 | static int |
| 2651 | qla28xx_get_flash_region(struct scsi_qla_host *vha, uint32_t start, |
| 2652 | struct qla_flt_region *region) |
| 2653 | { |
| 2654 | struct qla_hw_data *ha = vha->hw; |
| 2655 | struct qla_flt_header *flt; |
| 2656 | struct qla_flt_region *flt_reg; |
| 2657 | uint16_t cnt; |
| 2658 | int rval = QLA_FUNCTION_FAILED; |
| 2659 | |
| 2660 | if (!ha->flt) |
| 2661 | return QLA_FUNCTION_FAILED; |
| 2662 | |
| 2663 | flt = (struct qla_flt_header *)ha->flt; |
| 2664 | flt_reg = (struct qla_flt_region *)&flt[1]; |
| 2665 | cnt = le16_to_cpu(flt->length) / sizeof(struct qla_flt_region); |
| 2666 | |
| 2667 | for (; cnt; cnt--, flt_reg++) { |
| 2668 | if (flt_reg->start == start) { |
| 2669 | memcpy((uint8_t *)region, flt_reg, |
| 2670 | sizeof(struct qla_flt_region)); |
| 2671 | rval = QLA_SUCCESS; |
| 2672 | break; |
| 2673 | } |
| 2674 | } |
| 2675 | |
| 2676 | return rval; |
| 2677 | } |
| 2678 | |
| 2679 | static int |
| 2680 | qla28xx_write_flash_data(scsi_qla_host_t *vha, uint32_t *dwptr, uint32_t faddr, |
| 2681 | uint32_t dwords) |
| 2682 | { |
| 2683 | struct qla_hw_data *ha = vha->hw; |
| 2684 | ulong liter; |
| 2685 | ulong dburst = OPTROM_BURST_DWORDS; /* burst size in dwords */ |
| 2686 | uint32_t sec_mask, rest_addr, fdata; |
| 2687 | void *optrom = NULL; |
| 2688 | dma_addr_t optrom_dma; |
| 2689 | int rval; |
| 2690 | struct secure_flash_update_block *sfub; |
| 2691 | dma_addr_t sfub_dma; |
| 2692 | uint32_t offset = faddr << 2; |
| 2693 | uint32_t buf_size_without_sfub = 0; |
| 2694 | struct qla_flt_region region; |
| 2695 | bool reset_to_rom = false; |
| 2696 | uint32_t risc_size, risc_attr = 0; |
| 2697 | uint32_t *fw_array = NULL; |
| 2698 | |
| 2699 | /* Retrieve region info - must be a start address passed in */ |
| 2700 | rval = qla28xx_get_flash_region(vha, offset, ®ion); |
| 2701 | |
| 2702 | if (rval != QLA_SUCCESS) { |
| 2703 | ql_log(ql_log_warn, vha, 0xffff, |
| 2704 | "Invalid address %x - not a region start address\n", |
| 2705 | offset); |
| 2706 | goto done; |
| 2707 | } |
| 2708 | |
| 2709 | /* Allocate dma buffer for burst write */ |
| 2710 | optrom = dma_alloc_coherent(&ha->pdev->dev, OPTROM_BURST_SIZE, |
| 2711 | &optrom_dma, GFP_KERNEL); |
| 2712 | if (!optrom) { |
| 2713 | ql_log(ql_log_warn, vha, 0x7095, |
| 2714 | "Failed allocate burst (%x bytes)\n", OPTROM_BURST_SIZE); |
| 2715 | rval = QLA_COMMAND_ERROR; |
| 2716 | goto done; |
| 2717 | } |
| 2718 | |
| 2719 | /* |
| 2720 | * If adapter supports secure flash and region is secure |
| 2721 | * extract secure flash update block (SFUB) and verify |
| 2722 | */ |
| 2723 | if (ha->flags.secure_adapter && region.attribute) { |
| 2724 | |
| 2725 | ql_log(ql_log_warn + ql_dbg_verbose, vha, 0xffff, |
| 2726 | "Region %x is secure\n", region.code); |
| 2727 | |
Michael Hernandez | a530bf6 | 2019-12-03 14:36:56 -0800 | [diff] [blame] | 2728 | switch (region.code) { |
| 2729 | case FLT_REG_FW: |
| 2730 | case FLT_REG_FW_SEC_27XX: |
| 2731 | case FLT_REG_MPI_PRI_28XX: |
| 2732 | case FLT_REG_MPI_SEC_28XX: |
Michael Hernandez | 3f006ac | 2019-03-12 11:08:22 -0700 | [diff] [blame] | 2733 | fw_array = dwptr; |
| 2734 | |
| 2735 | /* 1st fw array */ |
| 2736 | risc_size = be32_to_cpu(fw_array[3]); |
| 2737 | risc_attr = be32_to_cpu(fw_array[9]); |
| 2738 | |
| 2739 | buf_size_without_sfub = risc_size; |
| 2740 | fw_array += risc_size; |
| 2741 | |
| 2742 | /* 2nd fw array */ |
| 2743 | risc_size = be32_to_cpu(fw_array[3]); |
| 2744 | |
| 2745 | buf_size_without_sfub += risc_size; |
| 2746 | fw_array += risc_size; |
| 2747 | |
| 2748 | /* 1st dump template */ |
| 2749 | risc_size = be32_to_cpu(fw_array[2]); |
| 2750 | |
| 2751 | /* skip header and ignore checksum */ |
| 2752 | buf_size_without_sfub += risc_size; |
| 2753 | fw_array += risc_size; |
| 2754 | |
| 2755 | if (risc_attr & BIT_9) { |
| 2756 | /* 2nd dump template */ |
| 2757 | risc_size = be32_to_cpu(fw_array[2]); |
| 2758 | |
| 2759 | /* skip header and ignore checksum */ |
| 2760 | buf_size_without_sfub += risc_size; |
| 2761 | fw_array += risc_size; |
| 2762 | } |
Michael Hernandez | a530bf6 | 2019-12-03 14:36:56 -0800 | [diff] [blame] | 2763 | break; |
| 2764 | |
| 2765 | case FLT_REG_PEP_PRI_28XX: |
| 2766 | case FLT_REG_PEP_SEC_28XX: |
| 2767 | fw_array = dwptr; |
| 2768 | |
| 2769 | /* 1st fw array */ |
| 2770 | risc_size = be32_to_cpu(fw_array[3]); |
| 2771 | risc_attr = be32_to_cpu(fw_array[9]); |
| 2772 | |
| 2773 | buf_size_without_sfub = risc_size; |
| 2774 | fw_array += risc_size; |
| 2775 | break; |
| 2776 | |
| 2777 | default: |
| 2778 | ql_log(ql_log_warn + ql_dbg_verbose, vha, |
| 2779 | 0xffff, "Secure region %x not supported\n", |
Michael Hernandez | 3f006ac | 2019-03-12 11:08:22 -0700 | [diff] [blame] | 2780 | region.code); |
| 2781 | rval = QLA_COMMAND_ERROR; |
| 2782 | goto done; |
| 2783 | } |
| 2784 | |
| 2785 | sfub = dma_alloc_coherent(&ha->pdev->dev, |
| 2786 | sizeof(struct secure_flash_update_block), &sfub_dma, |
| 2787 | GFP_KERNEL); |
| 2788 | if (!sfub) { |
| 2789 | ql_log(ql_log_warn, vha, 0xffff, |
| 2790 | "Unable to allocate memory for SFUB\n"); |
| 2791 | rval = QLA_COMMAND_ERROR; |
| 2792 | goto done; |
| 2793 | } |
| 2794 | |
| 2795 | rval = qla28xx_extract_sfub_and_verify(vha, dwptr, dwords, |
| 2796 | buf_size_without_sfub, (uint8_t *)sfub); |
| 2797 | |
| 2798 | if (rval != QLA_SUCCESS) |
| 2799 | goto done; |
| 2800 | |
| 2801 | ql_log(ql_log_warn + ql_dbg_verbose, vha, 0xffff, |
| 2802 | "SFUB extract and verify successful\n"); |
| 2803 | } |
| 2804 | |
| 2805 | rest_addr = (ha->fdt_block_size >> 2) - 1; |
| 2806 | sec_mask = ~rest_addr; |
| 2807 | |
| 2808 | /* Lock semaphore */ |
| 2809 | rval = qla81xx_fac_semaphore_access(vha, FAC_SEMAPHORE_LOCK); |
| 2810 | if (rval != QLA_SUCCESS) { |
| 2811 | ql_log(ql_log_warn, vha, 0xffff, |
| 2812 | "Unable to lock flash semaphore."); |
| 2813 | goto done; |
| 2814 | } |
| 2815 | |
| 2816 | ql_log(ql_log_warn + ql_dbg_verbose, vha, 0x7095, |
| 2817 | "Unprotect flash...\n"); |
| 2818 | rval = qla24xx_unprotect_flash(vha); |
| 2819 | if (rval) { |
| 2820 | qla81xx_fac_semaphore_access(vha, FAC_SEMAPHORE_UNLOCK); |
| 2821 | ql_log(ql_log_warn, vha, 0x7096, "Failed unprotect flash\n"); |
| 2822 | goto done; |
| 2823 | } |
| 2824 | |
| 2825 | for (liter = 0; liter < dwords; liter++, faddr++) { |
| 2826 | fdata = (faddr & sec_mask) << 2; |
| 2827 | |
| 2828 | /* If start of sector */ |
| 2829 | if (!(faddr & rest_addr)) { |
| 2830 | ql_log(ql_log_warn + ql_dbg_verbose, vha, 0x7095, |
| 2831 | "Erase sector %#x...\n", faddr); |
| 2832 | rval = qla24xx_erase_sector(vha, fdata); |
| 2833 | if (rval) { |
| 2834 | ql_dbg(ql_dbg_user, vha, 0x7007, |
| 2835 | "Failed erase sector %#x\n", faddr); |
| 2836 | goto write_protect; |
| 2837 | } |
| 2838 | } |
| 2839 | } |
| 2840 | |
| 2841 | if (ha->flags.secure_adapter) { |
| 2842 | /* |
| 2843 | * If adapter supports secure flash but FW doesn't, |
| 2844 | * disable write protect, release semaphore and reset |
| 2845 | * chip to execute ROM code in order to update region securely |
| 2846 | */ |
| 2847 | if (!ha->flags.secure_fw) { |
| 2848 | ql_log(ql_log_warn + ql_dbg_verbose, vha, 0xffff, |
| 2849 | "Disable Write and Release Semaphore."); |
| 2850 | rval = qla24xx_protect_flash(vha); |
| 2851 | if (rval != QLA_SUCCESS) { |
| 2852 | qla81xx_fac_semaphore_access(vha, |
| 2853 | FAC_SEMAPHORE_UNLOCK); |
| 2854 | ql_log(ql_log_warn, vha, 0xffff, |
| 2855 | "Unable to protect flash."); |
| 2856 | goto done; |
| 2857 | } |
| 2858 | |
| 2859 | ql_log(ql_log_warn + ql_dbg_verbose, vha, 0xffff, |
| 2860 | "Reset chip to ROM."); |
| 2861 | set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags); |
| 2862 | set_bit(ISP_ABORT_TO_ROM, &vha->dpc_flags); |
| 2863 | qla2xxx_wake_dpc(vha); |
| 2864 | rval = qla2x00_wait_for_chip_reset(vha); |
| 2865 | if (rval != QLA_SUCCESS) { |
| 2866 | ql_log(ql_log_warn, vha, 0xffff, |
| 2867 | "Unable to reset to ROM code."); |
| 2868 | goto done; |
| 2869 | } |
| 2870 | reset_to_rom = true; |
| 2871 | ha->flags.fac_supported = 0; |
| 2872 | |
| 2873 | ql_log(ql_log_warn + ql_dbg_verbose, vha, 0xffff, |
| 2874 | "Lock Semaphore"); |
| 2875 | rval = qla2xxx_write_remote_register(vha, |
| 2876 | FLASH_SEMAPHORE_REGISTER_ADDR, 0x00020002); |
| 2877 | if (rval != QLA_SUCCESS) { |
| 2878 | ql_log(ql_log_warn, vha, 0xffff, |
| 2879 | "Unable to lock flash semaphore."); |
| 2880 | goto done; |
| 2881 | } |
| 2882 | |
| 2883 | /* Unprotect flash */ |
| 2884 | ql_log(ql_log_warn + ql_dbg_verbose, vha, 0xffff, |
| 2885 | "Enable Write."); |
| 2886 | rval = qla2x00_write_ram_word(vha, 0x7ffd0101, 0); |
| 2887 | if (rval) { |
| 2888 | ql_log(ql_log_warn, vha, 0x7096, |
| 2889 | "Failed unprotect flash\n"); |
| 2890 | goto done; |
| 2891 | } |
| 2892 | } |
| 2893 | |
| 2894 | /* If region is secure, send Secure Flash MB Cmd */ |
| 2895 | if (region.attribute && buf_size_without_sfub) { |
| 2896 | ql_log(ql_log_warn + ql_dbg_verbose, vha, 0xffff, |
| 2897 | "Sending Secure Flash MB Cmd\n"); |
| 2898 | rval = qla28xx_secure_flash_update(vha, 0, region.code, |
| 2899 | buf_size_without_sfub, sfub_dma, |
Michael Hernandez | c868907 | 2019-12-03 14:36:57 -0800 | [diff] [blame^] | 2900 | sizeof(struct secure_flash_update_block) >> 2); |
Michael Hernandez | 3f006ac | 2019-03-12 11:08:22 -0700 | [diff] [blame] | 2901 | if (rval != QLA_SUCCESS) { |
| 2902 | ql_log(ql_log_warn, vha, 0xffff, |
| 2903 | "Secure Flash MB Cmd failed %x.", rval); |
| 2904 | goto write_protect; |
| 2905 | } |
| 2906 | } |
| 2907 | |
| 2908 | } |
| 2909 | |
| 2910 | /* re-init flash offset */ |
| 2911 | faddr = offset >> 2; |
| 2912 | |
| 2913 | for (liter = 0; liter < dwords; liter++, faddr++, dwptr++) { |
| 2914 | fdata = (faddr & sec_mask) << 2; |
| 2915 | |
| 2916 | /* If smaller than a burst remaining */ |
| 2917 | if (dwords - liter < dburst) |
| 2918 | dburst = dwords - liter; |
| 2919 | |
| 2920 | /* Copy to dma buffer */ |
| 2921 | memcpy(optrom, dwptr, dburst << 2); |
| 2922 | |
| 2923 | /* Burst write */ |
| 2924 | ql_log(ql_log_warn + ql_dbg_verbose, vha, 0x7095, |
| 2925 | "Write burst (%#lx dwords)...\n", dburst); |
| 2926 | rval = qla2x00_load_ram(vha, optrom_dma, |
| 2927 | flash_data_addr(ha, faddr), dburst); |
| 2928 | if (rval != QLA_SUCCESS) { |
| 2929 | ql_log(ql_log_warn, vha, 0x7097, |
| 2930 | "Failed burst write at %x (%p/%#llx)...\n", |
| 2931 | flash_data_addr(ha, faddr), optrom, |
| 2932 | (u64)optrom_dma); |
| 2933 | break; |
| 2934 | } |
| 2935 | |
| 2936 | liter += dburst - 1; |
| 2937 | faddr += dburst - 1; |
| 2938 | dwptr += dburst - 1; |
| 2939 | continue; |
| 2940 | } |
| 2941 | |
| 2942 | write_protect: |
| 2943 | ql_log(ql_log_warn + ql_dbg_verbose, vha, 0x7095, |
| 2944 | "Protect flash...\n"); |
| 2945 | rval = qla24xx_protect_flash(vha); |
| 2946 | if (rval) { |
| 2947 | qla81xx_fac_semaphore_access(vha, FAC_SEMAPHORE_UNLOCK); |
| 2948 | ql_log(ql_log_warn, vha, 0x7099, |
| 2949 | "Failed protect flash\n"); |
| 2950 | } |
| 2951 | |
| 2952 | if (reset_to_rom == true) { |
| 2953 | /* Schedule DPC to restart the RISC */ |
| 2954 | set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags); |
| 2955 | qla2xxx_wake_dpc(vha); |
| 2956 | |
| 2957 | rval = qla2x00_wait_for_hba_online(vha); |
| 2958 | if (rval != QLA_SUCCESS) |
| 2959 | ql_log(ql_log_warn, vha, 0xffff, |
| 2960 | "Adapter did not come out of reset\n"); |
| 2961 | } |
| 2962 | |
| 2963 | done: |
| 2964 | if (optrom) |
| 2965 | dma_free_coherent(&ha->pdev->dev, |
| 2966 | OPTROM_BURST_SIZE, optrom, optrom_dma); |
| 2967 | |
| 2968 | return rval; |
| 2969 | } |
| 2970 | |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 2971 | int |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 2972 | qla24xx_write_optrom_data(struct scsi_qla_host *vha, void *buf, |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 2973 | uint32_t offset, uint32_t length) |
| 2974 | { |
| 2975 | int rval; |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 2976 | struct qla_hw_data *ha = vha->hw; |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 2977 | |
| 2978 | /* Suspend HBA. */ |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 2979 | scsi_block_requests(vha->host); |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 2980 | set_bit(MBX_UPDATE_FLASH_ACTIVE, &ha->mbx_cmd_flags); |
| 2981 | |
| 2982 | /* Go with write. */ |
Michael Hernandez | 3f006ac | 2019-03-12 11:08:22 -0700 | [diff] [blame] | 2983 | if (IS_QLA28XX(ha)) |
| 2984 | rval = qla28xx_write_flash_data(vha, (uint32_t *)buf, |
| 2985 | offset >> 2, length >> 2); |
| 2986 | else |
| 2987 | rval = qla24xx_write_flash_data(vha, (uint32_t *)buf, |
| 2988 | offset >> 2, length >> 2); |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 2989 | |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 2990 | clear_bit(MBX_UPDATE_FLASH_ACTIVE, &ha->mbx_cmd_flags); |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 2991 | scsi_unblock_requests(vha->host); |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 2992 | |
| 2993 | return rval; |
| 2994 | } |
Andrew Vasquez | 30c4766 | 2007-01-29 10:22:21 -0800 | [diff] [blame] | 2995 | |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 2996 | void * |
| 2997 | qla25xx_read_optrom_data(struct scsi_qla_host *vha, void *buf, |
Andrew Vasquez | 338c916 | 2007-09-20 14:07:33 -0700 | [diff] [blame] | 2998 | uint32_t offset, uint32_t length) |
| 2999 | { |
| 3000 | int rval; |
| 3001 | dma_addr_t optrom_dma; |
| 3002 | void *optrom; |
| 3003 | uint8_t *pbuf; |
| 3004 | uint32_t faddr, left, burst; |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 3005 | struct qla_hw_data *ha = vha->hw; |
Andrew Vasquez | 338c916 | 2007-09-20 14:07:33 -0700 | [diff] [blame] | 3006 | |
Chad Dupuis | 420854b | 2014-09-25 05:16:37 -0400 | [diff] [blame] | 3007 | if (IS_QLA25XX(ha) || IS_QLA81XX(ha) || IS_QLA83XX(ha) || |
Joe Carnuccio | ecc89f2 | 2019-03-12 11:08:13 -0700 | [diff] [blame] | 3008 | IS_QLA27XX(ha) || IS_QLA28XX(ha)) |
Andrew Vasquez | 368bbe0 | 2010-01-12 12:59:49 -0800 | [diff] [blame] | 3009 | goto try_fast; |
Joe Carnuccio | b7cc176 | 2007-09-20 14:07:35 -0700 | [diff] [blame] | 3010 | if (offset & 0xfff) |
Andrew Vasquez | 338c916 | 2007-09-20 14:07:33 -0700 | [diff] [blame] | 3011 | goto slow_read; |
| 3012 | if (length < OPTROM_BURST_SIZE) |
| 3013 | goto slow_read; |
| 3014 | |
Andrew Vasquez | 368bbe0 | 2010-01-12 12:59:49 -0800 | [diff] [blame] | 3015 | try_fast: |
Joe Carnuccio | a28d9e4 | 2019-03-12 11:08:17 -0700 | [diff] [blame] | 3016 | if (offset & 0xff) |
| 3017 | goto slow_read; |
Andrew Vasquez | 338c916 | 2007-09-20 14:07:33 -0700 | [diff] [blame] | 3018 | optrom = dma_alloc_coherent(&ha->pdev->dev, OPTROM_BURST_SIZE, |
| 3019 | &optrom_dma, GFP_KERNEL); |
| 3020 | if (!optrom) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 3021 | ql_log(ql_log_warn, vha, 0x00cc, |
| 3022 | "Unable to allocate memory for optrom burst read (%x KB).\n", |
| 3023 | OPTROM_BURST_SIZE / 1024); |
Andrew Vasquez | 338c916 | 2007-09-20 14:07:33 -0700 | [diff] [blame] | 3024 | goto slow_read; |
| 3025 | } |
| 3026 | |
| 3027 | pbuf = buf; |
| 3028 | faddr = offset >> 2; |
| 3029 | left = length >> 2; |
| 3030 | burst = OPTROM_BURST_DWORDS; |
| 3031 | while (left != 0) { |
| 3032 | if (burst > left) |
| 3033 | burst = left; |
| 3034 | |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 3035 | rval = qla2x00_dump_ram(vha, optrom_dma, |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 3036 | flash_data_addr(ha, faddr), burst); |
Andrew Vasquez | 338c916 | 2007-09-20 14:07:33 -0700 | [diff] [blame] | 3037 | if (rval) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 3038 | ql_log(ql_log_warn, vha, 0x00f5, |
| 3039 | "Unable to burst-read optrom segment (%x/%x/%llx).\n", |
| 3040 | rval, flash_data_addr(ha, faddr), |
Andrew Morton | 875baf3 | 2007-10-16 14:28:20 -0700 | [diff] [blame] | 3041 | (unsigned long long)optrom_dma); |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 3042 | ql_log(ql_log_warn, vha, 0x00f6, |
Andrew Vasquez | 338c916 | 2007-09-20 14:07:33 -0700 | [diff] [blame] | 3043 | "Reverting to slow-read.\n"); |
| 3044 | |
| 3045 | dma_free_coherent(&ha->pdev->dev, OPTROM_BURST_SIZE, |
| 3046 | optrom, optrom_dma); |
| 3047 | goto slow_read; |
| 3048 | } |
| 3049 | |
| 3050 | memcpy(pbuf, optrom, burst * 4); |
| 3051 | |
| 3052 | left -= burst; |
| 3053 | faddr += burst; |
| 3054 | pbuf += burst * 4; |
| 3055 | } |
| 3056 | |
| 3057 | dma_free_coherent(&ha->pdev->dev, OPTROM_BURST_SIZE, optrom, |
| 3058 | optrom_dma); |
| 3059 | |
| 3060 | return buf; |
| 3061 | |
| 3062 | slow_read: |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 3063 | return qla24xx_read_optrom_data(vha, buf, offset, length); |
Andrew Vasquez | 338c916 | 2007-09-20 14:07:33 -0700 | [diff] [blame] | 3064 | } |
| 3065 | |
Andrew Vasquez | 30c4766 | 2007-01-29 10:22:21 -0800 | [diff] [blame] | 3066 | /** |
| 3067 | * qla2x00_get_fcode_version() - Determine an FCODE image's version. |
| 3068 | * @ha: HA context |
| 3069 | * @pcids: Pointer to the FCODE PCI data structure |
| 3070 | * |
| 3071 | * The process of retrieving the FCODE version information is at best |
| 3072 | * described as interesting. |
| 3073 | * |
| 3074 | * Within the first 100h bytes of the image an ASCII string is present |
| 3075 | * which contains several pieces of information including the FCODE |
| 3076 | * version. Unfortunately it seems the only reliable way to retrieve |
| 3077 | * the version is by scanning for another sentinel within the string, |
| 3078 | * the FCODE build date: |
| 3079 | * |
| 3080 | * ... 2.00.02 10/17/02 ... |
| 3081 | * |
| 3082 | * Returns QLA_SUCCESS on successful retrieval of version. |
| 3083 | */ |
| 3084 | static void |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 3085 | qla2x00_get_fcode_version(struct qla_hw_data *ha, uint32_t pcids) |
Andrew Vasquez | 30c4766 | 2007-01-29 10:22:21 -0800 | [diff] [blame] | 3086 | { |
| 3087 | int ret = QLA_FUNCTION_FAILED; |
| 3088 | uint32_t istart, iend, iter, vend; |
| 3089 | uint8_t do_next, rbyte, *vbyte; |
| 3090 | |
| 3091 | memset(ha->fcode_revision, 0, sizeof(ha->fcode_revision)); |
| 3092 | |
| 3093 | /* Skip the PCI data structure. */ |
| 3094 | istart = pcids + |
| 3095 | ((qla2x00_read_flash_byte(ha, pcids + 0x0B) << 8) | |
| 3096 | qla2x00_read_flash_byte(ha, pcids + 0x0A)); |
| 3097 | iend = istart + 0x100; |
| 3098 | do { |
| 3099 | /* Scan for the sentinel date string...eeewww. */ |
| 3100 | do_next = 0; |
| 3101 | iter = istart; |
| 3102 | while ((iter < iend) && !do_next) { |
| 3103 | iter++; |
| 3104 | if (qla2x00_read_flash_byte(ha, iter) == '/') { |
| 3105 | if (qla2x00_read_flash_byte(ha, iter + 2) == |
| 3106 | '/') |
| 3107 | do_next++; |
| 3108 | else if (qla2x00_read_flash_byte(ha, |
| 3109 | iter + 3) == '/') |
| 3110 | do_next++; |
| 3111 | } |
| 3112 | } |
| 3113 | if (!do_next) |
| 3114 | break; |
| 3115 | |
| 3116 | /* Backtrack to previous ' ' (space). */ |
| 3117 | do_next = 0; |
| 3118 | while ((iter > istart) && !do_next) { |
| 3119 | iter--; |
| 3120 | if (qla2x00_read_flash_byte(ha, iter) == ' ') |
| 3121 | do_next++; |
| 3122 | } |
| 3123 | if (!do_next) |
| 3124 | break; |
| 3125 | |
| 3126 | /* |
| 3127 | * Mark end of version tag, and find previous ' ' (space) or |
| 3128 | * string length (recent FCODE images -- major hack ahead!!!). |
| 3129 | */ |
| 3130 | vend = iter - 1; |
| 3131 | do_next = 0; |
| 3132 | while ((iter > istart) && !do_next) { |
| 3133 | iter--; |
| 3134 | rbyte = qla2x00_read_flash_byte(ha, iter); |
| 3135 | if (rbyte == ' ' || rbyte == 0xd || rbyte == 0x10) |
| 3136 | do_next++; |
| 3137 | } |
| 3138 | if (!do_next) |
| 3139 | break; |
| 3140 | |
| 3141 | /* Mark beginning of version tag, and copy data. */ |
| 3142 | iter++; |
| 3143 | if ((vend - iter) && |
| 3144 | ((vend - iter) < sizeof(ha->fcode_revision))) { |
| 3145 | vbyte = ha->fcode_revision; |
| 3146 | while (iter <= vend) { |
| 3147 | *vbyte++ = qla2x00_read_flash_byte(ha, iter); |
| 3148 | iter++; |
| 3149 | } |
| 3150 | ret = QLA_SUCCESS; |
| 3151 | } |
| 3152 | } while (0); |
| 3153 | |
| 3154 | if (ret != QLA_SUCCESS) |
| 3155 | memset(ha->fcode_revision, 0, sizeof(ha->fcode_revision)); |
| 3156 | } |
| 3157 | |
| 3158 | int |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 3159 | qla2x00_get_flash_version(scsi_qla_host_t *vha, void *mbuf) |
Andrew Vasquez | 30c4766 | 2007-01-29 10:22:21 -0800 | [diff] [blame] | 3160 | { |
| 3161 | int ret = QLA_SUCCESS; |
| 3162 | uint8_t code_type, last_image; |
| 3163 | uint32_t pcihdr, pcids; |
| 3164 | uint8_t *dbyte; |
| 3165 | uint16_t *dcode; |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 3166 | struct qla_hw_data *ha = vha->hw; |
Andrew Vasquez | 30c4766 | 2007-01-29 10:22:21 -0800 | [diff] [blame] | 3167 | |
| 3168 | if (!ha->pio_address || !mbuf) |
| 3169 | return QLA_FUNCTION_FAILED; |
| 3170 | |
| 3171 | memset(ha->bios_revision, 0, sizeof(ha->bios_revision)); |
| 3172 | memset(ha->efi_revision, 0, sizeof(ha->efi_revision)); |
| 3173 | memset(ha->fcode_revision, 0, sizeof(ha->fcode_revision)); |
| 3174 | memset(ha->fw_revision, 0, sizeof(ha->fw_revision)); |
| 3175 | |
| 3176 | qla2x00_flash_enable(ha); |
| 3177 | |
| 3178 | /* Begin with first PCI expansion ROM header. */ |
| 3179 | pcihdr = 0; |
| 3180 | last_image = 1; |
| 3181 | do { |
| 3182 | /* Verify PCI expansion ROM header. */ |
| 3183 | if (qla2x00_read_flash_byte(ha, pcihdr) != 0x55 || |
| 3184 | qla2x00_read_flash_byte(ha, pcihdr + 0x01) != 0xaa) { |
| 3185 | /* No signature */ |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 3186 | ql_log(ql_log_fatal, vha, 0x0050, |
| 3187 | "No matching ROM signature.\n"); |
Andrew Vasquez | 30c4766 | 2007-01-29 10:22:21 -0800 | [diff] [blame] | 3188 | ret = QLA_FUNCTION_FAILED; |
| 3189 | break; |
| 3190 | } |
| 3191 | |
| 3192 | /* Locate PCI data structure. */ |
| 3193 | pcids = pcihdr + |
| 3194 | ((qla2x00_read_flash_byte(ha, pcihdr + 0x19) << 8) | |
| 3195 | qla2x00_read_flash_byte(ha, pcihdr + 0x18)); |
| 3196 | |
| 3197 | /* Validate signature of PCI data structure. */ |
| 3198 | if (qla2x00_read_flash_byte(ha, pcids) != 'P' || |
| 3199 | qla2x00_read_flash_byte(ha, pcids + 0x1) != 'C' || |
| 3200 | qla2x00_read_flash_byte(ha, pcids + 0x2) != 'I' || |
| 3201 | qla2x00_read_flash_byte(ha, pcids + 0x3) != 'R') { |
| 3202 | /* Incorrect header. */ |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 3203 | ql_log(ql_log_fatal, vha, 0x0051, |
| 3204 | "PCI data struct not found pcir_adr=%x.\n", pcids); |
Andrew Vasquez | 30c4766 | 2007-01-29 10:22:21 -0800 | [diff] [blame] | 3205 | ret = QLA_FUNCTION_FAILED; |
| 3206 | break; |
| 3207 | } |
| 3208 | |
| 3209 | /* Read version */ |
| 3210 | code_type = qla2x00_read_flash_byte(ha, pcids + 0x14); |
| 3211 | switch (code_type) { |
| 3212 | case ROM_CODE_TYPE_BIOS: |
| 3213 | /* Intel x86, PC-AT compatible. */ |
| 3214 | ha->bios_revision[0] = |
| 3215 | qla2x00_read_flash_byte(ha, pcids + 0x12); |
| 3216 | ha->bios_revision[1] = |
| 3217 | qla2x00_read_flash_byte(ha, pcids + 0x13); |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 3218 | ql_dbg(ql_dbg_init, vha, 0x0052, |
| 3219 | "Read BIOS %d.%d.\n", |
| 3220 | ha->bios_revision[1], ha->bios_revision[0]); |
Andrew Vasquez | 30c4766 | 2007-01-29 10:22:21 -0800 | [diff] [blame] | 3221 | break; |
| 3222 | case ROM_CODE_TYPE_FCODE: |
| 3223 | /* Open Firmware standard for PCI (FCode). */ |
| 3224 | /* Eeeewww... */ |
| 3225 | qla2x00_get_fcode_version(ha, pcids); |
| 3226 | break; |
| 3227 | case ROM_CODE_TYPE_EFI: |
| 3228 | /* Extensible Firmware Interface (EFI). */ |
| 3229 | ha->efi_revision[0] = |
| 3230 | qla2x00_read_flash_byte(ha, pcids + 0x12); |
| 3231 | ha->efi_revision[1] = |
| 3232 | qla2x00_read_flash_byte(ha, pcids + 0x13); |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 3233 | ql_dbg(ql_dbg_init, vha, 0x0053, |
| 3234 | "Read EFI %d.%d.\n", |
| 3235 | ha->efi_revision[1], ha->efi_revision[0]); |
Andrew Vasquez | 30c4766 | 2007-01-29 10:22:21 -0800 | [diff] [blame] | 3236 | break; |
| 3237 | default: |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 3238 | ql_log(ql_log_warn, vha, 0x0054, |
| 3239 | "Unrecognized code type %x at pcids %x.\n", |
| 3240 | code_type, pcids); |
Andrew Vasquez | 30c4766 | 2007-01-29 10:22:21 -0800 | [diff] [blame] | 3241 | break; |
| 3242 | } |
| 3243 | |
| 3244 | last_image = qla2x00_read_flash_byte(ha, pcids + 0x15) & BIT_7; |
| 3245 | |
| 3246 | /* Locate next PCI expansion ROM. */ |
| 3247 | pcihdr += ((qla2x00_read_flash_byte(ha, pcids + 0x11) << 8) | |
| 3248 | qla2x00_read_flash_byte(ha, pcids + 0x10)) * 512; |
| 3249 | } while (!last_image); |
| 3250 | |
| 3251 | if (IS_QLA2322(ha)) { |
| 3252 | /* Read firmware image information. */ |
| 3253 | memset(ha->fw_revision, 0, sizeof(ha->fw_revision)); |
| 3254 | dbyte = mbuf; |
| 3255 | memset(dbyte, 0, 8); |
| 3256 | dcode = (uint16_t *)dbyte; |
| 3257 | |
Andrew Vasquez | c00d899 | 2008-09-11 21:22:49 -0700 | [diff] [blame] | 3258 | qla2x00_read_flash_data(ha, dbyte, ha->flt_region_fw * 4 + 10, |
Andrew Vasquez | 30c4766 | 2007-01-29 10:22:21 -0800 | [diff] [blame] | 3259 | 8); |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 3260 | ql_dbg(ql_dbg_init + ql_dbg_buffer, vha, 0x010a, |
| 3261 | "Dumping fw " |
| 3262 | "ver from flash:.\n"); |
| 3263 | ql_dump_buffer(ql_dbg_init + ql_dbg_buffer, vha, 0x010b, |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 3264 | dbyte, 32); |
Andrew Vasquez | 30c4766 | 2007-01-29 10:22:21 -0800 | [diff] [blame] | 3265 | |
| 3266 | if ((dcode[0] == 0xffff && dcode[1] == 0xffff && |
| 3267 | dcode[2] == 0xffff && dcode[3] == 0xffff) || |
| 3268 | (dcode[0] == 0 && dcode[1] == 0 && dcode[2] == 0 && |
| 3269 | dcode[3] == 0)) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 3270 | ql_log(ql_log_warn, vha, 0x0057, |
| 3271 | "Unrecognized fw revision at %x.\n", |
| 3272 | ha->flt_region_fw * 4); |
Andrew Vasquez | 30c4766 | 2007-01-29 10:22:21 -0800 | [diff] [blame] | 3273 | } else { |
| 3274 | /* values are in big endian */ |
| 3275 | ha->fw_revision[0] = dbyte[0] << 16 | dbyte[1]; |
| 3276 | ha->fw_revision[1] = dbyte[2] << 16 | dbyte[3]; |
| 3277 | ha->fw_revision[2] = dbyte[4] << 16 | dbyte[5]; |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 3278 | ql_dbg(ql_dbg_init, vha, 0x0058, |
| 3279 | "FW Version: " |
| 3280 | "%d.%d.%d.\n", ha->fw_revision[0], |
| 3281 | ha->fw_revision[1], ha->fw_revision[2]); |
Andrew Vasquez | 30c4766 | 2007-01-29 10:22:21 -0800 | [diff] [blame] | 3282 | } |
| 3283 | } |
| 3284 | |
| 3285 | qla2x00_flash_disable(ha); |
| 3286 | |
| 3287 | return ret; |
| 3288 | } |
| 3289 | |
| 3290 | int |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 3291 | qla82xx_get_flash_version(scsi_qla_host_t *vha, void *mbuf) |
| 3292 | { |
| 3293 | int ret = QLA_SUCCESS; |
| 3294 | uint32_t pcihdr, pcids; |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 3295 | uint32_t *dcode = mbuf; |
| 3296 | uint8_t *bcode = mbuf; |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 3297 | uint8_t code_type, last_image; |
| 3298 | struct qla_hw_data *ha = vha->hw; |
| 3299 | |
| 3300 | if (!mbuf) |
| 3301 | return QLA_FUNCTION_FAILED; |
| 3302 | |
| 3303 | memset(ha->bios_revision, 0, sizeof(ha->bios_revision)); |
| 3304 | memset(ha->efi_revision, 0, sizeof(ha->efi_revision)); |
| 3305 | memset(ha->fcode_revision, 0, sizeof(ha->fcode_revision)); |
| 3306 | memset(ha->fw_revision, 0, sizeof(ha->fw_revision)); |
| 3307 | |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 3308 | /* Begin with first PCI expansion ROM header. */ |
| 3309 | pcihdr = ha->flt_region_boot << 2; |
| 3310 | last_image = 1; |
| 3311 | do { |
| 3312 | /* Verify PCI expansion ROM header. */ |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 3313 | ha->isp_ops->read_optrom(vha, dcode, pcihdr, 0x20 * 4); |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 3314 | bcode = mbuf + (pcihdr % 4); |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 3315 | if (memcmp(bcode, "\x55\xaa", 2)) { |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 3316 | /* No signature */ |
| 3317 | ql_log(ql_log_fatal, vha, 0x0154, |
| 3318 | "No matching ROM signature.\n"); |
| 3319 | ret = QLA_FUNCTION_FAILED; |
| 3320 | break; |
| 3321 | } |
| 3322 | |
| 3323 | /* Locate PCI data structure. */ |
| 3324 | pcids = pcihdr + ((bcode[0x19] << 8) | bcode[0x18]); |
| 3325 | |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 3326 | ha->isp_ops->read_optrom(vha, dcode, pcids, 0x20 * 4); |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 3327 | bcode = mbuf + (pcihdr % 4); |
| 3328 | |
| 3329 | /* Validate signature of PCI data structure. */ |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 3330 | if (memcmp(bcode, "PCIR", 4)) { |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 3331 | /* Incorrect header. */ |
| 3332 | ql_log(ql_log_fatal, vha, 0x0155, |
| 3333 | "PCI data struct not found pcir_adr=%x.\n", pcids); |
| 3334 | ret = QLA_FUNCTION_FAILED; |
| 3335 | break; |
| 3336 | } |
| 3337 | |
| 3338 | /* Read version */ |
| 3339 | code_type = bcode[0x14]; |
| 3340 | switch (code_type) { |
| 3341 | case ROM_CODE_TYPE_BIOS: |
| 3342 | /* Intel x86, PC-AT compatible. */ |
| 3343 | ha->bios_revision[0] = bcode[0x12]; |
| 3344 | ha->bios_revision[1] = bcode[0x13]; |
| 3345 | ql_dbg(ql_dbg_init, vha, 0x0156, |
| 3346 | "Read BIOS %d.%d.\n", |
| 3347 | ha->bios_revision[1], ha->bios_revision[0]); |
| 3348 | break; |
| 3349 | case ROM_CODE_TYPE_FCODE: |
| 3350 | /* Open Firmware standard for PCI (FCode). */ |
| 3351 | ha->fcode_revision[0] = bcode[0x12]; |
| 3352 | ha->fcode_revision[1] = bcode[0x13]; |
| 3353 | ql_dbg(ql_dbg_init, vha, 0x0157, |
| 3354 | "Read FCODE %d.%d.\n", |
| 3355 | ha->fcode_revision[1], ha->fcode_revision[0]); |
| 3356 | break; |
| 3357 | case ROM_CODE_TYPE_EFI: |
| 3358 | /* Extensible Firmware Interface (EFI). */ |
| 3359 | ha->efi_revision[0] = bcode[0x12]; |
| 3360 | ha->efi_revision[1] = bcode[0x13]; |
| 3361 | ql_dbg(ql_dbg_init, vha, 0x0158, |
| 3362 | "Read EFI %d.%d.\n", |
| 3363 | ha->efi_revision[1], ha->efi_revision[0]); |
| 3364 | break; |
| 3365 | default: |
| 3366 | ql_log(ql_log_warn, vha, 0x0159, |
| 3367 | "Unrecognized code type %x at pcids %x.\n", |
| 3368 | code_type, pcids); |
| 3369 | break; |
| 3370 | } |
| 3371 | |
| 3372 | last_image = bcode[0x15] & BIT_7; |
| 3373 | |
| 3374 | /* Locate next PCI expansion ROM. */ |
| 3375 | pcihdr += ((bcode[0x11] << 8) | bcode[0x10]) * 512; |
| 3376 | } while (!last_image); |
| 3377 | |
| 3378 | /* Read firmware image information. */ |
| 3379 | memset(ha->fw_revision, 0, sizeof(ha->fw_revision)); |
| 3380 | dcode = mbuf; |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 3381 | ha->isp_ops->read_optrom(vha, dcode, ha->flt_region_fw << 2, 0x20); |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 3382 | bcode = mbuf + (pcihdr % 4); |
| 3383 | |
| 3384 | /* Validate signature of PCI data structure. */ |
| 3385 | if (bcode[0x0] == 0x3 && bcode[0x1] == 0x0 && |
| 3386 | bcode[0x2] == 0x40 && bcode[0x3] == 0x40) { |
| 3387 | ha->fw_revision[0] = bcode[0x4]; |
| 3388 | ha->fw_revision[1] = bcode[0x5]; |
| 3389 | ha->fw_revision[2] = bcode[0x6]; |
Saurav Kashyap | 6ddcfef | 2013-08-27 01:37:53 -0400 | [diff] [blame] | 3390 | ql_dbg(ql_dbg_init, vha, 0x0153, |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 3391 | "Firmware revision %d.%d.%d\n", |
| 3392 | ha->fw_revision[0], ha->fw_revision[1], |
| 3393 | ha->fw_revision[2]); |
| 3394 | } |
| 3395 | |
| 3396 | return ret; |
| 3397 | } |
| 3398 | |
| 3399 | int |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 3400 | qla24xx_get_flash_version(scsi_qla_host_t *vha, void *mbuf) |
Andrew Vasquez | 30c4766 | 2007-01-29 10:22:21 -0800 | [diff] [blame] | 3401 | { |
| 3402 | int ret = QLA_SUCCESS; |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 3403 | uint32_t pcihdr = 0, pcids = 0; |
| 3404 | uint32_t *dcode = mbuf; |
| 3405 | uint8_t *bcode = mbuf; |
Andrew Vasquez | 30c4766 | 2007-01-29 10:22:21 -0800 | [diff] [blame] | 3406 | uint8_t code_type, last_image; |
| 3407 | int i; |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 3408 | struct qla_hw_data *ha = vha->hw; |
Sawan Chandak | 4243c11 | 2016-01-27 12:03:31 -0500 | [diff] [blame] | 3409 | uint32_t faddr = 0; |
Joe Carnuccio | 5fa8774 | 2019-03-12 11:08:21 -0700 | [diff] [blame] | 3410 | struct active_regions active_regions = { }; |
Sawan Chandak | 4243c11 | 2016-01-27 12:03:31 -0500 | [diff] [blame] | 3411 | |
Atul Deshmukh | 7ec0eff | 2013-08-27 01:37:28 -0400 | [diff] [blame] | 3412 | if (IS_P3P_TYPE(ha)) |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 3413 | return ret; |
| 3414 | |
Andrew Vasquez | 30c4766 | 2007-01-29 10:22:21 -0800 | [diff] [blame] | 3415 | if (!mbuf) |
| 3416 | return QLA_FUNCTION_FAILED; |
| 3417 | |
| 3418 | memset(ha->bios_revision, 0, sizeof(ha->bios_revision)); |
| 3419 | memset(ha->efi_revision, 0, sizeof(ha->efi_revision)); |
| 3420 | memset(ha->fcode_revision, 0, sizeof(ha->fcode_revision)); |
| 3421 | memset(ha->fw_revision, 0, sizeof(ha->fw_revision)); |
| 3422 | |
Harish Zunjarrao | 6315a5f | 2009-03-24 09:07:59 -0700 | [diff] [blame] | 3423 | pcihdr = ha->flt_region_boot << 2; |
Joe Carnuccio | 5fa8774 | 2019-03-12 11:08:21 -0700 | [diff] [blame] | 3424 | if (IS_QLA27XX(ha) || IS_QLA28XX(ha)) { |
| 3425 | qla27xx_get_active_image(vha, &active_regions); |
| 3426 | if (active_regions.global == QLA27XX_SECONDARY_IMAGE) { |
| 3427 | pcihdr = ha->flt_region_boot_sec << 2; |
| 3428 | } |
| 3429 | } |
Sawan Chandak | 4243c11 | 2016-01-27 12:03:31 -0500 | [diff] [blame] | 3430 | |
Andrew Vasquez | 30c4766 | 2007-01-29 10:22:21 -0800 | [diff] [blame] | 3431 | do { |
| 3432 | /* Verify PCI expansion ROM header. */ |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 3433 | qla24xx_read_flash_data(vha, dcode, pcihdr >> 2, 0x20); |
Andrew Vasquez | 30c4766 | 2007-01-29 10:22:21 -0800 | [diff] [blame] | 3434 | bcode = mbuf + (pcihdr % 4); |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 3435 | if (memcmp(bcode, "\x55\xaa", 2)) { |
Andrew Vasquez | 30c4766 | 2007-01-29 10:22:21 -0800 | [diff] [blame] | 3436 | /* No signature */ |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 3437 | ql_log(ql_log_fatal, vha, 0x0059, |
| 3438 | "No matching ROM signature.\n"); |
Andrew Vasquez | 30c4766 | 2007-01-29 10:22:21 -0800 | [diff] [blame] | 3439 | ret = QLA_FUNCTION_FAILED; |
| 3440 | break; |
| 3441 | } |
| 3442 | |
| 3443 | /* Locate PCI data structure. */ |
| 3444 | pcids = pcihdr + ((bcode[0x19] << 8) | bcode[0x18]); |
| 3445 | |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 3446 | qla24xx_read_flash_data(vha, dcode, pcids >> 2, 0x20); |
Andrew Vasquez | 30c4766 | 2007-01-29 10:22:21 -0800 | [diff] [blame] | 3447 | bcode = mbuf + (pcihdr % 4); |
| 3448 | |
| 3449 | /* Validate signature of PCI data structure. */ |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 3450 | if (memcmp(bcode, "PCIR", 4)) { |
Andrew Vasquez | 30c4766 | 2007-01-29 10:22:21 -0800 | [diff] [blame] | 3451 | /* Incorrect header. */ |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 3452 | ql_log(ql_log_fatal, vha, 0x005a, |
| 3453 | "PCI data struct not found pcir_adr=%x.\n", pcids); |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 3454 | ql_dump_buffer(ql_dbg_init, vha, 0x0059, dcode, 32); |
Andrew Vasquez | 30c4766 | 2007-01-29 10:22:21 -0800 | [diff] [blame] | 3455 | ret = QLA_FUNCTION_FAILED; |
| 3456 | break; |
| 3457 | } |
| 3458 | |
| 3459 | /* Read version */ |
| 3460 | code_type = bcode[0x14]; |
| 3461 | switch (code_type) { |
| 3462 | case ROM_CODE_TYPE_BIOS: |
| 3463 | /* Intel x86, PC-AT compatible. */ |
| 3464 | ha->bios_revision[0] = bcode[0x12]; |
| 3465 | ha->bios_revision[1] = bcode[0x13]; |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 3466 | ql_dbg(ql_dbg_init, vha, 0x005b, |
| 3467 | "Read BIOS %d.%d.\n", |
| 3468 | ha->bios_revision[1], ha->bios_revision[0]); |
Andrew Vasquez | 30c4766 | 2007-01-29 10:22:21 -0800 | [diff] [blame] | 3469 | break; |
| 3470 | case ROM_CODE_TYPE_FCODE: |
| 3471 | /* Open Firmware standard for PCI (FCode). */ |
| 3472 | ha->fcode_revision[0] = bcode[0x12]; |
| 3473 | ha->fcode_revision[1] = bcode[0x13]; |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 3474 | ql_dbg(ql_dbg_init, vha, 0x005c, |
| 3475 | "Read FCODE %d.%d.\n", |
| 3476 | ha->fcode_revision[1], ha->fcode_revision[0]); |
Andrew Vasquez | 30c4766 | 2007-01-29 10:22:21 -0800 | [diff] [blame] | 3477 | break; |
| 3478 | case ROM_CODE_TYPE_EFI: |
| 3479 | /* Extensible Firmware Interface (EFI). */ |
| 3480 | ha->efi_revision[0] = bcode[0x12]; |
| 3481 | ha->efi_revision[1] = bcode[0x13]; |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 3482 | ql_dbg(ql_dbg_init, vha, 0x005d, |
| 3483 | "Read EFI %d.%d.\n", |
| 3484 | ha->efi_revision[1], ha->efi_revision[0]); |
Andrew Vasquez | 30c4766 | 2007-01-29 10:22:21 -0800 | [diff] [blame] | 3485 | break; |
| 3486 | default: |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 3487 | ql_log(ql_log_warn, vha, 0x005e, |
| 3488 | "Unrecognized code type %x at pcids %x.\n", |
| 3489 | code_type, pcids); |
Andrew Vasquez | 30c4766 | 2007-01-29 10:22:21 -0800 | [diff] [blame] | 3490 | break; |
| 3491 | } |
| 3492 | |
| 3493 | last_image = bcode[0x15] & BIT_7; |
| 3494 | |
| 3495 | /* Locate next PCI expansion ROM. */ |
| 3496 | pcihdr += ((bcode[0x11] << 8) | bcode[0x10]) * 512; |
| 3497 | } while (!last_image); |
| 3498 | |
| 3499 | /* Read firmware image information. */ |
| 3500 | memset(ha->fw_revision, 0, sizeof(ha->fw_revision)); |
Sawan Chandak | 4243c11 | 2016-01-27 12:03:31 -0500 | [diff] [blame] | 3501 | faddr = ha->flt_region_fw; |
Joe Carnuccio | 5fa8774 | 2019-03-12 11:08:21 -0700 | [diff] [blame] | 3502 | if (IS_QLA27XX(ha) || IS_QLA28XX(ha)) { |
Michael Hernandez | 3f006ac | 2019-03-12 11:08:22 -0700 | [diff] [blame] | 3503 | qla27xx_get_active_image(vha, &active_regions); |
Joe Carnuccio | 5fa8774 | 2019-03-12 11:08:21 -0700 | [diff] [blame] | 3504 | if (active_regions.global == QLA27XX_SECONDARY_IMAGE) |
| 3505 | faddr = ha->flt_region_fw_sec; |
| 3506 | } |
Andrew Vasquez | 30c4766 | 2007-01-29 10:22:21 -0800 | [diff] [blame] | 3507 | |
Joe Carnuccio | f8f97b0 | 2019-03-12 11:08:16 -0700 | [diff] [blame] | 3508 | qla24xx_read_flash_data(vha, dcode, faddr, 8); |
| 3509 | if (qla24xx_risc_firmware_invalid(dcode)) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 3510 | ql_log(ql_log_warn, vha, 0x005f, |
| 3511 | "Unrecognized fw revision at %x.\n", |
| 3512 | ha->flt_region_fw * 4); |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 3513 | ql_dump_buffer(ql_dbg_init, vha, 0x005f, dcode, 32); |
Andrew Vasquez | 30c4766 | 2007-01-29 10:22:21 -0800 | [diff] [blame] | 3514 | } else { |
Joe Carnuccio | f8f97b0 | 2019-03-12 11:08:16 -0700 | [diff] [blame] | 3515 | for (i = 0; i < 4; i++) |
| 3516 | ha->fw_revision[i] = be32_to_cpu(dcode[4+i]); |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 3517 | ql_dbg(ql_dbg_init, vha, 0x0060, |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 3518 | "Firmware revision (flash) %u.%u.%u (%x).\n", |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 3519 | ha->fw_revision[0], ha->fw_revision[1], |
| 3520 | ha->fw_revision[2], ha->fw_revision[3]); |
Andrew Vasquez | 30c4766 | 2007-01-29 10:22:21 -0800 | [diff] [blame] | 3521 | } |
| 3522 | |
Madhuranath Iyengar | 0f2d962 | 2010-07-23 15:28:26 +0500 | [diff] [blame] | 3523 | /* Check for golden firmware and get version if available */ |
| 3524 | if (!IS_QLA81XX(ha)) { |
| 3525 | /* Golden firmware is not present in non 81XX adapters */ |
| 3526 | return ret; |
| 3527 | } |
| 3528 | |
| 3529 | memset(ha->gold_fw_version, 0, sizeof(ha->gold_fw_version)); |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 3530 | faddr = ha->flt_region_gold_fw; |
| 3531 | qla24xx_read_flash_data(vha, (void *)dcode, ha->flt_region_gold_fw, 8); |
Joe Carnuccio | f8f97b0 | 2019-03-12 11:08:16 -0700 | [diff] [blame] | 3532 | if (qla24xx_risc_firmware_invalid(dcode)) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 3533 | ql_log(ql_log_warn, vha, 0x0056, |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 3534 | "Unrecognized golden fw at %#x.\n", faddr); |
| 3535 | ql_dump_buffer(ql_dbg_init, vha, 0x0056, dcode, 32); |
Madhuranath Iyengar | 0f2d962 | 2010-07-23 15:28:26 +0500 | [diff] [blame] | 3536 | return ret; |
| 3537 | } |
| 3538 | |
Joe Carnuccio | f8f97b0 | 2019-03-12 11:08:16 -0700 | [diff] [blame] | 3539 | for (i = 0; i < 4; i++) |
| 3540 | ha->gold_fw_version[i] = be32_to_cpu(dcode[4+i]); |
Madhuranath Iyengar | 0f2d962 | 2010-07-23 15:28:26 +0500 | [diff] [blame] | 3541 | |
Andrew Vasquez | 30c4766 | 2007-01-29 10:22:21 -0800 | [diff] [blame] | 3542 | return ret; |
| 3543 | } |
Andrew Vasquez | cb8dacb | 2008-04-03 13:13:19 -0700 | [diff] [blame] | 3544 | |
| 3545 | static int |
Joe Carnuccio | 1ee2714 | 2008-07-10 16:55:53 -0700 | [diff] [blame] | 3546 | qla2xxx_is_vpd_valid(uint8_t *pos, uint8_t *end) |
| 3547 | { |
| 3548 | if (pos >= end || *pos != 0x82) |
| 3549 | return 0; |
| 3550 | |
| 3551 | pos += 3 + pos[1]; |
| 3552 | if (pos >= end || *pos != 0x90) |
| 3553 | return 0; |
| 3554 | |
| 3555 | pos += 3 + pos[1]; |
| 3556 | if (pos >= end || *pos != 0x78) |
| 3557 | return 0; |
| 3558 | |
| 3559 | return 1; |
| 3560 | } |
| 3561 | |
| 3562 | int |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 3563 | qla2xxx_get_vpd_field(scsi_qla_host_t *vha, char *key, char *str, size_t size) |
Joe Carnuccio | 1ee2714 | 2008-07-10 16:55:53 -0700 | [diff] [blame] | 3564 | { |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 3565 | struct qla_hw_data *ha = vha->hw; |
Joe Carnuccio | 1ee2714 | 2008-07-10 16:55:53 -0700 | [diff] [blame] | 3566 | uint8_t *pos = ha->vpd; |
| 3567 | uint8_t *end = pos + ha->vpd_size; |
| 3568 | int len = 0; |
| 3569 | |
| 3570 | if (!IS_FWI2_CAPABLE(ha) || !qla2xxx_is_vpd_valid(pos, end)) |
| 3571 | return 0; |
| 3572 | |
| 3573 | while (pos < end && *pos != 0x78) { |
| 3574 | len = (*pos == 0x82) ? pos[1] : pos[2]; |
| 3575 | |
| 3576 | if (!strncmp(pos, key, strlen(key))) |
| 3577 | break; |
| 3578 | |
| 3579 | if (*pos != 0x90 && *pos != 0x91) |
| 3580 | pos += len; |
| 3581 | |
| 3582 | pos += 3; |
| 3583 | } |
| 3584 | |
| 3585 | if (pos < end - len && *pos != 0x78) |
Joe Carnuccio | efcdf9f | 2014-09-25 05:16:41 -0400 | [diff] [blame] | 3586 | return scnprintf(str, size, "%.*s", len, pos + 3); |
Joe Carnuccio | 1ee2714 | 2008-07-10 16:55:53 -0700 | [diff] [blame] | 3587 | |
| 3588 | return 0; |
| 3589 | } |
Sarang Radke | 09ff701 | 2010-03-19 17:03:59 -0700 | [diff] [blame] | 3590 | |
| 3591 | int |
| 3592 | qla24xx_read_fcp_prio_cfg(scsi_qla_host_t *vha) |
| 3593 | { |
| 3594 | int len, max_len; |
| 3595 | uint32_t fcp_prio_addr; |
| 3596 | struct qla_hw_data *ha = vha->hw; |
| 3597 | |
| 3598 | if (!ha->fcp_prio_cfg) { |
| 3599 | ha->fcp_prio_cfg = vmalloc(FCP_PRIO_CFG_SIZE); |
| 3600 | if (!ha->fcp_prio_cfg) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 3601 | ql_log(ql_log_warn, vha, 0x00d5, |
Masanari Iida | c01e015 | 2016-04-20 00:27:33 +0900 | [diff] [blame] | 3602 | "Unable to allocate memory for fcp priority data (%x).\n", |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 3603 | FCP_PRIO_CFG_SIZE); |
Sarang Radke | 09ff701 | 2010-03-19 17:03:59 -0700 | [diff] [blame] | 3604 | return QLA_FUNCTION_FAILED; |
| 3605 | } |
| 3606 | } |
| 3607 | memset(ha->fcp_prio_cfg, 0, FCP_PRIO_CFG_SIZE); |
| 3608 | |
| 3609 | fcp_prio_addr = ha->flt_region_fcp_prio; |
| 3610 | |
| 3611 | /* first read the fcp priority data header from flash */ |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 3612 | ha->isp_ops->read_optrom(vha, ha->fcp_prio_cfg, |
Sarang Radke | 09ff701 | 2010-03-19 17:03:59 -0700 | [diff] [blame] | 3613 | fcp_prio_addr << 2, FCP_PRIO_CFG_HDR_SIZE); |
| 3614 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 3615 | if (!qla24xx_fcp_prio_cfg_valid(vha, ha->fcp_prio_cfg, 0)) |
Sarang Radke | 09ff701 | 2010-03-19 17:03:59 -0700 | [diff] [blame] | 3616 | goto fail; |
| 3617 | |
| 3618 | /* read remaining FCP CMD config data from flash */ |
| 3619 | fcp_prio_addr += (FCP_PRIO_CFG_HDR_SIZE >> 2); |
| 3620 | len = ha->fcp_prio_cfg->num_entries * FCP_PRIO_CFG_ENTRY_SIZE; |
| 3621 | max_len = FCP_PRIO_CFG_SIZE - FCP_PRIO_CFG_HDR_SIZE; |
| 3622 | |
Joe Carnuccio | 3695310 | 2019-03-12 11:08:18 -0700 | [diff] [blame] | 3623 | ha->isp_ops->read_optrom(vha, &ha->fcp_prio_cfg->entry[0], |
Sarang Radke | 09ff701 | 2010-03-19 17:03:59 -0700 | [diff] [blame] | 3624 | fcp_prio_addr << 2, (len < max_len ? len : max_len)); |
| 3625 | |
| 3626 | /* revalidate the entire FCP priority config data, including entries */ |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 3627 | if (!qla24xx_fcp_prio_cfg_valid(vha, ha->fcp_prio_cfg, 1)) |
Sarang Radke | 09ff701 | 2010-03-19 17:03:59 -0700 | [diff] [blame] | 3628 | goto fail; |
| 3629 | |
| 3630 | ha->flags.fcp_prio_enabled = 1; |
| 3631 | return QLA_SUCCESS; |
| 3632 | fail: |
| 3633 | vfree(ha->fcp_prio_cfg); |
| 3634 | ha->fcp_prio_cfg = NULL; |
| 3635 | return QLA_FUNCTION_FAILED; |
| 3636 | } |