blob: 2530d1365556051891ae9cd71a128081648765ea [file] [log] [blame]
Sakthivel Kf5860992013-04-17 16:37:02 +05301/*
2 * PMC-Sierra SPCv/ve 8088/8089 SAS/SATA based host adapters driver
3 *
4 * Copyright (c) 2008-2009 PMC-Sierra, Inc.,
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions, and the following disclaimer,
12 * without modification.
13 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
14 * substantially similar to the "NO WARRANTY" disclaimer below
15 * ("Disclaimer") and any redistribution must be conditioned upon
16 * including a substantially similar Disclaimer requirement for further
17 * binary redistribution.
18 * 3. Neither the names of the above-listed copyright holders nor the names
19 * of any contributors may be used to endorse or promote products derived
20 * from this software without specific prior written permission.
21 *
22 * Alternatively, this software may be distributed under the terms of the
23 * GNU General Public License ("GPL") version 2 as published by the Free
24 * Software Foundation.
25 *
26 * NO WARRANTY
27 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
28 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
29 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
30 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
31 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
32 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
33 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
34 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
35 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
36 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
37 * POSSIBILITY OF SUCH DAMAGES.
38 *
39 */
40 #include <linux/slab.h>
41 #include "pm8001_sas.h"
42 #include "pm80xx_hwi.h"
43 #include "pm8001_chips.h"
44 #include "pm8001_ctl.h"
Changyuan Lyu8ceddda2021-11-15 13:57:49 -080045#include "pm80xx_tracepoints.h"
Sakthivel Kf5860992013-04-17 16:37:02 +053046
47#define SMP_DIRECT 1
48#define SMP_INDIRECT 2
Anand Kumar Santhanamd078b512013-09-04 12:57:00 +053049
50
51int pm80xx_bar4_shift(struct pm8001_hba_info *pm8001_ha, u32 shift_value)
52{
53 u32 reg_val;
54 unsigned long start;
55 pm8001_cw32(pm8001_ha, 0, MEMBASE_II_SHIFT_REGISTER, shift_value);
56 /* confirm the setting is written */
57 start = jiffies + HZ; /* 1 sec */
58 do {
59 reg_val = pm8001_cr32(pm8001_ha, 0, MEMBASE_II_SHIFT_REGISTER);
60 } while ((reg_val != shift_value) && time_before(jiffies, start));
61 if (reg_val != shift_value) {
Joe Perches1b5d2792020-11-20 15:16:09 -080062 pm8001_dbg(pm8001_ha, FAIL, "TIMEOUT:MEMBASE_II_SHIFT_REGISTER = 0x%x\n",
63 reg_val);
Anand Kumar Santhanamd078b512013-09-04 12:57:00 +053064 return -1;
65 }
66 return 0;
67}
68
Lee Jonesea310f52020-07-21 17:41:33 +010069static void pm80xx_pci_mem_copy(struct pm8001_hba_info *pm8001_ha, u32 soffset,
Anand Kumar Santhanamd078b512013-09-04 12:57:00 +053070 const void *destination,
71 u32 dw_count, u32 bus_base_number)
72{
73 u32 index, value, offset;
74 u32 *destination1;
75 destination1 = (u32 *)destination;
76
77 for (index = 0; index < dw_count; index += 4, destination1++) {
Deepak Ukey044f59d2019-11-14 15:39:10 +053078 offset = (soffset + index);
Anand Kumar Santhanamd078b512013-09-04 12:57:00 +053079 if (offset < (64 * 1024)) {
80 value = pm8001_cr32(pm8001_ha, bus_base_number, offset);
81 *destination1 = cpu_to_le32(value);
82 }
83 }
84 return;
85}
86
87ssize_t pm80xx_get_fatal_dump(struct device *cdev,
88 struct device_attribute *attr, char *buf)
89{
90 struct Scsi_Host *shost = class_to_shost(cdev);
91 struct sas_ha_struct *sha = SHOST_TO_SAS_HA(shost);
92 struct pm8001_hba_info *pm8001_ha = sha->lldd_ha;
93 void __iomem *fatal_table_address = pm8001_ha->fatal_tbl_addr;
Luo Jiaxing8a23dbc2021-04-08 20:56:32 +080094 u32 accum_len, reg_val, index, *temp;
Deepak Ukey044f59d2019-11-14 15:39:10 +053095 u32 status = 1;
Anand Kumar Santhanamd078b512013-09-04 12:57:00 +053096 unsigned long start;
97 u8 *direct_data;
98 char *fatal_error_data = buf;
Deepak Ukey044f59d2019-11-14 15:39:10 +053099 u32 length_to_read;
100 u32 offset;
Anand Kumar Santhanamd078b512013-09-04 12:57:00 +0530101
102 pm8001_ha->forensic_info.data_buf.direct_data = buf;
103 if (pm8001_ha->chip_id == chip_8001) {
104 pm8001_ha->forensic_info.data_buf.direct_data +=
105 sprintf(pm8001_ha->forensic_info.data_buf.direct_data,
106 "Not supported for SPC controller");
107 return (char *)pm8001_ha->forensic_info.data_buf.direct_data -
108 (char *)buf;
109 }
Deepak Ukey044f59d2019-11-14 15:39:10 +0530110 /* initialize variables for very first call from host application */
Anand Kumar Santhanamd078b512013-09-04 12:57:00 +0530111 if (pm8001_ha->forensic_info.data_buf.direct_offset == 0) {
Joe Perches1b5d2792020-11-20 15:16:09 -0800112 pm8001_dbg(pm8001_ha, IO,
113 "forensic_info TYPE_NON_FATAL..............\n");
Anand Kumar Santhanamd078b512013-09-04 12:57:00 +0530114 direct_data = (u8 *)fatal_error_data;
115 pm8001_ha->forensic_info.data_type = TYPE_NON_FATAL;
116 pm8001_ha->forensic_info.data_buf.direct_len = SYSFS_OFFSET;
Deepak Ukey044f59d2019-11-14 15:39:10 +0530117 pm8001_ha->forensic_info.data_buf.direct_offset = 0;
Anand Kumar Santhanamd078b512013-09-04 12:57:00 +0530118 pm8001_ha->forensic_info.data_buf.read_len = 0;
Deepak Ukey044f59d2019-11-14 15:39:10 +0530119 pm8001_ha->forensic_preserved_accumulated_transfer = 0;
120
121 /* Write signature to fatal dump table */
122 pm8001_mw32(fatal_table_address,
123 MPI_FATAL_EDUMP_TABLE_SIGNATURE, 0x1234abcd);
Anand Kumar Santhanamd078b512013-09-04 12:57:00 +0530124
125 pm8001_ha->forensic_info.data_buf.direct_data = direct_data;
Joe Perches1b5d2792020-11-20 15:16:09 -0800126 pm8001_dbg(pm8001_ha, IO, "ossaHwCB: status1 %d\n", status);
127 pm8001_dbg(pm8001_ha, IO, "ossaHwCB: read_len 0x%x\n",
128 pm8001_ha->forensic_info.data_buf.read_len);
129 pm8001_dbg(pm8001_ha, IO, "ossaHwCB: direct_len 0x%x\n",
130 pm8001_ha->forensic_info.data_buf.direct_len);
131 pm8001_dbg(pm8001_ha, IO, "ossaHwCB: direct_offset 0x%x\n",
132 pm8001_ha->forensic_info.data_buf.direct_offset);
Deepak Ukey044f59d2019-11-14 15:39:10 +0530133 }
134 if (pm8001_ha->forensic_info.data_buf.direct_offset == 0) {
Anand Kumar Santhanamd078b512013-09-04 12:57:00 +0530135 /* start to get data */
136 /* Program the MEMBASE II Shifting Register with 0x00.*/
137 pm8001_cw32(pm8001_ha, 0, MEMBASE_II_SHIFT_REGISTER,
138 pm8001_ha->fatal_forensic_shift_offset);
139 pm8001_ha->forensic_last_offset = 0;
140 pm8001_ha->forensic_fatal_step = 0;
141 pm8001_ha->fatal_bar_loc = 0;
142 }
Viswas Gcf370062013-12-10 10:31:38 +0530143
Randy Dunlapbb6beab2021-07-08 09:57:23 -0700144 /* Read until accum_len is retrieved */
Anand Kumar Santhanamd078b512013-09-04 12:57:00 +0530145 accum_len = pm8001_mr32(fatal_table_address,
146 MPI_FATAL_EDUMP_TABLE_ACCUM_LEN);
Deepak Ukey044f59d2019-11-14 15:39:10 +0530147 /* Determine length of data between previously stored transfer length
148 * and current accumulated transfer length
149 */
150 length_to_read =
151 accum_len - pm8001_ha->forensic_preserved_accumulated_transfer;
Joe Perches1b5d2792020-11-20 15:16:09 -0800152 pm8001_dbg(pm8001_ha, IO, "get_fatal_spcv: accum_len 0x%x\n",
153 accum_len);
154 pm8001_dbg(pm8001_ha, IO, "get_fatal_spcv: length_to_read 0x%x\n",
155 length_to_read);
156 pm8001_dbg(pm8001_ha, IO, "get_fatal_spcv: last_offset 0x%x\n",
157 pm8001_ha->forensic_last_offset);
158 pm8001_dbg(pm8001_ha, IO, "get_fatal_spcv: read_len 0x%x\n",
159 pm8001_ha->forensic_info.data_buf.read_len);
160 pm8001_dbg(pm8001_ha, IO, "get_fatal_spcv:: direct_len 0x%x\n",
161 pm8001_ha->forensic_info.data_buf.direct_len);
162 pm8001_dbg(pm8001_ha, IO, "get_fatal_spcv:: direct_offset 0x%x\n",
163 pm8001_ha->forensic_info.data_buf.direct_offset);
Deepak Ukey044f59d2019-11-14 15:39:10 +0530164
165 /* If accumulated length failed to read correctly fail the attempt.*/
Anand Kumar Santhanamd078b512013-09-04 12:57:00 +0530166 if (accum_len == 0xFFFFFFFF) {
Joe Perches1b5d2792020-11-20 15:16:09 -0800167 pm8001_dbg(pm8001_ha, IO,
168 "Possible PCI issue 0x%x not expected\n",
169 accum_len);
Deepak Ukey044f59d2019-11-14 15:39:10 +0530170 return status;
Anand Kumar Santhanamd078b512013-09-04 12:57:00 +0530171 }
Deepak Ukey044f59d2019-11-14 15:39:10 +0530172 /* If accumulated length is zero fail the attempt */
173 if (accum_len == 0) {
Anand Kumar Santhanamd078b512013-09-04 12:57:00 +0530174 pm8001_ha->forensic_info.data_buf.direct_data +=
175 sprintf(pm8001_ha->forensic_info.data_buf.direct_data,
Deepak Ukey044f59d2019-11-14 15:39:10 +0530176 "%08x ", 0xFFFFFFFF);
Anand Kumar Santhanamd078b512013-09-04 12:57:00 +0530177 return (char *)pm8001_ha->forensic_info.data_buf.direct_data -
178 (char *)buf;
179 }
Deepak Ukey044f59d2019-11-14 15:39:10 +0530180 /* Accumulated length is good so start capturing the first data */
Anand Kumar Santhanamd078b512013-09-04 12:57:00 +0530181 temp = (u32 *)pm8001_ha->memoryMap.region[FORENSIC_MEM].virt_ptr;
182 if (pm8001_ha->forensic_fatal_step == 0) {
183moreData:
Deepak Ukey044f59d2019-11-14 15:39:10 +0530184 /* If data to read is less than SYSFS_OFFSET then reduce the
185 * length of dataLen
186 */
187 if (pm8001_ha->forensic_last_offset + SYSFS_OFFSET
188 > length_to_read) {
189 pm8001_ha->forensic_info.data_buf.direct_len =
190 length_to_read -
191 pm8001_ha->forensic_last_offset;
192 } else {
193 pm8001_ha->forensic_info.data_buf.direct_len =
194 SYSFS_OFFSET;
195 }
Anand Kumar Santhanamd078b512013-09-04 12:57:00 +0530196 if (pm8001_ha->forensic_info.data_buf.direct_data) {
197 /* Data is in bar, copy to host memory */
Deepak Ukey044f59d2019-11-14 15:39:10 +0530198 pm80xx_pci_mem_copy(pm8001_ha,
199 pm8001_ha->fatal_bar_loc,
200 pm8001_ha->memoryMap.region[FORENSIC_MEM].virt_ptr,
201 pm8001_ha->forensic_info.data_buf.direct_len, 1);
Anand Kumar Santhanamd078b512013-09-04 12:57:00 +0530202 }
203 pm8001_ha->fatal_bar_loc +=
204 pm8001_ha->forensic_info.data_buf.direct_len;
205 pm8001_ha->forensic_info.data_buf.direct_offset +=
206 pm8001_ha->forensic_info.data_buf.direct_len;
207 pm8001_ha->forensic_last_offset +=
208 pm8001_ha->forensic_info.data_buf.direct_len;
209 pm8001_ha->forensic_info.data_buf.read_len =
210 pm8001_ha->forensic_info.data_buf.direct_len;
211
Deepak Ukey044f59d2019-11-14 15:39:10 +0530212 if (pm8001_ha->forensic_last_offset >= length_to_read) {
Anand Kumar Santhanamd078b512013-09-04 12:57:00 +0530213 pm8001_ha->forensic_info.data_buf.direct_data +=
214 sprintf(pm8001_ha->forensic_info.data_buf.direct_data,
215 "%08x ", 3);
Deepak Ukey044f59d2019-11-14 15:39:10 +0530216 for (index = 0; index <
217 (pm8001_ha->forensic_info.data_buf.direct_len
218 / 4); index++) {
Anand Kumar Santhanamd078b512013-09-04 12:57:00 +0530219 pm8001_ha->forensic_info.data_buf.direct_data +=
Deepak Ukey044f59d2019-11-14 15:39:10 +0530220 sprintf(
221 pm8001_ha->forensic_info.data_buf.direct_data,
222 "%08x ", *(temp + index));
Anand Kumar Santhanamd078b512013-09-04 12:57:00 +0530223 }
224
225 pm8001_ha->fatal_bar_loc = 0;
226 pm8001_ha->forensic_fatal_step = 1;
227 pm8001_ha->fatal_forensic_shift_offset = 0;
228 pm8001_ha->forensic_last_offset = 0;
Deepak Ukey044f59d2019-11-14 15:39:10 +0530229 status = 0;
230 offset = (int)
231 ((char *)pm8001_ha->forensic_info.data_buf.direct_data
232 - (char *)buf);
Joe Perches1b5d2792020-11-20 15:16:09 -0800233 pm8001_dbg(pm8001_ha, IO,
234 "get_fatal_spcv:return1 0x%x\n", offset);
Anand Kumar Santhanamd078b512013-09-04 12:57:00 +0530235 return (char *)pm8001_ha->
236 forensic_info.data_buf.direct_data -
237 (char *)buf;
238 }
239 if (pm8001_ha->fatal_bar_loc < (64 * 1024)) {
240 pm8001_ha->forensic_info.data_buf.direct_data +=
241 sprintf(pm8001_ha->
242 forensic_info.data_buf.direct_data,
243 "%08x ", 2);
Deepak Ukey044f59d2019-11-14 15:39:10 +0530244 for (index = 0; index <
245 (pm8001_ha->forensic_info.data_buf.direct_len
246 / 4); index++) {
247 pm8001_ha->forensic_info.data_buf.direct_data
248 += sprintf(pm8001_ha->
Anand Kumar Santhanamd078b512013-09-04 12:57:00 +0530249 forensic_info.data_buf.direct_data,
250 "%08x ", *(temp + index));
251 }
Deepak Ukey044f59d2019-11-14 15:39:10 +0530252 status = 0;
253 offset = (int)
254 ((char *)pm8001_ha->forensic_info.data_buf.direct_data
255 - (char *)buf);
Joe Perches1b5d2792020-11-20 15:16:09 -0800256 pm8001_dbg(pm8001_ha, IO,
257 "get_fatal_spcv:return2 0x%x\n", offset);
Anand Kumar Santhanamd078b512013-09-04 12:57:00 +0530258 return (char *)pm8001_ha->
259 forensic_info.data_buf.direct_data -
260 (char *)buf;
261 }
262
263 /* Increment the MEMBASE II Shifting Register value by 0x100.*/
264 pm8001_ha->forensic_info.data_buf.direct_data +=
265 sprintf(pm8001_ha->forensic_info.data_buf.direct_data,
266 "%08x ", 2);
Deepak Ukey044f59d2019-11-14 15:39:10 +0530267 for (index = 0; index <
268 (pm8001_ha->forensic_info.data_buf.direct_len
269 / 4) ; index++) {
Anand Kumar Santhanamd078b512013-09-04 12:57:00 +0530270 pm8001_ha->forensic_info.data_buf.direct_data +=
271 sprintf(pm8001_ha->
Deepak Ukey044f59d2019-11-14 15:39:10 +0530272 forensic_info.data_buf.direct_data,
273 "%08x ", *(temp + index));
Anand Kumar Santhanamd078b512013-09-04 12:57:00 +0530274 }
275 pm8001_ha->fatal_forensic_shift_offset += 0x100;
276 pm8001_cw32(pm8001_ha, 0, MEMBASE_II_SHIFT_REGISTER,
277 pm8001_ha->fatal_forensic_shift_offset);
278 pm8001_ha->fatal_bar_loc = 0;
Deepak Ukey044f59d2019-11-14 15:39:10 +0530279 status = 0;
280 offset = (int)
281 ((char *)pm8001_ha->forensic_info.data_buf.direct_data
282 - (char *)buf);
Joe Perches1b5d2792020-11-20 15:16:09 -0800283 pm8001_dbg(pm8001_ha, IO, "get_fatal_spcv: return3 0x%x\n",
284 offset);
Anand Kumar Santhanamd078b512013-09-04 12:57:00 +0530285 return (char *)pm8001_ha->forensic_info.data_buf.direct_data -
286 (char *)buf;
287 }
288 if (pm8001_ha->forensic_fatal_step == 1) {
Deepak Ukey044f59d2019-11-14 15:39:10 +0530289 /* store previous accumulated length before triggering next
290 * accumulated length update
291 */
292 pm8001_ha->forensic_preserved_accumulated_transfer =
293 pm8001_mr32(fatal_table_address,
294 MPI_FATAL_EDUMP_TABLE_ACCUM_LEN);
295
296 /* continue capturing the fatal log until Dump status is 0x3 */
297 if (pm8001_mr32(fatal_table_address,
298 MPI_FATAL_EDUMP_TABLE_STATUS) <
299 MPI_FATAL_EDUMP_TABLE_STAT_NF_SUCCESS_DONE) {
300
301 /* reset fddstat bit by writing to zero*/
302 pm8001_mw32(fatal_table_address,
303 MPI_FATAL_EDUMP_TABLE_STATUS, 0x0);
304
305 /* set dump control value to '1' so that new data will
306 * be transferred to shared memory
307 */
308 pm8001_mw32(fatal_table_address,
309 MPI_FATAL_EDUMP_TABLE_HANDSHAKE,
Anand Kumar Santhanamd078b512013-09-04 12:57:00 +0530310 MPI_FATAL_EDUMP_HANDSHAKE_RDY);
311
Deepak Ukey044f59d2019-11-14 15:39:10 +0530312 /*Poll FDDHSHK until clear */
313 start = jiffies + (2 * HZ); /* 2 sec */
Anand Kumar Santhanamd078b512013-09-04 12:57:00 +0530314
Deepak Ukey044f59d2019-11-14 15:39:10 +0530315 do {
316 reg_val = pm8001_mr32(fatal_table_address,
Anand Kumar Santhanamd078b512013-09-04 12:57:00 +0530317 MPI_FATAL_EDUMP_TABLE_HANDSHAKE);
Deepak Ukey044f59d2019-11-14 15:39:10 +0530318 } while ((reg_val) && time_before(jiffies, start));
Anand Kumar Santhanamd078b512013-09-04 12:57:00 +0530319
Deepak Ukey044f59d2019-11-14 15:39:10 +0530320 if (reg_val != 0) {
Joe Perches1b5d2792020-11-20 15:16:09 -0800321 pm8001_dbg(pm8001_ha, FAIL,
322 "TIMEOUT:MPI_FATAL_EDUMP_TABLE_HDSHAKE 0x%x\n",
323 reg_val);
Deepak Ukey044f59d2019-11-14 15:39:10 +0530324 /* Fail the dump if a timeout occurs */
325 pm8001_ha->forensic_info.data_buf.direct_data +=
326 sprintf(
327 pm8001_ha->forensic_info.data_buf.direct_data,
328 "%08x ", 0xFFFFFFFF);
329 return((char *)
330 pm8001_ha->forensic_info.data_buf.direct_data
331 - (char *)buf);
332 }
333 /* Poll status register until set to 2 or
334 * 3 for up to 2 seconds
335 */
336 start = jiffies + (2 * HZ); /* 2 sec */
Anand Kumar Santhanamd078b512013-09-04 12:57:00 +0530337
Deepak Ukey044f59d2019-11-14 15:39:10 +0530338 do {
339 reg_val = pm8001_mr32(fatal_table_address,
340 MPI_FATAL_EDUMP_TABLE_STATUS);
Colin Ian King0e7c3532019-11-20 13:50:31 +0000341 } while (((reg_val != 2) && (reg_val != 3)) &&
Deepak Ukey044f59d2019-11-14 15:39:10 +0530342 time_before(jiffies, start));
343
344 if (reg_val < 2) {
Joe Perches1b5d2792020-11-20 15:16:09 -0800345 pm8001_dbg(pm8001_ha, FAIL,
346 "TIMEOUT:MPI_FATAL_EDUMP_TABLE_STATUS = 0x%x\n",
347 reg_val);
Deepak Ukey044f59d2019-11-14 15:39:10 +0530348 /* Fail the dump if a timeout occurs */
349 pm8001_ha->forensic_info.data_buf.direct_data +=
350 sprintf(
351 pm8001_ha->forensic_info.data_buf.direct_data,
352 "%08x ", 0xFFFFFFFF);
Viswas Gec2e7e12021-01-09 18:08:46 +0530353 return((char *)pm8001_ha->forensic_info.data_buf.direct_data -
354 (char *)buf);
355 }
356 /* reset fatal_forensic_shift_offset back to zero and reset MEMBASE 2 register to zero */
357 pm8001_ha->fatal_forensic_shift_offset = 0; /* location in 64k region */
358 pm8001_cw32(pm8001_ha, 0,
Deepak Ukey044f59d2019-11-14 15:39:10 +0530359 MEMBASE_II_SHIFT_REGISTER,
360 pm8001_ha->fatal_forensic_shift_offset);
Viswas Gec2e7e12021-01-09 18:08:46 +0530361 }
Colin Ian King7b382122021-01-15 09:58:24 +0000362 /* Read the next block of the debug data.*/
363 length_to_read = pm8001_mr32(fatal_table_address,
364 MPI_FATAL_EDUMP_TABLE_ACCUM_LEN) -
365 pm8001_ha->forensic_preserved_accumulated_transfer;
366 if (length_to_read != 0x0) {
367 pm8001_ha->forensic_fatal_step = 0;
368 goto moreData;
369 } else {
370 pm8001_ha->forensic_info.data_buf.direct_data +=
371 sprintf(pm8001_ha->forensic_info.data_buf.direct_data,
Deepak Ukey044f59d2019-11-14 15:39:10 +0530372 "%08x ", 4);
Colin Ian King7b382122021-01-15 09:58:24 +0000373 pm8001_ha->forensic_info.data_buf.read_len = 0xFFFFFFFF;
374 pm8001_ha->forensic_info.data_buf.direct_len = 0;
375 pm8001_ha->forensic_info.data_buf.direct_offset = 0;
376 pm8001_ha->forensic_info.data_buf.read_len = 0;
377 }
Anand Kumar Santhanamd078b512013-09-04 12:57:00 +0530378 }
Deepak Ukey044f59d2019-11-14 15:39:10 +0530379 offset = (int)((char *)pm8001_ha->forensic_info.data_buf.direct_data
380 - (char *)buf);
Joe Perches1b5d2792020-11-20 15:16:09 -0800381 pm8001_dbg(pm8001_ha, IO, "get_fatal_spcv: return4 0x%x\n", offset);
Viswas Gec2e7e12021-01-09 18:08:46 +0530382 return ((char *)pm8001_ha->forensic_info.data_buf.direct_data -
383 (char *)buf);
Anand Kumar Santhanamd078b512013-09-04 12:57:00 +0530384}
385
Deepak Ukeydba2cc02020-03-16 13:19:05 +0530386/* pm80xx_get_non_fatal_dump - dump the nonfatal data from the dma
387 * location by the firmware.
388 */
389ssize_t pm80xx_get_non_fatal_dump(struct device *cdev,
390 struct device_attribute *attr, char *buf)
391{
392 struct Scsi_Host *shost = class_to_shost(cdev);
393 struct sas_ha_struct *sha = SHOST_TO_SAS_HA(shost);
394 struct pm8001_hba_info *pm8001_ha = sha->lldd_ha;
395 void __iomem *nonfatal_table_address = pm8001_ha->fatal_tbl_addr;
396 u32 accum_len = 0;
397 u32 total_len = 0;
398 u32 reg_val = 0;
399 u32 *temp = NULL;
400 u32 index = 0;
401 u32 output_length;
402 unsigned long start = 0;
403 char *buf_copy = buf;
404
405 temp = (u32 *)pm8001_ha->memoryMap.region[FORENSIC_MEM].virt_ptr;
406 if (++pm8001_ha->non_fatal_count == 1) {
407 if (pm8001_ha->chip_id == chip_8001) {
408 snprintf(pm8001_ha->forensic_info.data_buf.direct_data,
409 PAGE_SIZE, "Not supported for SPC controller");
410 return 0;
411 }
Joe Perches1b5d2792020-11-20 15:16:09 -0800412 pm8001_dbg(pm8001_ha, IO, "forensic_info TYPE_NON_FATAL...\n");
Deepak Ukeydba2cc02020-03-16 13:19:05 +0530413 /*
414 * Step 1: Write the host buffer parameters in the MPI Fatal and
415 * Non-Fatal Error Dump Capture Table.This is the buffer
416 * where debug data will be DMAed to.
417 */
418 pm8001_mw32(nonfatal_table_address,
419 MPI_FATAL_EDUMP_TABLE_LO_OFFSET,
420 pm8001_ha->memoryMap.region[FORENSIC_MEM].phys_addr_lo);
421
422 pm8001_mw32(nonfatal_table_address,
423 MPI_FATAL_EDUMP_TABLE_HI_OFFSET,
424 pm8001_ha->memoryMap.region[FORENSIC_MEM].phys_addr_hi);
425
426 pm8001_mw32(nonfatal_table_address,
427 MPI_FATAL_EDUMP_TABLE_LENGTH, SYSFS_OFFSET);
428
429 /* Optionally, set the DUMPCTRL bit to 1 if the host
430 * keeps sending active I/Os while capturing the non-fatal
431 * debug data. Otherwise, leave this bit set to zero
432 */
433 pm8001_mw32(nonfatal_table_address,
434 MPI_FATAL_EDUMP_TABLE_HANDSHAKE, MPI_FATAL_EDUMP_HANDSHAKE_RDY);
435
436 /*
437 * Step 2: Clear Accumulative Length of Debug Data Transferred
438 * [ACCDDLEN] field in the MPI Fatal and Non-Fatal Error Dump
439 * Capture Table to zero.
440 */
441 pm8001_mw32(nonfatal_table_address,
442 MPI_FATAL_EDUMP_TABLE_ACCUM_LEN, 0);
443
444 /* initiallize previous accumulated length to 0 */
445 pm8001_ha->forensic_preserved_accumulated_transfer = 0;
446 pm8001_ha->non_fatal_read_length = 0;
447 }
448
449 total_len = pm8001_mr32(nonfatal_table_address,
450 MPI_FATAL_EDUMP_TABLE_TOTAL_LEN);
451 /*
452 * Step 3:Clear Fatal/Non-Fatal Debug Data Transfer Status [FDDTSTAT]
453 * field and then request that the SPCv controller transfer the debug
454 * data by setting bit 7 of the Inbound Doorbell Set Register.
455 */
456 pm8001_mw32(nonfatal_table_address, MPI_FATAL_EDUMP_TABLE_STATUS, 0);
457 pm8001_cw32(pm8001_ha, 0, MSGU_IBDB_SET,
458 SPCv_MSGU_CFG_TABLE_NONFATAL_DUMP);
459
460 /*
461 * Step 4.1: Read back the Inbound Doorbell Set Register (by polling for
462 * 2 seconds) until register bit 7 is cleared.
463 * This step only indicates the request is accepted by the controller.
464 */
465 start = jiffies + (2 * HZ); /* 2 sec */
466 do {
467 reg_val = pm8001_cr32(pm8001_ha, 0, MSGU_IBDB_SET) &
468 SPCv_MSGU_CFG_TABLE_NONFATAL_DUMP;
469 } while ((reg_val != 0) && time_before(jiffies, start));
470
471 /* Step 4.2: To check the completion of the transfer, poll the Fatal/Non
472 * Fatal Debug Data Transfer Status [FDDTSTAT] field for 2 seconds in
473 * the MPI Fatal and Non-Fatal Error Dump Capture Table.
474 */
475 start = jiffies + (2 * HZ); /* 2 sec */
476 do {
477 reg_val = pm8001_mr32(nonfatal_table_address,
478 MPI_FATAL_EDUMP_TABLE_STATUS);
479 } while ((!reg_val) && time_before(jiffies, start));
480
481 if ((reg_val == 0x00) ||
482 (reg_val == MPI_FATAL_EDUMP_TABLE_STAT_DMA_FAILED) ||
483 (reg_val > MPI_FATAL_EDUMP_TABLE_STAT_NF_SUCCESS_DONE)) {
484 pm8001_ha->non_fatal_read_length = 0;
485 buf_copy += snprintf(buf_copy, PAGE_SIZE, "%08x ", 0xFFFFFFFF);
486 pm8001_ha->non_fatal_count = 0;
487 return (buf_copy - buf);
488 } else if (reg_val ==
489 MPI_FATAL_EDUMP_TABLE_STAT_NF_SUCCESS_MORE_DATA) {
490 buf_copy += snprintf(buf_copy, PAGE_SIZE, "%08x ", 2);
491 } else if ((reg_val == MPI_FATAL_EDUMP_TABLE_STAT_NF_SUCCESS_DONE) ||
492 (pm8001_ha->non_fatal_read_length >= total_len)) {
493 pm8001_ha->non_fatal_read_length = 0;
494 buf_copy += snprintf(buf_copy, PAGE_SIZE, "%08x ", 4);
495 pm8001_ha->non_fatal_count = 0;
496 }
497 accum_len = pm8001_mr32(nonfatal_table_address,
498 MPI_FATAL_EDUMP_TABLE_ACCUM_LEN);
499 output_length = accum_len -
500 pm8001_ha->forensic_preserved_accumulated_transfer;
501
502 for (index = 0; index < output_length/4; index++)
503 buf_copy += snprintf(buf_copy, PAGE_SIZE,
504 "%08x ", *(temp+index));
505
506 pm8001_ha->non_fatal_read_length += output_length;
507
508 /* store current accumulated length to use in next iteration as
509 * the previous accumulated length
510 */
511 pm8001_ha->forensic_preserved_accumulated_transfer = accum_len;
512 return (buf_copy - buf);
513}
514
Sakthivel Kf5860992013-04-17 16:37:02 +0530515/**
516 * read_main_config_table - read the configure table and save it.
517 * @pm8001_ha: our hba card information
518 */
519static void read_main_config_table(struct pm8001_hba_info *pm8001_ha)
520{
521 void __iomem *address = pm8001_ha->main_cfg_tbl_addr;
522
523 pm8001_ha->main_cfg_tbl.pm80xx_tbl.signature =
524 pm8001_mr32(address, MAIN_SIGNATURE_OFFSET);
525 pm8001_ha->main_cfg_tbl.pm80xx_tbl.interface_rev =
526 pm8001_mr32(address, MAIN_INTERFACE_REVISION);
527 pm8001_ha->main_cfg_tbl.pm80xx_tbl.firmware_rev =
528 pm8001_mr32(address, MAIN_FW_REVISION);
529 pm8001_ha->main_cfg_tbl.pm80xx_tbl.max_out_io =
530 pm8001_mr32(address, MAIN_MAX_OUTSTANDING_IO_OFFSET);
531 pm8001_ha->main_cfg_tbl.pm80xx_tbl.max_sgl =
532 pm8001_mr32(address, MAIN_MAX_SGL_OFFSET);
533 pm8001_ha->main_cfg_tbl.pm80xx_tbl.ctrl_cap_flag =
534 pm8001_mr32(address, MAIN_CNTRL_CAP_OFFSET);
535 pm8001_ha->main_cfg_tbl.pm80xx_tbl.gst_offset =
536 pm8001_mr32(address, MAIN_GST_OFFSET);
537 pm8001_ha->main_cfg_tbl.pm80xx_tbl.inbound_queue_offset =
538 pm8001_mr32(address, MAIN_IBQ_OFFSET);
539 pm8001_ha->main_cfg_tbl.pm80xx_tbl.outbound_queue_offset =
540 pm8001_mr32(address, MAIN_OBQ_OFFSET);
541
542 /* read Error Dump Offset and Length */
543 pm8001_ha->main_cfg_tbl.pm80xx_tbl.fatal_err_dump_offset0 =
544 pm8001_mr32(address, MAIN_FATAL_ERROR_RDUMP0_OFFSET);
545 pm8001_ha->main_cfg_tbl.pm80xx_tbl.fatal_err_dump_length0 =
546 pm8001_mr32(address, MAIN_FATAL_ERROR_RDUMP0_LENGTH);
547 pm8001_ha->main_cfg_tbl.pm80xx_tbl.fatal_err_dump_offset1 =
548 pm8001_mr32(address, MAIN_FATAL_ERROR_RDUMP1_OFFSET);
549 pm8001_ha->main_cfg_tbl.pm80xx_tbl.fatal_err_dump_length1 =
550 pm8001_mr32(address, MAIN_FATAL_ERROR_RDUMP1_LENGTH);
551
552 /* read GPIO LED settings from the configuration table */
553 pm8001_ha->main_cfg_tbl.pm80xx_tbl.gpio_led_mapping =
554 pm8001_mr32(address, MAIN_GPIO_LED_FLAGS_OFFSET);
555
556 /* read analog Setting offset from the configuration table */
557 pm8001_ha->main_cfg_tbl.pm80xx_tbl.analog_setup_table_offset =
558 pm8001_mr32(address, MAIN_ANALOG_SETUP_OFFSET);
559
560 pm8001_ha->main_cfg_tbl.pm80xx_tbl.int_vec_table_offset =
561 pm8001_mr32(address, MAIN_INT_VECTOR_TABLE_OFFSET);
562 pm8001_ha->main_cfg_tbl.pm80xx_tbl.phy_attr_table_offset =
563 pm8001_mr32(address, MAIN_SAS_PHY_ATTR_TABLE_OFFSET);
Viswas G8414cd82015-08-11 15:06:30 +0530564 /* read port recover and reset timeout */
565 pm8001_ha->main_cfg_tbl.pm80xx_tbl.port_recovery_timer =
566 pm8001_mr32(address, MAIN_PORT_RECOVERY_TIMER);
Viswas G24fff012017-10-18 11:39:08 +0530567 /* read ILA and inactive firmware version */
568 pm8001_ha->main_cfg_tbl.pm80xx_tbl.ila_version =
569 pm8001_mr32(address, MAIN_MPI_ILA_RELEASE_TYPE);
570 pm8001_ha->main_cfg_tbl.pm80xx_tbl.inc_fw_version =
571 pm8001_mr32(address, MAIN_MPI_INACTIVE_FW_VERSION);
peter chang73706722019-11-14 15:39:02 +0530572
Joe Perches1b5d2792020-11-20 15:16:09 -0800573 pm8001_dbg(pm8001_ha, DEV,
574 "Main cfg table: sign:%x interface rev:%x fw_rev:%x\n",
575 pm8001_ha->main_cfg_tbl.pm80xx_tbl.signature,
576 pm8001_ha->main_cfg_tbl.pm80xx_tbl.interface_rev,
577 pm8001_ha->main_cfg_tbl.pm80xx_tbl.firmware_rev);
peter chang73706722019-11-14 15:39:02 +0530578
Joe Perches1b5d2792020-11-20 15:16:09 -0800579 pm8001_dbg(pm8001_ha, DEV,
580 "table offset: gst:%x iq:%x oq:%x int vec:%x phy attr:%x\n",
581 pm8001_ha->main_cfg_tbl.pm80xx_tbl.gst_offset,
582 pm8001_ha->main_cfg_tbl.pm80xx_tbl.inbound_queue_offset,
583 pm8001_ha->main_cfg_tbl.pm80xx_tbl.outbound_queue_offset,
584 pm8001_ha->main_cfg_tbl.pm80xx_tbl.int_vec_table_offset,
585 pm8001_ha->main_cfg_tbl.pm80xx_tbl.phy_attr_table_offset);
peter chang73706722019-11-14 15:39:02 +0530586
Joe Perches1b5d2792020-11-20 15:16:09 -0800587 pm8001_dbg(pm8001_ha, DEV,
588 "Main cfg table; ila rev:%x Inactive fw rev:%x\n",
589 pm8001_ha->main_cfg_tbl.pm80xx_tbl.ila_version,
590 pm8001_ha->main_cfg_tbl.pm80xx_tbl.inc_fw_version);
Sakthivel Kf5860992013-04-17 16:37:02 +0530591}
592
593/**
594 * read_general_status_table - read the general status table and save it.
595 * @pm8001_ha: our hba card information
596 */
597static void read_general_status_table(struct pm8001_hba_info *pm8001_ha)
598{
599 void __iomem *address = pm8001_ha->general_stat_tbl_addr;
600 pm8001_ha->gs_tbl.pm80xx_tbl.gst_len_mpistate =
601 pm8001_mr32(address, GST_GSTLEN_MPIS_OFFSET);
602 pm8001_ha->gs_tbl.pm80xx_tbl.iq_freeze_state0 =
603 pm8001_mr32(address, GST_IQ_FREEZE_STATE0_OFFSET);
604 pm8001_ha->gs_tbl.pm80xx_tbl.iq_freeze_state1 =
605 pm8001_mr32(address, GST_IQ_FREEZE_STATE1_OFFSET);
606 pm8001_ha->gs_tbl.pm80xx_tbl.msgu_tcnt =
607 pm8001_mr32(address, GST_MSGUTCNT_OFFSET);
608 pm8001_ha->gs_tbl.pm80xx_tbl.iop_tcnt =
609 pm8001_mr32(address, GST_IOPTCNT_OFFSET);
610 pm8001_ha->gs_tbl.pm80xx_tbl.gpio_input_val =
611 pm8001_mr32(address, GST_GPIO_INPUT_VAL);
612 pm8001_ha->gs_tbl.pm80xx_tbl.recover_err_info[0] =
613 pm8001_mr32(address, GST_RERRINFO_OFFSET0);
614 pm8001_ha->gs_tbl.pm80xx_tbl.recover_err_info[1] =
615 pm8001_mr32(address, GST_RERRINFO_OFFSET1);
616 pm8001_ha->gs_tbl.pm80xx_tbl.recover_err_info[2] =
617 pm8001_mr32(address, GST_RERRINFO_OFFSET2);
618 pm8001_ha->gs_tbl.pm80xx_tbl.recover_err_info[3] =
619 pm8001_mr32(address, GST_RERRINFO_OFFSET3);
620 pm8001_ha->gs_tbl.pm80xx_tbl.recover_err_info[4] =
621 pm8001_mr32(address, GST_RERRINFO_OFFSET4);
622 pm8001_ha->gs_tbl.pm80xx_tbl.recover_err_info[5] =
623 pm8001_mr32(address, GST_RERRINFO_OFFSET5);
624 pm8001_ha->gs_tbl.pm80xx_tbl.recover_err_info[6] =
625 pm8001_mr32(address, GST_RERRINFO_OFFSET6);
626 pm8001_ha->gs_tbl.pm80xx_tbl.recover_err_info[7] =
627 pm8001_mr32(address, GST_RERRINFO_OFFSET7);
628}
629/**
630 * read_phy_attr_table - read the phy attribute table and save it.
631 * @pm8001_ha: our hba card information
632 */
633static void read_phy_attr_table(struct pm8001_hba_info *pm8001_ha)
634{
635 void __iomem *address = pm8001_ha->pspa_q_tbl_addr;
636 pm8001_ha->phy_attr_table.phystart1_16[0] =
637 pm8001_mr32(address, PSPA_PHYSTATE0_OFFSET);
638 pm8001_ha->phy_attr_table.phystart1_16[1] =
639 pm8001_mr32(address, PSPA_PHYSTATE1_OFFSET);
640 pm8001_ha->phy_attr_table.phystart1_16[2] =
641 pm8001_mr32(address, PSPA_PHYSTATE2_OFFSET);
642 pm8001_ha->phy_attr_table.phystart1_16[3] =
643 pm8001_mr32(address, PSPA_PHYSTATE3_OFFSET);
644 pm8001_ha->phy_attr_table.phystart1_16[4] =
645 pm8001_mr32(address, PSPA_PHYSTATE4_OFFSET);
646 pm8001_ha->phy_attr_table.phystart1_16[5] =
647 pm8001_mr32(address, PSPA_PHYSTATE5_OFFSET);
648 pm8001_ha->phy_attr_table.phystart1_16[6] =
649 pm8001_mr32(address, PSPA_PHYSTATE6_OFFSET);
650 pm8001_ha->phy_attr_table.phystart1_16[7] =
651 pm8001_mr32(address, PSPA_PHYSTATE7_OFFSET);
652 pm8001_ha->phy_attr_table.phystart1_16[8] =
653 pm8001_mr32(address, PSPA_PHYSTATE8_OFFSET);
654 pm8001_ha->phy_attr_table.phystart1_16[9] =
655 pm8001_mr32(address, PSPA_PHYSTATE9_OFFSET);
656 pm8001_ha->phy_attr_table.phystart1_16[10] =
657 pm8001_mr32(address, PSPA_PHYSTATE10_OFFSET);
658 pm8001_ha->phy_attr_table.phystart1_16[11] =
659 pm8001_mr32(address, PSPA_PHYSTATE11_OFFSET);
660 pm8001_ha->phy_attr_table.phystart1_16[12] =
661 pm8001_mr32(address, PSPA_PHYSTATE12_OFFSET);
662 pm8001_ha->phy_attr_table.phystart1_16[13] =
663 pm8001_mr32(address, PSPA_PHYSTATE13_OFFSET);
664 pm8001_ha->phy_attr_table.phystart1_16[14] =
665 pm8001_mr32(address, PSPA_PHYSTATE14_OFFSET);
666 pm8001_ha->phy_attr_table.phystart1_16[15] =
667 pm8001_mr32(address, PSPA_PHYSTATE15_OFFSET);
668
669 pm8001_ha->phy_attr_table.outbound_hw_event_pid1_16[0] =
670 pm8001_mr32(address, PSPA_OB_HW_EVENT_PID0_OFFSET);
671 pm8001_ha->phy_attr_table.outbound_hw_event_pid1_16[1] =
672 pm8001_mr32(address, PSPA_OB_HW_EVENT_PID1_OFFSET);
673 pm8001_ha->phy_attr_table.outbound_hw_event_pid1_16[2] =
674 pm8001_mr32(address, PSPA_OB_HW_EVENT_PID2_OFFSET);
675 pm8001_ha->phy_attr_table.outbound_hw_event_pid1_16[3] =
676 pm8001_mr32(address, PSPA_OB_HW_EVENT_PID3_OFFSET);
677 pm8001_ha->phy_attr_table.outbound_hw_event_pid1_16[4] =
678 pm8001_mr32(address, PSPA_OB_HW_EVENT_PID4_OFFSET);
679 pm8001_ha->phy_attr_table.outbound_hw_event_pid1_16[5] =
680 pm8001_mr32(address, PSPA_OB_HW_EVENT_PID5_OFFSET);
681 pm8001_ha->phy_attr_table.outbound_hw_event_pid1_16[6] =
682 pm8001_mr32(address, PSPA_OB_HW_EVENT_PID6_OFFSET);
683 pm8001_ha->phy_attr_table.outbound_hw_event_pid1_16[7] =
684 pm8001_mr32(address, PSPA_OB_HW_EVENT_PID7_OFFSET);
685 pm8001_ha->phy_attr_table.outbound_hw_event_pid1_16[8] =
686 pm8001_mr32(address, PSPA_OB_HW_EVENT_PID8_OFFSET);
687 pm8001_ha->phy_attr_table.outbound_hw_event_pid1_16[9] =
688 pm8001_mr32(address, PSPA_OB_HW_EVENT_PID9_OFFSET);
689 pm8001_ha->phy_attr_table.outbound_hw_event_pid1_16[10] =
690 pm8001_mr32(address, PSPA_OB_HW_EVENT_PID10_OFFSET);
691 pm8001_ha->phy_attr_table.outbound_hw_event_pid1_16[11] =
692 pm8001_mr32(address, PSPA_OB_HW_EVENT_PID11_OFFSET);
693 pm8001_ha->phy_attr_table.outbound_hw_event_pid1_16[12] =
694 pm8001_mr32(address, PSPA_OB_HW_EVENT_PID12_OFFSET);
695 pm8001_ha->phy_attr_table.outbound_hw_event_pid1_16[13] =
696 pm8001_mr32(address, PSPA_OB_HW_EVENT_PID13_OFFSET);
697 pm8001_ha->phy_attr_table.outbound_hw_event_pid1_16[14] =
698 pm8001_mr32(address, PSPA_OB_HW_EVENT_PID14_OFFSET);
699 pm8001_ha->phy_attr_table.outbound_hw_event_pid1_16[15] =
700 pm8001_mr32(address, PSPA_OB_HW_EVENT_PID15_OFFSET);
701
702}
703
704/**
705 * read_inbnd_queue_table - read the inbound queue table and save it.
706 * @pm8001_ha: our hba card information
707 */
708static void read_inbnd_queue_table(struct pm8001_hba_info *pm8001_ha)
709{
710 int i;
711 void __iomem *address = pm8001_ha->inbnd_q_tbl_addr;
Viswas G05c6c022020-10-05 20:20:08 +0530712 for (i = 0; i < PM8001_MAX_INB_NUM; i++) {
Sakthivel Kf5860992013-04-17 16:37:02 +0530713 u32 offset = i * 0x20;
714 pm8001_ha->inbnd_q_tbl[i].pi_pci_bar =
715 get_pci_bar_index(pm8001_mr32(address,
716 (offset + IB_PIPCI_BAR)));
717 pm8001_ha->inbnd_q_tbl[i].pi_offset =
718 pm8001_mr32(address, (offset + IB_PIPCI_BAR_OFFSET));
719 }
720}
721
722/**
723 * read_outbnd_queue_table - read the outbound queue table and save it.
724 * @pm8001_ha: our hba card information
725 */
726static void read_outbnd_queue_table(struct pm8001_hba_info *pm8001_ha)
727{
728 int i;
729 void __iomem *address = pm8001_ha->outbnd_q_tbl_addr;
Viswas G05c6c022020-10-05 20:20:08 +0530730 for (i = 0; i < PM8001_MAX_OUTB_NUM; i++) {
Sakthivel Kf5860992013-04-17 16:37:02 +0530731 u32 offset = i * 0x24;
732 pm8001_ha->outbnd_q_tbl[i].ci_pci_bar =
733 get_pci_bar_index(pm8001_mr32(address,
734 (offset + OB_CIPCI_BAR)));
735 pm8001_ha->outbnd_q_tbl[i].ci_offset =
736 pm8001_mr32(address, (offset + OB_CIPCI_BAR_OFFSET));
737 }
738}
739
740/**
741 * init_default_table_values - init the default table.
742 * @pm8001_ha: our hba card information
743 */
744static void init_default_table_values(struct pm8001_hba_info *pm8001_ha)
745{
746 int i;
747 u32 offsetib, offsetob;
748 void __iomem *addressib = pm8001_ha->inbnd_q_tbl_addr;
749 void __iomem *addressob = pm8001_ha->outbnd_q_tbl_addr;
Viswas G05c6c022020-10-05 20:20:08 +0530750 u32 ib_offset = pm8001_ha->ib_offset;
751 u32 ob_offset = pm8001_ha->ob_offset;
752 u32 ci_offset = pm8001_ha->ci_offset;
753 u32 pi_offset = pm8001_ha->pi_offset;
Sakthivel Kf5860992013-04-17 16:37:02 +0530754
755 pm8001_ha->main_cfg_tbl.pm80xx_tbl.upper_event_log_addr =
756 pm8001_ha->memoryMap.region[AAP1].phys_addr_hi;
757 pm8001_ha->main_cfg_tbl.pm80xx_tbl.lower_event_log_addr =
758 pm8001_ha->memoryMap.region[AAP1].phys_addr_lo;
759 pm8001_ha->main_cfg_tbl.pm80xx_tbl.event_log_size =
760 PM8001_EVENT_LOG_SIZE;
761 pm8001_ha->main_cfg_tbl.pm80xx_tbl.event_log_severity = 0x01;
762 pm8001_ha->main_cfg_tbl.pm80xx_tbl.upper_pcs_event_log_addr =
763 pm8001_ha->memoryMap.region[IOP].phys_addr_hi;
764 pm8001_ha->main_cfg_tbl.pm80xx_tbl.lower_pcs_event_log_addr =
765 pm8001_ha->memoryMap.region[IOP].phys_addr_lo;
766 pm8001_ha->main_cfg_tbl.pm80xx_tbl.pcs_event_log_size =
767 PM8001_EVENT_LOG_SIZE;
768 pm8001_ha->main_cfg_tbl.pm80xx_tbl.pcs_event_log_severity = 0x01;
769 pm8001_ha->main_cfg_tbl.pm80xx_tbl.fatal_err_interrupt = 0x01;
770
Sakthivel Kc6b9ef52013-03-19 18:08:08 +0530771 /* Disable end to end CRC checking */
772 pm8001_ha->main_cfg_tbl.pm80xx_tbl.crc_core_dump = (0x1 << 16);
773
Viswas G05c6c022020-10-05 20:20:08 +0530774 for (i = 0; i < pm8001_ha->max_q_num; i++) {
Sakthivel Kf5860992013-04-17 16:37:02 +0530775 pm8001_ha->inbnd_q_tbl[i].element_pri_size_cnt =
Hans Verkuil9504a922013-07-26 18:43:45 +0200776 PM8001_MPI_QUEUE | (pm8001_ha->iomb_size << 16) | (0x00<<30);
Sakthivel Kf5860992013-04-17 16:37:02 +0530777 pm8001_ha->inbnd_q_tbl[i].upper_base_addr =
Viswas G05c6c022020-10-05 20:20:08 +0530778 pm8001_ha->memoryMap.region[ib_offset + i].phys_addr_hi;
Sakthivel Kf5860992013-04-17 16:37:02 +0530779 pm8001_ha->inbnd_q_tbl[i].lower_base_addr =
Viswas G05c6c022020-10-05 20:20:08 +0530780 pm8001_ha->memoryMap.region[ib_offset + i].phys_addr_lo;
Sakthivel Kf5860992013-04-17 16:37:02 +0530781 pm8001_ha->inbnd_q_tbl[i].base_virt =
Viswas G05c6c022020-10-05 20:20:08 +0530782 (u8 *)pm8001_ha->memoryMap.region[ib_offset + i].virt_ptr;
Sakthivel Kf5860992013-04-17 16:37:02 +0530783 pm8001_ha->inbnd_q_tbl[i].total_length =
Viswas G05c6c022020-10-05 20:20:08 +0530784 pm8001_ha->memoryMap.region[ib_offset + i].total_len;
Sakthivel Kf5860992013-04-17 16:37:02 +0530785 pm8001_ha->inbnd_q_tbl[i].ci_upper_base_addr =
Viswas G05c6c022020-10-05 20:20:08 +0530786 pm8001_ha->memoryMap.region[ci_offset + i].phys_addr_hi;
Sakthivel Kf5860992013-04-17 16:37:02 +0530787 pm8001_ha->inbnd_q_tbl[i].ci_lower_base_addr =
Viswas G05c6c022020-10-05 20:20:08 +0530788 pm8001_ha->memoryMap.region[ci_offset + i].phys_addr_lo;
Sakthivel Kf5860992013-04-17 16:37:02 +0530789 pm8001_ha->inbnd_q_tbl[i].ci_virt =
Viswas G05c6c022020-10-05 20:20:08 +0530790 pm8001_ha->memoryMap.region[ci_offset + i].virt_ptr;
Viswas Gb4314722021-04-15 16:03:51 +0530791 pm8001_write_32(pm8001_ha->inbnd_q_tbl[i].ci_virt, 0, 0);
Sakthivel Kf5860992013-04-17 16:37:02 +0530792 offsetib = i * 0x20;
793 pm8001_ha->inbnd_q_tbl[i].pi_pci_bar =
794 get_pci_bar_index(pm8001_mr32(addressib,
795 (offsetib + 0x14)));
796 pm8001_ha->inbnd_q_tbl[i].pi_offset =
797 pm8001_mr32(addressib, (offsetib + 0x18));
798 pm8001_ha->inbnd_q_tbl[i].producer_idx = 0;
799 pm8001_ha->inbnd_q_tbl[i].consumer_index = 0;
peter chang73706722019-11-14 15:39:02 +0530800
Joe Perches1b5d2792020-11-20 15:16:09 -0800801 pm8001_dbg(pm8001_ha, DEV,
802 "IQ %d pi_bar 0x%x pi_offset 0x%x\n", i,
803 pm8001_ha->inbnd_q_tbl[i].pi_pci_bar,
804 pm8001_ha->inbnd_q_tbl[i].pi_offset);
Sakthivel Kf5860992013-04-17 16:37:02 +0530805 }
Viswas G05c6c022020-10-05 20:20:08 +0530806 for (i = 0; i < pm8001_ha->max_q_num; i++) {
Sakthivel Kf5860992013-04-17 16:37:02 +0530807 pm8001_ha->outbnd_q_tbl[i].element_size_cnt =
Hans Verkuil9504a922013-07-26 18:43:45 +0200808 PM8001_MPI_QUEUE | (pm8001_ha->iomb_size << 16) | (0x01<<30);
Sakthivel Kf5860992013-04-17 16:37:02 +0530809 pm8001_ha->outbnd_q_tbl[i].upper_base_addr =
Viswas G05c6c022020-10-05 20:20:08 +0530810 pm8001_ha->memoryMap.region[ob_offset + i].phys_addr_hi;
Sakthivel Kf5860992013-04-17 16:37:02 +0530811 pm8001_ha->outbnd_q_tbl[i].lower_base_addr =
Viswas G05c6c022020-10-05 20:20:08 +0530812 pm8001_ha->memoryMap.region[ob_offset + i].phys_addr_lo;
Sakthivel Kf5860992013-04-17 16:37:02 +0530813 pm8001_ha->outbnd_q_tbl[i].base_virt =
Viswas G05c6c022020-10-05 20:20:08 +0530814 (u8 *)pm8001_ha->memoryMap.region[ob_offset + i].virt_ptr;
Sakthivel Kf5860992013-04-17 16:37:02 +0530815 pm8001_ha->outbnd_q_tbl[i].total_length =
Viswas G05c6c022020-10-05 20:20:08 +0530816 pm8001_ha->memoryMap.region[ob_offset + i].total_len;
Sakthivel Kf5860992013-04-17 16:37:02 +0530817 pm8001_ha->outbnd_q_tbl[i].pi_upper_base_addr =
Viswas G05c6c022020-10-05 20:20:08 +0530818 pm8001_ha->memoryMap.region[pi_offset + i].phys_addr_hi;
Sakthivel Kf5860992013-04-17 16:37:02 +0530819 pm8001_ha->outbnd_q_tbl[i].pi_lower_base_addr =
Viswas G05c6c022020-10-05 20:20:08 +0530820 pm8001_ha->memoryMap.region[pi_offset + i].phys_addr_lo;
Sakthivel Kf5860992013-04-17 16:37:02 +0530821 /* interrupt vector based on oq */
822 pm8001_ha->outbnd_q_tbl[i].interrup_vec_cnt_delay = (i << 24);
823 pm8001_ha->outbnd_q_tbl[i].pi_virt =
Viswas G05c6c022020-10-05 20:20:08 +0530824 pm8001_ha->memoryMap.region[pi_offset + i].virt_ptr;
Viswas Gb4314722021-04-15 16:03:51 +0530825 pm8001_write_32(pm8001_ha->outbnd_q_tbl[i].pi_virt, 0, 0);
Sakthivel Kf5860992013-04-17 16:37:02 +0530826 offsetob = i * 0x24;
827 pm8001_ha->outbnd_q_tbl[i].ci_pci_bar =
828 get_pci_bar_index(pm8001_mr32(addressob,
829 offsetob + 0x14));
830 pm8001_ha->outbnd_q_tbl[i].ci_offset =
831 pm8001_mr32(addressob, (offsetob + 0x18));
832 pm8001_ha->outbnd_q_tbl[i].consumer_idx = 0;
833 pm8001_ha->outbnd_q_tbl[i].producer_index = 0;
peter chang73706722019-11-14 15:39:02 +0530834
Joe Perches1b5d2792020-11-20 15:16:09 -0800835 pm8001_dbg(pm8001_ha, DEV,
836 "OQ %d ci_bar 0x%x ci_offset 0x%x\n", i,
837 pm8001_ha->outbnd_q_tbl[i].ci_pci_bar,
838 pm8001_ha->outbnd_q_tbl[i].ci_offset);
Sakthivel Kf5860992013-04-17 16:37:02 +0530839 }
840}
841
842/**
843 * update_main_config_table - update the main default table to the HBA.
844 * @pm8001_ha: our hba card information
845 */
846static void update_main_config_table(struct pm8001_hba_info *pm8001_ha)
847{
848 void __iomem *address = pm8001_ha->main_cfg_tbl_addr;
849 pm8001_mw32(address, MAIN_IQNPPD_HPPD_OFFSET,
850 pm8001_ha->main_cfg_tbl.pm80xx_tbl.inbound_q_nppd_hppd);
851 pm8001_mw32(address, MAIN_EVENT_LOG_ADDR_HI,
852 pm8001_ha->main_cfg_tbl.pm80xx_tbl.upper_event_log_addr);
853 pm8001_mw32(address, MAIN_EVENT_LOG_ADDR_LO,
854 pm8001_ha->main_cfg_tbl.pm80xx_tbl.lower_event_log_addr);
855 pm8001_mw32(address, MAIN_EVENT_LOG_BUFF_SIZE,
856 pm8001_ha->main_cfg_tbl.pm80xx_tbl.event_log_size);
857 pm8001_mw32(address, MAIN_EVENT_LOG_OPTION,
858 pm8001_ha->main_cfg_tbl.pm80xx_tbl.event_log_severity);
859 pm8001_mw32(address, MAIN_PCS_EVENT_LOG_ADDR_HI,
860 pm8001_ha->main_cfg_tbl.pm80xx_tbl.upper_pcs_event_log_addr);
861 pm8001_mw32(address, MAIN_PCS_EVENT_LOG_ADDR_LO,
862 pm8001_ha->main_cfg_tbl.pm80xx_tbl.lower_pcs_event_log_addr);
863 pm8001_mw32(address, MAIN_PCS_EVENT_LOG_BUFF_SIZE,
864 pm8001_ha->main_cfg_tbl.pm80xx_tbl.pcs_event_log_size);
865 pm8001_mw32(address, MAIN_PCS_EVENT_LOG_OPTION,
866 pm8001_ha->main_cfg_tbl.pm80xx_tbl.pcs_event_log_severity);
Deepak Ukey72349b62018-09-11 14:18:04 +0530867 /* Update Fatal error interrupt vector */
868 pm8001_ha->main_cfg_tbl.pm80xx_tbl.fatal_err_interrupt |=
Viswas G05c6c022020-10-05 20:20:08 +0530869 ((pm8001_ha->max_q_num - 1) << 8);
Sakthivel Kf5860992013-04-17 16:37:02 +0530870 pm8001_mw32(address, MAIN_FATAL_ERROR_INTERRUPT,
871 pm8001_ha->main_cfg_tbl.pm80xx_tbl.fatal_err_interrupt);
Joe Perches1b5d2792020-11-20 15:16:09 -0800872 pm8001_dbg(pm8001_ha, DEV,
873 "Updated Fatal error interrupt vector 0x%x\n",
874 pm8001_mr32(address, MAIN_FATAL_ERROR_INTERRUPT));
peter chang73706722019-11-14 15:39:02 +0530875
Sakthivel Kc6b9ef52013-03-19 18:08:08 +0530876 pm8001_mw32(address, MAIN_EVENT_CRC_CHECK,
877 pm8001_ha->main_cfg_tbl.pm80xx_tbl.crc_core_dump);
Sakthivel Kf5860992013-04-17 16:37:02 +0530878
879 /* SPCv specific */
880 pm8001_ha->main_cfg_tbl.pm80xx_tbl.gpio_led_mapping &= 0xCFFFFFFF;
881 /* Set GPIOLED to 0x2 for LED indicator */
882 pm8001_ha->main_cfg_tbl.pm80xx_tbl.gpio_led_mapping |= 0x20000000;
883 pm8001_mw32(address, MAIN_GPIO_LED_FLAGS_OFFSET,
884 pm8001_ha->main_cfg_tbl.pm80xx_tbl.gpio_led_mapping);
Joe Perches1b5d2792020-11-20 15:16:09 -0800885 pm8001_dbg(pm8001_ha, DEV,
886 "Programming DW 0x21 in main cfg table with 0x%x\n",
887 pm8001_mr32(address, MAIN_GPIO_LED_FLAGS_OFFSET));
Sakthivel Kf5860992013-04-17 16:37:02 +0530888
889 pm8001_mw32(address, MAIN_PORT_RECOVERY_TIMER,
890 pm8001_ha->main_cfg_tbl.pm80xx_tbl.port_recovery_timer);
891 pm8001_mw32(address, MAIN_INT_REASSERTION_DELAY,
892 pm8001_ha->main_cfg_tbl.pm80xx_tbl.interrupt_reassertion_delay);
Viswas G8414cd82015-08-11 15:06:30 +0530893
894 pm8001_ha->main_cfg_tbl.pm80xx_tbl.port_recovery_timer &= 0xffff0000;
895 pm8001_ha->main_cfg_tbl.pm80xx_tbl.port_recovery_timer |=
896 PORT_RECOVERY_TIMEOUT;
Viswas G61daffd2017-10-18 11:39:12 +0530897 if (pm8001_ha->chip_id == chip_8006) {
898 pm8001_ha->main_cfg_tbl.pm80xx_tbl.port_recovery_timer &=
899 0x0000ffff;
900 pm8001_ha->main_cfg_tbl.pm80xx_tbl.port_recovery_timer |=
Deepak Ukey196ba662019-07-09 15:30:48 +0530901 CHIP_8006_PORT_RECOVERY_TIMEOUT;
Viswas G61daffd2017-10-18 11:39:12 +0530902 }
Viswas G8414cd82015-08-11 15:06:30 +0530903 pm8001_mw32(address, MAIN_PORT_RECOVERY_TIMER,
904 pm8001_ha->main_cfg_tbl.pm80xx_tbl.port_recovery_timer);
Sakthivel Kf5860992013-04-17 16:37:02 +0530905}
906
907/**
908 * update_inbnd_queue_table - update the inbound queue table to the HBA.
909 * @pm8001_ha: our hba card information
Lee Jones6ad4a512020-07-21 17:41:25 +0100910 * @number: entry in the queue
Sakthivel Kf5860992013-04-17 16:37:02 +0530911 */
912static void update_inbnd_queue_table(struct pm8001_hba_info *pm8001_ha,
913 int number)
914{
915 void __iomem *address = pm8001_ha->inbnd_q_tbl_addr;
916 u16 offset = number * 0x20;
917 pm8001_mw32(address, offset + IB_PROPERITY_OFFSET,
918 pm8001_ha->inbnd_q_tbl[number].element_pri_size_cnt);
919 pm8001_mw32(address, offset + IB_BASE_ADDR_HI_OFFSET,
920 pm8001_ha->inbnd_q_tbl[number].upper_base_addr);
921 pm8001_mw32(address, offset + IB_BASE_ADDR_LO_OFFSET,
922 pm8001_ha->inbnd_q_tbl[number].lower_base_addr);
923 pm8001_mw32(address, offset + IB_CI_BASE_ADDR_HI_OFFSET,
924 pm8001_ha->inbnd_q_tbl[number].ci_upper_base_addr);
925 pm8001_mw32(address, offset + IB_CI_BASE_ADDR_LO_OFFSET,
926 pm8001_ha->inbnd_q_tbl[number].ci_lower_base_addr);
peter chang73706722019-11-14 15:39:02 +0530927
Joe Perches1b5d2792020-11-20 15:16:09 -0800928 pm8001_dbg(pm8001_ha, DEV,
929 "IQ %d: Element pri size 0x%x\n",
930 number,
931 pm8001_ha->inbnd_q_tbl[number].element_pri_size_cnt);
peter chang73706722019-11-14 15:39:02 +0530932
Joe Perches1b5d2792020-11-20 15:16:09 -0800933 pm8001_dbg(pm8001_ha, DEV,
934 "IQ upr base addr 0x%x IQ lwr base addr 0x%x\n",
935 pm8001_ha->inbnd_q_tbl[number].upper_base_addr,
936 pm8001_ha->inbnd_q_tbl[number].lower_base_addr);
peter chang73706722019-11-14 15:39:02 +0530937
Joe Perches1b5d2792020-11-20 15:16:09 -0800938 pm8001_dbg(pm8001_ha, DEV,
939 "CI upper base addr 0x%x CI lower base addr 0x%x\n",
940 pm8001_ha->inbnd_q_tbl[number].ci_upper_base_addr,
941 pm8001_ha->inbnd_q_tbl[number].ci_lower_base_addr);
Sakthivel Kf5860992013-04-17 16:37:02 +0530942}
943
944/**
945 * update_outbnd_queue_table - update the outbound queue table to the HBA.
946 * @pm8001_ha: our hba card information
Lee Jones6ad4a512020-07-21 17:41:25 +0100947 * @number: entry in the queue
Sakthivel Kf5860992013-04-17 16:37:02 +0530948 */
949static void update_outbnd_queue_table(struct pm8001_hba_info *pm8001_ha,
950 int number)
951{
952 void __iomem *address = pm8001_ha->outbnd_q_tbl_addr;
953 u16 offset = number * 0x24;
954 pm8001_mw32(address, offset + OB_PROPERITY_OFFSET,
955 pm8001_ha->outbnd_q_tbl[number].element_size_cnt);
956 pm8001_mw32(address, offset + OB_BASE_ADDR_HI_OFFSET,
957 pm8001_ha->outbnd_q_tbl[number].upper_base_addr);
958 pm8001_mw32(address, offset + OB_BASE_ADDR_LO_OFFSET,
959 pm8001_ha->outbnd_q_tbl[number].lower_base_addr);
960 pm8001_mw32(address, offset + OB_PI_BASE_ADDR_HI_OFFSET,
961 pm8001_ha->outbnd_q_tbl[number].pi_upper_base_addr);
962 pm8001_mw32(address, offset + OB_PI_BASE_ADDR_LO_OFFSET,
963 pm8001_ha->outbnd_q_tbl[number].pi_lower_base_addr);
964 pm8001_mw32(address, offset + OB_INTERRUPT_COALES_OFFSET,
965 pm8001_ha->outbnd_q_tbl[number].interrup_vec_cnt_delay);
peter chang73706722019-11-14 15:39:02 +0530966
Joe Perches1b5d2792020-11-20 15:16:09 -0800967 pm8001_dbg(pm8001_ha, DEV,
968 "OQ %d: Element pri size 0x%x\n",
969 number,
970 pm8001_ha->outbnd_q_tbl[number].element_size_cnt);
peter chang73706722019-11-14 15:39:02 +0530971
Joe Perches1b5d2792020-11-20 15:16:09 -0800972 pm8001_dbg(pm8001_ha, DEV,
973 "OQ upr base addr 0x%x OQ lwr base addr 0x%x\n",
974 pm8001_ha->outbnd_q_tbl[number].upper_base_addr,
975 pm8001_ha->outbnd_q_tbl[number].lower_base_addr);
peter chang73706722019-11-14 15:39:02 +0530976
Joe Perches1b5d2792020-11-20 15:16:09 -0800977 pm8001_dbg(pm8001_ha, DEV,
978 "PI upper base addr 0x%x PI lower base addr 0x%x\n",
979 pm8001_ha->outbnd_q_tbl[number].pi_upper_base_addr,
980 pm8001_ha->outbnd_q_tbl[number].pi_lower_base_addr);
Sakthivel Kf5860992013-04-17 16:37:02 +0530981}
982
983/**
984 * mpi_init_check - check firmware initialization status.
985 * @pm8001_ha: our hba card information
986 */
987static int mpi_init_check(struct pm8001_hba_info *pm8001_ha)
988{
989 u32 max_wait_count;
990 u32 value;
991 u32 gst_len_mpistate;
992
993 /* Write bit0=1 to Inbound DoorBell Register to tell the SPC FW the
994 table is updated */
995 pm8001_cw32(pm8001_ha, 0, MSGU_IBDB_SET, SPCv_MSGU_CFG_TABLE_UPDATE);
996 /* wait until Inbound DoorBell Clear Register toggled */
Anand Kumar Santhanama9a923e2013-09-03 15:09:42 +0530997 if (IS_SPCV_12G(pm8001_ha->pdev)) {
ianyare90e23622019-11-14 15:39:03 +0530998 max_wait_count = SPCV_DOORBELL_CLEAR_TIMEOUT;
Anand Kumar Santhanama9a923e2013-09-03 15:09:42 +0530999 } else {
ianyare90e23622019-11-14 15:39:03 +05301000 max_wait_count = SPC_DOORBELL_CLEAR_TIMEOUT;
Anand Kumar Santhanama9a923e2013-09-03 15:09:42 +05301001 }
Sakthivel Kf5860992013-04-17 16:37:02 +05301002 do {
akshatzend71023a2021-01-09 18:08:42 +05301003 msleep(FW_READY_INTERVAL);
Sakthivel Kf5860992013-04-17 16:37:02 +05301004 value = pm8001_cr32(pm8001_ha, 0, MSGU_IBDB_SET);
1005 value &= SPCv_MSGU_CFG_TABLE_UPDATE;
1006 } while ((value != 0) && (--max_wait_count));
1007
Viswas G05c6c022020-10-05 20:20:08 +05301008 if (!max_wait_count) {
1009 /* additional check */
Joe Perches1b5d2792020-11-20 15:16:09 -08001010 pm8001_dbg(pm8001_ha, FAIL,
1011 "Inb doorbell clear not toggled[value:%x]\n",
1012 value);
Viswas G05c6c022020-10-05 20:20:08 +05301013 return -EBUSY;
1014 }
Randy Dunlapbb6beab2021-07-08 09:57:23 -07001015 /* check the MPI-State for initialization up to 100ms*/
akshatzend71023a2021-01-09 18:08:42 +05301016 max_wait_count = 5;/* 100 msec */
Sakthivel Kf5860992013-04-17 16:37:02 +05301017 do {
akshatzend71023a2021-01-09 18:08:42 +05301018 msleep(FW_READY_INTERVAL);
Sakthivel Kf5860992013-04-17 16:37:02 +05301019 gst_len_mpistate =
1020 pm8001_mr32(pm8001_ha->general_stat_tbl_addr,
1021 GST_GSTLEN_MPIS_OFFSET);
1022 } while ((GST_MPI_STATE_INIT !=
1023 (gst_len_mpistate & GST_MPI_STATE_MASK)) && (--max_wait_count));
1024 if (!max_wait_count)
Viswas G05c6c022020-10-05 20:20:08 +05301025 return -EBUSY;
Sakthivel Kf5860992013-04-17 16:37:02 +05301026
1027 /* check MPI Initialization error */
1028 gst_len_mpistate = gst_len_mpistate >> 16;
1029 if (0x0000 != gst_len_mpistate)
Viswas G05c6c022020-10-05 20:20:08 +05301030 return -EBUSY;
Sakthivel Kf5860992013-04-17 16:37:02 +05301031
1032 return 0;
1033}
1034
1035/**
1036 * check_fw_ready - The LLDD check if the FW is ready, if not, return error.
akshatzen48cd6b32020-11-02 22:25:27 +05301037 * This function sleeps hence it must not be used in atomic context.
Sakthivel Kf5860992013-04-17 16:37:02 +05301038 * @pm8001_ha: our hba card information
1039 */
1040static int check_fw_ready(struct pm8001_hba_info *pm8001_ha)
1041{
1042 u32 value;
1043 u32 max_wait_count;
1044 u32 max_wait_time;
Bhavesh Jashnani6b2f2d02021-01-09 18:08:47 +05301045 u32 expected_mask;
Sakthivel Kf5860992013-04-17 16:37:02 +05301046 int ret = 0;
1047
1048 /* reset / PCIe ready */
akshatzen48cd6b32020-11-02 22:25:27 +05301049 max_wait_time = max_wait_count = 5; /* 100 milli sec */
Sakthivel Kf5860992013-04-17 16:37:02 +05301050 do {
akshatzen48cd6b32020-11-02 22:25:27 +05301051 msleep(FW_READY_INTERVAL);
Sakthivel Kf5860992013-04-17 16:37:02 +05301052 value = pm8001_cr32(pm8001_ha, 0, MSGU_SCRATCH_PAD_1);
1053 } while ((value == 0xFFFFFFFF) && (--max_wait_count));
1054
Bhavesh Jashnani6b2f2d02021-01-09 18:08:47 +05301055 /* check ila, RAAE and iops status */
Sakthivel Kf5860992013-04-17 16:37:02 +05301056 if ((pm8001_ha->chip_id != chip_8008) &&
1057 (pm8001_ha->chip_id != chip_8009)) {
Bhavesh Jashnani6b2f2d02021-01-09 18:08:47 +05301058 max_wait_time = max_wait_count = 180; /* 3600 milli sec */
1059 expected_mask = SCRATCH_PAD_ILA_READY |
1060 SCRATCH_PAD_RAAE_READY |
1061 SCRATCH_PAD_IOP0_READY |
1062 SCRATCH_PAD_IOP1_READY;
1063 } else {
1064 max_wait_time = max_wait_count = 170; /* 3400 milli sec */
1065 expected_mask = SCRATCH_PAD_ILA_READY |
1066 SCRATCH_PAD_RAAE_READY |
1067 SCRATCH_PAD_IOP0_READY;
Sakthivel Kf5860992013-04-17 16:37:02 +05301068 }
Bhavesh Jashnani6b2f2d02021-01-09 18:08:47 +05301069 do {
1070 msleep(FW_READY_INTERVAL);
1071 value = pm8001_cr32(pm8001_ha, 0, MSGU_SCRATCH_PAD_1);
1072 } while (((value & expected_mask) !=
1073 expected_mask) && (--max_wait_count));
1074 if (!max_wait_count) {
1075 pm8001_dbg(pm8001_ha, INIT,
1076 "At least one FW component failed to load within %d millisec: Scratchpad1: 0x%x\n",
1077 max_wait_time * FW_READY_INTERVAL, value);
1078 ret = -1;
1079 } else {
1080 pm8001_dbg(pm8001_ha, MSG,
1081 "All FW components ready by %d ms\n",
1082 (max_wait_time - max_wait_count) * FW_READY_INTERVAL);
1083 }
Sakthivel Kf5860992013-04-17 16:37:02 +05301084 return ret;
1085}
1086
akshatzen95652f92021-01-09 18:08:44 +05301087static int init_pci_device_addresses(struct pm8001_hba_info *pm8001_ha)
Sakthivel Kf5860992013-04-17 16:37:02 +05301088{
1089 void __iomem *base_addr;
1090 u32 value;
1091 u32 offset;
1092 u32 pcibar;
1093 u32 pcilogic;
1094
1095 value = pm8001_cr32(pm8001_ha, 0, MSGU_SCRATCH_PAD_0);
akshatzen95652f92021-01-09 18:08:44 +05301096
Randy Dunlapbb6beab2021-07-08 09:57:23 -07001097 /*
akshatzen95652f92021-01-09 18:08:44 +05301098 * lower 26 bits of SCRATCHPAD0 register describes offset within the
1099 * PCIe BAR where the MPI configuration table is present
1100 */
Sakthivel Kf5860992013-04-17 16:37:02 +05301101 offset = value & 0x03FFFFFF; /* scratch pad 0 TBL address */
1102
Joe Perches1b5d2792020-11-20 15:16:09 -08001103 pm8001_dbg(pm8001_ha, DEV, "Scratchpad 0 Offset: 0x%x value 0x%x\n",
1104 offset, value);
Randy Dunlapbb6beab2021-07-08 09:57:23 -07001105 /*
akshatzen95652f92021-01-09 18:08:44 +05301106 * Upper 6 bits describe the offset within PCI config space where BAR
1107 * is located.
1108 */
Sakthivel Kf5860992013-04-17 16:37:02 +05301109 pcilogic = (value & 0xFC000000) >> 26;
1110 pcibar = get_pci_bar_index(pcilogic);
Joe Perches1b5d2792020-11-20 15:16:09 -08001111 pm8001_dbg(pm8001_ha, INIT, "Scratchpad 0 PCI BAR: %d\n", pcibar);
akshatzen95652f92021-01-09 18:08:44 +05301112
Randy Dunlapbb6beab2021-07-08 09:57:23 -07001113 /*
akshatzen95652f92021-01-09 18:08:44 +05301114 * Make sure the offset falls inside the ioremapped PCI BAR
1115 */
1116 if (offset > pm8001_ha->io_mem[pcibar].memsize) {
1117 pm8001_dbg(pm8001_ha, FAIL,
1118 "Main cfg tbl offset outside %u > %u\n",
1119 offset, pm8001_ha->io_mem[pcibar].memsize);
1120 return -EBUSY;
1121 }
Sakthivel Kf5860992013-04-17 16:37:02 +05301122 pm8001_ha->main_cfg_tbl_addr = base_addr =
1123 pm8001_ha->io_mem[pcibar].memvirtaddr + offset;
akshatzen95652f92021-01-09 18:08:44 +05301124
Randy Dunlapbb6beab2021-07-08 09:57:23 -07001125 /*
akshatzen95652f92021-01-09 18:08:44 +05301126 * Validate main configuration table address: first DWord should read
1127 * "PMCS"
1128 */
1129 value = pm8001_mr32(pm8001_ha->main_cfg_tbl_addr, 0);
1130 if (memcmp(&value, "PMCS", 4) != 0) {
1131 pm8001_dbg(pm8001_ha, FAIL,
1132 "BAD main config signature 0x%x\n",
1133 value);
1134 return -EBUSY;
1135 }
1136 pm8001_dbg(pm8001_ha, INIT,
1137 "VALID main config signature 0x%x\n", value);
Sakthivel Kf5860992013-04-17 16:37:02 +05301138 pm8001_ha->general_stat_tbl_addr =
1139 base_addr + (pm8001_cr32(pm8001_ha, pcibar, offset + 0x18) &
1140 0xFFFFFF);
1141 pm8001_ha->inbnd_q_tbl_addr =
1142 base_addr + (pm8001_cr32(pm8001_ha, pcibar, offset + 0x1C) &
1143 0xFFFFFF);
1144 pm8001_ha->outbnd_q_tbl_addr =
1145 base_addr + (pm8001_cr32(pm8001_ha, pcibar, offset + 0x20) &
1146 0xFFFFFF);
1147 pm8001_ha->ivt_tbl_addr =
1148 base_addr + (pm8001_cr32(pm8001_ha, pcibar, offset + 0x8C) &
1149 0xFFFFFF);
1150 pm8001_ha->pspa_q_tbl_addr =
1151 base_addr + (pm8001_cr32(pm8001_ha, pcibar, offset + 0x90) &
1152 0xFFFFFF);
Anand Kumar Santhanamd078b512013-09-04 12:57:00 +05301153 pm8001_ha->fatal_tbl_addr =
1154 base_addr + (pm8001_cr32(pm8001_ha, pcibar, offset + 0xA0) &
1155 0xFFFFFF);
Sakthivel Kf5860992013-04-17 16:37:02 +05301156
Joe Perches1b5d2792020-11-20 15:16:09 -08001157 pm8001_dbg(pm8001_ha, INIT, "GST OFFSET 0x%x\n",
1158 pm8001_cr32(pm8001_ha, pcibar, offset + 0x18));
1159 pm8001_dbg(pm8001_ha, INIT, "INBND OFFSET 0x%x\n",
1160 pm8001_cr32(pm8001_ha, pcibar, offset + 0x1C));
1161 pm8001_dbg(pm8001_ha, INIT, "OBND OFFSET 0x%x\n",
1162 pm8001_cr32(pm8001_ha, pcibar, offset + 0x20));
1163 pm8001_dbg(pm8001_ha, INIT, "IVT OFFSET 0x%x\n",
1164 pm8001_cr32(pm8001_ha, pcibar, offset + 0x8C));
1165 pm8001_dbg(pm8001_ha, INIT, "PSPA OFFSET 0x%x\n",
1166 pm8001_cr32(pm8001_ha, pcibar, offset + 0x90));
1167 pm8001_dbg(pm8001_ha, INIT, "addr - main cfg %p general status %p\n",
1168 pm8001_ha->main_cfg_tbl_addr,
1169 pm8001_ha->general_stat_tbl_addr);
1170 pm8001_dbg(pm8001_ha, INIT, "addr - inbnd %p obnd %p\n",
1171 pm8001_ha->inbnd_q_tbl_addr,
1172 pm8001_ha->outbnd_q_tbl_addr);
1173 pm8001_dbg(pm8001_ha, INIT, "addr - pspa %p ivt %p\n",
1174 pm8001_ha->pspa_q_tbl_addr,
1175 pm8001_ha->ivt_tbl_addr);
akshatzen95652f92021-01-09 18:08:44 +05301176 return 0;
Sakthivel Kf5860992013-04-17 16:37:02 +05301177}
1178
1179/**
1180 * pm80xx_set_thermal_config - support the thermal configuration
1181 * @pm8001_ha: our hba card information.
1182 */
Sakthivel Ka6cb3d02013-03-19 18:08:40 +05301183int
Sakthivel Kf5860992013-04-17 16:37:02 +05301184pm80xx_set_thermal_config(struct pm8001_hba_info *pm8001_ha)
1185{
1186 struct set_ctrl_cfg_req payload;
1187 struct inbound_queue_table *circularQ;
1188 int rc;
1189 u32 tag;
1190 u32 opc = OPC_INB_SET_CONTROLLER_CONFIG;
Viswas G842784e2015-08-11 15:06:27 +05301191 u32 page_code;
Sakthivel Kf5860992013-04-17 16:37:02 +05301192
1193 memset(&payload, 0, sizeof(struct set_ctrl_cfg_req));
1194 rc = pm8001_tag_alloc(pm8001_ha, &tag);
1195 if (rc)
1196 return -1;
1197
1198 circularQ = &pm8001_ha->inbnd_q_tbl[0];
1199 payload.tag = cpu_to_le32(tag);
Viswas G842784e2015-08-11 15:06:27 +05301200
1201 if (IS_SPCV_12G(pm8001_ha->pdev))
1202 page_code = THERMAL_PAGE_CODE_7H;
1203 else
1204 page_code = THERMAL_PAGE_CODE_8H;
1205
Sakthivel Kf5860992013-04-17 16:37:02 +05301206 payload.cfg_pg[0] = (THERMAL_LOG_ENABLE << 9) |
Viswas G842784e2015-08-11 15:06:27 +05301207 (THERMAL_ENABLE << 8) | page_code;
Sakthivel Kf5860992013-04-17 16:37:02 +05301208 payload.cfg_pg[1] = (LTEMPHIL << 24) | (RTEMPHIL << 8);
1209
Joe Perches1b5d2792020-11-20 15:16:09 -08001210 pm8001_dbg(pm8001_ha, DEV,
1211 "Setting up thermal config. cfg_pg 0 0x%x cfg_pg 1 0x%x\n",
1212 payload.cfg_pg[0], payload.cfg_pg[1]);
peter chang73706722019-11-14 15:39:02 +05301213
peter chang91a43fa2019-11-14 15:39:05 +05301214 rc = pm8001_mpi_build_cmd(pm8001_ha, circularQ, opc, &payload,
1215 sizeof(payload), 0);
Tomas Henzl5533abc2014-07-09 17:20:49 +05301216 if (rc)
1217 pm8001_tag_free(pm8001_ha, tag);
Sakthivel Kf5860992013-04-17 16:37:02 +05301218 return rc;
1219
1220}
1221
1222/**
Sakthivel Ka6cb3d02013-03-19 18:08:40 +05301223* pm80xx_set_sas_protocol_timer_config - support the SAS Protocol
1224* Timer configuration page
1225* @pm8001_ha: our hba card information.
1226*/
1227static int
1228pm80xx_set_sas_protocol_timer_config(struct pm8001_hba_info *pm8001_ha)
1229{
1230 struct set_ctrl_cfg_req payload;
1231 struct inbound_queue_table *circularQ;
1232 SASProtocolTimerConfig_t SASConfigPage;
1233 int rc;
1234 u32 tag;
1235 u32 opc = OPC_INB_SET_CONTROLLER_CONFIG;
1236
1237 memset(&payload, 0, sizeof(struct set_ctrl_cfg_req));
1238 memset(&SASConfigPage, 0, sizeof(SASProtocolTimerConfig_t));
1239
1240 rc = pm8001_tag_alloc(pm8001_ha, &tag);
1241
1242 if (rc)
1243 return -1;
1244
1245 circularQ = &pm8001_ha->inbnd_q_tbl[0];
1246 payload.tag = cpu_to_le32(tag);
1247
1248 SASConfigPage.pageCode = SAS_PROTOCOL_TIMER_CONFIG_PAGE;
1249 SASConfigPage.MST_MSI = 3 << 15;
1250 SASConfigPage.STP_SSP_MCT_TMO = (STP_MCT_TMO << 16) | SSP_MCT_TMO;
1251 SASConfigPage.STP_FRM_TMO = (SAS_MAX_OPEN_TIME << 24) |
1252 (SMP_MAX_CONN_TIMER << 16) | STP_FRM_TIMER;
1253 SASConfigPage.STP_IDLE_TMO = STP_IDLE_TIME;
1254
1255 if (SASConfigPage.STP_IDLE_TMO > 0x3FFFFFF)
1256 SASConfigPage.STP_IDLE_TMO = 0x3FFFFFF;
1257
1258
1259 SASConfigPage.OPNRJT_RTRY_INTVL = (SAS_MFD << 16) |
1260 SAS_OPNRJT_RTRY_INTVL;
1261 SASConfigPage.Data_Cmd_OPNRJT_RTRY_TMO = (SAS_DOPNRJT_RTRY_TMO << 16)
1262 | SAS_COPNRJT_RTRY_TMO;
1263 SASConfigPage.Data_Cmd_OPNRJT_RTRY_THR = (SAS_DOPNRJT_RTRY_THR << 16)
1264 | SAS_COPNRJT_RTRY_THR;
1265 SASConfigPage.MAX_AIP = SAS_MAX_AIP;
1266
Joe Perches1b5d2792020-11-20 15:16:09 -08001267 pm8001_dbg(pm8001_ha, INIT, "SASConfigPage.pageCode 0x%08x\n",
1268 SASConfigPage.pageCode);
1269 pm8001_dbg(pm8001_ha, INIT, "SASConfigPage.MST_MSI 0x%08x\n",
1270 SASConfigPage.MST_MSI);
1271 pm8001_dbg(pm8001_ha, INIT, "SASConfigPage.STP_SSP_MCT_TMO 0x%08x\n",
1272 SASConfigPage.STP_SSP_MCT_TMO);
1273 pm8001_dbg(pm8001_ha, INIT, "SASConfigPage.STP_FRM_TMO 0x%08x\n",
1274 SASConfigPage.STP_FRM_TMO);
1275 pm8001_dbg(pm8001_ha, INIT, "SASConfigPage.STP_IDLE_TMO 0x%08x\n",
1276 SASConfigPage.STP_IDLE_TMO);
1277 pm8001_dbg(pm8001_ha, INIT, "SASConfigPage.OPNRJT_RTRY_INTVL 0x%08x\n",
1278 SASConfigPage.OPNRJT_RTRY_INTVL);
1279 pm8001_dbg(pm8001_ha, INIT, "SASConfigPage.Data_Cmd_OPNRJT_RTRY_TMO 0x%08x\n",
1280 SASConfigPage.Data_Cmd_OPNRJT_RTRY_TMO);
1281 pm8001_dbg(pm8001_ha, INIT, "SASConfigPage.Data_Cmd_OPNRJT_RTRY_THR 0x%08x\n",
1282 SASConfigPage.Data_Cmd_OPNRJT_RTRY_THR);
1283 pm8001_dbg(pm8001_ha, INIT, "SASConfigPage.MAX_AIP 0x%08x\n",
1284 SASConfigPage.MAX_AIP);
Sakthivel Ka6cb3d02013-03-19 18:08:40 +05301285
1286 memcpy(&payload.cfg_pg, &SASConfigPage,
1287 sizeof(SASProtocolTimerConfig_t));
1288
peter chang91a43fa2019-11-14 15:39:05 +05301289 rc = pm8001_mpi_build_cmd(pm8001_ha, circularQ, opc, &payload,
1290 sizeof(payload), 0);
Tomas Henzl5533abc2014-07-09 17:20:49 +05301291 if (rc)
1292 pm8001_tag_free(pm8001_ha, tag);
Sakthivel Ka6cb3d02013-03-19 18:08:40 +05301293
1294 return rc;
1295}
1296
1297/**
Sakthivel Kf5860992013-04-17 16:37:02 +05301298 * pm80xx_get_encrypt_info - Check for encryption
1299 * @pm8001_ha: our hba card information.
1300 */
1301static int
1302pm80xx_get_encrypt_info(struct pm8001_hba_info *pm8001_ha)
1303{
1304 u32 scratch3_value;
Rickard Strandqvistda225492014-07-09 17:20:10 +05301305 int ret = -1;
Sakthivel Kf5860992013-04-17 16:37:02 +05301306
1307 /* Read encryption status from SCRATCH PAD 3 */
1308 scratch3_value = pm8001_cr32(pm8001_ha, 0, MSGU_SCRATCH_PAD_3);
1309
1310 if ((scratch3_value & SCRATCH_PAD3_ENC_MASK) ==
1311 SCRATCH_PAD3_ENC_READY) {
1312 if (scratch3_value & SCRATCH_PAD3_XTS_ENABLED)
1313 pm8001_ha->encrypt_info.cipher_mode = CIPHER_MODE_XTS;
1314 if ((scratch3_value & SCRATCH_PAD3_SM_MASK) ==
1315 SCRATCH_PAD3_SMF_ENABLED)
1316 pm8001_ha->encrypt_info.sec_mode = SEC_MODE_SMF;
1317 if ((scratch3_value & SCRATCH_PAD3_SM_MASK) ==
1318 SCRATCH_PAD3_SMA_ENABLED)
1319 pm8001_ha->encrypt_info.sec_mode = SEC_MODE_SMA;
1320 if ((scratch3_value & SCRATCH_PAD3_SM_MASK) ==
1321 SCRATCH_PAD3_SMB_ENABLED)
1322 pm8001_ha->encrypt_info.sec_mode = SEC_MODE_SMB;
1323 pm8001_ha->encrypt_info.status = 0;
Joe Perches1b5d2792020-11-20 15:16:09 -08001324 pm8001_dbg(pm8001_ha, INIT,
1325 "Encryption: SCRATCH_PAD3_ENC_READY 0x%08X.Cipher mode 0x%x Sec mode 0x%x status 0x%x\n",
1326 scratch3_value,
1327 pm8001_ha->encrypt_info.cipher_mode,
1328 pm8001_ha->encrypt_info.sec_mode,
1329 pm8001_ha->encrypt_info.status);
Sakthivel Kf5860992013-04-17 16:37:02 +05301330 ret = 0;
1331 } else if ((scratch3_value & SCRATCH_PAD3_ENC_READY) ==
1332 SCRATCH_PAD3_ENC_DISABLED) {
Joe Perches1b5d2792020-11-20 15:16:09 -08001333 pm8001_dbg(pm8001_ha, INIT,
1334 "Encryption: SCRATCH_PAD3_ENC_DISABLED 0x%08X\n",
1335 scratch3_value);
Sakthivel Kf5860992013-04-17 16:37:02 +05301336 pm8001_ha->encrypt_info.status = 0xFFFFFFFF;
1337 pm8001_ha->encrypt_info.cipher_mode = 0;
1338 pm8001_ha->encrypt_info.sec_mode = 0;
Rickard Strandqvistda225492014-07-09 17:20:10 +05301339 ret = 0;
Sakthivel Kf5860992013-04-17 16:37:02 +05301340 } else if ((scratch3_value & SCRATCH_PAD3_ENC_MASK) ==
1341 SCRATCH_PAD3_ENC_DIS_ERR) {
1342 pm8001_ha->encrypt_info.status =
1343 (scratch3_value & SCRATCH_PAD3_ERR_CODE) >> 16;
1344 if (scratch3_value & SCRATCH_PAD3_XTS_ENABLED)
1345 pm8001_ha->encrypt_info.cipher_mode = CIPHER_MODE_XTS;
1346 if ((scratch3_value & SCRATCH_PAD3_SM_MASK) ==
1347 SCRATCH_PAD3_SMF_ENABLED)
1348 pm8001_ha->encrypt_info.sec_mode = SEC_MODE_SMF;
1349 if ((scratch3_value & SCRATCH_PAD3_SM_MASK) ==
1350 SCRATCH_PAD3_SMA_ENABLED)
1351 pm8001_ha->encrypt_info.sec_mode = SEC_MODE_SMA;
1352 if ((scratch3_value & SCRATCH_PAD3_SM_MASK) ==
1353 SCRATCH_PAD3_SMB_ENABLED)
1354 pm8001_ha->encrypt_info.sec_mode = SEC_MODE_SMB;
Joe Perches1b5d2792020-11-20 15:16:09 -08001355 pm8001_dbg(pm8001_ha, INIT,
1356 "Encryption: SCRATCH_PAD3_DIS_ERR 0x%08X.Cipher mode 0x%x sec mode 0x%x status 0x%x\n",
1357 scratch3_value,
1358 pm8001_ha->encrypt_info.cipher_mode,
1359 pm8001_ha->encrypt_info.sec_mode,
1360 pm8001_ha->encrypt_info.status);
Sakthivel Kf5860992013-04-17 16:37:02 +05301361 } else if ((scratch3_value & SCRATCH_PAD3_ENC_MASK) ==
1362 SCRATCH_PAD3_ENC_ENA_ERR) {
1363
1364 pm8001_ha->encrypt_info.status =
1365 (scratch3_value & SCRATCH_PAD3_ERR_CODE) >> 16;
1366 if (scratch3_value & SCRATCH_PAD3_XTS_ENABLED)
1367 pm8001_ha->encrypt_info.cipher_mode = CIPHER_MODE_XTS;
1368 if ((scratch3_value & SCRATCH_PAD3_SM_MASK) ==
1369 SCRATCH_PAD3_SMF_ENABLED)
1370 pm8001_ha->encrypt_info.sec_mode = SEC_MODE_SMF;
1371 if ((scratch3_value & SCRATCH_PAD3_SM_MASK) ==
1372 SCRATCH_PAD3_SMA_ENABLED)
1373 pm8001_ha->encrypt_info.sec_mode = SEC_MODE_SMA;
1374 if ((scratch3_value & SCRATCH_PAD3_SM_MASK) ==
1375 SCRATCH_PAD3_SMB_ENABLED)
1376 pm8001_ha->encrypt_info.sec_mode = SEC_MODE_SMB;
1377
Joe Perches1b5d2792020-11-20 15:16:09 -08001378 pm8001_dbg(pm8001_ha, INIT,
1379 "Encryption: SCRATCH_PAD3_ENA_ERR 0x%08X.Cipher mode 0x%x sec mode 0x%x status 0x%x\n",
1380 scratch3_value,
1381 pm8001_ha->encrypt_info.cipher_mode,
1382 pm8001_ha->encrypt_info.sec_mode,
1383 pm8001_ha->encrypt_info.status);
Sakthivel Kf5860992013-04-17 16:37:02 +05301384 }
1385 return ret;
1386}
1387
1388/**
Randy Dunlapbb6beab2021-07-08 09:57:23 -07001389 * pm80xx_encrypt_update - update flash with encryption information
Sakthivel Kf5860992013-04-17 16:37:02 +05301390 * @pm8001_ha: our hba card information.
1391 */
1392static int pm80xx_encrypt_update(struct pm8001_hba_info *pm8001_ha)
1393{
1394 struct kek_mgmt_req payload;
1395 struct inbound_queue_table *circularQ;
1396 int rc;
1397 u32 tag;
1398 u32 opc = OPC_INB_KEK_MANAGEMENT;
1399
1400 memset(&payload, 0, sizeof(struct kek_mgmt_req));
1401 rc = pm8001_tag_alloc(pm8001_ha, &tag);
1402 if (rc)
1403 return -1;
1404
1405 circularQ = &pm8001_ha->inbnd_q_tbl[0];
1406 payload.tag = cpu_to_le32(tag);
1407 /* Currently only one key is used. New KEK index is 1.
1408 * Current KEK index is 1. Store KEK to NVRAM is 1.
1409 */
1410 payload.new_curidx_ksop = ((1 << 24) | (1 << 16) | (1 << 8) |
1411 KEK_MGMT_SUBOP_KEYCARDUPDATE);
1412
Joe Perches1b5d2792020-11-20 15:16:09 -08001413 pm8001_dbg(pm8001_ha, DEV,
1414 "Saving Encryption info to flash. payload 0x%x\n",
1415 payload.new_curidx_ksop);
peter chang73706722019-11-14 15:39:02 +05301416
peter chang91a43fa2019-11-14 15:39:05 +05301417 rc = pm8001_mpi_build_cmd(pm8001_ha, circularQ, opc, &payload,
1418 sizeof(payload), 0);
Tomas Henzl5533abc2014-07-09 17:20:49 +05301419 if (rc)
1420 pm8001_tag_free(pm8001_ha, tag);
Sakthivel Kf5860992013-04-17 16:37:02 +05301421
1422 return rc;
1423}
1424
1425/**
Randy Dunlapbb6beab2021-07-08 09:57:23 -07001426 * pm80xx_chip_init - the main init function that initializes whole PM8001 chip.
Sakthivel Kf5860992013-04-17 16:37:02 +05301427 * @pm8001_ha: our hba card information
1428 */
1429static int pm80xx_chip_init(struct pm8001_hba_info *pm8001_ha)
1430{
1431 int ret;
1432 u8 i = 0;
1433
1434 /* check the firmware status */
1435 if (-1 == check_fw_ready(pm8001_ha)) {
Joe Perches1b5d2792020-11-20 15:16:09 -08001436 pm8001_dbg(pm8001_ha, FAIL, "Firmware is not ready!\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05301437 return -EBUSY;
1438 }
1439
Deepak Ukey72349b62018-09-11 14:18:04 +05301440 /* Initialize the controller fatal error flag */
1441 pm8001_ha->controller_fatal_error = false;
1442
Sakthivel Kf5860992013-04-17 16:37:02 +05301443 /* Initialize pci space address eg: mpi offset */
akshatzen95652f92021-01-09 18:08:44 +05301444 ret = init_pci_device_addresses(pm8001_ha);
1445 if (ret) {
1446 pm8001_dbg(pm8001_ha, FAIL,
1447 "Failed to init pci addresses");
1448 return ret;
1449 }
Sakthivel Kf5860992013-04-17 16:37:02 +05301450 init_default_table_values(pm8001_ha);
1451 read_main_config_table(pm8001_ha);
1452 read_general_status_table(pm8001_ha);
1453 read_inbnd_queue_table(pm8001_ha);
1454 read_outbnd_queue_table(pm8001_ha);
1455 read_phy_attr_table(pm8001_ha);
1456
1457 /* update main config table ,inbound table and outbound table */
1458 update_main_config_table(pm8001_ha);
Viswas G05c6c022020-10-05 20:20:08 +05301459 for (i = 0; i < pm8001_ha->max_q_num; i++) {
Sakthivel Kf5860992013-04-17 16:37:02 +05301460 update_inbnd_queue_table(pm8001_ha, i);
Sakthivel Kf5860992013-04-17 16:37:02 +05301461 update_outbnd_queue_table(pm8001_ha, i);
Viswas G05c6c022020-10-05 20:20:08 +05301462 }
Sakthivel Kf5860992013-04-17 16:37:02 +05301463 /* notify firmware update finished and check initialization status */
1464 if (0 == mpi_init_check(pm8001_ha)) {
Joe Perches1b5d2792020-11-20 15:16:09 -08001465 pm8001_dbg(pm8001_ha, INIT, "MPI initialize successful!\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05301466 } else
1467 return -EBUSY;
1468
Sakthivel Ka6cb3d02013-03-19 18:08:40 +05301469 /* send SAS protocol timer configuration page to FW */
1470 ret = pm80xx_set_sas_protocol_timer_config(pm8001_ha);
Sakthivel Kf5860992013-04-17 16:37:02 +05301471
1472 /* Check for encryption */
1473 if (pm8001_ha->chip->encrypt) {
Joe Perches1b5d2792020-11-20 15:16:09 -08001474 pm8001_dbg(pm8001_ha, INIT, "Checking for encryption\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05301475 ret = pm80xx_get_encrypt_info(pm8001_ha);
1476 if (ret == -1) {
Joe Perches1b5d2792020-11-20 15:16:09 -08001477 pm8001_dbg(pm8001_ha, INIT, "Encryption error !!\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05301478 if (pm8001_ha->encrypt_info.status == 0x81) {
Joe Perches1b5d2792020-11-20 15:16:09 -08001479 pm8001_dbg(pm8001_ha, INIT,
1480 "Encryption enabled with error.Saving encryption key to flash\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05301481 pm80xx_encrypt_update(pm8001_ha);
1482 }
1483 }
1484 }
1485 return 0;
1486}
1487
1488static int mpi_uninit_check(struct pm8001_hba_info *pm8001_ha)
1489{
1490 u32 max_wait_count;
1491 u32 value;
1492 u32 gst_len_mpistate;
akshatzen95652f92021-01-09 18:08:44 +05301493 int ret;
1494
1495 ret = init_pci_device_addresses(pm8001_ha);
1496 if (ret) {
1497 pm8001_dbg(pm8001_ha, FAIL,
1498 "Failed to init pci addresses");
1499 return ret;
1500 }
1501
Sakthivel Kf5860992013-04-17 16:37:02 +05301502 /* Write bit1=1 to Inbound DoorBell Register to tell the SPC FW the
1503 table is stop */
1504 pm8001_cw32(pm8001_ha, 0, MSGU_IBDB_SET, SPCv_MSGU_CFG_TABLE_RESET);
1505
1506 /* wait until Inbound DoorBell Clear Register toggled */
Anand Kumar Santhanama9a923e2013-09-03 15:09:42 +05301507 if (IS_SPCV_12G(pm8001_ha->pdev)) {
Igor Pylypiv6f305bf2021-04-06 11:05:34 -07001508 max_wait_count = SPCV_DOORBELL_CLEAR_TIMEOUT;
Anand Kumar Santhanama9a923e2013-09-03 15:09:42 +05301509 } else {
Igor Pylypiv6f305bf2021-04-06 11:05:34 -07001510 max_wait_count = SPC_DOORBELL_CLEAR_TIMEOUT;
Anand Kumar Santhanama9a923e2013-09-03 15:09:42 +05301511 }
Sakthivel Kf5860992013-04-17 16:37:02 +05301512 do {
Igor Pylypiv6f305bf2021-04-06 11:05:34 -07001513 msleep(FW_READY_INTERVAL);
Sakthivel Kf5860992013-04-17 16:37:02 +05301514 value = pm8001_cr32(pm8001_ha, 0, MSGU_IBDB_SET);
1515 value &= SPCv_MSGU_CFG_TABLE_RESET;
1516 } while ((value != 0) && (--max_wait_count));
1517
1518 if (!max_wait_count) {
Joe Perches1b5d2792020-11-20 15:16:09 -08001519 pm8001_dbg(pm8001_ha, FAIL, "TIMEOUT:IBDB value/=%x\n", value);
Sakthivel Kf5860992013-04-17 16:37:02 +05301520 return -1;
1521 }
1522
1523 /* check the MPI-State for termination in progress */
1524 /* wait until Inbound DoorBell Clear Register toggled */
Igor Pylypiv6f305bf2021-04-06 11:05:34 -07001525 max_wait_count = 100; /* 2 sec for spcv/ve */
Sakthivel Kf5860992013-04-17 16:37:02 +05301526 do {
Igor Pylypiv6f305bf2021-04-06 11:05:34 -07001527 msleep(FW_READY_INTERVAL);
Sakthivel Kf5860992013-04-17 16:37:02 +05301528 gst_len_mpistate =
1529 pm8001_mr32(pm8001_ha->general_stat_tbl_addr,
1530 GST_GSTLEN_MPIS_OFFSET);
1531 if (GST_MPI_STATE_UNINIT ==
1532 (gst_len_mpistate & GST_MPI_STATE_MASK))
1533 break;
1534 } while (--max_wait_count);
1535 if (!max_wait_count) {
Joe Perches1b5d2792020-11-20 15:16:09 -08001536 pm8001_dbg(pm8001_ha, FAIL, " TIME OUT MPI State = 0x%x\n",
1537 gst_len_mpistate & GST_MPI_STATE_MASK);
Sakthivel Kf5860992013-04-17 16:37:02 +05301538 return -1;
1539 }
1540
1541 return 0;
1542}
1543
1544/**
Randy Dunlapbb6beab2021-07-08 09:57:23 -07001545 * pm80xx_fatal_errors - returns non-zero *ONLY* when fatal errors
akshatzena961ea02021-01-09 18:08:43 +05301546 * @pm8001_ha: our hba card information
1547 *
1548 * Fatal errors are recoverable only after a host reboot.
1549 */
1550int
1551pm80xx_fatal_errors(struct pm8001_hba_info *pm8001_ha)
1552{
1553 int ret = 0;
1554 u32 scratch_pad_rsvd0 = pm8001_cr32(pm8001_ha, 0,
1555 MSGU_HOST_SCRATCH_PAD_6);
1556 u32 scratch_pad_rsvd1 = pm8001_cr32(pm8001_ha, 0,
1557 MSGU_HOST_SCRATCH_PAD_7);
1558 u32 scratch_pad1 = pm8001_cr32(pm8001_ha, 0, MSGU_SCRATCH_PAD_1);
1559 u32 scratch_pad2 = pm8001_cr32(pm8001_ha, 0, MSGU_SCRATCH_PAD_2);
1560 u32 scratch_pad3 = pm8001_cr32(pm8001_ha, 0, MSGU_SCRATCH_PAD_3);
1561
1562 if (pm8001_ha->chip_id != chip_8006 &&
1563 pm8001_ha->chip_id != chip_8074 &&
1564 pm8001_ha->chip_id != chip_8076) {
1565 return 0;
1566 }
1567
1568 if (MSGU_SCRATCHPAD1_STATE_FATAL_ERROR(scratch_pad1)) {
1569 pm8001_dbg(pm8001_ha, FAIL,
1570 "Fatal error SCRATCHPAD1 = 0x%x SCRATCHPAD2 = 0x%x SCRATCHPAD3 = 0x%x SCRATCHPAD_RSVD0 = 0x%x SCRATCHPAD_RSVD1 = 0x%x\n",
1571 scratch_pad1, scratch_pad2, scratch_pad3,
1572 scratch_pad_rsvd0, scratch_pad_rsvd1);
1573 ret = 1;
1574 }
1575
1576 return ret;
1577}
1578
1579/**
Randy Dunlapbb6beab2021-07-08 09:57:23 -07001580 * pm80xx_chip_soft_rst - soft reset the PM8001 chip, so that all
1581 * FW register status are reset to the originated status.
Sakthivel Kf5860992013-04-17 16:37:02 +05301582 * @pm8001_ha: our hba card information
1583 */
1584
1585static int
1586pm80xx_chip_soft_rst(struct pm8001_hba_info *pm8001_ha)
1587{
1588 u32 regval;
1589 u32 bootloader_state;
Anand Kumar Santhanam06f12f222013-09-17 14:32:20 +05301590 u32 ibutton0, ibutton1;
Sakthivel Kf5860992013-04-17 16:37:02 +05301591
Deepak Ukey72349b62018-09-11 14:18:04 +05301592 /* Process MPI table uninitialization only if FW is ready */
1593 if (!pm8001_ha->controller_fatal_error) {
1594 /* Check if MPI is in ready state to reset */
1595 if (mpi_uninit_check(pm8001_ha) != 0) {
Vikram Auradkard384be62020-03-16 13:19:02 +05301596 u32 r0 = pm8001_cr32(pm8001_ha, 0, MSGU_SCRATCH_PAD_0);
1597 u32 r1 = pm8001_cr32(pm8001_ha, 0, MSGU_SCRATCH_PAD_1);
1598 u32 r2 = pm8001_cr32(pm8001_ha, 0, MSGU_SCRATCH_PAD_2);
1599 u32 r3 = pm8001_cr32(pm8001_ha, 0, MSGU_SCRATCH_PAD_3);
Joe Perches1b5d2792020-11-20 15:16:09 -08001600 pm8001_dbg(pm8001_ha, FAIL,
1601 "MPI state is not ready scratch: %x:%x:%x:%x\n",
1602 r0, r1, r2, r3);
Vikram Auradkard384be62020-03-16 13:19:02 +05301603 /* if things aren't ready but the bootloader is ok then
1604 * try the reset anyway.
1605 */
1606 if (r1 & SCRATCH_PAD1_BOOTSTATE_MASK)
1607 return -1;
Deepak Ukey72349b62018-09-11 14:18:04 +05301608 }
Sakthivel Kf5860992013-04-17 16:37:02 +05301609 }
Sakthivel Kf5860992013-04-17 16:37:02 +05301610 /* checked for reset register normal state; 0x0 */
1611 regval = pm8001_cr32(pm8001_ha, 0, SPC_REG_SOFT_RESET);
Joe Perches1b5d2792020-11-20 15:16:09 -08001612 pm8001_dbg(pm8001_ha, INIT, "reset register before write : 0x%x\n",
1613 regval);
Sakthivel Kf5860992013-04-17 16:37:02 +05301614
1615 pm8001_cw32(pm8001_ha, 0, SPC_REG_SOFT_RESET, SPCv_NORMAL_RESET_VALUE);
Vikram Auradkar4daf1ef2019-11-14 15:39:01 +05301616 msleep(500);
Sakthivel Kf5860992013-04-17 16:37:02 +05301617
1618 regval = pm8001_cr32(pm8001_ha, 0, SPC_REG_SOFT_RESET);
Joe Perches1b5d2792020-11-20 15:16:09 -08001619 pm8001_dbg(pm8001_ha, INIT, "reset register after write 0x%x\n",
1620 regval);
Sakthivel Kf5860992013-04-17 16:37:02 +05301621
1622 if ((regval & SPCv_SOFT_RESET_READ_MASK) ==
1623 SPCv_SOFT_RESET_NORMAL_RESET_OCCURED) {
Joe Perches1b5d2792020-11-20 15:16:09 -08001624 pm8001_dbg(pm8001_ha, MSG,
1625 " soft reset successful [regval: 0x%x]\n",
1626 regval);
Sakthivel Kf5860992013-04-17 16:37:02 +05301627 } else {
Joe Perches1b5d2792020-11-20 15:16:09 -08001628 pm8001_dbg(pm8001_ha, MSG,
1629 " soft reset failed [regval: 0x%x]\n",
1630 regval);
Sakthivel Kf5860992013-04-17 16:37:02 +05301631
1632 /* check bootloader is successfully executed or in HDA mode */
1633 bootloader_state =
1634 pm8001_cr32(pm8001_ha, 0, MSGU_SCRATCH_PAD_1) &
1635 SCRATCH_PAD1_BOOTSTATE_MASK;
1636
1637 if (bootloader_state == SCRATCH_PAD1_BOOTSTATE_HDA_SEEPROM) {
Joe Perches1b5d2792020-11-20 15:16:09 -08001638 pm8001_dbg(pm8001_ha, MSG,
1639 "Bootloader state - HDA mode SEEPROM\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05301640 } else if (bootloader_state ==
1641 SCRATCH_PAD1_BOOTSTATE_HDA_BOOTSTRAP) {
Joe Perches1b5d2792020-11-20 15:16:09 -08001642 pm8001_dbg(pm8001_ha, MSG,
1643 "Bootloader state - HDA mode Bootstrap Pin\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05301644 } else if (bootloader_state ==
1645 SCRATCH_PAD1_BOOTSTATE_HDA_SOFTRESET) {
Joe Perches1b5d2792020-11-20 15:16:09 -08001646 pm8001_dbg(pm8001_ha, MSG,
1647 "Bootloader state - HDA mode soft reset\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05301648 } else if (bootloader_state ==
1649 SCRATCH_PAD1_BOOTSTATE_CRIT_ERROR) {
Joe Perches1b5d2792020-11-20 15:16:09 -08001650 pm8001_dbg(pm8001_ha, MSG,
1651 "Bootloader state-HDA mode critical error\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05301652 }
1653 return -EBUSY;
1654 }
1655
1656 /* check the firmware status after reset */
1657 if (-1 == check_fw_ready(pm8001_ha)) {
Joe Perches1b5d2792020-11-20 15:16:09 -08001658 pm8001_dbg(pm8001_ha, FAIL, "Firmware is not ready!\n");
Anand Kumar Santhanam06f12f222013-09-17 14:32:20 +05301659 /* check iButton feature support for motherboard controller */
1660 if (pm8001_ha->pdev->subsystem_vendor !=
1661 PCI_VENDOR_ID_ADAPTEC2 &&
Benjamin Roodfaf321b2015-10-30 10:53:29 -04001662 pm8001_ha->pdev->subsystem_vendor !=
1663 PCI_VENDOR_ID_ATTO &&
Anand Kumar Santhanam06f12f222013-09-17 14:32:20 +05301664 pm8001_ha->pdev->subsystem_vendor != 0) {
1665 ibutton0 = pm8001_cr32(pm8001_ha, 0,
1666 MSGU_HOST_SCRATCH_PAD_6);
1667 ibutton1 = pm8001_cr32(pm8001_ha, 0,
1668 MSGU_HOST_SCRATCH_PAD_7);
1669 if (!ibutton0 && !ibutton1) {
Joe Perches1b5d2792020-11-20 15:16:09 -08001670 pm8001_dbg(pm8001_ha, FAIL,
1671 "iButton Feature is not Available!!!\n");
Anand Kumar Santhanam06f12f222013-09-17 14:32:20 +05301672 return -EBUSY;
1673 }
1674 if (ibutton0 == 0xdeadbeef && ibutton1 == 0xdeadbeef) {
Joe Perches1b5d2792020-11-20 15:16:09 -08001675 pm8001_dbg(pm8001_ha, FAIL,
1676 "CRC Check for iButton Feature Failed!!!\n");
Anand Kumar Santhanam06f12f222013-09-17 14:32:20 +05301677 return -EBUSY;
1678 }
1679 }
Sakthivel Kf5860992013-04-17 16:37:02 +05301680 }
Joe Perches1b5d2792020-11-20 15:16:09 -08001681 pm8001_dbg(pm8001_ha, INIT, "SPCv soft reset Complete\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05301682 return 0;
1683}
1684
1685static void pm80xx_hw_chip_rst(struct pm8001_hba_info *pm8001_ha)
1686{
Colin Ian King9e2a07e2019-03-17 18:15:32 +00001687 u32 i;
Sakthivel Kf5860992013-04-17 16:37:02 +05301688
Joe Perches1b5d2792020-11-20 15:16:09 -08001689 pm8001_dbg(pm8001_ha, INIT, "chip reset start\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05301690
1691 /* do SPCv chip reset. */
1692 pm8001_cw32(pm8001_ha, 0, SPC_REG_SOFT_RESET, 0x11);
Joe Perches1b5d2792020-11-20 15:16:09 -08001693 pm8001_dbg(pm8001_ha, INIT, "SPC soft reset Complete\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05301694
1695 /* Check this ..whether delay is required or no */
1696 /* delay 10 usec */
1697 udelay(10);
1698
1699 /* wait for 20 msec until the firmware gets reloaded */
1700 i = 20;
1701 do {
1702 mdelay(1);
1703 } while ((--i) != 0);
1704
Joe Perches1b5d2792020-11-20 15:16:09 -08001705 pm8001_dbg(pm8001_ha, INIT, "chip reset finished\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05301706}
1707
1708/**
Lee Jones7cdaf122021-03-03 14:46:23 +00001709 * pm80xx_chip_intx_interrupt_enable - enable PM8001 chip interrupt
Sakthivel Kf5860992013-04-17 16:37:02 +05301710 * @pm8001_ha: our hba card information
1711 */
1712static void
1713pm80xx_chip_intx_interrupt_enable(struct pm8001_hba_info *pm8001_ha)
1714{
1715 pm8001_cw32(pm8001_ha, 0, MSGU_ODMR, ODMR_CLEAR_ALL);
1716 pm8001_cw32(pm8001_ha, 0, MSGU_ODCR, ODCR_CLEAR_ALL);
1717}
1718
1719/**
Lee Jones7cdaf122021-03-03 14:46:23 +00001720 * pm80xx_chip_intx_interrupt_disable - disable PM8001 chip interrupt
Sakthivel Kf5860992013-04-17 16:37:02 +05301721 * @pm8001_ha: our hba card information
1722 */
1723static void
1724pm80xx_chip_intx_interrupt_disable(struct pm8001_hba_info *pm8001_ha)
1725{
1726 pm8001_cw32(pm8001_ha, 0, MSGU_ODMR_CLR, ODMR_MASK_ALL);
1727}
1728
1729/**
Lee Jones7cdaf122021-03-03 14:46:23 +00001730 * pm80xx_chip_interrupt_enable - enable PM8001 chip interrupt
Sakthivel Kf5860992013-04-17 16:37:02 +05301731 * @pm8001_ha: our hba card information
Lee Jones6ad4a512020-07-21 17:41:25 +01001732 * @vec: interrupt number to enable
Sakthivel Kf5860992013-04-17 16:37:02 +05301733 */
1734static void
1735pm80xx_chip_interrupt_enable(struct pm8001_hba_info *pm8001_ha, u8 vec)
1736{
1737#ifdef PM8001_USE_MSIX
1738 u32 mask;
1739 mask = (u32)(1 << vec);
1740
1741 pm8001_cw32(pm8001_ha, 0, MSGU_ODMR_CLR, (u32)(mask & 0xFFFFFFFF));
1742 return;
1743#endif
1744 pm80xx_chip_intx_interrupt_enable(pm8001_ha);
1745
1746}
1747
1748/**
Lee Jones7cdaf122021-03-03 14:46:23 +00001749 * pm80xx_chip_interrupt_disable - disable PM8001 chip interrupt
Sakthivel Kf5860992013-04-17 16:37:02 +05301750 * @pm8001_ha: our hba card information
Lee Jones6ad4a512020-07-21 17:41:25 +01001751 * @vec: interrupt number to disable
Sakthivel Kf5860992013-04-17 16:37:02 +05301752 */
1753static void
1754pm80xx_chip_interrupt_disable(struct pm8001_hba_info *pm8001_ha, u8 vec)
1755{
1756#ifdef PM8001_USE_MSIX
1757 u32 mask;
1758 if (vec == 0xFF)
1759 mask = 0xFFFFFFFF;
1760 else
1761 mask = (u32)(1 << vec);
1762 pm8001_cw32(pm8001_ha, 0, MSGU_ODMR, (u32)(mask & 0xFFFFFFFF));
1763 return;
1764#endif
1765 pm80xx_chip_intx_interrupt_disable(pm8001_ha);
1766}
1767
Sakthivel Kc6b9ef52013-03-19 18:08:08 +05301768static void pm80xx_send_abort_all(struct pm8001_hba_info *pm8001_ha,
1769 struct pm8001_device *pm8001_ha_dev)
1770{
1771 int res;
1772 u32 ccb_tag;
1773 struct pm8001_ccb_info *ccb;
1774 struct sas_task *task = NULL;
1775 struct task_abort_req task_abort;
1776 struct inbound_queue_table *circularQ;
1777 u32 opc = OPC_INB_SATA_ABORT;
1778 int ret;
1779
1780 if (!pm8001_ha_dev) {
Joe Perches1b5d2792020-11-20 15:16:09 -08001781 pm8001_dbg(pm8001_ha, FAIL, "dev is null\n");
Sakthivel Kc6b9ef52013-03-19 18:08:08 +05301782 return;
1783 }
1784
1785 task = sas_alloc_slow_task(GFP_ATOMIC);
1786
1787 if (!task) {
Joe Perches1b5d2792020-11-20 15:16:09 -08001788 pm8001_dbg(pm8001_ha, FAIL, "cannot allocate task\n");
Sakthivel Kc6b9ef52013-03-19 18:08:08 +05301789 return;
1790 }
1791
1792 task->task_done = pm8001_task_done;
1793
1794 res = pm8001_tag_alloc(pm8001_ha, &ccb_tag);
Tomas Henzl5533abc2014-07-09 17:20:49 +05301795 if (res) {
1796 sas_free_task(task);
Sakthivel Kc6b9ef52013-03-19 18:08:08 +05301797 return;
Tomas Henzl5533abc2014-07-09 17:20:49 +05301798 }
Sakthivel Kc6b9ef52013-03-19 18:08:08 +05301799
1800 ccb = &pm8001_ha->ccb_info[ccb_tag];
1801 ccb->device = pm8001_ha_dev;
1802 ccb->ccb_tag = ccb_tag;
1803 ccb->task = task;
1804
1805 circularQ = &pm8001_ha->inbnd_q_tbl[0];
1806
1807 memset(&task_abort, 0, sizeof(task_abort));
1808 task_abort.abort_all = cpu_to_le32(1);
1809 task_abort.device_id = cpu_to_le32(pm8001_ha_dev->device_id);
1810 task_abort.tag = cpu_to_le32(ccb_tag);
1811
peter chang91a43fa2019-11-14 15:39:05 +05301812 ret = pm8001_mpi_build_cmd(pm8001_ha, circularQ, opc, &task_abort,
1813 sizeof(task_abort), 0);
Joe Perches1b5d2792020-11-20 15:16:09 -08001814 pm8001_dbg(pm8001_ha, FAIL, "Executing abort task end\n");
Tomas Henzl5533abc2014-07-09 17:20:49 +05301815 if (ret) {
1816 sas_free_task(task);
1817 pm8001_tag_free(pm8001_ha, ccb_tag);
1818 }
Sakthivel Kc6b9ef52013-03-19 18:08:08 +05301819}
1820
1821static void pm80xx_send_read_log(struct pm8001_hba_info *pm8001_ha,
1822 struct pm8001_device *pm8001_ha_dev)
1823{
1824 struct sata_start_req sata_cmd;
1825 int res;
1826 u32 ccb_tag;
1827 struct pm8001_ccb_info *ccb;
1828 struct sas_task *task = NULL;
1829 struct host_to_dev_fis fis;
1830 struct domain_device *dev;
1831 struct inbound_queue_table *circularQ;
1832 u32 opc = OPC_INB_SATA_HOST_OPSTART;
1833
1834 task = sas_alloc_slow_task(GFP_ATOMIC);
1835
1836 if (!task) {
Joe Perches1b5d2792020-11-20 15:16:09 -08001837 pm8001_dbg(pm8001_ha, FAIL, "cannot allocate task !!!\n");
Sakthivel Kc6b9ef52013-03-19 18:08:08 +05301838 return;
1839 }
1840 task->task_done = pm8001_task_done;
1841
1842 res = pm8001_tag_alloc(pm8001_ha, &ccb_tag);
1843 if (res) {
Tomas Henzl5533abc2014-07-09 17:20:49 +05301844 sas_free_task(task);
Joe Perches1b5d2792020-11-20 15:16:09 -08001845 pm8001_dbg(pm8001_ha, FAIL, "cannot allocate tag !!!\n");
Sakthivel Kc6b9ef52013-03-19 18:08:08 +05301846 return;
1847 }
1848
1849 /* allocate domain device by ourselves as libsas
1850 * is not going to provide any
1851 */
1852 dev = kzalloc(sizeof(struct domain_device), GFP_ATOMIC);
1853 if (!dev) {
Tomas Henzl5533abc2014-07-09 17:20:49 +05301854 sas_free_task(task);
1855 pm8001_tag_free(pm8001_ha, ccb_tag);
Joe Perches1b5d2792020-11-20 15:16:09 -08001856 pm8001_dbg(pm8001_ha, FAIL,
1857 "Domain device cannot be allocated\n");
Sakthivel Kc6b9ef52013-03-19 18:08:08 +05301858 return;
Sakthivel Kc6b9ef52013-03-19 18:08:08 +05301859 }
1860
Tomas Henzl5533abc2014-07-09 17:20:49 +05301861 task->dev = dev;
1862 task->dev->lldd_dev = pm8001_ha_dev;
1863
Sakthivel Kc6b9ef52013-03-19 18:08:08 +05301864 ccb = &pm8001_ha->ccb_info[ccb_tag];
1865 ccb->device = pm8001_ha_dev;
1866 ccb->ccb_tag = ccb_tag;
1867 ccb->task = task;
Viswas G0b6df112017-10-18 11:39:14 +05301868 ccb->n_elem = 0;
Sakthivel Kc6b9ef52013-03-19 18:08:08 +05301869 pm8001_ha_dev->id |= NCQ_READ_LOG_FLAG;
1870 pm8001_ha_dev->id |= NCQ_2ND_RLE_FLAG;
1871
1872 memset(&sata_cmd, 0, sizeof(sata_cmd));
1873 circularQ = &pm8001_ha->inbnd_q_tbl[0];
1874
1875 /* construct read log FIS */
1876 memset(&fis, 0, sizeof(struct host_to_dev_fis));
1877 fis.fis_type = 0x27;
1878 fis.flags = 0x80;
1879 fis.command = ATA_CMD_READ_LOG_EXT;
1880 fis.lbal = 0x10;
1881 fis.sector_count = 0x1;
1882
1883 sata_cmd.tag = cpu_to_le32(ccb_tag);
1884 sata_cmd.device_id = cpu_to_le32(pm8001_ha_dev->device_id);
1885 sata_cmd.ncqtag_atap_dir_m_dad |= ((0x1 << 7) | (0x5 << 9));
1886 memcpy(&sata_cmd.sata_fis, &fis, sizeof(struct host_to_dev_fis));
1887
peter chang91a43fa2019-11-14 15:39:05 +05301888 res = pm8001_mpi_build_cmd(pm8001_ha, circularQ, opc, &sata_cmd,
1889 sizeof(sata_cmd), 0);
Joe Perches1b5d2792020-11-20 15:16:09 -08001890 pm8001_dbg(pm8001_ha, FAIL, "Executing read log end\n");
Tomas Henzl5533abc2014-07-09 17:20:49 +05301891 if (res) {
1892 sas_free_task(task);
1893 pm8001_tag_free(pm8001_ha, ccb_tag);
1894 kfree(dev);
1895 }
Sakthivel Kc6b9ef52013-03-19 18:08:08 +05301896}
1897
Sakthivel Kf5860992013-04-17 16:37:02 +05301898/**
Randy Dunlapbb6beab2021-07-08 09:57:23 -07001899 * mpi_ssp_completion - process the event that FW response to the SSP request.
Sakthivel Kf5860992013-04-17 16:37:02 +05301900 * @pm8001_ha: our hba card information
1901 * @piomb: the message contents of this outbound message.
1902 *
1903 * When FW has completed a ssp request for example a IO request, after it has
Randy Dunlapbb6beab2021-07-08 09:57:23 -07001904 * filled the SG data with the data, it will trigger this event representing
1905 * that he has finished the job; please check the corresponding buffer.
Sakthivel Kf5860992013-04-17 16:37:02 +05301906 * So we will tell the caller who maybe waiting the result to tell upper layer
1907 * that the task has been finished.
1908 */
1909static void
Luo Jiaxing8a23dbc2021-04-08 20:56:32 +08001910mpi_ssp_completion(struct pm8001_hba_info *pm8001_ha, void *piomb)
Sakthivel Kf5860992013-04-17 16:37:02 +05301911{
1912 struct sas_task *t;
1913 struct pm8001_ccb_info *ccb;
1914 unsigned long flags;
1915 u32 status;
1916 u32 param;
1917 u32 tag;
1918 struct ssp_completion_resp *psspPayload;
1919 struct task_status_struct *ts;
1920 struct ssp_response_iu *iu;
1921 struct pm8001_device *pm8001_dev;
1922 psspPayload = (struct ssp_completion_resp *)(piomb + 4);
1923 status = le32_to_cpu(psspPayload->status);
1924 tag = le32_to_cpu(psspPayload->tag);
1925 ccb = &pm8001_ha->ccb_info[tag];
1926 if ((status == IO_ABORTED) && ccb->open_retry) {
1927 /* Being completed by another */
1928 ccb->open_retry = 0;
1929 return;
1930 }
1931 pm8001_dev = ccb->device;
1932 param = le32_to_cpu(psspPayload->param);
1933 t = ccb->task;
1934
1935 if (status && status != IO_UNDERFLOW)
Joe Perches1b5d2792020-11-20 15:16:09 -08001936 pm8001_dbg(pm8001_ha, FAIL, "sas IO status 0x%x\n", status);
Sakthivel Kf5860992013-04-17 16:37:02 +05301937 if (unlikely(!t || !t->lldd_task || !t->dev))
1938 return;
1939 ts = &t->task_status;
peter chang73706722019-11-14 15:39:02 +05301940
Joe Perches1b5d2792020-11-20 15:16:09 -08001941 pm8001_dbg(pm8001_ha, DEV,
1942 "tag::0x%x, status::0x%x task::0x%p\n", tag, status, t);
peter chang73706722019-11-14 15:39:02 +05301943
Anand Kumar Santhanamcb269c22013-09-17 16:47:21 +05301944 /* Print sas address of IO failed device */
1945 if ((status != IO_SUCCESS) && (status != IO_OVERFLOW) &&
1946 (status != IO_UNDERFLOW))
Joe Perches1b5d2792020-11-20 15:16:09 -08001947 pm8001_dbg(pm8001_ha, FAIL, "SAS Address of IO Failure Drive:%016llx\n",
1948 SAS_ADDR(t->dev->sas_addr));
Anand Kumar Santhanamcb269c22013-09-17 16:47:21 +05301949
Sakthivel Kf5860992013-04-17 16:37:02 +05301950 switch (status) {
1951 case IO_SUCCESS:
Joe Perches1b5d2792020-11-20 15:16:09 -08001952 pm8001_dbg(pm8001_ha, IO, "IO_SUCCESS ,param = 0x%x\n",
1953 param);
Sakthivel Kf5860992013-04-17 16:37:02 +05301954 if (param == 0) {
1955 ts->resp = SAS_TASK_COMPLETE;
Bart Van Assched377f412021-05-23 19:54:55 -07001956 ts->stat = SAS_SAM_STAT_GOOD;
Sakthivel Kf5860992013-04-17 16:37:02 +05301957 } else {
1958 ts->resp = SAS_TASK_COMPLETE;
1959 ts->stat = SAS_PROTO_RESPONSE;
1960 ts->residual = param;
1961 iu = &psspPayload->ssp_resp_iu;
1962 sas_ssp_task_response(pm8001_ha->dev, t, iu);
1963 }
1964 if (pm8001_dev)
Viswas G4a2efd42020-11-02 22:25:26 +05301965 atomic_dec(&pm8001_dev->running_req);
Sakthivel Kf5860992013-04-17 16:37:02 +05301966 break;
1967 case IO_ABORTED:
Joe Perches1b5d2792020-11-20 15:16:09 -08001968 pm8001_dbg(pm8001_ha, IO, "IO_ABORTED IOMB Tag\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05301969 ts->resp = SAS_TASK_COMPLETE;
1970 ts->stat = SAS_ABORTED_TASK;
Viswas G4a2efd42020-11-02 22:25:26 +05301971 if (pm8001_dev)
1972 atomic_dec(&pm8001_dev->running_req);
Sakthivel Kf5860992013-04-17 16:37:02 +05301973 break;
1974 case IO_UNDERFLOW:
1975 /* SSP Completion with error */
Joe Perches1b5d2792020-11-20 15:16:09 -08001976 pm8001_dbg(pm8001_ha, IO, "IO_UNDERFLOW ,param = 0x%x\n",
1977 param);
Sakthivel Kf5860992013-04-17 16:37:02 +05301978 ts->resp = SAS_TASK_COMPLETE;
1979 ts->stat = SAS_DATA_UNDERRUN;
1980 ts->residual = param;
1981 if (pm8001_dev)
Viswas G4a2efd42020-11-02 22:25:26 +05301982 atomic_dec(&pm8001_dev->running_req);
Sakthivel Kf5860992013-04-17 16:37:02 +05301983 break;
1984 case IO_NO_DEVICE:
Joe Perches1b5d2792020-11-20 15:16:09 -08001985 pm8001_dbg(pm8001_ha, IO, "IO_NO_DEVICE\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05301986 ts->resp = SAS_TASK_UNDELIVERED;
1987 ts->stat = SAS_PHY_DOWN;
Viswas G4a2efd42020-11-02 22:25:26 +05301988 if (pm8001_dev)
1989 atomic_dec(&pm8001_dev->running_req);
Sakthivel Kf5860992013-04-17 16:37:02 +05301990 break;
1991 case IO_XFER_ERROR_BREAK:
Joe Perches1b5d2792020-11-20 15:16:09 -08001992 pm8001_dbg(pm8001_ha, IO, "IO_XFER_ERROR_BREAK\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05301993 ts->resp = SAS_TASK_COMPLETE;
1994 ts->stat = SAS_OPEN_REJECT;
1995 /* Force the midlayer to retry */
1996 ts->open_rej_reason = SAS_OREJ_RSVD_RETRY;
Viswas G4a2efd42020-11-02 22:25:26 +05301997 if (pm8001_dev)
1998 atomic_dec(&pm8001_dev->running_req);
Sakthivel Kf5860992013-04-17 16:37:02 +05301999 break;
2000 case IO_XFER_ERROR_PHY_NOT_READY:
Joe Perches1b5d2792020-11-20 15:16:09 -08002001 pm8001_dbg(pm8001_ha, IO, "IO_XFER_ERROR_PHY_NOT_READY\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302002 ts->resp = SAS_TASK_COMPLETE;
2003 ts->stat = SAS_OPEN_REJECT;
2004 ts->open_rej_reason = SAS_OREJ_RSVD_RETRY;
Viswas G4a2efd42020-11-02 22:25:26 +05302005 if (pm8001_dev)
2006 atomic_dec(&pm8001_dev->running_req);
Sakthivel Kf5860992013-04-17 16:37:02 +05302007 break;
Viswas G27ecfa52015-08-11 15:06:31 +05302008 case IO_XFER_ERROR_INVALID_SSP_RSP_FRAME:
Joe Perches1b5d2792020-11-20 15:16:09 -08002009 pm8001_dbg(pm8001_ha, IO,
2010 "IO_XFER_ERROR_INVALID_SSP_RSP_FRAME\n");
Viswas G27ecfa52015-08-11 15:06:31 +05302011 ts->resp = SAS_TASK_COMPLETE;
2012 ts->stat = SAS_OPEN_REJECT;
2013 ts->open_rej_reason = SAS_OREJ_RSVD_RETRY;
Viswas G4a2efd42020-11-02 22:25:26 +05302014 if (pm8001_dev)
2015 atomic_dec(&pm8001_dev->running_req);
Viswas G27ecfa52015-08-11 15:06:31 +05302016 break;
Sakthivel Kf5860992013-04-17 16:37:02 +05302017 case IO_OPEN_CNX_ERROR_PROTOCOL_NOT_SUPPORTED:
Joe Perches1b5d2792020-11-20 15:16:09 -08002018 pm8001_dbg(pm8001_ha, IO,
2019 "IO_OPEN_CNX_ERROR_PROTOCOL_NOT_SUPPORTED\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302020 ts->resp = SAS_TASK_COMPLETE;
2021 ts->stat = SAS_OPEN_REJECT;
2022 ts->open_rej_reason = SAS_OREJ_EPROTO;
Viswas G4a2efd42020-11-02 22:25:26 +05302023 if (pm8001_dev)
2024 atomic_dec(&pm8001_dev->running_req);
Sakthivel Kf5860992013-04-17 16:37:02 +05302025 break;
2026 case IO_OPEN_CNX_ERROR_ZONE_VIOLATION:
Joe Perches1b5d2792020-11-20 15:16:09 -08002027 pm8001_dbg(pm8001_ha, IO,
2028 "IO_OPEN_CNX_ERROR_ZONE_VIOLATION\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302029 ts->resp = SAS_TASK_COMPLETE;
2030 ts->stat = SAS_OPEN_REJECT;
2031 ts->open_rej_reason = SAS_OREJ_UNKNOWN;
Viswas G4a2efd42020-11-02 22:25:26 +05302032 if (pm8001_dev)
2033 atomic_dec(&pm8001_dev->running_req);
Sakthivel Kf5860992013-04-17 16:37:02 +05302034 break;
2035 case IO_OPEN_CNX_ERROR_BREAK:
Joe Perches1b5d2792020-11-20 15:16:09 -08002036 pm8001_dbg(pm8001_ha, IO, "IO_OPEN_CNX_ERROR_BREAK\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302037 ts->resp = SAS_TASK_COMPLETE;
2038 ts->stat = SAS_OPEN_REJECT;
2039 ts->open_rej_reason = SAS_OREJ_RSVD_RETRY;
Viswas G4a2efd42020-11-02 22:25:26 +05302040 if (pm8001_dev)
2041 atomic_dec(&pm8001_dev->running_req);
Sakthivel Kf5860992013-04-17 16:37:02 +05302042 break;
2043 case IO_OPEN_CNX_ERROR_IT_NEXUS_LOSS:
Sakthivel Ka6cb3d02013-03-19 18:08:40 +05302044 case IO_XFER_OPEN_RETRY_BACKOFF_THRESHOLD_REACHED:
2045 case IO_OPEN_CNX_ERROR_IT_NEXUS_LOSS_OPEN_TMO:
2046 case IO_OPEN_CNX_ERROR_IT_NEXUS_LOSS_NO_DEST:
2047 case IO_OPEN_CNX_ERROR_IT_NEXUS_LOSS_OPEN_COLLIDE:
2048 case IO_OPEN_CNX_ERROR_IT_NEXUS_LOSS_PATHWAY_BLOCKED:
Joe Perches1b5d2792020-11-20 15:16:09 -08002049 pm8001_dbg(pm8001_ha, IO, "IO_OPEN_CNX_ERROR_IT_NEXUS_LOSS\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302050 ts->resp = SAS_TASK_COMPLETE;
2051 ts->stat = SAS_OPEN_REJECT;
2052 ts->open_rej_reason = SAS_OREJ_UNKNOWN;
2053 if (!t->uldd_task)
2054 pm8001_handle_event(pm8001_ha,
2055 pm8001_dev,
2056 IO_OPEN_CNX_ERROR_IT_NEXUS_LOSS);
2057 break;
2058 case IO_OPEN_CNX_ERROR_BAD_DESTINATION:
Joe Perches1b5d2792020-11-20 15:16:09 -08002059 pm8001_dbg(pm8001_ha, IO,
2060 "IO_OPEN_CNX_ERROR_BAD_DESTINATION\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302061 ts->resp = SAS_TASK_COMPLETE;
2062 ts->stat = SAS_OPEN_REJECT;
2063 ts->open_rej_reason = SAS_OREJ_BAD_DEST;
Viswas G4a2efd42020-11-02 22:25:26 +05302064 if (pm8001_dev)
2065 atomic_dec(&pm8001_dev->running_req);
Sakthivel Kf5860992013-04-17 16:37:02 +05302066 break;
2067 case IO_OPEN_CNX_ERROR_CONNECTION_RATE_NOT_SUPPORTED:
Joe Perches1b5d2792020-11-20 15:16:09 -08002068 pm8001_dbg(pm8001_ha, IO,
2069 "IO_OPEN_CNX_ERROR_CONNECTION_RATE_NOT_SUPPORTED\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302070 ts->resp = SAS_TASK_COMPLETE;
2071 ts->stat = SAS_OPEN_REJECT;
2072 ts->open_rej_reason = SAS_OREJ_CONN_RATE;
Viswas G4a2efd42020-11-02 22:25:26 +05302073 if (pm8001_dev)
2074 atomic_dec(&pm8001_dev->running_req);
Sakthivel Kf5860992013-04-17 16:37:02 +05302075 break;
2076 case IO_OPEN_CNX_ERROR_WRONG_DESTINATION:
Joe Perches1b5d2792020-11-20 15:16:09 -08002077 pm8001_dbg(pm8001_ha, IO,
2078 "IO_OPEN_CNX_ERROR_WRONG_DESTINATION\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302079 ts->resp = SAS_TASK_UNDELIVERED;
2080 ts->stat = SAS_OPEN_REJECT;
2081 ts->open_rej_reason = SAS_OREJ_WRONG_DEST;
Viswas G4a2efd42020-11-02 22:25:26 +05302082 if (pm8001_dev)
2083 atomic_dec(&pm8001_dev->running_req);
Sakthivel Kf5860992013-04-17 16:37:02 +05302084 break;
2085 case IO_XFER_ERROR_NAK_RECEIVED:
Joe Perches1b5d2792020-11-20 15:16:09 -08002086 pm8001_dbg(pm8001_ha, IO, "IO_XFER_ERROR_NAK_RECEIVED\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302087 ts->resp = SAS_TASK_COMPLETE;
2088 ts->stat = SAS_OPEN_REJECT;
2089 ts->open_rej_reason = SAS_OREJ_RSVD_RETRY;
Viswas G4a2efd42020-11-02 22:25:26 +05302090 if (pm8001_dev)
2091 atomic_dec(&pm8001_dev->running_req);
Sakthivel Kf5860992013-04-17 16:37:02 +05302092 break;
2093 case IO_XFER_ERROR_ACK_NAK_TIMEOUT:
Joe Perches1b5d2792020-11-20 15:16:09 -08002094 pm8001_dbg(pm8001_ha, IO, "IO_XFER_ERROR_ACK_NAK_TIMEOUT\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302095 ts->resp = SAS_TASK_COMPLETE;
2096 ts->stat = SAS_NAK_R_ERR;
Viswas G4a2efd42020-11-02 22:25:26 +05302097 if (pm8001_dev)
2098 atomic_dec(&pm8001_dev->running_req);
Sakthivel Kf5860992013-04-17 16:37:02 +05302099 break;
2100 case IO_XFER_ERROR_DMA:
Joe Perches1b5d2792020-11-20 15:16:09 -08002101 pm8001_dbg(pm8001_ha, IO, "IO_XFER_ERROR_DMA\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302102 ts->resp = SAS_TASK_COMPLETE;
2103 ts->stat = SAS_OPEN_REJECT;
Viswas G4a2efd42020-11-02 22:25:26 +05302104 if (pm8001_dev)
2105 atomic_dec(&pm8001_dev->running_req);
Sakthivel Kf5860992013-04-17 16:37:02 +05302106 break;
2107 case IO_XFER_OPEN_RETRY_TIMEOUT:
Joe Perches1b5d2792020-11-20 15:16:09 -08002108 pm8001_dbg(pm8001_ha, IO, "IO_XFER_OPEN_RETRY_TIMEOUT\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302109 ts->resp = SAS_TASK_COMPLETE;
2110 ts->stat = SAS_OPEN_REJECT;
2111 ts->open_rej_reason = SAS_OREJ_RSVD_RETRY;
Viswas G4a2efd42020-11-02 22:25:26 +05302112 if (pm8001_dev)
2113 atomic_dec(&pm8001_dev->running_req);
Sakthivel Kf5860992013-04-17 16:37:02 +05302114 break;
2115 case IO_XFER_ERROR_OFFSET_MISMATCH:
Joe Perches1b5d2792020-11-20 15:16:09 -08002116 pm8001_dbg(pm8001_ha, IO, "IO_XFER_ERROR_OFFSET_MISMATCH\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302117 ts->resp = SAS_TASK_COMPLETE;
2118 ts->stat = SAS_OPEN_REJECT;
Viswas G4a2efd42020-11-02 22:25:26 +05302119 if (pm8001_dev)
2120 atomic_dec(&pm8001_dev->running_req);
Sakthivel Kf5860992013-04-17 16:37:02 +05302121 break;
2122 case IO_PORT_IN_RESET:
Joe Perches1b5d2792020-11-20 15:16:09 -08002123 pm8001_dbg(pm8001_ha, IO, "IO_PORT_IN_RESET\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302124 ts->resp = SAS_TASK_COMPLETE;
2125 ts->stat = SAS_OPEN_REJECT;
Viswas G4a2efd42020-11-02 22:25:26 +05302126 if (pm8001_dev)
2127 atomic_dec(&pm8001_dev->running_req);
Sakthivel Kf5860992013-04-17 16:37:02 +05302128 break;
2129 case IO_DS_NON_OPERATIONAL:
Joe Perches1b5d2792020-11-20 15:16:09 -08002130 pm8001_dbg(pm8001_ha, IO, "IO_DS_NON_OPERATIONAL\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302131 ts->resp = SAS_TASK_COMPLETE;
2132 ts->stat = SAS_OPEN_REJECT;
2133 if (!t->uldd_task)
2134 pm8001_handle_event(pm8001_ha,
2135 pm8001_dev,
2136 IO_DS_NON_OPERATIONAL);
2137 break;
2138 case IO_DS_IN_RECOVERY:
Joe Perches1b5d2792020-11-20 15:16:09 -08002139 pm8001_dbg(pm8001_ha, IO, "IO_DS_IN_RECOVERY\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302140 ts->resp = SAS_TASK_COMPLETE;
2141 ts->stat = SAS_OPEN_REJECT;
Viswas G4a2efd42020-11-02 22:25:26 +05302142 if (pm8001_dev)
2143 atomic_dec(&pm8001_dev->running_req);
Sakthivel Kf5860992013-04-17 16:37:02 +05302144 break;
2145 case IO_TM_TAG_NOT_FOUND:
Joe Perches1b5d2792020-11-20 15:16:09 -08002146 pm8001_dbg(pm8001_ha, IO, "IO_TM_TAG_NOT_FOUND\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302147 ts->resp = SAS_TASK_COMPLETE;
2148 ts->stat = SAS_OPEN_REJECT;
Viswas G4a2efd42020-11-02 22:25:26 +05302149 if (pm8001_dev)
2150 atomic_dec(&pm8001_dev->running_req);
Sakthivel Kf5860992013-04-17 16:37:02 +05302151 break;
2152 case IO_SSP_EXT_IU_ZERO_LEN_ERROR:
Joe Perches1b5d2792020-11-20 15:16:09 -08002153 pm8001_dbg(pm8001_ha, IO, "IO_SSP_EXT_IU_ZERO_LEN_ERROR\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302154 ts->resp = SAS_TASK_COMPLETE;
2155 ts->stat = SAS_OPEN_REJECT;
Viswas G4a2efd42020-11-02 22:25:26 +05302156 if (pm8001_dev)
2157 atomic_dec(&pm8001_dev->running_req);
Sakthivel Kf5860992013-04-17 16:37:02 +05302158 break;
2159 case IO_OPEN_CNX_ERROR_HW_RESOURCE_BUSY:
Joe Perches1b5d2792020-11-20 15:16:09 -08002160 pm8001_dbg(pm8001_ha, IO,
2161 "IO_OPEN_CNX_ERROR_HW_RESOURCE_BUSY\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302162 ts->resp = SAS_TASK_COMPLETE;
2163 ts->stat = SAS_OPEN_REJECT;
2164 ts->open_rej_reason = SAS_OREJ_RSVD_RETRY;
Viswas G4a2efd42020-11-02 22:25:26 +05302165 if (pm8001_dev)
2166 atomic_dec(&pm8001_dev->running_req);
Sakthivel Kf5860992013-04-17 16:37:02 +05302167 break;
2168 default:
Joe Perches1b5d2792020-11-20 15:16:09 -08002169 pm8001_dbg(pm8001_ha, DEVIO, "Unknown status 0x%x\n", status);
Sakthivel Kf5860992013-04-17 16:37:02 +05302170 /* not allowed case. Therefore, return failed status */
2171 ts->resp = SAS_TASK_COMPLETE;
2172 ts->stat = SAS_OPEN_REJECT;
Viswas G4a2efd42020-11-02 22:25:26 +05302173 if (pm8001_dev)
2174 atomic_dec(&pm8001_dev->running_req);
Sakthivel Kf5860992013-04-17 16:37:02 +05302175 break;
2176 }
Joe Perches1b5d2792020-11-20 15:16:09 -08002177 pm8001_dbg(pm8001_ha, IO, "scsi_status = 0x%x\n ",
2178 psspPayload->ssp_resp_iu.status);
Sakthivel Kf5860992013-04-17 16:37:02 +05302179 spin_lock_irqsave(&t->task_state_lock, flags);
2180 t->task_state_flags &= ~SAS_TASK_STATE_PENDING;
2181 t->task_state_flags &= ~SAS_TASK_AT_INITIATOR;
2182 t->task_state_flags |= SAS_TASK_STATE_DONE;
2183 if (unlikely((t->task_state_flags & SAS_TASK_STATE_ABORTED))) {
2184 spin_unlock_irqrestore(&t->task_state_lock, flags);
Joe Perches1b5d2792020-11-20 15:16:09 -08002185 pm8001_dbg(pm8001_ha, FAIL,
2186 "task 0x%p done with io_status 0x%x resp 0x%x stat 0x%x but aborted by upper layer!\n",
2187 t, status, ts->resp, ts->stat);
Viswas G869ddbd2017-10-18 11:39:13 +05302188 if (t->slow_task)
2189 complete(&t->slow_task->completion);
Sakthivel Kf5860992013-04-17 16:37:02 +05302190 pm8001_ccb_task_free(pm8001_ha, t, ccb, tag);
2191 } else {
2192 spin_unlock_irqrestore(&t->task_state_lock, flags);
2193 pm8001_ccb_task_free(pm8001_ha, t, ccb, tag);
2194 mb();/* in order to force CPU ordering */
2195 t->task_done(t);
2196 }
2197}
2198
2199/*See the comments for mpi_ssp_completion */
Luo Jiaxing8a23dbc2021-04-08 20:56:32 +08002200static void mpi_ssp_event(struct pm8001_hba_info *pm8001_ha, void *piomb)
Sakthivel Kf5860992013-04-17 16:37:02 +05302201{
2202 struct sas_task *t;
2203 unsigned long flags;
2204 struct task_status_struct *ts;
2205 struct pm8001_ccb_info *ccb;
2206 struct pm8001_device *pm8001_dev;
2207 struct ssp_event_resp *psspPayload =
2208 (struct ssp_event_resp *)(piomb + 4);
2209 u32 event = le32_to_cpu(psspPayload->event);
2210 u32 tag = le32_to_cpu(psspPayload->tag);
2211 u32 port_id = le32_to_cpu(psspPayload->port_id);
2212
2213 ccb = &pm8001_ha->ccb_info[tag];
2214 t = ccb->task;
2215 pm8001_dev = ccb->device;
2216 if (event)
Joe Perches1b5d2792020-11-20 15:16:09 -08002217 pm8001_dbg(pm8001_ha, FAIL, "sas IO status 0x%x\n", event);
Sakthivel Kf5860992013-04-17 16:37:02 +05302218 if (unlikely(!t || !t->lldd_task || !t->dev))
2219 return;
2220 ts = &t->task_status;
Joe Perches1b5d2792020-11-20 15:16:09 -08002221 pm8001_dbg(pm8001_ha, IOERR, "port_id:0x%x, tag:0x%x, event:0x%x\n",
2222 port_id, tag, event);
Sakthivel Kf5860992013-04-17 16:37:02 +05302223 switch (event) {
2224 case IO_OVERFLOW:
Joe Perches1b5d2792020-11-20 15:16:09 -08002225 pm8001_dbg(pm8001_ha, IO, "IO_UNDERFLOW\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302226 ts->resp = SAS_TASK_COMPLETE;
2227 ts->stat = SAS_DATA_OVERRUN;
2228 ts->residual = 0;
2229 if (pm8001_dev)
Viswas G4a2efd42020-11-02 22:25:26 +05302230 atomic_dec(&pm8001_dev->running_req);
Sakthivel Kf5860992013-04-17 16:37:02 +05302231 break;
2232 case IO_XFER_ERROR_BREAK:
Joe Perches1b5d2792020-11-20 15:16:09 -08002233 pm8001_dbg(pm8001_ha, IO, "IO_XFER_ERROR_BREAK\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302234 pm8001_handle_event(pm8001_ha, t, IO_XFER_ERROR_BREAK);
2235 return;
2236 case IO_XFER_ERROR_PHY_NOT_READY:
Joe Perches1b5d2792020-11-20 15:16:09 -08002237 pm8001_dbg(pm8001_ha, IO, "IO_XFER_ERROR_PHY_NOT_READY\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302238 ts->resp = SAS_TASK_COMPLETE;
2239 ts->stat = SAS_OPEN_REJECT;
2240 ts->open_rej_reason = SAS_OREJ_RSVD_RETRY;
2241 break;
2242 case IO_OPEN_CNX_ERROR_PROTOCOL_NOT_SUPPORTED:
Joe Perches1b5d2792020-11-20 15:16:09 -08002243 pm8001_dbg(pm8001_ha, IO,
2244 "IO_OPEN_CNX_ERROR_PROTOCOL_NOT_SUPPORTED\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302245 ts->resp = SAS_TASK_COMPLETE;
2246 ts->stat = SAS_OPEN_REJECT;
2247 ts->open_rej_reason = SAS_OREJ_EPROTO;
2248 break;
2249 case IO_OPEN_CNX_ERROR_ZONE_VIOLATION:
Joe Perches1b5d2792020-11-20 15:16:09 -08002250 pm8001_dbg(pm8001_ha, IO,
2251 "IO_OPEN_CNX_ERROR_ZONE_VIOLATION\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302252 ts->resp = SAS_TASK_COMPLETE;
2253 ts->stat = SAS_OPEN_REJECT;
2254 ts->open_rej_reason = SAS_OREJ_UNKNOWN;
2255 break;
2256 case IO_OPEN_CNX_ERROR_BREAK:
Joe Perches1b5d2792020-11-20 15:16:09 -08002257 pm8001_dbg(pm8001_ha, IO, "IO_OPEN_CNX_ERROR_BREAK\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302258 ts->resp = SAS_TASK_COMPLETE;
2259 ts->stat = SAS_OPEN_REJECT;
2260 ts->open_rej_reason = SAS_OREJ_RSVD_RETRY;
2261 break;
2262 case IO_OPEN_CNX_ERROR_IT_NEXUS_LOSS:
Sakthivel Ka6cb3d02013-03-19 18:08:40 +05302263 case IO_XFER_OPEN_RETRY_BACKOFF_THRESHOLD_REACHED:
2264 case IO_OPEN_CNX_ERROR_IT_NEXUS_LOSS_OPEN_TMO:
2265 case IO_OPEN_CNX_ERROR_IT_NEXUS_LOSS_NO_DEST:
2266 case IO_OPEN_CNX_ERROR_IT_NEXUS_LOSS_OPEN_COLLIDE:
2267 case IO_OPEN_CNX_ERROR_IT_NEXUS_LOSS_PATHWAY_BLOCKED:
Joe Perches1b5d2792020-11-20 15:16:09 -08002268 pm8001_dbg(pm8001_ha, IO, "IO_OPEN_CNX_ERROR_IT_NEXUS_LOSS\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302269 ts->resp = SAS_TASK_COMPLETE;
2270 ts->stat = SAS_OPEN_REJECT;
2271 ts->open_rej_reason = SAS_OREJ_UNKNOWN;
2272 if (!t->uldd_task)
2273 pm8001_handle_event(pm8001_ha,
2274 pm8001_dev,
2275 IO_OPEN_CNX_ERROR_IT_NEXUS_LOSS);
2276 break;
2277 case IO_OPEN_CNX_ERROR_BAD_DESTINATION:
Joe Perches1b5d2792020-11-20 15:16:09 -08002278 pm8001_dbg(pm8001_ha, IO,
2279 "IO_OPEN_CNX_ERROR_BAD_DESTINATION\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302280 ts->resp = SAS_TASK_COMPLETE;
2281 ts->stat = SAS_OPEN_REJECT;
2282 ts->open_rej_reason = SAS_OREJ_BAD_DEST;
2283 break;
2284 case IO_OPEN_CNX_ERROR_CONNECTION_RATE_NOT_SUPPORTED:
Joe Perches1b5d2792020-11-20 15:16:09 -08002285 pm8001_dbg(pm8001_ha, IO,
2286 "IO_OPEN_CNX_ERROR_CONNECTION_RATE_NOT_SUPPORTED\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302287 ts->resp = SAS_TASK_COMPLETE;
2288 ts->stat = SAS_OPEN_REJECT;
2289 ts->open_rej_reason = SAS_OREJ_CONN_RATE;
2290 break;
2291 case IO_OPEN_CNX_ERROR_WRONG_DESTINATION:
Joe Perches1b5d2792020-11-20 15:16:09 -08002292 pm8001_dbg(pm8001_ha, IO,
2293 "IO_OPEN_CNX_ERROR_WRONG_DESTINATION\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302294 ts->resp = SAS_TASK_COMPLETE;
2295 ts->stat = SAS_OPEN_REJECT;
2296 ts->open_rej_reason = SAS_OREJ_WRONG_DEST;
2297 break;
2298 case IO_XFER_ERROR_NAK_RECEIVED:
Joe Perches1b5d2792020-11-20 15:16:09 -08002299 pm8001_dbg(pm8001_ha, IO, "IO_XFER_ERROR_NAK_RECEIVED\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302300 ts->resp = SAS_TASK_COMPLETE;
2301 ts->stat = SAS_OPEN_REJECT;
2302 ts->open_rej_reason = SAS_OREJ_RSVD_RETRY;
2303 break;
2304 case IO_XFER_ERROR_ACK_NAK_TIMEOUT:
Joe Perches1b5d2792020-11-20 15:16:09 -08002305 pm8001_dbg(pm8001_ha, IO, "IO_XFER_ERROR_ACK_NAK_TIMEOUT\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302306 ts->resp = SAS_TASK_COMPLETE;
2307 ts->stat = SAS_NAK_R_ERR;
2308 break;
2309 case IO_XFER_OPEN_RETRY_TIMEOUT:
Joe Perches1b5d2792020-11-20 15:16:09 -08002310 pm8001_dbg(pm8001_ha, IO, "IO_XFER_OPEN_RETRY_TIMEOUT\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302311 pm8001_handle_event(pm8001_ha, t, IO_XFER_OPEN_RETRY_TIMEOUT);
2312 return;
2313 case IO_XFER_ERROR_UNEXPECTED_PHASE:
Joe Perches1b5d2792020-11-20 15:16:09 -08002314 pm8001_dbg(pm8001_ha, IO, "IO_XFER_ERROR_UNEXPECTED_PHASE\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302315 ts->resp = SAS_TASK_COMPLETE;
2316 ts->stat = SAS_DATA_OVERRUN;
2317 break;
2318 case IO_XFER_ERROR_XFER_RDY_OVERRUN:
Joe Perches1b5d2792020-11-20 15:16:09 -08002319 pm8001_dbg(pm8001_ha, IO, "IO_XFER_ERROR_XFER_RDY_OVERRUN\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302320 ts->resp = SAS_TASK_COMPLETE;
2321 ts->stat = SAS_DATA_OVERRUN;
2322 break;
2323 case IO_XFER_ERROR_XFER_RDY_NOT_EXPECTED:
Joe Perches1b5d2792020-11-20 15:16:09 -08002324 pm8001_dbg(pm8001_ha, IO,
2325 "IO_XFER_ERROR_XFER_RDY_NOT_EXPECTED\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302326 ts->resp = SAS_TASK_COMPLETE;
2327 ts->stat = SAS_DATA_OVERRUN;
2328 break;
2329 case IO_XFER_ERROR_CMD_ISSUE_ACK_NAK_TIMEOUT:
Joe Perches1b5d2792020-11-20 15:16:09 -08002330 pm8001_dbg(pm8001_ha, IO,
2331 "IO_XFER_ERROR_CMD_ISSUE_ACK_NAK_TIMEOUT\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302332 ts->resp = SAS_TASK_COMPLETE;
2333 ts->stat = SAS_DATA_OVERRUN;
2334 break;
2335 case IO_XFER_ERROR_OFFSET_MISMATCH:
Joe Perches1b5d2792020-11-20 15:16:09 -08002336 pm8001_dbg(pm8001_ha, IO, "IO_XFER_ERROR_OFFSET_MISMATCH\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302337 ts->resp = SAS_TASK_COMPLETE;
2338 ts->stat = SAS_DATA_OVERRUN;
2339 break;
2340 case IO_XFER_ERROR_XFER_ZERO_DATA_LEN:
Joe Perches1b5d2792020-11-20 15:16:09 -08002341 pm8001_dbg(pm8001_ha, IO,
2342 "IO_XFER_ERROR_XFER_ZERO_DATA_LEN\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302343 ts->resp = SAS_TASK_COMPLETE;
2344 ts->stat = SAS_DATA_OVERRUN;
2345 break;
Sakthivel Ka6cb3d02013-03-19 18:08:40 +05302346 case IO_XFER_ERROR_INTERNAL_CRC_ERROR:
Joe Perches1b5d2792020-11-20 15:16:09 -08002347 pm8001_dbg(pm8001_ha, IOERR,
2348 "IO_XFR_ERROR_INTERNAL_CRC_ERROR\n");
Sakthivel Ka6cb3d02013-03-19 18:08:40 +05302349 /* TBC: used default set values */
2350 ts->resp = SAS_TASK_COMPLETE;
2351 ts->stat = SAS_DATA_OVERRUN;
2352 break;
Sakthivel Kf5860992013-04-17 16:37:02 +05302353 case IO_XFER_CMD_FRAME_ISSUED:
Joe Perches1b5d2792020-11-20 15:16:09 -08002354 pm8001_dbg(pm8001_ha, IO, "IO_XFER_CMD_FRAME_ISSUED\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302355 return;
2356 default:
Joe Perches1b5d2792020-11-20 15:16:09 -08002357 pm8001_dbg(pm8001_ha, DEVIO, "Unknown status 0x%x\n", event);
Sakthivel Kf5860992013-04-17 16:37:02 +05302358 /* not allowed case. Therefore, return failed status */
2359 ts->resp = SAS_TASK_COMPLETE;
2360 ts->stat = SAS_DATA_OVERRUN;
2361 break;
2362 }
2363 spin_lock_irqsave(&t->task_state_lock, flags);
2364 t->task_state_flags &= ~SAS_TASK_STATE_PENDING;
2365 t->task_state_flags &= ~SAS_TASK_AT_INITIATOR;
2366 t->task_state_flags |= SAS_TASK_STATE_DONE;
2367 if (unlikely((t->task_state_flags & SAS_TASK_STATE_ABORTED))) {
2368 spin_unlock_irqrestore(&t->task_state_lock, flags);
Joe Perches1b5d2792020-11-20 15:16:09 -08002369 pm8001_dbg(pm8001_ha, FAIL,
2370 "task 0x%p done with event 0x%x resp 0x%x stat 0x%x but aborted by upper layer!\n",
2371 t, event, ts->resp, ts->stat);
Sakthivel Kf5860992013-04-17 16:37:02 +05302372 pm8001_ccb_task_free(pm8001_ha, t, ccb, tag);
2373 } else {
2374 spin_unlock_irqrestore(&t->task_state_lock, flags);
2375 pm8001_ccb_task_free(pm8001_ha, t, ccb, tag);
2376 mb();/* in order to force CPU ordering */
2377 t->task_done(t);
2378 }
2379}
2380
2381/*See the comments for mpi_ssp_completion */
2382static void
Ajish Koshyb27a4052021-09-06 22:34:02 +05302383mpi_sata_completion(struct pm8001_hba_info *pm8001_ha,
2384 struct outbound_queue_table *circularQ, void *piomb)
Sakthivel Kf5860992013-04-17 16:37:02 +05302385{
2386 struct sas_task *t;
2387 struct pm8001_ccb_info *ccb;
2388 u32 param;
2389 u32 status;
2390 u32 tag;
Anand Kumar Santhanamcb269c22013-09-17 16:47:21 +05302391 int i, j;
2392 u8 sata_addr_low[4];
2393 u32 temp_sata_addr_low, temp_sata_addr_hi;
2394 u8 sata_addr_hi[4];
Sakthivel Kf5860992013-04-17 16:37:02 +05302395 struct sata_completion_resp *psataPayload;
2396 struct task_status_struct *ts;
2397 struct ata_task_resp *resp ;
2398 u32 *sata_resp;
2399 struct pm8001_device *pm8001_dev;
Sakthivel Kc6b9ef52013-03-19 18:08:08 +05302400 unsigned long flags;
Sakthivel Kf5860992013-04-17 16:37:02 +05302401
2402 psataPayload = (struct sata_completion_resp *)(piomb + 4);
2403 status = le32_to_cpu(psataPayload->status);
Igor Pylypiv60de1a62021-11-01 16:28:23 -07002404 param = le32_to_cpu(psataPayload->param);
Sakthivel Kf5860992013-04-17 16:37:02 +05302405 tag = le32_to_cpu(psataPayload->tag);
2406
Sakthivel Kc6b9ef52013-03-19 18:08:08 +05302407 if (!tag) {
Joe Perches1b5d2792020-11-20 15:16:09 -08002408 pm8001_dbg(pm8001_ha, FAIL, "tag null\n");
Sakthivel Kc6b9ef52013-03-19 18:08:08 +05302409 return;
2410 }
Igor Pylypiv60de1a62021-11-01 16:28:23 -07002411
Sakthivel Kf5860992013-04-17 16:37:02 +05302412 ccb = &pm8001_ha->ccb_info[tag];
Igor Pylypiv60de1a62021-11-01 16:28:23 -07002413 t = ccb->task;
2414 pm8001_dev = ccb->device;
Sakthivel Kc6b9ef52013-03-19 18:08:08 +05302415
2416 if (t) {
2417 if (t->dev && (t->dev->lldd_dev))
2418 pm8001_dev = t->dev->lldd_dev;
2419 } else {
Joe Perches1b5d2792020-11-20 15:16:09 -08002420 pm8001_dbg(pm8001_ha, FAIL, "task null\n");
Sakthivel Kc6b9ef52013-03-19 18:08:08 +05302421 return;
2422 }
2423
2424 if ((pm8001_dev && !(pm8001_dev->id & NCQ_READ_LOG_FLAG))
2425 && unlikely(!t || !t->lldd_task || !t->dev)) {
Joe Perches1b5d2792020-11-20 15:16:09 -08002426 pm8001_dbg(pm8001_ha, FAIL, "task or dev null\n");
Sakthivel Kc6b9ef52013-03-19 18:08:08 +05302427 return;
2428 }
2429
2430 ts = &t->task_status;
peter chang73706722019-11-14 15:39:02 +05302431
Vishakha Channapattan4f608fb2021-01-09 18:08:48 +05302432 if (status != IO_SUCCESS) {
2433 pm8001_dbg(pm8001_ha, FAIL,
2434 "IO failed device_id %u status 0x%x tag %d\n",
2435 pm8001_dev->device_id, status, tag);
2436 }
peter chang73706722019-11-14 15:39:02 +05302437
Anand Kumar Santhanamcb269c22013-09-17 16:47:21 +05302438 /* Print sas address of IO failed device */
2439 if ((status != IO_SUCCESS) && (status != IO_OVERFLOW) &&
2440 (status != IO_UNDERFLOW)) {
2441 if (!((t->dev->parent) &&
John Garry924a3542019-06-10 20:41:41 +08002442 (dev_is_expander(t->dev->parent->dev_type)))) {
Luo Jiaxing8a23dbc2021-04-08 20:56:32 +08002443 for (i = 0, j = 4; i <= 3 && j <= 7; i++, j++)
Anand Kumar Santhanamcb269c22013-09-17 16:47:21 +05302444 sata_addr_low[i] = pm8001_ha->sas_addr[j];
Luo Jiaxing8a23dbc2021-04-08 20:56:32 +08002445 for (i = 0, j = 0; i <= 3 && j <= 3; i++, j++)
Anand Kumar Santhanamcb269c22013-09-17 16:47:21 +05302446 sata_addr_hi[i] = pm8001_ha->sas_addr[j];
2447 memcpy(&temp_sata_addr_low, sata_addr_low,
2448 sizeof(sata_addr_low));
2449 memcpy(&temp_sata_addr_hi, sata_addr_hi,
2450 sizeof(sata_addr_hi));
2451 temp_sata_addr_hi = (((temp_sata_addr_hi >> 24) & 0xff)
2452 |((temp_sata_addr_hi << 8) &
2453 0xff0000) |
2454 ((temp_sata_addr_hi >> 8)
2455 & 0xff00) |
2456 ((temp_sata_addr_hi << 24) &
2457 0xff000000));
2458 temp_sata_addr_low = ((((temp_sata_addr_low >> 24)
2459 & 0xff) |
2460 ((temp_sata_addr_low << 8)
2461 & 0xff0000) |
2462 ((temp_sata_addr_low >> 8)
2463 & 0xff00) |
2464 ((temp_sata_addr_low << 24)
2465 & 0xff000000)) +
2466 pm8001_dev->attached_phy +
2467 0x10);
Joe Perches1b5d2792020-11-20 15:16:09 -08002468 pm8001_dbg(pm8001_ha, FAIL,
2469 "SAS Address of IO Failure Drive:%08x%08x\n",
2470 temp_sata_addr_hi,
2471 temp_sata_addr_low);
Sakthivel Kf5860992013-04-17 16:37:02 +05302472
Anand Kumar Santhanamcb269c22013-09-17 16:47:21 +05302473 } else {
Joe Perches1b5d2792020-11-20 15:16:09 -08002474 pm8001_dbg(pm8001_ha, FAIL,
2475 "SAS Address of IO Failure Drive:%016llx\n",
2476 SAS_ADDR(t->dev->sas_addr));
Anand Kumar Santhanamcb269c22013-09-17 16:47:21 +05302477 }
2478 }
Sakthivel Kf5860992013-04-17 16:37:02 +05302479 switch (status) {
2480 case IO_SUCCESS:
Joe Perches1b5d2792020-11-20 15:16:09 -08002481 pm8001_dbg(pm8001_ha, IO, "IO_SUCCESS\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302482 if (param == 0) {
2483 ts->resp = SAS_TASK_COMPLETE;
Bart Van Assched377f412021-05-23 19:54:55 -07002484 ts->stat = SAS_SAM_STAT_GOOD;
Sakthivel Kc6b9ef52013-03-19 18:08:08 +05302485 /* check if response is for SEND READ LOG */
2486 if (pm8001_dev &&
2487 (pm8001_dev->id & NCQ_READ_LOG_FLAG)) {
2488 /* set new bit for abort_all */
2489 pm8001_dev->id |= NCQ_ABORT_ALL_FLAG;
2490 /* clear bit for read log */
2491 pm8001_dev->id = pm8001_dev->id & 0x7FFFFFFF;
2492 pm80xx_send_abort_all(pm8001_ha, pm8001_dev);
2493 /* Free the tag */
2494 pm8001_tag_free(pm8001_ha, tag);
2495 sas_free_task(t);
2496 return;
2497 }
Sakthivel Kf5860992013-04-17 16:37:02 +05302498 } else {
2499 u8 len;
2500 ts->resp = SAS_TASK_COMPLETE;
2501 ts->stat = SAS_PROTO_RESPONSE;
2502 ts->residual = param;
Joe Perches1b5d2792020-11-20 15:16:09 -08002503 pm8001_dbg(pm8001_ha, IO,
2504 "SAS_PROTO_RESPONSE len = %d\n",
2505 param);
Sakthivel Kf5860992013-04-17 16:37:02 +05302506 sata_resp = &psataPayload->sata_resp[0];
2507 resp = (struct ata_task_resp *)ts->buf;
2508 if (t->ata_task.dma_xfer == 0 &&
Christoph Hellwigf73bdeb2018-10-10 19:59:50 +02002509 t->data_dir == DMA_FROM_DEVICE) {
Sakthivel Kf5860992013-04-17 16:37:02 +05302510 len = sizeof(struct pio_setup_fis);
Joe Perches1b5d2792020-11-20 15:16:09 -08002511 pm8001_dbg(pm8001_ha, IO,
2512 "PIO read len = %d\n", len);
Sakthivel Kf5860992013-04-17 16:37:02 +05302513 } else if (t->ata_task.use_ncq) {
2514 len = sizeof(struct set_dev_bits_fis);
Joe Perches1b5d2792020-11-20 15:16:09 -08002515 pm8001_dbg(pm8001_ha, IO, "FPDMA len = %d\n",
2516 len);
Sakthivel Kf5860992013-04-17 16:37:02 +05302517 } else {
2518 len = sizeof(struct dev_to_host_fis);
Joe Perches1b5d2792020-11-20 15:16:09 -08002519 pm8001_dbg(pm8001_ha, IO, "other len = %d\n",
2520 len);
Sakthivel Kf5860992013-04-17 16:37:02 +05302521 }
2522 if (SAS_STATUS_BUF_SIZE >= sizeof(*resp)) {
2523 resp->frame_len = len;
2524 memcpy(&resp->ending_fis[0], sata_resp, len);
2525 ts->buf_valid_size = sizeof(*resp);
2526 } else
Joe Perches1b5d2792020-11-20 15:16:09 -08002527 pm8001_dbg(pm8001_ha, IO,
2528 "response too large\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302529 }
2530 if (pm8001_dev)
Viswas G4a2efd42020-11-02 22:25:26 +05302531 atomic_dec(&pm8001_dev->running_req);
Sakthivel Kf5860992013-04-17 16:37:02 +05302532 break;
2533 case IO_ABORTED:
Joe Perches1b5d2792020-11-20 15:16:09 -08002534 pm8001_dbg(pm8001_ha, IO, "IO_ABORTED IOMB Tag\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302535 ts->resp = SAS_TASK_COMPLETE;
2536 ts->stat = SAS_ABORTED_TASK;
2537 if (pm8001_dev)
Viswas G4a2efd42020-11-02 22:25:26 +05302538 atomic_dec(&pm8001_dev->running_req);
Sakthivel Kf5860992013-04-17 16:37:02 +05302539 break;
2540 /* following cases are to do cases */
2541 case IO_UNDERFLOW:
2542 /* SATA Completion with error */
Joe Perches1b5d2792020-11-20 15:16:09 -08002543 pm8001_dbg(pm8001_ha, IO, "IO_UNDERFLOW param = %d\n", param);
Sakthivel Kf5860992013-04-17 16:37:02 +05302544 ts->resp = SAS_TASK_COMPLETE;
2545 ts->stat = SAS_DATA_UNDERRUN;
2546 ts->residual = param;
2547 if (pm8001_dev)
Viswas G4a2efd42020-11-02 22:25:26 +05302548 atomic_dec(&pm8001_dev->running_req);
Sakthivel Kf5860992013-04-17 16:37:02 +05302549 break;
2550 case IO_NO_DEVICE:
Joe Perches1b5d2792020-11-20 15:16:09 -08002551 pm8001_dbg(pm8001_ha, IO, "IO_NO_DEVICE\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302552 ts->resp = SAS_TASK_UNDELIVERED;
2553 ts->stat = SAS_PHY_DOWN;
Viswas G4a2efd42020-11-02 22:25:26 +05302554 if (pm8001_dev)
2555 atomic_dec(&pm8001_dev->running_req);
Sakthivel Kf5860992013-04-17 16:37:02 +05302556 break;
2557 case IO_XFER_ERROR_BREAK:
Joe Perches1b5d2792020-11-20 15:16:09 -08002558 pm8001_dbg(pm8001_ha, IO, "IO_XFER_ERROR_BREAK\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302559 ts->resp = SAS_TASK_COMPLETE;
2560 ts->stat = SAS_INTERRUPTED;
Viswas G4a2efd42020-11-02 22:25:26 +05302561 if (pm8001_dev)
2562 atomic_dec(&pm8001_dev->running_req);
Sakthivel Kf5860992013-04-17 16:37:02 +05302563 break;
2564 case IO_XFER_ERROR_PHY_NOT_READY:
Joe Perches1b5d2792020-11-20 15:16:09 -08002565 pm8001_dbg(pm8001_ha, IO, "IO_XFER_ERROR_PHY_NOT_READY\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302566 ts->resp = SAS_TASK_COMPLETE;
2567 ts->stat = SAS_OPEN_REJECT;
2568 ts->open_rej_reason = SAS_OREJ_RSVD_RETRY;
Viswas G4a2efd42020-11-02 22:25:26 +05302569 if (pm8001_dev)
2570 atomic_dec(&pm8001_dev->running_req);
Sakthivel Kf5860992013-04-17 16:37:02 +05302571 break;
2572 case IO_OPEN_CNX_ERROR_PROTOCOL_NOT_SUPPORTED:
Joe Perches1b5d2792020-11-20 15:16:09 -08002573 pm8001_dbg(pm8001_ha, IO,
2574 "IO_OPEN_CNX_ERROR_PROTOCOL_NOT_SUPPORTED\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302575 ts->resp = SAS_TASK_COMPLETE;
2576 ts->stat = SAS_OPEN_REJECT;
2577 ts->open_rej_reason = SAS_OREJ_EPROTO;
Viswas G4a2efd42020-11-02 22:25:26 +05302578 if (pm8001_dev)
2579 atomic_dec(&pm8001_dev->running_req);
Sakthivel Kf5860992013-04-17 16:37:02 +05302580 break;
2581 case IO_OPEN_CNX_ERROR_ZONE_VIOLATION:
Joe Perches1b5d2792020-11-20 15:16:09 -08002582 pm8001_dbg(pm8001_ha, IO,
2583 "IO_OPEN_CNX_ERROR_ZONE_VIOLATION\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302584 ts->resp = SAS_TASK_COMPLETE;
2585 ts->stat = SAS_OPEN_REJECT;
2586 ts->open_rej_reason = SAS_OREJ_UNKNOWN;
Viswas G4a2efd42020-11-02 22:25:26 +05302587 if (pm8001_dev)
2588 atomic_dec(&pm8001_dev->running_req);
Sakthivel Kf5860992013-04-17 16:37:02 +05302589 break;
2590 case IO_OPEN_CNX_ERROR_BREAK:
Joe Perches1b5d2792020-11-20 15:16:09 -08002591 pm8001_dbg(pm8001_ha, IO, "IO_OPEN_CNX_ERROR_BREAK\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302592 ts->resp = SAS_TASK_COMPLETE;
2593 ts->stat = SAS_OPEN_REJECT;
2594 ts->open_rej_reason = SAS_OREJ_RSVD_CONT0;
Viswas G4a2efd42020-11-02 22:25:26 +05302595 if (pm8001_dev)
2596 atomic_dec(&pm8001_dev->running_req);
Sakthivel Kf5860992013-04-17 16:37:02 +05302597 break;
2598 case IO_OPEN_CNX_ERROR_IT_NEXUS_LOSS:
Sakthivel Ka6cb3d02013-03-19 18:08:40 +05302599 case IO_XFER_OPEN_RETRY_BACKOFF_THRESHOLD_REACHED:
2600 case IO_OPEN_CNX_ERROR_IT_NEXUS_LOSS_OPEN_TMO:
2601 case IO_OPEN_CNX_ERROR_IT_NEXUS_LOSS_NO_DEST:
2602 case IO_OPEN_CNX_ERROR_IT_NEXUS_LOSS_OPEN_COLLIDE:
2603 case IO_OPEN_CNX_ERROR_IT_NEXUS_LOSS_PATHWAY_BLOCKED:
Joe Perches1b5d2792020-11-20 15:16:09 -08002604 pm8001_dbg(pm8001_ha, IO, "IO_OPEN_CNX_ERROR_IT_NEXUS_LOSS\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302605 ts->resp = SAS_TASK_COMPLETE;
2606 ts->stat = SAS_DEV_NO_RESPONSE;
2607 if (!t->uldd_task) {
2608 pm8001_handle_event(pm8001_ha,
2609 pm8001_dev,
2610 IO_OPEN_CNX_ERROR_IT_NEXUS_LOSS);
2611 ts->resp = SAS_TASK_UNDELIVERED;
2612 ts->stat = SAS_QUEUE_FULL;
Ajish Koshyb27a4052021-09-06 22:34:02 +05302613 spin_unlock_irqrestore(&circularQ->oq_lock,
2614 circularQ->lock_flags);
Suresh Thiagarajan2b01d812014-01-16 15:26:21 +05302615 pm8001_ccb_task_free_done(pm8001_ha, t, ccb, tag);
Ajish Koshyb27a4052021-09-06 22:34:02 +05302616 spin_lock_irqsave(&circularQ->oq_lock,
2617 circularQ->lock_flags);
Sakthivel Kf5860992013-04-17 16:37:02 +05302618 return;
2619 }
2620 break;
2621 case IO_OPEN_CNX_ERROR_BAD_DESTINATION:
Joe Perches1b5d2792020-11-20 15:16:09 -08002622 pm8001_dbg(pm8001_ha, IO,
2623 "IO_OPEN_CNX_ERROR_BAD_DESTINATION\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302624 ts->resp = SAS_TASK_UNDELIVERED;
2625 ts->stat = SAS_OPEN_REJECT;
2626 ts->open_rej_reason = SAS_OREJ_BAD_DEST;
2627 if (!t->uldd_task) {
2628 pm8001_handle_event(pm8001_ha,
2629 pm8001_dev,
2630 IO_OPEN_CNX_ERROR_IT_NEXUS_LOSS);
2631 ts->resp = SAS_TASK_UNDELIVERED;
2632 ts->stat = SAS_QUEUE_FULL;
Ajish Koshyb27a4052021-09-06 22:34:02 +05302633 spin_unlock_irqrestore(&circularQ->oq_lock,
2634 circularQ->lock_flags);
Suresh Thiagarajan2b01d812014-01-16 15:26:21 +05302635 pm8001_ccb_task_free_done(pm8001_ha, t, ccb, tag);
Ajish Koshyb27a4052021-09-06 22:34:02 +05302636 spin_lock_irqsave(&circularQ->oq_lock,
2637 circularQ->lock_flags);
Sakthivel Kf5860992013-04-17 16:37:02 +05302638 return;
2639 }
2640 break;
2641 case IO_OPEN_CNX_ERROR_CONNECTION_RATE_NOT_SUPPORTED:
Joe Perches1b5d2792020-11-20 15:16:09 -08002642 pm8001_dbg(pm8001_ha, IO,
2643 "IO_OPEN_CNX_ERROR_CONNECTION_RATE_NOT_SUPPORTED\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302644 ts->resp = SAS_TASK_COMPLETE;
2645 ts->stat = SAS_OPEN_REJECT;
2646 ts->open_rej_reason = SAS_OREJ_CONN_RATE;
Viswas G4a2efd42020-11-02 22:25:26 +05302647 if (pm8001_dev)
2648 atomic_dec(&pm8001_dev->running_req);
Sakthivel Kf5860992013-04-17 16:37:02 +05302649 break;
2650 case IO_OPEN_CNX_ERROR_STP_RESOURCES_BUSY:
Joe Perches1b5d2792020-11-20 15:16:09 -08002651 pm8001_dbg(pm8001_ha, IO,
2652 "IO_OPEN_CNX_ERROR_STP_RESOURCES_BUSY\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302653 ts->resp = SAS_TASK_COMPLETE;
2654 ts->stat = SAS_DEV_NO_RESPONSE;
2655 if (!t->uldd_task) {
2656 pm8001_handle_event(pm8001_ha,
2657 pm8001_dev,
2658 IO_OPEN_CNX_ERROR_STP_RESOURCES_BUSY);
2659 ts->resp = SAS_TASK_UNDELIVERED;
2660 ts->stat = SAS_QUEUE_FULL;
Ajish Koshyb27a4052021-09-06 22:34:02 +05302661 spin_unlock_irqrestore(&circularQ->oq_lock,
2662 circularQ->lock_flags);
Suresh Thiagarajan2b01d812014-01-16 15:26:21 +05302663 pm8001_ccb_task_free_done(pm8001_ha, t, ccb, tag);
Ajish Koshyb27a4052021-09-06 22:34:02 +05302664 spin_lock_irqsave(&circularQ->oq_lock,
2665 circularQ->lock_flags);
Sakthivel Kf5860992013-04-17 16:37:02 +05302666 return;
2667 }
2668 break;
2669 case IO_OPEN_CNX_ERROR_WRONG_DESTINATION:
Joe Perches1b5d2792020-11-20 15:16:09 -08002670 pm8001_dbg(pm8001_ha, IO,
2671 "IO_OPEN_CNX_ERROR_WRONG_DESTINATION\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302672 ts->resp = SAS_TASK_COMPLETE;
2673 ts->stat = SAS_OPEN_REJECT;
2674 ts->open_rej_reason = SAS_OREJ_WRONG_DEST;
Viswas G4a2efd42020-11-02 22:25:26 +05302675 if (pm8001_dev)
2676 atomic_dec(&pm8001_dev->running_req);
Sakthivel Kf5860992013-04-17 16:37:02 +05302677 break;
2678 case IO_XFER_ERROR_NAK_RECEIVED:
Joe Perches1b5d2792020-11-20 15:16:09 -08002679 pm8001_dbg(pm8001_ha, IO, "IO_XFER_ERROR_NAK_RECEIVED\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302680 ts->resp = SAS_TASK_COMPLETE;
2681 ts->stat = SAS_NAK_R_ERR;
Viswas G4a2efd42020-11-02 22:25:26 +05302682 if (pm8001_dev)
2683 atomic_dec(&pm8001_dev->running_req);
Sakthivel Kf5860992013-04-17 16:37:02 +05302684 break;
2685 case IO_XFER_ERROR_ACK_NAK_TIMEOUT:
Joe Perches1b5d2792020-11-20 15:16:09 -08002686 pm8001_dbg(pm8001_ha, IO, "IO_XFER_ERROR_ACK_NAK_TIMEOUT\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302687 ts->resp = SAS_TASK_COMPLETE;
2688 ts->stat = SAS_NAK_R_ERR;
Viswas G4a2efd42020-11-02 22:25:26 +05302689 if (pm8001_dev)
2690 atomic_dec(&pm8001_dev->running_req);
Sakthivel Kf5860992013-04-17 16:37:02 +05302691 break;
2692 case IO_XFER_ERROR_DMA:
Joe Perches1b5d2792020-11-20 15:16:09 -08002693 pm8001_dbg(pm8001_ha, IO, "IO_XFER_ERROR_DMA\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302694 ts->resp = SAS_TASK_COMPLETE;
2695 ts->stat = SAS_ABORTED_TASK;
Viswas G4a2efd42020-11-02 22:25:26 +05302696 if (pm8001_dev)
2697 atomic_dec(&pm8001_dev->running_req);
Sakthivel Kf5860992013-04-17 16:37:02 +05302698 break;
2699 case IO_XFER_ERROR_SATA_LINK_TIMEOUT:
Joe Perches1b5d2792020-11-20 15:16:09 -08002700 pm8001_dbg(pm8001_ha, IO, "IO_XFER_ERROR_SATA_LINK_TIMEOUT\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302701 ts->resp = SAS_TASK_UNDELIVERED;
2702 ts->stat = SAS_DEV_NO_RESPONSE;
Viswas G4a2efd42020-11-02 22:25:26 +05302703 if (pm8001_dev)
2704 atomic_dec(&pm8001_dev->running_req);
Sakthivel Kf5860992013-04-17 16:37:02 +05302705 break;
2706 case IO_XFER_ERROR_REJECTED_NCQ_MODE:
Joe Perches1b5d2792020-11-20 15:16:09 -08002707 pm8001_dbg(pm8001_ha, IO, "IO_XFER_ERROR_REJECTED_NCQ_MODE\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302708 ts->resp = SAS_TASK_COMPLETE;
2709 ts->stat = SAS_DATA_UNDERRUN;
Viswas G4a2efd42020-11-02 22:25:26 +05302710 if (pm8001_dev)
2711 atomic_dec(&pm8001_dev->running_req);
Sakthivel Kf5860992013-04-17 16:37:02 +05302712 break;
2713 case IO_XFER_OPEN_RETRY_TIMEOUT:
Joe Perches1b5d2792020-11-20 15:16:09 -08002714 pm8001_dbg(pm8001_ha, IO, "IO_XFER_OPEN_RETRY_TIMEOUT\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302715 ts->resp = SAS_TASK_COMPLETE;
2716 ts->stat = SAS_OPEN_TO;
Viswas G4a2efd42020-11-02 22:25:26 +05302717 if (pm8001_dev)
2718 atomic_dec(&pm8001_dev->running_req);
Sakthivel Kf5860992013-04-17 16:37:02 +05302719 break;
2720 case IO_PORT_IN_RESET:
Joe Perches1b5d2792020-11-20 15:16:09 -08002721 pm8001_dbg(pm8001_ha, IO, "IO_PORT_IN_RESET\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302722 ts->resp = SAS_TASK_COMPLETE;
2723 ts->stat = SAS_DEV_NO_RESPONSE;
Viswas G4a2efd42020-11-02 22:25:26 +05302724 if (pm8001_dev)
2725 atomic_dec(&pm8001_dev->running_req);
Sakthivel Kf5860992013-04-17 16:37:02 +05302726 break;
2727 case IO_DS_NON_OPERATIONAL:
Joe Perches1b5d2792020-11-20 15:16:09 -08002728 pm8001_dbg(pm8001_ha, IO, "IO_DS_NON_OPERATIONAL\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302729 ts->resp = SAS_TASK_COMPLETE;
2730 ts->stat = SAS_DEV_NO_RESPONSE;
2731 if (!t->uldd_task) {
2732 pm8001_handle_event(pm8001_ha, pm8001_dev,
2733 IO_DS_NON_OPERATIONAL);
2734 ts->resp = SAS_TASK_UNDELIVERED;
2735 ts->stat = SAS_QUEUE_FULL;
Ajish Koshyb27a4052021-09-06 22:34:02 +05302736 spin_unlock_irqrestore(&circularQ->oq_lock,
2737 circularQ->lock_flags);
Suresh Thiagarajan2b01d812014-01-16 15:26:21 +05302738 pm8001_ccb_task_free_done(pm8001_ha, t, ccb, tag);
Ajish Koshyb27a4052021-09-06 22:34:02 +05302739 spin_lock_irqsave(&circularQ->oq_lock,
2740 circularQ->lock_flags);
Sakthivel Kf5860992013-04-17 16:37:02 +05302741 return;
2742 }
2743 break;
2744 case IO_DS_IN_RECOVERY:
Joe Perches1b5d2792020-11-20 15:16:09 -08002745 pm8001_dbg(pm8001_ha, IO, "IO_DS_IN_RECOVERY\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302746 ts->resp = SAS_TASK_COMPLETE;
2747 ts->stat = SAS_DEV_NO_RESPONSE;
Viswas G4a2efd42020-11-02 22:25:26 +05302748 if (pm8001_dev)
2749 atomic_dec(&pm8001_dev->running_req);
Sakthivel Kf5860992013-04-17 16:37:02 +05302750 break;
2751 case IO_DS_IN_ERROR:
Joe Perches1b5d2792020-11-20 15:16:09 -08002752 pm8001_dbg(pm8001_ha, IO, "IO_DS_IN_ERROR\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302753 ts->resp = SAS_TASK_COMPLETE;
2754 ts->stat = SAS_DEV_NO_RESPONSE;
2755 if (!t->uldd_task) {
2756 pm8001_handle_event(pm8001_ha, pm8001_dev,
2757 IO_DS_IN_ERROR);
2758 ts->resp = SAS_TASK_UNDELIVERED;
2759 ts->stat = SAS_QUEUE_FULL;
Ajish Koshyb27a4052021-09-06 22:34:02 +05302760 spin_unlock_irqrestore(&circularQ->oq_lock,
2761 circularQ->lock_flags);
Suresh Thiagarajan2b01d812014-01-16 15:26:21 +05302762 pm8001_ccb_task_free_done(pm8001_ha, t, ccb, tag);
Ajish Koshyb27a4052021-09-06 22:34:02 +05302763 spin_lock_irqsave(&circularQ->oq_lock,
2764 circularQ->lock_flags);
Sakthivel Kf5860992013-04-17 16:37:02 +05302765 return;
2766 }
2767 break;
2768 case IO_OPEN_CNX_ERROR_HW_RESOURCE_BUSY:
Joe Perches1b5d2792020-11-20 15:16:09 -08002769 pm8001_dbg(pm8001_ha, IO,
2770 "IO_OPEN_CNX_ERROR_HW_RESOURCE_BUSY\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302771 ts->resp = SAS_TASK_COMPLETE;
2772 ts->stat = SAS_OPEN_REJECT;
2773 ts->open_rej_reason = SAS_OREJ_RSVD_RETRY;
Viswas G4a2efd42020-11-02 22:25:26 +05302774 if (pm8001_dev)
2775 atomic_dec(&pm8001_dev->running_req);
Johannes Thumshirn50acde82015-08-17 15:52:32 +02002776 break;
Sakthivel Kf5860992013-04-17 16:37:02 +05302777 default:
Vishakha Channapattan4f608fb2021-01-09 18:08:48 +05302778 pm8001_dbg(pm8001_ha, DEVIO,
2779 "Unknown status device_id %u status 0x%x tag %d\n",
2780 pm8001_dev->device_id, status, tag);
Sakthivel Kf5860992013-04-17 16:37:02 +05302781 /* not allowed case. Therefore, return failed status */
2782 ts->resp = SAS_TASK_COMPLETE;
2783 ts->stat = SAS_DEV_NO_RESPONSE;
Viswas G4a2efd42020-11-02 22:25:26 +05302784 if (pm8001_dev)
2785 atomic_dec(&pm8001_dev->running_req);
Sakthivel Kf5860992013-04-17 16:37:02 +05302786 break;
2787 }
2788 spin_lock_irqsave(&t->task_state_lock, flags);
2789 t->task_state_flags &= ~SAS_TASK_STATE_PENDING;
2790 t->task_state_flags &= ~SAS_TASK_AT_INITIATOR;
2791 t->task_state_flags |= SAS_TASK_STATE_DONE;
2792 if (unlikely((t->task_state_flags & SAS_TASK_STATE_ABORTED))) {
2793 spin_unlock_irqrestore(&t->task_state_lock, flags);
Joe Perches1b5d2792020-11-20 15:16:09 -08002794 pm8001_dbg(pm8001_ha, FAIL,
2795 "task 0x%p done with io_status 0x%x resp 0x%x stat 0x%x but aborted by upper layer!\n",
2796 t, status, ts->resp, ts->stat);
peter changce21c632019-11-14 15:38:58 +05302797 if (t->slow_task)
2798 complete(&t->slow_task->completion);
Sakthivel Kf5860992013-04-17 16:37:02 +05302799 pm8001_ccb_task_free(pm8001_ha, t, ccb, tag);
Suresh Thiagarajan2b01d812014-01-16 15:26:21 +05302800 } else {
Sakthivel Kf5860992013-04-17 16:37:02 +05302801 spin_unlock_irqrestore(&t->task_state_lock, flags);
Ajish Koshyb27a4052021-09-06 22:34:02 +05302802 spin_unlock_irqrestore(&circularQ->oq_lock,
2803 circularQ->lock_flags);
Suresh Thiagarajan2b01d812014-01-16 15:26:21 +05302804 pm8001_ccb_task_free_done(pm8001_ha, t, ccb, tag);
Ajish Koshyb27a4052021-09-06 22:34:02 +05302805 spin_lock_irqsave(&circularQ->oq_lock,
2806 circularQ->lock_flags);
Sakthivel Kf5860992013-04-17 16:37:02 +05302807 }
2808}
2809
2810/*See the comments for mpi_ssp_completion */
Ajish Koshyb27a4052021-09-06 22:34:02 +05302811static void mpi_sata_event(struct pm8001_hba_info *pm8001_ha,
2812 struct outbound_queue_table *circularQ, void *piomb)
Sakthivel Kf5860992013-04-17 16:37:02 +05302813{
2814 struct sas_task *t;
2815 struct task_status_struct *ts;
2816 struct pm8001_ccb_info *ccb;
2817 struct pm8001_device *pm8001_dev;
2818 struct sata_event_resp *psataPayload =
2819 (struct sata_event_resp *)(piomb + 4);
2820 u32 event = le32_to_cpu(psataPayload->event);
2821 u32 tag = le32_to_cpu(psataPayload->tag);
2822 u32 port_id = le32_to_cpu(psataPayload->port_id);
Sakthivel Kc6b9ef52013-03-19 18:08:08 +05302823 u32 dev_id = le32_to_cpu(psataPayload->device_id);
2824 unsigned long flags;
Sakthivel Kf5860992013-04-17 16:37:02 +05302825
Sakthivel Kf5860992013-04-17 16:37:02 +05302826 if (event)
Joe Perches1b5d2792020-11-20 15:16:09 -08002827 pm8001_dbg(pm8001_ha, FAIL, "SATA EVENT 0x%x\n", event);
Sakthivel Kc6b9ef52013-03-19 18:08:08 +05302828
2829 /* Check if this is NCQ error */
2830 if (event == IO_XFER_ERROR_ABORTED_NCQ_MODE) {
2831 /* find device using device id */
2832 pm8001_dev = pm8001_find_dev(pm8001_ha, dev_id);
2833 /* send read log extension */
2834 if (pm8001_dev)
2835 pm80xx_send_read_log(pm8001_ha, pm8001_dev);
Sakthivel Kf5860992013-04-17 16:37:02 +05302836 return;
Sakthivel Kc6b9ef52013-03-19 18:08:08 +05302837 }
2838
Igor Pylypiv60de1a62021-11-01 16:28:23 -07002839 ccb = &pm8001_ha->ccb_info[tag];
2840 t = ccb->task;
2841 pm8001_dev = ccb->device;
2842
Sakthivel Kc6b9ef52013-03-19 18:08:08 +05302843 if (unlikely(!t || !t->lldd_task || !t->dev)) {
Joe Perches1b5d2792020-11-20 15:16:09 -08002844 pm8001_dbg(pm8001_ha, FAIL, "task or dev null\n");
Sakthivel Kc6b9ef52013-03-19 18:08:08 +05302845 return;
2846 }
2847
Sakthivel Kf5860992013-04-17 16:37:02 +05302848 ts = &t->task_status;
Joe Perches1b5d2792020-11-20 15:16:09 -08002849 pm8001_dbg(pm8001_ha, IOERR, "port_id:0x%x, tag:0x%x, event:0x%x\n",
2850 port_id, tag, event);
Sakthivel Kf5860992013-04-17 16:37:02 +05302851 switch (event) {
2852 case IO_OVERFLOW:
Joe Perches1b5d2792020-11-20 15:16:09 -08002853 pm8001_dbg(pm8001_ha, IO, "IO_UNDERFLOW\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302854 ts->resp = SAS_TASK_COMPLETE;
2855 ts->stat = SAS_DATA_OVERRUN;
2856 ts->residual = 0;
2857 if (pm8001_dev)
Viswas G4a2efd42020-11-02 22:25:26 +05302858 atomic_dec(&pm8001_dev->running_req);
Sakthivel Kf5860992013-04-17 16:37:02 +05302859 break;
2860 case IO_XFER_ERROR_BREAK:
Joe Perches1b5d2792020-11-20 15:16:09 -08002861 pm8001_dbg(pm8001_ha, IO, "IO_XFER_ERROR_BREAK\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302862 ts->resp = SAS_TASK_COMPLETE;
2863 ts->stat = SAS_INTERRUPTED;
2864 break;
2865 case IO_XFER_ERROR_PHY_NOT_READY:
Joe Perches1b5d2792020-11-20 15:16:09 -08002866 pm8001_dbg(pm8001_ha, IO, "IO_XFER_ERROR_PHY_NOT_READY\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302867 ts->resp = SAS_TASK_COMPLETE;
2868 ts->stat = SAS_OPEN_REJECT;
2869 ts->open_rej_reason = SAS_OREJ_RSVD_RETRY;
2870 break;
2871 case IO_OPEN_CNX_ERROR_PROTOCOL_NOT_SUPPORTED:
Joe Perches1b5d2792020-11-20 15:16:09 -08002872 pm8001_dbg(pm8001_ha, IO,
2873 "IO_OPEN_CNX_ERROR_PROTOCOL_NOT_SUPPORTED\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302874 ts->resp = SAS_TASK_COMPLETE;
2875 ts->stat = SAS_OPEN_REJECT;
2876 ts->open_rej_reason = SAS_OREJ_EPROTO;
2877 break;
2878 case IO_OPEN_CNX_ERROR_ZONE_VIOLATION:
Joe Perches1b5d2792020-11-20 15:16:09 -08002879 pm8001_dbg(pm8001_ha, IO,
2880 "IO_OPEN_CNX_ERROR_ZONE_VIOLATION\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302881 ts->resp = SAS_TASK_COMPLETE;
2882 ts->stat = SAS_OPEN_REJECT;
2883 ts->open_rej_reason = SAS_OREJ_UNKNOWN;
2884 break;
2885 case IO_OPEN_CNX_ERROR_BREAK:
Joe Perches1b5d2792020-11-20 15:16:09 -08002886 pm8001_dbg(pm8001_ha, IO, "IO_OPEN_CNX_ERROR_BREAK\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302887 ts->resp = SAS_TASK_COMPLETE;
2888 ts->stat = SAS_OPEN_REJECT;
2889 ts->open_rej_reason = SAS_OREJ_RSVD_CONT0;
2890 break;
2891 case IO_OPEN_CNX_ERROR_IT_NEXUS_LOSS:
Sakthivel Ka6cb3d02013-03-19 18:08:40 +05302892 case IO_XFER_OPEN_RETRY_BACKOFF_THRESHOLD_REACHED:
2893 case IO_OPEN_CNX_ERROR_IT_NEXUS_LOSS_OPEN_TMO:
2894 case IO_OPEN_CNX_ERROR_IT_NEXUS_LOSS_NO_DEST:
2895 case IO_OPEN_CNX_ERROR_IT_NEXUS_LOSS_OPEN_COLLIDE:
2896 case IO_OPEN_CNX_ERROR_IT_NEXUS_LOSS_PATHWAY_BLOCKED:
Joe Perches1b5d2792020-11-20 15:16:09 -08002897 pm8001_dbg(pm8001_ha, FAIL,
2898 "IO_OPEN_CNX_ERROR_IT_NEXUS_LOSS\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302899 ts->resp = SAS_TASK_UNDELIVERED;
2900 ts->stat = SAS_DEV_NO_RESPONSE;
2901 if (!t->uldd_task) {
2902 pm8001_handle_event(pm8001_ha,
2903 pm8001_dev,
2904 IO_OPEN_CNX_ERROR_IT_NEXUS_LOSS);
2905 ts->resp = SAS_TASK_COMPLETE;
2906 ts->stat = SAS_QUEUE_FULL;
Ajish Koshyb27a4052021-09-06 22:34:02 +05302907 spin_unlock_irqrestore(&circularQ->oq_lock,
2908 circularQ->lock_flags);
Suresh Thiagarajan2b01d812014-01-16 15:26:21 +05302909 pm8001_ccb_task_free_done(pm8001_ha, t, ccb, tag);
Ajish Koshyb27a4052021-09-06 22:34:02 +05302910 spin_lock_irqsave(&circularQ->oq_lock,
2911 circularQ->lock_flags);
Sakthivel Kf5860992013-04-17 16:37:02 +05302912 return;
2913 }
2914 break;
2915 case IO_OPEN_CNX_ERROR_BAD_DESTINATION:
Joe Perches1b5d2792020-11-20 15:16:09 -08002916 pm8001_dbg(pm8001_ha, IO,
2917 "IO_OPEN_CNX_ERROR_BAD_DESTINATION\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302918 ts->resp = SAS_TASK_UNDELIVERED;
2919 ts->stat = SAS_OPEN_REJECT;
2920 ts->open_rej_reason = SAS_OREJ_BAD_DEST;
2921 break;
2922 case IO_OPEN_CNX_ERROR_CONNECTION_RATE_NOT_SUPPORTED:
Joe Perches1b5d2792020-11-20 15:16:09 -08002923 pm8001_dbg(pm8001_ha, IO,
2924 "IO_OPEN_CNX_ERROR_CONNECTION_RATE_NOT_SUPPORTED\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302925 ts->resp = SAS_TASK_COMPLETE;
2926 ts->stat = SAS_OPEN_REJECT;
2927 ts->open_rej_reason = SAS_OREJ_CONN_RATE;
2928 break;
2929 case IO_OPEN_CNX_ERROR_WRONG_DESTINATION:
Joe Perches1b5d2792020-11-20 15:16:09 -08002930 pm8001_dbg(pm8001_ha, IO,
2931 "IO_OPEN_CNX_ERROR_WRONG_DESTINATION\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302932 ts->resp = SAS_TASK_COMPLETE;
2933 ts->stat = SAS_OPEN_REJECT;
2934 ts->open_rej_reason = SAS_OREJ_WRONG_DEST;
2935 break;
2936 case IO_XFER_ERROR_NAK_RECEIVED:
Joe Perches1b5d2792020-11-20 15:16:09 -08002937 pm8001_dbg(pm8001_ha, IO, "IO_XFER_ERROR_NAK_RECEIVED\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302938 ts->resp = SAS_TASK_COMPLETE;
2939 ts->stat = SAS_NAK_R_ERR;
2940 break;
2941 case IO_XFER_ERROR_PEER_ABORTED:
Joe Perches1b5d2792020-11-20 15:16:09 -08002942 pm8001_dbg(pm8001_ha, IO, "IO_XFER_ERROR_PEER_ABORTED\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302943 ts->resp = SAS_TASK_COMPLETE;
2944 ts->stat = SAS_NAK_R_ERR;
2945 break;
2946 case IO_XFER_ERROR_REJECTED_NCQ_MODE:
Joe Perches1b5d2792020-11-20 15:16:09 -08002947 pm8001_dbg(pm8001_ha, IO, "IO_XFER_ERROR_REJECTED_NCQ_MODE\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302948 ts->resp = SAS_TASK_COMPLETE;
2949 ts->stat = SAS_DATA_UNDERRUN;
2950 break;
2951 case IO_XFER_OPEN_RETRY_TIMEOUT:
Joe Perches1b5d2792020-11-20 15:16:09 -08002952 pm8001_dbg(pm8001_ha, IO, "IO_XFER_OPEN_RETRY_TIMEOUT\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302953 ts->resp = SAS_TASK_COMPLETE;
2954 ts->stat = SAS_OPEN_TO;
2955 break;
2956 case IO_XFER_ERROR_UNEXPECTED_PHASE:
Joe Perches1b5d2792020-11-20 15:16:09 -08002957 pm8001_dbg(pm8001_ha, IO, "IO_XFER_ERROR_UNEXPECTED_PHASE\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302958 ts->resp = SAS_TASK_COMPLETE;
2959 ts->stat = SAS_OPEN_TO;
2960 break;
2961 case IO_XFER_ERROR_XFER_RDY_OVERRUN:
Joe Perches1b5d2792020-11-20 15:16:09 -08002962 pm8001_dbg(pm8001_ha, IO, "IO_XFER_ERROR_XFER_RDY_OVERRUN\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302963 ts->resp = SAS_TASK_COMPLETE;
2964 ts->stat = SAS_OPEN_TO;
2965 break;
2966 case IO_XFER_ERROR_XFER_RDY_NOT_EXPECTED:
Joe Perches1b5d2792020-11-20 15:16:09 -08002967 pm8001_dbg(pm8001_ha, IO,
2968 "IO_XFER_ERROR_XFER_RDY_NOT_EXPECTED\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302969 ts->resp = SAS_TASK_COMPLETE;
2970 ts->stat = SAS_OPEN_TO;
2971 break;
2972 case IO_XFER_ERROR_OFFSET_MISMATCH:
Joe Perches1b5d2792020-11-20 15:16:09 -08002973 pm8001_dbg(pm8001_ha, IO, "IO_XFER_ERROR_OFFSET_MISMATCH\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302974 ts->resp = SAS_TASK_COMPLETE;
2975 ts->stat = SAS_OPEN_TO;
2976 break;
2977 case IO_XFER_ERROR_XFER_ZERO_DATA_LEN:
Joe Perches1b5d2792020-11-20 15:16:09 -08002978 pm8001_dbg(pm8001_ha, IO,
2979 "IO_XFER_ERROR_XFER_ZERO_DATA_LEN\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302980 ts->resp = SAS_TASK_COMPLETE;
2981 ts->stat = SAS_OPEN_TO;
2982 break;
2983 case IO_XFER_CMD_FRAME_ISSUED:
Joe Perches1b5d2792020-11-20 15:16:09 -08002984 pm8001_dbg(pm8001_ha, IO, "IO_XFER_CMD_FRAME_ISSUED\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302985 break;
2986 case IO_XFER_PIO_SETUP_ERROR:
Joe Perches1b5d2792020-11-20 15:16:09 -08002987 pm8001_dbg(pm8001_ha, IO, "IO_XFER_PIO_SETUP_ERROR\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302988 ts->resp = SAS_TASK_COMPLETE;
2989 ts->stat = SAS_OPEN_TO;
2990 break;
Sakthivel Ka6cb3d02013-03-19 18:08:40 +05302991 case IO_XFER_ERROR_INTERNAL_CRC_ERROR:
Joe Perches1b5d2792020-11-20 15:16:09 -08002992 pm8001_dbg(pm8001_ha, FAIL,
2993 "IO_XFR_ERROR_INTERNAL_CRC_ERROR\n");
Sakthivel Ka6cb3d02013-03-19 18:08:40 +05302994 /* TBC: used default set values */
2995 ts->resp = SAS_TASK_COMPLETE;
2996 ts->stat = SAS_OPEN_TO;
2997 break;
2998 case IO_XFER_DMA_ACTIVATE_TIMEOUT:
Joe Perches1b5d2792020-11-20 15:16:09 -08002999 pm8001_dbg(pm8001_ha, FAIL, "IO_XFR_DMA_ACTIVATE_TIMEOUT\n");
Sakthivel Ka6cb3d02013-03-19 18:08:40 +05303000 /* TBC: used default set values */
3001 ts->resp = SAS_TASK_COMPLETE;
3002 ts->stat = SAS_OPEN_TO;
3003 break;
Sakthivel Kf5860992013-04-17 16:37:02 +05303004 default:
Joe Perches1b5d2792020-11-20 15:16:09 -08003005 pm8001_dbg(pm8001_ha, IO, "Unknown status 0x%x\n", event);
Sakthivel Kf5860992013-04-17 16:37:02 +05303006 /* not allowed case. Therefore, return failed status */
3007 ts->resp = SAS_TASK_COMPLETE;
3008 ts->stat = SAS_OPEN_TO;
3009 break;
3010 }
3011 spin_lock_irqsave(&t->task_state_lock, flags);
3012 t->task_state_flags &= ~SAS_TASK_STATE_PENDING;
3013 t->task_state_flags &= ~SAS_TASK_AT_INITIATOR;
3014 t->task_state_flags |= SAS_TASK_STATE_DONE;
3015 if (unlikely((t->task_state_flags & SAS_TASK_STATE_ABORTED))) {
3016 spin_unlock_irqrestore(&t->task_state_lock, flags);
Joe Perches1b5d2792020-11-20 15:16:09 -08003017 pm8001_dbg(pm8001_ha, FAIL,
3018 "task 0x%p done with io_status 0x%x resp 0x%x stat 0x%x but aborted by upper layer!\n",
3019 t, event, ts->resp, ts->stat);
Sakthivel Kf5860992013-04-17 16:37:02 +05303020 pm8001_ccb_task_free(pm8001_ha, t, ccb, tag);
Suresh Thiagarajan2b01d812014-01-16 15:26:21 +05303021 } else {
Sakthivel Kf5860992013-04-17 16:37:02 +05303022 spin_unlock_irqrestore(&t->task_state_lock, flags);
Ajish Koshyb27a4052021-09-06 22:34:02 +05303023 spin_unlock_irqrestore(&circularQ->oq_lock,
3024 circularQ->lock_flags);
Suresh Thiagarajan2b01d812014-01-16 15:26:21 +05303025 pm8001_ccb_task_free_done(pm8001_ha, t, ccb, tag);
Ajish Koshyb27a4052021-09-06 22:34:02 +05303026 spin_lock_irqsave(&circularQ->oq_lock,
3027 circularQ->lock_flags);
Sakthivel Kf5860992013-04-17 16:37:02 +05303028 }
3029}
3030
3031/*See the comments for mpi_ssp_completion */
3032static void
3033mpi_smp_completion(struct pm8001_hba_info *pm8001_ha, void *piomb)
3034{
3035 u32 param, i;
3036 struct sas_task *t;
3037 struct pm8001_ccb_info *ccb;
3038 unsigned long flags;
3039 u32 status;
3040 u32 tag;
3041 struct smp_completion_resp *psmpPayload;
3042 struct task_status_struct *ts;
3043 struct pm8001_device *pm8001_dev;
Sakthivel Kf5860992013-04-17 16:37:02 +05303044
3045 psmpPayload = (struct smp_completion_resp *)(piomb + 4);
3046 status = le32_to_cpu(psmpPayload->status);
3047 tag = le32_to_cpu(psmpPayload->tag);
3048
3049 ccb = &pm8001_ha->ccb_info[tag];
3050 param = le32_to_cpu(psmpPayload->param);
3051 t = ccb->task;
3052 ts = &t->task_status;
3053 pm8001_dev = ccb->device;
3054 if (status)
Joe Perches1b5d2792020-11-20 15:16:09 -08003055 pm8001_dbg(pm8001_ha, FAIL, "smp IO status 0x%x\n", status);
Sakthivel Kf5860992013-04-17 16:37:02 +05303056 if (unlikely(!t || !t->lldd_task || !t->dev))
3057 return;
3058
Joe Perches1b5d2792020-11-20 15:16:09 -08003059 pm8001_dbg(pm8001_ha, DEV, "tag::0x%x status::0x%x\n", tag, status);
peter chang73706722019-11-14 15:39:02 +05303060
Sakthivel Kf5860992013-04-17 16:37:02 +05303061 switch (status) {
3062
3063 case IO_SUCCESS:
Joe Perches1b5d2792020-11-20 15:16:09 -08003064 pm8001_dbg(pm8001_ha, IO, "IO_SUCCESS\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303065 ts->resp = SAS_TASK_COMPLETE;
Bart Van Assched377f412021-05-23 19:54:55 -07003066 ts->stat = SAS_SAM_STAT_GOOD;
Sakthivel Kf5860992013-04-17 16:37:02 +05303067 if (pm8001_dev)
Viswas G4a2efd42020-11-02 22:25:26 +05303068 atomic_dec(&pm8001_dev->running_req);
Sakthivel Kf5860992013-04-17 16:37:02 +05303069 if (pm8001_ha->smp_exp_mode == SMP_DIRECT) {
John Garry2fe24342021-12-13 18:10:48 +08003070 struct scatterlist *sg_resp = &t->smp_task.smp_resp;
3071 u8 *payload;
3072 void *to;
3073
Joe Perches1b5d2792020-11-20 15:16:09 -08003074 pm8001_dbg(pm8001_ha, IO,
3075 "DIRECT RESPONSE Length:%d\n",
3076 param);
John Garry2fe24342021-12-13 18:10:48 +08003077 to = kmap_atomic(sg_page(sg_resp));
3078 payload = to + sg_resp->offset;
Sakthivel Kf5860992013-04-17 16:37:02 +05303079 for (i = 0; i < param; i++) {
John Garry2fe24342021-12-13 18:10:48 +08003080 *(payload + i) = psmpPayload->_r_a[i];
Joe Perches1b5d2792020-11-20 15:16:09 -08003081 pm8001_dbg(pm8001_ha, IO,
3082 "SMP Byte%d DMA data 0x%x psmp 0x%x\n",
John Garry2fe24342021-12-13 18:10:48 +08003083 i, *(payload + i),
Joe Perches1b5d2792020-11-20 15:16:09 -08003084 psmpPayload->_r_a[i]);
Sakthivel Kf5860992013-04-17 16:37:02 +05303085 }
John Garry2fe24342021-12-13 18:10:48 +08003086 kunmap_atomic(to);
Sakthivel Kf5860992013-04-17 16:37:02 +05303087 }
3088 break;
3089 case IO_ABORTED:
Joe Perches1b5d2792020-11-20 15:16:09 -08003090 pm8001_dbg(pm8001_ha, IO, "IO_ABORTED IOMB\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303091 ts->resp = SAS_TASK_COMPLETE;
3092 ts->stat = SAS_ABORTED_TASK;
3093 if (pm8001_dev)
Viswas G4a2efd42020-11-02 22:25:26 +05303094 atomic_dec(&pm8001_dev->running_req);
Sakthivel Kf5860992013-04-17 16:37:02 +05303095 break;
3096 case IO_OVERFLOW:
Joe Perches1b5d2792020-11-20 15:16:09 -08003097 pm8001_dbg(pm8001_ha, IO, "IO_UNDERFLOW\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303098 ts->resp = SAS_TASK_COMPLETE;
3099 ts->stat = SAS_DATA_OVERRUN;
3100 ts->residual = 0;
3101 if (pm8001_dev)
Viswas G4a2efd42020-11-02 22:25:26 +05303102 atomic_dec(&pm8001_dev->running_req);
Sakthivel Kf5860992013-04-17 16:37:02 +05303103 break;
3104 case IO_NO_DEVICE:
Joe Perches1b5d2792020-11-20 15:16:09 -08003105 pm8001_dbg(pm8001_ha, IO, "IO_NO_DEVICE\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303106 ts->resp = SAS_TASK_COMPLETE;
3107 ts->stat = SAS_PHY_DOWN;
3108 break;
3109 case IO_ERROR_HW_TIMEOUT:
Joe Perches1b5d2792020-11-20 15:16:09 -08003110 pm8001_dbg(pm8001_ha, IO, "IO_ERROR_HW_TIMEOUT\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303111 ts->resp = SAS_TASK_COMPLETE;
Bart Van Assched377f412021-05-23 19:54:55 -07003112 ts->stat = SAS_SAM_STAT_BUSY;
Sakthivel Kf5860992013-04-17 16:37:02 +05303113 break;
3114 case IO_XFER_ERROR_BREAK:
Joe Perches1b5d2792020-11-20 15:16:09 -08003115 pm8001_dbg(pm8001_ha, IO, "IO_XFER_ERROR_BREAK\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303116 ts->resp = SAS_TASK_COMPLETE;
Bart Van Assched377f412021-05-23 19:54:55 -07003117 ts->stat = SAS_SAM_STAT_BUSY;
Sakthivel Kf5860992013-04-17 16:37:02 +05303118 break;
3119 case IO_XFER_ERROR_PHY_NOT_READY:
Joe Perches1b5d2792020-11-20 15:16:09 -08003120 pm8001_dbg(pm8001_ha, IO, "IO_XFER_ERROR_PHY_NOT_READY\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303121 ts->resp = SAS_TASK_COMPLETE;
Bart Van Assched377f412021-05-23 19:54:55 -07003122 ts->stat = SAS_SAM_STAT_BUSY;
Sakthivel Kf5860992013-04-17 16:37:02 +05303123 break;
3124 case IO_OPEN_CNX_ERROR_PROTOCOL_NOT_SUPPORTED:
Joe Perches1b5d2792020-11-20 15:16:09 -08003125 pm8001_dbg(pm8001_ha, IO,
3126 "IO_OPEN_CNX_ERROR_PROTOCOL_NOT_SUPPORTED\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303127 ts->resp = SAS_TASK_COMPLETE;
3128 ts->stat = SAS_OPEN_REJECT;
3129 ts->open_rej_reason = SAS_OREJ_UNKNOWN;
3130 break;
3131 case IO_OPEN_CNX_ERROR_ZONE_VIOLATION:
Joe Perches1b5d2792020-11-20 15:16:09 -08003132 pm8001_dbg(pm8001_ha, IO,
3133 "IO_OPEN_CNX_ERROR_ZONE_VIOLATION\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303134 ts->resp = SAS_TASK_COMPLETE;
3135 ts->stat = SAS_OPEN_REJECT;
3136 ts->open_rej_reason = SAS_OREJ_UNKNOWN;
3137 break;
3138 case IO_OPEN_CNX_ERROR_BREAK:
Joe Perches1b5d2792020-11-20 15:16:09 -08003139 pm8001_dbg(pm8001_ha, IO, "IO_OPEN_CNX_ERROR_BREAK\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303140 ts->resp = SAS_TASK_COMPLETE;
3141 ts->stat = SAS_OPEN_REJECT;
3142 ts->open_rej_reason = SAS_OREJ_RSVD_CONT0;
3143 break;
3144 case IO_OPEN_CNX_ERROR_IT_NEXUS_LOSS:
Sakthivel Ka6cb3d02013-03-19 18:08:40 +05303145 case IO_XFER_OPEN_RETRY_BACKOFF_THRESHOLD_REACHED:
3146 case IO_OPEN_CNX_ERROR_IT_NEXUS_LOSS_OPEN_TMO:
3147 case IO_OPEN_CNX_ERROR_IT_NEXUS_LOSS_NO_DEST:
3148 case IO_OPEN_CNX_ERROR_IT_NEXUS_LOSS_OPEN_COLLIDE:
3149 case IO_OPEN_CNX_ERROR_IT_NEXUS_LOSS_PATHWAY_BLOCKED:
Joe Perches1b5d2792020-11-20 15:16:09 -08003150 pm8001_dbg(pm8001_ha, IO, "IO_OPEN_CNX_ERROR_IT_NEXUS_LOSS\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303151 ts->resp = SAS_TASK_COMPLETE;
3152 ts->stat = SAS_OPEN_REJECT;
3153 ts->open_rej_reason = SAS_OREJ_UNKNOWN;
3154 pm8001_handle_event(pm8001_ha,
3155 pm8001_dev,
3156 IO_OPEN_CNX_ERROR_IT_NEXUS_LOSS);
3157 break;
3158 case IO_OPEN_CNX_ERROR_BAD_DESTINATION:
Joe Perches1b5d2792020-11-20 15:16:09 -08003159 pm8001_dbg(pm8001_ha, IO,
3160 "IO_OPEN_CNX_ERROR_BAD_DESTINATION\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303161 ts->resp = SAS_TASK_COMPLETE;
3162 ts->stat = SAS_OPEN_REJECT;
3163 ts->open_rej_reason = SAS_OREJ_BAD_DEST;
3164 break;
3165 case IO_OPEN_CNX_ERROR_CONNECTION_RATE_NOT_SUPPORTED:
Joe Perches1b5d2792020-11-20 15:16:09 -08003166 pm8001_dbg(pm8001_ha, IO,
3167 "IO_OPEN_CNX_ERROR_CONNECTION_RATE_NOT_SUPPORTED\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303168 ts->resp = SAS_TASK_COMPLETE;
3169 ts->stat = SAS_OPEN_REJECT;
3170 ts->open_rej_reason = SAS_OREJ_CONN_RATE;
3171 break;
3172 case IO_OPEN_CNX_ERROR_WRONG_DESTINATION:
Joe Perches1b5d2792020-11-20 15:16:09 -08003173 pm8001_dbg(pm8001_ha, IO,
3174 "IO_OPEN_CNX_ERROR_WRONG_DESTINATION\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303175 ts->resp = SAS_TASK_COMPLETE;
3176 ts->stat = SAS_OPEN_REJECT;
3177 ts->open_rej_reason = SAS_OREJ_WRONG_DEST;
3178 break;
3179 case IO_XFER_ERROR_RX_FRAME:
Joe Perches1b5d2792020-11-20 15:16:09 -08003180 pm8001_dbg(pm8001_ha, IO, "IO_XFER_ERROR_RX_FRAME\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303181 ts->resp = SAS_TASK_COMPLETE;
3182 ts->stat = SAS_DEV_NO_RESPONSE;
3183 break;
3184 case IO_XFER_OPEN_RETRY_TIMEOUT:
Joe Perches1b5d2792020-11-20 15:16:09 -08003185 pm8001_dbg(pm8001_ha, IO, "IO_XFER_OPEN_RETRY_TIMEOUT\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303186 ts->resp = SAS_TASK_COMPLETE;
3187 ts->stat = SAS_OPEN_REJECT;
3188 ts->open_rej_reason = SAS_OREJ_RSVD_RETRY;
3189 break;
3190 case IO_ERROR_INTERNAL_SMP_RESOURCE:
Joe Perches1b5d2792020-11-20 15:16:09 -08003191 pm8001_dbg(pm8001_ha, IO, "IO_ERROR_INTERNAL_SMP_RESOURCE\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303192 ts->resp = SAS_TASK_COMPLETE;
3193 ts->stat = SAS_QUEUE_FULL;
3194 break;
3195 case IO_PORT_IN_RESET:
Joe Perches1b5d2792020-11-20 15:16:09 -08003196 pm8001_dbg(pm8001_ha, IO, "IO_PORT_IN_RESET\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303197 ts->resp = SAS_TASK_COMPLETE;
3198 ts->stat = SAS_OPEN_REJECT;
3199 ts->open_rej_reason = SAS_OREJ_RSVD_RETRY;
3200 break;
3201 case IO_DS_NON_OPERATIONAL:
Joe Perches1b5d2792020-11-20 15:16:09 -08003202 pm8001_dbg(pm8001_ha, IO, "IO_DS_NON_OPERATIONAL\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303203 ts->resp = SAS_TASK_COMPLETE;
3204 ts->stat = SAS_DEV_NO_RESPONSE;
3205 break;
3206 case IO_DS_IN_RECOVERY:
Joe Perches1b5d2792020-11-20 15:16:09 -08003207 pm8001_dbg(pm8001_ha, IO, "IO_DS_IN_RECOVERY\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303208 ts->resp = SAS_TASK_COMPLETE;
3209 ts->stat = SAS_OPEN_REJECT;
3210 ts->open_rej_reason = SAS_OREJ_RSVD_RETRY;
3211 break;
3212 case IO_OPEN_CNX_ERROR_HW_RESOURCE_BUSY:
Joe Perches1b5d2792020-11-20 15:16:09 -08003213 pm8001_dbg(pm8001_ha, IO,
3214 "IO_OPEN_CNX_ERROR_HW_RESOURCE_BUSY\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303215 ts->resp = SAS_TASK_COMPLETE;
3216 ts->stat = SAS_OPEN_REJECT;
3217 ts->open_rej_reason = SAS_OREJ_RSVD_RETRY;
3218 break;
3219 default:
Joe Perches1b5d2792020-11-20 15:16:09 -08003220 pm8001_dbg(pm8001_ha, DEVIO, "Unknown status 0x%x\n", status);
Sakthivel Kf5860992013-04-17 16:37:02 +05303221 ts->resp = SAS_TASK_COMPLETE;
3222 ts->stat = SAS_DEV_NO_RESPONSE;
3223 /* not allowed case. Therefore, return failed status */
3224 break;
3225 }
3226 spin_lock_irqsave(&t->task_state_lock, flags);
3227 t->task_state_flags &= ~SAS_TASK_STATE_PENDING;
3228 t->task_state_flags &= ~SAS_TASK_AT_INITIATOR;
3229 t->task_state_flags |= SAS_TASK_STATE_DONE;
3230 if (unlikely((t->task_state_flags & SAS_TASK_STATE_ABORTED))) {
3231 spin_unlock_irqrestore(&t->task_state_lock, flags);
Joe Perches1b5d2792020-11-20 15:16:09 -08003232 pm8001_dbg(pm8001_ha, FAIL,
3233 "task 0x%p done with io_status 0x%x resp 0x%xstat 0x%x but aborted by upper layer!\n",
3234 t, status, ts->resp, ts->stat);
Sakthivel Kf5860992013-04-17 16:37:02 +05303235 pm8001_ccb_task_free(pm8001_ha, t, ccb, tag);
3236 } else {
3237 spin_unlock_irqrestore(&t->task_state_lock, flags);
3238 pm8001_ccb_task_free(pm8001_ha, t, ccb, tag);
3239 mb();/* in order to force CPU ordering */
3240 t->task_done(t);
3241 }
3242}
3243
3244/**
Randy Dunlapbb6beab2021-07-08 09:57:23 -07003245 * pm80xx_hw_event_ack_req- For PM8001, some events need to acknowledge to FW.
Sakthivel Kf5860992013-04-17 16:37:02 +05303246 * @pm8001_ha: our hba card information
3247 * @Qnum: the outbound queue message number.
3248 * @SEA: source of event to ack
3249 * @port_id: port id.
3250 * @phyId: phy id.
3251 * @param0: parameter 0.
3252 * @param1: parameter 1.
3253 */
3254static void pm80xx_hw_event_ack_req(struct pm8001_hba_info *pm8001_ha,
3255 u32 Qnum, u32 SEA, u32 port_id, u32 phyId, u32 param0, u32 param1)
3256{
3257 struct hw_event_ack_req payload;
3258 u32 opc = OPC_INB_SAS_HW_EVENT_ACK;
3259
3260 struct inbound_queue_table *circularQ;
3261
3262 memset((u8 *)&payload, 0, sizeof(payload));
3263 circularQ = &pm8001_ha->inbnd_q_tbl[Qnum];
3264 payload.tag = cpu_to_le32(1);
3265 payload.phyid_sea_portid = cpu_to_le32(((SEA & 0xFFFF) << 8) |
3266 ((phyId & 0xFF) << 24) | (port_id & 0xFF));
3267 payload.param0 = cpu_to_le32(param0);
3268 payload.param1 = cpu_to_le32(param1);
peter chang91a43fa2019-11-14 15:39:05 +05303269 pm8001_mpi_build_cmd(pm8001_ha, circularQ, opc, &payload,
3270 sizeof(payload), 0);
Sakthivel Kf5860992013-04-17 16:37:02 +05303271}
3272
3273static int pm80xx_chip_phy_ctl_req(struct pm8001_hba_info *pm8001_ha,
3274 u32 phyId, u32 phy_op);
3275
Viswas G8414cd82015-08-11 15:06:30 +05303276static void hw_event_port_recover(struct pm8001_hba_info *pm8001_ha,
3277 void *piomb)
3278{
3279 struct hw_event_resp *pPayload = (struct hw_event_resp *)(piomb + 4);
3280 u32 phyid_npip_portstate = le32_to_cpu(pPayload->phyid_npip_portstate);
3281 u8 phy_id = (u8)((phyid_npip_portstate & 0xFF0000) >> 16);
3282 u32 lr_status_evt_portid =
3283 le32_to_cpu(pPayload->lr_status_evt_portid);
3284 u8 deviceType = pPayload->sas_identify.dev_type;
3285 u8 link_rate = (u8)((lr_status_evt_portid & 0xF0000000) >> 28);
3286 struct pm8001_phy *phy = &pm8001_ha->phy[phy_id];
3287 u8 port_id = (u8)(lr_status_evt_portid & 0x000000FF);
3288 struct pm8001_port *port = &pm8001_ha->port[port_id];
3289
3290 if (deviceType == SAS_END_DEVICE) {
3291 pm80xx_chip_phy_ctl_req(pm8001_ha, phy_id,
3292 PHY_NOTIFY_ENABLE_SPINUP);
3293 }
3294
3295 port->wide_port_phymap |= (1U << phy_id);
3296 pm8001_get_lrate_mode(phy, link_rate);
3297 phy->sas_phy.oob_mode = SAS_OOB_MODE;
3298 phy->phy_state = PHY_STATE_LINK_UP_SPCV;
3299 phy->phy_attached = 1;
3300}
3301
Sakthivel Kf5860992013-04-17 16:37:02 +05303302/**
Randy Dunlapbb6beab2021-07-08 09:57:23 -07003303 * hw_event_sas_phy_up - FW tells me a SAS phy up event.
Sakthivel Kf5860992013-04-17 16:37:02 +05303304 * @pm8001_ha: our hba card information
3305 * @piomb: IO message buffer
3306 */
3307static void
3308hw_event_sas_phy_up(struct pm8001_hba_info *pm8001_ha, void *piomb)
3309{
3310 struct hw_event_resp *pPayload =
3311 (struct hw_event_resp *)(piomb + 4);
3312 u32 lr_status_evt_portid =
3313 le32_to_cpu(pPayload->lr_status_evt_portid);
3314 u32 phyid_npip_portstate = le32_to_cpu(pPayload->phyid_npip_portstate);
3315
3316 u8 link_rate =
3317 (u8)((lr_status_evt_portid & 0xF0000000) >> 28);
3318 u8 port_id = (u8)(lr_status_evt_portid & 0x000000FF);
3319 u8 phy_id =
3320 (u8)((phyid_npip_portstate & 0xFF0000) >> 16);
3321 u8 portstate = (u8)(phyid_npip_portstate & 0x0000000F);
3322
3323 struct pm8001_port *port = &pm8001_ha->port[port_id];
Sakthivel Kf5860992013-04-17 16:37:02 +05303324 struct pm8001_phy *phy = &pm8001_ha->phy[phy_id];
3325 unsigned long flags;
3326 u8 deviceType = pPayload->sas_identify.dev_type;
Ajish Koshy08d0a992021-09-06 22:34:01 +05303327 phy->port = port;
3328 port->port_id = port_id;
Sakthivel Kf5860992013-04-17 16:37:02 +05303329 port->port_state = portstate;
Viswas G8414cd82015-08-11 15:06:30 +05303330 port->wide_port_phymap |= (1U << phy_id);
Nikith Ganigarakoppal7d029002013-10-30 16:23:47 +05303331 phy->phy_state = PHY_STATE_LINK_UP_SPCV;
Joe Perches1b5d2792020-11-20 15:16:09 -08003332 pm8001_dbg(pm8001_ha, MSG,
3333 "portid:%d; phyid:%d; linkrate:%d; portstate:%x; devicetype:%x\n",
3334 port_id, phy_id, link_rate, portstate, deviceType);
Sakthivel Kf5860992013-04-17 16:37:02 +05303335
3336 switch (deviceType) {
3337 case SAS_PHY_UNUSED:
Joe Perches1b5d2792020-11-20 15:16:09 -08003338 pm8001_dbg(pm8001_ha, MSG, "device type no device.\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303339 break;
3340 case SAS_END_DEVICE:
Joe Perches1b5d2792020-11-20 15:16:09 -08003341 pm8001_dbg(pm8001_ha, MSG, "end device.\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303342 pm80xx_chip_phy_ctl_req(pm8001_ha, phy_id,
3343 PHY_NOTIFY_ENABLE_SPINUP);
3344 port->port_attached = 1;
3345 pm8001_get_lrate_mode(phy, link_rate);
3346 break;
3347 case SAS_EDGE_EXPANDER_DEVICE:
Joe Perches1b5d2792020-11-20 15:16:09 -08003348 pm8001_dbg(pm8001_ha, MSG, "expander device.\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303349 port->port_attached = 1;
3350 pm8001_get_lrate_mode(phy, link_rate);
3351 break;
3352 case SAS_FANOUT_EXPANDER_DEVICE:
Joe Perches1b5d2792020-11-20 15:16:09 -08003353 pm8001_dbg(pm8001_ha, MSG, "fanout expander device.\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303354 port->port_attached = 1;
3355 pm8001_get_lrate_mode(phy, link_rate);
3356 break;
3357 default:
Joe Perches1b5d2792020-11-20 15:16:09 -08003358 pm8001_dbg(pm8001_ha, DEVIO, "unknown device type(%x)\n",
3359 deviceType);
Sakthivel Kf5860992013-04-17 16:37:02 +05303360 break;
3361 }
3362 phy->phy_type |= PORT_TYPE_SAS;
3363 phy->identify.device_type = deviceType;
3364 phy->phy_attached = 1;
3365 if (phy->identify.device_type == SAS_END_DEVICE)
3366 phy->identify.target_port_protocols = SAS_PROTOCOL_SSP;
3367 else if (phy->identify.device_type != SAS_PHY_UNUSED)
3368 phy->identify.target_port_protocols = SAS_PROTOCOL_SMP;
3369 phy->sas_phy.oob_mode = SAS_OOB_MODE;
Ahmed S. Darwishde6d7542021-01-18 11:09:51 +01003370 sas_notify_phy_event(&phy->sas_phy, PHYE_OOB_DONE, GFP_ATOMIC);
Sakthivel Kf5860992013-04-17 16:37:02 +05303371 spin_lock_irqsave(&phy->sas_phy.frame_rcvd_lock, flags);
3372 memcpy(phy->frame_rcvd, &pPayload->sas_identify,
3373 sizeof(struct sas_identify_frame)-4);
3374 phy->frame_rcvd_size = sizeof(struct sas_identify_frame) - 4;
3375 pm8001_get_attached_sas_addr(phy, phy->sas_phy.attached_sas_addr);
3376 spin_unlock_irqrestore(&phy->sas_phy.frame_rcvd_lock, flags);
3377 if (pm8001_ha->flags == PM8001F_RUN_TIME)
Ahmed S. Darwish4ba9e512020-11-26 14:29:39 +01003378 mdelay(200); /* delay a moment to wait for disk to spin up */
Sakthivel Kf5860992013-04-17 16:37:02 +05303379 pm8001_bytes_dmaed(pm8001_ha, phy_id);
3380}
3381
3382/**
Randy Dunlapbb6beab2021-07-08 09:57:23 -07003383 * hw_event_sata_phy_up - FW tells me a SATA phy up event.
Sakthivel Kf5860992013-04-17 16:37:02 +05303384 * @pm8001_ha: our hba card information
3385 * @piomb: IO message buffer
3386 */
3387static void
3388hw_event_sata_phy_up(struct pm8001_hba_info *pm8001_ha, void *piomb)
3389{
3390 struct hw_event_resp *pPayload =
3391 (struct hw_event_resp *)(piomb + 4);
3392 u32 phyid_npip_portstate = le32_to_cpu(pPayload->phyid_npip_portstate);
3393 u32 lr_status_evt_portid =
3394 le32_to_cpu(pPayload->lr_status_evt_portid);
3395 u8 link_rate =
3396 (u8)((lr_status_evt_portid & 0xF0000000) >> 28);
3397 u8 port_id = (u8)(lr_status_evt_portid & 0x000000FF);
3398 u8 phy_id =
3399 (u8)((phyid_npip_portstate & 0xFF0000) >> 16);
3400
3401 u8 portstate = (u8)(phyid_npip_portstate & 0x0000000F);
3402
3403 struct pm8001_port *port = &pm8001_ha->port[port_id];
Sakthivel Kf5860992013-04-17 16:37:02 +05303404 struct pm8001_phy *phy = &pm8001_ha->phy[phy_id];
3405 unsigned long flags;
Joe Perches1b5d2792020-11-20 15:16:09 -08003406 pm8001_dbg(pm8001_ha, DEVIO,
3407 "port id %d, phy id %d link_rate %d portstate 0x%x\n",
3408 port_id, phy_id, link_rate, portstate);
Sakthivel Kf5860992013-04-17 16:37:02 +05303409
Ajish Koshy08d0a992021-09-06 22:34:01 +05303410 phy->port = port;
3411 port->port_id = port_id;
Sakthivel Kf5860992013-04-17 16:37:02 +05303412 port->port_state = portstate;
Nikith Ganigarakoppal7d029002013-10-30 16:23:47 +05303413 phy->phy_state = PHY_STATE_LINK_UP_SPCV;
Sakthivel Kf5860992013-04-17 16:37:02 +05303414 port->port_attached = 1;
3415 pm8001_get_lrate_mode(phy, link_rate);
3416 phy->phy_type |= PORT_TYPE_SATA;
3417 phy->phy_attached = 1;
3418 phy->sas_phy.oob_mode = SATA_OOB_MODE;
Ahmed S. Darwishde6d7542021-01-18 11:09:51 +01003419 sas_notify_phy_event(&phy->sas_phy, PHYE_OOB_DONE, GFP_ATOMIC);
Sakthivel Kf5860992013-04-17 16:37:02 +05303420 spin_lock_irqsave(&phy->sas_phy.frame_rcvd_lock, flags);
3421 memcpy(phy->frame_rcvd, ((u8 *)&pPayload->sata_fis - 4),
3422 sizeof(struct dev_to_host_fis));
3423 phy->frame_rcvd_size = sizeof(struct dev_to_host_fis);
3424 phy->identify.target_port_protocols = SAS_PROTOCOL_SATA;
James Bottomleyaa9f8322013-05-07 14:44:06 -07003425 phy->identify.device_type = SAS_SATA_DEV;
Sakthivel Kf5860992013-04-17 16:37:02 +05303426 pm8001_get_attached_sas_addr(phy, phy->sas_phy.attached_sas_addr);
3427 spin_unlock_irqrestore(&phy->sas_phy.frame_rcvd_lock, flags);
3428 pm8001_bytes_dmaed(pm8001_ha, phy_id);
3429}
3430
3431/**
Randy Dunlapbb6beab2021-07-08 09:57:23 -07003432 * hw_event_phy_down - we should notify the libsas the phy is down.
Sakthivel Kf5860992013-04-17 16:37:02 +05303433 * @pm8001_ha: our hba card information
3434 * @piomb: IO message buffer
3435 */
3436static void
3437hw_event_phy_down(struct pm8001_hba_info *pm8001_ha, void *piomb)
3438{
3439 struct hw_event_resp *pPayload =
3440 (struct hw_event_resp *)(piomb + 4);
3441
3442 u32 lr_status_evt_portid =
3443 le32_to_cpu(pPayload->lr_status_evt_portid);
3444 u8 port_id = (u8)(lr_status_evt_portid & 0x000000FF);
3445 u32 phyid_npip_portstate = le32_to_cpu(pPayload->phyid_npip_portstate);
3446 u8 phy_id =
3447 (u8)((phyid_npip_portstate & 0xFF0000) >> 16);
3448 u8 portstate = (u8)(phyid_npip_portstate & 0x0000000F);
3449
3450 struct pm8001_port *port = &pm8001_ha->port[port_id];
3451 struct pm8001_phy *phy = &pm8001_ha->phy[phy_id];
Viswas G869ddbd2017-10-18 11:39:13 +05303452 u32 port_sata = (phy->phy_type & PORT_TYPE_SATA);
Sakthivel Kf5860992013-04-17 16:37:02 +05303453 port->port_state = portstate;
Sakthivel Kf5860992013-04-17 16:37:02 +05303454 phy->identify.device_type = 0;
3455 phy->phy_attached = 0;
Sakthivel Kf5860992013-04-17 16:37:02 +05303456 switch (portstate) {
3457 case PORT_VALID:
3458 break;
3459 case PORT_INVALID:
Joe Perches1b5d2792020-11-20 15:16:09 -08003460 pm8001_dbg(pm8001_ha, MSG, " PortInvalid portID %d\n",
3461 port_id);
3462 pm8001_dbg(pm8001_ha, MSG,
3463 " Last phy Down and port invalid\n");
Viswas G869ddbd2017-10-18 11:39:13 +05303464 if (port_sata) {
Viswas G8414cd82015-08-11 15:06:30 +05303465 phy->phy_type = 0;
3466 port->port_attached = 0;
3467 pm80xx_hw_event_ack_req(pm8001_ha, 0, HW_EVENT_PHY_DOWN,
3468 port_id, phy_id, 0, 0);
3469 }
3470 sas_phy_disconnected(&phy->sas_phy);
Sakthivel Kf5860992013-04-17 16:37:02 +05303471 break;
3472 case PORT_IN_RESET:
Joe Perches1b5d2792020-11-20 15:16:09 -08003473 pm8001_dbg(pm8001_ha, MSG, " Port In Reset portID %d\n",
3474 port_id);
Sakthivel Kf5860992013-04-17 16:37:02 +05303475 break;
3476 case PORT_NOT_ESTABLISHED:
Joe Perches1b5d2792020-11-20 15:16:09 -08003477 pm8001_dbg(pm8001_ha, MSG,
3478 " Phy Down and PORT_NOT_ESTABLISHED\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303479 port->port_attached = 0;
3480 break;
3481 case PORT_LOSTCOMM:
Joe Perches1b5d2792020-11-20 15:16:09 -08003482 pm8001_dbg(pm8001_ha, MSG, " Phy Down and PORT_LOSTCOMM\n");
3483 pm8001_dbg(pm8001_ha, MSG,
3484 " Last phy Down and port invalid\n");
Viswas G869ddbd2017-10-18 11:39:13 +05303485 if (port_sata) {
Viswas G8414cd82015-08-11 15:06:30 +05303486 port->port_attached = 0;
3487 phy->phy_type = 0;
3488 pm80xx_hw_event_ack_req(pm8001_ha, 0, HW_EVENT_PHY_DOWN,
3489 port_id, phy_id, 0, 0);
3490 }
3491 sas_phy_disconnected(&phy->sas_phy);
Sakthivel Kf5860992013-04-17 16:37:02 +05303492 break;
3493 default:
3494 port->port_attached = 0;
Joe Perches1b5d2792020-11-20 15:16:09 -08003495 pm8001_dbg(pm8001_ha, DEVIO,
3496 " Phy Down and(default) = 0x%x\n",
3497 portstate);
Sakthivel Kf5860992013-04-17 16:37:02 +05303498 break;
3499
3500 }
John Garry121181f2021-01-18 11:09:38 +01003501 if (port_sata && (portstate != PORT_IN_RESET))
Ahmed S. Darwishde6d7542021-01-18 11:09:51 +01003502 sas_notify_phy_event(&phy->sas_phy, PHYE_LOSS_OF_SIGNAL,
3503 GFP_ATOMIC);
Sakthivel Kf5860992013-04-17 16:37:02 +05303504}
3505
3506static int mpi_phy_start_resp(struct pm8001_hba_info *pm8001_ha, void *piomb)
3507{
3508 struct phy_start_resp *pPayload =
3509 (struct phy_start_resp *)(piomb + 4);
3510 u32 status =
3511 le32_to_cpu(pPayload->status);
3512 u32 phy_id =
Igor Pylypiv744798f2021-11-01 16:28:22 -07003513 le32_to_cpu(pPayload->phyid) & 0xFF;
Sakthivel Kf5860992013-04-17 16:37:02 +05303514 struct pm8001_phy *phy = &pm8001_ha->phy[phy_id];
3515
Joe Perches1b5d2792020-11-20 15:16:09 -08003516 pm8001_dbg(pm8001_ha, INIT,
3517 "phy start resp status:0x%x, phyid:0x%x\n",
3518 status, phy_id);
Ajish Koshyd1acd812021-05-05 17:31:03 +05303519 if (status == 0)
Deepak Ukeycd135752018-09-11 14:18:02 +05303520 phy->phy_state = PHY_LINK_DOWN;
Ajish Koshyd1acd812021-05-05 17:31:03 +05303521
3522 if (pm8001_ha->flags == PM8001F_RUN_TIME &&
3523 phy->enable_completion != NULL) {
3524 complete(phy->enable_completion);
3525 phy->enable_completion = NULL;
Sakthivel Kf5860992013-04-17 16:37:02 +05303526 }
3527 return 0;
3528
3529}
3530
3531/**
Randy Dunlapbb6beab2021-07-08 09:57:23 -07003532 * mpi_thermal_hw_event - a thermal hw event has come.
Sakthivel Kf5860992013-04-17 16:37:02 +05303533 * @pm8001_ha: our hba card information
3534 * @piomb: IO message buffer
3535 */
3536static int mpi_thermal_hw_event(struct pm8001_hba_info *pm8001_ha, void *piomb)
3537{
3538 struct thermal_hw_event *pPayload =
3539 (struct thermal_hw_event *)(piomb + 4);
3540
3541 u32 thermal_event = le32_to_cpu(pPayload->thermal_event);
3542 u32 rht_lht = le32_to_cpu(pPayload->rht_lht);
3543
3544 if (thermal_event & 0x40) {
Joe Perches1b5d2792020-11-20 15:16:09 -08003545 pm8001_dbg(pm8001_ha, IO,
3546 "Thermal Event: Local high temperature violated!\n");
3547 pm8001_dbg(pm8001_ha, IO,
3548 "Thermal Event: Measured local high temperature %d\n",
3549 ((rht_lht & 0xFF00) >> 8));
Sakthivel Kf5860992013-04-17 16:37:02 +05303550 }
3551 if (thermal_event & 0x10) {
Joe Perches1b5d2792020-11-20 15:16:09 -08003552 pm8001_dbg(pm8001_ha, IO,
3553 "Thermal Event: Remote high temperature violated!\n");
3554 pm8001_dbg(pm8001_ha, IO,
3555 "Thermal Event: Measured remote high temperature %d\n",
3556 ((rht_lht & 0xFF000000) >> 24));
Sakthivel Kf5860992013-04-17 16:37:02 +05303557 }
3558 return 0;
3559}
3560
3561/**
Randy Dunlapbb6beab2021-07-08 09:57:23 -07003562 * mpi_hw_event - The hw event has come.
Sakthivel Kf5860992013-04-17 16:37:02 +05303563 * @pm8001_ha: our hba card information
3564 * @piomb: IO message buffer
3565 */
3566static int mpi_hw_event(struct pm8001_hba_info *pm8001_ha, void *piomb)
3567{
Viswas G8414cd82015-08-11 15:06:30 +05303568 unsigned long flags, i;
Sakthivel Kf5860992013-04-17 16:37:02 +05303569 struct hw_event_resp *pPayload =
3570 (struct hw_event_resp *)(piomb + 4);
3571 u32 lr_status_evt_portid =
3572 le32_to_cpu(pPayload->lr_status_evt_portid);
3573 u32 phyid_npip_portstate = le32_to_cpu(pPayload->phyid_npip_portstate);
3574 u8 port_id = (u8)(lr_status_evt_portid & 0x000000FF);
3575 u8 phy_id =
3576 (u8)((phyid_npip_portstate & 0xFF0000) >> 16);
3577 u16 eventType =
3578 (u16)((lr_status_evt_portid & 0x00FFFF00) >> 8);
3579 u8 status =
3580 (u8)((lr_status_evt_portid & 0x0F000000) >> 24);
Sakthivel Kf5860992013-04-17 16:37:02 +05303581 struct sas_ha_struct *sas_ha = pm8001_ha->sas;
3582 struct pm8001_phy *phy = &pm8001_ha->phy[phy_id];
Viswas G8414cd82015-08-11 15:06:30 +05303583 struct pm8001_port *port = &pm8001_ha->port[port_id];
Sakthivel Kf5860992013-04-17 16:37:02 +05303584 struct asd_sas_phy *sas_phy = sas_ha->sas_phy[phy_id];
Joe Perches1b5d2792020-11-20 15:16:09 -08003585 pm8001_dbg(pm8001_ha, DEV,
3586 "portid:%d phyid:%d event:0x%x status:0x%x\n",
3587 port_id, phy_id, eventType, status);
Sakthivel Kf5860992013-04-17 16:37:02 +05303588
3589 switch (eventType) {
3590
3591 case HW_EVENT_SAS_PHY_UP:
Joe Perches1b5d2792020-11-20 15:16:09 -08003592 pm8001_dbg(pm8001_ha, MSG, "HW_EVENT_PHY_START_STATUS\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303593 hw_event_sas_phy_up(pm8001_ha, piomb);
3594 break;
3595 case HW_EVENT_SATA_PHY_UP:
Joe Perches1b5d2792020-11-20 15:16:09 -08003596 pm8001_dbg(pm8001_ha, MSG, "HW_EVENT_SATA_PHY_UP\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303597 hw_event_sata_phy_up(pm8001_ha, piomb);
3598 break;
3599 case HW_EVENT_SATA_SPINUP_HOLD:
Joe Perches1b5d2792020-11-20 15:16:09 -08003600 pm8001_dbg(pm8001_ha, MSG, "HW_EVENT_SATA_SPINUP_HOLD\n");
Ahmed S. Darwishde6d7542021-01-18 11:09:51 +01003601 sas_notify_phy_event(&phy->sas_phy, PHYE_SPINUP_HOLD,
Ahmed S. Darwishcd4e8172021-01-18 11:09:45 +01003602 GFP_ATOMIC);
Sakthivel Kf5860992013-04-17 16:37:02 +05303603 break;
3604 case HW_EVENT_PHY_DOWN:
Joe Perches1b5d2792020-11-20 15:16:09 -08003605 pm8001_dbg(pm8001_ha, MSG, "HW_EVENT_PHY_DOWN\n");
Viswas G869ddbd2017-10-18 11:39:13 +05303606 hw_event_phy_down(pm8001_ha, piomb);
3607 if (pm8001_ha->reset_in_progress) {
Joe Perches1b5d2792020-11-20 15:16:09 -08003608 pm8001_dbg(pm8001_ha, MSG, "Reset in progress\n");
Viswas G869ddbd2017-10-18 11:39:13 +05303609 return 0;
3610 }
Sakthivel Kf5860992013-04-17 16:37:02 +05303611 phy->phy_attached = 0;
Deepak Ukeycd135752018-09-11 14:18:02 +05303612 phy->phy_state = PHY_LINK_DISABLE;
Sakthivel Kf5860992013-04-17 16:37:02 +05303613 break;
3614 case HW_EVENT_PORT_INVALID:
Joe Perches1b5d2792020-11-20 15:16:09 -08003615 pm8001_dbg(pm8001_ha, MSG, "HW_EVENT_PORT_INVALID\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303616 sas_phy_disconnected(sas_phy);
3617 phy->phy_attached = 0;
Ahmed S. Darwishde6d7542021-01-18 11:09:51 +01003618 sas_notify_port_event(sas_phy, PORTE_LINK_RESET_ERR,
Ahmed S. Darwishcd4e8172021-01-18 11:09:45 +01003619 GFP_ATOMIC);
Sakthivel Kf5860992013-04-17 16:37:02 +05303620 break;
3621 /* the broadcast change primitive received, tell the LIBSAS this event
3622 to revalidate the sas domain*/
3623 case HW_EVENT_BROADCAST_CHANGE:
Joe Perches1b5d2792020-11-20 15:16:09 -08003624 pm8001_dbg(pm8001_ha, MSG, "HW_EVENT_BROADCAST_CHANGE\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303625 pm80xx_hw_event_ack_req(pm8001_ha, 0, HW_EVENT_BROADCAST_CHANGE,
3626 port_id, phy_id, 1, 0);
3627 spin_lock_irqsave(&sas_phy->sas_prim_lock, flags);
3628 sas_phy->sas_prim = HW_EVENT_BROADCAST_CHANGE;
3629 spin_unlock_irqrestore(&sas_phy->sas_prim_lock, flags);
Ahmed S. Darwishde6d7542021-01-18 11:09:51 +01003630 sas_notify_port_event(sas_phy, PORTE_BROADCAST_RCVD,
Ahmed S. Darwishcd4e8172021-01-18 11:09:45 +01003631 GFP_ATOMIC);
Sakthivel Kf5860992013-04-17 16:37:02 +05303632 break;
3633 case HW_EVENT_PHY_ERROR:
Joe Perches1b5d2792020-11-20 15:16:09 -08003634 pm8001_dbg(pm8001_ha, MSG, "HW_EVENT_PHY_ERROR\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303635 sas_phy_disconnected(&phy->sas_phy);
3636 phy->phy_attached = 0;
Ahmed S. Darwishde6d7542021-01-18 11:09:51 +01003637 sas_notify_phy_event(&phy->sas_phy, PHYE_OOB_ERROR, GFP_ATOMIC);
Sakthivel Kf5860992013-04-17 16:37:02 +05303638 break;
3639 case HW_EVENT_BROADCAST_EXP:
Joe Perches1b5d2792020-11-20 15:16:09 -08003640 pm8001_dbg(pm8001_ha, MSG, "HW_EVENT_BROADCAST_EXP\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303641 spin_lock_irqsave(&sas_phy->sas_prim_lock, flags);
3642 sas_phy->sas_prim = HW_EVENT_BROADCAST_EXP;
3643 spin_unlock_irqrestore(&sas_phy->sas_prim_lock, flags);
Ahmed S. Darwishde6d7542021-01-18 11:09:51 +01003644 sas_notify_port_event(sas_phy, PORTE_BROADCAST_RCVD,
Ahmed S. Darwishcd4e8172021-01-18 11:09:45 +01003645 GFP_ATOMIC);
Sakthivel Kf5860992013-04-17 16:37:02 +05303646 break;
3647 case HW_EVENT_LINK_ERR_INVALID_DWORD:
Joe Perches1b5d2792020-11-20 15:16:09 -08003648 pm8001_dbg(pm8001_ha, MSG,
3649 "HW_EVENT_LINK_ERR_INVALID_DWORD\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303650 pm80xx_hw_event_ack_req(pm8001_ha, 0,
3651 HW_EVENT_LINK_ERR_INVALID_DWORD, port_id, phy_id, 0, 0);
Sakthivel Kf5860992013-04-17 16:37:02 +05303652 break;
3653 case HW_EVENT_LINK_ERR_DISPARITY_ERROR:
Joe Perches1b5d2792020-11-20 15:16:09 -08003654 pm8001_dbg(pm8001_ha, MSG,
3655 "HW_EVENT_LINK_ERR_DISPARITY_ERROR\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303656 pm80xx_hw_event_ack_req(pm8001_ha, 0,
3657 HW_EVENT_LINK_ERR_DISPARITY_ERROR,
3658 port_id, phy_id, 0, 0);
Sakthivel Kf5860992013-04-17 16:37:02 +05303659 break;
3660 case HW_EVENT_LINK_ERR_CODE_VIOLATION:
Joe Perches1b5d2792020-11-20 15:16:09 -08003661 pm8001_dbg(pm8001_ha, MSG,
3662 "HW_EVENT_LINK_ERR_CODE_VIOLATION\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303663 pm80xx_hw_event_ack_req(pm8001_ha, 0,
3664 HW_EVENT_LINK_ERR_CODE_VIOLATION,
3665 port_id, phy_id, 0, 0);
Sakthivel Kf5860992013-04-17 16:37:02 +05303666 break;
3667 case HW_EVENT_LINK_ERR_LOSS_OF_DWORD_SYNCH:
Joe Perches1b5d2792020-11-20 15:16:09 -08003668 pm8001_dbg(pm8001_ha, MSG,
3669 "HW_EVENT_LINK_ERR_LOSS_OF_DWORD_SYNCH\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303670 pm80xx_hw_event_ack_req(pm8001_ha, 0,
3671 HW_EVENT_LINK_ERR_LOSS_OF_DWORD_SYNCH,
3672 port_id, phy_id, 0, 0);
Sakthivel Kf5860992013-04-17 16:37:02 +05303673 break;
3674 case HW_EVENT_MALFUNCTION:
Joe Perches1b5d2792020-11-20 15:16:09 -08003675 pm8001_dbg(pm8001_ha, MSG, "HW_EVENT_MALFUNCTION\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303676 break;
3677 case HW_EVENT_BROADCAST_SES:
Joe Perches1b5d2792020-11-20 15:16:09 -08003678 pm8001_dbg(pm8001_ha, MSG, "HW_EVENT_BROADCAST_SES\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303679 spin_lock_irqsave(&sas_phy->sas_prim_lock, flags);
3680 sas_phy->sas_prim = HW_EVENT_BROADCAST_SES;
3681 spin_unlock_irqrestore(&sas_phy->sas_prim_lock, flags);
Ahmed S. Darwishde6d7542021-01-18 11:09:51 +01003682 sas_notify_port_event(sas_phy, PORTE_BROADCAST_RCVD,
Ahmed S. Darwishcd4e8172021-01-18 11:09:45 +01003683 GFP_ATOMIC);
Sakthivel Kf5860992013-04-17 16:37:02 +05303684 break;
3685 case HW_EVENT_INBOUND_CRC_ERROR:
Joe Perches1b5d2792020-11-20 15:16:09 -08003686 pm8001_dbg(pm8001_ha, MSG, "HW_EVENT_INBOUND_CRC_ERROR\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303687 pm80xx_hw_event_ack_req(pm8001_ha, 0,
3688 HW_EVENT_INBOUND_CRC_ERROR,
3689 port_id, phy_id, 0, 0);
3690 break;
3691 case HW_EVENT_HARD_RESET_RECEIVED:
Joe Perches1b5d2792020-11-20 15:16:09 -08003692 pm8001_dbg(pm8001_ha, MSG, "HW_EVENT_HARD_RESET_RECEIVED\n");
Ahmed S. Darwishde6d7542021-01-18 11:09:51 +01003693 sas_notify_port_event(sas_phy, PORTE_HARD_RESET, GFP_ATOMIC);
Sakthivel Kf5860992013-04-17 16:37:02 +05303694 break;
3695 case HW_EVENT_ID_FRAME_TIMEOUT:
Joe Perches1b5d2792020-11-20 15:16:09 -08003696 pm8001_dbg(pm8001_ha, MSG, "HW_EVENT_ID_FRAME_TIMEOUT\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303697 sas_phy_disconnected(sas_phy);
3698 phy->phy_attached = 0;
Ahmed S. Darwishde6d7542021-01-18 11:09:51 +01003699 sas_notify_port_event(sas_phy, PORTE_LINK_RESET_ERR,
Ahmed S. Darwishcd4e8172021-01-18 11:09:45 +01003700 GFP_ATOMIC);
Sakthivel Kf5860992013-04-17 16:37:02 +05303701 break;
3702 case HW_EVENT_LINK_ERR_PHY_RESET_FAILED:
Joe Perches1b5d2792020-11-20 15:16:09 -08003703 pm8001_dbg(pm8001_ha, MSG,
3704 "HW_EVENT_LINK_ERR_PHY_RESET_FAILED\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303705 pm80xx_hw_event_ack_req(pm8001_ha, 0,
3706 HW_EVENT_LINK_ERR_PHY_RESET_FAILED,
3707 port_id, phy_id, 0, 0);
3708 sas_phy_disconnected(sas_phy);
3709 phy->phy_attached = 0;
Ahmed S. Darwishde6d7542021-01-18 11:09:51 +01003710 sas_notify_port_event(sas_phy, PORTE_LINK_RESET_ERR,
Ahmed S. Darwishcd4e8172021-01-18 11:09:45 +01003711 GFP_ATOMIC);
Sakthivel Kf5860992013-04-17 16:37:02 +05303712 break;
3713 case HW_EVENT_PORT_RESET_TIMER_TMO:
Joe Perches1b5d2792020-11-20 15:16:09 -08003714 pm8001_dbg(pm8001_ha, MSG, "HW_EVENT_PORT_RESET_TIMER_TMO\n");
Ajish Koshyee05cb72021-12-28 16:47:53 +05303715 if (!pm8001_ha->phy[phy_id].reset_completion) {
3716 pm80xx_hw_event_ack_req(pm8001_ha, 0, HW_EVENT_PHY_DOWN,
3717 port_id, phy_id, 0, 0);
3718 }
Sakthivel Kf5860992013-04-17 16:37:02 +05303719 sas_phy_disconnected(sas_phy);
3720 phy->phy_attached = 0;
Ahmed S. Darwishde6d7542021-01-18 11:09:51 +01003721 sas_notify_port_event(sas_phy, PORTE_LINK_RESET_ERR,
Ahmed S. Darwishcd4e8172021-01-18 11:09:45 +01003722 GFP_ATOMIC);
Viswas G869ddbd2017-10-18 11:39:13 +05303723 if (pm8001_ha->phy[phy_id].reset_completion) {
3724 pm8001_ha->phy[phy_id].port_reset_status =
3725 PORT_RESET_TMO;
3726 complete(pm8001_ha->phy[phy_id].reset_completion);
3727 pm8001_ha->phy[phy_id].reset_completion = NULL;
3728 }
Sakthivel Kf5860992013-04-17 16:37:02 +05303729 break;
3730 case HW_EVENT_PORT_RECOVERY_TIMER_TMO:
Joe Perches1b5d2792020-11-20 15:16:09 -08003731 pm8001_dbg(pm8001_ha, MSG,
3732 "HW_EVENT_PORT_RECOVERY_TIMER_TMO\n");
Sakthivel Ka6cb3d02013-03-19 18:08:40 +05303733 pm80xx_hw_event_ack_req(pm8001_ha, 0,
3734 HW_EVENT_PORT_RECOVERY_TIMER_TMO,
3735 port_id, phy_id, 0, 0);
Viswas G8414cd82015-08-11 15:06:30 +05303736 for (i = 0; i < pm8001_ha->chip->n_phy; i++) {
3737 if (port->wide_port_phymap & (1 << i)) {
3738 phy = &pm8001_ha->phy[i];
Ahmed S. Darwishde6d7542021-01-18 11:09:51 +01003739 sas_notify_phy_event(&phy->sas_phy,
Ahmed S. Darwishcd4e8172021-01-18 11:09:45 +01003740 PHYE_LOSS_OF_SIGNAL, GFP_ATOMIC);
Viswas G8414cd82015-08-11 15:06:30 +05303741 port->wide_port_phymap &= ~(1 << i);
3742 }
3743 }
Sakthivel Kf5860992013-04-17 16:37:02 +05303744 break;
3745 case HW_EVENT_PORT_RECOVER:
Joe Perches1b5d2792020-11-20 15:16:09 -08003746 pm8001_dbg(pm8001_ha, MSG, "HW_EVENT_PORT_RECOVER\n");
Viswas G8414cd82015-08-11 15:06:30 +05303747 hw_event_port_recover(pm8001_ha, piomb);
Sakthivel Kf5860992013-04-17 16:37:02 +05303748 break;
3749 case HW_EVENT_PORT_RESET_COMPLETE:
Joe Perches1b5d2792020-11-20 15:16:09 -08003750 pm8001_dbg(pm8001_ha, MSG, "HW_EVENT_PORT_RESET_COMPLETE\n");
Viswas G869ddbd2017-10-18 11:39:13 +05303751 if (pm8001_ha->phy[phy_id].reset_completion) {
3752 pm8001_ha->phy[phy_id].port_reset_status =
3753 PORT_RESET_SUCCESS;
3754 complete(pm8001_ha->phy[phy_id].reset_completion);
3755 pm8001_ha->phy[phy_id].reset_completion = NULL;
3756 }
Sakthivel Kf5860992013-04-17 16:37:02 +05303757 break;
3758 case EVENT_BROADCAST_ASYNCH_EVENT:
Joe Perches1b5d2792020-11-20 15:16:09 -08003759 pm8001_dbg(pm8001_ha, MSG, "EVENT_BROADCAST_ASYNCH_EVENT\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303760 break;
3761 default:
Joe Perches1b5d2792020-11-20 15:16:09 -08003762 pm8001_dbg(pm8001_ha, DEVIO, "Unknown event type 0x%x\n",
3763 eventType);
Sakthivel Kf5860992013-04-17 16:37:02 +05303764 break;
3765 }
3766 return 0;
3767}
3768
3769/**
3770 * mpi_phy_stop_resp - SPCv specific
3771 * @pm8001_ha: our hba card information
3772 * @piomb: IO message buffer
3773 */
3774static int mpi_phy_stop_resp(struct pm8001_hba_info *pm8001_ha, void *piomb)
3775{
3776 struct phy_stop_resp *pPayload =
3777 (struct phy_stop_resp *)(piomb + 4);
3778 u32 status =
3779 le32_to_cpu(pPayload->status);
3780 u32 phyid =
Deepak Ukeycd135752018-09-11 14:18:02 +05303781 le32_to_cpu(pPayload->phyid) & 0xFF;
Sakthivel Kf5860992013-04-17 16:37:02 +05303782 struct pm8001_phy *phy = &pm8001_ha->phy[phyid];
Joe Perches1b5d2792020-11-20 15:16:09 -08003783 pm8001_dbg(pm8001_ha, MSG, "phy:0x%x status:0x%x\n",
3784 phyid, status);
Deepak Ukeycd135752018-09-11 14:18:02 +05303785 if (status == PHY_STOP_SUCCESS ||
3786 status == PHY_STOP_ERR_DEVICE_ATTACHED)
3787 phy->phy_state = PHY_LINK_DISABLE;
Sakthivel Kf5860992013-04-17 16:37:02 +05303788 return 0;
3789}
3790
3791/**
3792 * mpi_set_controller_config_resp - SPCv specific
3793 * @pm8001_ha: our hba card information
3794 * @piomb: IO message buffer
3795 */
3796static int mpi_set_controller_config_resp(struct pm8001_hba_info *pm8001_ha,
3797 void *piomb)
3798{
3799 struct set_ctrl_cfg_resp *pPayload =
3800 (struct set_ctrl_cfg_resp *)(piomb + 4);
3801 u32 status = le32_to_cpu(pPayload->status);
3802 u32 err_qlfr_pgcd = le32_to_cpu(pPayload->err_qlfr_pgcd);
3803
Joe Perches1b5d2792020-11-20 15:16:09 -08003804 pm8001_dbg(pm8001_ha, MSG,
3805 "SET CONTROLLER RESP: status 0x%x qlfr_pgcd 0x%x\n",
3806 status, err_qlfr_pgcd);
Sakthivel Kf5860992013-04-17 16:37:02 +05303807
3808 return 0;
3809}
3810
3811/**
3812 * mpi_get_controller_config_resp - SPCv specific
3813 * @pm8001_ha: our hba card information
3814 * @piomb: IO message buffer
3815 */
3816static int mpi_get_controller_config_resp(struct pm8001_hba_info *pm8001_ha,
3817 void *piomb)
3818{
Joe Perches1b5d2792020-11-20 15:16:09 -08003819 pm8001_dbg(pm8001_ha, MSG, " pm80xx_addition_functionality\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303820
3821 return 0;
3822}
3823
3824/**
3825 * mpi_get_phy_profile_resp - SPCv specific
3826 * @pm8001_ha: our hba card information
3827 * @piomb: IO message buffer
3828 */
3829static int mpi_get_phy_profile_resp(struct pm8001_hba_info *pm8001_ha,
3830 void *piomb)
3831{
Joe Perches1b5d2792020-11-20 15:16:09 -08003832 pm8001_dbg(pm8001_ha, MSG, " pm80xx_addition_functionality\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303833
3834 return 0;
3835}
3836
3837/**
3838 * mpi_flash_op_ext_resp - SPCv specific
3839 * @pm8001_ha: our hba card information
3840 * @piomb: IO message buffer
3841 */
3842static int mpi_flash_op_ext_resp(struct pm8001_hba_info *pm8001_ha, void *piomb)
3843{
Joe Perches1b5d2792020-11-20 15:16:09 -08003844 pm8001_dbg(pm8001_ha, MSG, " pm80xx_addition_functionality\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303845
3846 return 0;
3847}
3848
3849/**
3850 * mpi_set_phy_profile_resp - SPCv specific
3851 * @pm8001_ha: our hba card information
3852 * @piomb: IO message buffer
3853 */
3854static int mpi_set_phy_profile_resp(struct pm8001_hba_info *pm8001_ha,
3855 void *piomb)
3856{
yuuzheng9d9c7c22020-03-16 13:19:03 +05303857 u32 tag;
Anand Kumar Santhanam27909402013-09-18 13:02:44 +05303858 u8 page_code;
yuuzheng9d9c7c22020-03-16 13:19:03 +05303859 int rc = 0;
Anand Kumar Santhanam27909402013-09-18 13:02:44 +05303860 struct set_phy_profile_resp *pPayload =
3861 (struct set_phy_profile_resp *)(piomb + 4);
3862 u32 ppc_phyid = le32_to_cpu(pPayload->ppc_phyid);
3863 u32 status = le32_to_cpu(pPayload->status);
Sakthivel Kf5860992013-04-17 16:37:02 +05303864
yuuzheng9d9c7c22020-03-16 13:19:03 +05303865 tag = le32_to_cpu(pPayload->tag);
Anand Kumar Santhanam27909402013-09-18 13:02:44 +05303866 page_code = (u8)((ppc_phyid & 0xFF00) >> 8);
3867 if (status) {
3868 /* status is FAILED */
Joe Perches1b5d2792020-11-20 15:16:09 -08003869 pm8001_dbg(pm8001_ha, FAIL,
3870 "PhyProfile command failed with status 0x%08X\n",
3871 status);
yuuzheng9d9c7c22020-03-16 13:19:03 +05303872 rc = -1;
Anand Kumar Santhanam27909402013-09-18 13:02:44 +05303873 } else {
3874 if (page_code != SAS_PHY_ANALOG_SETTINGS_PAGE) {
Joe Perches1b5d2792020-11-20 15:16:09 -08003875 pm8001_dbg(pm8001_ha, FAIL, "Invalid page code 0x%X\n",
3876 page_code);
yuuzheng9d9c7c22020-03-16 13:19:03 +05303877 rc = -1;
Anand Kumar Santhanam27909402013-09-18 13:02:44 +05303878 }
3879 }
yuuzheng9d9c7c22020-03-16 13:19:03 +05303880 pm8001_tag_free(pm8001_ha, tag);
3881 return rc;
Sakthivel Kf5860992013-04-17 16:37:02 +05303882}
3883
3884/**
3885 * mpi_kek_management_resp - SPCv specific
3886 * @pm8001_ha: our hba card information
3887 * @piomb: IO message buffer
3888 */
3889static int mpi_kek_management_resp(struct pm8001_hba_info *pm8001_ha,
3890 void *piomb)
3891{
3892 struct kek_mgmt_resp *pPayload = (struct kek_mgmt_resp *)(piomb + 4);
3893
3894 u32 status = le32_to_cpu(pPayload->status);
3895 u32 kidx_new_curr_ksop = le32_to_cpu(pPayload->kidx_new_curr_ksop);
3896 u32 err_qlfr = le32_to_cpu(pPayload->err_qlfr);
3897
Joe Perches1b5d2792020-11-20 15:16:09 -08003898 pm8001_dbg(pm8001_ha, MSG,
3899 "KEK MGMT RESP. Status 0x%x idx_ksop 0x%x err_qlfr 0x%x\n",
3900 status, kidx_new_curr_ksop, err_qlfr);
Sakthivel Kf5860992013-04-17 16:37:02 +05303901
3902 return 0;
3903}
3904
3905/**
3906 * mpi_dek_management_resp - SPCv specific
3907 * @pm8001_ha: our hba card information
3908 * @piomb: IO message buffer
3909 */
3910static int mpi_dek_management_resp(struct pm8001_hba_info *pm8001_ha,
3911 void *piomb)
3912{
Joe Perches1b5d2792020-11-20 15:16:09 -08003913 pm8001_dbg(pm8001_ha, MSG, " pm80xx_addition_functionality\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303914
3915 return 0;
3916}
3917
3918/**
3919 * ssp_coalesced_comp_resp - SPCv specific
3920 * @pm8001_ha: our hba card information
3921 * @piomb: IO message buffer
3922 */
3923static int ssp_coalesced_comp_resp(struct pm8001_hba_info *pm8001_ha,
3924 void *piomb)
3925{
Joe Perches1b5d2792020-11-20 15:16:09 -08003926 pm8001_dbg(pm8001_ha, MSG, " pm80xx_addition_functionality\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303927
3928 return 0;
3929}
3930
3931/**
3932 * process_one_iomb - process one outbound Queue memory block
3933 * @pm8001_ha: our hba card information
3934 * @piomb: IO message buffer
3935 */
Ajish Koshyb27a4052021-09-06 22:34:02 +05303936static void process_one_iomb(struct pm8001_hba_info *pm8001_ha,
3937 struct outbound_queue_table *circularQ, void *piomb)
Sakthivel Kf5860992013-04-17 16:37:02 +05303938{
3939 __le32 pHeader = *(__le32 *)piomb;
3940 u32 opc = (u32)((le32_to_cpu(pHeader)) & 0xFFF);
3941
3942 switch (opc) {
3943 case OPC_OUB_ECHO:
Joe Perches1b5d2792020-11-20 15:16:09 -08003944 pm8001_dbg(pm8001_ha, MSG, "OPC_OUB_ECHO\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303945 break;
3946 case OPC_OUB_HW_EVENT:
Joe Perches1b5d2792020-11-20 15:16:09 -08003947 pm8001_dbg(pm8001_ha, MSG, "OPC_OUB_HW_EVENT\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303948 mpi_hw_event(pm8001_ha, piomb);
3949 break;
3950 case OPC_OUB_THERM_HW_EVENT:
Joe Perches1b5d2792020-11-20 15:16:09 -08003951 pm8001_dbg(pm8001_ha, MSG, "OPC_OUB_THERMAL_EVENT\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303952 mpi_thermal_hw_event(pm8001_ha, piomb);
3953 break;
3954 case OPC_OUB_SSP_COMP:
Joe Perches1b5d2792020-11-20 15:16:09 -08003955 pm8001_dbg(pm8001_ha, MSG, "OPC_OUB_SSP_COMP\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303956 mpi_ssp_completion(pm8001_ha, piomb);
3957 break;
3958 case OPC_OUB_SMP_COMP:
Joe Perches1b5d2792020-11-20 15:16:09 -08003959 pm8001_dbg(pm8001_ha, MSG, "OPC_OUB_SMP_COMP\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303960 mpi_smp_completion(pm8001_ha, piomb);
3961 break;
3962 case OPC_OUB_LOCAL_PHY_CNTRL:
Joe Perches1b5d2792020-11-20 15:16:09 -08003963 pm8001_dbg(pm8001_ha, MSG, "OPC_OUB_LOCAL_PHY_CNTRL\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303964 pm8001_mpi_local_phy_ctl(pm8001_ha, piomb);
3965 break;
3966 case OPC_OUB_DEV_REGIST:
Joe Perches1b5d2792020-11-20 15:16:09 -08003967 pm8001_dbg(pm8001_ha, MSG, "OPC_OUB_DEV_REGIST\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303968 pm8001_mpi_reg_resp(pm8001_ha, piomb);
3969 break;
3970 case OPC_OUB_DEREG_DEV:
Joe Perches1b5d2792020-11-20 15:16:09 -08003971 pm8001_dbg(pm8001_ha, MSG, "unregister the device\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303972 pm8001_mpi_dereg_resp(pm8001_ha, piomb);
3973 break;
3974 case OPC_OUB_GET_DEV_HANDLE:
Joe Perches1b5d2792020-11-20 15:16:09 -08003975 pm8001_dbg(pm8001_ha, MSG, "OPC_OUB_GET_DEV_HANDLE\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303976 break;
3977 case OPC_OUB_SATA_COMP:
Joe Perches1b5d2792020-11-20 15:16:09 -08003978 pm8001_dbg(pm8001_ha, MSG, "OPC_OUB_SATA_COMP\n");
Ajish Koshyb27a4052021-09-06 22:34:02 +05303979 mpi_sata_completion(pm8001_ha, circularQ, piomb);
Sakthivel Kf5860992013-04-17 16:37:02 +05303980 break;
3981 case OPC_OUB_SATA_EVENT:
Joe Perches1b5d2792020-11-20 15:16:09 -08003982 pm8001_dbg(pm8001_ha, MSG, "OPC_OUB_SATA_EVENT\n");
Ajish Koshyb27a4052021-09-06 22:34:02 +05303983 mpi_sata_event(pm8001_ha, circularQ, piomb);
Sakthivel Kf5860992013-04-17 16:37:02 +05303984 break;
3985 case OPC_OUB_SSP_EVENT:
Joe Perches1b5d2792020-11-20 15:16:09 -08003986 pm8001_dbg(pm8001_ha, MSG, "OPC_OUB_SSP_EVENT\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303987 mpi_ssp_event(pm8001_ha, piomb);
3988 break;
3989 case OPC_OUB_DEV_HANDLE_ARRIV:
Joe Perches1b5d2792020-11-20 15:16:09 -08003990 pm8001_dbg(pm8001_ha, MSG, "OPC_OUB_DEV_HANDLE_ARRIV\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303991 /*This is for target*/
3992 break;
3993 case OPC_OUB_SSP_RECV_EVENT:
Joe Perches1b5d2792020-11-20 15:16:09 -08003994 pm8001_dbg(pm8001_ha, MSG, "OPC_OUB_SSP_RECV_EVENT\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303995 /*This is for target*/
3996 break;
3997 case OPC_OUB_FW_FLASH_UPDATE:
Joe Perches1b5d2792020-11-20 15:16:09 -08003998 pm8001_dbg(pm8001_ha, MSG, "OPC_OUB_FW_FLASH_UPDATE\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303999 pm8001_mpi_fw_flash_update_resp(pm8001_ha, piomb);
4000 break;
4001 case OPC_OUB_GPIO_RESPONSE:
Joe Perches1b5d2792020-11-20 15:16:09 -08004002 pm8001_dbg(pm8001_ha, MSG, "OPC_OUB_GPIO_RESPONSE\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05304003 break;
4004 case OPC_OUB_GPIO_EVENT:
Joe Perches1b5d2792020-11-20 15:16:09 -08004005 pm8001_dbg(pm8001_ha, MSG, "OPC_OUB_GPIO_EVENT\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05304006 break;
4007 case OPC_OUB_GENERAL_EVENT:
Joe Perches1b5d2792020-11-20 15:16:09 -08004008 pm8001_dbg(pm8001_ha, MSG, "OPC_OUB_GENERAL_EVENT\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05304009 pm8001_mpi_general_event(pm8001_ha, piomb);
4010 break;
4011 case OPC_OUB_SSP_ABORT_RSP:
Joe Perches1b5d2792020-11-20 15:16:09 -08004012 pm8001_dbg(pm8001_ha, MSG, "OPC_OUB_SSP_ABORT_RSP\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05304013 pm8001_mpi_task_abort_resp(pm8001_ha, piomb);
4014 break;
4015 case OPC_OUB_SATA_ABORT_RSP:
Joe Perches1b5d2792020-11-20 15:16:09 -08004016 pm8001_dbg(pm8001_ha, MSG, "OPC_OUB_SATA_ABORT_RSP\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05304017 pm8001_mpi_task_abort_resp(pm8001_ha, piomb);
4018 break;
4019 case OPC_OUB_SAS_DIAG_MODE_START_END:
Joe Perches1b5d2792020-11-20 15:16:09 -08004020 pm8001_dbg(pm8001_ha, MSG,
4021 "OPC_OUB_SAS_DIAG_MODE_START_END\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05304022 break;
4023 case OPC_OUB_SAS_DIAG_EXECUTE:
Joe Perches1b5d2792020-11-20 15:16:09 -08004024 pm8001_dbg(pm8001_ha, MSG, "OPC_OUB_SAS_DIAG_EXECUTE\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05304025 break;
4026 case OPC_OUB_GET_TIME_STAMP:
Joe Perches1b5d2792020-11-20 15:16:09 -08004027 pm8001_dbg(pm8001_ha, MSG, "OPC_OUB_GET_TIME_STAMP\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05304028 break;
4029 case OPC_OUB_SAS_HW_EVENT_ACK:
Joe Perches1b5d2792020-11-20 15:16:09 -08004030 pm8001_dbg(pm8001_ha, MSG, "OPC_OUB_SAS_HW_EVENT_ACK\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05304031 break;
4032 case OPC_OUB_PORT_CONTROL:
Joe Perches1b5d2792020-11-20 15:16:09 -08004033 pm8001_dbg(pm8001_ha, MSG, "OPC_OUB_PORT_CONTROL\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05304034 break;
4035 case OPC_OUB_SMP_ABORT_RSP:
Joe Perches1b5d2792020-11-20 15:16:09 -08004036 pm8001_dbg(pm8001_ha, MSG, "OPC_OUB_SMP_ABORT_RSP\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05304037 pm8001_mpi_task_abort_resp(pm8001_ha, piomb);
4038 break;
4039 case OPC_OUB_GET_NVMD_DATA:
Joe Perches1b5d2792020-11-20 15:16:09 -08004040 pm8001_dbg(pm8001_ha, MSG, "OPC_OUB_GET_NVMD_DATA\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05304041 pm8001_mpi_get_nvmd_resp(pm8001_ha, piomb);
4042 break;
4043 case OPC_OUB_SET_NVMD_DATA:
Joe Perches1b5d2792020-11-20 15:16:09 -08004044 pm8001_dbg(pm8001_ha, MSG, "OPC_OUB_SET_NVMD_DATA\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05304045 pm8001_mpi_set_nvmd_resp(pm8001_ha, piomb);
4046 break;
4047 case OPC_OUB_DEVICE_HANDLE_REMOVAL:
Joe Perches1b5d2792020-11-20 15:16:09 -08004048 pm8001_dbg(pm8001_ha, MSG, "OPC_OUB_DEVICE_HANDLE_REMOVAL\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05304049 break;
4050 case OPC_OUB_SET_DEVICE_STATE:
Joe Perches1b5d2792020-11-20 15:16:09 -08004051 pm8001_dbg(pm8001_ha, MSG, "OPC_OUB_SET_DEVICE_STATE\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05304052 pm8001_mpi_set_dev_state_resp(pm8001_ha, piomb);
4053 break;
4054 case OPC_OUB_GET_DEVICE_STATE:
Joe Perches1b5d2792020-11-20 15:16:09 -08004055 pm8001_dbg(pm8001_ha, MSG, "OPC_OUB_GET_DEVICE_STATE\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05304056 break;
4057 case OPC_OUB_SET_DEV_INFO:
Joe Perches1b5d2792020-11-20 15:16:09 -08004058 pm8001_dbg(pm8001_ha, MSG, "OPC_OUB_SET_DEV_INFO\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05304059 break;
Randy Dunlapbb6beab2021-07-08 09:57:23 -07004060 /* spcv specific commands */
Sakthivel Kf5860992013-04-17 16:37:02 +05304061 case OPC_OUB_PHY_START_RESP:
Joe Perches1b5d2792020-11-20 15:16:09 -08004062 pm8001_dbg(pm8001_ha, MSG,
4063 "OPC_OUB_PHY_START_RESP opcode:%x\n", opc);
Sakthivel Kf5860992013-04-17 16:37:02 +05304064 mpi_phy_start_resp(pm8001_ha, piomb);
4065 break;
4066 case OPC_OUB_PHY_STOP_RESP:
Joe Perches1b5d2792020-11-20 15:16:09 -08004067 pm8001_dbg(pm8001_ha, MSG,
4068 "OPC_OUB_PHY_STOP_RESP opcode:%x\n", opc);
Sakthivel Kf5860992013-04-17 16:37:02 +05304069 mpi_phy_stop_resp(pm8001_ha, piomb);
4070 break;
4071 case OPC_OUB_SET_CONTROLLER_CONFIG:
Joe Perches1b5d2792020-11-20 15:16:09 -08004072 pm8001_dbg(pm8001_ha, MSG,
4073 "OPC_OUB_SET_CONTROLLER_CONFIG opcode:%x\n", opc);
Sakthivel Kf5860992013-04-17 16:37:02 +05304074 mpi_set_controller_config_resp(pm8001_ha, piomb);
4075 break;
4076 case OPC_OUB_GET_CONTROLLER_CONFIG:
Joe Perches1b5d2792020-11-20 15:16:09 -08004077 pm8001_dbg(pm8001_ha, MSG,
4078 "OPC_OUB_GET_CONTROLLER_CONFIG opcode:%x\n", opc);
Sakthivel Kf5860992013-04-17 16:37:02 +05304079 mpi_get_controller_config_resp(pm8001_ha, piomb);
4080 break;
4081 case OPC_OUB_GET_PHY_PROFILE:
Joe Perches1b5d2792020-11-20 15:16:09 -08004082 pm8001_dbg(pm8001_ha, MSG,
4083 "OPC_OUB_GET_PHY_PROFILE opcode:%x\n", opc);
Sakthivel Kf5860992013-04-17 16:37:02 +05304084 mpi_get_phy_profile_resp(pm8001_ha, piomb);
4085 break;
4086 case OPC_OUB_FLASH_OP_EXT:
Joe Perches1b5d2792020-11-20 15:16:09 -08004087 pm8001_dbg(pm8001_ha, MSG,
4088 "OPC_OUB_FLASH_OP_EXT opcode:%x\n", opc);
Sakthivel Kf5860992013-04-17 16:37:02 +05304089 mpi_flash_op_ext_resp(pm8001_ha, piomb);
4090 break;
4091 case OPC_OUB_SET_PHY_PROFILE:
Joe Perches1b5d2792020-11-20 15:16:09 -08004092 pm8001_dbg(pm8001_ha, MSG,
4093 "OPC_OUB_SET_PHY_PROFILE opcode:%x\n", opc);
Sakthivel Kf5860992013-04-17 16:37:02 +05304094 mpi_set_phy_profile_resp(pm8001_ha, piomb);
4095 break;
4096 case OPC_OUB_KEK_MANAGEMENT_RESP:
Joe Perches1b5d2792020-11-20 15:16:09 -08004097 pm8001_dbg(pm8001_ha, MSG,
4098 "OPC_OUB_KEK_MANAGEMENT_RESP opcode:%x\n", opc);
Sakthivel Kf5860992013-04-17 16:37:02 +05304099 mpi_kek_management_resp(pm8001_ha, piomb);
4100 break;
4101 case OPC_OUB_DEK_MANAGEMENT_RESP:
Joe Perches1b5d2792020-11-20 15:16:09 -08004102 pm8001_dbg(pm8001_ha, MSG,
4103 "OPC_OUB_DEK_MANAGEMENT_RESP opcode:%x\n", opc);
Sakthivel Kf5860992013-04-17 16:37:02 +05304104 mpi_dek_management_resp(pm8001_ha, piomb);
4105 break;
4106 case OPC_OUB_SSP_COALESCED_COMP_RESP:
Joe Perches1b5d2792020-11-20 15:16:09 -08004107 pm8001_dbg(pm8001_ha, MSG,
4108 "OPC_OUB_SSP_COALESCED_COMP_RESP opcode:%x\n", opc);
Sakthivel Kf5860992013-04-17 16:37:02 +05304109 ssp_coalesced_comp_resp(pm8001_ha, piomb);
4110 break;
4111 default:
Joe Perches1b5d2792020-11-20 15:16:09 -08004112 pm8001_dbg(pm8001_ha, DEVIO,
4113 "Unknown outbound Queue IOMB OPC = 0x%x\n", opc);
Sakthivel Kf5860992013-04-17 16:37:02 +05304114 break;
4115 }
4116}
4117
Deepak Ukey72349b62018-09-11 14:18:04 +05304118static void print_scratchpad_registers(struct pm8001_hba_info *pm8001_ha)
4119{
Joe Perches1b5d2792020-11-20 15:16:09 -08004120 pm8001_dbg(pm8001_ha, FAIL, "MSGU_SCRATCH_PAD_0: 0x%x\n",
4121 pm8001_cr32(pm8001_ha, 0, MSGU_SCRATCH_PAD_0));
4122 pm8001_dbg(pm8001_ha, FAIL, "MSGU_SCRATCH_PAD_1:0x%x\n",
4123 pm8001_cr32(pm8001_ha, 0, MSGU_SCRATCH_PAD_1));
4124 pm8001_dbg(pm8001_ha, FAIL, "MSGU_SCRATCH_PAD_2: 0x%x\n",
4125 pm8001_cr32(pm8001_ha, 0, MSGU_SCRATCH_PAD_2));
4126 pm8001_dbg(pm8001_ha, FAIL, "MSGU_SCRATCH_PAD_3: 0x%x\n",
4127 pm8001_cr32(pm8001_ha, 0, MSGU_SCRATCH_PAD_3));
4128 pm8001_dbg(pm8001_ha, FAIL, "MSGU_HOST_SCRATCH_PAD_0: 0x%x\n",
4129 pm8001_cr32(pm8001_ha, 0, MSGU_HOST_SCRATCH_PAD_0));
4130 pm8001_dbg(pm8001_ha, FAIL, "MSGU_HOST_SCRATCH_PAD_1: 0x%x\n",
4131 pm8001_cr32(pm8001_ha, 0, MSGU_HOST_SCRATCH_PAD_1));
4132 pm8001_dbg(pm8001_ha, FAIL, "MSGU_HOST_SCRATCH_PAD_2: 0x%x\n",
4133 pm8001_cr32(pm8001_ha, 0, MSGU_HOST_SCRATCH_PAD_2));
4134 pm8001_dbg(pm8001_ha, FAIL, "MSGU_HOST_SCRATCH_PAD_3: 0x%x\n",
4135 pm8001_cr32(pm8001_ha, 0, MSGU_HOST_SCRATCH_PAD_3));
4136 pm8001_dbg(pm8001_ha, FAIL, "MSGU_HOST_SCRATCH_PAD_4: 0x%x\n",
4137 pm8001_cr32(pm8001_ha, 0, MSGU_HOST_SCRATCH_PAD_4));
4138 pm8001_dbg(pm8001_ha, FAIL, "MSGU_HOST_SCRATCH_PAD_5: 0x%x\n",
4139 pm8001_cr32(pm8001_ha, 0, MSGU_HOST_SCRATCH_PAD_5));
4140 pm8001_dbg(pm8001_ha, FAIL, "MSGU_RSVD_SCRATCH_PAD_0: 0x%x\n",
4141 pm8001_cr32(pm8001_ha, 0, MSGU_HOST_SCRATCH_PAD_6));
4142 pm8001_dbg(pm8001_ha, FAIL, "MSGU_RSVD_SCRATCH_PAD_1: 0x%x\n",
4143 pm8001_cr32(pm8001_ha, 0, MSGU_HOST_SCRATCH_PAD_7));
Deepak Ukey72349b62018-09-11 14:18:04 +05304144}
4145
Sakthivel Kf5860992013-04-17 16:37:02 +05304146static int process_oq(struct pm8001_hba_info *pm8001_ha, u8 vec)
4147{
4148 struct outbound_queue_table *circularQ;
4149 void *pMsg1 = NULL;
Kees Cook3f649ab2020-06-03 13:09:38 -07004150 u8 bc;
Sakthivel Kf5860992013-04-17 16:37:02 +05304151 u32 ret = MPI_IO_STATUS_FAIL;
Deepak Ukey72349b62018-09-11 14:18:04 +05304152 u32 regval;
Sakthivel Kf5860992013-04-17 16:37:02 +05304153
John Garry62afb372022-01-18 20:15:05 +08004154 /*
4155 * Fatal errors are programmed to be signalled in irq vector
4156 * pm8001_ha->max_q_num - 1 through pm8001_ha->main_cfg_tbl.pm80xx_tbl.
4157 * fatal_err_interrupt
4158 */
Viswas G05c6c022020-10-05 20:20:08 +05304159 if (vec == (pm8001_ha->max_q_num - 1)) {
John Garry62afb372022-01-18 20:15:05 +08004160 u32 mipsall_ready;
4161
4162 if (pm8001_ha->chip_id == chip_8008 ||
4163 pm8001_ha->chip_id == chip_8009)
4164 mipsall_ready = SCRATCH_PAD_MIPSALL_READY_8PORT;
4165 else
4166 mipsall_ready = SCRATCH_PAD_MIPSALL_READY_16PORT;
4167
Deepak Ukey72349b62018-09-11 14:18:04 +05304168 regval = pm8001_cr32(pm8001_ha, 0, MSGU_SCRATCH_PAD_1);
John Garry62afb372022-01-18 20:15:05 +08004169 if ((regval & mipsall_ready) != mipsall_ready) {
Deepak Ukey72349b62018-09-11 14:18:04 +05304170 pm8001_ha->controller_fatal_error = true;
Joe Perches1b5d2792020-11-20 15:16:09 -08004171 pm8001_dbg(pm8001_ha, FAIL,
4172 "Firmware Fatal error! Regval:0x%x\n",
4173 regval);
Ruksar Devadi4f5deeb2021-04-15 16:03:50 +05304174 pm8001_handle_event(pm8001_ha, NULL, IO_FATAL_ERROR);
Deepak Ukey72349b62018-09-11 14:18:04 +05304175 print_scratchpad_registers(pm8001_ha);
4176 return ret;
4177 }
4178 }
Sakthivel Kf5860992013-04-17 16:37:02 +05304179 circularQ = &pm8001_ha->outbnd_q_tbl[vec];
Ajish Koshyb27a4052021-09-06 22:34:02 +05304180 spin_lock_irqsave(&circularQ->oq_lock, circularQ->lock_flags);
Sakthivel Kf5860992013-04-17 16:37:02 +05304181 do {
Deepak Ukey72349b62018-09-11 14:18:04 +05304182 /* spurious interrupt during setup if kexec-ing and
4183 * driver doing a doorbell access w/ the pre-kexec oq
4184 * interrupt setup.
4185 */
4186 if (!circularQ->pi_virt)
4187 break;
Sakthivel Kf5860992013-04-17 16:37:02 +05304188 ret = pm8001_mpi_msg_consume(pm8001_ha, circularQ, &pMsg1, &bc);
4189 if (MPI_IO_STATUS_SUCCESS == ret) {
4190 /* process the outbound message */
Ajish Koshyb27a4052021-09-06 22:34:02 +05304191 process_one_iomb(pm8001_ha, circularQ,
4192 (void *)(pMsg1 - 4));
Sakthivel Kf5860992013-04-17 16:37:02 +05304193 /* free the message from the outbound circular buffer */
4194 pm8001_mpi_msg_free_set(pm8001_ha, pMsg1,
4195 circularQ, bc);
4196 }
4197 if (MPI_IO_STATUS_BUSY == ret) {
4198 /* Update the producer index from SPC */
4199 circularQ->producer_index =
4200 cpu_to_le32(pm8001_read_32(circularQ->pi_virt));
4201 if (le32_to_cpu(circularQ->producer_index) ==
4202 circularQ->consumer_idx)
4203 /* OQ is empty */
4204 break;
4205 }
4206 } while (1);
Ajish Koshyb27a4052021-09-06 22:34:02 +05304207 spin_unlock_irqrestore(&circularQ->oq_lock, circularQ->lock_flags);
Sakthivel Kf5860992013-04-17 16:37:02 +05304208 return ret;
4209}
4210
Christoph Hellwigf73bdeb2018-10-10 19:59:50 +02004211/* DMA_... to our direction translation. */
Sakthivel Kf5860992013-04-17 16:37:02 +05304212static const u8 data_dir_flags[] = {
Christoph Hellwigf73bdeb2018-10-10 19:59:50 +02004213 [DMA_BIDIRECTIONAL] = DATA_DIR_BYRECIPIENT, /* UNSPECIFIED */
4214 [DMA_TO_DEVICE] = DATA_DIR_OUT, /* OUTBOUND */
4215 [DMA_FROM_DEVICE] = DATA_DIR_IN, /* INBOUND */
4216 [DMA_NONE] = DATA_DIR_NONE, /* NO TRANSFER */
Sakthivel Kf5860992013-04-17 16:37:02 +05304217};
4218
4219static void build_smp_cmd(u32 deviceID, __le32 hTag,
4220 struct smp_req *psmp_cmd, int mode, int length)
4221{
4222 psmp_cmd->tag = hTag;
4223 psmp_cmd->device_id = cpu_to_le32(deviceID);
4224 if (mode == SMP_DIRECT) {
4225 length = length - 4; /* subtract crc */
4226 psmp_cmd->len_ip_ir = cpu_to_le32(length << 16);
4227 } else {
4228 psmp_cmd->len_ip_ir = cpu_to_le32(1|(1 << 1));
4229 }
4230}
4231
4232/**
Randy Dunlapbb6beab2021-07-08 09:57:23 -07004233 * pm80xx_chip_smp_req - send an SMP task to FW
Sakthivel Kf5860992013-04-17 16:37:02 +05304234 * @pm8001_ha: our hba card information.
4235 * @ccb: the ccb information this request used.
4236 */
4237static int pm80xx_chip_smp_req(struct pm8001_hba_info *pm8001_ha,
4238 struct pm8001_ccb_info *ccb)
4239{
4240 int elem, rc;
4241 struct sas_task *task = ccb->task;
4242 struct domain_device *dev = task->dev;
4243 struct pm8001_device *pm8001_dev = dev->lldd_dev;
John Garry2fe24342021-12-13 18:10:48 +08004244 struct scatterlist *sg_req, *sg_resp, *smp_req;
Sakthivel Kf5860992013-04-17 16:37:02 +05304245 u32 req_len, resp_len;
4246 struct smp_req smp_cmd;
4247 u32 opc;
4248 struct inbound_queue_table *circularQ;
Sakthivel Kf5860992013-04-17 16:37:02 +05304249 u32 i, length;
John Garry2fe24342021-12-13 18:10:48 +08004250 u8 *payload;
4251 u8 *to;
Sakthivel Kf5860992013-04-17 16:37:02 +05304252
4253 memset(&smp_cmd, 0, sizeof(smp_cmd));
4254 /*
4255 * DMA-map SMP request, response buffers
4256 */
4257 sg_req = &task->smp_task.smp_req;
Christoph Hellwigf73bdeb2018-10-10 19:59:50 +02004258 elem = dma_map_sg(pm8001_ha->dev, sg_req, 1, DMA_TO_DEVICE);
Sakthivel Kf5860992013-04-17 16:37:02 +05304259 if (!elem)
4260 return -ENOMEM;
4261 req_len = sg_dma_len(sg_req);
4262
4263 sg_resp = &task->smp_task.smp_resp;
Christoph Hellwigf73bdeb2018-10-10 19:59:50 +02004264 elem = dma_map_sg(pm8001_ha->dev, sg_resp, 1, DMA_FROM_DEVICE);
Sakthivel Kf5860992013-04-17 16:37:02 +05304265 if (!elem) {
4266 rc = -ENOMEM;
4267 goto err_out;
4268 }
4269 resp_len = sg_dma_len(sg_resp);
4270 /* must be in dwords */
4271 if ((req_len & 0x3) || (resp_len & 0x3)) {
4272 rc = -EINVAL;
4273 goto err_out_2;
4274 }
4275
4276 opc = OPC_INB_SMP_REQUEST;
4277 circularQ = &pm8001_ha->inbnd_q_tbl[0];
4278 smp_cmd.tag = cpu_to_le32(ccb->ccb_tag);
4279
4280 length = sg_req->length;
Joe Perches1b5d2792020-11-20 15:16:09 -08004281 pm8001_dbg(pm8001_ha, IO, "SMP Frame Length %d\n", sg_req->length);
Sakthivel Kf5860992013-04-17 16:37:02 +05304282 if (!(length - 8))
4283 pm8001_ha->smp_exp_mode = SMP_DIRECT;
4284 else
4285 pm8001_ha->smp_exp_mode = SMP_INDIRECT;
4286
Sakthivel Kf5860992013-04-17 16:37:02 +05304287
John Garry2fe24342021-12-13 18:10:48 +08004288 smp_req = &task->smp_task.smp_req;
4289 to = kmap_atomic(sg_page(smp_req));
4290 payload = to + smp_req->offset;
Sakthivel Kf5860992013-04-17 16:37:02 +05304291
4292 /* INDIRECT MODE command settings. Use DMA */
4293 if (pm8001_ha->smp_exp_mode == SMP_INDIRECT) {
Joe Perches1b5d2792020-11-20 15:16:09 -08004294 pm8001_dbg(pm8001_ha, IO, "SMP REQUEST INDIRECT MODE\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05304295 /* for SPCv indirect mode. Place the top 4 bytes of
4296 * SMP Request header here. */
4297 for (i = 0; i < 4; i++)
John Garry2fe24342021-12-13 18:10:48 +08004298 smp_cmd.smp_req16[i] = *(payload + i);
Sakthivel Kf5860992013-04-17 16:37:02 +05304299 /* exclude top 4 bytes for SMP req header */
4300 smp_cmd.long_smp_req.long_req_addr =
4301 cpu_to_le64((u64)sg_dma_address
Anand Kumar Santhanamcb993e52013-09-17 14:37:14 +05304302 (&task->smp_task.smp_req) + 4);
Sakthivel Kf5860992013-04-17 16:37:02 +05304303 /* exclude 4 bytes for SMP req header and CRC */
4304 smp_cmd.long_smp_req.long_req_size =
4305 cpu_to_le32((u32)sg_dma_len(&task->smp_task.smp_req)-8);
4306 smp_cmd.long_smp_req.long_resp_addr =
4307 cpu_to_le64((u64)sg_dma_address
4308 (&task->smp_task.smp_resp));
4309 smp_cmd.long_smp_req.long_resp_size =
4310 cpu_to_le32((u32)sg_dma_len
4311 (&task->smp_task.smp_resp)-4);
4312 } else { /* DIRECT MODE */
4313 smp_cmd.long_smp_req.long_req_addr =
4314 cpu_to_le64((u64)sg_dma_address
4315 (&task->smp_task.smp_req));
4316 smp_cmd.long_smp_req.long_req_size =
4317 cpu_to_le32((u32)sg_dma_len(&task->smp_task.smp_req)-4);
4318 smp_cmd.long_smp_req.long_resp_addr =
4319 cpu_to_le64((u64)sg_dma_address
4320 (&task->smp_task.smp_resp));
4321 smp_cmd.long_smp_req.long_resp_size =
4322 cpu_to_le32
4323 ((u32)sg_dma_len(&task->smp_task.smp_resp)-4);
4324 }
4325 if (pm8001_ha->smp_exp_mode == SMP_DIRECT) {
Joe Perches1b5d2792020-11-20 15:16:09 -08004326 pm8001_dbg(pm8001_ha, IO, "SMP REQUEST DIRECT MODE\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05304327 for (i = 0; i < length; i++)
4328 if (i < 16) {
John Garry2fe24342021-12-13 18:10:48 +08004329 smp_cmd.smp_req16[i] = *(payload + i);
Joe Perches1b5d2792020-11-20 15:16:09 -08004330 pm8001_dbg(pm8001_ha, IO,
4331 "Byte[%d]:%x (DMA data:%x)\n",
4332 i, smp_cmd.smp_req16[i],
John Garry2fe24342021-12-13 18:10:48 +08004333 *(payload));
Sakthivel Kf5860992013-04-17 16:37:02 +05304334 } else {
John Garry2fe24342021-12-13 18:10:48 +08004335 smp_cmd.smp_req[i] = *(payload + i);
Joe Perches1b5d2792020-11-20 15:16:09 -08004336 pm8001_dbg(pm8001_ha, IO,
4337 "Byte[%d]:%x (DMA data:%x)\n",
4338 i, smp_cmd.smp_req[i],
John Garry2fe24342021-12-13 18:10:48 +08004339 *(payload));
Sakthivel Kf5860992013-04-17 16:37:02 +05304340 }
4341 }
John Garry2fe24342021-12-13 18:10:48 +08004342 kunmap_atomic(to);
Sakthivel Kf5860992013-04-17 16:37:02 +05304343 build_smp_cmd(pm8001_dev->device_id, smp_cmd.tag,
4344 &smp_cmd, pm8001_ha->smp_exp_mode, length);
peter chang91a43fa2019-11-14 15:39:05 +05304345 rc = pm8001_mpi_build_cmd(pm8001_ha, circularQ, opc, &smp_cmd,
4346 sizeof(smp_cmd), 0);
Tomas Henzl5533abc2014-07-09 17:20:49 +05304347 if (rc)
4348 goto err_out_2;
Sakthivel Kf5860992013-04-17 16:37:02 +05304349 return 0;
4350
4351err_out_2:
4352 dma_unmap_sg(pm8001_ha->dev, &ccb->task->smp_task.smp_resp, 1,
Christoph Hellwigf73bdeb2018-10-10 19:59:50 +02004353 DMA_FROM_DEVICE);
Sakthivel Kf5860992013-04-17 16:37:02 +05304354err_out:
4355 dma_unmap_sg(pm8001_ha->dev, &ccb->task->smp_task.smp_req, 1,
Christoph Hellwigf73bdeb2018-10-10 19:59:50 +02004356 DMA_TO_DEVICE);
Sakthivel Kf5860992013-04-17 16:37:02 +05304357 return rc;
4358}
4359
4360static int check_enc_sas_cmd(struct sas_task *task)
4361{
James Bottomleye73823f2013-05-07 15:38:18 -07004362 u8 cmd = task->ssp_task.cmd->cmnd[0];
4363
4364 if (cmd == READ_10 || cmd == WRITE_10 || cmd == WRITE_VERIFY)
Sakthivel Kf5860992013-04-17 16:37:02 +05304365 return 1;
4366 else
4367 return 0;
4368}
4369
4370static int check_enc_sat_cmd(struct sas_task *task)
4371{
4372 int ret = 0;
4373 switch (task->ata_task.fis.command) {
4374 case ATA_CMD_FPDMA_READ:
4375 case ATA_CMD_READ_EXT:
4376 case ATA_CMD_READ:
4377 case ATA_CMD_FPDMA_WRITE:
4378 case ATA_CMD_WRITE_EXT:
4379 case ATA_CMD_WRITE:
4380 case ATA_CMD_PIO_READ:
4381 case ATA_CMD_PIO_READ_EXT:
4382 case ATA_CMD_PIO_WRITE:
4383 case ATA_CMD_PIO_WRITE_EXT:
4384 ret = 1;
4385 break;
4386 default:
4387 ret = 0;
4388 break;
4389 }
4390 return ret;
4391}
4392
4393/**
Randy Dunlapbb6beab2021-07-08 09:57:23 -07004394 * pm80xx_chip_ssp_io_req - send an SSP task to FW
Sakthivel Kf5860992013-04-17 16:37:02 +05304395 * @pm8001_ha: our hba card information.
4396 * @ccb: the ccb information this request used.
4397 */
4398static int pm80xx_chip_ssp_io_req(struct pm8001_hba_info *pm8001_ha,
4399 struct pm8001_ccb_info *ccb)
4400{
4401 struct sas_task *task = ccb->task;
4402 struct domain_device *dev = task->dev;
4403 struct pm8001_device *pm8001_dev = dev->lldd_dev;
4404 struct ssp_ini_io_start_req ssp_cmd;
4405 u32 tag = ccb->ccb_tag;
4406 int ret;
Anand Kumar Santhanam0ecdf002013-09-18 11:14:54 +05304407 u64 phys_addr, start_addr, end_addr;
4408 u32 end_addr_high, end_addr_low;
Sakthivel Kf5860992013-04-17 16:37:02 +05304409 struct inbound_queue_table *circularQ;
Viswas G05c6c022020-10-05 20:20:08 +05304410 u32 q_index, cpu_id;
Sakthivel Kf5860992013-04-17 16:37:02 +05304411 u32 opc = OPC_INB_SSPINIIOSTART;
4412 memset(&ssp_cmd, 0, sizeof(ssp_cmd));
4413 memcpy(ssp_cmd.ssp_iu.lun, task->ssp_task.LUN, 8);
4414 /* data address domain added for spcv; set to 0 by host,
4415 * used internally by controller
4416 * 0 for SAS 1.1 and SAS 2.0 compatible TLR
4417 */
4418 ssp_cmd.dad_dir_m_tlr =
4419 cpu_to_le32(data_dir_flags[task->data_dir] << 8 | 0x0);
4420 ssp_cmd.data_len = cpu_to_le32(task->total_xfer_len);
4421 ssp_cmd.device_id = cpu_to_le32(pm8001_dev->device_id);
4422 ssp_cmd.tag = cpu_to_le32(tag);
4423 if (task->ssp_task.enable_first_burst)
4424 ssp_cmd.ssp_iu.efb_prio_attr |= 0x80;
4425 ssp_cmd.ssp_iu.efb_prio_attr |= (task->ssp_task.task_prio << 3);
4426 ssp_cmd.ssp_iu.efb_prio_attr |= (task->ssp_task.task_attr & 7);
James Bottomleye73823f2013-05-07 15:38:18 -07004427 memcpy(ssp_cmd.ssp_iu.cdb, task->ssp_task.cmd->cmnd,
4428 task->ssp_task.cmd->cmd_len);
Viswas G05c6c022020-10-05 20:20:08 +05304429 cpu_id = smp_processor_id();
4430 q_index = (u32) (cpu_id) % (pm8001_ha->max_q_num);
Anand Kumar Santhanamf9cd6cb2013-09-18 11:12:59 +05304431 circularQ = &pm8001_ha->inbnd_q_tbl[q_index];
Sakthivel Kf5860992013-04-17 16:37:02 +05304432
4433 /* Check if encryption is set */
4434 if (pm8001_ha->chip->encrypt &&
4435 !(pm8001_ha->encrypt_info.status) && check_enc_sas_cmd(task)) {
Joe Perches1b5d2792020-11-20 15:16:09 -08004436 pm8001_dbg(pm8001_ha, IO,
4437 "Encryption enabled.Sending Encrypt SAS command 0x%x\n",
4438 task->ssp_task.cmd->cmnd[0]);
Sakthivel Kf5860992013-04-17 16:37:02 +05304439 opc = OPC_INB_SSP_INI_DIF_ENC_IO;
4440 /* enable encryption. 0 for SAS 1.1 and SAS 2.0 compatible TLR*/
4441 ssp_cmd.dad_dir_m_tlr = cpu_to_le32
4442 ((data_dir_flags[task->data_dir] << 8) | 0x20 | 0x0);
4443
4444 /* fill in PRD (scatter/gather) table, if any */
4445 if (task->num_scatter > 1) {
4446 pm8001_chip_make_sg(task->scatter,
4447 ccb->n_elem, ccb->buf_prd);
Viswas G5a141312020-10-05 20:20:10 +05304448 phys_addr = ccb->ccb_dma_handle;
Sakthivel Kf5860992013-04-17 16:37:02 +05304449 ssp_cmd.enc_addr_low =
4450 cpu_to_le32(lower_32_bits(phys_addr));
4451 ssp_cmd.enc_addr_high =
4452 cpu_to_le32(upper_32_bits(phys_addr));
4453 ssp_cmd.enc_esgl = cpu_to_le32(1<<31);
4454 } else if (task->num_scatter == 1) {
4455 u64 dma_addr = sg_dma_address(task->scatter);
4456 ssp_cmd.enc_addr_low =
4457 cpu_to_le32(lower_32_bits(dma_addr));
4458 ssp_cmd.enc_addr_high =
4459 cpu_to_le32(upper_32_bits(dma_addr));
4460 ssp_cmd.enc_len = cpu_to_le32(task->total_xfer_len);
4461 ssp_cmd.enc_esgl = 0;
Anand Kumar Santhanam0ecdf002013-09-18 11:14:54 +05304462 /* Check 4G Boundary */
4463 start_addr = cpu_to_le64(dma_addr);
4464 end_addr = (start_addr + ssp_cmd.enc_len) - 1;
4465 end_addr_low = cpu_to_le32(lower_32_bits(end_addr));
4466 end_addr_high = cpu_to_le32(upper_32_bits(end_addr));
4467 if (end_addr_high != ssp_cmd.enc_addr_high) {
Joe Perches1b5d2792020-11-20 15:16:09 -08004468 pm8001_dbg(pm8001_ha, FAIL,
4469 "The sg list address start_addr=0x%016llx data_len=0x%x end_addr_high=0x%08x end_addr_low=0x%08x has crossed 4G boundary\n",
4470 start_addr, ssp_cmd.enc_len,
4471 end_addr_high, end_addr_low);
Anand Kumar Santhanam0ecdf002013-09-18 11:14:54 +05304472 pm8001_chip_make_sg(task->scatter, 1,
4473 ccb->buf_prd);
Viswas G5a141312020-10-05 20:20:10 +05304474 phys_addr = ccb->ccb_dma_handle;
Anand Kumar Santhanam0ecdf002013-09-18 11:14:54 +05304475 ssp_cmd.enc_addr_low =
4476 cpu_to_le32(lower_32_bits(phys_addr));
4477 ssp_cmd.enc_addr_high =
4478 cpu_to_le32(upper_32_bits(phys_addr));
4479 ssp_cmd.enc_esgl = cpu_to_le32(1<<31);
4480 }
Sakthivel Kf5860992013-04-17 16:37:02 +05304481 } else if (task->num_scatter == 0) {
4482 ssp_cmd.enc_addr_low = 0;
4483 ssp_cmd.enc_addr_high = 0;
4484 ssp_cmd.enc_len = cpu_to_le32(task->total_xfer_len);
4485 ssp_cmd.enc_esgl = 0;
4486 }
4487 /* XTS mode. All other fields are 0 */
4488 ssp_cmd.key_cmode = 0x6 << 4;
4489 /* set tweak values. Should be the start lba */
James Bottomleye73823f2013-05-07 15:38:18 -07004490 ssp_cmd.twk_val0 = cpu_to_le32((task->ssp_task.cmd->cmnd[2] << 24) |
4491 (task->ssp_task.cmd->cmnd[3] << 16) |
4492 (task->ssp_task.cmd->cmnd[4] << 8) |
4493 (task->ssp_task.cmd->cmnd[5]));
Sakthivel Kf5860992013-04-17 16:37:02 +05304494 } else {
Joe Perches1b5d2792020-11-20 15:16:09 -08004495 pm8001_dbg(pm8001_ha, IO,
4496 "Sending Normal SAS command 0x%x inb q %x\n",
4497 task->ssp_task.cmd->cmnd[0], q_index);
Sakthivel Kf5860992013-04-17 16:37:02 +05304498 /* fill in PRD (scatter/gather) table, if any */
4499 if (task->num_scatter > 1) {
4500 pm8001_chip_make_sg(task->scatter, ccb->n_elem,
4501 ccb->buf_prd);
Viswas G5a141312020-10-05 20:20:10 +05304502 phys_addr = ccb->ccb_dma_handle;
Sakthivel Kf5860992013-04-17 16:37:02 +05304503 ssp_cmd.addr_low =
4504 cpu_to_le32(lower_32_bits(phys_addr));
4505 ssp_cmd.addr_high =
4506 cpu_to_le32(upper_32_bits(phys_addr));
4507 ssp_cmd.esgl = cpu_to_le32(1<<31);
4508 } else if (task->num_scatter == 1) {
4509 u64 dma_addr = sg_dma_address(task->scatter);
4510 ssp_cmd.addr_low = cpu_to_le32(lower_32_bits(dma_addr));
4511 ssp_cmd.addr_high =
4512 cpu_to_le32(upper_32_bits(dma_addr));
4513 ssp_cmd.len = cpu_to_le32(task->total_xfer_len);
4514 ssp_cmd.esgl = 0;
Anand Kumar Santhanam0ecdf002013-09-18 11:14:54 +05304515 /* Check 4G Boundary */
4516 start_addr = cpu_to_le64(dma_addr);
4517 end_addr = (start_addr + ssp_cmd.len) - 1;
4518 end_addr_low = cpu_to_le32(lower_32_bits(end_addr));
4519 end_addr_high = cpu_to_le32(upper_32_bits(end_addr));
4520 if (end_addr_high != ssp_cmd.addr_high) {
Joe Perches1b5d2792020-11-20 15:16:09 -08004521 pm8001_dbg(pm8001_ha, FAIL,
4522 "The sg list address start_addr=0x%016llx data_len=0x%x end_addr_high=0x%08x end_addr_low=0x%08x has crossed 4G boundary\n",
4523 start_addr, ssp_cmd.len,
4524 end_addr_high, end_addr_low);
Anand Kumar Santhanam0ecdf002013-09-18 11:14:54 +05304525 pm8001_chip_make_sg(task->scatter, 1,
4526 ccb->buf_prd);
Viswas G5a141312020-10-05 20:20:10 +05304527 phys_addr = ccb->ccb_dma_handle;
Anand Kumar Santhanam0ecdf002013-09-18 11:14:54 +05304528 ssp_cmd.addr_low =
4529 cpu_to_le32(lower_32_bits(phys_addr));
4530 ssp_cmd.addr_high =
4531 cpu_to_le32(upper_32_bits(phys_addr));
4532 ssp_cmd.esgl = cpu_to_le32(1<<31);
4533 }
Sakthivel Kf5860992013-04-17 16:37:02 +05304534 } else if (task->num_scatter == 0) {
4535 ssp_cmd.addr_low = 0;
4536 ssp_cmd.addr_high = 0;
4537 ssp_cmd.len = cpu_to_le32(task->total_xfer_len);
4538 ssp_cmd.esgl = 0;
4539 }
4540 }
Anand Kumar Santhanamf9cd6cb2013-09-18 11:12:59 +05304541 ret = pm8001_mpi_build_cmd(pm8001_ha, circularQ, opc,
peter chang91a43fa2019-11-14 15:39:05 +05304542 &ssp_cmd, sizeof(ssp_cmd), q_index);
Sakthivel Kf5860992013-04-17 16:37:02 +05304543 return ret;
4544}
4545
4546static int pm80xx_chip_sata_req(struct pm8001_hba_info *pm8001_ha,
4547 struct pm8001_ccb_info *ccb)
4548{
4549 struct sas_task *task = ccb->task;
4550 struct domain_device *dev = task->dev;
4551 struct pm8001_device *pm8001_ha_dev = dev->lldd_dev;
Changyuan Lyu8ceddda2021-11-15 13:57:49 -08004552 struct ata_queued_cmd *qc = task->uldd_task;
Sakthivel Kf5860992013-04-17 16:37:02 +05304553 u32 tag = ccb->ccb_tag;
4554 int ret;
Viswas G05c6c022020-10-05 20:20:08 +05304555 u32 q_index, cpu_id;
Sakthivel Kf5860992013-04-17 16:37:02 +05304556 struct sata_start_req sata_cmd;
4557 u32 hdr_tag, ncg_tag = 0;
Anand Kumar Santhanam0ecdf002013-09-18 11:14:54 +05304558 u64 phys_addr, start_addr, end_addr;
4559 u32 end_addr_high, end_addr_low;
Sakthivel Kf5860992013-04-17 16:37:02 +05304560 u32 ATAP = 0x0;
4561 u32 dir;
4562 struct inbound_queue_table *circularQ;
Sakthivel Kc6b9ef52013-03-19 18:08:08 +05304563 unsigned long flags;
Sakthivel Kf5860992013-04-17 16:37:02 +05304564 u32 opc = OPC_INB_SATA_HOST_OPSTART;
4565 memset(&sata_cmd, 0, sizeof(sata_cmd));
Viswas G05c6c022020-10-05 20:20:08 +05304566 cpu_id = smp_processor_id();
4567 q_index = (u32) (cpu_id) % (pm8001_ha->max_q_num);
Anand Kumar Santhanamf9cd6cb2013-09-18 11:12:59 +05304568 circularQ = &pm8001_ha->inbnd_q_tbl[q_index];
Sakthivel Kf5860992013-04-17 16:37:02 +05304569
Christoph Hellwigf73bdeb2018-10-10 19:59:50 +02004570 if (task->data_dir == DMA_NONE) {
Sakthivel Kf5860992013-04-17 16:37:02 +05304571 ATAP = 0x04; /* no data*/
Joe Perches1b5d2792020-11-20 15:16:09 -08004572 pm8001_dbg(pm8001_ha, IO, "no data\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05304573 } else if (likely(!task->ata_task.device_control_reg_update)) {
4574 if (task->ata_task.dma_xfer) {
4575 ATAP = 0x06; /* DMA */
Joe Perches1b5d2792020-11-20 15:16:09 -08004576 pm8001_dbg(pm8001_ha, IO, "DMA\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05304577 } else {
4578 ATAP = 0x05; /* PIO*/
Joe Perches1b5d2792020-11-20 15:16:09 -08004579 pm8001_dbg(pm8001_ha, IO, "PIO\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05304580 }
4581 if (task->ata_task.use_ncq &&
Hannes Reinecke1cbd7722014-11-05 13:08:20 +01004582 dev->sata_dev.class != ATA_DEV_ATAPI) {
Sakthivel Kf5860992013-04-17 16:37:02 +05304583 ATAP = 0x07; /* FPDMA */
Joe Perches1b5d2792020-11-20 15:16:09 -08004584 pm8001_dbg(pm8001_ha, IO, "FPDMA\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05304585 }
4586 }
Sakthivel Kc6b9ef52013-03-19 18:08:08 +05304587 if (task->ata_task.use_ncq && pm8001_get_ncq_tag(task, &hdr_tag)) {
4588 task->ata_task.fis.sector_count |= (u8) (hdr_tag << 3);
Sakthivel Kf5860992013-04-17 16:37:02 +05304589 ncg_tag = hdr_tag;
Sakthivel Kc6b9ef52013-03-19 18:08:08 +05304590 }
Sakthivel Kf5860992013-04-17 16:37:02 +05304591 dir = data_dir_flags[task->data_dir] << 8;
4592 sata_cmd.tag = cpu_to_le32(tag);
4593 sata_cmd.device_id = cpu_to_le32(pm8001_ha_dev->device_id);
4594 sata_cmd.data_len = cpu_to_le32(task->total_xfer_len);
4595
4596 sata_cmd.sata_fis = task->ata_task.fis;
4597 if (likely(!task->ata_task.device_control_reg_update))
4598 sata_cmd.sata_fis.flags |= 0x80;/* C=1: update ATA cmd reg */
4599 sata_cmd.sata_fis.flags &= 0xF0;/* PM_PORT field shall be 0 */
4600
4601 /* Check if encryption is set */
4602 if (pm8001_ha->chip->encrypt &&
4603 !(pm8001_ha->encrypt_info.status) && check_enc_sat_cmd(task)) {
Joe Perches1b5d2792020-11-20 15:16:09 -08004604 pm8001_dbg(pm8001_ha, IO,
4605 "Encryption enabled.Sending Encrypt SATA cmd 0x%x\n",
4606 sata_cmd.sata_fis.command);
Sakthivel Kf5860992013-04-17 16:37:02 +05304607 opc = OPC_INB_SATA_DIF_ENC_IO;
4608
4609 /* set encryption bit */
4610 sata_cmd.ncqtag_atap_dir_m_dad =
4611 cpu_to_le32(((ncg_tag & 0xff)<<16)|
4612 ((ATAP & 0x3f) << 10) | 0x20 | dir);
4613 /* dad (bit 0-1) is 0 */
4614 /* fill in PRD (scatter/gather) table, if any */
4615 if (task->num_scatter > 1) {
4616 pm8001_chip_make_sg(task->scatter,
4617 ccb->n_elem, ccb->buf_prd);
Viswas G5a141312020-10-05 20:20:10 +05304618 phys_addr = ccb->ccb_dma_handle;
Sakthivel Kf5860992013-04-17 16:37:02 +05304619 sata_cmd.enc_addr_low = lower_32_bits(phys_addr);
4620 sata_cmd.enc_addr_high = upper_32_bits(phys_addr);
4621 sata_cmd.enc_esgl = cpu_to_le32(1 << 31);
4622 } else if (task->num_scatter == 1) {
4623 u64 dma_addr = sg_dma_address(task->scatter);
4624 sata_cmd.enc_addr_low = lower_32_bits(dma_addr);
4625 sata_cmd.enc_addr_high = upper_32_bits(dma_addr);
4626 sata_cmd.enc_len = cpu_to_le32(task->total_xfer_len);
4627 sata_cmd.enc_esgl = 0;
Anand Kumar Santhanam0ecdf002013-09-18 11:14:54 +05304628 /* Check 4G Boundary */
4629 start_addr = cpu_to_le64(dma_addr);
4630 end_addr = (start_addr + sata_cmd.enc_len) - 1;
4631 end_addr_low = cpu_to_le32(lower_32_bits(end_addr));
4632 end_addr_high = cpu_to_le32(upper_32_bits(end_addr));
4633 if (end_addr_high != sata_cmd.enc_addr_high) {
Joe Perches1b5d2792020-11-20 15:16:09 -08004634 pm8001_dbg(pm8001_ha, FAIL,
4635 "The sg list address start_addr=0x%016llx data_len=0x%x end_addr_high=0x%08x end_addr_low=0x%08x has crossed 4G boundary\n",
4636 start_addr, sata_cmd.enc_len,
4637 end_addr_high, end_addr_low);
Anand Kumar Santhanam0ecdf002013-09-18 11:14:54 +05304638 pm8001_chip_make_sg(task->scatter, 1,
4639 ccb->buf_prd);
Viswas G5a141312020-10-05 20:20:10 +05304640 phys_addr = ccb->ccb_dma_handle;
Anand Kumar Santhanam0ecdf002013-09-18 11:14:54 +05304641 sata_cmd.enc_addr_low =
4642 lower_32_bits(phys_addr);
4643 sata_cmd.enc_addr_high =
4644 upper_32_bits(phys_addr);
4645 sata_cmd.enc_esgl =
4646 cpu_to_le32(1 << 31);
4647 }
Sakthivel Kf5860992013-04-17 16:37:02 +05304648 } else if (task->num_scatter == 0) {
4649 sata_cmd.enc_addr_low = 0;
4650 sata_cmd.enc_addr_high = 0;
4651 sata_cmd.enc_len = cpu_to_le32(task->total_xfer_len);
4652 sata_cmd.enc_esgl = 0;
4653 }
4654 /* XTS mode. All other fields are 0 */
4655 sata_cmd.key_index_mode = 0x6 << 4;
4656 /* set tweak values. Should be the start lba */
4657 sata_cmd.twk_val0 =
4658 cpu_to_le32((sata_cmd.sata_fis.lbal_exp << 24) |
4659 (sata_cmd.sata_fis.lbah << 16) |
4660 (sata_cmd.sata_fis.lbam << 8) |
4661 (sata_cmd.sata_fis.lbal));
4662 sata_cmd.twk_val1 =
4663 cpu_to_le32((sata_cmd.sata_fis.lbah_exp << 8) |
4664 (sata_cmd.sata_fis.lbam_exp));
4665 } else {
Joe Perches1b5d2792020-11-20 15:16:09 -08004666 pm8001_dbg(pm8001_ha, IO,
4667 "Sending Normal SATA command 0x%x inb %x\n",
4668 sata_cmd.sata_fis.command, q_index);
Sakthivel Kf5860992013-04-17 16:37:02 +05304669 /* dad (bit 0-1) is 0 */
4670 sata_cmd.ncqtag_atap_dir_m_dad =
4671 cpu_to_le32(((ncg_tag & 0xff)<<16) |
4672 ((ATAP & 0x3f) << 10) | dir);
4673
4674 /* fill in PRD (scatter/gather) table, if any */
4675 if (task->num_scatter > 1) {
4676 pm8001_chip_make_sg(task->scatter,
4677 ccb->n_elem, ccb->buf_prd);
Viswas G5a141312020-10-05 20:20:10 +05304678 phys_addr = ccb->ccb_dma_handle;
Sakthivel Kf5860992013-04-17 16:37:02 +05304679 sata_cmd.addr_low = lower_32_bits(phys_addr);
4680 sata_cmd.addr_high = upper_32_bits(phys_addr);
4681 sata_cmd.esgl = cpu_to_le32(1 << 31);
4682 } else if (task->num_scatter == 1) {
4683 u64 dma_addr = sg_dma_address(task->scatter);
4684 sata_cmd.addr_low = lower_32_bits(dma_addr);
4685 sata_cmd.addr_high = upper_32_bits(dma_addr);
4686 sata_cmd.len = cpu_to_le32(task->total_xfer_len);
4687 sata_cmd.esgl = 0;
Anand Kumar Santhanam0ecdf002013-09-18 11:14:54 +05304688 /* Check 4G Boundary */
4689 start_addr = cpu_to_le64(dma_addr);
4690 end_addr = (start_addr + sata_cmd.len) - 1;
4691 end_addr_low = cpu_to_le32(lower_32_bits(end_addr));
4692 end_addr_high = cpu_to_le32(upper_32_bits(end_addr));
4693 if (end_addr_high != sata_cmd.addr_high) {
Joe Perches1b5d2792020-11-20 15:16:09 -08004694 pm8001_dbg(pm8001_ha, FAIL,
4695 "The sg list address start_addr=0x%016llx data_len=0x%xend_addr_high=0x%08x end_addr_low=0x%08x has crossed 4G boundary\n",
4696 start_addr, sata_cmd.len,
4697 end_addr_high, end_addr_low);
Anand Kumar Santhanam0ecdf002013-09-18 11:14:54 +05304698 pm8001_chip_make_sg(task->scatter, 1,
4699 ccb->buf_prd);
Viswas G5a141312020-10-05 20:20:10 +05304700 phys_addr = ccb->ccb_dma_handle;
Anand Kumar Santhanam0ecdf002013-09-18 11:14:54 +05304701 sata_cmd.addr_low =
4702 lower_32_bits(phys_addr);
4703 sata_cmd.addr_high =
4704 upper_32_bits(phys_addr);
4705 sata_cmd.esgl = cpu_to_le32(1 << 31);
4706 }
Sakthivel Kf5860992013-04-17 16:37:02 +05304707 } else if (task->num_scatter == 0) {
4708 sata_cmd.addr_low = 0;
4709 sata_cmd.addr_high = 0;
4710 sata_cmd.len = cpu_to_le32(task->total_xfer_len);
4711 sata_cmd.esgl = 0;
4712 }
Colin Ian King9e2a07e2019-03-17 18:15:32 +00004713 /* scsi cdb */
4714 sata_cmd.atapi_scsi_cdb[0] =
4715 cpu_to_le32(((task->ata_task.atapi_packet[0]) |
4716 (task->ata_task.atapi_packet[1] << 8) |
4717 (task->ata_task.atapi_packet[2] << 16) |
4718 (task->ata_task.atapi_packet[3] << 24)));
4719 sata_cmd.atapi_scsi_cdb[1] =
4720 cpu_to_le32(((task->ata_task.atapi_packet[4]) |
4721 (task->ata_task.atapi_packet[5] << 8) |
4722 (task->ata_task.atapi_packet[6] << 16) |
4723 (task->ata_task.atapi_packet[7] << 24)));
4724 sata_cmd.atapi_scsi_cdb[2] =
4725 cpu_to_le32(((task->ata_task.atapi_packet[8]) |
4726 (task->ata_task.atapi_packet[9] << 8) |
4727 (task->ata_task.atapi_packet[10] << 16) |
4728 (task->ata_task.atapi_packet[11] << 24)));
4729 sata_cmd.atapi_scsi_cdb[3] =
4730 cpu_to_le32(((task->ata_task.atapi_packet[12]) |
4731 (task->ata_task.atapi_packet[13] << 8) |
4732 (task->ata_task.atapi_packet[14] << 16) |
4733 (task->ata_task.atapi_packet[15] << 24)));
Sakthivel Kf5860992013-04-17 16:37:02 +05304734 }
Sakthivel Kc6b9ef52013-03-19 18:08:08 +05304735
4736 /* Check for read log for failed drive and return */
4737 if (sata_cmd.sata_fis.command == 0x2f) {
4738 if (pm8001_ha_dev && ((pm8001_ha_dev->id & NCQ_READ_LOG_FLAG) ||
4739 (pm8001_ha_dev->id & NCQ_ABORT_ALL_FLAG) ||
4740 (pm8001_ha_dev->id & NCQ_2ND_RLE_FLAG))) {
4741 struct task_status_struct *ts;
4742
4743 pm8001_ha_dev->id &= 0xDFFFFFFF;
4744 ts = &task->task_status;
4745
4746 spin_lock_irqsave(&task->task_state_lock, flags);
4747 ts->resp = SAS_TASK_COMPLETE;
Bart Van Assched377f412021-05-23 19:54:55 -07004748 ts->stat = SAS_SAM_STAT_GOOD;
Sakthivel Kc6b9ef52013-03-19 18:08:08 +05304749 task->task_state_flags &= ~SAS_TASK_STATE_PENDING;
4750 task->task_state_flags &= ~SAS_TASK_AT_INITIATOR;
4751 task->task_state_flags |= SAS_TASK_STATE_DONE;
4752 if (unlikely((task->task_state_flags &
4753 SAS_TASK_STATE_ABORTED))) {
4754 spin_unlock_irqrestore(&task->task_state_lock,
4755 flags);
Joe Perches1b5d2792020-11-20 15:16:09 -08004756 pm8001_dbg(pm8001_ha, FAIL,
4757 "task 0x%p resp 0x%x stat 0x%x but aborted by upper layer\n",
4758 task, ts->resp,
4759 ts->stat);
Sakthivel Kc6b9ef52013-03-19 18:08:08 +05304760 pm8001_ccb_task_free(pm8001_ha, task, ccb, tag);
4761 return 0;
Suresh Thiagarajan2b01d812014-01-16 15:26:21 +05304762 } else {
Sakthivel Kc6b9ef52013-03-19 18:08:08 +05304763 spin_unlock_irqrestore(&task->task_state_lock,
4764 flags);
Suresh Thiagarajan2b01d812014-01-16 15:26:21 +05304765 pm8001_ccb_task_free_done(pm8001_ha, task,
4766 ccb, tag);
Viswas G4a2efd42020-11-02 22:25:26 +05304767 atomic_dec(&pm8001_ha_dev->running_req);
Sakthivel Kc6b9ef52013-03-19 18:08:08 +05304768 return 0;
4769 }
4770 }
4771 }
Changyuan Lyu8ceddda2021-11-15 13:57:49 -08004772 trace_pm80xx_request_issue(pm8001_ha->id,
4773 ccb->device ? ccb->device->attached_phy : PM8001_MAX_PHYS,
4774 ccb->ccb_tag, opc,
4775 qc ? qc->tf.command : 0, // ata opcode
4776 ccb->device ? atomic_read(&ccb->device->running_req) : 0);
Sakthivel Kf5860992013-04-17 16:37:02 +05304777 ret = pm8001_mpi_build_cmd(pm8001_ha, circularQ, opc,
peter chang91a43fa2019-11-14 15:39:05 +05304778 &sata_cmd, sizeof(sata_cmd), q_index);
Sakthivel Kf5860992013-04-17 16:37:02 +05304779 return ret;
4780}
4781
4782/**
4783 * pm80xx_chip_phy_start_req - start phy via PHY_START COMMAND
4784 * @pm8001_ha: our hba card information.
Sakthivel Kf5860992013-04-17 16:37:02 +05304785 * @phy_id: the phy id which we wanted to start up.
4786 */
4787static int
4788pm80xx_chip_phy_start_req(struct pm8001_hba_info *pm8001_ha, u8 phy_id)
4789{
4790 struct phy_start_req payload;
4791 struct inbound_queue_table *circularQ;
4792 int ret;
4793 u32 tag = 0x01;
4794 u32 opcode = OPC_INB_PHYSTART;
4795 circularQ = &pm8001_ha->inbnd_q_tbl[0];
4796 memset(&payload, 0, sizeof(payload));
4797 payload.tag = cpu_to_le32(tag);
4798
Joe Perches1b5d2792020-11-20 15:16:09 -08004799 pm8001_dbg(pm8001_ha, INIT, "PHY START REQ for phy_id %d\n", phy_id);
Anand Kumar Santhanama9a923e2013-09-03 15:09:42 +05304800
peter chang3e253d92019-11-14 15:39:07 +05304801 payload.ase_sh_lm_slr_phyid = cpu_to_le32(SPINHOLD_DISABLE |
4802 LINKMODE_AUTO | pm8001_ha->link_rate | phy_id);
Sakthivel Kf5860992013-04-17 16:37:02 +05304803 /* SSC Disable and SAS Analog ST configuration */
Randy Dunlapbb6beab2021-07-08 09:57:23 -07004804 /*
Sakthivel Kf5860992013-04-17 16:37:02 +05304805 payload.ase_sh_lm_slr_phyid =
4806 cpu_to_le32(SSC_DISABLE_30 | SAS_ASE | SPINHOLD_DISABLE |
4807 LINKMODE_AUTO | LINKRATE_15 | LINKRATE_30 | LINKRATE_60 |
4808 phy_id);
4809 Have to add "SAS PHY Analog Setup SPASTI 1 Byte" Based on need
Randy Dunlapbb6beab2021-07-08 09:57:23 -07004810 */
Sakthivel Kf5860992013-04-17 16:37:02 +05304811
James Bottomleyaa9f8322013-05-07 14:44:06 -07004812 payload.sas_identify.dev_type = SAS_END_DEVICE;
Sakthivel Kf5860992013-04-17 16:37:02 +05304813 payload.sas_identify.initiator_bits = SAS_PROTOCOL_ALL;
4814 memcpy(payload.sas_identify.sas_addr,
peter chang3e253d92019-11-14 15:39:07 +05304815 &pm8001_ha->sas_addr, SAS_ADDR_SIZE);
Sakthivel Kf5860992013-04-17 16:37:02 +05304816 payload.sas_identify.phy_id = phy_id;
peter chang91a43fa2019-11-14 15:39:05 +05304817 ret = pm8001_mpi_build_cmd(pm8001_ha, circularQ, opcode, &payload,
4818 sizeof(payload), 0);
Sakthivel Kf5860992013-04-17 16:37:02 +05304819 return ret;
4820}
4821
4822/**
Lee Jones7cdaf122021-03-03 14:46:23 +00004823 * pm80xx_chip_phy_stop_req - start phy via PHY_STOP COMMAND
Sakthivel Kf5860992013-04-17 16:37:02 +05304824 * @pm8001_ha: our hba card information.
Sakthivel Kf5860992013-04-17 16:37:02 +05304825 * @phy_id: the phy id which we wanted to start up.
4826 */
4827static int pm80xx_chip_phy_stop_req(struct pm8001_hba_info *pm8001_ha,
4828 u8 phy_id)
4829{
4830 struct phy_stop_req payload;
4831 struct inbound_queue_table *circularQ;
4832 int ret;
4833 u32 tag = 0x01;
4834 u32 opcode = OPC_INB_PHYSTOP;
4835 circularQ = &pm8001_ha->inbnd_q_tbl[0];
4836 memset(&payload, 0, sizeof(payload));
4837 payload.tag = cpu_to_le32(tag);
4838 payload.phy_id = cpu_to_le32(phy_id);
peter chang91a43fa2019-11-14 15:39:05 +05304839 ret = pm8001_mpi_build_cmd(pm8001_ha, circularQ, opcode, &payload,
4840 sizeof(payload), 0);
Sakthivel Kf5860992013-04-17 16:37:02 +05304841 return ret;
4842}
4843
Lee Jones6ad4a512020-07-21 17:41:25 +01004844/*
Sakthivel Kf5860992013-04-17 16:37:02 +05304845 * see comments on pm8001_mpi_reg_resp.
4846 */
4847static int pm80xx_chip_reg_dev_req(struct pm8001_hba_info *pm8001_ha,
4848 struct pm8001_device *pm8001_dev, u32 flag)
4849{
4850 struct reg_dev_req payload;
4851 u32 opc;
4852 u32 stp_sspsmp_sata = 0x4;
4853 struct inbound_queue_table *circularQ;
4854 u32 linkrate, phy_id;
4855 int rc, tag = 0xdeadbeef;
4856 struct pm8001_ccb_info *ccb;
4857 u8 retryFlag = 0x1;
4858 u16 firstBurstSize = 0;
4859 u16 ITNT = 2000;
4860 struct domain_device *dev = pm8001_dev->sas_device;
4861 struct domain_device *parent_dev = dev->parent;
Ajish Koshy08d0a992021-09-06 22:34:01 +05304862 struct pm8001_port *port = dev->port->lldd_port;
Sakthivel Kf5860992013-04-17 16:37:02 +05304863 circularQ = &pm8001_ha->inbnd_q_tbl[0];
4864
4865 memset(&payload, 0, sizeof(payload));
4866 rc = pm8001_tag_alloc(pm8001_ha, &tag);
4867 if (rc)
4868 return rc;
4869 ccb = &pm8001_ha->ccb_info[tag];
4870 ccb->device = pm8001_dev;
4871 ccb->ccb_tag = tag;
4872 payload.tag = cpu_to_le32(tag);
4873
4874 if (flag == 1) {
4875 stp_sspsmp_sata = 0x02; /*direct attached sata */
4876 } else {
James Bottomleyaa9f8322013-05-07 14:44:06 -07004877 if (pm8001_dev->dev_type == SAS_SATA_DEV)
Sakthivel Kf5860992013-04-17 16:37:02 +05304878 stp_sspsmp_sata = 0x00; /* stp*/
James Bottomleyaa9f8322013-05-07 14:44:06 -07004879 else if (pm8001_dev->dev_type == SAS_END_DEVICE ||
Igor Pylypiv4f632912021-09-28 19:58:07 -07004880 dev_is_expander(pm8001_dev->dev_type))
Sakthivel Kf5860992013-04-17 16:37:02 +05304881 stp_sspsmp_sata = 0x01; /*ssp or smp*/
4882 }
John Garry924a3542019-06-10 20:41:41 +08004883 if (parent_dev && dev_is_expander(parent_dev->dev_type))
Sakthivel Kf5860992013-04-17 16:37:02 +05304884 phy_id = parent_dev->ex_dev.ex_phy->phy_id;
4885 else
4886 phy_id = pm8001_dev->attached_phy;
4887
4888 opc = OPC_INB_REG_DEV;
4889
4890 linkrate = (pm8001_dev->sas_device->linkrate < dev->port->linkrate) ?
4891 pm8001_dev->sas_device->linkrate : dev->port->linkrate;
4892
4893 payload.phyid_portid =
Ajish Koshy08d0a992021-09-06 22:34:01 +05304894 cpu_to_le32(((port->port_id) & 0xFF) |
Sakthivel Kf5860992013-04-17 16:37:02 +05304895 ((phy_id & 0xFF) << 8));
4896
4897 payload.dtype_dlr_mcn_ir_retry = cpu_to_le32((retryFlag & 0x01) |
4898 ((linkrate & 0x0F) << 24) |
4899 ((stp_sspsmp_sata & 0x03) << 28));
4900 payload.firstburstsize_ITNexustimeout =
4901 cpu_to_le32(ITNT | (firstBurstSize * 0x10000));
4902
4903 memcpy(payload.sas_addr, pm8001_dev->sas_device->sas_addr,
4904 SAS_ADDR_SIZE);
4905
peter chang91a43fa2019-11-14 15:39:05 +05304906 rc = pm8001_mpi_build_cmd(pm8001_ha, circularQ, opc, &payload,
4907 sizeof(payload), 0);
Tomas Henzl5533abc2014-07-09 17:20:49 +05304908 if (rc)
4909 pm8001_tag_free(pm8001_ha, tag);
Sakthivel Kf5860992013-04-17 16:37:02 +05304910
4911 return rc;
4912}
4913
4914/**
4915 * pm80xx_chip_phy_ctl_req - support the local phy operation
4916 * @pm8001_ha: our hba card information.
Lee Jones6ad4a512020-07-21 17:41:25 +01004917 * @phyId: the phy id which we wanted to operate
4918 * @phy_op: phy operation to request
Sakthivel Kf5860992013-04-17 16:37:02 +05304919 */
4920static int pm80xx_chip_phy_ctl_req(struct pm8001_hba_info *pm8001_ha,
4921 u32 phyId, u32 phy_op)
4922{
Viswas G25c6edb2017-10-18 11:39:10 +05304923 u32 tag;
4924 int rc;
Sakthivel Kf5860992013-04-17 16:37:02 +05304925 struct local_phy_ctl_req payload;
4926 struct inbound_queue_table *circularQ;
Sakthivel Kf5860992013-04-17 16:37:02 +05304927 u32 opc = OPC_INB_LOCAL_PHY_CONTROL;
4928 memset(&payload, 0, sizeof(payload));
Viswas G25c6edb2017-10-18 11:39:10 +05304929 rc = pm8001_tag_alloc(pm8001_ha, &tag);
4930 if (rc)
4931 return rc;
Sakthivel Kf5860992013-04-17 16:37:02 +05304932 circularQ = &pm8001_ha->inbnd_q_tbl[0];
Viswas G25c6edb2017-10-18 11:39:10 +05304933 payload.tag = cpu_to_le32(tag);
Sakthivel Kf5860992013-04-17 16:37:02 +05304934 payload.phyop_phyid =
4935 cpu_to_le32(((phy_op & 0xFF) << 8) | (phyId & 0xFF));
peter chang91a43fa2019-11-14 15:39:05 +05304936 return pm8001_mpi_build_cmd(pm8001_ha, circularQ, opc, &payload,
4937 sizeof(payload), 0);
Sakthivel Kf5860992013-04-17 16:37:02 +05304938}
4939
Colin Ian Kingf310a4e2019-03-29 23:44:23 +00004940static u32 pm80xx_chip_is_our_interrupt(struct pm8001_hba_info *pm8001_ha)
Sakthivel Kf5860992013-04-17 16:37:02 +05304941{
Sakthivel Kf5860992013-04-17 16:37:02 +05304942#ifdef PM8001_USE_MSIX
4943 return 1;
Colin Ian King292c04c2019-03-28 23:43:28 +00004944#else
4945 u32 value;
4946
Sakthivel Kf5860992013-04-17 16:37:02 +05304947 value = pm8001_cr32(pm8001_ha, 0, MSGU_ODR);
4948 if (value)
4949 return 1;
4950 return 0;
Colin Ian King292c04c2019-03-28 23:43:28 +00004951#endif
Sakthivel Kf5860992013-04-17 16:37:02 +05304952}
4953
4954/**
Lee Jones7cdaf122021-03-03 14:46:23 +00004955 * pm80xx_chip_isr - PM8001 isr handler.
Sakthivel Kf5860992013-04-17 16:37:02 +05304956 * @pm8001_ha: our hba card information.
Lee Jones6ad4a512020-07-21 17:41:25 +01004957 * @vec: irq number.
Sakthivel Kf5860992013-04-17 16:37:02 +05304958 */
4959static irqreturn_t
4960pm80xx_chip_isr(struct pm8001_hba_info *pm8001_ha, u8 vec)
4961{
4962 pm80xx_chip_interrupt_disable(pm8001_ha, vec);
Joe Perches1b5d2792020-11-20 15:16:09 -08004963 pm8001_dbg(pm8001_ha, DEVIO,
4964 "irq vec %d, ODMR:0x%x\n",
4965 vec, pm8001_cr32(pm8001_ha, 0, 0x30));
Sakthivel Kf5860992013-04-17 16:37:02 +05304966 process_oq(pm8001_ha, vec);
4967 pm80xx_chip_interrupt_enable(pm8001_ha, vec);
4968 return IRQ_HANDLED;
4969}
4970
Lee Jonesea310f52020-07-21 17:41:33 +01004971static void mpi_set_phy_profile_req(struct pm8001_hba_info *pm8001_ha,
4972 u32 operation, u32 phyid,
4973 u32 length, u32 *buf)
Anand Kumar Santhanam27909402013-09-18 13:02:44 +05304974{
Luo Jiaxing8a23dbc2021-04-08 20:56:32 +08004975 u32 tag, i, j = 0;
Anand Kumar Santhanam27909402013-09-18 13:02:44 +05304976 int rc;
4977 struct set_phy_profile_req payload;
4978 struct inbound_queue_table *circularQ;
4979 u32 opc = OPC_INB_SET_PHY_PROFILE;
4980
4981 memset(&payload, 0, sizeof(payload));
4982 rc = pm8001_tag_alloc(pm8001_ha, &tag);
4983 if (rc)
Joe Perches1b5d2792020-11-20 15:16:09 -08004984 pm8001_dbg(pm8001_ha, FAIL, "Invalid tag\n");
Anand Kumar Santhanam27909402013-09-18 13:02:44 +05304985 circularQ = &pm8001_ha->inbnd_q_tbl[0];
4986 payload.tag = cpu_to_le32(tag);
4987 payload.ppc_phyid = (((operation & 0xF) << 8) | (phyid & 0xFF));
Joe Perches1b5d2792020-11-20 15:16:09 -08004988 pm8001_dbg(pm8001_ha, INIT,
4989 " phy profile command for phy %x ,length is %d\n",
4990 payload.ppc_phyid, length);
Anand Kumar Santhanam27909402013-09-18 13:02:44 +05304991 for (i = length; i < (length + PHY_DWORD_LENGTH - 1); i++) {
4992 payload.reserved[j] = cpu_to_le32(*((u32 *)buf + i));
4993 j++;
4994 }
peter chang91a43fa2019-11-14 15:39:05 +05304995 rc = pm8001_mpi_build_cmd(pm8001_ha, circularQ, opc, &payload,
4996 sizeof(payload), 0);
Tomas Henzl5533abc2014-07-09 17:20:49 +05304997 if (rc)
4998 pm8001_tag_free(pm8001_ha, tag);
Anand Kumar Santhanam27909402013-09-18 13:02:44 +05304999}
5000
5001void pm8001_set_phy_profile(struct pm8001_hba_info *pm8001_ha,
5002 u32 length, u8 *buf)
5003{
YueHaibingfdd0a662018-09-14 01:38:56 +00005004 u32 i;
Anand Kumar Santhanam27909402013-09-18 13:02:44 +05305005
Anand Kumar Santhanam27909402013-09-18 13:02:44 +05305006 for (i = 0; i < pm8001_ha->chip->n_phy; i++) {
5007 mpi_set_phy_profile_req(pm8001_ha,
5008 SAS_PHY_ANALOG_SETTINGS_PAGE, i, length, (u32 *)buf);
5009 length = length + PHY_DWORD_LENGTH;
5010 }
Joe Perches1b5d2792020-11-20 15:16:09 -08005011 pm8001_dbg(pm8001_ha, INIT, "phy settings completed\n");
Anand Kumar Santhanam27909402013-09-18 13:02:44 +05305012}
Benjamin Roodc5614df2015-10-30 10:53:28 -04005013
5014void pm8001_set_phy_profile_single(struct pm8001_hba_info *pm8001_ha,
5015 u32 phy, u32 length, u32 *buf)
5016{
5017 u32 tag, opc;
5018 int rc, i;
5019 struct set_phy_profile_req payload;
5020 struct inbound_queue_table *circularQ;
5021
5022 memset(&payload, 0, sizeof(payload));
5023
5024 rc = pm8001_tag_alloc(pm8001_ha, &tag);
5025 if (rc)
Joe Perches1b5d2792020-11-20 15:16:09 -08005026 pm8001_dbg(pm8001_ha, INIT, "Invalid tag\n");
Benjamin Roodc5614df2015-10-30 10:53:28 -04005027
5028 circularQ = &pm8001_ha->inbnd_q_tbl[0];
5029 opc = OPC_INB_SET_PHY_PROFILE;
5030
5031 payload.tag = cpu_to_le32(tag);
5032 payload.ppc_phyid = (((SAS_PHY_ANALOG_SETTINGS_PAGE & 0xF) << 8)
5033 | (phy & 0xFF));
5034
5035 for (i = 0; i < length; i++)
5036 payload.reserved[i] = cpu_to_le32(*(buf + i));
5037
peter chang91a43fa2019-11-14 15:39:05 +05305038 rc = pm8001_mpi_build_cmd(pm8001_ha, circularQ, opc, &payload,
5039 sizeof(payload), 0);
Benjamin Roodc5614df2015-10-30 10:53:28 -04005040 if (rc)
5041 pm8001_tag_free(pm8001_ha, tag);
5042
Joe Perches1b5d2792020-11-20 15:16:09 -08005043 pm8001_dbg(pm8001_ha, INIT, "PHY %d settings applied\n", phy);
Benjamin Roodc5614df2015-10-30 10:53:28 -04005044}
Sakthivel Kf5860992013-04-17 16:37:02 +05305045const struct pm8001_dispatch pm8001_80xx_dispatch = {
5046 .name = "pmc80xx",
5047 .chip_init = pm80xx_chip_init,
5048 .chip_soft_rst = pm80xx_chip_soft_rst,
5049 .chip_rst = pm80xx_hw_chip_rst,
5050 .chip_iounmap = pm8001_chip_iounmap,
5051 .isr = pm80xx_chip_isr,
Colin Ian Kingf310a4e2019-03-29 23:44:23 +00005052 .is_our_interrupt = pm80xx_chip_is_our_interrupt,
Sakthivel Kf5860992013-04-17 16:37:02 +05305053 .isr_process_oq = process_oq,
5054 .interrupt_enable = pm80xx_chip_interrupt_enable,
5055 .interrupt_disable = pm80xx_chip_interrupt_disable,
5056 .make_prd = pm8001_chip_make_sg,
5057 .smp_req = pm80xx_chip_smp_req,
5058 .ssp_io_req = pm80xx_chip_ssp_io_req,
5059 .sata_req = pm80xx_chip_sata_req,
5060 .phy_start_req = pm80xx_chip_phy_start_req,
5061 .phy_stop_req = pm80xx_chip_phy_stop_req,
5062 .reg_dev_req = pm80xx_chip_reg_dev_req,
5063 .dereg_dev_req = pm8001_chip_dereg_dev_req,
5064 .phy_ctl_req = pm80xx_chip_phy_ctl_req,
5065 .task_abort = pm8001_chip_abort_task,
5066 .ssp_tm_req = pm8001_chip_ssp_tm_req,
5067 .get_nvmd_req = pm8001_chip_get_nvmd_req,
5068 .set_nvmd_req = pm8001_chip_set_nvmd_req,
5069 .fw_flash_update_req = pm8001_chip_fw_flash_update_req,
5070 .set_dev_state_req = pm8001_chip_set_dev_state_req,
akshatzena961ea02021-01-09 18:08:43 +05305071 .fatal_errors = pm80xx_fatal_errors,
Ajish Koshyee05cb72021-12-28 16:47:53 +05305072 .hw_event_ack_req = pm80xx_hw_event_ack_req,
Sakthivel Kf5860992013-04-17 16:37:02 +05305073};