Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid
[linux-2.6-microblaze.git] / drivers / scsi / qla2xxx / qla_nx.c
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3  * QLogic Fibre Channel HBA Driver
4  * Copyright (c)  2003-2014 QLogic Corporation
5  */
6 #include "qla_def.h"
7 #include <linux/delay.h>
8 #include <linux/io-64-nonatomic-lo-hi.h>
9 #include <linux/pci.h>
10 #include <linux/ratelimit.h>
11 #include <linux/vmalloc.h>
12 #include <scsi/scsi_tcq.h>
13
14 #define MASK(n)                 ((1ULL<<(n))-1)
15 #define MN_WIN(addr) (((addr & 0x1fc0000) >> 1) | \
16         ((addr >> 25) & 0x3ff))
17 #define OCM_WIN(addr) (((addr & 0x1ff0000) >> 1) | \
18         ((addr >> 25) & 0x3ff))
19 #define MS_WIN(addr) (addr & 0x0ffc0000)
20 #define QLA82XX_PCI_MN_2M   (0)
21 #define QLA82XX_PCI_MS_2M   (0x80000)
22 #define QLA82XX_PCI_OCM0_2M (0xc0000)
23 #define VALID_OCM_ADDR(addr) (((addr) & 0x3f800) != 0x3f800)
24 #define GET_MEM_OFFS_2M(addr) (addr & MASK(18))
25 #define BLOCK_PROTECT_BITS 0x0F
26
27 /* CRB window related */
28 #define CRB_BLK(off)    ((off >> 20) & 0x3f)
29 #define CRB_SUBBLK(off) ((off >> 16) & 0xf)
30 #define CRB_WINDOW_2M   (0x130060)
31 #define QLA82XX_PCI_CAMQM_2M_END        (0x04800800UL)
32 #define CRB_HI(off)     ((qla82xx_crb_hub_agt[CRB_BLK(off)] << 20) | \
33                         ((off) & 0xf0000))
34 #define QLA82XX_PCI_CAMQM_2M_BASE       (0x000ff800UL)
35 #define CRB_INDIRECT_2M (0x1e0000UL)
36
37 #define MAX_CRB_XFORM 60
38 static unsigned long crb_addr_xform[MAX_CRB_XFORM];
39 static int qla82xx_crb_table_initialized;
40
41 #define qla82xx_crb_addr_transform(name) \
42         (crb_addr_xform[QLA82XX_HW_PX_MAP_CRB_##name] = \
43         QLA82XX_HW_CRB_HUB_AGT_ADR_##name << 20)
44
45 const int MD_MIU_TEST_AGT_RDDATA[] = {
46         0x410000A8, 0x410000AC,
47         0x410000B8, 0x410000BC
48 };
49
50 static void qla82xx_crb_addr_transform_setup(void)
51 {
52         qla82xx_crb_addr_transform(XDMA);
53         qla82xx_crb_addr_transform(TIMR);
54         qla82xx_crb_addr_transform(SRE);
55         qla82xx_crb_addr_transform(SQN3);
56         qla82xx_crb_addr_transform(SQN2);
57         qla82xx_crb_addr_transform(SQN1);
58         qla82xx_crb_addr_transform(SQN0);
59         qla82xx_crb_addr_transform(SQS3);
60         qla82xx_crb_addr_transform(SQS2);
61         qla82xx_crb_addr_transform(SQS1);
62         qla82xx_crb_addr_transform(SQS0);
63         qla82xx_crb_addr_transform(RPMX7);
64         qla82xx_crb_addr_transform(RPMX6);
65         qla82xx_crb_addr_transform(RPMX5);
66         qla82xx_crb_addr_transform(RPMX4);
67         qla82xx_crb_addr_transform(RPMX3);
68         qla82xx_crb_addr_transform(RPMX2);
69         qla82xx_crb_addr_transform(RPMX1);
70         qla82xx_crb_addr_transform(RPMX0);
71         qla82xx_crb_addr_transform(ROMUSB);
72         qla82xx_crb_addr_transform(SN);
73         qla82xx_crb_addr_transform(QMN);
74         qla82xx_crb_addr_transform(QMS);
75         qla82xx_crb_addr_transform(PGNI);
76         qla82xx_crb_addr_transform(PGND);
77         qla82xx_crb_addr_transform(PGN3);
78         qla82xx_crb_addr_transform(PGN2);
79         qla82xx_crb_addr_transform(PGN1);
80         qla82xx_crb_addr_transform(PGN0);
81         qla82xx_crb_addr_transform(PGSI);
82         qla82xx_crb_addr_transform(PGSD);
83         qla82xx_crb_addr_transform(PGS3);
84         qla82xx_crb_addr_transform(PGS2);
85         qla82xx_crb_addr_transform(PGS1);
86         qla82xx_crb_addr_transform(PGS0);
87         qla82xx_crb_addr_transform(PS);
88         qla82xx_crb_addr_transform(PH);
89         qla82xx_crb_addr_transform(NIU);
90         qla82xx_crb_addr_transform(I2Q);
91         qla82xx_crb_addr_transform(EG);
92         qla82xx_crb_addr_transform(MN);
93         qla82xx_crb_addr_transform(MS);
94         qla82xx_crb_addr_transform(CAS2);
95         qla82xx_crb_addr_transform(CAS1);
96         qla82xx_crb_addr_transform(CAS0);
97         qla82xx_crb_addr_transform(CAM);
98         qla82xx_crb_addr_transform(C2C1);
99         qla82xx_crb_addr_transform(C2C0);
100         qla82xx_crb_addr_transform(SMB);
101         qla82xx_crb_addr_transform(OCM0);
102         /*
103          * Used only in P3 just define it for P2 also.
104          */
105         qla82xx_crb_addr_transform(I2C0);
106
107         qla82xx_crb_table_initialized = 1;
108 }
109
110 static struct crb_128M_2M_block_map crb_128M_2M_map[64] = {
111         {{{0, 0,         0,         0} } },
112         {{{1, 0x0100000, 0x0102000, 0x120000},
113         {1, 0x0110000, 0x0120000, 0x130000},
114         {1, 0x0120000, 0x0122000, 0x124000},
115         {1, 0x0130000, 0x0132000, 0x126000},
116         {1, 0x0140000, 0x0142000, 0x128000},
117         {1, 0x0150000, 0x0152000, 0x12a000},
118         {1, 0x0160000, 0x0170000, 0x110000},
119         {1, 0x0170000, 0x0172000, 0x12e000},
120         {0, 0x0000000, 0x0000000, 0x000000},
121         {0, 0x0000000, 0x0000000, 0x000000},
122         {0, 0x0000000, 0x0000000, 0x000000},
123         {0, 0x0000000, 0x0000000, 0x000000},
124         {0, 0x0000000, 0x0000000, 0x000000},
125         {0, 0x0000000, 0x0000000, 0x000000},
126         {1, 0x01e0000, 0x01e0800, 0x122000},
127         {0, 0x0000000, 0x0000000, 0x000000} } } ,
128         {{{1, 0x0200000, 0x0210000, 0x180000} } },
129         {{{0, 0,         0,         0} } },
130         {{{1, 0x0400000, 0x0401000, 0x169000} } },
131         {{{1, 0x0500000, 0x0510000, 0x140000} } },
132         {{{1, 0x0600000, 0x0610000, 0x1c0000} } },
133         {{{1, 0x0700000, 0x0704000, 0x1b8000} } },
134         {{{1, 0x0800000, 0x0802000, 0x170000},
135         {0, 0x0000000, 0x0000000, 0x000000},
136         {0, 0x0000000, 0x0000000, 0x000000},
137         {0, 0x0000000, 0x0000000, 0x000000},
138         {0, 0x0000000, 0x0000000, 0x000000},
139         {0, 0x0000000, 0x0000000, 0x000000},
140         {0, 0x0000000, 0x0000000, 0x000000},
141         {0, 0x0000000, 0x0000000, 0x000000},
142         {0, 0x0000000, 0x0000000, 0x000000},
143         {0, 0x0000000, 0x0000000, 0x000000},
144         {0, 0x0000000, 0x0000000, 0x000000},
145         {0, 0x0000000, 0x0000000, 0x000000},
146         {0, 0x0000000, 0x0000000, 0x000000},
147         {0, 0x0000000, 0x0000000, 0x000000},
148         {0, 0x0000000, 0x0000000, 0x000000},
149         {1, 0x08f0000, 0x08f2000, 0x172000} } },
150         {{{1, 0x0900000, 0x0902000, 0x174000},
151         {0, 0x0000000, 0x0000000, 0x000000},
152         {0, 0x0000000, 0x0000000, 0x000000},
153         {0, 0x0000000, 0x0000000, 0x000000},
154         {0, 0x0000000, 0x0000000, 0x000000},
155         {0, 0x0000000, 0x0000000, 0x000000},
156         {0, 0x0000000, 0x0000000, 0x000000},
157         {0, 0x0000000, 0x0000000, 0x000000},
158         {0, 0x0000000, 0x0000000, 0x000000},
159         {0, 0x0000000, 0x0000000, 0x000000},
160         {0, 0x0000000, 0x0000000, 0x000000},
161         {0, 0x0000000, 0x0000000, 0x000000},
162         {0, 0x0000000, 0x0000000, 0x000000},
163         {0, 0x0000000, 0x0000000, 0x000000},
164         {0, 0x0000000, 0x0000000, 0x000000},
165         {1, 0x09f0000, 0x09f2000, 0x176000} } },
166         {{{0, 0x0a00000, 0x0a02000, 0x178000},
167         {0, 0x0000000, 0x0000000, 0x000000},
168         {0, 0x0000000, 0x0000000, 0x000000},
169         {0, 0x0000000, 0x0000000, 0x000000},
170         {0, 0x0000000, 0x0000000, 0x000000},
171         {0, 0x0000000, 0x0000000, 0x000000},
172         {0, 0x0000000, 0x0000000, 0x000000},
173         {0, 0x0000000, 0x0000000, 0x000000},
174         {0, 0x0000000, 0x0000000, 0x000000},
175         {0, 0x0000000, 0x0000000, 0x000000},
176         {0, 0x0000000, 0x0000000, 0x000000},
177         {0, 0x0000000, 0x0000000, 0x000000},
178         {0, 0x0000000, 0x0000000, 0x000000},
179         {0, 0x0000000, 0x0000000, 0x000000},
180         {0, 0x0000000, 0x0000000, 0x000000},
181         {1, 0x0af0000, 0x0af2000, 0x17a000} } },
182         {{{0, 0x0b00000, 0x0b02000, 0x17c000},
183         {0, 0x0000000, 0x0000000, 0x000000},
184         {0, 0x0000000, 0x0000000, 0x000000},
185         {0, 0x0000000, 0x0000000, 0x000000},
186         {0, 0x0000000, 0x0000000, 0x000000},
187         {0, 0x0000000, 0x0000000, 0x000000},
188         {0, 0x0000000, 0x0000000, 0x000000},
189         {0, 0x0000000, 0x0000000, 0x000000},
190         {0, 0x0000000, 0x0000000, 0x000000},
191         {0, 0x0000000, 0x0000000, 0x000000},
192         {0, 0x0000000, 0x0000000, 0x000000},
193         {0, 0x0000000, 0x0000000, 0x000000},
194         {0, 0x0000000, 0x0000000, 0x000000},
195         {0, 0x0000000, 0x0000000, 0x000000},
196         {0, 0x0000000, 0x0000000, 0x000000},
197         {1, 0x0bf0000, 0x0bf2000, 0x17e000} } },
198         {{{1, 0x0c00000, 0x0c04000, 0x1d4000} } },
199         {{{1, 0x0d00000, 0x0d04000, 0x1a4000} } },
200         {{{1, 0x0e00000, 0x0e04000, 0x1a0000} } },
201         {{{1, 0x0f00000, 0x0f01000, 0x164000} } },
202         {{{0, 0x1000000, 0x1004000, 0x1a8000} } },
203         {{{1, 0x1100000, 0x1101000, 0x160000} } },
204         {{{1, 0x1200000, 0x1201000, 0x161000} } },
205         {{{1, 0x1300000, 0x1301000, 0x162000} } },
206         {{{1, 0x1400000, 0x1401000, 0x163000} } },
207         {{{1, 0x1500000, 0x1501000, 0x165000} } },
208         {{{1, 0x1600000, 0x1601000, 0x166000} } },
209         {{{0, 0,         0,         0} } },
210         {{{0, 0,         0,         0} } },
211         {{{0, 0,         0,         0} } },
212         {{{0, 0,         0,         0} } },
213         {{{0, 0,         0,         0} } },
214         {{{0, 0,         0,         0} } },
215         {{{1, 0x1d00000, 0x1d10000, 0x190000} } },
216         {{{1, 0x1e00000, 0x1e01000, 0x16a000} } },
217         {{{1, 0x1f00000, 0x1f10000, 0x150000} } },
218         {{{0} } },
219         {{{1, 0x2100000, 0x2102000, 0x120000},
220         {1, 0x2110000, 0x2120000, 0x130000},
221         {1, 0x2120000, 0x2122000, 0x124000},
222         {1, 0x2130000, 0x2132000, 0x126000},
223         {1, 0x2140000, 0x2142000, 0x128000},
224         {1, 0x2150000, 0x2152000, 0x12a000},
225         {1, 0x2160000, 0x2170000, 0x110000},
226         {1, 0x2170000, 0x2172000, 0x12e000},
227         {0, 0x0000000, 0x0000000, 0x000000},
228         {0, 0x0000000, 0x0000000, 0x000000},
229         {0, 0x0000000, 0x0000000, 0x000000},
230         {0, 0x0000000, 0x0000000, 0x000000},
231         {0, 0x0000000, 0x0000000, 0x000000},
232         {0, 0x0000000, 0x0000000, 0x000000},
233         {0, 0x0000000, 0x0000000, 0x000000},
234         {0, 0x0000000, 0x0000000, 0x000000} } },
235         {{{1, 0x2200000, 0x2204000, 0x1b0000} } },
236         {{{0} } },
237         {{{0} } },
238         {{{0} } },
239         {{{0} } },
240         {{{0} } },
241         {{{1, 0x2800000, 0x2804000, 0x1a4000} } },
242         {{{1, 0x2900000, 0x2901000, 0x16b000} } },
243         {{{1, 0x2a00000, 0x2a00400, 0x1ac400} } },
244         {{{1, 0x2b00000, 0x2b00400, 0x1ac800} } },
245         {{{1, 0x2c00000, 0x2c00400, 0x1acc00} } },
246         {{{1, 0x2d00000, 0x2d00400, 0x1ad000} } },
247         {{{1, 0x2e00000, 0x2e00400, 0x1ad400} } },
248         {{{1, 0x2f00000, 0x2f00400, 0x1ad800} } },
249         {{{1, 0x3000000, 0x3000400, 0x1adc00} } },
250         {{{0, 0x3100000, 0x3104000, 0x1a8000} } },
251         {{{1, 0x3200000, 0x3204000, 0x1d4000} } },
252         {{{1, 0x3300000, 0x3304000, 0x1a0000} } },
253         {{{0} } },
254         {{{1, 0x3500000, 0x3500400, 0x1ac000} } },
255         {{{1, 0x3600000, 0x3600400, 0x1ae000} } },
256         {{{1, 0x3700000, 0x3700400, 0x1ae400} } },
257         {{{1, 0x3800000, 0x3804000, 0x1d0000} } },
258         {{{1, 0x3900000, 0x3904000, 0x1b4000} } },
259         {{{1, 0x3a00000, 0x3a04000, 0x1d8000} } },
260         {{{0} } },
261         {{{0} } },
262         {{{1, 0x3d00000, 0x3d04000, 0x1dc000} } },
263         {{{1, 0x3e00000, 0x3e01000, 0x167000} } },
264         {{{1, 0x3f00000, 0x3f01000, 0x168000} } }
265 };
266
267 /*
268  * top 12 bits of crb internal address (hub, agent)
269  */
270 static unsigned qla82xx_crb_hub_agt[64] = {
271         0,
272         QLA82XX_HW_CRB_HUB_AGT_ADR_PS,
273         QLA82XX_HW_CRB_HUB_AGT_ADR_MN,
274         QLA82XX_HW_CRB_HUB_AGT_ADR_MS,
275         0,
276         QLA82XX_HW_CRB_HUB_AGT_ADR_SRE,
277         QLA82XX_HW_CRB_HUB_AGT_ADR_NIU,
278         QLA82XX_HW_CRB_HUB_AGT_ADR_QMN,
279         QLA82XX_HW_CRB_HUB_AGT_ADR_SQN0,
280         QLA82XX_HW_CRB_HUB_AGT_ADR_SQN1,
281         QLA82XX_HW_CRB_HUB_AGT_ADR_SQN2,
282         QLA82XX_HW_CRB_HUB_AGT_ADR_SQN3,
283         QLA82XX_HW_CRB_HUB_AGT_ADR_I2Q,
284         QLA82XX_HW_CRB_HUB_AGT_ADR_TIMR,
285         QLA82XX_HW_CRB_HUB_AGT_ADR_ROMUSB,
286         QLA82XX_HW_CRB_HUB_AGT_ADR_PGN4,
287         QLA82XX_HW_CRB_HUB_AGT_ADR_XDMA,
288         QLA82XX_HW_CRB_HUB_AGT_ADR_PGN0,
289         QLA82XX_HW_CRB_HUB_AGT_ADR_PGN1,
290         QLA82XX_HW_CRB_HUB_AGT_ADR_PGN2,
291         QLA82XX_HW_CRB_HUB_AGT_ADR_PGN3,
292         QLA82XX_HW_CRB_HUB_AGT_ADR_PGND,
293         QLA82XX_HW_CRB_HUB_AGT_ADR_PGNI,
294         QLA82XX_HW_CRB_HUB_AGT_ADR_PGS0,
295         QLA82XX_HW_CRB_HUB_AGT_ADR_PGS1,
296         QLA82XX_HW_CRB_HUB_AGT_ADR_PGS2,
297         QLA82XX_HW_CRB_HUB_AGT_ADR_PGS3,
298         0,
299         QLA82XX_HW_CRB_HUB_AGT_ADR_PGSI,
300         QLA82XX_HW_CRB_HUB_AGT_ADR_SN,
301         0,
302         QLA82XX_HW_CRB_HUB_AGT_ADR_EG,
303         0,
304         QLA82XX_HW_CRB_HUB_AGT_ADR_PS,
305         QLA82XX_HW_CRB_HUB_AGT_ADR_CAM,
306         0,
307         0,
308         0,
309         0,
310         0,
311         QLA82XX_HW_CRB_HUB_AGT_ADR_TIMR,
312         0,
313         QLA82XX_HW_CRB_HUB_AGT_ADR_RPMX1,
314         QLA82XX_HW_CRB_HUB_AGT_ADR_RPMX2,
315         QLA82XX_HW_CRB_HUB_AGT_ADR_RPMX3,
316         QLA82XX_HW_CRB_HUB_AGT_ADR_RPMX4,
317         QLA82XX_HW_CRB_HUB_AGT_ADR_RPMX5,
318         QLA82XX_HW_CRB_HUB_AGT_ADR_RPMX6,
319         QLA82XX_HW_CRB_HUB_AGT_ADR_RPMX7,
320         QLA82XX_HW_CRB_HUB_AGT_ADR_XDMA,
321         QLA82XX_HW_CRB_HUB_AGT_ADR_I2Q,
322         QLA82XX_HW_CRB_HUB_AGT_ADR_ROMUSB,
323         0,
324         QLA82XX_HW_CRB_HUB_AGT_ADR_RPMX0,
325         QLA82XX_HW_CRB_HUB_AGT_ADR_RPMX8,
326         QLA82XX_HW_CRB_HUB_AGT_ADR_RPMX9,
327         QLA82XX_HW_CRB_HUB_AGT_ADR_OCM0,
328         0,
329         QLA82XX_HW_CRB_HUB_AGT_ADR_SMB,
330         QLA82XX_HW_CRB_HUB_AGT_ADR_I2C0,
331         QLA82XX_HW_CRB_HUB_AGT_ADR_I2C1,
332         0,
333         QLA82XX_HW_CRB_HUB_AGT_ADR_PGNC,
334         0,
335 };
336
337 /* Device states */
338 static char *q_dev_state[] = {
339          "Unknown",
340         "Cold",
341         "Initializing",
342         "Ready",
343         "Need Reset",
344         "Need Quiescent",
345         "Failed",
346         "Quiescent",
347 };
348
349 char *qdev_state(uint32_t dev_state)
350 {
351         return q_dev_state[dev_state];
352 }
353
354 /*
355  * In: 'off_in' is offset from CRB space in 128M pci map
356  * Out: 'off_out' is 2M pci map addr
357  * side effect: lock crb window
358  */
359 static void
360 qla82xx_pci_set_crbwindow_2M(struct qla_hw_data *ha, ulong off_in,
361                              void __iomem **off_out)
362 {
363         u32 win_read;
364         scsi_qla_host_t *vha = pci_get_drvdata(ha->pdev);
365
366         ha->crb_win = CRB_HI(off_in);
367         writel(ha->crb_win, CRB_WINDOW_2M + ha->nx_pcibase);
368
369         /* Read back value to make sure write has gone through before trying
370          * to use it.
371          */
372         win_read = rd_reg_dword(CRB_WINDOW_2M + ha->nx_pcibase);
373         if (win_read != ha->crb_win) {
374                 ql_dbg(ql_dbg_p3p, vha, 0xb000,
375                     "%s: Written crbwin (0x%x) "
376                     "!= Read crbwin (0x%x), off=0x%lx.\n",
377                     __func__, ha->crb_win, win_read, off_in);
378         }
379         *off_out = (off_in & MASK(16)) + CRB_INDIRECT_2M + ha->nx_pcibase;
380 }
381
382 static int
383 qla82xx_pci_get_crb_addr_2M(struct qla_hw_data *ha, ulong off_in,
384                             void __iomem **off_out)
385 {
386         struct crb_128M_2M_sub_block_map *m;
387
388         if (off_in >= QLA82XX_CRB_MAX)
389                 return -1;
390
391         if (off_in >= QLA82XX_PCI_CAMQM && off_in < QLA82XX_PCI_CAMQM_2M_END) {
392                 *off_out = (off_in - QLA82XX_PCI_CAMQM) +
393                     QLA82XX_PCI_CAMQM_2M_BASE + ha->nx_pcibase;
394                 return 0;
395         }
396
397         if (off_in < QLA82XX_PCI_CRBSPACE)
398                 return -1;
399
400         off_in -= QLA82XX_PCI_CRBSPACE;
401
402         /* Try direct map */
403         m = &crb_128M_2M_map[CRB_BLK(off_in)].sub_block[CRB_SUBBLK(off_in)];
404
405         if (m->valid && (m->start_128M <= off_in) && (m->end_128M > off_in)) {
406                 *off_out = off_in + m->start_2M - m->start_128M + ha->nx_pcibase;
407                 return 0;
408         }
409         /* Not in direct map, use crb window */
410         *off_out = (void __iomem *)off_in;
411         return 1;
412 }
413
414 #define CRB_WIN_LOCK_TIMEOUT 100000000
415 static int qla82xx_crb_win_lock(struct qla_hw_data *ha)
416 {
417         int done = 0, timeout = 0;
418
419         while (!done) {
420                 /* acquire semaphore3 from PCI HW block */
421                 done = qla82xx_rd_32(ha, QLA82XX_PCIE_REG(PCIE_SEM7_LOCK));
422                 if (done == 1)
423                         break;
424                 if (timeout >= CRB_WIN_LOCK_TIMEOUT)
425                         return -1;
426                 timeout++;
427         }
428         qla82xx_wr_32(ha, QLA82XX_CRB_WIN_LOCK_ID, ha->portnum);
429         return 0;
430 }
431
432 int
433 qla82xx_wr_32(struct qla_hw_data *ha, ulong off_in, u32 data)
434 {
435         void __iomem *off;
436         unsigned long flags = 0;
437         int rv;
438
439         rv = qla82xx_pci_get_crb_addr_2M(ha, off_in, &off);
440
441         BUG_ON(rv == -1);
442
443         if (rv == 1) {
444 #ifndef __CHECKER__
445                 write_lock_irqsave(&ha->hw_lock, flags);
446 #endif
447                 qla82xx_crb_win_lock(ha);
448                 qla82xx_pci_set_crbwindow_2M(ha, off_in, &off);
449         }
450
451         writel(data, (void __iomem *)off);
452
453         if (rv == 1) {
454                 qla82xx_rd_32(ha, QLA82XX_PCIE_REG(PCIE_SEM7_UNLOCK));
455 #ifndef __CHECKER__
456                 write_unlock_irqrestore(&ha->hw_lock, flags);
457 #endif
458         }
459         return 0;
460 }
461
462 int
463 qla82xx_rd_32(struct qla_hw_data *ha, ulong off_in)
464 {
465         void __iomem *off;
466         unsigned long flags = 0;
467         int rv;
468         u32 data;
469
470         rv = qla82xx_pci_get_crb_addr_2M(ha, off_in, &off);
471
472         BUG_ON(rv == -1);
473
474         if (rv == 1) {
475 #ifndef __CHECKER__
476                 write_lock_irqsave(&ha->hw_lock, flags);
477 #endif
478                 qla82xx_crb_win_lock(ha);
479                 qla82xx_pci_set_crbwindow_2M(ha, off_in, &off);
480         }
481         data = rd_reg_dword(off);
482
483         if (rv == 1) {
484                 qla82xx_rd_32(ha, QLA82XX_PCIE_REG(PCIE_SEM7_UNLOCK));
485 #ifndef __CHECKER__
486                 write_unlock_irqrestore(&ha->hw_lock, flags);
487 #endif
488         }
489         return data;
490 }
491
492 #define IDC_LOCK_TIMEOUT 100000000
493 int qla82xx_idc_lock(struct qla_hw_data *ha)
494 {
495         int i;
496         int done = 0, timeout = 0;
497
498         while (!done) {
499                 /* acquire semaphore5 from PCI HW block */
500                 done = qla82xx_rd_32(ha, QLA82XX_PCIE_REG(PCIE_SEM5_LOCK));
501                 if (done == 1)
502                         break;
503                 if (timeout >= IDC_LOCK_TIMEOUT)
504                         return -1;
505
506                 timeout++;
507
508                 /* Yield CPU */
509                 if (!in_interrupt())
510                         schedule();
511                 else {
512                         for (i = 0; i < 20; i++)
513                                 cpu_relax();
514                 }
515         }
516
517         return 0;
518 }
519
520 void qla82xx_idc_unlock(struct qla_hw_data *ha)
521 {
522         qla82xx_rd_32(ha, QLA82XX_PCIE_REG(PCIE_SEM5_UNLOCK));
523 }
524
525 /*
526  * check memory access boundary.
527  * used by test agent. support ddr access only for now
528  */
529 static unsigned long
530 qla82xx_pci_mem_bound_check(struct qla_hw_data *ha,
531         unsigned long long addr, int size)
532 {
533         if (!addr_in_range(addr, QLA82XX_ADDR_DDR_NET,
534                 QLA82XX_ADDR_DDR_NET_MAX) ||
535                 !addr_in_range(addr + size - 1, QLA82XX_ADDR_DDR_NET,
536                 QLA82XX_ADDR_DDR_NET_MAX) ||
537                 ((size != 1) && (size != 2) && (size != 4) && (size != 8)))
538                         return 0;
539         else
540                 return 1;
541 }
542
543 static int qla82xx_pci_set_window_warning_count;
544
545 static unsigned long
546 qla82xx_pci_set_window(struct qla_hw_data *ha, unsigned long long addr)
547 {
548         int window;
549         u32 win_read;
550         scsi_qla_host_t *vha = pci_get_drvdata(ha->pdev);
551
552         if (addr_in_range(addr, QLA82XX_ADDR_DDR_NET,
553                 QLA82XX_ADDR_DDR_NET_MAX)) {
554                 /* DDR network side */
555                 window = MN_WIN(addr);
556                 ha->ddr_mn_window = window;
557                 qla82xx_wr_32(ha,
558                         ha->mn_win_crb | QLA82XX_PCI_CRBSPACE, window);
559                 win_read = qla82xx_rd_32(ha,
560                         ha->mn_win_crb | QLA82XX_PCI_CRBSPACE);
561                 if ((win_read << 17) != window) {
562                         ql_dbg(ql_dbg_p3p, vha, 0xb003,
563                             "%s: Written MNwin (0x%x) != Read MNwin (0x%x).\n",
564                             __func__, window, win_read);
565                 }
566                 addr = GET_MEM_OFFS_2M(addr) + QLA82XX_PCI_DDR_NET;
567         } else if (addr_in_range(addr, QLA82XX_ADDR_OCM0,
568                 QLA82XX_ADDR_OCM0_MAX)) {
569                 unsigned int temp1;
570
571                 if ((addr & 0x00ff800) == 0xff800) {
572                         ql_log(ql_log_warn, vha, 0xb004,
573                             "%s: QM access not handled.\n", __func__);
574                         addr = -1UL;
575                 }
576                 window = OCM_WIN(addr);
577                 ha->ddr_mn_window = window;
578                 qla82xx_wr_32(ha,
579                         ha->mn_win_crb | QLA82XX_PCI_CRBSPACE, window);
580                 win_read = qla82xx_rd_32(ha,
581                         ha->mn_win_crb | QLA82XX_PCI_CRBSPACE);
582                 temp1 = ((window & 0x1FF) << 7) |
583                     ((window & 0x0FFFE0000) >> 17);
584                 if (win_read != temp1) {
585                         ql_log(ql_log_warn, vha, 0xb005,
586                             "%s: Written OCMwin (0x%x) != Read OCMwin (0x%x).\n",
587                             __func__, temp1, win_read);
588                 }
589                 addr = GET_MEM_OFFS_2M(addr) + QLA82XX_PCI_OCM0_2M;
590
591         } else if (addr_in_range(addr, QLA82XX_ADDR_QDR_NET,
592                 QLA82XX_P3_ADDR_QDR_NET_MAX)) {
593                 /* QDR network side */
594                 window = MS_WIN(addr);
595                 ha->qdr_sn_window = window;
596                 qla82xx_wr_32(ha,
597                         ha->ms_win_crb | QLA82XX_PCI_CRBSPACE, window);
598                 win_read = qla82xx_rd_32(ha,
599                         ha->ms_win_crb | QLA82XX_PCI_CRBSPACE);
600                 if (win_read != window) {
601                         ql_log(ql_log_warn, vha, 0xb006,
602                             "%s: Written MSwin (0x%x) != Read MSwin (0x%x).\n",
603                             __func__, window, win_read);
604                 }
605                 addr = GET_MEM_OFFS_2M(addr) + QLA82XX_PCI_QDR_NET;
606         } else {
607                 /*
608                  * peg gdb frequently accesses memory that doesn't exist,
609                  * this limits the chit chat so debugging isn't slowed down.
610                  */
611                 if ((qla82xx_pci_set_window_warning_count++ < 8) ||
612                     (qla82xx_pci_set_window_warning_count%64 == 0)) {
613                         ql_log(ql_log_warn, vha, 0xb007,
614                             "%s: Warning:%s Unknown address range!.\n",
615                             __func__, QLA2XXX_DRIVER_NAME);
616                 }
617                 addr = -1UL;
618         }
619         return addr;
620 }
621
622 /* check if address is in the same windows as the previous access */
623 static int qla82xx_pci_is_same_window(struct qla_hw_data *ha,
624         unsigned long long addr)
625 {
626         int                     window;
627         unsigned long long      qdr_max;
628
629         qdr_max = QLA82XX_P3_ADDR_QDR_NET_MAX;
630
631         /* DDR network side */
632         if (addr_in_range(addr, QLA82XX_ADDR_DDR_NET,
633                 QLA82XX_ADDR_DDR_NET_MAX))
634                 BUG();
635         else if (addr_in_range(addr, QLA82XX_ADDR_OCM0,
636                 QLA82XX_ADDR_OCM0_MAX))
637                 return 1;
638         else if (addr_in_range(addr, QLA82XX_ADDR_OCM1,
639                 QLA82XX_ADDR_OCM1_MAX))
640                 return 1;
641         else if (addr_in_range(addr, QLA82XX_ADDR_QDR_NET, qdr_max)) {
642                 /* QDR network side */
643                 window = ((addr - QLA82XX_ADDR_QDR_NET) >> 22) & 0x3f;
644                 if (ha->qdr_sn_window == window)
645                         return 1;
646         }
647         return 0;
648 }
649
650 static int qla82xx_pci_mem_read_direct(struct qla_hw_data *ha,
651         u64 off, void *data, int size)
652 {
653         unsigned long   flags;
654         void __iomem *addr = NULL;
655         int             ret = 0;
656         u64             start;
657         uint8_t __iomem  *mem_ptr = NULL;
658         unsigned long   mem_base;
659         unsigned long   mem_page;
660         scsi_qla_host_t *vha = pci_get_drvdata(ha->pdev);
661
662         write_lock_irqsave(&ha->hw_lock, flags);
663
664         /*
665          * If attempting to access unknown address or straddle hw windows,
666          * do not access.
667          */
668         start = qla82xx_pci_set_window(ha, off);
669         if ((start == -1UL) ||
670                 (qla82xx_pci_is_same_window(ha, off + size - 1) == 0)) {
671                 write_unlock_irqrestore(&ha->hw_lock, flags);
672                 ql_log(ql_log_fatal, vha, 0xb008,
673                     "%s out of bound pci memory "
674                     "access, offset is 0x%llx.\n",
675                     QLA2XXX_DRIVER_NAME, off);
676                 return -1;
677         }
678
679         write_unlock_irqrestore(&ha->hw_lock, flags);
680         mem_base = pci_resource_start(ha->pdev, 0);
681         mem_page = start & PAGE_MASK;
682         /* Map two pages whenever user tries to access addresses in two
683         * consecutive pages.
684         */
685         if (mem_page != ((start + size - 1) & PAGE_MASK))
686                 mem_ptr = ioremap(mem_base + mem_page, PAGE_SIZE * 2);
687         else
688                 mem_ptr = ioremap(mem_base + mem_page, PAGE_SIZE);
689         if (mem_ptr == NULL) {
690                 *(u8  *)data = 0;
691                 return -1;
692         }
693         addr = mem_ptr;
694         addr += start & (PAGE_SIZE - 1);
695         write_lock_irqsave(&ha->hw_lock, flags);
696
697         switch (size) {
698         case 1:
699                 *(u8  *)data = readb(addr);
700                 break;
701         case 2:
702                 *(u16 *)data = readw(addr);
703                 break;
704         case 4:
705                 *(u32 *)data = readl(addr);
706                 break;
707         case 8:
708                 *(u64 *)data = readq(addr);
709                 break;
710         default:
711                 ret = -1;
712                 break;
713         }
714         write_unlock_irqrestore(&ha->hw_lock, flags);
715
716         if (mem_ptr)
717                 iounmap(mem_ptr);
718         return ret;
719 }
720
721 static int
722 qla82xx_pci_mem_write_direct(struct qla_hw_data *ha,
723         u64 off, void *data, int size)
724 {
725         unsigned long   flags;
726         void  __iomem *addr = NULL;
727         int             ret = 0;
728         u64             start;
729         uint8_t __iomem *mem_ptr = NULL;
730         unsigned long   mem_base;
731         unsigned long   mem_page;
732         scsi_qla_host_t *vha = pci_get_drvdata(ha->pdev);
733
734         write_lock_irqsave(&ha->hw_lock, flags);
735
736         /*
737          * If attempting to access unknown address or straddle hw windows,
738          * do not access.
739          */
740         start = qla82xx_pci_set_window(ha, off);
741         if ((start == -1UL) ||
742                 (qla82xx_pci_is_same_window(ha, off + size - 1) == 0)) {
743                 write_unlock_irqrestore(&ha->hw_lock, flags);
744                 ql_log(ql_log_fatal, vha, 0xb009,
745                     "%s out of bound memory "
746                     "access, offset is 0x%llx.\n",
747                     QLA2XXX_DRIVER_NAME, off);
748                 return -1;
749         }
750
751         write_unlock_irqrestore(&ha->hw_lock, flags);
752         mem_base = pci_resource_start(ha->pdev, 0);
753         mem_page = start & PAGE_MASK;
754         /* Map two pages whenever user tries to access addresses in two
755          * consecutive pages.
756          */
757         if (mem_page != ((start + size - 1) & PAGE_MASK))
758                 mem_ptr = ioremap(mem_base + mem_page, PAGE_SIZE*2);
759         else
760                 mem_ptr = ioremap(mem_base + mem_page, PAGE_SIZE);
761         if (mem_ptr == NULL)
762                 return -1;
763
764         addr = mem_ptr;
765         addr += start & (PAGE_SIZE - 1);
766         write_lock_irqsave(&ha->hw_lock, flags);
767
768         switch (size) {
769         case 1:
770                 writeb(*(u8  *)data, addr);
771                 break;
772         case 2:
773                 writew(*(u16 *)data, addr);
774                 break;
775         case 4:
776                 writel(*(u32 *)data, addr);
777                 break;
778         case 8:
779                 writeq(*(u64 *)data, addr);
780                 break;
781         default:
782                 ret = -1;
783                 break;
784         }
785         write_unlock_irqrestore(&ha->hw_lock, flags);
786         if (mem_ptr)
787                 iounmap(mem_ptr);
788         return ret;
789 }
790
791 #define MTU_FUDGE_FACTOR 100
792 static unsigned long
793 qla82xx_decode_crb_addr(unsigned long addr)
794 {
795         int i;
796         unsigned long base_addr, offset, pci_base;
797
798         if (!qla82xx_crb_table_initialized)
799                 qla82xx_crb_addr_transform_setup();
800
801         pci_base = ADDR_ERROR;
802         base_addr = addr & 0xfff00000;
803         offset = addr & 0x000fffff;
804
805         for (i = 0; i < MAX_CRB_XFORM; i++) {
806                 if (crb_addr_xform[i] == base_addr) {
807                         pci_base = i << 20;
808                         break;
809                 }
810         }
811         if (pci_base == ADDR_ERROR)
812                 return pci_base;
813         return pci_base + offset;
814 }
815
816 static long rom_max_timeout = 100;
817 static long qla82xx_rom_lock_timeout = 100;
818
819 static int
820 qla82xx_rom_lock(struct qla_hw_data *ha)
821 {
822         int done = 0, timeout = 0;
823         uint32_t lock_owner = 0;
824         scsi_qla_host_t *vha = pci_get_drvdata(ha->pdev);
825
826         while (!done) {
827                 /* acquire semaphore2 from PCI HW block */
828                 done = qla82xx_rd_32(ha, QLA82XX_PCIE_REG(PCIE_SEM2_LOCK));
829                 if (done == 1)
830                         break;
831                 if (timeout >= qla82xx_rom_lock_timeout) {
832                         lock_owner = qla82xx_rd_32(ha, QLA82XX_ROM_LOCK_ID);
833                         ql_dbg(ql_dbg_p3p, vha, 0xb157,
834                             "%s: Simultaneous flash access by following ports, active port = %d: accessing port = %d",
835                             __func__, ha->portnum, lock_owner);
836                         return -1;
837                 }
838                 timeout++;
839         }
840         qla82xx_wr_32(ha, QLA82XX_ROM_LOCK_ID, ha->portnum);
841         return 0;
842 }
843
844 static void
845 qla82xx_rom_unlock(struct qla_hw_data *ha)
846 {
847         qla82xx_wr_32(ha, QLA82XX_ROM_LOCK_ID, 0xffffffff);
848         qla82xx_rd_32(ha, QLA82XX_PCIE_REG(PCIE_SEM2_UNLOCK));
849 }
850
851 static int
852 qla82xx_wait_rom_busy(struct qla_hw_data *ha)
853 {
854         long timeout = 0;
855         long done = 0 ;
856         scsi_qla_host_t *vha = pci_get_drvdata(ha->pdev);
857
858         while (done == 0) {
859                 done = qla82xx_rd_32(ha, QLA82XX_ROMUSB_GLB_STATUS);
860                 done &= 4;
861                 timeout++;
862                 if (timeout >= rom_max_timeout) {
863                         ql_dbg(ql_dbg_p3p, vha, 0xb00a,
864                             "%s: Timeout reached waiting for rom busy.\n",
865                             QLA2XXX_DRIVER_NAME);
866                         return -1;
867                 }
868         }
869         return 0;
870 }
871
872 static int
873 qla82xx_wait_rom_done(struct qla_hw_data *ha)
874 {
875         long timeout = 0;
876         long done = 0 ;
877         scsi_qla_host_t *vha = pci_get_drvdata(ha->pdev);
878
879         while (done == 0) {
880                 done = qla82xx_rd_32(ha, QLA82XX_ROMUSB_GLB_STATUS);
881                 done &= 2;
882                 timeout++;
883                 if (timeout >= rom_max_timeout) {
884                         ql_dbg(ql_dbg_p3p, vha, 0xb00b,
885                             "%s: Timeout reached waiting for rom done.\n",
886                             QLA2XXX_DRIVER_NAME);
887                         return -1;
888                 }
889         }
890         return 0;
891 }
892
893 static int
894 qla82xx_md_rw_32(struct qla_hw_data *ha, uint32_t off, u32 data, uint8_t flag)
895 {
896         uint32_t  off_value, rval = 0;
897
898         wrt_reg_dword(CRB_WINDOW_2M + ha->nx_pcibase, off & 0xFFFF0000);
899
900         /* Read back value to make sure write has gone through */
901         rd_reg_dword(CRB_WINDOW_2M + ha->nx_pcibase);
902         off_value  = (off & 0x0000FFFF);
903
904         if (flag)
905                 wrt_reg_dword(off_value + CRB_INDIRECT_2M + ha->nx_pcibase,
906                               data);
907         else
908                 rval = rd_reg_dword(off_value + CRB_INDIRECT_2M +
909                                     ha->nx_pcibase);
910
911         return rval;
912 }
913
914 static int
915 qla82xx_do_rom_fast_read(struct qla_hw_data *ha, int addr, int *valp)
916 {
917         /* Dword reads to flash. */
918         qla82xx_md_rw_32(ha, MD_DIRECT_ROM_WINDOW, (addr & 0xFFFF0000), 1);
919         *valp = qla82xx_md_rw_32(ha, MD_DIRECT_ROM_READ_BASE +
920             (addr & 0x0000FFFF), 0, 0);
921
922         return 0;
923 }
924
925 static int
926 qla82xx_rom_fast_read(struct qla_hw_data *ha, int addr, int *valp)
927 {
928         int ret, loops = 0;
929         uint32_t lock_owner = 0;
930         scsi_qla_host_t *vha = pci_get_drvdata(ha->pdev);
931
932         while ((qla82xx_rom_lock(ha) != 0) && (loops < 50000)) {
933                 udelay(100);
934                 schedule();
935                 loops++;
936         }
937         if (loops >= 50000) {
938                 lock_owner = qla82xx_rd_32(ha, QLA82XX_ROM_LOCK_ID);
939                 ql_log(ql_log_fatal, vha, 0x00b9,
940                     "Failed to acquire SEM2 lock, Lock Owner %u.\n",
941                     lock_owner);
942                 return -1;
943         }
944         ret = qla82xx_do_rom_fast_read(ha, addr, valp);
945         qla82xx_rom_unlock(ha);
946         return ret;
947 }
948
949 static int
950 qla82xx_read_status_reg(struct qla_hw_data *ha, uint32_t *val)
951 {
952         scsi_qla_host_t *vha = pci_get_drvdata(ha->pdev);
953
954         qla82xx_wr_32(ha, QLA82XX_ROMUSB_ROM_INSTR_OPCODE, M25P_INSTR_RDSR);
955         qla82xx_wait_rom_busy(ha);
956         if (qla82xx_wait_rom_done(ha)) {
957                 ql_log(ql_log_warn, vha, 0xb00c,
958                     "Error waiting for rom done.\n");
959                 return -1;
960         }
961         *val = qla82xx_rd_32(ha, QLA82XX_ROMUSB_ROM_RDATA);
962         return 0;
963 }
964
965 static int
966 qla82xx_flash_wait_write_finish(struct qla_hw_data *ha)
967 {
968         uint32_t val;
969         int i, ret;
970         scsi_qla_host_t *vha = pci_get_drvdata(ha->pdev);
971
972         qla82xx_wr_32(ha, QLA82XX_ROMUSB_ROM_ABYTE_CNT, 0);
973         for (i = 0; i < 50000; i++) {
974                 ret = qla82xx_read_status_reg(ha, &val);
975                 if (ret < 0 || (val & 1) == 0)
976                         return ret;
977                 udelay(10);
978                 cond_resched();
979         }
980         ql_log(ql_log_warn, vha, 0xb00d,
981                "Timeout reached waiting for write finish.\n");
982         return -1;
983 }
984
985 static int
986 qla82xx_flash_set_write_enable(struct qla_hw_data *ha)
987 {
988         uint32_t val;
989
990         qla82xx_wait_rom_busy(ha);
991         qla82xx_wr_32(ha, QLA82XX_ROMUSB_ROM_ABYTE_CNT, 0);
992         qla82xx_wr_32(ha, QLA82XX_ROMUSB_ROM_INSTR_OPCODE, M25P_INSTR_WREN);
993         qla82xx_wait_rom_busy(ha);
994         if (qla82xx_wait_rom_done(ha))
995                 return -1;
996         if (qla82xx_read_status_reg(ha, &val) != 0)
997                 return -1;
998         if ((val & 2) != 2)
999                 return -1;
1000         return 0;
1001 }
1002
1003 static int
1004 qla82xx_write_status_reg(struct qla_hw_data *ha, uint32_t val)
1005 {
1006         scsi_qla_host_t *vha = pci_get_drvdata(ha->pdev);
1007
1008         if (qla82xx_flash_set_write_enable(ha))
1009                 return -1;
1010         qla82xx_wr_32(ha, QLA82XX_ROMUSB_ROM_WDATA, val);
1011         qla82xx_wr_32(ha, QLA82XX_ROMUSB_ROM_INSTR_OPCODE, 0x1);
1012         if (qla82xx_wait_rom_done(ha)) {
1013                 ql_log(ql_log_warn, vha, 0xb00e,
1014                     "Error waiting for rom done.\n");
1015                 return -1;
1016         }
1017         return qla82xx_flash_wait_write_finish(ha);
1018 }
1019
1020 static int
1021 qla82xx_write_disable_flash(struct qla_hw_data *ha)
1022 {
1023         scsi_qla_host_t *vha = pci_get_drvdata(ha->pdev);
1024
1025         qla82xx_wr_32(ha, QLA82XX_ROMUSB_ROM_INSTR_OPCODE, M25P_INSTR_WRDI);
1026         if (qla82xx_wait_rom_done(ha)) {
1027                 ql_log(ql_log_warn, vha, 0xb00f,
1028                     "Error waiting for rom done.\n");
1029                 return -1;
1030         }
1031         return 0;
1032 }
1033
1034 static int
1035 ql82xx_rom_lock_d(struct qla_hw_data *ha)
1036 {
1037         int loops = 0;
1038         uint32_t lock_owner = 0;
1039         scsi_qla_host_t *vha = pci_get_drvdata(ha->pdev);
1040
1041         while ((qla82xx_rom_lock(ha) != 0) && (loops < 50000)) {
1042                 udelay(100);
1043                 cond_resched();
1044                 loops++;
1045         }
1046         if (loops >= 50000) {
1047                 lock_owner = qla82xx_rd_32(ha, QLA82XX_ROM_LOCK_ID);
1048                 ql_log(ql_log_warn, vha, 0xb010,
1049                     "ROM lock failed, Lock Owner %u.\n", lock_owner);
1050                 return -1;
1051         }
1052         return 0;
1053 }
1054
1055 static int
1056 qla82xx_write_flash_dword(struct qla_hw_data *ha, uint32_t flashaddr,
1057         uint32_t data)
1058 {
1059         int ret = 0;
1060         scsi_qla_host_t *vha = pci_get_drvdata(ha->pdev);
1061
1062         ret = ql82xx_rom_lock_d(ha);
1063         if (ret < 0) {
1064                 ql_log(ql_log_warn, vha, 0xb011,
1065                     "ROM lock failed.\n");
1066                 return ret;
1067         }
1068
1069         if (qla82xx_flash_set_write_enable(ha))
1070                 goto done_write;
1071
1072         qla82xx_wr_32(ha, QLA82XX_ROMUSB_ROM_WDATA, data);
1073         qla82xx_wr_32(ha, QLA82XX_ROMUSB_ROM_ADDRESS, flashaddr);
1074         qla82xx_wr_32(ha, QLA82XX_ROMUSB_ROM_ABYTE_CNT, 3);
1075         qla82xx_wr_32(ha, QLA82XX_ROMUSB_ROM_INSTR_OPCODE, M25P_INSTR_PP);
1076         qla82xx_wait_rom_busy(ha);
1077         if (qla82xx_wait_rom_done(ha)) {
1078                 ql_log(ql_log_warn, vha, 0xb012,
1079                     "Error waiting for rom done.\n");
1080                 ret = -1;
1081                 goto done_write;
1082         }
1083
1084         ret = qla82xx_flash_wait_write_finish(ha);
1085
1086 done_write:
1087         qla82xx_rom_unlock(ha);
1088         return ret;
1089 }
1090
1091 /* This routine does CRB initialize sequence
1092  *  to put the ISP into operational state
1093  */
1094 static int
1095 qla82xx_pinit_from_rom(scsi_qla_host_t *vha)
1096 {
1097         int addr, val;
1098         int i ;
1099         struct crb_addr_pair *buf;
1100         unsigned long off;
1101         unsigned offset, n;
1102         struct qla_hw_data *ha = vha->hw;
1103
1104         struct crb_addr_pair {
1105                 long addr;
1106                 long data;
1107         };
1108
1109         /* Halt all the individual PEGs and other blocks of the ISP */
1110         qla82xx_rom_lock(ha);
1111
1112         /* disable all I2Q */
1113         qla82xx_wr_32(ha, QLA82XX_CRB_I2Q + 0x10, 0x0);
1114         qla82xx_wr_32(ha, QLA82XX_CRB_I2Q + 0x14, 0x0);
1115         qla82xx_wr_32(ha, QLA82XX_CRB_I2Q + 0x18, 0x0);
1116         qla82xx_wr_32(ha, QLA82XX_CRB_I2Q + 0x1c, 0x0);
1117         qla82xx_wr_32(ha, QLA82XX_CRB_I2Q + 0x20, 0x0);
1118         qla82xx_wr_32(ha, QLA82XX_CRB_I2Q + 0x24, 0x0);
1119
1120         /* disable all niu interrupts */
1121         qla82xx_wr_32(ha, QLA82XX_CRB_NIU + 0x40, 0xff);
1122         /* disable xge rx/tx */
1123         qla82xx_wr_32(ha, QLA82XX_CRB_NIU + 0x70000, 0x00);
1124         /* disable xg1 rx/tx */
1125         qla82xx_wr_32(ha, QLA82XX_CRB_NIU + 0x80000, 0x00);
1126         /* disable sideband mac */
1127         qla82xx_wr_32(ha, QLA82XX_CRB_NIU + 0x90000, 0x00);
1128         /* disable ap0 mac */
1129         qla82xx_wr_32(ha, QLA82XX_CRB_NIU + 0xa0000, 0x00);
1130         /* disable ap1 mac */
1131         qla82xx_wr_32(ha, QLA82XX_CRB_NIU + 0xb0000, 0x00);
1132
1133         /* halt sre */
1134         val = qla82xx_rd_32(ha, QLA82XX_CRB_SRE + 0x1000);
1135         qla82xx_wr_32(ha, QLA82XX_CRB_SRE + 0x1000, val & (~(0x1)));
1136
1137         /* halt epg */
1138         qla82xx_wr_32(ha, QLA82XX_CRB_EPG + 0x1300, 0x1);
1139
1140         /* halt timers */
1141         qla82xx_wr_32(ha, QLA82XX_CRB_TIMER + 0x0, 0x0);
1142         qla82xx_wr_32(ha, QLA82XX_CRB_TIMER + 0x8, 0x0);
1143         qla82xx_wr_32(ha, QLA82XX_CRB_TIMER + 0x10, 0x0);
1144         qla82xx_wr_32(ha, QLA82XX_CRB_TIMER + 0x18, 0x0);
1145         qla82xx_wr_32(ha, QLA82XX_CRB_TIMER + 0x100, 0x0);
1146         qla82xx_wr_32(ha, QLA82XX_CRB_TIMER + 0x200, 0x0);
1147
1148         /* halt pegs */
1149         qla82xx_wr_32(ha, QLA82XX_CRB_PEG_NET_0 + 0x3c, 1);
1150         qla82xx_wr_32(ha, QLA82XX_CRB_PEG_NET_1 + 0x3c, 1);
1151         qla82xx_wr_32(ha, QLA82XX_CRB_PEG_NET_2 + 0x3c, 1);
1152         qla82xx_wr_32(ha, QLA82XX_CRB_PEG_NET_3 + 0x3c, 1);
1153         qla82xx_wr_32(ha, QLA82XX_CRB_PEG_NET_4 + 0x3c, 1);
1154         msleep(20);
1155
1156         /* big hammer */
1157         if (test_bit(ABORT_ISP_ACTIVE, &vha->dpc_flags))
1158                 /* don't reset CAM block on reset */
1159                 qla82xx_wr_32(ha, QLA82XX_ROMUSB_GLB_SW_RESET, 0xfeffffff);
1160         else
1161                 qla82xx_wr_32(ha, QLA82XX_ROMUSB_GLB_SW_RESET, 0xffffffff);
1162         qla82xx_rom_unlock(ha);
1163
1164         /* Read the signature value from the flash.
1165          * Offset 0: Contain signature (0xcafecafe)
1166          * Offset 4: Offset and number of addr/value pairs
1167          * that present in CRB initialize sequence
1168          */
1169         n = 0;
1170         if (qla82xx_rom_fast_read(ha, 0, &n) != 0 || n != 0xcafecafeUL ||
1171             qla82xx_rom_fast_read(ha, 4, &n) != 0) {
1172                 ql_log(ql_log_fatal, vha, 0x006e,
1173                     "Error Reading crb_init area: n: %08x.\n", n);
1174                 return -1;
1175         }
1176
1177         /* Offset in flash = lower 16 bits
1178          * Number of entries = upper 16 bits
1179          */
1180         offset = n & 0xffffU;
1181         n = (n >> 16) & 0xffffU;
1182
1183         /* number of addr/value pair should not exceed 1024 entries */
1184         if (n  >= 1024) {
1185                 ql_log(ql_log_fatal, vha, 0x0071,
1186                     "Card flash not initialized:n=0x%x.\n", n);
1187                 return -1;
1188         }
1189
1190         ql_log(ql_log_info, vha, 0x0072,
1191             "%d CRB init values found in ROM.\n", n);
1192
1193         buf = kmalloc_array(n, sizeof(struct crb_addr_pair), GFP_KERNEL);
1194         if (buf == NULL) {
1195                 ql_log(ql_log_fatal, vha, 0x010c,
1196                     "Unable to allocate memory.\n");
1197                 return -ENOMEM;
1198         }
1199
1200         for (i = 0; i < n; i++) {
1201                 if (qla82xx_rom_fast_read(ha, 8*i + 4*offset, &val) != 0 ||
1202                     qla82xx_rom_fast_read(ha, 8*i + 4*offset + 4, &addr) != 0) {
1203                         kfree(buf);
1204                         return -1;
1205                 }
1206
1207                 buf[i].addr = addr;
1208                 buf[i].data = val;
1209         }
1210
1211         for (i = 0; i < n; i++) {
1212                 /* Translate internal CRB initialization
1213                  * address to PCI bus address
1214                  */
1215                 off = qla82xx_decode_crb_addr((unsigned long)buf[i].addr) +
1216                     QLA82XX_PCI_CRBSPACE;
1217                 /* Not all CRB  addr/value pair to be written,
1218                  * some of them are skipped
1219                  */
1220
1221                 /* skipping cold reboot MAGIC */
1222                 if (off == QLA82XX_CAM_RAM(0x1fc))
1223                         continue;
1224
1225                 /* do not reset PCI */
1226                 if (off == (ROMUSB_GLB + 0xbc))
1227                         continue;
1228
1229                 /* skip core clock, so that firmware can increase the clock */
1230                 if (off == (ROMUSB_GLB + 0xc8))
1231                         continue;
1232
1233                 /* skip the function enable register */
1234                 if (off == QLA82XX_PCIE_REG(PCIE_SETUP_FUNCTION))
1235                         continue;
1236
1237                 if (off == QLA82XX_PCIE_REG(PCIE_SETUP_FUNCTION2))
1238                         continue;
1239
1240                 if ((off & 0x0ff00000) == QLA82XX_CRB_SMB)
1241                         continue;
1242
1243                 if ((off & 0x0ff00000) == QLA82XX_CRB_DDR_NET)
1244                         continue;
1245
1246                 if (off == ADDR_ERROR) {
1247                         ql_log(ql_log_fatal, vha, 0x0116,
1248                             "Unknown addr: 0x%08lx.\n", buf[i].addr);
1249                         continue;
1250                 }
1251
1252                 qla82xx_wr_32(ha, off, buf[i].data);
1253
1254                 /* ISP requires much bigger delay to settle down,
1255                  * else crb_window returns 0xffffffff
1256                  */
1257                 if (off == QLA82XX_ROMUSB_GLB_SW_RESET)
1258                         msleep(1000);
1259
1260                 /* ISP requires millisec delay between
1261                  * successive CRB register updation
1262                  */
1263                 msleep(1);
1264         }
1265
1266         kfree(buf);
1267
1268         /* Resetting the data and instruction cache */
1269         qla82xx_wr_32(ha, QLA82XX_CRB_PEG_NET_D+0xec, 0x1e);
1270         qla82xx_wr_32(ha, QLA82XX_CRB_PEG_NET_D+0x4c, 8);
1271         qla82xx_wr_32(ha, QLA82XX_CRB_PEG_NET_I+0x4c, 8);
1272
1273         /* Clear all protocol processing engines */
1274         qla82xx_wr_32(ha, QLA82XX_CRB_PEG_NET_0+0x8, 0);
1275         qla82xx_wr_32(ha, QLA82XX_CRB_PEG_NET_0+0xc, 0);
1276         qla82xx_wr_32(ha, QLA82XX_CRB_PEG_NET_1+0x8, 0);
1277         qla82xx_wr_32(ha, QLA82XX_CRB_PEG_NET_1+0xc, 0);
1278         qla82xx_wr_32(ha, QLA82XX_CRB_PEG_NET_2+0x8, 0);
1279         qla82xx_wr_32(ha, QLA82XX_CRB_PEG_NET_2+0xc, 0);
1280         qla82xx_wr_32(ha, QLA82XX_CRB_PEG_NET_3+0x8, 0);
1281         qla82xx_wr_32(ha, QLA82XX_CRB_PEG_NET_3+0xc, 0);
1282         return 0;
1283 }
1284
1285 static int
1286 qla82xx_pci_mem_write_2M(struct qla_hw_data *ha,
1287                 u64 off, void *data, int size)
1288 {
1289         int i, j, ret = 0, loop, sz[2], off0;
1290         int scale, shift_amount, startword;
1291         uint32_t temp;
1292         uint64_t off8, mem_crb, tmpw, word[2] = {0, 0};
1293
1294         /*
1295          * If not MN, go check for MS or invalid.
1296          */
1297         if (off >= QLA82XX_ADDR_QDR_NET && off <= QLA82XX_P3_ADDR_QDR_NET_MAX)
1298                 mem_crb = QLA82XX_CRB_QDR_NET;
1299         else {
1300                 mem_crb = QLA82XX_CRB_DDR_NET;
1301                 if (qla82xx_pci_mem_bound_check(ha, off, size) == 0)
1302                         return qla82xx_pci_mem_write_direct(ha,
1303                             off, data, size);
1304         }
1305
1306         off0 = off & 0x7;
1307         sz[0] = (size < (8 - off0)) ? size : (8 - off0);
1308         sz[1] = size - sz[0];
1309
1310         off8 = off & 0xfffffff0;
1311         loop = (((off & 0xf) + size - 1) >> 4) + 1;
1312         shift_amount = 4;
1313         scale = 2;
1314         startword = (off & 0xf)/8;
1315
1316         for (i = 0; i < loop; i++) {
1317                 if (qla82xx_pci_mem_read_2M(ha, off8 +
1318                     (i << shift_amount), &word[i * scale], 8))
1319                         return -1;
1320         }
1321
1322         switch (size) {
1323         case 1:
1324                 tmpw = *((uint8_t *)data);
1325                 break;
1326         case 2:
1327                 tmpw = *((uint16_t *)data);
1328                 break;
1329         case 4:
1330                 tmpw = *((uint32_t *)data);
1331                 break;
1332         case 8:
1333         default:
1334                 tmpw = *((uint64_t *)data);
1335                 break;
1336         }
1337
1338         if (sz[0] == 8) {
1339                 word[startword] = tmpw;
1340         } else {
1341                 word[startword] &=
1342                         ~((~(~0ULL << (sz[0] * 8))) << (off0 * 8));
1343                 word[startword] |= tmpw << (off0 * 8);
1344         }
1345         if (sz[1] != 0) {
1346                 word[startword+1] &= ~(~0ULL << (sz[1] * 8));
1347                 word[startword+1] |= tmpw >> (sz[0] * 8);
1348         }
1349
1350         for (i = 0; i < loop; i++) {
1351                 temp = off8 + (i << shift_amount);
1352                 qla82xx_wr_32(ha, mem_crb+MIU_TEST_AGT_ADDR_LO, temp);
1353                 temp = 0;
1354                 qla82xx_wr_32(ha, mem_crb+MIU_TEST_AGT_ADDR_HI, temp);
1355                 temp = word[i * scale] & 0xffffffff;
1356                 qla82xx_wr_32(ha, mem_crb+MIU_TEST_AGT_WRDATA_LO, temp);
1357                 temp = (word[i * scale] >> 32) & 0xffffffff;
1358                 qla82xx_wr_32(ha, mem_crb+MIU_TEST_AGT_WRDATA_HI, temp);
1359                 temp = word[i*scale + 1] & 0xffffffff;
1360                 qla82xx_wr_32(ha, mem_crb +
1361                     MIU_TEST_AGT_WRDATA_UPPER_LO, temp);
1362                 temp = (word[i*scale + 1] >> 32) & 0xffffffff;
1363                 qla82xx_wr_32(ha, mem_crb +
1364                     MIU_TEST_AGT_WRDATA_UPPER_HI, temp);
1365
1366                 temp = MIU_TA_CTL_ENABLE | MIU_TA_CTL_WRITE;
1367                 qla82xx_wr_32(ha, mem_crb + MIU_TEST_AGT_CTRL, temp);
1368                 temp = MIU_TA_CTL_START | MIU_TA_CTL_ENABLE | MIU_TA_CTL_WRITE;
1369                 qla82xx_wr_32(ha, mem_crb + MIU_TEST_AGT_CTRL, temp);
1370
1371                 for (j = 0; j < MAX_CTL_CHECK; j++) {
1372                         temp = qla82xx_rd_32(ha, mem_crb + MIU_TEST_AGT_CTRL);
1373                         if ((temp & MIU_TA_CTL_BUSY) == 0)
1374                                 break;
1375                 }
1376
1377                 if (j >= MAX_CTL_CHECK) {
1378                         if (printk_ratelimit())
1379                                 dev_err(&ha->pdev->dev,
1380                                     "failed to write through agent.\n");
1381                         ret = -1;
1382                         break;
1383                 }
1384         }
1385
1386         return ret;
1387 }
1388
1389 static int
1390 qla82xx_fw_load_from_flash(struct qla_hw_data *ha)
1391 {
1392         int  i;
1393         long size = 0;
1394         long flashaddr = ha->flt_region_bootload << 2;
1395         long memaddr = BOOTLD_START;
1396         u64 data;
1397         u32 high, low;
1398
1399         size = (IMAGE_START - BOOTLD_START) / 8;
1400
1401         for (i = 0; i < size; i++) {
1402                 if ((qla82xx_rom_fast_read(ha, flashaddr, (int *)&low)) ||
1403                     (qla82xx_rom_fast_read(ha, flashaddr + 4, (int *)&high))) {
1404                         return -1;
1405                 }
1406                 data = ((u64)high << 32) | low ;
1407                 qla82xx_pci_mem_write_2M(ha, memaddr, &data, 8);
1408                 flashaddr += 8;
1409                 memaddr += 8;
1410
1411                 if (i % 0x1000 == 0)
1412                         msleep(1);
1413         }
1414         udelay(100);
1415         read_lock(&ha->hw_lock);
1416         qla82xx_wr_32(ha, QLA82XX_CRB_PEG_NET_0 + 0x18, 0x1020);
1417         qla82xx_wr_32(ha, QLA82XX_ROMUSB_GLB_SW_RESET, 0x80001e);
1418         read_unlock(&ha->hw_lock);
1419         return 0;
1420 }
1421
1422 int
1423 qla82xx_pci_mem_read_2M(struct qla_hw_data *ha,
1424                 u64 off, void *data, int size)
1425 {
1426         int i, j = 0, k, start, end, loop, sz[2], off0[2];
1427         int           shift_amount;
1428         uint32_t      temp;
1429         uint64_t      off8, val, mem_crb, word[2] = {0, 0};
1430
1431         /*
1432          * If not MN, go check for MS or invalid.
1433          */
1434
1435         if (off >= QLA82XX_ADDR_QDR_NET && off <= QLA82XX_P3_ADDR_QDR_NET_MAX)
1436                 mem_crb = QLA82XX_CRB_QDR_NET;
1437         else {
1438                 mem_crb = QLA82XX_CRB_DDR_NET;
1439                 if (qla82xx_pci_mem_bound_check(ha, off, size) == 0)
1440                         return qla82xx_pci_mem_read_direct(ha,
1441                             off, data, size);
1442         }
1443
1444         off8 = off & 0xfffffff0;
1445         off0[0] = off & 0xf;
1446         sz[0] = (size < (16 - off0[0])) ? size : (16 - off0[0]);
1447         shift_amount = 4;
1448         loop = ((off0[0] + size - 1) >> shift_amount) + 1;
1449         off0[1] = 0;
1450         sz[1] = size - sz[0];
1451
1452         for (i = 0; i < loop; i++) {
1453                 temp = off8 + (i << shift_amount);
1454                 qla82xx_wr_32(ha, mem_crb + MIU_TEST_AGT_ADDR_LO, temp);
1455                 temp = 0;
1456                 qla82xx_wr_32(ha, mem_crb + MIU_TEST_AGT_ADDR_HI, temp);
1457                 temp = MIU_TA_CTL_ENABLE;
1458                 qla82xx_wr_32(ha, mem_crb + MIU_TEST_AGT_CTRL, temp);
1459                 temp = MIU_TA_CTL_START | MIU_TA_CTL_ENABLE;
1460                 qla82xx_wr_32(ha, mem_crb + MIU_TEST_AGT_CTRL, temp);
1461
1462                 for (j = 0; j < MAX_CTL_CHECK; j++) {
1463                         temp = qla82xx_rd_32(ha, mem_crb + MIU_TEST_AGT_CTRL);
1464                         if ((temp & MIU_TA_CTL_BUSY) == 0)
1465                                 break;
1466                 }
1467
1468                 if (j >= MAX_CTL_CHECK) {
1469                         if (printk_ratelimit())
1470                                 dev_err(&ha->pdev->dev,
1471                                     "failed to read through agent.\n");
1472                         break;
1473                 }
1474
1475                 start = off0[i] >> 2;
1476                 end   = (off0[i] + sz[i] - 1) >> 2;
1477                 for (k = start; k <= end; k++) {
1478                         temp = qla82xx_rd_32(ha,
1479                                         mem_crb + MIU_TEST_AGT_RDDATA(k));
1480                         word[i] |= ((uint64_t)temp << (32 * (k & 1)));
1481                 }
1482         }
1483
1484         if (j >= MAX_CTL_CHECK)
1485                 return -1;
1486
1487         if ((off0[0] & 7) == 0) {
1488                 val = word[0];
1489         } else {
1490                 val = ((word[0] >> (off0[0] * 8)) & (~(~0ULL << (sz[0] * 8)))) |
1491                         ((word[1] & (~(~0ULL << (sz[1] * 8)))) << (sz[0] * 8));
1492         }
1493
1494         switch (size) {
1495         case 1:
1496                 *(uint8_t  *)data = val;
1497                 break;
1498         case 2:
1499                 *(uint16_t *)data = val;
1500                 break;
1501         case 4:
1502                 *(uint32_t *)data = val;
1503                 break;
1504         case 8:
1505                 *(uint64_t *)data = val;
1506                 break;
1507         }
1508         return 0;
1509 }
1510
1511
1512 static struct qla82xx_uri_table_desc *
1513 qla82xx_get_table_desc(const u8 *unirom, int section)
1514 {
1515         uint32_t i;
1516         struct qla82xx_uri_table_desc *directory =
1517                 (struct qla82xx_uri_table_desc *)&unirom[0];
1518         uint32_t offset;
1519         uint32_t tab_type;
1520         uint32_t entries = le32_to_cpu(directory->num_entries);
1521
1522         for (i = 0; i < entries; i++) {
1523                 offset = le32_to_cpu(directory->findex) +
1524                     (i * le32_to_cpu(directory->entry_size));
1525                 tab_type = get_unaligned_le32((u32 *)&unirom[offset] + 8);
1526
1527                 if (tab_type == section)
1528                         return (struct qla82xx_uri_table_desc *)&unirom[offset];
1529         }
1530
1531         return NULL;
1532 }
1533
1534 static struct qla82xx_uri_data_desc *
1535 qla82xx_get_data_desc(struct qla_hw_data *ha,
1536         u32 section, u32 idx_offset)
1537 {
1538         const u8 *unirom = ha->hablob->fw->data;
1539         int idx = get_unaligned_le32((u32 *)&unirom[ha->file_prd_off] +
1540                                      idx_offset);
1541         struct qla82xx_uri_table_desc *tab_desc = NULL;
1542         uint32_t offset;
1543
1544         tab_desc = qla82xx_get_table_desc(unirom, section);
1545         if (!tab_desc)
1546                 return NULL;
1547
1548         offset = le32_to_cpu(tab_desc->findex) +
1549             (le32_to_cpu(tab_desc->entry_size) * idx);
1550
1551         return (struct qla82xx_uri_data_desc *)&unirom[offset];
1552 }
1553
1554 static u8 *
1555 qla82xx_get_bootld_offset(struct qla_hw_data *ha)
1556 {
1557         u32 offset = BOOTLD_START;
1558         struct qla82xx_uri_data_desc *uri_desc = NULL;
1559
1560         if (ha->fw_type == QLA82XX_UNIFIED_ROMIMAGE) {
1561                 uri_desc = qla82xx_get_data_desc(ha,
1562                     QLA82XX_URI_DIR_SECT_BOOTLD, QLA82XX_URI_BOOTLD_IDX_OFF);
1563                 if (uri_desc)
1564                         offset = le32_to_cpu(uri_desc->findex);
1565         }
1566
1567         return (u8 *)&ha->hablob->fw->data[offset];
1568 }
1569
1570 static u32 qla82xx_get_fw_size(struct qla_hw_data *ha)
1571 {
1572         struct qla82xx_uri_data_desc *uri_desc = NULL;
1573
1574         if (ha->fw_type == QLA82XX_UNIFIED_ROMIMAGE) {
1575                 uri_desc =  qla82xx_get_data_desc(ha, QLA82XX_URI_DIR_SECT_FW,
1576                     QLA82XX_URI_FIRMWARE_IDX_OFF);
1577                 if (uri_desc)
1578                         return le32_to_cpu(uri_desc->size);
1579         }
1580
1581         return get_unaligned_le32(&ha->hablob->fw->data[FW_SIZE_OFFSET]);
1582 }
1583
1584 static u8 *
1585 qla82xx_get_fw_offs(struct qla_hw_data *ha)
1586 {
1587         u32 offset = IMAGE_START;
1588         struct qla82xx_uri_data_desc *uri_desc = NULL;
1589
1590         if (ha->fw_type == QLA82XX_UNIFIED_ROMIMAGE) {
1591                 uri_desc = qla82xx_get_data_desc(ha, QLA82XX_URI_DIR_SECT_FW,
1592                         QLA82XX_URI_FIRMWARE_IDX_OFF);
1593                 if (uri_desc)
1594                         offset = le32_to_cpu(uri_desc->findex);
1595         }
1596
1597         return (u8 *)&ha->hablob->fw->data[offset];
1598 }
1599
1600 /* PCI related functions */
1601 int qla82xx_pci_region_offset(struct pci_dev *pdev, int region)
1602 {
1603         unsigned long val = 0;
1604         u32 control;
1605
1606         switch (region) {
1607         case 0:
1608                 val = 0;
1609                 break;
1610         case 1:
1611                 pci_read_config_dword(pdev, QLA82XX_PCI_REG_MSIX_TBL, &control);
1612                 val = control + QLA82XX_MSIX_TBL_SPACE;
1613                 break;
1614         }
1615         return val;
1616 }
1617
1618
1619 int
1620 qla82xx_iospace_config(struct qla_hw_data *ha)
1621 {
1622         uint32_t len = 0;
1623
1624         if (pci_request_regions(ha->pdev, QLA2XXX_DRIVER_NAME)) {
1625                 ql_log_pci(ql_log_fatal, ha->pdev, 0x000c,
1626                     "Failed to reserver selected regions.\n");
1627                 goto iospace_error_exit;
1628         }
1629
1630         /* Use MMIO operations for all accesses. */
1631         if (!(pci_resource_flags(ha->pdev, 0) & IORESOURCE_MEM)) {
1632                 ql_log_pci(ql_log_fatal, ha->pdev, 0x000d,
1633                     "Region #0 not an MMIO resource, aborting.\n");
1634                 goto iospace_error_exit;
1635         }
1636
1637         len = pci_resource_len(ha->pdev, 0);
1638         ha->nx_pcibase = ioremap(pci_resource_start(ha->pdev, 0), len);
1639         if (!ha->nx_pcibase) {
1640                 ql_log_pci(ql_log_fatal, ha->pdev, 0x000e,
1641                     "Cannot remap pcibase MMIO, aborting.\n");
1642                 goto iospace_error_exit;
1643         }
1644
1645         /* Mapping of IO base pointer */
1646         if (IS_QLA8044(ha)) {
1647                 ha->iobase = ha->nx_pcibase;
1648         } else if (IS_QLA82XX(ha)) {
1649                 ha->iobase = ha->nx_pcibase + 0xbc000 + (ha->pdev->devfn << 11);
1650         }
1651
1652         if (!ql2xdbwr) {
1653                 ha->nxdb_wr_ptr = ioremap((pci_resource_start(ha->pdev, 4) +
1654                     (ha->pdev->devfn << 12)), 4);
1655                 if (!ha->nxdb_wr_ptr) {
1656                         ql_log_pci(ql_log_fatal, ha->pdev, 0x000f,
1657                             "Cannot remap MMIO, aborting.\n");
1658                         goto iospace_error_exit;
1659                 }
1660
1661                 /* Mapping of IO base pointer,
1662                  * door bell read and write pointer
1663                  */
1664                 ha->nxdb_rd_ptr = ha->nx_pcibase + (512 * 1024) +
1665                     (ha->pdev->devfn * 8);
1666         } else {
1667                 ha->nxdb_wr_ptr = (void __iomem *)(ha->pdev->devfn == 6 ?
1668                         QLA82XX_CAMRAM_DB1 :
1669                         QLA82XX_CAMRAM_DB2);
1670         }
1671
1672         ha->max_req_queues = ha->max_rsp_queues = 1;
1673         ha->msix_count = ha->max_rsp_queues + 1;
1674         ql_dbg_pci(ql_dbg_multiq, ha->pdev, 0xc006,
1675             "nx_pci_base=%p iobase=%p "
1676             "max_req_queues=%d msix_count=%d.\n",
1677             ha->nx_pcibase, ha->iobase,
1678             ha->max_req_queues, ha->msix_count);
1679         ql_dbg_pci(ql_dbg_init, ha->pdev, 0x0010,
1680             "nx_pci_base=%p iobase=%p "
1681             "max_req_queues=%d msix_count=%d.\n",
1682             ha->nx_pcibase, ha->iobase,
1683             ha->max_req_queues, ha->msix_count);
1684         return 0;
1685
1686 iospace_error_exit:
1687         return -ENOMEM;
1688 }
1689
1690 /* GS related functions */
1691
1692 /* Initialization related functions */
1693
1694 /**
1695  * qla82xx_pci_config() - Setup ISP82xx PCI configuration registers.
1696  * @vha: HA context
1697  *
1698  * Returns 0 on success.
1699 */
1700 int
1701 qla82xx_pci_config(scsi_qla_host_t *vha)
1702 {
1703         struct qla_hw_data *ha = vha->hw;
1704         int ret;
1705
1706         pci_set_master(ha->pdev);
1707         ret = pci_set_mwi(ha->pdev);
1708         ha->chip_revision = ha->pdev->revision;
1709         ql_dbg(ql_dbg_init, vha, 0x0043,
1710             "Chip revision:%d; pci_set_mwi() returned %d.\n",
1711             ha->chip_revision, ret);
1712         return 0;
1713 }
1714
1715 /**
1716  * qla82xx_reset_chip() - Setup ISP82xx PCI configuration registers.
1717  * @vha: HA context
1718  *
1719  * Returns 0 on success.
1720  */
1721 int
1722 qla82xx_reset_chip(scsi_qla_host_t *vha)
1723 {
1724         struct qla_hw_data *ha = vha->hw;
1725
1726         ha->isp_ops->disable_intrs(ha);
1727
1728         return QLA_SUCCESS;
1729 }
1730
1731 void qla82xx_config_rings(struct scsi_qla_host *vha)
1732 {
1733         struct qla_hw_data *ha = vha->hw;
1734         struct device_reg_82xx __iomem *reg = &ha->iobase->isp82;
1735         struct init_cb_81xx *icb;
1736         struct req_que *req = ha->req_q_map[0];
1737         struct rsp_que *rsp = ha->rsp_q_map[0];
1738
1739         /* Setup ring parameters in initialization control block. */
1740         icb = (struct init_cb_81xx *)ha->init_cb;
1741         icb->request_q_outpointer = cpu_to_le16(0);
1742         icb->response_q_inpointer = cpu_to_le16(0);
1743         icb->request_q_length = cpu_to_le16(req->length);
1744         icb->response_q_length = cpu_to_le16(rsp->length);
1745         put_unaligned_le64(req->dma, &icb->request_q_address);
1746         put_unaligned_le64(rsp->dma, &icb->response_q_address);
1747
1748         wrt_reg_dword(&reg->req_q_out[0], 0);
1749         wrt_reg_dword(&reg->rsp_q_in[0], 0);
1750         wrt_reg_dword(&reg->rsp_q_out[0], 0);
1751 }
1752
1753 static int
1754 qla82xx_fw_load_from_blob(struct qla_hw_data *ha)
1755 {
1756         u64 *ptr64;
1757         u32 i, flashaddr, size;
1758         __le64 data;
1759
1760         size = (IMAGE_START - BOOTLD_START) / 8;
1761
1762         ptr64 = (u64 *)qla82xx_get_bootld_offset(ha);
1763         flashaddr = BOOTLD_START;
1764
1765         for (i = 0; i < size; i++) {
1766                 data = cpu_to_le64(ptr64[i]);
1767                 if (qla82xx_pci_mem_write_2M(ha, flashaddr, &data, 8))
1768                         return -EIO;
1769                 flashaddr += 8;
1770         }
1771
1772         flashaddr = FLASH_ADDR_START;
1773         size = qla82xx_get_fw_size(ha) / 8;
1774         ptr64 = (u64 *)qla82xx_get_fw_offs(ha);
1775
1776         for (i = 0; i < size; i++) {
1777                 data = cpu_to_le64(ptr64[i]);
1778
1779                 if (qla82xx_pci_mem_write_2M(ha, flashaddr, &data, 8))
1780                         return -EIO;
1781                 flashaddr += 8;
1782         }
1783         udelay(100);
1784
1785         /* Write a magic value to CAMRAM register
1786          * at a specified offset to indicate
1787          * that all data is written and
1788          * ready for firmware to initialize.
1789          */
1790         qla82xx_wr_32(ha, QLA82XX_CAM_RAM(0x1fc), QLA82XX_BDINFO_MAGIC);
1791
1792         read_lock(&ha->hw_lock);
1793         qla82xx_wr_32(ha, QLA82XX_CRB_PEG_NET_0 + 0x18, 0x1020);
1794         qla82xx_wr_32(ha, QLA82XX_ROMUSB_GLB_SW_RESET, 0x80001e);
1795         read_unlock(&ha->hw_lock);
1796         return 0;
1797 }
1798
1799 static int
1800 qla82xx_set_product_offset(struct qla_hw_data *ha)
1801 {
1802         struct qla82xx_uri_table_desc *ptab_desc = NULL;
1803         const uint8_t *unirom = ha->hablob->fw->data;
1804         uint32_t i;
1805         uint32_t entries;
1806         uint32_t flags, file_chiprev, offset;
1807         uint8_t chiprev = ha->chip_revision;
1808         /* Hardcoding mn_present flag for P3P */
1809         int mn_present = 0;
1810         uint32_t flagbit;
1811
1812         ptab_desc = qla82xx_get_table_desc(unirom,
1813                  QLA82XX_URI_DIR_SECT_PRODUCT_TBL);
1814         if (!ptab_desc)
1815                 return -1;
1816
1817         entries = le32_to_cpu(ptab_desc->num_entries);
1818
1819         for (i = 0; i < entries; i++) {
1820                 offset = le32_to_cpu(ptab_desc->findex) +
1821                         (i * le32_to_cpu(ptab_desc->entry_size));
1822                 flags = le32_to_cpu(*((__le32 *)&unirom[offset] +
1823                         QLA82XX_URI_FLAGS_OFF));
1824                 file_chiprev = le32_to_cpu(*((__le32 *)&unirom[offset] +
1825                         QLA82XX_URI_CHIP_REV_OFF));
1826
1827                 flagbit = mn_present ? 1 : 2;
1828
1829                 if ((chiprev == file_chiprev) && ((1ULL << flagbit) & flags)) {
1830                         ha->file_prd_off = offset;
1831                         return 0;
1832                 }
1833         }
1834         return -1;
1835 }
1836
1837 static int
1838 qla82xx_validate_firmware_blob(scsi_qla_host_t *vha, uint8_t fw_type)
1839 {
1840         uint32_t val;
1841         uint32_t min_size;
1842         struct qla_hw_data *ha = vha->hw;
1843         const struct firmware *fw = ha->hablob->fw;
1844
1845         ha->fw_type = fw_type;
1846
1847         if (fw_type == QLA82XX_UNIFIED_ROMIMAGE) {
1848                 if (qla82xx_set_product_offset(ha))
1849                         return -EINVAL;
1850
1851                 min_size = QLA82XX_URI_FW_MIN_SIZE;
1852         } else {
1853                 val = get_unaligned_le32(&fw->data[QLA82XX_FW_MAGIC_OFFSET]);
1854                 if (val != QLA82XX_BDINFO_MAGIC)
1855                         return -EINVAL;
1856
1857                 min_size = QLA82XX_FW_MIN_SIZE;
1858         }
1859
1860         if (fw->size < min_size)
1861                 return -EINVAL;
1862         return 0;
1863 }
1864
1865 static int
1866 qla82xx_check_cmdpeg_state(struct qla_hw_data *ha)
1867 {
1868         u32 val = 0;
1869         int retries = 60;
1870         scsi_qla_host_t *vha = pci_get_drvdata(ha->pdev);
1871
1872         do {
1873                 read_lock(&ha->hw_lock);
1874                 val = qla82xx_rd_32(ha, CRB_CMDPEG_STATE);
1875                 read_unlock(&ha->hw_lock);
1876
1877                 switch (val) {
1878                 case PHAN_INITIALIZE_COMPLETE:
1879                 case PHAN_INITIALIZE_ACK:
1880                         return QLA_SUCCESS;
1881                 case PHAN_INITIALIZE_FAILED:
1882                         break;
1883                 default:
1884                         break;
1885                 }
1886                 ql_log(ql_log_info, vha, 0x00a8,
1887                     "CRB_CMDPEG_STATE: 0x%x and retries:0x%x.\n",
1888                     val, retries);
1889
1890                 msleep(500);
1891
1892         } while (--retries);
1893
1894         ql_log(ql_log_fatal, vha, 0x00a9,
1895             "Cmd Peg initialization failed: 0x%x.\n", val);
1896
1897         val = qla82xx_rd_32(ha, QLA82XX_ROMUSB_GLB_PEGTUNE_DONE);
1898         read_lock(&ha->hw_lock);
1899         qla82xx_wr_32(ha, CRB_CMDPEG_STATE, PHAN_INITIALIZE_FAILED);
1900         read_unlock(&ha->hw_lock);
1901         return QLA_FUNCTION_FAILED;
1902 }
1903
1904 static int
1905 qla82xx_check_rcvpeg_state(struct qla_hw_data *ha)
1906 {
1907         u32 val = 0;
1908         int retries = 60;
1909         scsi_qla_host_t *vha = pci_get_drvdata(ha->pdev);
1910
1911         do {
1912                 read_lock(&ha->hw_lock);
1913                 val = qla82xx_rd_32(ha, CRB_RCVPEG_STATE);
1914                 read_unlock(&ha->hw_lock);
1915
1916                 switch (val) {
1917                 case PHAN_INITIALIZE_COMPLETE:
1918                 case PHAN_INITIALIZE_ACK:
1919                         return QLA_SUCCESS;
1920                 case PHAN_INITIALIZE_FAILED:
1921                         break;
1922                 default:
1923                         break;
1924                 }
1925                 ql_log(ql_log_info, vha, 0x00ab,
1926                     "CRB_RCVPEG_STATE: 0x%x and retries: 0x%x.\n",
1927                     val, retries);
1928
1929                 msleep(500);
1930
1931         } while (--retries);
1932
1933         ql_log(ql_log_fatal, vha, 0x00ac,
1934             "Rcv Peg initialization failed: 0x%x.\n", val);
1935         read_lock(&ha->hw_lock);
1936         qla82xx_wr_32(ha, CRB_RCVPEG_STATE, PHAN_INITIALIZE_FAILED);
1937         read_unlock(&ha->hw_lock);
1938         return QLA_FUNCTION_FAILED;
1939 }
1940
1941 /* ISR related functions */
1942 static struct qla82xx_legacy_intr_set legacy_intr[] =
1943         QLA82XX_LEGACY_INTR_CONFIG;
1944
1945 /*
1946  * qla82xx_mbx_completion() - Process mailbox command completions.
1947  * @ha: SCSI driver HA context
1948  * @mb0: Mailbox0 register
1949  */
1950 void
1951 qla82xx_mbx_completion(scsi_qla_host_t *vha, uint16_t mb0)
1952 {
1953         uint16_t        cnt;
1954         __le16 __iomem *wptr;
1955         struct qla_hw_data *ha = vha->hw;
1956         struct device_reg_82xx __iomem *reg = &ha->iobase->isp82;
1957
1958         wptr = &reg->mailbox_out[1];
1959
1960         /* Load return mailbox registers. */
1961         ha->flags.mbox_int = 1;
1962         ha->mailbox_out[0] = mb0;
1963
1964         for (cnt = 1; cnt < ha->mbx_count; cnt++) {
1965                 ha->mailbox_out[cnt] = rd_reg_word(wptr);
1966                 wptr++;
1967         }
1968
1969         if (!ha->mcp)
1970                 ql_dbg(ql_dbg_async, vha, 0x5053,
1971                     "MBX pointer ERROR.\n");
1972 }
1973
1974 /**
1975  * qla82xx_intr_handler() - Process interrupts for the ISP23xx and ISP63xx.
1976  * @irq: interrupt number
1977  * @dev_id: SCSI driver HA context
1978  *
1979  * Called by system whenever the host adapter generates an interrupt.
1980  *
1981  * Returns handled flag.
1982  */
1983 irqreturn_t
1984 qla82xx_intr_handler(int irq, void *dev_id)
1985 {
1986         scsi_qla_host_t *vha;
1987         struct qla_hw_data *ha;
1988         struct rsp_que *rsp;
1989         struct device_reg_82xx __iomem *reg;
1990         int status = 0, status1 = 0;
1991         unsigned long   flags;
1992         unsigned long   iter;
1993         uint32_t        stat = 0;
1994         uint16_t        mb[8];
1995
1996         rsp = (struct rsp_que *) dev_id;
1997         if (!rsp) {
1998                 ql_log(ql_log_info, NULL, 0xb053,
1999                     "%s: NULL response queue pointer.\n", __func__);
2000                 return IRQ_NONE;
2001         }
2002         ha = rsp->hw;
2003
2004         if (!ha->flags.msi_enabled) {
2005                 status = qla82xx_rd_32(ha, ISR_INT_VECTOR);
2006                 if (!(status & ha->nx_legacy_intr.int_vec_bit))
2007                         return IRQ_NONE;
2008
2009                 status1 = qla82xx_rd_32(ha, ISR_INT_STATE_REG);
2010                 if (!ISR_IS_LEGACY_INTR_TRIGGERED(status1))
2011                         return IRQ_NONE;
2012         }
2013
2014         /* clear the interrupt */
2015         qla82xx_wr_32(ha, ha->nx_legacy_intr.tgt_status_reg, 0xffffffff);
2016
2017         /* read twice to ensure write is flushed */
2018         qla82xx_rd_32(ha, ISR_INT_VECTOR);
2019         qla82xx_rd_32(ha, ISR_INT_VECTOR);
2020
2021         reg = &ha->iobase->isp82;
2022
2023         spin_lock_irqsave(&ha->hardware_lock, flags);
2024         vha = pci_get_drvdata(ha->pdev);
2025         for (iter = 1; iter--; ) {
2026
2027                 if (rd_reg_dword(&reg->host_int)) {
2028                         stat = rd_reg_dword(&reg->host_status);
2029
2030                         switch (stat & 0xff) {
2031                         case 0x1:
2032                         case 0x2:
2033                         case 0x10:
2034                         case 0x11:
2035                                 qla82xx_mbx_completion(vha, MSW(stat));
2036                                 status |= MBX_INTERRUPT;
2037                                 break;
2038                         case 0x12:
2039                                 mb[0] = MSW(stat);
2040                                 mb[1] = rd_reg_word(&reg->mailbox_out[1]);
2041                                 mb[2] = rd_reg_word(&reg->mailbox_out[2]);
2042                                 mb[3] = rd_reg_word(&reg->mailbox_out[3]);
2043                                 qla2x00_async_event(vha, rsp, mb);
2044                                 break;
2045                         case 0x13:
2046                                 qla24xx_process_response_queue(vha, rsp);
2047                                 break;
2048                         default:
2049                                 ql_dbg(ql_dbg_async, vha, 0x5054,
2050                                     "Unrecognized interrupt type (%d).\n",
2051                                     stat & 0xff);
2052                                 break;
2053                         }
2054                 }
2055                 wrt_reg_dword(&reg->host_int, 0);
2056         }
2057
2058         qla2x00_handle_mbx_completion(ha, status);
2059         spin_unlock_irqrestore(&ha->hardware_lock, flags);
2060
2061         if (!ha->flags.msi_enabled)
2062                 qla82xx_wr_32(ha, ha->nx_legacy_intr.tgt_mask_reg, 0xfbff);
2063
2064         return IRQ_HANDLED;
2065 }
2066
2067 irqreturn_t
2068 qla82xx_msix_default(int irq, void *dev_id)
2069 {
2070         scsi_qla_host_t *vha;
2071         struct qla_hw_data *ha;
2072         struct rsp_que *rsp;
2073         struct device_reg_82xx __iomem *reg;
2074         int status = 0;
2075         unsigned long flags;
2076         uint32_t stat = 0;
2077         uint32_t host_int = 0;
2078         uint16_t mb[8];
2079
2080         rsp = (struct rsp_que *) dev_id;
2081         if (!rsp) {
2082                 printk(KERN_INFO
2083                         "%s(): NULL response queue pointer.\n", __func__);
2084                 return IRQ_NONE;
2085         }
2086         ha = rsp->hw;
2087
2088         reg = &ha->iobase->isp82;
2089
2090         spin_lock_irqsave(&ha->hardware_lock, flags);
2091         vha = pci_get_drvdata(ha->pdev);
2092         do {
2093                 host_int = rd_reg_dword(&reg->host_int);
2094                 if (qla2x00_check_reg32_for_disconnect(vha, host_int))
2095                         break;
2096                 if (host_int) {
2097                         stat = rd_reg_dword(&reg->host_status);
2098
2099                         switch (stat & 0xff) {
2100                         case 0x1:
2101                         case 0x2:
2102                         case 0x10:
2103                         case 0x11:
2104                                 qla82xx_mbx_completion(vha, MSW(stat));
2105                                 status |= MBX_INTERRUPT;
2106                                 break;
2107                         case 0x12:
2108                                 mb[0] = MSW(stat);
2109                                 mb[1] = rd_reg_word(&reg->mailbox_out[1]);
2110                                 mb[2] = rd_reg_word(&reg->mailbox_out[2]);
2111                                 mb[3] = rd_reg_word(&reg->mailbox_out[3]);
2112                                 qla2x00_async_event(vha, rsp, mb);
2113                                 break;
2114                         case 0x13:
2115                                 qla24xx_process_response_queue(vha, rsp);
2116                                 break;
2117                         default:
2118                                 ql_dbg(ql_dbg_async, vha, 0x5041,
2119                                     "Unrecognized interrupt type (%d).\n",
2120                                     stat & 0xff);
2121                                 break;
2122                         }
2123                 }
2124                 wrt_reg_dword(&reg->host_int, 0);
2125         } while (0);
2126
2127         qla2x00_handle_mbx_completion(ha, status);
2128         spin_unlock_irqrestore(&ha->hardware_lock, flags);
2129
2130         return IRQ_HANDLED;
2131 }
2132
2133 irqreturn_t
2134 qla82xx_msix_rsp_q(int irq, void *dev_id)
2135 {
2136         scsi_qla_host_t *vha;
2137         struct qla_hw_data *ha;
2138         struct rsp_que *rsp;
2139         struct device_reg_82xx __iomem *reg;
2140         unsigned long flags;
2141         uint32_t host_int = 0;
2142
2143         rsp = (struct rsp_que *) dev_id;
2144         if (!rsp) {
2145                 printk(KERN_INFO
2146                         "%s(): NULL response queue pointer.\n", __func__);
2147                 return IRQ_NONE;
2148         }
2149
2150         ha = rsp->hw;
2151         reg = &ha->iobase->isp82;
2152         spin_lock_irqsave(&ha->hardware_lock, flags);
2153         vha = pci_get_drvdata(ha->pdev);
2154         host_int = rd_reg_dword(&reg->host_int);
2155         if (qla2x00_check_reg32_for_disconnect(vha, host_int))
2156                 goto out;
2157         qla24xx_process_response_queue(vha, rsp);
2158         wrt_reg_dword(&reg->host_int, 0);
2159 out:
2160         spin_unlock_irqrestore(&ha->hardware_lock, flags);
2161         return IRQ_HANDLED;
2162 }
2163
2164 void
2165 qla82xx_poll(int irq, void *dev_id)
2166 {
2167         scsi_qla_host_t *vha;
2168         struct qla_hw_data *ha;
2169         struct rsp_que *rsp;
2170         struct device_reg_82xx __iomem *reg;
2171         int status = 0;
2172         uint32_t stat;
2173         uint32_t host_int = 0;
2174         uint16_t mb[8];
2175         unsigned long flags;
2176
2177         rsp = (struct rsp_que *) dev_id;
2178         if (!rsp) {
2179                 printk(KERN_INFO
2180                         "%s(): NULL response queue pointer.\n", __func__);
2181                 return;
2182         }
2183         ha = rsp->hw;
2184
2185         reg = &ha->iobase->isp82;
2186         spin_lock_irqsave(&ha->hardware_lock, flags);
2187         vha = pci_get_drvdata(ha->pdev);
2188
2189         host_int = rd_reg_dword(&reg->host_int);
2190         if (qla2x00_check_reg32_for_disconnect(vha, host_int))
2191                 goto out;
2192         if (host_int) {
2193                 stat = rd_reg_dword(&reg->host_status);
2194                 switch (stat & 0xff) {
2195                 case 0x1:
2196                 case 0x2:
2197                 case 0x10:
2198                 case 0x11:
2199                         qla82xx_mbx_completion(vha, MSW(stat));
2200                         status |= MBX_INTERRUPT;
2201                         break;
2202                 case 0x12:
2203                         mb[0] = MSW(stat);
2204                         mb[1] = rd_reg_word(&reg->mailbox_out[1]);
2205                         mb[2] = rd_reg_word(&reg->mailbox_out[2]);
2206                         mb[3] = rd_reg_word(&reg->mailbox_out[3]);
2207                         qla2x00_async_event(vha, rsp, mb);
2208                         break;
2209                 case 0x13:
2210                         qla24xx_process_response_queue(vha, rsp);
2211                         break;
2212                 default:
2213                         ql_dbg(ql_dbg_p3p, vha, 0xb013,
2214                             "Unrecognized interrupt type (%d).\n",
2215                             stat * 0xff);
2216                         break;
2217                 }
2218                 wrt_reg_dword(&reg->host_int, 0);
2219         }
2220 out:
2221         spin_unlock_irqrestore(&ha->hardware_lock, flags);
2222 }
2223
2224 void
2225 qla82xx_enable_intrs(struct qla_hw_data *ha)
2226 {
2227         scsi_qla_host_t *vha = pci_get_drvdata(ha->pdev);
2228
2229         qla82xx_mbx_intr_enable(vha);
2230         spin_lock_irq(&ha->hardware_lock);
2231         if (IS_QLA8044(ha))
2232                 qla8044_wr_reg(ha, LEG_INTR_MASK_OFFSET, 0);
2233         else
2234                 qla82xx_wr_32(ha, ha->nx_legacy_intr.tgt_mask_reg, 0xfbff);
2235         spin_unlock_irq(&ha->hardware_lock);
2236         ha->interrupts_on = 1;
2237 }
2238
2239 void
2240 qla82xx_disable_intrs(struct qla_hw_data *ha)
2241 {
2242         scsi_qla_host_t *vha = pci_get_drvdata(ha->pdev);
2243
2244         if (ha->interrupts_on)
2245                 qla82xx_mbx_intr_disable(vha);
2246
2247         spin_lock_irq(&ha->hardware_lock);
2248         if (IS_QLA8044(ha))
2249                 qla8044_wr_reg(ha, LEG_INTR_MASK_OFFSET, 1);
2250         else
2251                 qla82xx_wr_32(ha, ha->nx_legacy_intr.tgt_mask_reg, 0x0400);
2252         spin_unlock_irq(&ha->hardware_lock);
2253         ha->interrupts_on = 0;
2254 }
2255
2256 void qla82xx_init_flags(struct qla_hw_data *ha)
2257 {
2258         struct qla82xx_legacy_intr_set *nx_legacy_intr;
2259
2260         /* ISP 8021 initializations */
2261         rwlock_init(&ha->hw_lock);
2262         ha->qdr_sn_window = -1;
2263         ha->ddr_mn_window = -1;
2264         ha->curr_window = 255;
2265         ha->portnum = PCI_FUNC(ha->pdev->devfn);
2266         nx_legacy_intr = &legacy_intr[ha->portnum];
2267         ha->nx_legacy_intr.int_vec_bit = nx_legacy_intr->int_vec_bit;
2268         ha->nx_legacy_intr.tgt_status_reg = nx_legacy_intr->tgt_status_reg;
2269         ha->nx_legacy_intr.tgt_mask_reg = nx_legacy_intr->tgt_mask_reg;
2270         ha->nx_legacy_intr.pci_int_reg = nx_legacy_intr->pci_int_reg;
2271 }
2272
2273 static inline void
2274 qla82xx_set_idc_version(scsi_qla_host_t *vha)
2275 {
2276         int idc_ver;
2277         uint32_t drv_active;
2278         struct qla_hw_data *ha = vha->hw;
2279
2280         drv_active = qla82xx_rd_32(ha, QLA82XX_CRB_DRV_ACTIVE);
2281         if (drv_active == (QLA82XX_DRV_ACTIVE << (ha->portnum * 4))) {
2282                 qla82xx_wr_32(ha, QLA82XX_CRB_DRV_IDC_VERSION,
2283                     QLA82XX_IDC_VERSION);
2284                 ql_log(ql_log_info, vha, 0xb082,
2285                     "IDC version updated to %d\n", QLA82XX_IDC_VERSION);
2286         } else {
2287                 idc_ver = qla82xx_rd_32(ha, QLA82XX_CRB_DRV_IDC_VERSION);
2288                 if (idc_ver != QLA82XX_IDC_VERSION)
2289                         ql_log(ql_log_info, vha, 0xb083,
2290                             "qla2xxx driver IDC version %d is not compatible "
2291                             "with IDC version %d of the other drivers\n",
2292                             QLA82XX_IDC_VERSION, idc_ver);
2293         }
2294 }
2295
2296 inline void
2297 qla82xx_set_drv_active(scsi_qla_host_t *vha)
2298 {
2299         uint32_t drv_active;
2300         struct qla_hw_data *ha = vha->hw;
2301
2302         drv_active = qla82xx_rd_32(ha, QLA82XX_CRB_DRV_ACTIVE);
2303
2304         /* If reset value is all FF's, initialize DRV_ACTIVE */
2305         if (drv_active == 0xffffffff) {
2306                 qla82xx_wr_32(ha, QLA82XX_CRB_DRV_ACTIVE,
2307                         QLA82XX_DRV_NOT_ACTIVE);
2308                 drv_active = qla82xx_rd_32(ha, QLA82XX_CRB_DRV_ACTIVE);
2309         }
2310         drv_active |= (QLA82XX_DRV_ACTIVE << (ha->portnum * 4));
2311         qla82xx_wr_32(ha, QLA82XX_CRB_DRV_ACTIVE, drv_active);
2312 }
2313
2314 inline void
2315 qla82xx_clear_drv_active(struct qla_hw_data *ha)
2316 {
2317         uint32_t drv_active;
2318
2319         drv_active = qla82xx_rd_32(ha, QLA82XX_CRB_DRV_ACTIVE);
2320         drv_active &= ~(QLA82XX_DRV_ACTIVE << (ha->portnum * 4));
2321         qla82xx_wr_32(ha, QLA82XX_CRB_DRV_ACTIVE, drv_active);
2322 }
2323
2324 static inline int
2325 qla82xx_need_reset(struct qla_hw_data *ha)
2326 {
2327         uint32_t drv_state;
2328         int rval;
2329
2330         if (ha->flags.nic_core_reset_owner)
2331                 return 1;
2332         else {
2333                 drv_state = qla82xx_rd_32(ha, QLA82XX_CRB_DRV_STATE);
2334                 rval = drv_state & (QLA82XX_DRVST_RST_RDY << (ha->portnum * 4));
2335                 return rval;
2336         }
2337 }
2338
2339 static inline void
2340 qla82xx_set_rst_ready(struct qla_hw_data *ha)
2341 {
2342         uint32_t drv_state;
2343         scsi_qla_host_t *vha = pci_get_drvdata(ha->pdev);
2344
2345         drv_state = qla82xx_rd_32(ha, QLA82XX_CRB_DRV_STATE);
2346
2347         /* If reset value is all FF's, initialize DRV_STATE */
2348         if (drv_state == 0xffffffff) {
2349                 qla82xx_wr_32(ha, QLA82XX_CRB_DRV_STATE, QLA82XX_DRVST_NOT_RDY);
2350                 drv_state = qla82xx_rd_32(ha, QLA82XX_CRB_DRV_STATE);
2351         }
2352         drv_state |= (QLA82XX_DRVST_RST_RDY << (ha->portnum * 4));
2353         ql_dbg(ql_dbg_init, vha, 0x00bb,
2354             "drv_state = 0x%08x.\n", drv_state);
2355         qla82xx_wr_32(ha, QLA82XX_CRB_DRV_STATE, drv_state);
2356 }
2357
2358 static inline void
2359 qla82xx_clear_rst_ready(struct qla_hw_data *ha)
2360 {
2361         uint32_t drv_state;
2362
2363         drv_state = qla82xx_rd_32(ha, QLA82XX_CRB_DRV_STATE);
2364         drv_state &= ~(QLA82XX_DRVST_RST_RDY << (ha->portnum * 4));
2365         qla82xx_wr_32(ha, QLA82XX_CRB_DRV_STATE, drv_state);
2366 }
2367
2368 static inline void
2369 qla82xx_set_qsnt_ready(struct qla_hw_data *ha)
2370 {
2371         uint32_t qsnt_state;
2372
2373         qsnt_state = qla82xx_rd_32(ha, QLA82XX_CRB_DRV_STATE);
2374         qsnt_state |= (QLA82XX_DRVST_QSNT_RDY << (ha->portnum * 4));
2375         qla82xx_wr_32(ha, QLA82XX_CRB_DRV_STATE, qsnt_state);
2376 }
2377
2378 void
2379 qla82xx_clear_qsnt_ready(scsi_qla_host_t *vha)
2380 {
2381         struct qla_hw_data *ha = vha->hw;
2382         uint32_t qsnt_state;
2383
2384         qsnt_state = qla82xx_rd_32(ha, QLA82XX_CRB_DRV_STATE);
2385         qsnt_state &= ~(QLA82XX_DRVST_QSNT_RDY << (ha->portnum * 4));
2386         qla82xx_wr_32(ha, QLA82XX_CRB_DRV_STATE, qsnt_state);
2387 }
2388
2389 static int
2390 qla82xx_load_fw(scsi_qla_host_t *vha)
2391 {
2392         int rst;
2393         struct fw_blob *blob;
2394         struct qla_hw_data *ha = vha->hw;
2395
2396         if (qla82xx_pinit_from_rom(vha) != QLA_SUCCESS) {
2397                 ql_log(ql_log_fatal, vha, 0x009f,
2398                     "Error during CRB initialization.\n");
2399                 return QLA_FUNCTION_FAILED;
2400         }
2401         udelay(500);
2402
2403         /* Bring QM and CAMRAM out of reset */
2404         rst = qla82xx_rd_32(ha, QLA82XX_ROMUSB_GLB_SW_RESET);
2405         rst &= ~((1 << 28) | (1 << 24));
2406         qla82xx_wr_32(ha, QLA82XX_ROMUSB_GLB_SW_RESET, rst);
2407
2408         /*
2409          * FW Load priority:
2410          * 1) Operational firmware residing in flash.
2411          * 2) Firmware via request-firmware interface (.bin file).
2412          */
2413         if (ql2xfwloadbin == 2)
2414                 goto try_blob_fw;
2415
2416         ql_log(ql_log_info, vha, 0x00a0,
2417             "Attempting to load firmware from flash.\n");
2418
2419         if (qla82xx_fw_load_from_flash(ha) == QLA_SUCCESS) {
2420                 ql_log(ql_log_info, vha, 0x00a1,
2421                     "Firmware loaded successfully from flash.\n");
2422                 return QLA_SUCCESS;
2423         } else {
2424                 ql_log(ql_log_warn, vha, 0x0108,
2425                     "Firmware load from flash failed.\n");
2426         }
2427
2428 try_blob_fw:
2429         ql_log(ql_log_info, vha, 0x00a2,
2430             "Attempting to load firmware from blob.\n");
2431
2432         /* Load firmware blob. */
2433         blob = ha->hablob = qla2x00_request_firmware(vha);
2434         if (!blob) {
2435                 ql_log(ql_log_fatal, vha, 0x00a3,
2436                     "Firmware image not present.\n");
2437                 goto fw_load_failed;
2438         }
2439
2440         /* Validating firmware blob */
2441         if (qla82xx_validate_firmware_blob(vha,
2442                 QLA82XX_FLASH_ROMIMAGE)) {
2443                 /* Fallback to URI format */
2444                 if (qla82xx_validate_firmware_blob(vha,
2445                         QLA82XX_UNIFIED_ROMIMAGE)) {
2446                         ql_log(ql_log_fatal, vha, 0x00a4,
2447                             "No valid firmware image found.\n");
2448                         return QLA_FUNCTION_FAILED;
2449                 }
2450         }
2451
2452         if (qla82xx_fw_load_from_blob(ha) == QLA_SUCCESS) {
2453                 ql_log(ql_log_info, vha, 0x00a5,
2454                     "Firmware loaded successfully from binary blob.\n");
2455                 return QLA_SUCCESS;
2456         }
2457
2458         ql_log(ql_log_fatal, vha, 0x00a6,
2459                "Firmware load failed for binary blob.\n");
2460         blob->fw = NULL;
2461         blob = NULL;
2462
2463 fw_load_failed:
2464         return QLA_FUNCTION_FAILED;
2465 }
2466
2467 int
2468 qla82xx_start_firmware(scsi_qla_host_t *vha)
2469 {
2470         uint16_t      lnk;
2471         struct qla_hw_data *ha = vha->hw;
2472
2473         /* scrub dma mask expansion register */
2474         qla82xx_wr_32(ha, CRB_DMA_SHIFT, QLA82XX_DMA_SHIFT_VALUE);
2475
2476         /* Put both the PEG CMD and RCV PEG to default state
2477          * of 0 before resetting the hardware
2478          */
2479         qla82xx_wr_32(ha, CRB_CMDPEG_STATE, 0);
2480         qla82xx_wr_32(ha, CRB_RCVPEG_STATE, 0);
2481
2482         /* Overwrite stale initialization register values */
2483         qla82xx_wr_32(ha, QLA82XX_PEG_HALT_STATUS1, 0);
2484         qla82xx_wr_32(ha, QLA82XX_PEG_HALT_STATUS2, 0);
2485
2486         if (qla82xx_load_fw(vha) != QLA_SUCCESS) {
2487                 ql_log(ql_log_fatal, vha, 0x00a7,
2488                     "Error trying to start fw.\n");
2489                 return QLA_FUNCTION_FAILED;
2490         }
2491
2492         /* Handshake with the card before we register the devices. */
2493         if (qla82xx_check_cmdpeg_state(ha) != QLA_SUCCESS) {
2494                 ql_log(ql_log_fatal, vha, 0x00aa,
2495                     "Error during card handshake.\n");
2496                 return QLA_FUNCTION_FAILED;
2497         }
2498
2499         /* Negotiated Link width */
2500         pcie_capability_read_word(ha->pdev, PCI_EXP_LNKSTA, &lnk);
2501         ha->link_width = (lnk >> 4) & 0x3f;
2502
2503         /* Synchronize with Receive peg */
2504         return qla82xx_check_rcvpeg_state(ha);
2505 }
2506
2507 static __le32 *
2508 qla82xx_read_flash_data(scsi_qla_host_t *vha, __le32 *dwptr, uint32_t faddr,
2509         uint32_t length)
2510 {
2511         uint32_t i;
2512         uint32_t val;
2513         struct qla_hw_data *ha = vha->hw;
2514
2515         /* Dword reads to flash. */
2516         for (i = 0; i < length/4; i++, faddr += 4) {
2517                 if (qla82xx_rom_fast_read(ha, faddr, &val)) {
2518                         ql_log(ql_log_warn, vha, 0x0106,
2519                             "Do ROM fast read failed.\n");
2520                         goto done_read;
2521                 }
2522                 dwptr[i] = cpu_to_le32(val);
2523         }
2524 done_read:
2525         return dwptr;
2526 }
2527
2528 static int
2529 qla82xx_unprotect_flash(struct qla_hw_data *ha)
2530 {
2531         int ret;
2532         uint32_t val;
2533         scsi_qla_host_t *vha = pci_get_drvdata(ha->pdev);
2534
2535         ret = ql82xx_rom_lock_d(ha);
2536         if (ret < 0) {
2537                 ql_log(ql_log_warn, vha, 0xb014,
2538                     "ROM Lock failed.\n");
2539                 return ret;
2540         }
2541
2542         ret = qla82xx_read_status_reg(ha, &val);
2543         if (ret < 0)
2544                 goto done_unprotect;
2545
2546         val &= ~(BLOCK_PROTECT_BITS << 2);
2547         ret = qla82xx_write_status_reg(ha, val);
2548         if (ret < 0) {
2549                 val |= (BLOCK_PROTECT_BITS << 2);
2550                 qla82xx_write_status_reg(ha, val);
2551         }
2552
2553         if (qla82xx_write_disable_flash(ha) != 0)
2554                 ql_log(ql_log_warn, vha, 0xb015,
2555                     "Write disable failed.\n");
2556
2557 done_unprotect:
2558         qla82xx_rom_unlock(ha);
2559         return ret;
2560 }
2561
2562 static int
2563 qla82xx_protect_flash(struct qla_hw_data *ha)
2564 {
2565         int ret;
2566         uint32_t val;
2567         scsi_qla_host_t *vha = pci_get_drvdata(ha->pdev);
2568
2569         ret = ql82xx_rom_lock_d(ha);
2570         if (ret < 0) {
2571                 ql_log(ql_log_warn, vha, 0xb016,
2572                     "ROM Lock failed.\n");
2573                 return ret;
2574         }
2575
2576         ret = qla82xx_read_status_reg(ha, &val);
2577         if (ret < 0)
2578                 goto done_protect;
2579
2580         val |= (BLOCK_PROTECT_BITS << 2);
2581         /* LOCK all sectors */
2582         ret = qla82xx_write_status_reg(ha, val);
2583         if (ret < 0)
2584                 ql_log(ql_log_warn, vha, 0xb017,
2585                     "Write status register failed.\n");
2586
2587         if (qla82xx_write_disable_flash(ha) != 0)
2588                 ql_log(ql_log_warn, vha, 0xb018,
2589                     "Write disable failed.\n");
2590 done_protect:
2591         qla82xx_rom_unlock(ha);
2592         return ret;
2593 }
2594
2595 static int
2596 qla82xx_erase_sector(struct qla_hw_data *ha, int addr)
2597 {
2598         int ret = 0;
2599         scsi_qla_host_t *vha = pci_get_drvdata(ha->pdev);
2600
2601         ret = ql82xx_rom_lock_d(ha);
2602         if (ret < 0) {
2603                 ql_log(ql_log_warn, vha, 0xb019,
2604                     "ROM Lock failed.\n");
2605                 return ret;
2606         }
2607
2608         qla82xx_flash_set_write_enable(ha);
2609         qla82xx_wr_32(ha, QLA82XX_ROMUSB_ROM_ADDRESS, addr);
2610         qla82xx_wr_32(ha, QLA82XX_ROMUSB_ROM_ABYTE_CNT, 3);
2611         qla82xx_wr_32(ha, QLA82XX_ROMUSB_ROM_INSTR_OPCODE, M25P_INSTR_SE);
2612
2613         if (qla82xx_wait_rom_done(ha)) {
2614                 ql_log(ql_log_warn, vha, 0xb01a,
2615                     "Error waiting for rom done.\n");
2616                 ret = -1;
2617                 goto done;
2618         }
2619         ret = qla82xx_flash_wait_write_finish(ha);
2620 done:
2621         qla82xx_rom_unlock(ha);
2622         return ret;
2623 }
2624
2625 /*
2626  * Address and length are byte address
2627  */
2628 void *
2629 qla82xx_read_optrom_data(struct scsi_qla_host *vha, void *buf,
2630         uint32_t offset, uint32_t length)
2631 {
2632         scsi_block_requests(vha->host);
2633         qla82xx_read_flash_data(vha, buf, offset, length);
2634         scsi_unblock_requests(vha->host);
2635         return buf;
2636 }
2637
2638 static int
2639 qla82xx_write_flash_data(struct scsi_qla_host *vha, __le32 *dwptr,
2640         uint32_t faddr, uint32_t dwords)
2641 {
2642         int ret;
2643         uint32_t liter;
2644         uint32_t rest_addr;
2645         dma_addr_t optrom_dma;
2646         void *optrom = NULL;
2647         int page_mode = 0;
2648         struct qla_hw_data *ha = vha->hw;
2649
2650         ret = -1;
2651
2652         /* Prepare burst-capable write on supported ISPs. */
2653         if (page_mode && !(faddr & 0xfff) &&
2654             dwords > OPTROM_BURST_DWORDS) {
2655                 optrom = dma_alloc_coherent(&ha->pdev->dev, OPTROM_BURST_SIZE,
2656                     &optrom_dma, GFP_KERNEL);
2657                 if (!optrom) {
2658                         ql_log(ql_log_warn, vha, 0xb01b,
2659                             "Unable to allocate memory "
2660                             "for optrom burst write (%x KB).\n",
2661                             OPTROM_BURST_SIZE / 1024);
2662                 }
2663         }
2664
2665         rest_addr = ha->fdt_block_size - 1;
2666
2667         ret = qla82xx_unprotect_flash(ha);
2668         if (ret) {
2669                 ql_log(ql_log_warn, vha, 0xb01c,
2670                     "Unable to unprotect flash for update.\n");
2671                 goto write_done;
2672         }
2673
2674         for (liter = 0; liter < dwords; liter++, faddr += 4, dwptr++) {
2675                 /* Are we at the beginning of a sector? */
2676                 if ((faddr & rest_addr) == 0) {
2677
2678                         ret = qla82xx_erase_sector(ha, faddr);
2679                         if (ret) {
2680                                 ql_log(ql_log_warn, vha, 0xb01d,
2681                                     "Unable to erase sector: address=%x.\n",
2682                                     faddr);
2683                                 break;
2684                         }
2685                 }
2686
2687                 /* Go with burst-write. */
2688                 if (optrom && (liter + OPTROM_BURST_DWORDS) <= dwords) {
2689                         /* Copy data to DMA'ble buffer. */
2690                         memcpy(optrom, dwptr, OPTROM_BURST_SIZE);
2691
2692                         ret = qla2x00_load_ram(vha, optrom_dma,
2693                             (ha->flash_data_off | faddr),
2694                             OPTROM_BURST_DWORDS);
2695                         if (ret != QLA_SUCCESS) {
2696                                 ql_log(ql_log_warn, vha, 0xb01e,
2697                                     "Unable to burst-write optrom segment "
2698                                     "(%x/%x/%llx).\n", ret,
2699                                     (ha->flash_data_off | faddr),
2700                                     (unsigned long long)optrom_dma);
2701                                 ql_log(ql_log_warn, vha, 0xb01f,
2702                                     "Reverting to slow-write.\n");
2703
2704                                 dma_free_coherent(&ha->pdev->dev,
2705                                     OPTROM_BURST_SIZE, optrom, optrom_dma);
2706                                 optrom = NULL;
2707                         } else {
2708                                 liter += OPTROM_BURST_DWORDS - 1;
2709                                 faddr += OPTROM_BURST_DWORDS - 1;
2710                                 dwptr += OPTROM_BURST_DWORDS - 1;
2711                                 continue;
2712                         }
2713                 }
2714
2715                 ret = qla82xx_write_flash_dword(ha, faddr,
2716                                                 le32_to_cpu(*dwptr));
2717                 if (ret) {
2718                         ql_dbg(ql_dbg_p3p, vha, 0xb020,
2719                             "Unable to program flash address=%x data=%x.\n",
2720                             faddr, *dwptr);
2721                         break;
2722                 }
2723         }
2724
2725         ret = qla82xx_protect_flash(ha);
2726         if (ret)
2727                 ql_log(ql_log_warn, vha, 0xb021,
2728                     "Unable to protect flash after update.\n");
2729 write_done:
2730         if (optrom)
2731                 dma_free_coherent(&ha->pdev->dev,
2732                     OPTROM_BURST_SIZE, optrom, optrom_dma);
2733         return ret;
2734 }
2735
2736 int
2737 qla82xx_write_optrom_data(struct scsi_qla_host *vha, void *buf,
2738         uint32_t offset, uint32_t length)
2739 {
2740         int rval;
2741
2742         /* Suspend HBA. */
2743         scsi_block_requests(vha->host);
2744         rval = qla82xx_write_flash_data(vha, buf, offset, length >> 2);
2745         scsi_unblock_requests(vha->host);
2746
2747         /* Convert return ISP82xx to generic */
2748         if (rval)
2749                 rval = QLA_FUNCTION_FAILED;
2750         else
2751                 rval = QLA_SUCCESS;
2752         return rval;
2753 }
2754
2755 void
2756 qla82xx_start_iocbs(scsi_qla_host_t *vha)
2757 {
2758         struct qla_hw_data *ha = vha->hw;
2759         struct req_que *req = ha->req_q_map[0];
2760         uint32_t dbval;
2761
2762         /* Adjust ring index. */
2763         req->ring_index++;
2764         if (req->ring_index == req->length) {
2765                 req->ring_index = 0;
2766                 req->ring_ptr = req->ring;
2767         } else
2768                 req->ring_ptr++;
2769
2770         dbval = 0x04 | (ha->portnum << 5);
2771
2772         dbval = dbval | (req->id << 8) | (req->ring_index << 16);
2773         if (ql2xdbwr)
2774                 qla82xx_wr_32(ha, (unsigned long)ha->nxdb_wr_ptr, dbval);
2775         else {
2776                 wrt_reg_dword(ha->nxdb_wr_ptr, dbval);
2777                 wmb();
2778                 while (rd_reg_dword(ha->nxdb_rd_ptr) != dbval) {
2779                         wrt_reg_dword(ha->nxdb_wr_ptr, dbval);
2780                         wmb();
2781                 }
2782         }
2783 }
2784
2785 static void
2786 qla82xx_rom_lock_recovery(struct qla_hw_data *ha)
2787 {
2788         scsi_qla_host_t *vha = pci_get_drvdata(ha->pdev);
2789         uint32_t lock_owner = 0;
2790
2791         if (qla82xx_rom_lock(ha)) {
2792                 lock_owner = qla82xx_rd_32(ha, QLA82XX_ROM_LOCK_ID);
2793                 /* Someone else is holding the lock. */
2794                 ql_log(ql_log_info, vha, 0xb022,
2795                     "Resetting rom_lock, Lock Owner %u.\n", lock_owner);
2796         }
2797         /*
2798          * Either we got the lock, or someone
2799          * else died while holding it.
2800          * In either case, unlock.
2801          */
2802         qla82xx_rom_unlock(ha);
2803 }
2804
2805 /*
2806  * qla82xx_device_bootstrap
2807  *    Initialize device, set DEV_READY, start fw
2808  *
2809  * Note:
2810  *      IDC lock must be held upon entry
2811  *
2812  * Return:
2813  *    Success : 0
2814  *    Failed  : 1
2815  */
2816 static int
2817 qla82xx_device_bootstrap(scsi_qla_host_t *vha)
2818 {
2819         int rval = QLA_SUCCESS;
2820         int i;
2821         uint32_t old_count, count;
2822         struct qla_hw_data *ha = vha->hw;
2823         int need_reset = 0;
2824
2825         need_reset = qla82xx_need_reset(ha);
2826
2827         if (need_reset) {
2828                 /* We are trying to perform a recovery here. */
2829                 if (ha->flags.isp82xx_fw_hung)
2830                         qla82xx_rom_lock_recovery(ha);
2831         } else  {
2832                 old_count = qla82xx_rd_32(ha, QLA82XX_PEG_ALIVE_COUNTER);
2833                 for (i = 0; i < 10; i++) {
2834                         msleep(200);
2835                         count = qla82xx_rd_32(ha, QLA82XX_PEG_ALIVE_COUNTER);
2836                         if (count != old_count) {
2837                                 rval = QLA_SUCCESS;
2838                                 goto dev_ready;
2839                         }
2840                 }
2841                 qla82xx_rom_lock_recovery(ha);
2842         }
2843
2844         /* set to DEV_INITIALIZING */
2845         ql_log(ql_log_info, vha, 0x009e,
2846             "HW State: INITIALIZING.\n");
2847         qla82xx_wr_32(ha, QLA82XX_CRB_DEV_STATE, QLA8XXX_DEV_INITIALIZING);
2848
2849         qla82xx_idc_unlock(ha);
2850         rval = qla82xx_start_firmware(vha);
2851         qla82xx_idc_lock(ha);
2852
2853         if (rval != QLA_SUCCESS) {
2854                 ql_log(ql_log_fatal, vha, 0x00ad,
2855                     "HW State: FAILED.\n");
2856                 qla82xx_clear_drv_active(ha);
2857                 qla82xx_wr_32(ha, QLA82XX_CRB_DEV_STATE, QLA8XXX_DEV_FAILED);
2858                 return rval;
2859         }
2860
2861 dev_ready:
2862         ql_log(ql_log_info, vha, 0x00ae,
2863             "HW State: READY.\n");
2864         qla82xx_wr_32(ha, QLA82XX_CRB_DEV_STATE, QLA8XXX_DEV_READY);
2865
2866         return QLA_SUCCESS;
2867 }
2868
2869 /*
2870 * qla82xx_need_qsnt_handler
2871 *    Code to start quiescence sequence
2872 *
2873 * Note:
2874 *      IDC lock must be held upon entry
2875 *
2876 * Return: void
2877 */
2878
2879 static void
2880 qla82xx_need_qsnt_handler(scsi_qla_host_t *vha)
2881 {
2882         struct qla_hw_data *ha = vha->hw;
2883         uint32_t dev_state, drv_state, drv_active;
2884         unsigned long reset_timeout;
2885
2886         if (vha->flags.online) {
2887                 /*Block any further I/O and wait for pending cmnds to complete*/
2888                 qla2x00_quiesce_io(vha);
2889         }
2890
2891         /* Set the quiescence ready bit */
2892         qla82xx_set_qsnt_ready(ha);
2893
2894         /*wait for 30 secs for other functions to ack */
2895         reset_timeout = jiffies + (30 * HZ);
2896
2897         drv_state = qla82xx_rd_32(ha, QLA82XX_CRB_DRV_STATE);
2898         drv_active = qla82xx_rd_32(ha, QLA82XX_CRB_DRV_ACTIVE);
2899         /* Its 2 that is written when qsnt is acked, moving one bit */
2900         drv_active = drv_active << 0x01;
2901
2902         while (drv_state != drv_active) {
2903
2904                 if (time_after_eq(jiffies, reset_timeout)) {
2905                         /* quiescence timeout, other functions didn't ack
2906                          * changing the state to DEV_READY
2907                          */
2908                         ql_log(ql_log_info, vha, 0xb023,
2909                             "%s : QUIESCENT TIMEOUT DRV_ACTIVE:%d "
2910                             "DRV_STATE:%d.\n", QLA2XXX_DRIVER_NAME,
2911                             drv_active, drv_state);
2912                         qla82xx_wr_32(ha, QLA82XX_CRB_DEV_STATE,
2913                             QLA8XXX_DEV_READY);
2914                         ql_log(ql_log_info, vha, 0xb025,
2915                             "HW State: DEV_READY.\n");
2916                         qla82xx_idc_unlock(ha);
2917                         qla2x00_perform_loop_resync(vha);
2918                         qla82xx_idc_lock(ha);
2919
2920                         qla82xx_clear_qsnt_ready(vha);
2921                         return;
2922                 }
2923
2924                 qla82xx_idc_unlock(ha);
2925                 msleep(1000);
2926                 qla82xx_idc_lock(ha);
2927
2928                 drv_state = qla82xx_rd_32(ha, QLA82XX_CRB_DRV_STATE);
2929                 drv_active = qla82xx_rd_32(ha, QLA82XX_CRB_DRV_ACTIVE);
2930                 drv_active = drv_active << 0x01;
2931         }
2932         dev_state = qla82xx_rd_32(ha, QLA82XX_CRB_DEV_STATE);
2933         /* everyone acked so set the state to DEV_QUIESCENCE */
2934         if (dev_state == QLA8XXX_DEV_NEED_QUIESCENT) {
2935                 ql_log(ql_log_info, vha, 0xb026,
2936                     "HW State: DEV_QUIESCENT.\n");
2937                 qla82xx_wr_32(ha, QLA82XX_CRB_DEV_STATE, QLA8XXX_DEV_QUIESCENT);
2938         }
2939 }
2940
2941 /*
2942 * qla82xx_wait_for_state_change
2943 *    Wait for device state to change from given current state
2944 *
2945 * Note:
2946 *     IDC lock must not be held upon entry
2947 *
2948 * Return:
2949 *    Changed device state.
2950 */
2951 uint32_t
2952 qla82xx_wait_for_state_change(scsi_qla_host_t *vha, uint32_t curr_state)
2953 {
2954         struct qla_hw_data *ha = vha->hw;
2955         uint32_t dev_state;
2956
2957         do {
2958                 msleep(1000);
2959                 qla82xx_idc_lock(ha);
2960                 dev_state = qla82xx_rd_32(ha, QLA82XX_CRB_DEV_STATE);
2961                 qla82xx_idc_unlock(ha);
2962         } while (dev_state == curr_state);
2963
2964         return dev_state;
2965 }
2966
2967 void
2968 qla8xxx_dev_failed_handler(scsi_qla_host_t *vha)
2969 {
2970         struct qla_hw_data *ha = vha->hw;
2971
2972         /* Disable the board */
2973         ql_log(ql_log_fatal, vha, 0x00b8,
2974             "Disabling the board.\n");
2975
2976         if (IS_QLA82XX(ha)) {
2977                 qla82xx_clear_drv_active(ha);
2978                 qla82xx_idc_unlock(ha);
2979         } else if (IS_QLA8044(ha)) {
2980                 qla8044_clear_drv_active(ha);
2981                 qla8044_idc_unlock(ha);
2982         }
2983
2984         /* Set DEV_FAILED flag to disable timer */
2985         vha->device_flags |= DFLG_DEV_FAILED;
2986         qla2x00_abort_all_cmds(vha, DID_NO_CONNECT << 16);
2987         qla2x00_mark_all_devices_lost(vha);
2988         vha->flags.online = 0;
2989         vha->flags.init_done = 0;
2990 }
2991
2992 /*
2993  * qla82xx_need_reset_handler
2994  *    Code to start reset sequence
2995  *
2996  * Note:
2997  *      IDC lock must be held upon entry
2998  *
2999  * Return:
3000  *    Success : 0
3001  *    Failed  : 1
3002  */
3003 static void
3004 qla82xx_need_reset_handler(scsi_qla_host_t *vha)
3005 {
3006         uint32_t dev_state, drv_state, drv_active;
3007         uint32_t active_mask = 0;
3008         unsigned long reset_timeout;
3009         struct qla_hw_data *ha = vha->hw;
3010         struct req_que *req = ha->req_q_map[0];
3011
3012         if (vha->flags.online) {
3013                 qla82xx_idc_unlock(ha);
3014                 qla2x00_abort_isp_cleanup(vha);
3015                 ha->isp_ops->get_flash_version(vha, req->ring);
3016                 ha->isp_ops->nvram_config(vha);
3017                 qla82xx_idc_lock(ha);
3018         }
3019
3020         drv_active = qla82xx_rd_32(ha, QLA82XX_CRB_DRV_ACTIVE);
3021         if (!ha->flags.nic_core_reset_owner) {
3022                 ql_dbg(ql_dbg_p3p, vha, 0xb028,
3023                     "reset_acknowledged by 0x%x\n", ha->portnum);
3024                 qla82xx_set_rst_ready(ha);
3025         } else {
3026                 active_mask = ~(QLA82XX_DRV_ACTIVE << (ha->portnum * 4));
3027                 drv_active &= active_mask;
3028                 ql_dbg(ql_dbg_p3p, vha, 0xb029,
3029                     "active_mask: 0x%08x\n", active_mask);
3030         }
3031
3032         /* wait for 10 seconds for reset ack from all functions */
3033         reset_timeout = jiffies + (ha->fcoe_reset_timeout * HZ);
3034
3035         drv_state = qla82xx_rd_32(ha, QLA82XX_CRB_DRV_STATE);
3036         drv_active = qla82xx_rd_32(ha, QLA82XX_CRB_DRV_ACTIVE);
3037         dev_state = qla82xx_rd_32(ha, QLA82XX_CRB_DEV_STATE);
3038
3039         ql_dbg(ql_dbg_p3p, vha, 0xb02a,
3040             "drv_state: 0x%08x, drv_active: 0x%08x, "
3041             "dev_state: 0x%08x, active_mask: 0x%08x\n",
3042             drv_state, drv_active, dev_state, active_mask);
3043
3044         while (drv_state != drv_active &&
3045             dev_state != QLA8XXX_DEV_INITIALIZING) {
3046                 if (time_after_eq(jiffies, reset_timeout)) {
3047                         ql_log(ql_log_warn, vha, 0x00b5,
3048                             "Reset timeout.\n");
3049                         break;
3050                 }
3051                 qla82xx_idc_unlock(ha);
3052                 msleep(1000);
3053                 qla82xx_idc_lock(ha);
3054                 drv_state = qla82xx_rd_32(ha, QLA82XX_CRB_DRV_STATE);
3055                 drv_active = qla82xx_rd_32(ha, QLA82XX_CRB_DRV_ACTIVE);
3056                 if (ha->flags.nic_core_reset_owner)
3057                         drv_active &= active_mask;
3058                 dev_state = qla82xx_rd_32(ha, QLA82XX_CRB_DEV_STATE);
3059         }
3060
3061         ql_dbg(ql_dbg_p3p, vha, 0xb02b,
3062             "drv_state: 0x%08x, drv_active: 0x%08x, "
3063             "dev_state: 0x%08x, active_mask: 0x%08x\n",
3064             drv_state, drv_active, dev_state, active_mask);
3065
3066         ql_log(ql_log_info, vha, 0x00b6,
3067             "Device state is 0x%x = %s.\n",
3068             dev_state,
3069             dev_state < MAX_STATES ? qdev_state(dev_state) : "Unknown");
3070
3071         /* Force to DEV_COLD unless someone else is starting a reset */
3072         if (dev_state != QLA8XXX_DEV_INITIALIZING &&
3073             dev_state != QLA8XXX_DEV_COLD) {
3074                 ql_log(ql_log_info, vha, 0x00b7,
3075                     "HW State: COLD/RE-INIT.\n");
3076                 qla82xx_wr_32(ha, QLA82XX_CRB_DEV_STATE, QLA8XXX_DEV_COLD);
3077                 qla82xx_set_rst_ready(ha);
3078                 if (ql2xmdenable) {
3079                         if (qla82xx_md_collect(vha))
3080                                 ql_log(ql_log_warn, vha, 0xb02c,
3081                                     "Minidump not collected.\n");
3082                 } else
3083                         ql_log(ql_log_warn, vha, 0xb04f,
3084                             "Minidump disabled.\n");
3085         }
3086 }
3087
3088 int
3089 qla82xx_check_md_needed(scsi_qla_host_t *vha)
3090 {
3091         struct qla_hw_data *ha = vha->hw;
3092         uint16_t fw_major_version, fw_minor_version, fw_subminor_version;
3093         int rval = QLA_SUCCESS;
3094
3095         fw_major_version = ha->fw_major_version;
3096         fw_minor_version = ha->fw_minor_version;
3097         fw_subminor_version = ha->fw_subminor_version;
3098
3099         rval = qla2x00_get_fw_version(vha);
3100         if (rval != QLA_SUCCESS)
3101                 return rval;
3102
3103         if (ql2xmdenable) {
3104                 if (!ha->fw_dumped) {
3105                         if ((fw_major_version != ha->fw_major_version ||
3106                             fw_minor_version != ha->fw_minor_version ||
3107                             fw_subminor_version != ha->fw_subminor_version) ||
3108                             (ha->prev_minidump_failed)) {
3109                                 ql_dbg(ql_dbg_p3p, vha, 0xb02d,
3110                                     "Firmware version differs Previous version: %d:%d:%d - New version: %d:%d:%d, prev_minidump_failed: %d.\n",
3111                                     fw_major_version, fw_minor_version,
3112                                     fw_subminor_version,
3113                                     ha->fw_major_version,
3114                                     ha->fw_minor_version,
3115                                     ha->fw_subminor_version,
3116                                     ha->prev_minidump_failed);
3117                                 /* Release MiniDump resources */
3118                                 qla82xx_md_free(vha);
3119                                 /* ALlocate MiniDump resources */
3120                                 qla82xx_md_prep(vha);
3121                         }
3122                 } else
3123                         ql_log(ql_log_info, vha, 0xb02e,
3124                             "Firmware dump available to retrieve\n");
3125         }
3126         return rval;
3127 }
3128
3129
3130 static int
3131 qla82xx_check_fw_alive(scsi_qla_host_t *vha)
3132 {
3133         uint32_t fw_heartbeat_counter;
3134         int status = 0;
3135
3136         fw_heartbeat_counter = qla82xx_rd_32(vha->hw,
3137                 QLA82XX_PEG_ALIVE_COUNTER);
3138         /* all 0xff, assume AER/EEH in progress, ignore */
3139         if (fw_heartbeat_counter == 0xffffffff) {
3140                 ql_dbg(ql_dbg_timer, vha, 0x6003,
3141                     "FW heartbeat counter is 0xffffffff, "
3142                     "returning status=%d.\n", status);
3143                 return status;
3144         }
3145         if (vha->fw_heartbeat_counter == fw_heartbeat_counter) {
3146                 vha->seconds_since_last_heartbeat++;
3147                 /* FW not alive after 2 seconds */
3148                 if (vha->seconds_since_last_heartbeat == 2) {
3149                         vha->seconds_since_last_heartbeat = 0;
3150                         status = 1;
3151                 }
3152         } else
3153                 vha->seconds_since_last_heartbeat = 0;
3154         vha->fw_heartbeat_counter = fw_heartbeat_counter;
3155         if (status)
3156                 ql_dbg(ql_dbg_timer, vha, 0x6004,
3157                     "Returning status=%d.\n", status);
3158         return status;
3159 }
3160
3161 /*
3162  * qla82xx_device_state_handler
3163  *      Main state handler
3164  *
3165  * Note:
3166  *      IDC lock must be held upon entry
3167  *
3168  * Return:
3169  *    Success : 0
3170  *    Failed  : 1
3171  */
3172 int
3173 qla82xx_device_state_handler(scsi_qla_host_t *vha)
3174 {
3175         uint32_t dev_state;
3176         uint32_t old_dev_state;
3177         int rval = QLA_SUCCESS;
3178         unsigned long dev_init_timeout;
3179         struct qla_hw_data *ha = vha->hw;
3180         int loopcount = 0;
3181
3182         qla82xx_idc_lock(ha);
3183         if (!vha->flags.init_done) {
3184                 qla82xx_set_drv_active(vha);
3185                 qla82xx_set_idc_version(vha);
3186         }
3187
3188         dev_state = qla82xx_rd_32(ha, QLA82XX_CRB_DEV_STATE);
3189         old_dev_state = dev_state;
3190         ql_log(ql_log_info, vha, 0x009b,
3191             "Device state is 0x%x = %s.\n",
3192             dev_state,
3193             dev_state < MAX_STATES ? qdev_state(dev_state) : "Unknown");
3194
3195         /* wait for 30 seconds for device to go ready */
3196         dev_init_timeout = jiffies + (ha->fcoe_dev_init_timeout * HZ);
3197
3198         while (1) {
3199
3200                 if (time_after_eq(jiffies, dev_init_timeout)) {
3201                         ql_log(ql_log_fatal, vha, 0x009c,
3202                             "Device init failed.\n");
3203                         rval = QLA_FUNCTION_FAILED;
3204                         break;
3205                 }
3206                 dev_state = qla82xx_rd_32(ha, QLA82XX_CRB_DEV_STATE);
3207                 if (old_dev_state != dev_state) {
3208                         loopcount = 0;
3209                         old_dev_state = dev_state;
3210                 }
3211                 if (loopcount < 5) {
3212                         ql_log(ql_log_info, vha, 0x009d,
3213                             "Device state is 0x%x = %s.\n",
3214                             dev_state,
3215                             dev_state < MAX_STATES ? qdev_state(dev_state) :
3216                             "Unknown");
3217                 }
3218
3219                 switch (dev_state) {
3220                 case QLA8XXX_DEV_READY:
3221                         ha->flags.nic_core_reset_owner = 0;
3222                         goto rel_lock;
3223                 case QLA8XXX_DEV_COLD:
3224                         rval = qla82xx_device_bootstrap(vha);
3225                         break;
3226                 case QLA8XXX_DEV_INITIALIZING:
3227                         qla82xx_idc_unlock(ha);
3228                         msleep(1000);
3229                         qla82xx_idc_lock(ha);
3230                         break;
3231                 case QLA8XXX_DEV_NEED_RESET:
3232                         if (!ql2xdontresethba)
3233                                 qla82xx_need_reset_handler(vha);
3234                         else {
3235                                 qla82xx_idc_unlock(ha);
3236                                 msleep(1000);
3237                                 qla82xx_idc_lock(ha);
3238                         }
3239                         dev_init_timeout = jiffies +
3240                             (ha->fcoe_dev_init_timeout * HZ);
3241                         break;
3242                 case QLA8XXX_DEV_NEED_QUIESCENT:
3243                         qla82xx_need_qsnt_handler(vha);
3244                         /* Reset timeout value after quiescence handler */
3245                         dev_init_timeout = jiffies + (ha->fcoe_dev_init_timeout
3246                                                          * HZ);
3247                         break;
3248                 case QLA8XXX_DEV_QUIESCENT:
3249                         /* Owner will exit and other will wait for the state
3250                          * to get changed
3251                          */
3252                         if (ha->flags.quiesce_owner)
3253                                 goto rel_lock;
3254
3255                         qla82xx_idc_unlock(ha);
3256                         msleep(1000);
3257                         qla82xx_idc_lock(ha);
3258
3259                         /* Reset timeout value after quiescence handler */
3260                         dev_init_timeout = jiffies + (ha->fcoe_dev_init_timeout
3261                                                          * HZ);
3262                         break;
3263                 case QLA8XXX_DEV_FAILED:
3264                         qla8xxx_dev_failed_handler(vha);
3265                         rval = QLA_FUNCTION_FAILED;
3266                         goto exit;
3267                 default:
3268                         qla82xx_idc_unlock(ha);
3269                         msleep(1000);
3270                         qla82xx_idc_lock(ha);
3271                 }
3272                 loopcount++;
3273         }
3274 rel_lock:
3275         qla82xx_idc_unlock(ha);
3276 exit:
3277         return rval;
3278 }
3279
3280 static int qla82xx_check_temp(scsi_qla_host_t *vha)
3281 {
3282         uint32_t temp, temp_state, temp_val;
3283         struct qla_hw_data *ha = vha->hw;
3284
3285         temp = qla82xx_rd_32(ha, CRB_TEMP_STATE);
3286         temp_state = qla82xx_get_temp_state(temp);
3287         temp_val = qla82xx_get_temp_val(temp);
3288
3289         if (temp_state == QLA82XX_TEMP_PANIC) {
3290                 ql_log(ql_log_warn, vha, 0x600e,
3291                     "Device temperature %d degrees C exceeds "
3292                     " maximum allowed. Hardware has been shut down.\n",
3293                     temp_val);
3294                 return 1;
3295         } else if (temp_state == QLA82XX_TEMP_WARN) {
3296                 ql_log(ql_log_warn, vha, 0x600f,
3297                     "Device temperature %d degrees C exceeds "
3298                     "operating range. Immediate action needed.\n",
3299                     temp_val);
3300         }
3301         return 0;
3302 }
3303
3304 int qla82xx_read_temperature(scsi_qla_host_t *vha)
3305 {
3306         uint32_t temp;
3307
3308         temp = qla82xx_rd_32(vha->hw, CRB_TEMP_STATE);
3309         return qla82xx_get_temp_val(temp);
3310 }
3311
3312 void qla82xx_clear_pending_mbx(scsi_qla_host_t *vha)
3313 {
3314         struct qla_hw_data *ha = vha->hw;
3315
3316         if (ha->flags.mbox_busy) {
3317                 ha->flags.mbox_int = 1;
3318                 ha->flags.mbox_busy = 0;
3319                 ql_log(ql_log_warn, vha, 0x6010,
3320                     "Doing premature completion of mbx command.\n");
3321                 if (test_and_clear_bit(MBX_INTR_WAIT, &ha->mbx_cmd_flags))
3322                         complete(&ha->mbx_intr_comp);
3323         }
3324 }
3325
3326 void qla82xx_watchdog(scsi_qla_host_t *vha)
3327 {
3328         uint32_t dev_state, halt_status;
3329         struct qla_hw_data *ha = vha->hw;
3330
3331         /* don't poll if reset is going on */
3332         if (!ha->flags.nic_core_reset_hdlr_active) {
3333                 dev_state = qla82xx_rd_32(ha, QLA82XX_CRB_DEV_STATE);
3334                 if (qla82xx_check_temp(vha)) {
3335                         set_bit(ISP_UNRECOVERABLE, &vha->dpc_flags);
3336                         ha->flags.isp82xx_fw_hung = 1;
3337                         qla82xx_clear_pending_mbx(vha);
3338                 } else if (dev_state == QLA8XXX_DEV_NEED_RESET &&
3339                     !test_bit(ISP_ABORT_NEEDED, &vha->dpc_flags)) {
3340                         ql_log(ql_log_warn, vha, 0x6001,
3341                             "Adapter reset needed.\n");
3342                         set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
3343                 } else if (dev_state == QLA8XXX_DEV_NEED_QUIESCENT &&
3344                         !test_bit(ISP_QUIESCE_NEEDED, &vha->dpc_flags)) {
3345                         ql_log(ql_log_warn, vha, 0x6002,
3346                             "Quiescent needed.\n");
3347                         set_bit(ISP_QUIESCE_NEEDED, &vha->dpc_flags);
3348                 } else if (dev_state == QLA8XXX_DEV_FAILED &&
3349                         !test_bit(ISP_UNRECOVERABLE, &vha->dpc_flags) &&
3350                         vha->flags.online == 1) {
3351                         ql_log(ql_log_warn, vha, 0xb055,
3352                             "Adapter state is failed. Offlining.\n");
3353                         set_bit(ISP_UNRECOVERABLE, &vha->dpc_flags);
3354                         ha->flags.isp82xx_fw_hung = 1;
3355                         qla82xx_clear_pending_mbx(vha);
3356                 } else {
3357                         if (qla82xx_check_fw_alive(vha)) {
3358                                 ql_dbg(ql_dbg_timer, vha, 0x6011,
3359                                     "disabling pause transmit on port 0 & 1.\n");
3360                                 qla82xx_wr_32(ha, QLA82XX_CRB_NIU + 0x98,
3361                                     CRB_NIU_XG_PAUSE_CTL_P0|CRB_NIU_XG_PAUSE_CTL_P1);
3362                                 halt_status = qla82xx_rd_32(ha,
3363                                     QLA82XX_PEG_HALT_STATUS1);
3364                                 ql_log(ql_log_info, vha, 0x6005,
3365                                     "dumping hw/fw registers:.\n "
3366                                     " PEG_HALT_STATUS1: 0x%x, PEG_HALT_STATUS2: 0x%x,.\n "
3367                                     " PEG_NET_0_PC: 0x%x, PEG_NET_1_PC: 0x%x,.\n "
3368                                     " PEG_NET_2_PC: 0x%x, PEG_NET_3_PC: 0x%x,.\n "
3369                                     " PEG_NET_4_PC: 0x%x.\n", halt_status,
3370                                     qla82xx_rd_32(ha, QLA82XX_PEG_HALT_STATUS2),
3371                                     qla82xx_rd_32(ha,
3372                                             QLA82XX_CRB_PEG_NET_0 + 0x3c),
3373                                     qla82xx_rd_32(ha,
3374                                             QLA82XX_CRB_PEG_NET_1 + 0x3c),
3375                                     qla82xx_rd_32(ha,
3376                                             QLA82XX_CRB_PEG_NET_2 + 0x3c),
3377                                     qla82xx_rd_32(ha,
3378                                             QLA82XX_CRB_PEG_NET_3 + 0x3c),
3379                                     qla82xx_rd_32(ha,
3380                                             QLA82XX_CRB_PEG_NET_4 + 0x3c));
3381                                 if (((halt_status & 0x1fffff00) >> 8) == 0x67)
3382                                         ql_log(ql_log_warn, vha, 0xb052,
3383                                             "Firmware aborted with "
3384                                             "error code 0x00006700. Device is "
3385                                             "being reset.\n");
3386                                 if (halt_status & HALT_STATUS_UNRECOVERABLE) {
3387                                         set_bit(ISP_UNRECOVERABLE,
3388                                             &vha->dpc_flags);
3389                                 } else {
3390                                         ql_log(ql_log_info, vha, 0x6006,
3391                                             "Detect abort  needed.\n");
3392                                         set_bit(ISP_ABORT_NEEDED,
3393                                             &vha->dpc_flags);
3394                                 }
3395                                 ha->flags.isp82xx_fw_hung = 1;
3396                                 ql_log(ql_log_warn, vha, 0x6007, "Firmware hung.\n");
3397                                 qla82xx_clear_pending_mbx(vha);
3398                         }
3399                 }
3400         }
3401 }
3402
3403 int qla82xx_load_risc(scsi_qla_host_t *vha, uint32_t *srisc_addr)
3404 {
3405         int rval = -1;
3406         struct qla_hw_data *ha = vha->hw;
3407
3408         if (IS_QLA82XX(ha))
3409                 rval = qla82xx_device_state_handler(vha);
3410         else if (IS_QLA8044(ha)) {
3411                 qla8044_idc_lock(ha);
3412                 /* Decide the reset ownership */
3413                 qla83xx_reset_ownership(vha);
3414                 qla8044_idc_unlock(ha);
3415                 rval = qla8044_device_state_handler(vha);
3416         }
3417         return rval;
3418 }
3419
3420 void
3421 qla82xx_set_reset_owner(scsi_qla_host_t *vha)
3422 {
3423         struct qla_hw_data *ha = vha->hw;
3424         uint32_t dev_state = 0;
3425
3426         if (IS_QLA82XX(ha))
3427                 dev_state = qla82xx_rd_32(ha, QLA82XX_CRB_DEV_STATE);
3428         else if (IS_QLA8044(ha))
3429                 dev_state = qla8044_rd_direct(vha, QLA8044_CRB_DEV_STATE_INDEX);
3430
3431         if (dev_state == QLA8XXX_DEV_READY) {
3432                 ql_log(ql_log_info, vha, 0xb02f,
3433                     "HW State: NEED RESET\n");
3434                 if (IS_QLA82XX(ha)) {
3435                         qla82xx_wr_32(ha, QLA82XX_CRB_DEV_STATE,
3436                             QLA8XXX_DEV_NEED_RESET);
3437                         ha->flags.nic_core_reset_owner = 1;
3438                         ql_dbg(ql_dbg_p3p, vha, 0xb030,
3439                             "reset_owner is 0x%x\n", ha->portnum);
3440                 } else if (IS_QLA8044(ha))
3441                         qla8044_wr_direct(vha, QLA8044_CRB_DEV_STATE_INDEX,
3442                             QLA8XXX_DEV_NEED_RESET);
3443         } else
3444                 ql_log(ql_log_info, vha, 0xb031,
3445                     "Device state is 0x%x = %s.\n",
3446                     dev_state,
3447                     dev_state < MAX_STATES ? qdev_state(dev_state) : "Unknown");
3448 }
3449
3450 /*
3451  *  qla82xx_abort_isp
3452  *      Resets ISP and aborts all outstanding commands.
3453  *
3454  * Input:
3455  *      ha           = adapter block pointer.
3456  *
3457  * Returns:
3458  *      0 = success
3459  */
3460 int
3461 qla82xx_abort_isp(scsi_qla_host_t *vha)
3462 {
3463         int rval = -1;
3464         struct qla_hw_data *ha = vha->hw;
3465
3466         if (vha->device_flags & DFLG_DEV_FAILED) {
3467                 ql_log(ql_log_warn, vha, 0x8024,
3468                     "Device in failed state, exiting.\n");
3469                 return QLA_SUCCESS;
3470         }
3471         ha->flags.nic_core_reset_hdlr_active = 1;
3472
3473         qla82xx_idc_lock(ha);
3474         qla82xx_set_reset_owner(vha);
3475         qla82xx_idc_unlock(ha);
3476
3477         if (IS_QLA82XX(ha))
3478                 rval = qla82xx_device_state_handler(vha);
3479         else if (IS_QLA8044(ha)) {
3480                 qla8044_idc_lock(ha);
3481                 /* Decide the reset ownership */
3482                 qla83xx_reset_ownership(vha);
3483                 qla8044_idc_unlock(ha);
3484                 rval = qla8044_device_state_handler(vha);
3485         }
3486
3487         qla82xx_idc_lock(ha);
3488         qla82xx_clear_rst_ready(ha);
3489         qla82xx_idc_unlock(ha);
3490
3491         if (rval == QLA_SUCCESS) {
3492                 ha->flags.isp82xx_fw_hung = 0;
3493                 ha->flags.nic_core_reset_hdlr_active = 0;
3494                 qla82xx_restart_isp(vha);
3495         }
3496
3497         if (rval) {
3498                 vha->flags.online = 1;
3499                 if (test_bit(ISP_ABORT_RETRY, &vha->dpc_flags)) {
3500                         if (ha->isp_abort_cnt == 0) {
3501                                 ql_log(ql_log_warn, vha, 0x8027,
3502                                     "ISP error recover failed - board "
3503                                     "disabled.\n");
3504                                 /*
3505                                  * The next call disables the board
3506                                  * completely.
3507                                  */
3508                                 ha->isp_ops->reset_adapter(vha);
3509                                 vha->flags.online = 0;
3510                                 clear_bit(ISP_ABORT_RETRY,
3511                                     &vha->dpc_flags);
3512                                 rval = QLA_SUCCESS;
3513                         } else { /* schedule another ISP abort */
3514                                 ha->isp_abort_cnt--;
3515                                 ql_log(ql_log_warn, vha, 0x8036,
3516                                     "ISP abort - retry remaining %d.\n",
3517                                     ha->isp_abort_cnt);
3518                                 rval = QLA_FUNCTION_FAILED;
3519                         }
3520                 } else {
3521                         ha->isp_abort_cnt = MAX_RETRIES_OF_ISP_ABORT;
3522                         ql_dbg(ql_dbg_taskm, vha, 0x8029,
3523                             "ISP error recovery - retrying (%d) more times.\n",
3524                             ha->isp_abort_cnt);
3525                         set_bit(ISP_ABORT_RETRY, &vha->dpc_flags);
3526                         rval = QLA_FUNCTION_FAILED;
3527                 }
3528         }
3529         return rval;
3530 }
3531
3532 /*
3533  *  qla82xx_fcoe_ctx_reset
3534  *      Perform a quick reset and aborts all outstanding commands.
3535  *      This will only perform an FCoE context reset and avoids a full blown
3536  *      chip reset.
3537  *
3538  * Input:
3539  *      ha = adapter block pointer.
3540  *      is_reset_path = flag for identifying the reset path.
3541  *
3542  * Returns:
3543  *      0 = success
3544  */
3545 int qla82xx_fcoe_ctx_reset(scsi_qla_host_t *vha)
3546 {
3547         int rval = QLA_FUNCTION_FAILED;
3548
3549         if (vha->flags.online) {
3550                 /* Abort all outstanding commands, so as to be requeued later */
3551                 qla2x00_abort_isp_cleanup(vha);
3552         }
3553
3554         /* Stop currently executing firmware.
3555          * This will destroy existing FCoE context at the F/W end.
3556          */
3557         qla2x00_try_to_stop_firmware(vha);
3558
3559         /* Restart. Creates a new FCoE context on INIT_FIRMWARE. */
3560         rval = qla82xx_restart_isp(vha);
3561
3562         return rval;
3563 }
3564
3565 /*
3566  * qla2x00_wait_for_fcoe_ctx_reset
3567  *    Wait till the FCoE context is reset.
3568  *
3569  * Note:
3570  *    Does context switching here.
3571  *    Release SPIN_LOCK (if any) before calling this routine.
3572  *
3573  * Return:
3574  *    Success (fcoe_ctx reset is done) : 0
3575  *    Failed  (fcoe_ctx reset not completed within max loop timout ) : 1
3576  */
3577 int qla2x00_wait_for_fcoe_ctx_reset(scsi_qla_host_t *vha)
3578 {
3579         int status = QLA_FUNCTION_FAILED;
3580         unsigned long wait_reset;
3581
3582         wait_reset = jiffies + (MAX_LOOP_TIMEOUT * HZ);
3583         while ((test_bit(FCOE_CTX_RESET_NEEDED, &vha->dpc_flags) ||
3584             test_bit(ABORT_ISP_ACTIVE, &vha->dpc_flags))
3585             && time_before(jiffies, wait_reset)) {
3586
3587                 set_current_state(TASK_UNINTERRUPTIBLE);
3588                 schedule_timeout(HZ);
3589
3590                 if (!test_bit(FCOE_CTX_RESET_NEEDED, &vha->dpc_flags) &&
3591                     !test_bit(ABORT_ISP_ACTIVE, &vha->dpc_flags)) {
3592                         status = QLA_SUCCESS;
3593                         break;
3594                 }
3595         }
3596         ql_dbg(ql_dbg_p3p, vha, 0xb027,
3597                "%s: status=%d.\n", __func__, status);
3598
3599         return status;
3600 }
3601
3602 void
3603 qla82xx_chip_reset_cleanup(scsi_qla_host_t *vha)
3604 {
3605         int i, fw_state = 0;
3606         unsigned long flags;
3607         struct qla_hw_data *ha = vha->hw;
3608
3609         /* Check if 82XX firmware is alive or not
3610          * We may have arrived here from NEED_RESET
3611          * detection only
3612          */
3613         if (!ha->flags.isp82xx_fw_hung) {
3614                 for (i = 0; i < 2; i++) {
3615                         msleep(1000);
3616                         if (IS_QLA82XX(ha))
3617                                 fw_state = qla82xx_check_fw_alive(vha);
3618                         else if (IS_QLA8044(ha))
3619                                 fw_state = qla8044_check_fw_alive(vha);
3620                         if (fw_state) {
3621                                 ha->flags.isp82xx_fw_hung = 1;
3622                                 qla82xx_clear_pending_mbx(vha);
3623                                 break;
3624                         }
3625                 }
3626         }
3627         ql_dbg(ql_dbg_init, vha, 0x00b0,
3628             "Entered %s fw_hung=%d.\n",
3629             __func__, ha->flags.isp82xx_fw_hung);
3630
3631         /* Abort all commands gracefully if fw NOT hung */
3632         if (!ha->flags.isp82xx_fw_hung) {
3633                 int cnt, que;
3634                 srb_t *sp;
3635                 struct req_que *req;
3636
3637                 spin_lock_irqsave(&ha->hardware_lock, flags);
3638                 for (que = 0; que < ha->max_req_queues; que++) {
3639                         req = ha->req_q_map[que];
3640                         if (!req)
3641                                 continue;
3642                         for (cnt = 1; cnt < req->num_outstanding_cmds; cnt++) {
3643                                 sp = req->outstanding_cmds[cnt];
3644                                 if (sp) {
3645                                         if ((!sp->u.scmd.crc_ctx ||
3646                                             (sp->flags &
3647                                                 SRB_FCP_CMND_DMA_VALID)) &&
3648                                                 !ha->flags.isp82xx_fw_hung) {
3649                                                 spin_unlock_irqrestore(
3650                                                     &ha->hardware_lock, flags);
3651                                                 if (ha->isp_ops->abort_command(sp)) {
3652                                                         ql_log(ql_log_info, vha,
3653                                                             0x00b1,
3654                                                             "mbx abort failed.\n");
3655                                                 } else {
3656                                                         ql_log(ql_log_info, vha,
3657                                                             0x00b2,
3658                                                             "mbx abort success.\n");
3659                                                 }
3660                                                 spin_lock_irqsave(&ha->hardware_lock, flags);
3661                                         }
3662                                 }
3663                         }
3664                 }
3665                 spin_unlock_irqrestore(&ha->hardware_lock, flags);
3666
3667                 /* Wait for pending cmds (physical and virtual) to complete */
3668                 if (qla2x00_eh_wait_for_pending_commands(vha, 0, 0,
3669                     WAIT_HOST) == QLA_SUCCESS) {
3670                         ql_dbg(ql_dbg_init, vha, 0x00b3,
3671                             "Done wait for "
3672                             "pending commands.\n");
3673                 } else {
3674                         WARN_ON_ONCE(true);
3675                 }
3676         }
3677 }
3678
3679 /* Minidump related functions */
3680 static int
3681 qla82xx_minidump_process_control(scsi_qla_host_t *vha,
3682         qla82xx_md_entry_hdr_t *entry_hdr, __le32 **d_ptr)
3683 {
3684         struct qla_hw_data *ha = vha->hw;
3685         struct qla82xx_md_entry_crb *crb_entry;
3686         uint32_t read_value, opcode, poll_time;
3687         uint32_t addr, index, crb_addr;
3688         unsigned long wtime;
3689         struct qla82xx_md_template_hdr *tmplt_hdr;
3690         uint32_t rval = QLA_SUCCESS;
3691         int i;
3692
3693         tmplt_hdr = (struct qla82xx_md_template_hdr *)ha->md_tmplt_hdr;
3694         crb_entry = (struct qla82xx_md_entry_crb *)entry_hdr;
3695         crb_addr = crb_entry->addr;
3696
3697         for (i = 0; i < crb_entry->op_count; i++) {
3698                 opcode = crb_entry->crb_ctrl.opcode;
3699                 if (opcode & QLA82XX_DBG_OPCODE_WR) {
3700                         qla82xx_md_rw_32(ha, crb_addr,
3701                             crb_entry->value_1, 1);
3702                         opcode &= ~QLA82XX_DBG_OPCODE_WR;
3703                 }
3704
3705                 if (opcode & QLA82XX_DBG_OPCODE_RW) {
3706                         read_value = qla82xx_md_rw_32(ha, crb_addr, 0, 0);
3707                         qla82xx_md_rw_32(ha, crb_addr, read_value, 1);
3708                         opcode &= ~QLA82XX_DBG_OPCODE_RW;
3709                 }
3710
3711                 if (opcode & QLA82XX_DBG_OPCODE_AND) {
3712                         read_value = qla82xx_md_rw_32(ha, crb_addr, 0, 0);
3713                         read_value &= crb_entry->value_2;
3714                         opcode &= ~QLA82XX_DBG_OPCODE_AND;
3715                         if (opcode & QLA82XX_DBG_OPCODE_OR) {
3716                                 read_value |= crb_entry->value_3;
3717                                 opcode &= ~QLA82XX_DBG_OPCODE_OR;
3718                         }
3719                         qla82xx_md_rw_32(ha, crb_addr, read_value, 1);
3720                 }
3721
3722                 if (opcode & QLA82XX_DBG_OPCODE_OR) {
3723                         read_value = qla82xx_md_rw_32(ha, crb_addr, 0, 0);
3724                         read_value |= crb_entry->value_3;
3725                         qla82xx_md_rw_32(ha, crb_addr, read_value, 1);
3726                         opcode &= ~QLA82XX_DBG_OPCODE_OR;
3727                 }
3728
3729                 if (opcode & QLA82XX_DBG_OPCODE_POLL) {
3730                         poll_time = crb_entry->crb_strd.poll_timeout;
3731                         wtime = jiffies + poll_time;
3732                         read_value = qla82xx_md_rw_32(ha, crb_addr, 0, 0);
3733
3734                         do {
3735                                 if ((read_value & crb_entry->value_2)
3736                                     == crb_entry->value_1)
3737                                         break;
3738                                 else if (time_after_eq(jiffies, wtime)) {
3739                                         /* capturing dump failed */
3740                                         rval = QLA_FUNCTION_FAILED;
3741                                         break;
3742                                 } else
3743                                         read_value = qla82xx_md_rw_32(ha,
3744                                             crb_addr, 0, 0);
3745                         } while (1);
3746                         opcode &= ~QLA82XX_DBG_OPCODE_POLL;
3747                 }
3748
3749                 if (opcode & QLA82XX_DBG_OPCODE_RDSTATE) {
3750                         if (crb_entry->crb_strd.state_index_a) {
3751                                 index = crb_entry->crb_strd.state_index_a;
3752                                 addr = tmplt_hdr->saved_state_array[index];
3753                         } else
3754                                 addr = crb_addr;
3755
3756                         read_value = qla82xx_md_rw_32(ha, addr, 0, 0);
3757                         index = crb_entry->crb_ctrl.state_index_v;
3758                         tmplt_hdr->saved_state_array[index] = read_value;
3759                         opcode &= ~QLA82XX_DBG_OPCODE_RDSTATE;
3760                 }
3761
3762                 if (opcode & QLA82XX_DBG_OPCODE_WRSTATE) {
3763                         if (crb_entry->crb_strd.state_index_a) {
3764                                 index = crb_entry->crb_strd.state_index_a;
3765                                 addr = tmplt_hdr->saved_state_array[index];
3766                         } else
3767                                 addr = crb_addr;
3768
3769                         if (crb_entry->crb_ctrl.state_index_v) {
3770                                 index = crb_entry->crb_ctrl.state_index_v;
3771                                 read_value =
3772                                     tmplt_hdr->saved_state_array[index];
3773                         } else
3774                                 read_value = crb_entry->value_1;
3775
3776                         qla82xx_md_rw_32(ha, addr, read_value, 1);
3777                         opcode &= ~QLA82XX_DBG_OPCODE_WRSTATE;
3778                 }
3779
3780                 if (opcode & QLA82XX_DBG_OPCODE_MDSTATE) {
3781                         index = crb_entry->crb_ctrl.state_index_v;
3782                         read_value = tmplt_hdr->saved_state_array[index];
3783                         read_value <<= crb_entry->crb_ctrl.shl;
3784                         read_value >>= crb_entry->crb_ctrl.shr;
3785                         if (crb_entry->value_2)
3786                                 read_value &= crb_entry->value_2;
3787                         read_value |= crb_entry->value_3;
3788                         read_value += crb_entry->value_1;
3789                         tmplt_hdr->saved_state_array[index] = read_value;
3790                         opcode &= ~QLA82XX_DBG_OPCODE_MDSTATE;
3791                 }
3792                 crb_addr += crb_entry->crb_strd.addr_stride;
3793         }
3794         return rval;
3795 }
3796
3797 static void
3798 qla82xx_minidump_process_rdocm(scsi_qla_host_t *vha,
3799         qla82xx_md_entry_hdr_t *entry_hdr, __le32 **d_ptr)
3800 {
3801         struct qla_hw_data *ha = vha->hw;
3802         uint32_t r_addr, r_stride, loop_cnt, i, r_value;
3803         struct qla82xx_md_entry_rdocm *ocm_hdr;
3804         __le32 *data_ptr = *d_ptr;
3805
3806         ocm_hdr = (struct qla82xx_md_entry_rdocm *)entry_hdr;
3807         r_addr = ocm_hdr->read_addr;
3808         r_stride = ocm_hdr->read_addr_stride;
3809         loop_cnt = ocm_hdr->op_count;
3810
3811         for (i = 0; i < loop_cnt; i++) {
3812                 r_value = rd_reg_dword(r_addr + ha->nx_pcibase);
3813                 *data_ptr++ = cpu_to_le32(r_value);
3814                 r_addr += r_stride;
3815         }
3816         *d_ptr = data_ptr;
3817 }
3818
3819 static void
3820 qla82xx_minidump_process_rdmux(scsi_qla_host_t *vha,
3821         qla82xx_md_entry_hdr_t *entry_hdr, __le32 **d_ptr)
3822 {
3823         struct qla_hw_data *ha = vha->hw;
3824         uint32_t r_addr, s_stride, s_addr, s_value, loop_cnt, i, r_value;
3825         struct qla82xx_md_entry_mux *mux_hdr;
3826         __le32 *data_ptr = *d_ptr;
3827
3828         mux_hdr = (struct qla82xx_md_entry_mux *)entry_hdr;
3829         r_addr = mux_hdr->read_addr;
3830         s_addr = mux_hdr->select_addr;
3831         s_stride = mux_hdr->select_value_stride;
3832         s_value = mux_hdr->select_value;
3833         loop_cnt = mux_hdr->op_count;
3834
3835         for (i = 0; i < loop_cnt; i++) {
3836                 qla82xx_md_rw_32(ha, s_addr, s_value, 1);
3837                 r_value = qla82xx_md_rw_32(ha, r_addr, 0, 0);
3838                 *data_ptr++ = cpu_to_le32(s_value);
3839                 *data_ptr++ = cpu_to_le32(r_value);
3840                 s_value += s_stride;
3841         }
3842         *d_ptr = data_ptr;
3843 }
3844
3845 static void
3846 qla82xx_minidump_process_rdcrb(scsi_qla_host_t *vha,
3847         qla82xx_md_entry_hdr_t *entry_hdr, __le32 **d_ptr)
3848 {
3849         struct qla_hw_data *ha = vha->hw;
3850         uint32_t r_addr, r_stride, loop_cnt, i, r_value;
3851         struct qla82xx_md_entry_crb *crb_hdr;
3852         __le32 *data_ptr = *d_ptr;
3853
3854         crb_hdr = (struct qla82xx_md_entry_crb *)entry_hdr;
3855         r_addr = crb_hdr->addr;
3856         r_stride = crb_hdr->crb_strd.addr_stride;
3857         loop_cnt = crb_hdr->op_count;
3858
3859         for (i = 0; i < loop_cnt; i++) {
3860                 r_value = qla82xx_md_rw_32(ha, r_addr, 0, 0);
3861                 *data_ptr++ = cpu_to_le32(r_addr);
3862                 *data_ptr++ = cpu_to_le32(r_value);
3863                 r_addr += r_stride;
3864         }
3865         *d_ptr = data_ptr;
3866 }
3867
3868 static int
3869 qla82xx_minidump_process_l2tag(scsi_qla_host_t *vha,
3870         qla82xx_md_entry_hdr_t *entry_hdr, __le32 **d_ptr)
3871 {
3872         struct qla_hw_data *ha = vha->hw;
3873         uint32_t addr, r_addr, c_addr, t_r_addr;
3874         uint32_t i, k, loop_count, t_value, r_cnt, r_value;
3875         unsigned long p_wait, w_time, p_mask;
3876         uint32_t c_value_w, c_value_r;
3877         struct qla82xx_md_entry_cache *cache_hdr;
3878         int rval = QLA_FUNCTION_FAILED;
3879         __le32 *data_ptr = *d_ptr;
3880
3881         cache_hdr = (struct qla82xx_md_entry_cache *)entry_hdr;
3882         loop_count = cache_hdr->op_count;
3883         r_addr = cache_hdr->read_addr;
3884         c_addr = cache_hdr->control_addr;
3885         c_value_w = cache_hdr->cache_ctrl.write_value;
3886
3887         t_r_addr = cache_hdr->tag_reg_addr;
3888         t_value = cache_hdr->addr_ctrl.init_tag_value;
3889         r_cnt = cache_hdr->read_ctrl.read_addr_cnt;
3890         p_wait = cache_hdr->cache_ctrl.poll_wait;
3891         p_mask = cache_hdr->cache_ctrl.poll_mask;
3892
3893         for (i = 0; i < loop_count; i++) {
3894                 qla82xx_md_rw_32(ha, t_r_addr, t_value, 1);
3895                 if (c_value_w)
3896                         qla82xx_md_rw_32(ha, c_addr, c_value_w, 1);
3897
3898                 if (p_mask) {
3899                         w_time = jiffies + p_wait;
3900                         do {
3901                                 c_value_r = qla82xx_md_rw_32(ha, c_addr, 0, 0);
3902                                 if ((c_value_r & p_mask) == 0)
3903                                         break;
3904                                 else if (time_after_eq(jiffies, w_time)) {
3905                                         /* capturing dump failed */
3906                                         ql_dbg(ql_dbg_p3p, vha, 0xb032,
3907                                             "c_value_r: 0x%x, poll_mask: 0x%lx, "
3908                                             "w_time: 0x%lx\n",
3909                                             c_value_r, p_mask, w_time);
3910                                         return rval;
3911                                 }
3912                         } while (1);
3913                 }
3914
3915                 addr = r_addr;
3916                 for (k = 0; k < r_cnt; k++) {
3917                         r_value = qla82xx_md_rw_32(ha, addr, 0, 0);
3918                         *data_ptr++ = cpu_to_le32(r_value);
3919                         addr += cache_hdr->read_ctrl.read_addr_stride;
3920                 }
3921                 t_value += cache_hdr->addr_ctrl.tag_value_stride;
3922         }
3923         *d_ptr = data_ptr;
3924         return QLA_SUCCESS;
3925 }
3926
3927 static void
3928 qla82xx_minidump_process_l1cache(scsi_qla_host_t *vha,
3929         qla82xx_md_entry_hdr_t *entry_hdr, __le32 **d_ptr)
3930 {
3931         struct qla_hw_data *ha = vha->hw;
3932         uint32_t addr, r_addr, c_addr, t_r_addr;
3933         uint32_t i, k, loop_count, t_value, r_cnt, r_value;
3934         uint32_t c_value_w;
3935         struct qla82xx_md_entry_cache *cache_hdr;
3936         __le32 *data_ptr = *d_ptr;
3937
3938         cache_hdr = (struct qla82xx_md_entry_cache *)entry_hdr;
3939         loop_count = cache_hdr->op_count;
3940         r_addr = cache_hdr->read_addr;
3941         c_addr = cache_hdr->control_addr;
3942         c_value_w = cache_hdr->cache_ctrl.write_value;
3943
3944         t_r_addr = cache_hdr->tag_reg_addr;
3945         t_value = cache_hdr->addr_ctrl.init_tag_value;
3946         r_cnt = cache_hdr->read_ctrl.read_addr_cnt;
3947
3948         for (i = 0; i < loop_count; i++) {
3949                 qla82xx_md_rw_32(ha, t_r_addr, t_value, 1);
3950                 qla82xx_md_rw_32(ha, c_addr, c_value_w, 1);
3951                 addr = r_addr;
3952                 for (k = 0; k < r_cnt; k++) {
3953                         r_value = qla82xx_md_rw_32(ha, addr, 0, 0);
3954                         *data_ptr++ = cpu_to_le32(r_value);
3955                         addr += cache_hdr->read_ctrl.read_addr_stride;
3956                 }
3957                 t_value += cache_hdr->addr_ctrl.tag_value_stride;
3958         }
3959         *d_ptr = data_ptr;
3960 }
3961
3962 static void
3963 qla82xx_minidump_process_queue(scsi_qla_host_t *vha,
3964         qla82xx_md_entry_hdr_t *entry_hdr, __le32 **d_ptr)
3965 {
3966         struct qla_hw_data *ha = vha->hw;
3967         uint32_t s_addr, r_addr;
3968         uint32_t r_stride, r_value, r_cnt, qid = 0;
3969         uint32_t i, k, loop_cnt;
3970         struct qla82xx_md_entry_queue *q_hdr;
3971         __le32 *data_ptr = *d_ptr;
3972
3973         q_hdr = (struct qla82xx_md_entry_queue *)entry_hdr;
3974         s_addr = q_hdr->select_addr;
3975         r_cnt = q_hdr->rd_strd.read_addr_cnt;
3976         r_stride = q_hdr->rd_strd.read_addr_stride;
3977         loop_cnt = q_hdr->op_count;
3978
3979         for (i = 0; i < loop_cnt; i++) {
3980                 qla82xx_md_rw_32(ha, s_addr, qid, 1);
3981                 r_addr = q_hdr->read_addr;
3982                 for (k = 0; k < r_cnt; k++) {
3983                         r_value = qla82xx_md_rw_32(ha, r_addr, 0, 0);
3984                         *data_ptr++ = cpu_to_le32(r_value);
3985                         r_addr += r_stride;
3986                 }
3987                 qid += q_hdr->q_strd.queue_id_stride;
3988         }
3989         *d_ptr = data_ptr;
3990 }
3991
3992 static void
3993 qla82xx_minidump_process_rdrom(scsi_qla_host_t *vha,
3994         qla82xx_md_entry_hdr_t *entry_hdr, __le32 **d_ptr)
3995 {
3996         struct qla_hw_data *ha = vha->hw;
3997         uint32_t r_addr, r_value;
3998         uint32_t i, loop_cnt;
3999         struct qla82xx_md_entry_rdrom *rom_hdr;
4000         __le32 *data_ptr = *d_ptr;
4001
4002         rom_hdr = (struct qla82xx_md_entry_rdrom *)entry_hdr;
4003         r_addr = rom_hdr->read_addr;
4004         loop_cnt = rom_hdr->read_data_size/sizeof(uint32_t);
4005
4006         for (i = 0; i < loop_cnt; i++) {
4007                 qla82xx_md_rw_32(ha, MD_DIRECT_ROM_WINDOW,
4008                     (r_addr & 0xFFFF0000), 1);
4009                 r_value = qla82xx_md_rw_32(ha,
4010                     MD_DIRECT_ROM_READ_BASE +
4011                     (r_addr & 0x0000FFFF), 0, 0);
4012                 *data_ptr++ = cpu_to_le32(r_value);
4013                 r_addr += sizeof(uint32_t);
4014         }
4015         *d_ptr = data_ptr;
4016 }
4017
4018 static int
4019 qla82xx_minidump_process_rdmem(scsi_qla_host_t *vha,
4020         qla82xx_md_entry_hdr_t *entry_hdr, __le32 **d_ptr)
4021 {
4022         struct qla_hw_data *ha = vha->hw;
4023         uint32_t r_addr, r_value, r_data;
4024         uint32_t i, j, loop_cnt;
4025         struct qla82xx_md_entry_rdmem *m_hdr;
4026         unsigned long flags;
4027         int rval = QLA_FUNCTION_FAILED;
4028         __le32 *data_ptr = *d_ptr;
4029
4030         m_hdr = (struct qla82xx_md_entry_rdmem *)entry_hdr;
4031         r_addr = m_hdr->read_addr;
4032         loop_cnt = m_hdr->read_data_size/16;
4033
4034         if (r_addr & 0xf) {
4035                 ql_log(ql_log_warn, vha, 0xb033,
4036                     "Read addr 0x%x not 16 bytes aligned\n", r_addr);
4037                 return rval;
4038         }
4039
4040         if (m_hdr->read_data_size % 16) {
4041                 ql_log(ql_log_warn, vha, 0xb034,
4042                     "Read data[0x%x] not multiple of 16 bytes\n",
4043                     m_hdr->read_data_size);
4044                 return rval;
4045         }
4046
4047         ql_dbg(ql_dbg_p3p, vha, 0xb035,
4048             "[%s]: rdmem_addr: 0x%x, read_data_size: 0x%x, loop_cnt: 0x%x\n",
4049             __func__, r_addr, m_hdr->read_data_size, loop_cnt);
4050
4051         write_lock_irqsave(&ha->hw_lock, flags);
4052         for (i = 0; i < loop_cnt; i++) {
4053                 qla82xx_md_rw_32(ha, MD_MIU_TEST_AGT_ADDR_LO, r_addr, 1);
4054                 r_value = 0;
4055                 qla82xx_md_rw_32(ha, MD_MIU_TEST_AGT_ADDR_HI, r_value, 1);
4056                 r_value = MIU_TA_CTL_ENABLE;
4057                 qla82xx_md_rw_32(ha, MD_MIU_TEST_AGT_CTRL, r_value, 1);
4058                 r_value = MIU_TA_CTL_START | MIU_TA_CTL_ENABLE;
4059                 qla82xx_md_rw_32(ha, MD_MIU_TEST_AGT_CTRL, r_value, 1);
4060
4061                 for (j = 0; j < MAX_CTL_CHECK; j++) {
4062                         r_value = qla82xx_md_rw_32(ha,
4063                             MD_MIU_TEST_AGT_CTRL, 0, 0);
4064                         if ((r_value & MIU_TA_CTL_BUSY) == 0)
4065                                 break;
4066                 }
4067
4068                 if (j >= MAX_CTL_CHECK) {
4069                         printk_ratelimited(KERN_ERR
4070                             "failed to read through agent\n");
4071                         write_unlock_irqrestore(&ha->hw_lock, flags);
4072                         return rval;
4073                 }
4074
4075                 for (j = 0; j < 4; j++) {
4076                         r_data = qla82xx_md_rw_32(ha,
4077                             MD_MIU_TEST_AGT_RDDATA[j], 0, 0);
4078                         *data_ptr++ = cpu_to_le32(r_data);
4079                 }
4080                 r_addr += 16;
4081         }
4082         write_unlock_irqrestore(&ha->hw_lock, flags);
4083         *d_ptr = data_ptr;
4084         return QLA_SUCCESS;
4085 }
4086
4087 int
4088 qla82xx_validate_template_chksum(scsi_qla_host_t *vha)
4089 {
4090         struct qla_hw_data *ha = vha->hw;
4091         uint64_t chksum = 0;
4092         uint32_t *d_ptr = (uint32_t *)ha->md_tmplt_hdr;
4093         int count = ha->md_template_size/sizeof(uint32_t);
4094
4095         while (count-- > 0)
4096                 chksum += *d_ptr++;
4097         while (chksum >> 32)
4098                 chksum = (chksum & 0xFFFFFFFF) + (chksum >> 32);
4099         return ~chksum;
4100 }
4101
4102 static void
4103 qla82xx_mark_entry_skipped(scsi_qla_host_t *vha,
4104         qla82xx_md_entry_hdr_t *entry_hdr, int index)
4105 {
4106         entry_hdr->d_ctrl.driver_flags |= QLA82XX_DBG_SKIPPED_FLAG;
4107         ql_dbg(ql_dbg_p3p, vha, 0xb036,
4108             "Skipping entry[%d]: "
4109             "ETYPE[0x%x]-ELEVEL[0x%x]\n",
4110             index, entry_hdr->entry_type,
4111             entry_hdr->d_ctrl.entry_capture_mask);
4112 }
4113
4114 int
4115 qla82xx_md_collect(scsi_qla_host_t *vha)
4116 {
4117         struct qla_hw_data *ha = vha->hw;
4118         int no_entry_hdr = 0;
4119         qla82xx_md_entry_hdr_t *entry_hdr;
4120         struct qla82xx_md_template_hdr *tmplt_hdr;
4121         __le32 *data_ptr;
4122         uint32_t total_data_size = 0, f_capture_mask, data_collected = 0;
4123         int i = 0, rval = QLA_FUNCTION_FAILED;
4124
4125         tmplt_hdr = (struct qla82xx_md_template_hdr *)ha->md_tmplt_hdr;
4126         data_ptr = ha->md_dump;
4127
4128         if (ha->fw_dumped) {
4129                 ql_log(ql_log_warn, vha, 0xb037,
4130                     "Firmware has been previously dumped (%p) "
4131                     "-- ignoring request.\n", ha->fw_dump);
4132                 goto md_failed;
4133         }
4134
4135         ha->fw_dumped = false;
4136
4137         if (!ha->md_tmplt_hdr || !ha->md_dump) {
4138                 ql_log(ql_log_warn, vha, 0xb038,
4139                     "Memory not allocated for minidump capture\n");
4140                 goto md_failed;
4141         }
4142
4143         if (ha->flags.isp82xx_no_md_cap) {
4144                 ql_log(ql_log_warn, vha, 0xb054,
4145                     "Forced reset from application, "
4146                     "ignore minidump capture\n");
4147                 ha->flags.isp82xx_no_md_cap = 0;
4148                 goto md_failed;
4149         }
4150
4151         if (qla82xx_validate_template_chksum(vha)) {
4152                 ql_log(ql_log_info, vha, 0xb039,
4153                     "Template checksum validation error\n");
4154                 goto md_failed;
4155         }
4156
4157         no_entry_hdr = tmplt_hdr->num_of_entries;
4158         ql_dbg(ql_dbg_p3p, vha, 0xb03a,
4159             "No of entry headers in Template: 0x%x\n", no_entry_hdr);
4160
4161         ql_dbg(ql_dbg_p3p, vha, 0xb03b,
4162             "Capture Mask obtained: 0x%x\n", tmplt_hdr->capture_debug_level);
4163
4164         f_capture_mask = tmplt_hdr->capture_debug_level & 0xFF;
4165
4166         /* Validate whether required debug level is set */
4167         if ((f_capture_mask & 0x3) != 0x3) {
4168                 ql_log(ql_log_warn, vha, 0xb03c,
4169                     "Minimum required capture mask[0x%x] level not set\n",
4170                     f_capture_mask);
4171                 goto md_failed;
4172         }
4173         tmplt_hdr->driver_capture_mask = ql2xmdcapmask;
4174
4175         tmplt_hdr->driver_info[0] = vha->host_no;
4176         tmplt_hdr->driver_info[1] = (QLA_DRIVER_MAJOR_VER << 24) |
4177             (QLA_DRIVER_MINOR_VER << 16) | (QLA_DRIVER_PATCH_VER << 8) |
4178             QLA_DRIVER_BETA_VER;
4179
4180         total_data_size = ha->md_dump_size;
4181
4182         ql_dbg(ql_dbg_p3p, vha, 0xb03d,
4183             "Total minidump data_size 0x%x to be captured\n", total_data_size);
4184
4185         /* Check whether template obtained is valid */
4186         if (tmplt_hdr->entry_type != QLA82XX_TLHDR) {
4187                 ql_log(ql_log_warn, vha, 0xb04e,
4188                     "Bad template header entry type: 0x%x obtained\n",
4189                     tmplt_hdr->entry_type);
4190                 goto md_failed;
4191         }
4192
4193         entry_hdr = (qla82xx_md_entry_hdr_t *)
4194             (((uint8_t *)ha->md_tmplt_hdr) + tmplt_hdr->first_entry_offset);
4195
4196         /* Walk through the entry headers */
4197         for (i = 0; i < no_entry_hdr; i++) {
4198
4199                 if (data_collected > total_data_size) {
4200                         ql_log(ql_log_warn, vha, 0xb03e,
4201                             "More MiniDump data collected: [0x%x]\n",
4202                             data_collected);
4203                         goto md_failed;
4204                 }
4205
4206                 if (!(entry_hdr->d_ctrl.entry_capture_mask &
4207                     ql2xmdcapmask)) {
4208                         entry_hdr->d_ctrl.driver_flags |=
4209                             QLA82XX_DBG_SKIPPED_FLAG;
4210                         ql_dbg(ql_dbg_p3p, vha, 0xb03f,
4211                             "Skipping entry[%d]: "
4212                             "ETYPE[0x%x]-ELEVEL[0x%x]\n",
4213                             i, entry_hdr->entry_type,
4214                             entry_hdr->d_ctrl.entry_capture_mask);
4215                         goto skip_nxt_entry;
4216                 }
4217
4218                 ql_dbg(ql_dbg_p3p, vha, 0xb040,
4219                     "[%s]: data ptr[%d]: %p, entry_hdr: %p\n"
4220                     "entry_type: 0x%x, capture_mask: 0x%x\n",
4221                     __func__, i, data_ptr, entry_hdr,
4222                     entry_hdr->entry_type,
4223                     entry_hdr->d_ctrl.entry_capture_mask);
4224
4225                 ql_dbg(ql_dbg_p3p, vha, 0xb041,
4226                     "Data collected: [0x%x], Dump size left:[0x%x]\n",
4227                     data_collected, (ha->md_dump_size - data_collected));
4228
4229                 /* Decode the entry type and take
4230                  * required action to capture debug data */
4231                 switch (entry_hdr->entry_type) {
4232                 case QLA82XX_RDEND:
4233                         qla82xx_mark_entry_skipped(vha, entry_hdr, i);
4234                         break;
4235                 case QLA82XX_CNTRL:
4236                         rval = qla82xx_minidump_process_control(vha,
4237                             entry_hdr, &data_ptr);
4238                         if (rval != QLA_SUCCESS) {
4239                                 qla82xx_mark_entry_skipped(vha, entry_hdr, i);
4240                                 goto md_failed;
4241                         }
4242                         break;
4243                 case QLA82XX_RDCRB:
4244                         qla82xx_minidump_process_rdcrb(vha,
4245                             entry_hdr, &data_ptr);
4246                         break;
4247                 case QLA82XX_RDMEM:
4248                         rval = qla82xx_minidump_process_rdmem(vha,
4249                             entry_hdr, &data_ptr);
4250                         if (rval != QLA_SUCCESS) {
4251                                 qla82xx_mark_entry_skipped(vha, entry_hdr, i);
4252                                 goto md_failed;
4253                         }
4254                         break;
4255                 case QLA82XX_BOARD:
4256                 case QLA82XX_RDROM:
4257                         qla82xx_minidump_process_rdrom(vha,
4258                             entry_hdr, &data_ptr);
4259                         break;
4260                 case QLA82XX_L2DTG:
4261                 case QLA82XX_L2ITG:
4262                 case QLA82XX_L2DAT:
4263                 case QLA82XX_L2INS:
4264                         rval = qla82xx_minidump_process_l2tag(vha,
4265                             entry_hdr, &data_ptr);
4266                         if (rval != QLA_SUCCESS) {
4267                                 qla82xx_mark_entry_skipped(vha, entry_hdr, i);
4268                                 goto md_failed;
4269                         }
4270                         break;
4271                 case QLA82XX_L1DAT:
4272                 case QLA82XX_L1INS:
4273                         qla82xx_minidump_process_l1cache(vha,
4274                             entry_hdr, &data_ptr);
4275                         break;
4276                 case QLA82XX_RDOCM:
4277                         qla82xx_minidump_process_rdocm(vha,
4278                             entry_hdr, &data_ptr);
4279                         break;
4280                 case QLA82XX_RDMUX:
4281                         qla82xx_minidump_process_rdmux(vha,
4282                             entry_hdr, &data_ptr);
4283                         break;
4284                 case QLA82XX_QUEUE:
4285                         qla82xx_minidump_process_queue(vha,
4286                             entry_hdr, &data_ptr);
4287                         break;
4288                 case QLA82XX_RDNOP:
4289                 default:
4290                         qla82xx_mark_entry_skipped(vha, entry_hdr, i);
4291                         break;
4292                 }
4293
4294                 ql_dbg(ql_dbg_p3p, vha, 0xb042,
4295                     "[%s]: data ptr[%d]: %p\n", __func__, i, data_ptr);
4296
4297                 data_collected = (uint8_t *)data_ptr -
4298                     (uint8_t *)ha->md_dump;
4299 skip_nxt_entry:
4300                 entry_hdr = (qla82xx_md_entry_hdr_t *)
4301                     (((uint8_t *)entry_hdr) + entry_hdr->entry_size);
4302         }
4303
4304         if (data_collected != total_data_size) {
4305                 ql_dbg(ql_dbg_p3p, vha, 0xb043,
4306                     "MiniDump data mismatch: Data collected: [0x%x],"
4307                     "total_data_size:[0x%x]\n",
4308                     data_collected, total_data_size);
4309                 goto md_failed;
4310         }
4311
4312         ql_log(ql_log_info, vha, 0xb044,
4313             "Firmware dump saved to temp buffer (%ld/%p %ld/%p).\n",
4314             vha->host_no, ha->md_tmplt_hdr, vha->host_no, ha->md_dump);
4315         ha->fw_dumped = true;
4316         qla2x00_post_uevent_work(vha, QLA_UEVENT_CODE_FW_DUMP);
4317
4318 md_failed:
4319         return rval;
4320 }
4321
4322 int
4323 qla82xx_md_alloc(scsi_qla_host_t *vha)
4324 {
4325         struct qla_hw_data *ha = vha->hw;
4326         int i, k;
4327         struct qla82xx_md_template_hdr *tmplt_hdr;
4328
4329         tmplt_hdr = (struct qla82xx_md_template_hdr *)ha->md_tmplt_hdr;
4330
4331         if (ql2xmdcapmask < 0x3 || ql2xmdcapmask > 0x7F) {
4332                 ql2xmdcapmask = tmplt_hdr->capture_debug_level & 0xFF;
4333                 ql_log(ql_log_info, vha, 0xb045,
4334                     "Forcing driver capture mask to firmware default capture mask: 0x%x.\n",
4335                     ql2xmdcapmask);
4336         }
4337
4338         for (i = 0x2, k = 1; (i & QLA82XX_DEFAULT_CAP_MASK); i <<= 1, k++) {
4339                 if (i & ql2xmdcapmask)
4340                         ha->md_dump_size += tmplt_hdr->capture_size_array[k];
4341         }
4342
4343         if (ha->md_dump) {
4344                 ql_log(ql_log_warn, vha, 0xb046,
4345                     "Firmware dump previously allocated.\n");
4346                 return 1;
4347         }
4348
4349         ha->md_dump = vmalloc(ha->md_dump_size);
4350         if (ha->md_dump == NULL) {
4351                 ql_log(ql_log_warn, vha, 0xb047,
4352                     "Unable to allocate memory for Minidump size "
4353                     "(0x%x).\n", ha->md_dump_size);
4354                 return 1;
4355         }
4356         return 0;
4357 }
4358
4359 void
4360 qla82xx_md_free(scsi_qla_host_t *vha)
4361 {
4362         struct qla_hw_data *ha = vha->hw;
4363
4364         /* Release the template header allocated */
4365         if (ha->md_tmplt_hdr) {
4366                 ql_log(ql_log_info, vha, 0xb048,
4367                     "Free MiniDump template: %p, size (%d KB)\n",
4368                     ha->md_tmplt_hdr, ha->md_template_size / 1024);
4369                 dma_free_coherent(&ha->pdev->dev, ha->md_template_size,
4370                     ha->md_tmplt_hdr, ha->md_tmplt_hdr_dma);
4371                 ha->md_tmplt_hdr = NULL;
4372         }
4373
4374         /* Release the template data buffer allocated */
4375         if (ha->md_dump) {
4376                 ql_log(ql_log_info, vha, 0xb049,
4377                     "Free MiniDump memory: %p, size (%d KB)\n",
4378                     ha->md_dump, ha->md_dump_size / 1024);
4379                 vfree(ha->md_dump);
4380                 ha->md_dump_size = 0;
4381                 ha->md_dump = NULL;
4382         }
4383 }
4384
4385 void
4386 qla82xx_md_prep(scsi_qla_host_t *vha)
4387 {
4388         struct qla_hw_data *ha = vha->hw;
4389         int rval;
4390
4391         /* Get Minidump template size */
4392         rval = qla82xx_md_get_template_size(vha);
4393         if (rval == QLA_SUCCESS) {
4394                 ql_log(ql_log_info, vha, 0xb04a,
4395                     "MiniDump Template size obtained (%d KB)\n",
4396                     ha->md_template_size / 1024);
4397
4398                 /* Get Minidump template */
4399                 if (IS_QLA8044(ha))
4400                         rval = qla8044_md_get_template(vha);
4401                 else
4402                         rval = qla82xx_md_get_template(vha);
4403
4404                 if (rval == QLA_SUCCESS) {
4405                         ql_dbg(ql_dbg_p3p, vha, 0xb04b,
4406                             "MiniDump Template obtained\n");
4407
4408                         /* Allocate memory for minidump */
4409                         rval = qla82xx_md_alloc(vha);
4410                         if (rval == QLA_SUCCESS)
4411                                 ql_log(ql_log_info, vha, 0xb04c,
4412                                     "MiniDump memory allocated (%d KB)\n",
4413                                     ha->md_dump_size / 1024);
4414                         else {
4415                                 ql_log(ql_log_info, vha, 0xb04d,
4416                                     "Free MiniDump template: %p, size: (%d KB)\n",
4417                                     ha->md_tmplt_hdr,
4418                                     ha->md_template_size / 1024);
4419                                 dma_free_coherent(&ha->pdev->dev,
4420                                     ha->md_template_size,
4421                                     ha->md_tmplt_hdr, ha->md_tmplt_hdr_dma);
4422                                 ha->md_tmplt_hdr = NULL;
4423                         }
4424
4425                 }
4426         }
4427 }
4428
4429 int
4430 qla82xx_beacon_on(struct scsi_qla_host *vha)
4431 {
4432
4433         int rval;
4434         struct qla_hw_data *ha = vha->hw;
4435
4436         qla82xx_idc_lock(ha);
4437         rval = qla82xx_mbx_beacon_ctl(vha, 1);
4438
4439         if (rval) {
4440                 ql_log(ql_log_warn, vha, 0xb050,
4441                     "mbx set led config failed in %s\n", __func__);
4442                 goto exit;
4443         }
4444         ha->beacon_blink_led = 1;
4445 exit:
4446         qla82xx_idc_unlock(ha);
4447         return rval;
4448 }
4449
4450 int
4451 qla82xx_beacon_off(struct scsi_qla_host *vha)
4452 {
4453
4454         int rval;
4455         struct qla_hw_data *ha = vha->hw;
4456
4457         qla82xx_idc_lock(ha);
4458         rval = qla82xx_mbx_beacon_ctl(vha, 0);
4459
4460         if (rval) {
4461                 ql_log(ql_log_warn, vha, 0xb051,
4462                     "mbx set led config failed in %s\n", __func__);
4463                 goto exit;
4464         }
4465         ha->beacon_blink_led = 0;
4466 exit:
4467         qla82xx_idc_unlock(ha);
4468         return rval;
4469 }
4470
4471 void
4472 qla82xx_fw_dump(scsi_qla_host_t *vha)
4473 {
4474         struct qla_hw_data *ha = vha->hw;
4475
4476         if (!ha->allow_cna_fw_dump)
4477                 return;
4478
4479         scsi_block_requests(vha->host);
4480         ha->flags.isp82xx_no_md_cap = 1;
4481         qla82xx_idc_lock(ha);
4482         qla82xx_set_reset_owner(vha);
4483         qla82xx_idc_unlock(ha);
4484         qla2x00_wait_for_chip_reset(vha);
4485         scsi_unblock_requests(vha->host);
4486 }