blob: 9d20f8009b89fca081401bb98123d1828b338c6d [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);
John Garrydf7abca2022-01-27 21:12:52 +08002188 pm8001_ccb_task_free(pm8001_ha, t, ccb, tag);
Viswas G869ddbd2017-10-18 11:39:13 +05302189 if (t->slow_task)
2190 complete(&t->slow_task->completion);
Sakthivel Kf5860992013-04-17 16:37:02 +05302191 } 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);
John Garrydf7abca2022-01-27 21:12:52 +08002797 pm8001_ccb_task_free(pm8001_ha, t, ccb, tag);
peter changce21c632019-11-14 15:38:58 +05302798 if (t->slow_task)
2799 complete(&t->slow_task->completion);
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);
Sakthivel Kf5860992013-04-17 16:37:02 +05302824
Sakthivel Kf5860992013-04-17 16:37:02 +05302825 if (event)
Joe Perches1b5d2792020-11-20 15:16:09 -08002826 pm8001_dbg(pm8001_ha, FAIL, "SATA EVENT 0x%x\n", event);
Sakthivel Kc6b9ef52013-03-19 18:08:08 +05302827
2828 /* Check if this is NCQ error */
2829 if (event == IO_XFER_ERROR_ABORTED_NCQ_MODE) {
2830 /* find device using device id */
2831 pm8001_dev = pm8001_find_dev(pm8001_ha, dev_id);
2832 /* send read log extension */
2833 if (pm8001_dev)
2834 pm80xx_send_read_log(pm8001_ha, pm8001_dev);
Sakthivel Kf5860992013-04-17 16:37:02 +05302835 return;
Sakthivel Kc6b9ef52013-03-19 18:08:08 +05302836 }
2837
Igor Pylypiv60de1a62021-11-01 16:28:23 -07002838 ccb = &pm8001_ha->ccb_info[tag];
2839 t = ccb->task;
2840 pm8001_dev = ccb->device;
2841
Sakthivel Kc6b9ef52013-03-19 18:08:08 +05302842 if (unlikely(!t || !t->lldd_task || !t->dev)) {
Joe Perches1b5d2792020-11-20 15:16:09 -08002843 pm8001_dbg(pm8001_ha, FAIL, "task or dev null\n");
Sakthivel Kc6b9ef52013-03-19 18:08:08 +05302844 return;
2845 }
2846
Sakthivel Kf5860992013-04-17 16:37:02 +05302847 ts = &t->task_status;
Joe Perches1b5d2792020-11-20 15:16:09 -08002848 pm8001_dbg(pm8001_ha, IOERR, "port_id:0x%x, tag:0x%x, event:0x%x\n",
2849 port_id, tag, event);
Sakthivel Kf5860992013-04-17 16:37:02 +05302850 switch (event) {
2851 case IO_OVERFLOW:
Joe Perches1b5d2792020-11-20 15:16:09 -08002852 pm8001_dbg(pm8001_ha, IO, "IO_UNDERFLOW\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302853 ts->resp = SAS_TASK_COMPLETE;
2854 ts->stat = SAS_DATA_OVERRUN;
2855 ts->residual = 0;
Sakthivel Kf5860992013-04-17 16:37:02 +05302856 break;
2857 case IO_XFER_ERROR_BREAK:
Joe Perches1b5d2792020-11-20 15:16:09 -08002858 pm8001_dbg(pm8001_ha, IO, "IO_XFER_ERROR_BREAK\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302859 ts->resp = SAS_TASK_COMPLETE;
2860 ts->stat = SAS_INTERRUPTED;
2861 break;
2862 case IO_XFER_ERROR_PHY_NOT_READY:
Joe Perches1b5d2792020-11-20 15:16:09 -08002863 pm8001_dbg(pm8001_ha, IO, "IO_XFER_ERROR_PHY_NOT_READY\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302864 ts->resp = SAS_TASK_COMPLETE;
2865 ts->stat = SAS_OPEN_REJECT;
2866 ts->open_rej_reason = SAS_OREJ_RSVD_RETRY;
2867 break;
2868 case IO_OPEN_CNX_ERROR_PROTOCOL_NOT_SUPPORTED:
Joe Perches1b5d2792020-11-20 15:16:09 -08002869 pm8001_dbg(pm8001_ha, IO,
2870 "IO_OPEN_CNX_ERROR_PROTOCOL_NOT_SUPPORTED\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302871 ts->resp = SAS_TASK_COMPLETE;
2872 ts->stat = SAS_OPEN_REJECT;
2873 ts->open_rej_reason = SAS_OREJ_EPROTO;
2874 break;
2875 case IO_OPEN_CNX_ERROR_ZONE_VIOLATION:
Joe Perches1b5d2792020-11-20 15:16:09 -08002876 pm8001_dbg(pm8001_ha, IO,
2877 "IO_OPEN_CNX_ERROR_ZONE_VIOLATION\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302878 ts->resp = SAS_TASK_COMPLETE;
2879 ts->stat = SAS_OPEN_REJECT;
2880 ts->open_rej_reason = SAS_OREJ_UNKNOWN;
2881 break;
2882 case IO_OPEN_CNX_ERROR_BREAK:
Joe Perches1b5d2792020-11-20 15:16:09 -08002883 pm8001_dbg(pm8001_ha, IO, "IO_OPEN_CNX_ERROR_BREAK\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302884 ts->resp = SAS_TASK_COMPLETE;
2885 ts->stat = SAS_OPEN_REJECT;
2886 ts->open_rej_reason = SAS_OREJ_RSVD_CONT0;
2887 break;
2888 case IO_OPEN_CNX_ERROR_IT_NEXUS_LOSS:
Sakthivel Ka6cb3d02013-03-19 18:08:40 +05302889 case IO_XFER_OPEN_RETRY_BACKOFF_THRESHOLD_REACHED:
2890 case IO_OPEN_CNX_ERROR_IT_NEXUS_LOSS_OPEN_TMO:
2891 case IO_OPEN_CNX_ERROR_IT_NEXUS_LOSS_NO_DEST:
2892 case IO_OPEN_CNX_ERROR_IT_NEXUS_LOSS_OPEN_COLLIDE:
2893 case IO_OPEN_CNX_ERROR_IT_NEXUS_LOSS_PATHWAY_BLOCKED:
Joe Perches1b5d2792020-11-20 15:16:09 -08002894 pm8001_dbg(pm8001_ha, FAIL,
2895 "IO_OPEN_CNX_ERROR_IT_NEXUS_LOSS\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302896 ts->resp = SAS_TASK_UNDELIVERED;
2897 ts->stat = SAS_DEV_NO_RESPONSE;
2898 if (!t->uldd_task) {
2899 pm8001_handle_event(pm8001_ha,
2900 pm8001_dev,
2901 IO_OPEN_CNX_ERROR_IT_NEXUS_LOSS);
2902 ts->resp = SAS_TASK_COMPLETE;
2903 ts->stat = SAS_QUEUE_FULL;
Sakthivel Kf5860992013-04-17 16:37:02 +05302904 return;
2905 }
2906 break;
2907 case IO_OPEN_CNX_ERROR_BAD_DESTINATION:
Joe Perches1b5d2792020-11-20 15:16:09 -08002908 pm8001_dbg(pm8001_ha, IO,
2909 "IO_OPEN_CNX_ERROR_BAD_DESTINATION\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302910 ts->resp = SAS_TASK_UNDELIVERED;
2911 ts->stat = SAS_OPEN_REJECT;
2912 ts->open_rej_reason = SAS_OREJ_BAD_DEST;
2913 break;
2914 case IO_OPEN_CNX_ERROR_CONNECTION_RATE_NOT_SUPPORTED:
Joe Perches1b5d2792020-11-20 15:16:09 -08002915 pm8001_dbg(pm8001_ha, IO,
2916 "IO_OPEN_CNX_ERROR_CONNECTION_RATE_NOT_SUPPORTED\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302917 ts->resp = SAS_TASK_COMPLETE;
2918 ts->stat = SAS_OPEN_REJECT;
2919 ts->open_rej_reason = SAS_OREJ_CONN_RATE;
2920 break;
2921 case IO_OPEN_CNX_ERROR_WRONG_DESTINATION:
Joe Perches1b5d2792020-11-20 15:16:09 -08002922 pm8001_dbg(pm8001_ha, IO,
2923 "IO_OPEN_CNX_ERROR_WRONG_DESTINATION\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302924 ts->resp = SAS_TASK_COMPLETE;
2925 ts->stat = SAS_OPEN_REJECT;
2926 ts->open_rej_reason = SAS_OREJ_WRONG_DEST;
2927 break;
2928 case IO_XFER_ERROR_NAK_RECEIVED:
Joe Perches1b5d2792020-11-20 15:16:09 -08002929 pm8001_dbg(pm8001_ha, IO, "IO_XFER_ERROR_NAK_RECEIVED\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302930 ts->resp = SAS_TASK_COMPLETE;
2931 ts->stat = SAS_NAK_R_ERR;
2932 break;
2933 case IO_XFER_ERROR_PEER_ABORTED:
Joe Perches1b5d2792020-11-20 15:16:09 -08002934 pm8001_dbg(pm8001_ha, IO, "IO_XFER_ERROR_PEER_ABORTED\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302935 ts->resp = SAS_TASK_COMPLETE;
2936 ts->stat = SAS_NAK_R_ERR;
2937 break;
2938 case IO_XFER_ERROR_REJECTED_NCQ_MODE:
Joe Perches1b5d2792020-11-20 15:16:09 -08002939 pm8001_dbg(pm8001_ha, IO, "IO_XFER_ERROR_REJECTED_NCQ_MODE\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302940 ts->resp = SAS_TASK_COMPLETE;
2941 ts->stat = SAS_DATA_UNDERRUN;
2942 break;
2943 case IO_XFER_OPEN_RETRY_TIMEOUT:
Joe Perches1b5d2792020-11-20 15:16:09 -08002944 pm8001_dbg(pm8001_ha, IO, "IO_XFER_OPEN_RETRY_TIMEOUT\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302945 ts->resp = SAS_TASK_COMPLETE;
2946 ts->stat = SAS_OPEN_TO;
2947 break;
2948 case IO_XFER_ERROR_UNEXPECTED_PHASE:
Joe Perches1b5d2792020-11-20 15:16:09 -08002949 pm8001_dbg(pm8001_ha, IO, "IO_XFER_ERROR_UNEXPECTED_PHASE\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302950 ts->resp = SAS_TASK_COMPLETE;
2951 ts->stat = SAS_OPEN_TO;
2952 break;
2953 case IO_XFER_ERROR_XFER_RDY_OVERRUN:
Joe Perches1b5d2792020-11-20 15:16:09 -08002954 pm8001_dbg(pm8001_ha, IO, "IO_XFER_ERROR_XFER_RDY_OVERRUN\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302955 ts->resp = SAS_TASK_COMPLETE;
2956 ts->stat = SAS_OPEN_TO;
2957 break;
2958 case IO_XFER_ERROR_XFER_RDY_NOT_EXPECTED:
Joe Perches1b5d2792020-11-20 15:16:09 -08002959 pm8001_dbg(pm8001_ha, IO,
2960 "IO_XFER_ERROR_XFER_RDY_NOT_EXPECTED\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302961 ts->resp = SAS_TASK_COMPLETE;
2962 ts->stat = SAS_OPEN_TO;
2963 break;
2964 case IO_XFER_ERROR_OFFSET_MISMATCH:
Joe Perches1b5d2792020-11-20 15:16:09 -08002965 pm8001_dbg(pm8001_ha, IO, "IO_XFER_ERROR_OFFSET_MISMATCH\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302966 ts->resp = SAS_TASK_COMPLETE;
2967 ts->stat = SAS_OPEN_TO;
2968 break;
2969 case IO_XFER_ERROR_XFER_ZERO_DATA_LEN:
Joe Perches1b5d2792020-11-20 15:16:09 -08002970 pm8001_dbg(pm8001_ha, IO,
2971 "IO_XFER_ERROR_XFER_ZERO_DATA_LEN\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302972 ts->resp = SAS_TASK_COMPLETE;
2973 ts->stat = SAS_OPEN_TO;
2974 break;
2975 case IO_XFER_CMD_FRAME_ISSUED:
Joe Perches1b5d2792020-11-20 15:16:09 -08002976 pm8001_dbg(pm8001_ha, IO, "IO_XFER_CMD_FRAME_ISSUED\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302977 break;
2978 case IO_XFER_PIO_SETUP_ERROR:
Joe Perches1b5d2792020-11-20 15:16:09 -08002979 pm8001_dbg(pm8001_ha, IO, "IO_XFER_PIO_SETUP_ERROR\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05302980 ts->resp = SAS_TASK_COMPLETE;
2981 ts->stat = SAS_OPEN_TO;
2982 break;
Sakthivel Ka6cb3d02013-03-19 18:08:40 +05302983 case IO_XFER_ERROR_INTERNAL_CRC_ERROR:
Joe Perches1b5d2792020-11-20 15:16:09 -08002984 pm8001_dbg(pm8001_ha, FAIL,
2985 "IO_XFR_ERROR_INTERNAL_CRC_ERROR\n");
Sakthivel Ka6cb3d02013-03-19 18:08:40 +05302986 /* TBC: used default set values */
2987 ts->resp = SAS_TASK_COMPLETE;
2988 ts->stat = SAS_OPEN_TO;
2989 break;
2990 case IO_XFER_DMA_ACTIVATE_TIMEOUT:
Joe Perches1b5d2792020-11-20 15:16:09 -08002991 pm8001_dbg(pm8001_ha, FAIL, "IO_XFR_DMA_ACTIVATE_TIMEOUT\n");
Sakthivel Ka6cb3d02013-03-19 18:08:40 +05302992 /* TBC: used default set values */
2993 ts->resp = SAS_TASK_COMPLETE;
2994 ts->stat = SAS_OPEN_TO;
2995 break;
Sakthivel Kf5860992013-04-17 16:37:02 +05302996 default:
Joe Perches1b5d2792020-11-20 15:16:09 -08002997 pm8001_dbg(pm8001_ha, IO, "Unknown status 0x%x\n", event);
Sakthivel Kf5860992013-04-17 16:37:02 +05302998 /* not allowed case. Therefore, return failed status */
2999 ts->resp = SAS_TASK_COMPLETE;
3000 ts->stat = SAS_OPEN_TO;
3001 break;
3002 }
Sakthivel Kf5860992013-04-17 16:37:02 +05303003}
3004
3005/*See the comments for mpi_ssp_completion */
3006static void
3007mpi_smp_completion(struct pm8001_hba_info *pm8001_ha, void *piomb)
3008{
3009 u32 param, i;
3010 struct sas_task *t;
3011 struct pm8001_ccb_info *ccb;
3012 unsigned long flags;
3013 u32 status;
3014 u32 tag;
3015 struct smp_completion_resp *psmpPayload;
3016 struct task_status_struct *ts;
3017 struct pm8001_device *pm8001_dev;
Sakthivel Kf5860992013-04-17 16:37:02 +05303018
3019 psmpPayload = (struct smp_completion_resp *)(piomb + 4);
3020 status = le32_to_cpu(psmpPayload->status);
3021 tag = le32_to_cpu(psmpPayload->tag);
3022
3023 ccb = &pm8001_ha->ccb_info[tag];
3024 param = le32_to_cpu(psmpPayload->param);
3025 t = ccb->task;
3026 ts = &t->task_status;
3027 pm8001_dev = ccb->device;
3028 if (status)
Joe Perches1b5d2792020-11-20 15:16:09 -08003029 pm8001_dbg(pm8001_ha, FAIL, "smp IO status 0x%x\n", status);
Sakthivel Kf5860992013-04-17 16:37:02 +05303030 if (unlikely(!t || !t->lldd_task || !t->dev))
3031 return;
3032
Joe Perches1b5d2792020-11-20 15:16:09 -08003033 pm8001_dbg(pm8001_ha, DEV, "tag::0x%x status::0x%x\n", tag, status);
peter chang73706722019-11-14 15:39:02 +05303034
Sakthivel Kf5860992013-04-17 16:37:02 +05303035 switch (status) {
3036
3037 case IO_SUCCESS:
Joe Perches1b5d2792020-11-20 15:16:09 -08003038 pm8001_dbg(pm8001_ha, IO, "IO_SUCCESS\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303039 ts->resp = SAS_TASK_COMPLETE;
Bart Van Assched377f412021-05-23 19:54:55 -07003040 ts->stat = SAS_SAM_STAT_GOOD;
Sakthivel Kf5860992013-04-17 16:37:02 +05303041 if (pm8001_dev)
Viswas G4a2efd42020-11-02 22:25:26 +05303042 atomic_dec(&pm8001_dev->running_req);
Sakthivel Kf5860992013-04-17 16:37:02 +05303043 if (pm8001_ha->smp_exp_mode == SMP_DIRECT) {
John Garry2fe24342021-12-13 18:10:48 +08003044 struct scatterlist *sg_resp = &t->smp_task.smp_resp;
3045 u8 *payload;
3046 void *to;
3047
Joe Perches1b5d2792020-11-20 15:16:09 -08003048 pm8001_dbg(pm8001_ha, IO,
3049 "DIRECT RESPONSE Length:%d\n",
3050 param);
John Garry2fe24342021-12-13 18:10:48 +08003051 to = kmap_atomic(sg_page(sg_resp));
3052 payload = to + sg_resp->offset;
Sakthivel Kf5860992013-04-17 16:37:02 +05303053 for (i = 0; i < param; i++) {
John Garry2fe24342021-12-13 18:10:48 +08003054 *(payload + i) = psmpPayload->_r_a[i];
Joe Perches1b5d2792020-11-20 15:16:09 -08003055 pm8001_dbg(pm8001_ha, IO,
3056 "SMP Byte%d DMA data 0x%x psmp 0x%x\n",
John Garry2fe24342021-12-13 18:10:48 +08003057 i, *(payload + i),
Joe Perches1b5d2792020-11-20 15:16:09 -08003058 psmpPayload->_r_a[i]);
Sakthivel Kf5860992013-04-17 16:37:02 +05303059 }
John Garry2fe24342021-12-13 18:10:48 +08003060 kunmap_atomic(to);
Sakthivel Kf5860992013-04-17 16:37:02 +05303061 }
3062 break;
3063 case IO_ABORTED:
Joe Perches1b5d2792020-11-20 15:16:09 -08003064 pm8001_dbg(pm8001_ha, IO, "IO_ABORTED IOMB\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303065 ts->resp = SAS_TASK_COMPLETE;
3066 ts->stat = SAS_ABORTED_TASK;
3067 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 break;
3070 case IO_OVERFLOW:
Joe Perches1b5d2792020-11-20 15:16:09 -08003071 pm8001_dbg(pm8001_ha, IO, "IO_UNDERFLOW\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303072 ts->resp = SAS_TASK_COMPLETE;
3073 ts->stat = SAS_DATA_OVERRUN;
3074 ts->residual = 0;
3075 if (pm8001_dev)
Viswas G4a2efd42020-11-02 22:25:26 +05303076 atomic_dec(&pm8001_dev->running_req);
Sakthivel Kf5860992013-04-17 16:37:02 +05303077 break;
3078 case IO_NO_DEVICE:
Joe Perches1b5d2792020-11-20 15:16:09 -08003079 pm8001_dbg(pm8001_ha, IO, "IO_NO_DEVICE\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303080 ts->resp = SAS_TASK_COMPLETE;
3081 ts->stat = SAS_PHY_DOWN;
3082 break;
3083 case IO_ERROR_HW_TIMEOUT:
Joe Perches1b5d2792020-11-20 15:16:09 -08003084 pm8001_dbg(pm8001_ha, IO, "IO_ERROR_HW_TIMEOUT\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303085 ts->resp = SAS_TASK_COMPLETE;
Bart Van Assched377f412021-05-23 19:54:55 -07003086 ts->stat = SAS_SAM_STAT_BUSY;
Sakthivel Kf5860992013-04-17 16:37:02 +05303087 break;
3088 case IO_XFER_ERROR_BREAK:
Joe Perches1b5d2792020-11-20 15:16:09 -08003089 pm8001_dbg(pm8001_ha, IO, "IO_XFER_ERROR_BREAK\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303090 ts->resp = SAS_TASK_COMPLETE;
Bart Van Assched377f412021-05-23 19:54:55 -07003091 ts->stat = SAS_SAM_STAT_BUSY;
Sakthivel Kf5860992013-04-17 16:37:02 +05303092 break;
3093 case IO_XFER_ERROR_PHY_NOT_READY:
Joe Perches1b5d2792020-11-20 15:16:09 -08003094 pm8001_dbg(pm8001_ha, IO, "IO_XFER_ERROR_PHY_NOT_READY\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303095 ts->resp = SAS_TASK_COMPLETE;
Bart Van Assched377f412021-05-23 19:54:55 -07003096 ts->stat = SAS_SAM_STAT_BUSY;
Sakthivel Kf5860992013-04-17 16:37:02 +05303097 break;
3098 case IO_OPEN_CNX_ERROR_PROTOCOL_NOT_SUPPORTED:
Joe Perches1b5d2792020-11-20 15:16:09 -08003099 pm8001_dbg(pm8001_ha, IO,
3100 "IO_OPEN_CNX_ERROR_PROTOCOL_NOT_SUPPORTED\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303101 ts->resp = SAS_TASK_COMPLETE;
3102 ts->stat = SAS_OPEN_REJECT;
3103 ts->open_rej_reason = SAS_OREJ_UNKNOWN;
3104 break;
3105 case IO_OPEN_CNX_ERROR_ZONE_VIOLATION:
Joe Perches1b5d2792020-11-20 15:16:09 -08003106 pm8001_dbg(pm8001_ha, IO,
3107 "IO_OPEN_CNX_ERROR_ZONE_VIOLATION\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303108 ts->resp = SAS_TASK_COMPLETE;
3109 ts->stat = SAS_OPEN_REJECT;
3110 ts->open_rej_reason = SAS_OREJ_UNKNOWN;
3111 break;
3112 case IO_OPEN_CNX_ERROR_BREAK:
Joe Perches1b5d2792020-11-20 15:16:09 -08003113 pm8001_dbg(pm8001_ha, IO, "IO_OPEN_CNX_ERROR_BREAK\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303114 ts->resp = SAS_TASK_COMPLETE;
3115 ts->stat = SAS_OPEN_REJECT;
3116 ts->open_rej_reason = SAS_OREJ_RSVD_CONT0;
3117 break;
3118 case IO_OPEN_CNX_ERROR_IT_NEXUS_LOSS:
Sakthivel Ka6cb3d02013-03-19 18:08:40 +05303119 case IO_XFER_OPEN_RETRY_BACKOFF_THRESHOLD_REACHED:
3120 case IO_OPEN_CNX_ERROR_IT_NEXUS_LOSS_OPEN_TMO:
3121 case IO_OPEN_CNX_ERROR_IT_NEXUS_LOSS_NO_DEST:
3122 case IO_OPEN_CNX_ERROR_IT_NEXUS_LOSS_OPEN_COLLIDE:
3123 case IO_OPEN_CNX_ERROR_IT_NEXUS_LOSS_PATHWAY_BLOCKED:
Joe Perches1b5d2792020-11-20 15:16:09 -08003124 pm8001_dbg(pm8001_ha, IO, "IO_OPEN_CNX_ERROR_IT_NEXUS_LOSS\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303125 ts->resp = SAS_TASK_COMPLETE;
3126 ts->stat = SAS_OPEN_REJECT;
3127 ts->open_rej_reason = SAS_OREJ_UNKNOWN;
3128 pm8001_handle_event(pm8001_ha,
3129 pm8001_dev,
3130 IO_OPEN_CNX_ERROR_IT_NEXUS_LOSS);
3131 break;
3132 case IO_OPEN_CNX_ERROR_BAD_DESTINATION:
Joe Perches1b5d2792020-11-20 15:16:09 -08003133 pm8001_dbg(pm8001_ha, IO,
3134 "IO_OPEN_CNX_ERROR_BAD_DESTINATION\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303135 ts->resp = SAS_TASK_COMPLETE;
3136 ts->stat = SAS_OPEN_REJECT;
3137 ts->open_rej_reason = SAS_OREJ_BAD_DEST;
3138 break;
3139 case IO_OPEN_CNX_ERROR_CONNECTION_RATE_NOT_SUPPORTED:
Joe Perches1b5d2792020-11-20 15:16:09 -08003140 pm8001_dbg(pm8001_ha, IO,
3141 "IO_OPEN_CNX_ERROR_CONNECTION_RATE_NOT_SUPPORTED\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303142 ts->resp = SAS_TASK_COMPLETE;
3143 ts->stat = SAS_OPEN_REJECT;
3144 ts->open_rej_reason = SAS_OREJ_CONN_RATE;
3145 break;
3146 case IO_OPEN_CNX_ERROR_WRONG_DESTINATION:
Joe Perches1b5d2792020-11-20 15:16:09 -08003147 pm8001_dbg(pm8001_ha, IO,
3148 "IO_OPEN_CNX_ERROR_WRONG_DESTINATION\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303149 ts->resp = SAS_TASK_COMPLETE;
3150 ts->stat = SAS_OPEN_REJECT;
3151 ts->open_rej_reason = SAS_OREJ_WRONG_DEST;
3152 break;
3153 case IO_XFER_ERROR_RX_FRAME:
Joe Perches1b5d2792020-11-20 15:16:09 -08003154 pm8001_dbg(pm8001_ha, IO, "IO_XFER_ERROR_RX_FRAME\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303155 ts->resp = SAS_TASK_COMPLETE;
3156 ts->stat = SAS_DEV_NO_RESPONSE;
3157 break;
3158 case IO_XFER_OPEN_RETRY_TIMEOUT:
Joe Perches1b5d2792020-11-20 15:16:09 -08003159 pm8001_dbg(pm8001_ha, IO, "IO_XFER_OPEN_RETRY_TIMEOUT\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303160 ts->resp = SAS_TASK_COMPLETE;
3161 ts->stat = SAS_OPEN_REJECT;
3162 ts->open_rej_reason = SAS_OREJ_RSVD_RETRY;
3163 break;
3164 case IO_ERROR_INTERNAL_SMP_RESOURCE:
Joe Perches1b5d2792020-11-20 15:16:09 -08003165 pm8001_dbg(pm8001_ha, IO, "IO_ERROR_INTERNAL_SMP_RESOURCE\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303166 ts->resp = SAS_TASK_COMPLETE;
3167 ts->stat = SAS_QUEUE_FULL;
3168 break;
3169 case IO_PORT_IN_RESET:
Joe Perches1b5d2792020-11-20 15:16:09 -08003170 pm8001_dbg(pm8001_ha, IO, "IO_PORT_IN_RESET\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303171 ts->resp = SAS_TASK_COMPLETE;
3172 ts->stat = SAS_OPEN_REJECT;
3173 ts->open_rej_reason = SAS_OREJ_RSVD_RETRY;
3174 break;
3175 case IO_DS_NON_OPERATIONAL:
Joe Perches1b5d2792020-11-20 15:16:09 -08003176 pm8001_dbg(pm8001_ha, IO, "IO_DS_NON_OPERATIONAL\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303177 ts->resp = SAS_TASK_COMPLETE;
3178 ts->stat = SAS_DEV_NO_RESPONSE;
3179 break;
3180 case IO_DS_IN_RECOVERY:
Joe Perches1b5d2792020-11-20 15:16:09 -08003181 pm8001_dbg(pm8001_ha, IO, "IO_DS_IN_RECOVERY\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303182 ts->resp = SAS_TASK_COMPLETE;
3183 ts->stat = SAS_OPEN_REJECT;
3184 ts->open_rej_reason = SAS_OREJ_RSVD_RETRY;
3185 break;
3186 case IO_OPEN_CNX_ERROR_HW_RESOURCE_BUSY:
Joe Perches1b5d2792020-11-20 15:16:09 -08003187 pm8001_dbg(pm8001_ha, IO,
3188 "IO_OPEN_CNX_ERROR_HW_RESOURCE_BUSY\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303189 ts->resp = SAS_TASK_COMPLETE;
3190 ts->stat = SAS_OPEN_REJECT;
3191 ts->open_rej_reason = SAS_OREJ_RSVD_RETRY;
3192 break;
3193 default:
Joe Perches1b5d2792020-11-20 15:16:09 -08003194 pm8001_dbg(pm8001_ha, DEVIO, "Unknown status 0x%x\n", status);
Sakthivel Kf5860992013-04-17 16:37:02 +05303195 ts->resp = SAS_TASK_COMPLETE;
3196 ts->stat = SAS_DEV_NO_RESPONSE;
3197 /* not allowed case. Therefore, return failed status */
3198 break;
3199 }
3200 spin_lock_irqsave(&t->task_state_lock, flags);
3201 t->task_state_flags &= ~SAS_TASK_STATE_PENDING;
3202 t->task_state_flags &= ~SAS_TASK_AT_INITIATOR;
3203 t->task_state_flags |= SAS_TASK_STATE_DONE;
3204 if (unlikely((t->task_state_flags & SAS_TASK_STATE_ABORTED))) {
3205 spin_unlock_irqrestore(&t->task_state_lock, flags);
Joe Perches1b5d2792020-11-20 15:16:09 -08003206 pm8001_dbg(pm8001_ha, FAIL,
3207 "task 0x%p done with io_status 0x%x resp 0x%xstat 0x%x but aborted by upper layer!\n",
3208 t, status, ts->resp, ts->stat);
Sakthivel Kf5860992013-04-17 16:37:02 +05303209 pm8001_ccb_task_free(pm8001_ha, t, ccb, tag);
3210 } else {
3211 spin_unlock_irqrestore(&t->task_state_lock, flags);
3212 pm8001_ccb_task_free(pm8001_ha, t, ccb, tag);
3213 mb();/* in order to force CPU ordering */
3214 t->task_done(t);
3215 }
3216}
3217
3218/**
Randy Dunlapbb6beab2021-07-08 09:57:23 -07003219 * pm80xx_hw_event_ack_req- For PM8001, some events need to acknowledge to FW.
Sakthivel Kf5860992013-04-17 16:37:02 +05303220 * @pm8001_ha: our hba card information
3221 * @Qnum: the outbound queue message number.
3222 * @SEA: source of event to ack
3223 * @port_id: port id.
3224 * @phyId: phy id.
3225 * @param0: parameter 0.
3226 * @param1: parameter 1.
3227 */
3228static void pm80xx_hw_event_ack_req(struct pm8001_hba_info *pm8001_ha,
3229 u32 Qnum, u32 SEA, u32 port_id, u32 phyId, u32 param0, u32 param1)
3230{
3231 struct hw_event_ack_req payload;
3232 u32 opc = OPC_INB_SAS_HW_EVENT_ACK;
3233
3234 struct inbound_queue_table *circularQ;
3235
3236 memset((u8 *)&payload, 0, sizeof(payload));
3237 circularQ = &pm8001_ha->inbnd_q_tbl[Qnum];
3238 payload.tag = cpu_to_le32(1);
3239 payload.phyid_sea_portid = cpu_to_le32(((SEA & 0xFFFF) << 8) |
3240 ((phyId & 0xFF) << 24) | (port_id & 0xFF));
3241 payload.param0 = cpu_to_le32(param0);
3242 payload.param1 = cpu_to_le32(param1);
peter chang91a43fa2019-11-14 15:39:05 +05303243 pm8001_mpi_build_cmd(pm8001_ha, circularQ, opc, &payload,
3244 sizeof(payload), 0);
Sakthivel Kf5860992013-04-17 16:37:02 +05303245}
3246
3247static int pm80xx_chip_phy_ctl_req(struct pm8001_hba_info *pm8001_ha,
3248 u32 phyId, u32 phy_op);
3249
Viswas G8414cd82015-08-11 15:06:30 +05303250static void hw_event_port_recover(struct pm8001_hba_info *pm8001_ha,
3251 void *piomb)
3252{
3253 struct hw_event_resp *pPayload = (struct hw_event_resp *)(piomb + 4);
3254 u32 phyid_npip_portstate = le32_to_cpu(pPayload->phyid_npip_portstate);
3255 u8 phy_id = (u8)((phyid_npip_portstate & 0xFF0000) >> 16);
3256 u32 lr_status_evt_portid =
3257 le32_to_cpu(pPayload->lr_status_evt_portid);
3258 u8 deviceType = pPayload->sas_identify.dev_type;
3259 u8 link_rate = (u8)((lr_status_evt_portid & 0xF0000000) >> 28);
3260 struct pm8001_phy *phy = &pm8001_ha->phy[phy_id];
3261 u8 port_id = (u8)(lr_status_evt_portid & 0x000000FF);
3262 struct pm8001_port *port = &pm8001_ha->port[port_id];
3263
3264 if (deviceType == SAS_END_DEVICE) {
3265 pm80xx_chip_phy_ctl_req(pm8001_ha, phy_id,
3266 PHY_NOTIFY_ENABLE_SPINUP);
3267 }
3268
3269 port->wide_port_phymap |= (1U << phy_id);
3270 pm8001_get_lrate_mode(phy, link_rate);
3271 phy->sas_phy.oob_mode = SAS_OOB_MODE;
3272 phy->phy_state = PHY_STATE_LINK_UP_SPCV;
3273 phy->phy_attached = 1;
3274}
3275
Sakthivel Kf5860992013-04-17 16:37:02 +05303276/**
Randy Dunlapbb6beab2021-07-08 09:57:23 -07003277 * hw_event_sas_phy_up - FW tells me a SAS phy up event.
Sakthivel Kf5860992013-04-17 16:37:02 +05303278 * @pm8001_ha: our hba card information
3279 * @piomb: IO message buffer
3280 */
3281static void
3282hw_event_sas_phy_up(struct pm8001_hba_info *pm8001_ha, void *piomb)
3283{
3284 struct hw_event_resp *pPayload =
3285 (struct hw_event_resp *)(piomb + 4);
3286 u32 lr_status_evt_portid =
3287 le32_to_cpu(pPayload->lr_status_evt_portid);
3288 u32 phyid_npip_portstate = le32_to_cpu(pPayload->phyid_npip_portstate);
3289
3290 u8 link_rate =
3291 (u8)((lr_status_evt_portid & 0xF0000000) >> 28);
3292 u8 port_id = (u8)(lr_status_evt_portid & 0x000000FF);
3293 u8 phy_id =
3294 (u8)((phyid_npip_portstate & 0xFF0000) >> 16);
3295 u8 portstate = (u8)(phyid_npip_portstate & 0x0000000F);
3296
3297 struct pm8001_port *port = &pm8001_ha->port[port_id];
Sakthivel Kf5860992013-04-17 16:37:02 +05303298 struct pm8001_phy *phy = &pm8001_ha->phy[phy_id];
3299 unsigned long flags;
3300 u8 deviceType = pPayload->sas_identify.dev_type;
Ajish Koshy08d0a992021-09-06 22:34:01 +05303301 phy->port = port;
3302 port->port_id = port_id;
Sakthivel Kf5860992013-04-17 16:37:02 +05303303 port->port_state = portstate;
Viswas G8414cd82015-08-11 15:06:30 +05303304 port->wide_port_phymap |= (1U << phy_id);
Nikith Ganigarakoppal7d029002013-10-30 16:23:47 +05303305 phy->phy_state = PHY_STATE_LINK_UP_SPCV;
Joe Perches1b5d2792020-11-20 15:16:09 -08003306 pm8001_dbg(pm8001_ha, MSG,
3307 "portid:%d; phyid:%d; linkrate:%d; portstate:%x; devicetype:%x\n",
3308 port_id, phy_id, link_rate, portstate, deviceType);
Sakthivel Kf5860992013-04-17 16:37:02 +05303309
3310 switch (deviceType) {
3311 case SAS_PHY_UNUSED:
Joe Perches1b5d2792020-11-20 15:16:09 -08003312 pm8001_dbg(pm8001_ha, MSG, "device type no device.\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303313 break;
3314 case SAS_END_DEVICE:
Joe Perches1b5d2792020-11-20 15:16:09 -08003315 pm8001_dbg(pm8001_ha, MSG, "end device.\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303316 pm80xx_chip_phy_ctl_req(pm8001_ha, phy_id,
3317 PHY_NOTIFY_ENABLE_SPINUP);
3318 port->port_attached = 1;
3319 pm8001_get_lrate_mode(phy, link_rate);
3320 break;
3321 case SAS_EDGE_EXPANDER_DEVICE:
Joe Perches1b5d2792020-11-20 15:16:09 -08003322 pm8001_dbg(pm8001_ha, MSG, "expander device.\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303323 port->port_attached = 1;
3324 pm8001_get_lrate_mode(phy, link_rate);
3325 break;
3326 case SAS_FANOUT_EXPANDER_DEVICE:
Joe Perches1b5d2792020-11-20 15:16:09 -08003327 pm8001_dbg(pm8001_ha, MSG, "fanout expander device.\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303328 port->port_attached = 1;
3329 pm8001_get_lrate_mode(phy, link_rate);
3330 break;
3331 default:
Joe Perches1b5d2792020-11-20 15:16:09 -08003332 pm8001_dbg(pm8001_ha, DEVIO, "unknown device type(%x)\n",
3333 deviceType);
Sakthivel Kf5860992013-04-17 16:37:02 +05303334 break;
3335 }
3336 phy->phy_type |= PORT_TYPE_SAS;
3337 phy->identify.device_type = deviceType;
3338 phy->phy_attached = 1;
3339 if (phy->identify.device_type == SAS_END_DEVICE)
3340 phy->identify.target_port_protocols = SAS_PROTOCOL_SSP;
3341 else if (phy->identify.device_type != SAS_PHY_UNUSED)
3342 phy->identify.target_port_protocols = SAS_PROTOCOL_SMP;
3343 phy->sas_phy.oob_mode = SAS_OOB_MODE;
Ahmed S. Darwishde6d7542021-01-18 11:09:51 +01003344 sas_notify_phy_event(&phy->sas_phy, PHYE_OOB_DONE, GFP_ATOMIC);
Sakthivel Kf5860992013-04-17 16:37:02 +05303345 spin_lock_irqsave(&phy->sas_phy.frame_rcvd_lock, flags);
3346 memcpy(phy->frame_rcvd, &pPayload->sas_identify,
3347 sizeof(struct sas_identify_frame)-4);
3348 phy->frame_rcvd_size = sizeof(struct sas_identify_frame) - 4;
3349 pm8001_get_attached_sas_addr(phy, phy->sas_phy.attached_sas_addr);
3350 spin_unlock_irqrestore(&phy->sas_phy.frame_rcvd_lock, flags);
3351 if (pm8001_ha->flags == PM8001F_RUN_TIME)
Ahmed S. Darwish4ba9e512020-11-26 14:29:39 +01003352 mdelay(200); /* delay a moment to wait for disk to spin up */
Sakthivel Kf5860992013-04-17 16:37:02 +05303353 pm8001_bytes_dmaed(pm8001_ha, phy_id);
3354}
3355
3356/**
Randy Dunlapbb6beab2021-07-08 09:57:23 -07003357 * hw_event_sata_phy_up - FW tells me a SATA phy up event.
Sakthivel Kf5860992013-04-17 16:37:02 +05303358 * @pm8001_ha: our hba card information
3359 * @piomb: IO message buffer
3360 */
3361static void
3362hw_event_sata_phy_up(struct pm8001_hba_info *pm8001_ha, void *piomb)
3363{
3364 struct hw_event_resp *pPayload =
3365 (struct hw_event_resp *)(piomb + 4);
3366 u32 phyid_npip_portstate = le32_to_cpu(pPayload->phyid_npip_portstate);
3367 u32 lr_status_evt_portid =
3368 le32_to_cpu(pPayload->lr_status_evt_portid);
3369 u8 link_rate =
3370 (u8)((lr_status_evt_portid & 0xF0000000) >> 28);
3371 u8 port_id = (u8)(lr_status_evt_portid & 0x000000FF);
3372 u8 phy_id =
3373 (u8)((phyid_npip_portstate & 0xFF0000) >> 16);
3374
3375 u8 portstate = (u8)(phyid_npip_portstate & 0x0000000F);
3376
3377 struct pm8001_port *port = &pm8001_ha->port[port_id];
Sakthivel Kf5860992013-04-17 16:37:02 +05303378 struct pm8001_phy *phy = &pm8001_ha->phy[phy_id];
3379 unsigned long flags;
Joe Perches1b5d2792020-11-20 15:16:09 -08003380 pm8001_dbg(pm8001_ha, DEVIO,
3381 "port id %d, phy id %d link_rate %d portstate 0x%x\n",
3382 port_id, phy_id, link_rate, portstate);
Sakthivel Kf5860992013-04-17 16:37:02 +05303383
Ajish Koshy08d0a992021-09-06 22:34:01 +05303384 phy->port = port;
3385 port->port_id = port_id;
Sakthivel Kf5860992013-04-17 16:37:02 +05303386 port->port_state = portstate;
Nikith Ganigarakoppal7d029002013-10-30 16:23:47 +05303387 phy->phy_state = PHY_STATE_LINK_UP_SPCV;
Sakthivel Kf5860992013-04-17 16:37:02 +05303388 port->port_attached = 1;
3389 pm8001_get_lrate_mode(phy, link_rate);
3390 phy->phy_type |= PORT_TYPE_SATA;
3391 phy->phy_attached = 1;
3392 phy->sas_phy.oob_mode = SATA_OOB_MODE;
Ahmed S. Darwishde6d7542021-01-18 11:09:51 +01003393 sas_notify_phy_event(&phy->sas_phy, PHYE_OOB_DONE, GFP_ATOMIC);
Sakthivel Kf5860992013-04-17 16:37:02 +05303394 spin_lock_irqsave(&phy->sas_phy.frame_rcvd_lock, flags);
3395 memcpy(phy->frame_rcvd, ((u8 *)&pPayload->sata_fis - 4),
3396 sizeof(struct dev_to_host_fis));
3397 phy->frame_rcvd_size = sizeof(struct dev_to_host_fis);
3398 phy->identify.target_port_protocols = SAS_PROTOCOL_SATA;
James Bottomleyaa9f8322013-05-07 14:44:06 -07003399 phy->identify.device_type = SAS_SATA_DEV;
Sakthivel Kf5860992013-04-17 16:37:02 +05303400 pm8001_get_attached_sas_addr(phy, phy->sas_phy.attached_sas_addr);
3401 spin_unlock_irqrestore(&phy->sas_phy.frame_rcvd_lock, flags);
3402 pm8001_bytes_dmaed(pm8001_ha, phy_id);
3403}
3404
3405/**
Randy Dunlapbb6beab2021-07-08 09:57:23 -07003406 * hw_event_phy_down - we should notify the libsas the phy is down.
Sakthivel Kf5860992013-04-17 16:37:02 +05303407 * @pm8001_ha: our hba card information
3408 * @piomb: IO message buffer
3409 */
3410static void
3411hw_event_phy_down(struct pm8001_hba_info *pm8001_ha, void *piomb)
3412{
3413 struct hw_event_resp *pPayload =
3414 (struct hw_event_resp *)(piomb + 4);
3415
3416 u32 lr_status_evt_portid =
3417 le32_to_cpu(pPayload->lr_status_evt_portid);
3418 u8 port_id = (u8)(lr_status_evt_portid & 0x000000FF);
3419 u32 phyid_npip_portstate = le32_to_cpu(pPayload->phyid_npip_portstate);
3420 u8 phy_id =
3421 (u8)((phyid_npip_portstate & 0xFF0000) >> 16);
3422 u8 portstate = (u8)(phyid_npip_portstate & 0x0000000F);
3423
3424 struct pm8001_port *port = &pm8001_ha->port[port_id];
3425 struct pm8001_phy *phy = &pm8001_ha->phy[phy_id];
Viswas G869ddbd2017-10-18 11:39:13 +05303426 u32 port_sata = (phy->phy_type & PORT_TYPE_SATA);
Sakthivel Kf5860992013-04-17 16:37:02 +05303427 port->port_state = portstate;
Sakthivel Kf5860992013-04-17 16:37:02 +05303428 phy->identify.device_type = 0;
3429 phy->phy_attached = 0;
Sakthivel Kf5860992013-04-17 16:37:02 +05303430 switch (portstate) {
3431 case PORT_VALID:
3432 break;
3433 case PORT_INVALID:
Joe Perches1b5d2792020-11-20 15:16:09 -08003434 pm8001_dbg(pm8001_ha, MSG, " PortInvalid portID %d\n",
3435 port_id);
3436 pm8001_dbg(pm8001_ha, MSG,
3437 " Last phy Down and port invalid\n");
Viswas G869ddbd2017-10-18 11:39:13 +05303438 if (port_sata) {
Viswas G8414cd82015-08-11 15:06:30 +05303439 phy->phy_type = 0;
3440 port->port_attached = 0;
3441 pm80xx_hw_event_ack_req(pm8001_ha, 0, HW_EVENT_PHY_DOWN,
3442 port_id, phy_id, 0, 0);
3443 }
3444 sas_phy_disconnected(&phy->sas_phy);
Sakthivel Kf5860992013-04-17 16:37:02 +05303445 break;
3446 case PORT_IN_RESET:
Joe Perches1b5d2792020-11-20 15:16:09 -08003447 pm8001_dbg(pm8001_ha, MSG, " Port In Reset portID %d\n",
3448 port_id);
Sakthivel Kf5860992013-04-17 16:37:02 +05303449 break;
3450 case PORT_NOT_ESTABLISHED:
Joe Perches1b5d2792020-11-20 15:16:09 -08003451 pm8001_dbg(pm8001_ha, MSG,
3452 " Phy Down and PORT_NOT_ESTABLISHED\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303453 port->port_attached = 0;
3454 break;
3455 case PORT_LOSTCOMM:
Joe Perches1b5d2792020-11-20 15:16:09 -08003456 pm8001_dbg(pm8001_ha, MSG, " Phy Down and PORT_LOSTCOMM\n");
3457 pm8001_dbg(pm8001_ha, MSG,
3458 " Last phy Down and port invalid\n");
Viswas G869ddbd2017-10-18 11:39:13 +05303459 if (port_sata) {
Viswas G8414cd82015-08-11 15:06:30 +05303460 port->port_attached = 0;
3461 phy->phy_type = 0;
3462 pm80xx_hw_event_ack_req(pm8001_ha, 0, HW_EVENT_PHY_DOWN,
3463 port_id, phy_id, 0, 0);
3464 }
3465 sas_phy_disconnected(&phy->sas_phy);
Sakthivel Kf5860992013-04-17 16:37:02 +05303466 break;
3467 default:
3468 port->port_attached = 0;
Joe Perches1b5d2792020-11-20 15:16:09 -08003469 pm8001_dbg(pm8001_ha, DEVIO,
3470 " Phy Down and(default) = 0x%x\n",
3471 portstate);
Sakthivel Kf5860992013-04-17 16:37:02 +05303472 break;
3473
3474 }
John Garry121181f2021-01-18 11:09:38 +01003475 if (port_sata && (portstate != PORT_IN_RESET))
Ahmed S. Darwishde6d7542021-01-18 11:09:51 +01003476 sas_notify_phy_event(&phy->sas_phy, PHYE_LOSS_OF_SIGNAL,
3477 GFP_ATOMIC);
Sakthivel Kf5860992013-04-17 16:37:02 +05303478}
3479
3480static int mpi_phy_start_resp(struct pm8001_hba_info *pm8001_ha, void *piomb)
3481{
3482 struct phy_start_resp *pPayload =
3483 (struct phy_start_resp *)(piomb + 4);
3484 u32 status =
3485 le32_to_cpu(pPayload->status);
3486 u32 phy_id =
Igor Pylypiv744798f2021-11-01 16:28:22 -07003487 le32_to_cpu(pPayload->phyid) & 0xFF;
Sakthivel Kf5860992013-04-17 16:37:02 +05303488 struct pm8001_phy *phy = &pm8001_ha->phy[phy_id];
3489
Joe Perches1b5d2792020-11-20 15:16:09 -08003490 pm8001_dbg(pm8001_ha, INIT,
3491 "phy start resp status:0x%x, phyid:0x%x\n",
3492 status, phy_id);
Ajish Koshyd1acd812021-05-05 17:31:03 +05303493 if (status == 0)
Deepak Ukeycd135752018-09-11 14:18:02 +05303494 phy->phy_state = PHY_LINK_DOWN;
Ajish Koshyd1acd812021-05-05 17:31:03 +05303495
3496 if (pm8001_ha->flags == PM8001F_RUN_TIME &&
3497 phy->enable_completion != NULL) {
3498 complete(phy->enable_completion);
3499 phy->enable_completion = NULL;
Sakthivel Kf5860992013-04-17 16:37:02 +05303500 }
3501 return 0;
3502
3503}
3504
3505/**
Randy Dunlapbb6beab2021-07-08 09:57:23 -07003506 * mpi_thermal_hw_event - a thermal hw event has come.
Sakthivel Kf5860992013-04-17 16:37:02 +05303507 * @pm8001_ha: our hba card information
3508 * @piomb: IO message buffer
3509 */
3510static int mpi_thermal_hw_event(struct pm8001_hba_info *pm8001_ha, void *piomb)
3511{
3512 struct thermal_hw_event *pPayload =
3513 (struct thermal_hw_event *)(piomb + 4);
3514
3515 u32 thermal_event = le32_to_cpu(pPayload->thermal_event);
3516 u32 rht_lht = le32_to_cpu(pPayload->rht_lht);
3517
3518 if (thermal_event & 0x40) {
Joe Perches1b5d2792020-11-20 15:16:09 -08003519 pm8001_dbg(pm8001_ha, IO,
3520 "Thermal Event: Local high temperature violated!\n");
3521 pm8001_dbg(pm8001_ha, IO,
3522 "Thermal Event: Measured local high temperature %d\n",
3523 ((rht_lht & 0xFF00) >> 8));
Sakthivel Kf5860992013-04-17 16:37:02 +05303524 }
3525 if (thermal_event & 0x10) {
Joe Perches1b5d2792020-11-20 15:16:09 -08003526 pm8001_dbg(pm8001_ha, IO,
3527 "Thermal Event: Remote high temperature violated!\n");
3528 pm8001_dbg(pm8001_ha, IO,
3529 "Thermal Event: Measured remote high temperature %d\n",
3530 ((rht_lht & 0xFF000000) >> 24));
Sakthivel Kf5860992013-04-17 16:37:02 +05303531 }
3532 return 0;
3533}
3534
3535/**
Randy Dunlapbb6beab2021-07-08 09:57:23 -07003536 * mpi_hw_event - The hw event has come.
Sakthivel Kf5860992013-04-17 16:37:02 +05303537 * @pm8001_ha: our hba card information
3538 * @piomb: IO message buffer
3539 */
3540static int mpi_hw_event(struct pm8001_hba_info *pm8001_ha, void *piomb)
3541{
Viswas G8414cd82015-08-11 15:06:30 +05303542 unsigned long flags, i;
Sakthivel Kf5860992013-04-17 16:37:02 +05303543 struct hw_event_resp *pPayload =
3544 (struct hw_event_resp *)(piomb + 4);
3545 u32 lr_status_evt_portid =
3546 le32_to_cpu(pPayload->lr_status_evt_portid);
3547 u32 phyid_npip_portstate = le32_to_cpu(pPayload->phyid_npip_portstate);
3548 u8 port_id = (u8)(lr_status_evt_portid & 0x000000FF);
3549 u8 phy_id =
3550 (u8)((phyid_npip_portstate & 0xFF0000) >> 16);
3551 u16 eventType =
3552 (u16)((lr_status_evt_portid & 0x00FFFF00) >> 8);
3553 u8 status =
3554 (u8)((lr_status_evt_portid & 0x0F000000) >> 24);
Sakthivel Kf5860992013-04-17 16:37:02 +05303555 struct sas_ha_struct *sas_ha = pm8001_ha->sas;
3556 struct pm8001_phy *phy = &pm8001_ha->phy[phy_id];
Viswas G8414cd82015-08-11 15:06:30 +05303557 struct pm8001_port *port = &pm8001_ha->port[port_id];
Sakthivel Kf5860992013-04-17 16:37:02 +05303558 struct asd_sas_phy *sas_phy = sas_ha->sas_phy[phy_id];
Joe Perches1b5d2792020-11-20 15:16:09 -08003559 pm8001_dbg(pm8001_ha, DEV,
3560 "portid:%d phyid:%d event:0x%x status:0x%x\n",
3561 port_id, phy_id, eventType, status);
Sakthivel Kf5860992013-04-17 16:37:02 +05303562
3563 switch (eventType) {
3564
3565 case HW_EVENT_SAS_PHY_UP:
Joe Perches1b5d2792020-11-20 15:16:09 -08003566 pm8001_dbg(pm8001_ha, MSG, "HW_EVENT_PHY_START_STATUS\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303567 hw_event_sas_phy_up(pm8001_ha, piomb);
3568 break;
3569 case HW_EVENT_SATA_PHY_UP:
Joe Perches1b5d2792020-11-20 15:16:09 -08003570 pm8001_dbg(pm8001_ha, MSG, "HW_EVENT_SATA_PHY_UP\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303571 hw_event_sata_phy_up(pm8001_ha, piomb);
3572 break;
3573 case HW_EVENT_SATA_SPINUP_HOLD:
Joe Perches1b5d2792020-11-20 15:16:09 -08003574 pm8001_dbg(pm8001_ha, MSG, "HW_EVENT_SATA_SPINUP_HOLD\n");
Ahmed S. Darwishde6d7542021-01-18 11:09:51 +01003575 sas_notify_phy_event(&phy->sas_phy, PHYE_SPINUP_HOLD,
Ahmed S. Darwishcd4e8172021-01-18 11:09:45 +01003576 GFP_ATOMIC);
Sakthivel Kf5860992013-04-17 16:37:02 +05303577 break;
3578 case HW_EVENT_PHY_DOWN:
Joe Perches1b5d2792020-11-20 15:16:09 -08003579 pm8001_dbg(pm8001_ha, MSG, "HW_EVENT_PHY_DOWN\n");
Viswas G869ddbd2017-10-18 11:39:13 +05303580 hw_event_phy_down(pm8001_ha, piomb);
3581 if (pm8001_ha->reset_in_progress) {
Joe Perches1b5d2792020-11-20 15:16:09 -08003582 pm8001_dbg(pm8001_ha, MSG, "Reset in progress\n");
Viswas G869ddbd2017-10-18 11:39:13 +05303583 return 0;
3584 }
Sakthivel Kf5860992013-04-17 16:37:02 +05303585 phy->phy_attached = 0;
Deepak Ukeycd135752018-09-11 14:18:02 +05303586 phy->phy_state = PHY_LINK_DISABLE;
Sakthivel Kf5860992013-04-17 16:37:02 +05303587 break;
3588 case HW_EVENT_PORT_INVALID:
Joe Perches1b5d2792020-11-20 15:16:09 -08003589 pm8001_dbg(pm8001_ha, MSG, "HW_EVENT_PORT_INVALID\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303590 sas_phy_disconnected(sas_phy);
3591 phy->phy_attached = 0;
Ahmed S. Darwishde6d7542021-01-18 11:09:51 +01003592 sas_notify_port_event(sas_phy, PORTE_LINK_RESET_ERR,
Ahmed S. Darwishcd4e8172021-01-18 11:09:45 +01003593 GFP_ATOMIC);
Sakthivel Kf5860992013-04-17 16:37:02 +05303594 break;
3595 /* the broadcast change primitive received, tell the LIBSAS this event
3596 to revalidate the sas domain*/
3597 case HW_EVENT_BROADCAST_CHANGE:
Joe Perches1b5d2792020-11-20 15:16:09 -08003598 pm8001_dbg(pm8001_ha, MSG, "HW_EVENT_BROADCAST_CHANGE\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303599 pm80xx_hw_event_ack_req(pm8001_ha, 0, HW_EVENT_BROADCAST_CHANGE,
3600 port_id, phy_id, 1, 0);
3601 spin_lock_irqsave(&sas_phy->sas_prim_lock, flags);
3602 sas_phy->sas_prim = HW_EVENT_BROADCAST_CHANGE;
3603 spin_unlock_irqrestore(&sas_phy->sas_prim_lock, flags);
Ahmed S. Darwishde6d7542021-01-18 11:09:51 +01003604 sas_notify_port_event(sas_phy, PORTE_BROADCAST_RCVD,
Ahmed S. Darwishcd4e8172021-01-18 11:09:45 +01003605 GFP_ATOMIC);
Sakthivel Kf5860992013-04-17 16:37:02 +05303606 break;
3607 case HW_EVENT_PHY_ERROR:
Joe Perches1b5d2792020-11-20 15:16:09 -08003608 pm8001_dbg(pm8001_ha, MSG, "HW_EVENT_PHY_ERROR\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303609 sas_phy_disconnected(&phy->sas_phy);
3610 phy->phy_attached = 0;
Ahmed S. Darwishde6d7542021-01-18 11:09:51 +01003611 sas_notify_phy_event(&phy->sas_phy, PHYE_OOB_ERROR, GFP_ATOMIC);
Sakthivel Kf5860992013-04-17 16:37:02 +05303612 break;
3613 case HW_EVENT_BROADCAST_EXP:
Joe Perches1b5d2792020-11-20 15:16:09 -08003614 pm8001_dbg(pm8001_ha, MSG, "HW_EVENT_BROADCAST_EXP\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303615 spin_lock_irqsave(&sas_phy->sas_prim_lock, flags);
3616 sas_phy->sas_prim = HW_EVENT_BROADCAST_EXP;
3617 spin_unlock_irqrestore(&sas_phy->sas_prim_lock, flags);
Ahmed S. Darwishde6d7542021-01-18 11:09:51 +01003618 sas_notify_port_event(sas_phy, PORTE_BROADCAST_RCVD,
Ahmed S. Darwishcd4e8172021-01-18 11:09:45 +01003619 GFP_ATOMIC);
Sakthivel Kf5860992013-04-17 16:37:02 +05303620 break;
3621 case HW_EVENT_LINK_ERR_INVALID_DWORD:
Joe Perches1b5d2792020-11-20 15:16:09 -08003622 pm8001_dbg(pm8001_ha, MSG,
3623 "HW_EVENT_LINK_ERR_INVALID_DWORD\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303624 pm80xx_hw_event_ack_req(pm8001_ha, 0,
3625 HW_EVENT_LINK_ERR_INVALID_DWORD, port_id, phy_id, 0, 0);
Sakthivel Kf5860992013-04-17 16:37:02 +05303626 break;
3627 case HW_EVENT_LINK_ERR_DISPARITY_ERROR:
Joe Perches1b5d2792020-11-20 15:16:09 -08003628 pm8001_dbg(pm8001_ha, MSG,
3629 "HW_EVENT_LINK_ERR_DISPARITY_ERROR\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303630 pm80xx_hw_event_ack_req(pm8001_ha, 0,
3631 HW_EVENT_LINK_ERR_DISPARITY_ERROR,
3632 port_id, phy_id, 0, 0);
Sakthivel Kf5860992013-04-17 16:37:02 +05303633 break;
3634 case HW_EVENT_LINK_ERR_CODE_VIOLATION:
Joe Perches1b5d2792020-11-20 15:16:09 -08003635 pm8001_dbg(pm8001_ha, MSG,
3636 "HW_EVENT_LINK_ERR_CODE_VIOLATION\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303637 pm80xx_hw_event_ack_req(pm8001_ha, 0,
3638 HW_EVENT_LINK_ERR_CODE_VIOLATION,
3639 port_id, phy_id, 0, 0);
Sakthivel Kf5860992013-04-17 16:37:02 +05303640 break;
3641 case HW_EVENT_LINK_ERR_LOSS_OF_DWORD_SYNCH:
Joe Perches1b5d2792020-11-20 15:16:09 -08003642 pm8001_dbg(pm8001_ha, MSG,
3643 "HW_EVENT_LINK_ERR_LOSS_OF_DWORD_SYNCH\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303644 pm80xx_hw_event_ack_req(pm8001_ha, 0,
3645 HW_EVENT_LINK_ERR_LOSS_OF_DWORD_SYNCH,
3646 port_id, phy_id, 0, 0);
Sakthivel Kf5860992013-04-17 16:37:02 +05303647 break;
3648 case HW_EVENT_MALFUNCTION:
Joe Perches1b5d2792020-11-20 15:16:09 -08003649 pm8001_dbg(pm8001_ha, MSG, "HW_EVENT_MALFUNCTION\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303650 break;
3651 case HW_EVENT_BROADCAST_SES:
Joe Perches1b5d2792020-11-20 15:16:09 -08003652 pm8001_dbg(pm8001_ha, MSG, "HW_EVENT_BROADCAST_SES\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303653 spin_lock_irqsave(&sas_phy->sas_prim_lock, flags);
3654 sas_phy->sas_prim = HW_EVENT_BROADCAST_SES;
3655 spin_unlock_irqrestore(&sas_phy->sas_prim_lock, flags);
Ahmed S. Darwishde6d7542021-01-18 11:09:51 +01003656 sas_notify_port_event(sas_phy, PORTE_BROADCAST_RCVD,
Ahmed S. Darwishcd4e8172021-01-18 11:09:45 +01003657 GFP_ATOMIC);
Sakthivel Kf5860992013-04-17 16:37:02 +05303658 break;
3659 case HW_EVENT_INBOUND_CRC_ERROR:
Joe Perches1b5d2792020-11-20 15:16:09 -08003660 pm8001_dbg(pm8001_ha, MSG, "HW_EVENT_INBOUND_CRC_ERROR\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303661 pm80xx_hw_event_ack_req(pm8001_ha, 0,
3662 HW_EVENT_INBOUND_CRC_ERROR,
3663 port_id, phy_id, 0, 0);
3664 break;
3665 case HW_EVENT_HARD_RESET_RECEIVED:
Joe Perches1b5d2792020-11-20 15:16:09 -08003666 pm8001_dbg(pm8001_ha, MSG, "HW_EVENT_HARD_RESET_RECEIVED\n");
Ahmed S. Darwishde6d7542021-01-18 11:09:51 +01003667 sas_notify_port_event(sas_phy, PORTE_HARD_RESET, GFP_ATOMIC);
Sakthivel Kf5860992013-04-17 16:37:02 +05303668 break;
3669 case HW_EVENT_ID_FRAME_TIMEOUT:
Joe Perches1b5d2792020-11-20 15:16:09 -08003670 pm8001_dbg(pm8001_ha, MSG, "HW_EVENT_ID_FRAME_TIMEOUT\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303671 sas_phy_disconnected(sas_phy);
3672 phy->phy_attached = 0;
Ahmed S. Darwishde6d7542021-01-18 11:09:51 +01003673 sas_notify_port_event(sas_phy, PORTE_LINK_RESET_ERR,
Ahmed S. Darwishcd4e8172021-01-18 11:09:45 +01003674 GFP_ATOMIC);
Sakthivel Kf5860992013-04-17 16:37:02 +05303675 break;
3676 case HW_EVENT_LINK_ERR_PHY_RESET_FAILED:
Joe Perches1b5d2792020-11-20 15:16:09 -08003677 pm8001_dbg(pm8001_ha, MSG,
3678 "HW_EVENT_LINK_ERR_PHY_RESET_FAILED\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303679 pm80xx_hw_event_ack_req(pm8001_ha, 0,
3680 HW_EVENT_LINK_ERR_PHY_RESET_FAILED,
3681 port_id, phy_id, 0, 0);
3682 sas_phy_disconnected(sas_phy);
3683 phy->phy_attached = 0;
Ahmed S. Darwishde6d7542021-01-18 11:09:51 +01003684 sas_notify_port_event(sas_phy, PORTE_LINK_RESET_ERR,
Ahmed S. Darwishcd4e8172021-01-18 11:09:45 +01003685 GFP_ATOMIC);
Sakthivel Kf5860992013-04-17 16:37:02 +05303686 break;
3687 case HW_EVENT_PORT_RESET_TIMER_TMO:
Joe Perches1b5d2792020-11-20 15:16:09 -08003688 pm8001_dbg(pm8001_ha, MSG, "HW_EVENT_PORT_RESET_TIMER_TMO\n");
Ajish Koshyee05cb72021-12-28 16:47:53 +05303689 if (!pm8001_ha->phy[phy_id].reset_completion) {
3690 pm80xx_hw_event_ack_req(pm8001_ha, 0, HW_EVENT_PHY_DOWN,
3691 port_id, phy_id, 0, 0);
3692 }
Sakthivel Kf5860992013-04-17 16:37:02 +05303693 sas_phy_disconnected(sas_phy);
3694 phy->phy_attached = 0;
Ahmed S. Darwishde6d7542021-01-18 11:09:51 +01003695 sas_notify_port_event(sas_phy, PORTE_LINK_RESET_ERR,
Ahmed S. Darwishcd4e8172021-01-18 11:09:45 +01003696 GFP_ATOMIC);
Viswas G869ddbd2017-10-18 11:39:13 +05303697 if (pm8001_ha->phy[phy_id].reset_completion) {
3698 pm8001_ha->phy[phy_id].port_reset_status =
3699 PORT_RESET_TMO;
3700 complete(pm8001_ha->phy[phy_id].reset_completion);
3701 pm8001_ha->phy[phy_id].reset_completion = NULL;
3702 }
Sakthivel Kf5860992013-04-17 16:37:02 +05303703 break;
3704 case HW_EVENT_PORT_RECOVERY_TIMER_TMO:
Joe Perches1b5d2792020-11-20 15:16:09 -08003705 pm8001_dbg(pm8001_ha, MSG,
3706 "HW_EVENT_PORT_RECOVERY_TIMER_TMO\n");
Sakthivel Ka6cb3d02013-03-19 18:08:40 +05303707 pm80xx_hw_event_ack_req(pm8001_ha, 0,
3708 HW_EVENT_PORT_RECOVERY_TIMER_TMO,
3709 port_id, phy_id, 0, 0);
Viswas G8414cd82015-08-11 15:06:30 +05303710 for (i = 0; i < pm8001_ha->chip->n_phy; i++) {
3711 if (port->wide_port_phymap & (1 << i)) {
3712 phy = &pm8001_ha->phy[i];
Ahmed S. Darwishde6d7542021-01-18 11:09:51 +01003713 sas_notify_phy_event(&phy->sas_phy,
Ahmed S. Darwishcd4e8172021-01-18 11:09:45 +01003714 PHYE_LOSS_OF_SIGNAL, GFP_ATOMIC);
Viswas G8414cd82015-08-11 15:06:30 +05303715 port->wide_port_phymap &= ~(1 << i);
3716 }
3717 }
Sakthivel Kf5860992013-04-17 16:37:02 +05303718 break;
3719 case HW_EVENT_PORT_RECOVER:
Joe Perches1b5d2792020-11-20 15:16:09 -08003720 pm8001_dbg(pm8001_ha, MSG, "HW_EVENT_PORT_RECOVER\n");
Viswas G8414cd82015-08-11 15:06:30 +05303721 hw_event_port_recover(pm8001_ha, piomb);
Sakthivel Kf5860992013-04-17 16:37:02 +05303722 break;
3723 case HW_EVENT_PORT_RESET_COMPLETE:
Joe Perches1b5d2792020-11-20 15:16:09 -08003724 pm8001_dbg(pm8001_ha, MSG, "HW_EVENT_PORT_RESET_COMPLETE\n");
Viswas G869ddbd2017-10-18 11:39:13 +05303725 if (pm8001_ha->phy[phy_id].reset_completion) {
3726 pm8001_ha->phy[phy_id].port_reset_status =
3727 PORT_RESET_SUCCESS;
3728 complete(pm8001_ha->phy[phy_id].reset_completion);
3729 pm8001_ha->phy[phy_id].reset_completion = NULL;
3730 }
Sakthivel Kf5860992013-04-17 16:37:02 +05303731 break;
3732 case EVENT_BROADCAST_ASYNCH_EVENT:
Joe Perches1b5d2792020-11-20 15:16:09 -08003733 pm8001_dbg(pm8001_ha, MSG, "EVENT_BROADCAST_ASYNCH_EVENT\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303734 break;
3735 default:
Joe Perches1b5d2792020-11-20 15:16:09 -08003736 pm8001_dbg(pm8001_ha, DEVIO, "Unknown event type 0x%x\n",
3737 eventType);
Sakthivel Kf5860992013-04-17 16:37:02 +05303738 break;
3739 }
3740 return 0;
3741}
3742
3743/**
3744 * mpi_phy_stop_resp - SPCv specific
3745 * @pm8001_ha: our hba card information
3746 * @piomb: IO message buffer
3747 */
3748static int mpi_phy_stop_resp(struct pm8001_hba_info *pm8001_ha, void *piomb)
3749{
3750 struct phy_stop_resp *pPayload =
3751 (struct phy_stop_resp *)(piomb + 4);
3752 u32 status =
3753 le32_to_cpu(pPayload->status);
3754 u32 phyid =
Deepak Ukeycd135752018-09-11 14:18:02 +05303755 le32_to_cpu(pPayload->phyid) & 0xFF;
Sakthivel Kf5860992013-04-17 16:37:02 +05303756 struct pm8001_phy *phy = &pm8001_ha->phy[phyid];
Joe Perches1b5d2792020-11-20 15:16:09 -08003757 pm8001_dbg(pm8001_ha, MSG, "phy:0x%x status:0x%x\n",
3758 phyid, status);
Deepak Ukeycd135752018-09-11 14:18:02 +05303759 if (status == PHY_STOP_SUCCESS ||
3760 status == PHY_STOP_ERR_DEVICE_ATTACHED)
3761 phy->phy_state = PHY_LINK_DISABLE;
Sakthivel Kf5860992013-04-17 16:37:02 +05303762 return 0;
3763}
3764
3765/**
3766 * mpi_set_controller_config_resp - SPCv specific
3767 * @pm8001_ha: our hba card information
3768 * @piomb: IO message buffer
3769 */
3770static int mpi_set_controller_config_resp(struct pm8001_hba_info *pm8001_ha,
3771 void *piomb)
3772{
3773 struct set_ctrl_cfg_resp *pPayload =
3774 (struct set_ctrl_cfg_resp *)(piomb + 4);
3775 u32 status = le32_to_cpu(pPayload->status);
3776 u32 err_qlfr_pgcd = le32_to_cpu(pPayload->err_qlfr_pgcd);
3777
Joe Perches1b5d2792020-11-20 15:16:09 -08003778 pm8001_dbg(pm8001_ha, MSG,
3779 "SET CONTROLLER RESP: status 0x%x qlfr_pgcd 0x%x\n",
3780 status, err_qlfr_pgcd);
Sakthivel Kf5860992013-04-17 16:37:02 +05303781
3782 return 0;
3783}
3784
3785/**
3786 * mpi_get_controller_config_resp - SPCv specific
3787 * @pm8001_ha: our hba card information
3788 * @piomb: IO message buffer
3789 */
3790static int mpi_get_controller_config_resp(struct pm8001_hba_info *pm8001_ha,
3791 void *piomb)
3792{
Joe Perches1b5d2792020-11-20 15:16:09 -08003793 pm8001_dbg(pm8001_ha, MSG, " pm80xx_addition_functionality\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303794
3795 return 0;
3796}
3797
3798/**
3799 * mpi_get_phy_profile_resp - SPCv specific
3800 * @pm8001_ha: our hba card information
3801 * @piomb: IO message buffer
3802 */
3803static int mpi_get_phy_profile_resp(struct pm8001_hba_info *pm8001_ha,
3804 void *piomb)
3805{
Joe Perches1b5d2792020-11-20 15:16:09 -08003806 pm8001_dbg(pm8001_ha, MSG, " pm80xx_addition_functionality\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303807
3808 return 0;
3809}
3810
3811/**
3812 * mpi_flash_op_ext_resp - SPCv specific
3813 * @pm8001_ha: our hba card information
3814 * @piomb: IO message buffer
3815 */
3816static int mpi_flash_op_ext_resp(struct pm8001_hba_info *pm8001_ha, void *piomb)
3817{
Joe Perches1b5d2792020-11-20 15:16:09 -08003818 pm8001_dbg(pm8001_ha, MSG, " pm80xx_addition_functionality\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303819
3820 return 0;
3821}
3822
3823/**
3824 * mpi_set_phy_profile_resp - SPCv specific
3825 * @pm8001_ha: our hba card information
3826 * @piomb: IO message buffer
3827 */
3828static int mpi_set_phy_profile_resp(struct pm8001_hba_info *pm8001_ha,
3829 void *piomb)
3830{
yuuzheng9d9c7c22020-03-16 13:19:03 +05303831 u32 tag;
Anand Kumar Santhanam27909402013-09-18 13:02:44 +05303832 u8 page_code;
yuuzheng9d9c7c22020-03-16 13:19:03 +05303833 int rc = 0;
Anand Kumar Santhanam27909402013-09-18 13:02:44 +05303834 struct set_phy_profile_resp *pPayload =
3835 (struct set_phy_profile_resp *)(piomb + 4);
3836 u32 ppc_phyid = le32_to_cpu(pPayload->ppc_phyid);
3837 u32 status = le32_to_cpu(pPayload->status);
Sakthivel Kf5860992013-04-17 16:37:02 +05303838
yuuzheng9d9c7c22020-03-16 13:19:03 +05303839 tag = le32_to_cpu(pPayload->tag);
Anand Kumar Santhanam27909402013-09-18 13:02:44 +05303840 page_code = (u8)((ppc_phyid & 0xFF00) >> 8);
3841 if (status) {
3842 /* status is FAILED */
Joe Perches1b5d2792020-11-20 15:16:09 -08003843 pm8001_dbg(pm8001_ha, FAIL,
3844 "PhyProfile command failed with status 0x%08X\n",
3845 status);
yuuzheng9d9c7c22020-03-16 13:19:03 +05303846 rc = -1;
Anand Kumar Santhanam27909402013-09-18 13:02:44 +05303847 } else {
3848 if (page_code != SAS_PHY_ANALOG_SETTINGS_PAGE) {
Joe Perches1b5d2792020-11-20 15:16:09 -08003849 pm8001_dbg(pm8001_ha, FAIL, "Invalid page code 0x%X\n",
3850 page_code);
yuuzheng9d9c7c22020-03-16 13:19:03 +05303851 rc = -1;
Anand Kumar Santhanam27909402013-09-18 13:02:44 +05303852 }
3853 }
yuuzheng9d9c7c22020-03-16 13:19:03 +05303854 pm8001_tag_free(pm8001_ha, tag);
3855 return rc;
Sakthivel Kf5860992013-04-17 16:37:02 +05303856}
3857
3858/**
3859 * mpi_kek_management_resp - SPCv specific
3860 * @pm8001_ha: our hba card information
3861 * @piomb: IO message buffer
3862 */
3863static int mpi_kek_management_resp(struct pm8001_hba_info *pm8001_ha,
3864 void *piomb)
3865{
3866 struct kek_mgmt_resp *pPayload = (struct kek_mgmt_resp *)(piomb + 4);
3867
3868 u32 status = le32_to_cpu(pPayload->status);
3869 u32 kidx_new_curr_ksop = le32_to_cpu(pPayload->kidx_new_curr_ksop);
3870 u32 err_qlfr = le32_to_cpu(pPayload->err_qlfr);
3871
Joe Perches1b5d2792020-11-20 15:16:09 -08003872 pm8001_dbg(pm8001_ha, MSG,
3873 "KEK MGMT RESP. Status 0x%x idx_ksop 0x%x err_qlfr 0x%x\n",
3874 status, kidx_new_curr_ksop, err_qlfr);
Sakthivel Kf5860992013-04-17 16:37:02 +05303875
3876 return 0;
3877}
3878
3879/**
3880 * mpi_dek_management_resp - SPCv specific
3881 * @pm8001_ha: our hba card information
3882 * @piomb: IO message buffer
3883 */
3884static int mpi_dek_management_resp(struct pm8001_hba_info *pm8001_ha,
3885 void *piomb)
3886{
Joe Perches1b5d2792020-11-20 15:16:09 -08003887 pm8001_dbg(pm8001_ha, MSG, " pm80xx_addition_functionality\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303888
3889 return 0;
3890}
3891
3892/**
3893 * ssp_coalesced_comp_resp - SPCv specific
3894 * @pm8001_ha: our hba card information
3895 * @piomb: IO message buffer
3896 */
3897static int ssp_coalesced_comp_resp(struct pm8001_hba_info *pm8001_ha,
3898 void *piomb)
3899{
Joe Perches1b5d2792020-11-20 15:16:09 -08003900 pm8001_dbg(pm8001_ha, MSG, " pm80xx_addition_functionality\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303901
3902 return 0;
3903}
3904
3905/**
3906 * process_one_iomb - process one outbound Queue memory block
3907 * @pm8001_ha: our hba card information
John Garry0aed75f2022-01-27 21:12:50 +08003908 * @circularQ: outbound circular queue
Sakthivel Kf5860992013-04-17 16:37:02 +05303909 * @piomb: IO message buffer
3910 */
Ajish Koshyb27a4052021-09-06 22:34:02 +05303911static void process_one_iomb(struct pm8001_hba_info *pm8001_ha,
3912 struct outbound_queue_table *circularQ, void *piomb)
Sakthivel Kf5860992013-04-17 16:37:02 +05303913{
3914 __le32 pHeader = *(__le32 *)piomb;
3915 u32 opc = (u32)((le32_to_cpu(pHeader)) & 0xFFF);
3916
3917 switch (opc) {
3918 case OPC_OUB_ECHO:
Joe Perches1b5d2792020-11-20 15:16:09 -08003919 pm8001_dbg(pm8001_ha, MSG, "OPC_OUB_ECHO\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303920 break;
3921 case OPC_OUB_HW_EVENT:
Joe Perches1b5d2792020-11-20 15:16:09 -08003922 pm8001_dbg(pm8001_ha, MSG, "OPC_OUB_HW_EVENT\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303923 mpi_hw_event(pm8001_ha, piomb);
3924 break;
3925 case OPC_OUB_THERM_HW_EVENT:
Joe Perches1b5d2792020-11-20 15:16:09 -08003926 pm8001_dbg(pm8001_ha, MSG, "OPC_OUB_THERMAL_EVENT\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303927 mpi_thermal_hw_event(pm8001_ha, piomb);
3928 break;
3929 case OPC_OUB_SSP_COMP:
Joe Perches1b5d2792020-11-20 15:16:09 -08003930 pm8001_dbg(pm8001_ha, MSG, "OPC_OUB_SSP_COMP\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303931 mpi_ssp_completion(pm8001_ha, piomb);
3932 break;
3933 case OPC_OUB_SMP_COMP:
Joe Perches1b5d2792020-11-20 15:16:09 -08003934 pm8001_dbg(pm8001_ha, MSG, "OPC_OUB_SMP_COMP\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303935 mpi_smp_completion(pm8001_ha, piomb);
3936 break;
3937 case OPC_OUB_LOCAL_PHY_CNTRL:
Joe Perches1b5d2792020-11-20 15:16:09 -08003938 pm8001_dbg(pm8001_ha, MSG, "OPC_OUB_LOCAL_PHY_CNTRL\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303939 pm8001_mpi_local_phy_ctl(pm8001_ha, piomb);
3940 break;
3941 case OPC_OUB_DEV_REGIST:
Joe Perches1b5d2792020-11-20 15:16:09 -08003942 pm8001_dbg(pm8001_ha, MSG, "OPC_OUB_DEV_REGIST\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303943 pm8001_mpi_reg_resp(pm8001_ha, piomb);
3944 break;
3945 case OPC_OUB_DEREG_DEV:
Joe Perches1b5d2792020-11-20 15:16:09 -08003946 pm8001_dbg(pm8001_ha, MSG, "unregister the device\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303947 pm8001_mpi_dereg_resp(pm8001_ha, piomb);
3948 break;
3949 case OPC_OUB_GET_DEV_HANDLE:
Joe Perches1b5d2792020-11-20 15:16:09 -08003950 pm8001_dbg(pm8001_ha, MSG, "OPC_OUB_GET_DEV_HANDLE\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303951 break;
3952 case OPC_OUB_SATA_COMP:
Joe Perches1b5d2792020-11-20 15:16:09 -08003953 pm8001_dbg(pm8001_ha, MSG, "OPC_OUB_SATA_COMP\n");
Ajish Koshyb27a4052021-09-06 22:34:02 +05303954 mpi_sata_completion(pm8001_ha, circularQ, piomb);
Sakthivel Kf5860992013-04-17 16:37:02 +05303955 break;
3956 case OPC_OUB_SATA_EVENT:
Joe Perches1b5d2792020-11-20 15:16:09 -08003957 pm8001_dbg(pm8001_ha, MSG, "OPC_OUB_SATA_EVENT\n");
Ajish Koshyb27a4052021-09-06 22:34:02 +05303958 mpi_sata_event(pm8001_ha, circularQ, piomb);
Sakthivel Kf5860992013-04-17 16:37:02 +05303959 break;
3960 case OPC_OUB_SSP_EVENT:
Joe Perches1b5d2792020-11-20 15:16:09 -08003961 pm8001_dbg(pm8001_ha, MSG, "OPC_OUB_SSP_EVENT\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303962 mpi_ssp_event(pm8001_ha, piomb);
3963 break;
3964 case OPC_OUB_DEV_HANDLE_ARRIV:
Joe Perches1b5d2792020-11-20 15:16:09 -08003965 pm8001_dbg(pm8001_ha, MSG, "OPC_OUB_DEV_HANDLE_ARRIV\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303966 /*This is for target*/
3967 break;
3968 case OPC_OUB_SSP_RECV_EVENT:
Joe Perches1b5d2792020-11-20 15:16:09 -08003969 pm8001_dbg(pm8001_ha, MSG, "OPC_OUB_SSP_RECV_EVENT\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303970 /*This is for target*/
3971 break;
3972 case OPC_OUB_FW_FLASH_UPDATE:
Joe Perches1b5d2792020-11-20 15:16:09 -08003973 pm8001_dbg(pm8001_ha, MSG, "OPC_OUB_FW_FLASH_UPDATE\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303974 pm8001_mpi_fw_flash_update_resp(pm8001_ha, piomb);
3975 break;
3976 case OPC_OUB_GPIO_RESPONSE:
Joe Perches1b5d2792020-11-20 15:16:09 -08003977 pm8001_dbg(pm8001_ha, MSG, "OPC_OUB_GPIO_RESPONSE\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303978 break;
3979 case OPC_OUB_GPIO_EVENT:
Joe Perches1b5d2792020-11-20 15:16:09 -08003980 pm8001_dbg(pm8001_ha, MSG, "OPC_OUB_GPIO_EVENT\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303981 break;
3982 case OPC_OUB_GENERAL_EVENT:
Joe Perches1b5d2792020-11-20 15:16:09 -08003983 pm8001_dbg(pm8001_ha, MSG, "OPC_OUB_GENERAL_EVENT\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303984 pm8001_mpi_general_event(pm8001_ha, piomb);
3985 break;
3986 case OPC_OUB_SSP_ABORT_RSP:
Joe Perches1b5d2792020-11-20 15:16:09 -08003987 pm8001_dbg(pm8001_ha, MSG, "OPC_OUB_SSP_ABORT_RSP\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303988 pm8001_mpi_task_abort_resp(pm8001_ha, piomb);
3989 break;
3990 case OPC_OUB_SATA_ABORT_RSP:
Joe Perches1b5d2792020-11-20 15:16:09 -08003991 pm8001_dbg(pm8001_ha, MSG, "OPC_OUB_SATA_ABORT_RSP\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303992 pm8001_mpi_task_abort_resp(pm8001_ha, piomb);
3993 break;
3994 case OPC_OUB_SAS_DIAG_MODE_START_END:
Joe Perches1b5d2792020-11-20 15:16:09 -08003995 pm8001_dbg(pm8001_ha, MSG,
3996 "OPC_OUB_SAS_DIAG_MODE_START_END\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05303997 break;
3998 case OPC_OUB_SAS_DIAG_EXECUTE:
Joe Perches1b5d2792020-11-20 15:16:09 -08003999 pm8001_dbg(pm8001_ha, MSG, "OPC_OUB_SAS_DIAG_EXECUTE\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05304000 break;
4001 case OPC_OUB_GET_TIME_STAMP:
Joe Perches1b5d2792020-11-20 15:16:09 -08004002 pm8001_dbg(pm8001_ha, MSG, "OPC_OUB_GET_TIME_STAMP\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05304003 break;
4004 case OPC_OUB_SAS_HW_EVENT_ACK:
Joe Perches1b5d2792020-11-20 15:16:09 -08004005 pm8001_dbg(pm8001_ha, MSG, "OPC_OUB_SAS_HW_EVENT_ACK\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05304006 break;
4007 case OPC_OUB_PORT_CONTROL:
Joe Perches1b5d2792020-11-20 15:16:09 -08004008 pm8001_dbg(pm8001_ha, MSG, "OPC_OUB_PORT_CONTROL\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05304009 break;
4010 case OPC_OUB_SMP_ABORT_RSP:
Joe Perches1b5d2792020-11-20 15:16:09 -08004011 pm8001_dbg(pm8001_ha, MSG, "OPC_OUB_SMP_ABORT_RSP\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05304012 pm8001_mpi_task_abort_resp(pm8001_ha, piomb);
4013 break;
4014 case OPC_OUB_GET_NVMD_DATA:
Joe Perches1b5d2792020-11-20 15:16:09 -08004015 pm8001_dbg(pm8001_ha, MSG, "OPC_OUB_GET_NVMD_DATA\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05304016 pm8001_mpi_get_nvmd_resp(pm8001_ha, piomb);
4017 break;
4018 case OPC_OUB_SET_NVMD_DATA:
Joe Perches1b5d2792020-11-20 15:16:09 -08004019 pm8001_dbg(pm8001_ha, MSG, "OPC_OUB_SET_NVMD_DATA\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05304020 pm8001_mpi_set_nvmd_resp(pm8001_ha, piomb);
4021 break;
4022 case OPC_OUB_DEVICE_HANDLE_REMOVAL:
Joe Perches1b5d2792020-11-20 15:16:09 -08004023 pm8001_dbg(pm8001_ha, MSG, "OPC_OUB_DEVICE_HANDLE_REMOVAL\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05304024 break;
4025 case OPC_OUB_SET_DEVICE_STATE:
Joe Perches1b5d2792020-11-20 15:16:09 -08004026 pm8001_dbg(pm8001_ha, MSG, "OPC_OUB_SET_DEVICE_STATE\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05304027 pm8001_mpi_set_dev_state_resp(pm8001_ha, piomb);
4028 break;
4029 case OPC_OUB_GET_DEVICE_STATE:
Joe Perches1b5d2792020-11-20 15:16:09 -08004030 pm8001_dbg(pm8001_ha, MSG, "OPC_OUB_GET_DEVICE_STATE\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05304031 break;
4032 case OPC_OUB_SET_DEV_INFO:
Joe Perches1b5d2792020-11-20 15:16:09 -08004033 pm8001_dbg(pm8001_ha, MSG, "OPC_OUB_SET_DEV_INFO\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05304034 break;
Randy Dunlapbb6beab2021-07-08 09:57:23 -07004035 /* spcv specific commands */
Sakthivel Kf5860992013-04-17 16:37:02 +05304036 case OPC_OUB_PHY_START_RESP:
Joe Perches1b5d2792020-11-20 15:16:09 -08004037 pm8001_dbg(pm8001_ha, MSG,
4038 "OPC_OUB_PHY_START_RESP opcode:%x\n", opc);
Sakthivel Kf5860992013-04-17 16:37:02 +05304039 mpi_phy_start_resp(pm8001_ha, piomb);
4040 break;
4041 case OPC_OUB_PHY_STOP_RESP:
Joe Perches1b5d2792020-11-20 15:16:09 -08004042 pm8001_dbg(pm8001_ha, MSG,
4043 "OPC_OUB_PHY_STOP_RESP opcode:%x\n", opc);
Sakthivel Kf5860992013-04-17 16:37:02 +05304044 mpi_phy_stop_resp(pm8001_ha, piomb);
4045 break;
4046 case OPC_OUB_SET_CONTROLLER_CONFIG:
Joe Perches1b5d2792020-11-20 15:16:09 -08004047 pm8001_dbg(pm8001_ha, MSG,
4048 "OPC_OUB_SET_CONTROLLER_CONFIG opcode:%x\n", opc);
Sakthivel Kf5860992013-04-17 16:37:02 +05304049 mpi_set_controller_config_resp(pm8001_ha, piomb);
4050 break;
4051 case OPC_OUB_GET_CONTROLLER_CONFIG:
Joe Perches1b5d2792020-11-20 15:16:09 -08004052 pm8001_dbg(pm8001_ha, MSG,
4053 "OPC_OUB_GET_CONTROLLER_CONFIG opcode:%x\n", opc);
Sakthivel Kf5860992013-04-17 16:37:02 +05304054 mpi_get_controller_config_resp(pm8001_ha, piomb);
4055 break;
4056 case OPC_OUB_GET_PHY_PROFILE:
Joe Perches1b5d2792020-11-20 15:16:09 -08004057 pm8001_dbg(pm8001_ha, MSG,
4058 "OPC_OUB_GET_PHY_PROFILE opcode:%x\n", opc);
Sakthivel Kf5860992013-04-17 16:37:02 +05304059 mpi_get_phy_profile_resp(pm8001_ha, piomb);
4060 break;
4061 case OPC_OUB_FLASH_OP_EXT:
Joe Perches1b5d2792020-11-20 15:16:09 -08004062 pm8001_dbg(pm8001_ha, MSG,
4063 "OPC_OUB_FLASH_OP_EXT opcode:%x\n", opc);
Sakthivel Kf5860992013-04-17 16:37:02 +05304064 mpi_flash_op_ext_resp(pm8001_ha, piomb);
4065 break;
4066 case OPC_OUB_SET_PHY_PROFILE:
Joe Perches1b5d2792020-11-20 15:16:09 -08004067 pm8001_dbg(pm8001_ha, MSG,
4068 "OPC_OUB_SET_PHY_PROFILE opcode:%x\n", opc);
Sakthivel Kf5860992013-04-17 16:37:02 +05304069 mpi_set_phy_profile_resp(pm8001_ha, piomb);
4070 break;
4071 case OPC_OUB_KEK_MANAGEMENT_RESP:
Joe Perches1b5d2792020-11-20 15:16:09 -08004072 pm8001_dbg(pm8001_ha, MSG,
4073 "OPC_OUB_KEK_MANAGEMENT_RESP opcode:%x\n", opc);
Sakthivel Kf5860992013-04-17 16:37:02 +05304074 mpi_kek_management_resp(pm8001_ha, piomb);
4075 break;
4076 case OPC_OUB_DEK_MANAGEMENT_RESP:
Joe Perches1b5d2792020-11-20 15:16:09 -08004077 pm8001_dbg(pm8001_ha, MSG,
4078 "OPC_OUB_DEK_MANAGEMENT_RESP opcode:%x\n", opc);
Sakthivel Kf5860992013-04-17 16:37:02 +05304079 mpi_dek_management_resp(pm8001_ha, piomb);
4080 break;
4081 case OPC_OUB_SSP_COALESCED_COMP_RESP:
Joe Perches1b5d2792020-11-20 15:16:09 -08004082 pm8001_dbg(pm8001_ha, MSG,
4083 "OPC_OUB_SSP_COALESCED_COMP_RESP opcode:%x\n", opc);
Sakthivel Kf5860992013-04-17 16:37:02 +05304084 ssp_coalesced_comp_resp(pm8001_ha, piomb);
4085 break;
4086 default:
Joe Perches1b5d2792020-11-20 15:16:09 -08004087 pm8001_dbg(pm8001_ha, DEVIO,
4088 "Unknown outbound Queue IOMB OPC = 0x%x\n", opc);
Sakthivel Kf5860992013-04-17 16:37:02 +05304089 break;
4090 }
4091}
4092
Deepak Ukey72349b62018-09-11 14:18:04 +05304093static void print_scratchpad_registers(struct pm8001_hba_info *pm8001_ha)
4094{
Joe Perches1b5d2792020-11-20 15:16:09 -08004095 pm8001_dbg(pm8001_ha, FAIL, "MSGU_SCRATCH_PAD_0: 0x%x\n",
4096 pm8001_cr32(pm8001_ha, 0, MSGU_SCRATCH_PAD_0));
4097 pm8001_dbg(pm8001_ha, FAIL, "MSGU_SCRATCH_PAD_1:0x%x\n",
4098 pm8001_cr32(pm8001_ha, 0, MSGU_SCRATCH_PAD_1));
4099 pm8001_dbg(pm8001_ha, FAIL, "MSGU_SCRATCH_PAD_2: 0x%x\n",
4100 pm8001_cr32(pm8001_ha, 0, MSGU_SCRATCH_PAD_2));
4101 pm8001_dbg(pm8001_ha, FAIL, "MSGU_SCRATCH_PAD_3: 0x%x\n",
4102 pm8001_cr32(pm8001_ha, 0, MSGU_SCRATCH_PAD_3));
4103 pm8001_dbg(pm8001_ha, FAIL, "MSGU_HOST_SCRATCH_PAD_0: 0x%x\n",
4104 pm8001_cr32(pm8001_ha, 0, MSGU_HOST_SCRATCH_PAD_0));
4105 pm8001_dbg(pm8001_ha, FAIL, "MSGU_HOST_SCRATCH_PAD_1: 0x%x\n",
4106 pm8001_cr32(pm8001_ha, 0, MSGU_HOST_SCRATCH_PAD_1));
4107 pm8001_dbg(pm8001_ha, FAIL, "MSGU_HOST_SCRATCH_PAD_2: 0x%x\n",
4108 pm8001_cr32(pm8001_ha, 0, MSGU_HOST_SCRATCH_PAD_2));
4109 pm8001_dbg(pm8001_ha, FAIL, "MSGU_HOST_SCRATCH_PAD_3: 0x%x\n",
4110 pm8001_cr32(pm8001_ha, 0, MSGU_HOST_SCRATCH_PAD_3));
4111 pm8001_dbg(pm8001_ha, FAIL, "MSGU_HOST_SCRATCH_PAD_4: 0x%x\n",
4112 pm8001_cr32(pm8001_ha, 0, MSGU_HOST_SCRATCH_PAD_4));
4113 pm8001_dbg(pm8001_ha, FAIL, "MSGU_HOST_SCRATCH_PAD_5: 0x%x\n",
4114 pm8001_cr32(pm8001_ha, 0, MSGU_HOST_SCRATCH_PAD_5));
4115 pm8001_dbg(pm8001_ha, FAIL, "MSGU_RSVD_SCRATCH_PAD_0: 0x%x\n",
4116 pm8001_cr32(pm8001_ha, 0, MSGU_HOST_SCRATCH_PAD_6));
4117 pm8001_dbg(pm8001_ha, FAIL, "MSGU_RSVD_SCRATCH_PAD_1: 0x%x\n",
4118 pm8001_cr32(pm8001_ha, 0, MSGU_HOST_SCRATCH_PAD_7));
Deepak Ukey72349b62018-09-11 14:18:04 +05304119}
4120
Sakthivel Kf5860992013-04-17 16:37:02 +05304121static int process_oq(struct pm8001_hba_info *pm8001_ha, u8 vec)
4122{
4123 struct outbound_queue_table *circularQ;
4124 void *pMsg1 = NULL;
Kees Cook3f649ab2020-06-03 13:09:38 -07004125 u8 bc;
Sakthivel Kf5860992013-04-17 16:37:02 +05304126 u32 ret = MPI_IO_STATUS_FAIL;
Deepak Ukey72349b62018-09-11 14:18:04 +05304127 u32 regval;
Sakthivel Kf5860992013-04-17 16:37:02 +05304128
John Garry62afb372022-01-18 20:15:05 +08004129 /*
4130 * Fatal errors are programmed to be signalled in irq vector
4131 * pm8001_ha->max_q_num - 1 through pm8001_ha->main_cfg_tbl.pm80xx_tbl.
4132 * fatal_err_interrupt
4133 */
Viswas G05c6c022020-10-05 20:20:08 +05304134 if (vec == (pm8001_ha->max_q_num - 1)) {
John Garry62afb372022-01-18 20:15:05 +08004135 u32 mipsall_ready;
4136
4137 if (pm8001_ha->chip_id == chip_8008 ||
4138 pm8001_ha->chip_id == chip_8009)
4139 mipsall_ready = SCRATCH_PAD_MIPSALL_READY_8PORT;
4140 else
4141 mipsall_ready = SCRATCH_PAD_MIPSALL_READY_16PORT;
4142
Deepak Ukey72349b62018-09-11 14:18:04 +05304143 regval = pm8001_cr32(pm8001_ha, 0, MSGU_SCRATCH_PAD_1);
John Garry62afb372022-01-18 20:15:05 +08004144 if ((regval & mipsall_ready) != mipsall_ready) {
Deepak Ukey72349b62018-09-11 14:18:04 +05304145 pm8001_ha->controller_fatal_error = true;
Joe Perches1b5d2792020-11-20 15:16:09 -08004146 pm8001_dbg(pm8001_ha, FAIL,
4147 "Firmware Fatal error! Regval:0x%x\n",
4148 regval);
Ruksar Devadi4f5deeb2021-04-15 16:03:50 +05304149 pm8001_handle_event(pm8001_ha, NULL, IO_FATAL_ERROR);
Deepak Ukey72349b62018-09-11 14:18:04 +05304150 print_scratchpad_registers(pm8001_ha);
4151 return ret;
4152 }
4153 }
Sakthivel Kf5860992013-04-17 16:37:02 +05304154 circularQ = &pm8001_ha->outbnd_q_tbl[vec];
Ajish Koshyb27a4052021-09-06 22:34:02 +05304155 spin_lock_irqsave(&circularQ->oq_lock, circularQ->lock_flags);
Sakthivel Kf5860992013-04-17 16:37:02 +05304156 do {
Deepak Ukey72349b62018-09-11 14:18:04 +05304157 /* spurious interrupt during setup if kexec-ing and
4158 * driver doing a doorbell access w/ the pre-kexec oq
4159 * interrupt setup.
4160 */
4161 if (!circularQ->pi_virt)
4162 break;
Sakthivel Kf5860992013-04-17 16:37:02 +05304163 ret = pm8001_mpi_msg_consume(pm8001_ha, circularQ, &pMsg1, &bc);
4164 if (MPI_IO_STATUS_SUCCESS == ret) {
4165 /* process the outbound message */
Ajish Koshyb27a4052021-09-06 22:34:02 +05304166 process_one_iomb(pm8001_ha, circularQ,
4167 (void *)(pMsg1 - 4));
Sakthivel Kf5860992013-04-17 16:37:02 +05304168 /* free the message from the outbound circular buffer */
4169 pm8001_mpi_msg_free_set(pm8001_ha, pMsg1,
4170 circularQ, bc);
4171 }
4172 if (MPI_IO_STATUS_BUSY == ret) {
4173 /* Update the producer index from SPC */
4174 circularQ->producer_index =
4175 cpu_to_le32(pm8001_read_32(circularQ->pi_virt));
4176 if (le32_to_cpu(circularQ->producer_index) ==
4177 circularQ->consumer_idx)
4178 /* OQ is empty */
4179 break;
4180 }
4181 } while (1);
Ajish Koshyb27a4052021-09-06 22:34:02 +05304182 spin_unlock_irqrestore(&circularQ->oq_lock, circularQ->lock_flags);
Sakthivel Kf5860992013-04-17 16:37:02 +05304183 return ret;
4184}
4185
Christoph Hellwigf73bdeb2018-10-10 19:59:50 +02004186/* DMA_... to our direction translation. */
Sakthivel Kf5860992013-04-17 16:37:02 +05304187static const u8 data_dir_flags[] = {
Christoph Hellwigf73bdeb2018-10-10 19:59:50 +02004188 [DMA_BIDIRECTIONAL] = DATA_DIR_BYRECIPIENT, /* UNSPECIFIED */
4189 [DMA_TO_DEVICE] = DATA_DIR_OUT, /* OUTBOUND */
4190 [DMA_FROM_DEVICE] = DATA_DIR_IN, /* INBOUND */
4191 [DMA_NONE] = DATA_DIR_NONE, /* NO TRANSFER */
Sakthivel Kf5860992013-04-17 16:37:02 +05304192};
4193
4194static void build_smp_cmd(u32 deviceID, __le32 hTag,
4195 struct smp_req *psmp_cmd, int mode, int length)
4196{
4197 psmp_cmd->tag = hTag;
4198 psmp_cmd->device_id = cpu_to_le32(deviceID);
4199 if (mode == SMP_DIRECT) {
4200 length = length - 4; /* subtract crc */
4201 psmp_cmd->len_ip_ir = cpu_to_le32(length << 16);
4202 } else {
4203 psmp_cmd->len_ip_ir = cpu_to_le32(1|(1 << 1));
4204 }
4205}
4206
4207/**
Randy Dunlapbb6beab2021-07-08 09:57:23 -07004208 * pm80xx_chip_smp_req - send an SMP task to FW
Sakthivel Kf5860992013-04-17 16:37:02 +05304209 * @pm8001_ha: our hba card information.
4210 * @ccb: the ccb information this request used.
4211 */
4212static int pm80xx_chip_smp_req(struct pm8001_hba_info *pm8001_ha,
4213 struct pm8001_ccb_info *ccb)
4214{
4215 int elem, rc;
4216 struct sas_task *task = ccb->task;
4217 struct domain_device *dev = task->dev;
4218 struct pm8001_device *pm8001_dev = dev->lldd_dev;
John Garry2fe24342021-12-13 18:10:48 +08004219 struct scatterlist *sg_req, *sg_resp, *smp_req;
Sakthivel Kf5860992013-04-17 16:37:02 +05304220 u32 req_len, resp_len;
4221 struct smp_req smp_cmd;
4222 u32 opc;
4223 struct inbound_queue_table *circularQ;
Sakthivel Kf5860992013-04-17 16:37:02 +05304224 u32 i, length;
John Garry2fe24342021-12-13 18:10:48 +08004225 u8 *payload;
4226 u8 *to;
Sakthivel Kf5860992013-04-17 16:37:02 +05304227
4228 memset(&smp_cmd, 0, sizeof(smp_cmd));
4229 /*
4230 * DMA-map SMP request, response buffers
4231 */
4232 sg_req = &task->smp_task.smp_req;
Christoph Hellwigf73bdeb2018-10-10 19:59:50 +02004233 elem = dma_map_sg(pm8001_ha->dev, sg_req, 1, DMA_TO_DEVICE);
Sakthivel Kf5860992013-04-17 16:37:02 +05304234 if (!elem)
4235 return -ENOMEM;
4236 req_len = sg_dma_len(sg_req);
4237
4238 sg_resp = &task->smp_task.smp_resp;
Christoph Hellwigf73bdeb2018-10-10 19:59:50 +02004239 elem = dma_map_sg(pm8001_ha->dev, sg_resp, 1, DMA_FROM_DEVICE);
Sakthivel Kf5860992013-04-17 16:37:02 +05304240 if (!elem) {
4241 rc = -ENOMEM;
4242 goto err_out;
4243 }
4244 resp_len = sg_dma_len(sg_resp);
4245 /* must be in dwords */
4246 if ((req_len & 0x3) || (resp_len & 0x3)) {
4247 rc = -EINVAL;
4248 goto err_out_2;
4249 }
4250
4251 opc = OPC_INB_SMP_REQUEST;
4252 circularQ = &pm8001_ha->inbnd_q_tbl[0];
4253 smp_cmd.tag = cpu_to_le32(ccb->ccb_tag);
4254
4255 length = sg_req->length;
Joe Perches1b5d2792020-11-20 15:16:09 -08004256 pm8001_dbg(pm8001_ha, IO, "SMP Frame Length %d\n", sg_req->length);
Sakthivel Kf5860992013-04-17 16:37:02 +05304257 if (!(length - 8))
4258 pm8001_ha->smp_exp_mode = SMP_DIRECT;
4259 else
4260 pm8001_ha->smp_exp_mode = SMP_INDIRECT;
4261
Sakthivel Kf5860992013-04-17 16:37:02 +05304262
John Garry2fe24342021-12-13 18:10:48 +08004263 smp_req = &task->smp_task.smp_req;
4264 to = kmap_atomic(sg_page(smp_req));
4265 payload = to + smp_req->offset;
Sakthivel Kf5860992013-04-17 16:37:02 +05304266
4267 /* INDIRECT MODE command settings. Use DMA */
4268 if (pm8001_ha->smp_exp_mode == SMP_INDIRECT) {
Joe Perches1b5d2792020-11-20 15:16:09 -08004269 pm8001_dbg(pm8001_ha, IO, "SMP REQUEST INDIRECT MODE\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05304270 /* for SPCv indirect mode. Place the top 4 bytes of
4271 * SMP Request header here. */
4272 for (i = 0; i < 4; i++)
John Garry2fe24342021-12-13 18:10:48 +08004273 smp_cmd.smp_req16[i] = *(payload + i);
Sakthivel Kf5860992013-04-17 16:37:02 +05304274 /* exclude top 4 bytes for SMP req header */
4275 smp_cmd.long_smp_req.long_req_addr =
4276 cpu_to_le64((u64)sg_dma_address
Anand Kumar Santhanamcb993e52013-09-17 14:37:14 +05304277 (&task->smp_task.smp_req) + 4);
Sakthivel Kf5860992013-04-17 16:37:02 +05304278 /* exclude 4 bytes for SMP req header and CRC */
4279 smp_cmd.long_smp_req.long_req_size =
4280 cpu_to_le32((u32)sg_dma_len(&task->smp_task.smp_req)-8);
4281 smp_cmd.long_smp_req.long_resp_addr =
4282 cpu_to_le64((u64)sg_dma_address
4283 (&task->smp_task.smp_resp));
4284 smp_cmd.long_smp_req.long_resp_size =
4285 cpu_to_le32((u32)sg_dma_len
4286 (&task->smp_task.smp_resp)-4);
4287 } else { /* DIRECT MODE */
4288 smp_cmd.long_smp_req.long_req_addr =
4289 cpu_to_le64((u64)sg_dma_address
4290 (&task->smp_task.smp_req));
4291 smp_cmd.long_smp_req.long_req_size =
4292 cpu_to_le32((u32)sg_dma_len(&task->smp_task.smp_req)-4);
4293 smp_cmd.long_smp_req.long_resp_addr =
4294 cpu_to_le64((u64)sg_dma_address
4295 (&task->smp_task.smp_resp));
4296 smp_cmd.long_smp_req.long_resp_size =
4297 cpu_to_le32
4298 ((u32)sg_dma_len(&task->smp_task.smp_resp)-4);
4299 }
4300 if (pm8001_ha->smp_exp_mode == SMP_DIRECT) {
Joe Perches1b5d2792020-11-20 15:16:09 -08004301 pm8001_dbg(pm8001_ha, IO, "SMP REQUEST DIRECT MODE\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05304302 for (i = 0; i < length; i++)
4303 if (i < 16) {
John Garry2fe24342021-12-13 18:10:48 +08004304 smp_cmd.smp_req16[i] = *(payload + i);
Joe Perches1b5d2792020-11-20 15:16:09 -08004305 pm8001_dbg(pm8001_ha, IO,
4306 "Byte[%d]:%x (DMA data:%x)\n",
4307 i, smp_cmd.smp_req16[i],
John Garry2fe24342021-12-13 18:10:48 +08004308 *(payload));
Sakthivel Kf5860992013-04-17 16:37:02 +05304309 } else {
John Garry2fe24342021-12-13 18:10:48 +08004310 smp_cmd.smp_req[i] = *(payload + i);
Joe Perches1b5d2792020-11-20 15:16:09 -08004311 pm8001_dbg(pm8001_ha, IO,
4312 "Byte[%d]:%x (DMA data:%x)\n",
4313 i, smp_cmd.smp_req[i],
John Garry2fe24342021-12-13 18:10:48 +08004314 *(payload));
Sakthivel Kf5860992013-04-17 16:37:02 +05304315 }
4316 }
John Garry2fe24342021-12-13 18:10:48 +08004317 kunmap_atomic(to);
Sakthivel Kf5860992013-04-17 16:37:02 +05304318 build_smp_cmd(pm8001_dev->device_id, smp_cmd.tag,
4319 &smp_cmd, pm8001_ha->smp_exp_mode, length);
peter chang91a43fa2019-11-14 15:39:05 +05304320 rc = pm8001_mpi_build_cmd(pm8001_ha, circularQ, opc, &smp_cmd,
4321 sizeof(smp_cmd), 0);
Tomas Henzl5533abc2014-07-09 17:20:49 +05304322 if (rc)
4323 goto err_out_2;
Sakthivel Kf5860992013-04-17 16:37:02 +05304324 return 0;
4325
4326err_out_2:
4327 dma_unmap_sg(pm8001_ha->dev, &ccb->task->smp_task.smp_resp, 1,
Christoph Hellwigf73bdeb2018-10-10 19:59:50 +02004328 DMA_FROM_DEVICE);
Sakthivel Kf5860992013-04-17 16:37:02 +05304329err_out:
4330 dma_unmap_sg(pm8001_ha->dev, &ccb->task->smp_task.smp_req, 1,
Christoph Hellwigf73bdeb2018-10-10 19:59:50 +02004331 DMA_TO_DEVICE);
Sakthivel Kf5860992013-04-17 16:37:02 +05304332 return rc;
4333}
4334
4335static int check_enc_sas_cmd(struct sas_task *task)
4336{
James Bottomleye73823f2013-05-07 15:38:18 -07004337 u8 cmd = task->ssp_task.cmd->cmnd[0];
4338
4339 if (cmd == READ_10 || cmd == WRITE_10 || cmd == WRITE_VERIFY)
Sakthivel Kf5860992013-04-17 16:37:02 +05304340 return 1;
4341 else
4342 return 0;
4343}
4344
4345static int check_enc_sat_cmd(struct sas_task *task)
4346{
4347 int ret = 0;
4348 switch (task->ata_task.fis.command) {
4349 case ATA_CMD_FPDMA_READ:
4350 case ATA_CMD_READ_EXT:
4351 case ATA_CMD_READ:
4352 case ATA_CMD_FPDMA_WRITE:
4353 case ATA_CMD_WRITE_EXT:
4354 case ATA_CMD_WRITE:
4355 case ATA_CMD_PIO_READ:
4356 case ATA_CMD_PIO_READ_EXT:
4357 case ATA_CMD_PIO_WRITE:
4358 case ATA_CMD_PIO_WRITE_EXT:
4359 ret = 1;
4360 break;
4361 default:
4362 ret = 0;
4363 break;
4364 }
4365 return ret;
4366}
4367
4368/**
Randy Dunlapbb6beab2021-07-08 09:57:23 -07004369 * pm80xx_chip_ssp_io_req - send an SSP task to FW
Sakthivel Kf5860992013-04-17 16:37:02 +05304370 * @pm8001_ha: our hba card information.
4371 * @ccb: the ccb information this request used.
4372 */
4373static int pm80xx_chip_ssp_io_req(struct pm8001_hba_info *pm8001_ha,
4374 struct pm8001_ccb_info *ccb)
4375{
4376 struct sas_task *task = ccb->task;
4377 struct domain_device *dev = task->dev;
4378 struct pm8001_device *pm8001_dev = dev->lldd_dev;
4379 struct ssp_ini_io_start_req ssp_cmd;
4380 u32 tag = ccb->ccb_tag;
4381 int ret;
Anand Kumar Santhanam0ecdf002013-09-18 11:14:54 +05304382 u64 phys_addr, start_addr, end_addr;
4383 u32 end_addr_high, end_addr_low;
Sakthivel Kf5860992013-04-17 16:37:02 +05304384 struct inbound_queue_table *circularQ;
Viswas G05c6c022020-10-05 20:20:08 +05304385 u32 q_index, cpu_id;
Sakthivel Kf5860992013-04-17 16:37:02 +05304386 u32 opc = OPC_INB_SSPINIIOSTART;
4387 memset(&ssp_cmd, 0, sizeof(ssp_cmd));
4388 memcpy(ssp_cmd.ssp_iu.lun, task->ssp_task.LUN, 8);
4389 /* data address domain added for spcv; set to 0 by host,
4390 * used internally by controller
4391 * 0 for SAS 1.1 and SAS 2.0 compatible TLR
4392 */
4393 ssp_cmd.dad_dir_m_tlr =
4394 cpu_to_le32(data_dir_flags[task->data_dir] << 8 | 0x0);
4395 ssp_cmd.data_len = cpu_to_le32(task->total_xfer_len);
4396 ssp_cmd.device_id = cpu_to_le32(pm8001_dev->device_id);
4397 ssp_cmd.tag = cpu_to_le32(tag);
4398 if (task->ssp_task.enable_first_burst)
4399 ssp_cmd.ssp_iu.efb_prio_attr |= 0x80;
4400 ssp_cmd.ssp_iu.efb_prio_attr |= (task->ssp_task.task_prio << 3);
4401 ssp_cmd.ssp_iu.efb_prio_attr |= (task->ssp_task.task_attr & 7);
James Bottomleye73823f2013-05-07 15:38:18 -07004402 memcpy(ssp_cmd.ssp_iu.cdb, task->ssp_task.cmd->cmnd,
4403 task->ssp_task.cmd->cmd_len);
Viswas G05c6c022020-10-05 20:20:08 +05304404 cpu_id = smp_processor_id();
4405 q_index = (u32) (cpu_id) % (pm8001_ha->max_q_num);
Anand Kumar Santhanamf9cd6cb2013-09-18 11:12:59 +05304406 circularQ = &pm8001_ha->inbnd_q_tbl[q_index];
Sakthivel Kf5860992013-04-17 16:37:02 +05304407
4408 /* Check if encryption is set */
4409 if (pm8001_ha->chip->encrypt &&
4410 !(pm8001_ha->encrypt_info.status) && check_enc_sas_cmd(task)) {
Joe Perches1b5d2792020-11-20 15:16:09 -08004411 pm8001_dbg(pm8001_ha, IO,
4412 "Encryption enabled.Sending Encrypt SAS command 0x%x\n",
4413 task->ssp_task.cmd->cmnd[0]);
Sakthivel Kf5860992013-04-17 16:37:02 +05304414 opc = OPC_INB_SSP_INI_DIF_ENC_IO;
4415 /* enable encryption. 0 for SAS 1.1 and SAS 2.0 compatible TLR*/
4416 ssp_cmd.dad_dir_m_tlr = cpu_to_le32
4417 ((data_dir_flags[task->data_dir] << 8) | 0x20 | 0x0);
4418
4419 /* fill in PRD (scatter/gather) table, if any */
4420 if (task->num_scatter > 1) {
4421 pm8001_chip_make_sg(task->scatter,
4422 ccb->n_elem, ccb->buf_prd);
Viswas G5a141312020-10-05 20:20:10 +05304423 phys_addr = ccb->ccb_dma_handle;
Sakthivel Kf5860992013-04-17 16:37:02 +05304424 ssp_cmd.enc_addr_low =
4425 cpu_to_le32(lower_32_bits(phys_addr));
4426 ssp_cmd.enc_addr_high =
4427 cpu_to_le32(upper_32_bits(phys_addr));
4428 ssp_cmd.enc_esgl = cpu_to_le32(1<<31);
4429 } else if (task->num_scatter == 1) {
4430 u64 dma_addr = sg_dma_address(task->scatter);
4431 ssp_cmd.enc_addr_low =
4432 cpu_to_le32(lower_32_bits(dma_addr));
4433 ssp_cmd.enc_addr_high =
4434 cpu_to_le32(upper_32_bits(dma_addr));
4435 ssp_cmd.enc_len = cpu_to_le32(task->total_xfer_len);
4436 ssp_cmd.enc_esgl = 0;
Anand Kumar Santhanam0ecdf002013-09-18 11:14:54 +05304437 /* Check 4G Boundary */
4438 start_addr = cpu_to_le64(dma_addr);
4439 end_addr = (start_addr + ssp_cmd.enc_len) - 1;
4440 end_addr_low = cpu_to_le32(lower_32_bits(end_addr));
4441 end_addr_high = cpu_to_le32(upper_32_bits(end_addr));
4442 if (end_addr_high != ssp_cmd.enc_addr_high) {
Joe Perches1b5d2792020-11-20 15:16:09 -08004443 pm8001_dbg(pm8001_ha, FAIL,
4444 "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",
4445 start_addr, ssp_cmd.enc_len,
4446 end_addr_high, end_addr_low);
Anand Kumar Santhanam0ecdf002013-09-18 11:14:54 +05304447 pm8001_chip_make_sg(task->scatter, 1,
4448 ccb->buf_prd);
Viswas G5a141312020-10-05 20:20:10 +05304449 phys_addr = ccb->ccb_dma_handle;
Anand Kumar Santhanam0ecdf002013-09-18 11:14:54 +05304450 ssp_cmd.enc_addr_low =
4451 cpu_to_le32(lower_32_bits(phys_addr));
4452 ssp_cmd.enc_addr_high =
4453 cpu_to_le32(upper_32_bits(phys_addr));
4454 ssp_cmd.enc_esgl = cpu_to_le32(1<<31);
4455 }
Sakthivel Kf5860992013-04-17 16:37:02 +05304456 } else if (task->num_scatter == 0) {
4457 ssp_cmd.enc_addr_low = 0;
4458 ssp_cmd.enc_addr_high = 0;
4459 ssp_cmd.enc_len = cpu_to_le32(task->total_xfer_len);
4460 ssp_cmd.enc_esgl = 0;
4461 }
4462 /* XTS mode. All other fields are 0 */
4463 ssp_cmd.key_cmode = 0x6 << 4;
4464 /* set tweak values. Should be the start lba */
James Bottomleye73823f2013-05-07 15:38:18 -07004465 ssp_cmd.twk_val0 = cpu_to_le32((task->ssp_task.cmd->cmnd[2] << 24) |
4466 (task->ssp_task.cmd->cmnd[3] << 16) |
4467 (task->ssp_task.cmd->cmnd[4] << 8) |
4468 (task->ssp_task.cmd->cmnd[5]));
Sakthivel Kf5860992013-04-17 16:37:02 +05304469 } else {
Joe Perches1b5d2792020-11-20 15:16:09 -08004470 pm8001_dbg(pm8001_ha, IO,
4471 "Sending Normal SAS command 0x%x inb q %x\n",
4472 task->ssp_task.cmd->cmnd[0], q_index);
Sakthivel Kf5860992013-04-17 16:37:02 +05304473 /* fill in PRD (scatter/gather) table, if any */
4474 if (task->num_scatter > 1) {
4475 pm8001_chip_make_sg(task->scatter, ccb->n_elem,
4476 ccb->buf_prd);
Viswas G5a141312020-10-05 20:20:10 +05304477 phys_addr = ccb->ccb_dma_handle;
Sakthivel Kf5860992013-04-17 16:37:02 +05304478 ssp_cmd.addr_low =
4479 cpu_to_le32(lower_32_bits(phys_addr));
4480 ssp_cmd.addr_high =
4481 cpu_to_le32(upper_32_bits(phys_addr));
4482 ssp_cmd.esgl = cpu_to_le32(1<<31);
4483 } else if (task->num_scatter == 1) {
4484 u64 dma_addr = sg_dma_address(task->scatter);
4485 ssp_cmd.addr_low = cpu_to_le32(lower_32_bits(dma_addr));
4486 ssp_cmd.addr_high =
4487 cpu_to_le32(upper_32_bits(dma_addr));
4488 ssp_cmd.len = cpu_to_le32(task->total_xfer_len);
4489 ssp_cmd.esgl = 0;
Anand Kumar Santhanam0ecdf002013-09-18 11:14:54 +05304490 /* Check 4G Boundary */
4491 start_addr = cpu_to_le64(dma_addr);
4492 end_addr = (start_addr + ssp_cmd.len) - 1;
4493 end_addr_low = cpu_to_le32(lower_32_bits(end_addr));
4494 end_addr_high = cpu_to_le32(upper_32_bits(end_addr));
4495 if (end_addr_high != ssp_cmd.addr_high) {
Joe Perches1b5d2792020-11-20 15:16:09 -08004496 pm8001_dbg(pm8001_ha, FAIL,
4497 "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",
4498 start_addr, ssp_cmd.len,
4499 end_addr_high, end_addr_low);
Anand Kumar Santhanam0ecdf002013-09-18 11:14:54 +05304500 pm8001_chip_make_sg(task->scatter, 1,
4501 ccb->buf_prd);
Viswas G5a141312020-10-05 20:20:10 +05304502 phys_addr = ccb->ccb_dma_handle;
Anand Kumar Santhanam0ecdf002013-09-18 11:14:54 +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 }
Sakthivel Kf5860992013-04-17 16:37:02 +05304509 } else if (task->num_scatter == 0) {
4510 ssp_cmd.addr_low = 0;
4511 ssp_cmd.addr_high = 0;
4512 ssp_cmd.len = cpu_to_le32(task->total_xfer_len);
4513 ssp_cmd.esgl = 0;
4514 }
4515 }
Anand Kumar Santhanamf9cd6cb2013-09-18 11:12:59 +05304516 ret = pm8001_mpi_build_cmd(pm8001_ha, circularQ, opc,
peter chang91a43fa2019-11-14 15:39:05 +05304517 &ssp_cmd, sizeof(ssp_cmd), q_index);
Sakthivel Kf5860992013-04-17 16:37:02 +05304518 return ret;
4519}
4520
4521static int pm80xx_chip_sata_req(struct pm8001_hba_info *pm8001_ha,
4522 struct pm8001_ccb_info *ccb)
4523{
4524 struct sas_task *task = ccb->task;
4525 struct domain_device *dev = task->dev;
4526 struct pm8001_device *pm8001_ha_dev = dev->lldd_dev;
Changyuan Lyu8ceddda2021-11-15 13:57:49 -08004527 struct ata_queued_cmd *qc = task->uldd_task;
Sakthivel Kf5860992013-04-17 16:37:02 +05304528 u32 tag = ccb->ccb_tag;
4529 int ret;
Viswas G05c6c022020-10-05 20:20:08 +05304530 u32 q_index, cpu_id;
Sakthivel Kf5860992013-04-17 16:37:02 +05304531 struct sata_start_req sata_cmd;
4532 u32 hdr_tag, ncg_tag = 0;
Anand Kumar Santhanam0ecdf002013-09-18 11:14:54 +05304533 u64 phys_addr, start_addr, end_addr;
4534 u32 end_addr_high, end_addr_low;
Sakthivel Kf5860992013-04-17 16:37:02 +05304535 u32 ATAP = 0x0;
4536 u32 dir;
4537 struct inbound_queue_table *circularQ;
Sakthivel Kc6b9ef52013-03-19 18:08:08 +05304538 unsigned long flags;
Sakthivel Kf5860992013-04-17 16:37:02 +05304539 u32 opc = OPC_INB_SATA_HOST_OPSTART;
4540 memset(&sata_cmd, 0, sizeof(sata_cmd));
Viswas G05c6c022020-10-05 20:20:08 +05304541 cpu_id = smp_processor_id();
4542 q_index = (u32) (cpu_id) % (pm8001_ha->max_q_num);
Anand Kumar Santhanamf9cd6cb2013-09-18 11:12:59 +05304543 circularQ = &pm8001_ha->inbnd_q_tbl[q_index];
Sakthivel Kf5860992013-04-17 16:37:02 +05304544
Christoph Hellwigf73bdeb2018-10-10 19:59:50 +02004545 if (task->data_dir == DMA_NONE) {
Sakthivel Kf5860992013-04-17 16:37:02 +05304546 ATAP = 0x04; /* no data*/
Joe Perches1b5d2792020-11-20 15:16:09 -08004547 pm8001_dbg(pm8001_ha, IO, "no data\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05304548 } else if (likely(!task->ata_task.device_control_reg_update)) {
4549 if (task->ata_task.dma_xfer) {
4550 ATAP = 0x06; /* DMA */
Joe Perches1b5d2792020-11-20 15:16:09 -08004551 pm8001_dbg(pm8001_ha, IO, "DMA\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05304552 } else {
4553 ATAP = 0x05; /* PIO*/
Joe Perches1b5d2792020-11-20 15:16:09 -08004554 pm8001_dbg(pm8001_ha, IO, "PIO\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05304555 }
4556 if (task->ata_task.use_ncq &&
Hannes Reinecke1cbd7722014-11-05 13:08:20 +01004557 dev->sata_dev.class != ATA_DEV_ATAPI) {
Sakthivel Kf5860992013-04-17 16:37:02 +05304558 ATAP = 0x07; /* FPDMA */
Joe Perches1b5d2792020-11-20 15:16:09 -08004559 pm8001_dbg(pm8001_ha, IO, "FPDMA\n");
Sakthivel Kf5860992013-04-17 16:37:02 +05304560 }
4561 }
Sakthivel Kc6b9ef52013-03-19 18:08:08 +05304562 if (task->ata_task.use_ncq && pm8001_get_ncq_tag(task, &hdr_tag)) {
4563 task->ata_task.fis.sector_count |= (u8) (hdr_tag << 3);
Sakthivel Kf5860992013-04-17 16:37:02 +05304564 ncg_tag = hdr_tag;
Sakthivel Kc6b9ef52013-03-19 18:08:08 +05304565 }
Sakthivel Kf5860992013-04-17 16:37:02 +05304566 dir = data_dir_flags[task->data_dir] << 8;
4567 sata_cmd.tag = cpu_to_le32(tag);
4568 sata_cmd.device_id = cpu_to_le32(pm8001_ha_dev->device_id);
4569 sata_cmd.data_len = cpu_to_le32(task->total_xfer_len);
4570
4571 sata_cmd.sata_fis = task->ata_task.fis;
4572 if (likely(!task->ata_task.device_control_reg_update))
4573 sata_cmd.sata_fis.flags |= 0x80;/* C=1: update ATA cmd reg */
4574 sata_cmd.sata_fis.flags &= 0xF0;/* PM_PORT field shall be 0 */
4575
4576 /* Check if encryption is set */
4577 if (pm8001_ha->chip->encrypt &&
4578 !(pm8001_ha->encrypt_info.status) && check_enc_sat_cmd(task)) {
Joe Perches1b5d2792020-11-20 15:16:09 -08004579 pm8001_dbg(pm8001_ha, IO,
4580 "Encryption enabled.Sending Encrypt SATA cmd 0x%x\n",
4581 sata_cmd.sata_fis.command);
Sakthivel Kf5860992013-04-17 16:37:02 +05304582 opc = OPC_INB_SATA_DIF_ENC_IO;
4583
4584 /* set encryption bit */
4585 sata_cmd.ncqtag_atap_dir_m_dad =
4586 cpu_to_le32(((ncg_tag & 0xff)<<16)|
4587 ((ATAP & 0x3f) << 10) | 0x20 | dir);
4588 /* dad (bit 0-1) is 0 */
4589 /* fill in PRD (scatter/gather) table, if any */
4590 if (task->num_scatter > 1) {
4591 pm8001_chip_make_sg(task->scatter,
4592 ccb->n_elem, ccb->buf_prd);
Viswas G5a141312020-10-05 20:20:10 +05304593 phys_addr = ccb->ccb_dma_handle;
Sakthivel Kf5860992013-04-17 16:37:02 +05304594 sata_cmd.enc_addr_low = lower_32_bits(phys_addr);
4595 sata_cmd.enc_addr_high = upper_32_bits(phys_addr);
4596 sata_cmd.enc_esgl = cpu_to_le32(1 << 31);
4597 } else if (task->num_scatter == 1) {
4598 u64 dma_addr = sg_dma_address(task->scatter);
4599 sata_cmd.enc_addr_low = lower_32_bits(dma_addr);
4600 sata_cmd.enc_addr_high = upper_32_bits(dma_addr);
4601 sata_cmd.enc_len = cpu_to_le32(task->total_xfer_len);
4602 sata_cmd.enc_esgl = 0;
Anand Kumar Santhanam0ecdf002013-09-18 11:14:54 +05304603 /* Check 4G Boundary */
4604 start_addr = cpu_to_le64(dma_addr);
4605 end_addr = (start_addr + sata_cmd.enc_len) - 1;
4606 end_addr_low = cpu_to_le32(lower_32_bits(end_addr));
4607 end_addr_high = cpu_to_le32(upper_32_bits(end_addr));
4608 if (end_addr_high != sata_cmd.enc_addr_high) {
Joe Perches1b5d2792020-11-20 15:16:09 -08004609 pm8001_dbg(pm8001_ha, FAIL,
4610 "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",
4611 start_addr, sata_cmd.enc_len,
4612 end_addr_high, end_addr_low);
Anand Kumar Santhanam0ecdf002013-09-18 11:14:54 +05304613 pm8001_chip_make_sg(task->scatter, 1,
4614 ccb->buf_prd);
Viswas G5a141312020-10-05 20:20:10 +05304615 phys_addr = ccb->ccb_dma_handle;
Anand Kumar Santhanam0ecdf002013-09-18 11:14:54 +05304616 sata_cmd.enc_addr_low =
4617 lower_32_bits(phys_addr);
4618 sata_cmd.enc_addr_high =
4619 upper_32_bits(phys_addr);
4620 sata_cmd.enc_esgl =
4621 cpu_to_le32(1 << 31);
4622 }
Sakthivel Kf5860992013-04-17 16:37:02 +05304623 } else if (task->num_scatter == 0) {
4624 sata_cmd.enc_addr_low = 0;
4625 sata_cmd.enc_addr_high = 0;
4626 sata_cmd.enc_len = cpu_to_le32(task->total_xfer_len);
4627 sata_cmd.enc_esgl = 0;
4628 }
4629 /* XTS mode. All other fields are 0 */
4630 sata_cmd.key_index_mode = 0x6 << 4;
4631 /* set tweak values. Should be the start lba */
4632 sata_cmd.twk_val0 =
4633 cpu_to_le32((sata_cmd.sata_fis.lbal_exp << 24) |
4634 (sata_cmd.sata_fis.lbah << 16) |
4635 (sata_cmd.sata_fis.lbam << 8) |
4636 (sata_cmd.sata_fis.lbal));
4637 sata_cmd.twk_val1 =
4638 cpu_to_le32((sata_cmd.sata_fis.lbah_exp << 8) |
4639 (sata_cmd.sata_fis.lbam_exp));
4640 } else {
Joe Perches1b5d2792020-11-20 15:16:09 -08004641 pm8001_dbg(pm8001_ha, IO,
4642 "Sending Normal SATA command 0x%x inb %x\n",
4643 sata_cmd.sata_fis.command, q_index);
Sakthivel Kf5860992013-04-17 16:37:02 +05304644 /* dad (bit 0-1) is 0 */
4645 sata_cmd.ncqtag_atap_dir_m_dad =
4646 cpu_to_le32(((ncg_tag & 0xff)<<16) |
4647 ((ATAP & 0x3f) << 10) | dir);
4648
4649 /* fill in PRD (scatter/gather) table, if any */
4650 if (task->num_scatter > 1) {
4651 pm8001_chip_make_sg(task->scatter,
4652 ccb->n_elem, ccb->buf_prd);
Viswas G5a141312020-10-05 20:20:10 +05304653 phys_addr = ccb->ccb_dma_handle;
Sakthivel Kf5860992013-04-17 16:37:02 +05304654 sata_cmd.addr_low = lower_32_bits(phys_addr);
4655 sata_cmd.addr_high = upper_32_bits(phys_addr);
4656 sata_cmd.esgl = cpu_to_le32(1 << 31);
4657 } else if (task->num_scatter == 1) {
4658 u64 dma_addr = sg_dma_address(task->scatter);
4659 sata_cmd.addr_low = lower_32_bits(dma_addr);
4660 sata_cmd.addr_high = upper_32_bits(dma_addr);
4661 sata_cmd.len = cpu_to_le32(task->total_xfer_len);
4662 sata_cmd.esgl = 0;
Anand Kumar Santhanam0ecdf002013-09-18 11:14:54 +05304663 /* Check 4G Boundary */
4664 start_addr = cpu_to_le64(dma_addr);
4665 end_addr = (start_addr + sata_cmd.len) - 1;
4666 end_addr_low = cpu_to_le32(lower_32_bits(end_addr));
4667 end_addr_high = cpu_to_le32(upper_32_bits(end_addr));
4668 if (end_addr_high != sata_cmd.addr_high) {
Joe Perches1b5d2792020-11-20 15:16:09 -08004669 pm8001_dbg(pm8001_ha, FAIL,
4670 "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",
4671 start_addr, sata_cmd.len,
4672 end_addr_high, end_addr_low);
Anand Kumar Santhanam0ecdf002013-09-18 11:14:54 +05304673 pm8001_chip_make_sg(task->scatter, 1,
4674 ccb->buf_prd);
Viswas G5a141312020-10-05 20:20:10 +05304675 phys_addr = ccb->ccb_dma_handle;
Anand Kumar Santhanam0ecdf002013-09-18 11:14:54 +05304676 sata_cmd.addr_low =
4677 lower_32_bits(phys_addr);
4678 sata_cmd.addr_high =
4679 upper_32_bits(phys_addr);
4680 sata_cmd.esgl = cpu_to_le32(1 << 31);
4681 }
Sakthivel Kf5860992013-04-17 16:37:02 +05304682 } else if (task->num_scatter == 0) {
4683 sata_cmd.addr_low = 0;
4684 sata_cmd.addr_high = 0;
4685 sata_cmd.len = cpu_to_le32(task->total_xfer_len);
4686 sata_cmd.esgl = 0;
4687 }
Colin Ian King9e2a07e2019-03-17 18:15:32 +00004688 /* scsi cdb */
4689 sata_cmd.atapi_scsi_cdb[0] =
4690 cpu_to_le32(((task->ata_task.atapi_packet[0]) |
4691 (task->ata_task.atapi_packet[1] << 8) |
4692 (task->ata_task.atapi_packet[2] << 16) |
4693 (task->ata_task.atapi_packet[3] << 24)));
4694 sata_cmd.atapi_scsi_cdb[1] =
4695 cpu_to_le32(((task->ata_task.atapi_packet[4]) |
4696 (task->ata_task.atapi_packet[5] << 8) |
4697 (task->ata_task.atapi_packet[6] << 16) |
4698 (task->ata_task.atapi_packet[7] << 24)));
4699 sata_cmd.atapi_scsi_cdb[2] =
4700 cpu_to_le32(((task->ata_task.atapi_packet[8]) |
4701 (task->ata_task.atapi_packet[9] << 8) |
4702 (task->ata_task.atapi_packet[10] << 16) |
4703 (task->ata_task.atapi_packet[11] << 24)));
4704 sata_cmd.atapi_scsi_cdb[3] =
4705 cpu_to_le32(((task->ata_task.atapi_packet[12]) |
4706 (task->ata_task.atapi_packet[13] << 8) |
4707 (task->ata_task.atapi_packet[14] << 16) |
4708 (task->ata_task.atapi_packet[15] << 24)));
Sakthivel Kf5860992013-04-17 16:37:02 +05304709 }
Sakthivel Kc6b9ef52013-03-19 18:08:08 +05304710
4711 /* Check for read log for failed drive and return */
4712 if (sata_cmd.sata_fis.command == 0x2f) {
4713 if (pm8001_ha_dev && ((pm8001_ha_dev->id & NCQ_READ_LOG_FLAG) ||
4714 (pm8001_ha_dev->id & NCQ_ABORT_ALL_FLAG) ||
4715 (pm8001_ha_dev->id & NCQ_2ND_RLE_FLAG))) {
4716 struct task_status_struct *ts;
4717
4718 pm8001_ha_dev->id &= 0xDFFFFFFF;
4719 ts = &task->task_status;
4720
4721 spin_lock_irqsave(&task->task_state_lock, flags);
4722 ts->resp = SAS_TASK_COMPLETE;
Bart Van Assched377f412021-05-23 19:54:55 -07004723 ts->stat = SAS_SAM_STAT_GOOD;
Sakthivel Kc6b9ef52013-03-19 18:08:08 +05304724 task->task_state_flags &= ~SAS_TASK_STATE_PENDING;
4725 task->task_state_flags &= ~SAS_TASK_AT_INITIATOR;
4726 task->task_state_flags |= SAS_TASK_STATE_DONE;
4727 if (unlikely((task->task_state_flags &
4728 SAS_TASK_STATE_ABORTED))) {
4729 spin_unlock_irqrestore(&task->task_state_lock,
4730 flags);
Joe Perches1b5d2792020-11-20 15:16:09 -08004731 pm8001_dbg(pm8001_ha, FAIL,
4732 "task 0x%p resp 0x%x stat 0x%x but aborted by upper layer\n",
4733 task, ts->resp,
4734 ts->stat);
Sakthivel Kc6b9ef52013-03-19 18:08:08 +05304735 pm8001_ccb_task_free(pm8001_ha, task, ccb, tag);
4736 return 0;
Suresh Thiagarajan2b01d812014-01-16 15:26:21 +05304737 } else {
Sakthivel Kc6b9ef52013-03-19 18:08:08 +05304738 spin_unlock_irqrestore(&task->task_state_lock,
4739 flags);
Suresh Thiagarajan2b01d812014-01-16 15:26:21 +05304740 pm8001_ccb_task_free_done(pm8001_ha, task,
4741 ccb, tag);
Viswas G4a2efd42020-11-02 22:25:26 +05304742 atomic_dec(&pm8001_ha_dev->running_req);
Sakthivel Kc6b9ef52013-03-19 18:08:08 +05304743 return 0;
4744 }
4745 }
4746 }
Changyuan Lyu8ceddda2021-11-15 13:57:49 -08004747 trace_pm80xx_request_issue(pm8001_ha->id,
4748 ccb->device ? ccb->device->attached_phy : PM8001_MAX_PHYS,
4749 ccb->ccb_tag, opc,
4750 qc ? qc->tf.command : 0, // ata opcode
4751 ccb->device ? atomic_read(&ccb->device->running_req) : 0);
Sakthivel Kf5860992013-04-17 16:37:02 +05304752 ret = pm8001_mpi_build_cmd(pm8001_ha, circularQ, opc,
peter chang91a43fa2019-11-14 15:39:05 +05304753 &sata_cmd, sizeof(sata_cmd), q_index);
Sakthivel Kf5860992013-04-17 16:37:02 +05304754 return ret;
4755}
4756
4757/**
4758 * pm80xx_chip_phy_start_req - start phy via PHY_START COMMAND
4759 * @pm8001_ha: our hba card information.
Sakthivel Kf5860992013-04-17 16:37:02 +05304760 * @phy_id: the phy id which we wanted to start up.
4761 */
4762static int
4763pm80xx_chip_phy_start_req(struct pm8001_hba_info *pm8001_ha, u8 phy_id)
4764{
4765 struct phy_start_req payload;
4766 struct inbound_queue_table *circularQ;
4767 int ret;
4768 u32 tag = 0x01;
4769 u32 opcode = OPC_INB_PHYSTART;
4770 circularQ = &pm8001_ha->inbnd_q_tbl[0];
4771 memset(&payload, 0, sizeof(payload));
4772 payload.tag = cpu_to_le32(tag);
4773
Joe Perches1b5d2792020-11-20 15:16:09 -08004774 pm8001_dbg(pm8001_ha, INIT, "PHY START REQ for phy_id %d\n", phy_id);
Anand Kumar Santhanama9a923e2013-09-03 15:09:42 +05304775
peter chang3e253d92019-11-14 15:39:07 +05304776 payload.ase_sh_lm_slr_phyid = cpu_to_le32(SPINHOLD_DISABLE |
4777 LINKMODE_AUTO | pm8001_ha->link_rate | phy_id);
Sakthivel Kf5860992013-04-17 16:37:02 +05304778 /* SSC Disable and SAS Analog ST configuration */
Randy Dunlapbb6beab2021-07-08 09:57:23 -07004779 /*
Sakthivel Kf5860992013-04-17 16:37:02 +05304780 payload.ase_sh_lm_slr_phyid =
4781 cpu_to_le32(SSC_DISABLE_30 | SAS_ASE | SPINHOLD_DISABLE |
4782 LINKMODE_AUTO | LINKRATE_15 | LINKRATE_30 | LINKRATE_60 |
4783 phy_id);
4784 Have to add "SAS PHY Analog Setup SPASTI 1 Byte" Based on need
Randy Dunlapbb6beab2021-07-08 09:57:23 -07004785 */
Sakthivel Kf5860992013-04-17 16:37:02 +05304786
James Bottomleyaa9f8322013-05-07 14:44:06 -07004787 payload.sas_identify.dev_type = SAS_END_DEVICE;
Sakthivel Kf5860992013-04-17 16:37:02 +05304788 payload.sas_identify.initiator_bits = SAS_PROTOCOL_ALL;
4789 memcpy(payload.sas_identify.sas_addr,
peter chang3e253d92019-11-14 15:39:07 +05304790 &pm8001_ha->sas_addr, SAS_ADDR_SIZE);
Sakthivel Kf5860992013-04-17 16:37:02 +05304791 payload.sas_identify.phy_id = phy_id;
peter chang91a43fa2019-11-14 15:39:05 +05304792 ret = pm8001_mpi_build_cmd(pm8001_ha, circularQ, opcode, &payload,
4793 sizeof(payload), 0);
Sakthivel Kf5860992013-04-17 16:37:02 +05304794 return ret;
4795}
4796
4797/**
Lee Jones7cdaf122021-03-03 14:46:23 +00004798 * pm80xx_chip_phy_stop_req - start phy via PHY_STOP COMMAND
Sakthivel Kf5860992013-04-17 16:37:02 +05304799 * @pm8001_ha: our hba card information.
Sakthivel Kf5860992013-04-17 16:37:02 +05304800 * @phy_id: the phy id which we wanted to start up.
4801 */
4802static int pm80xx_chip_phy_stop_req(struct pm8001_hba_info *pm8001_ha,
4803 u8 phy_id)
4804{
4805 struct phy_stop_req payload;
4806 struct inbound_queue_table *circularQ;
4807 int ret;
4808 u32 tag = 0x01;
4809 u32 opcode = OPC_INB_PHYSTOP;
4810 circularQ = &pm8001_ha->inbnd_q_tbl[0];
4811 memset(&payload, 0, sizeof(payload));
4812 payload.tag = cpu_to_le32(tag);
4813 payload.phy_id = cpu_to_le32(phy_id);
peter chang91a43fa2019-11-14 15:39:05 +05304814 ret = pm8001_mpi_build_cmd(pm8001_ha, circularQ, opcode, &payload,
4815 sizeof(payload), 0);
Sakthivel Kf5860992013-04-17 16:37:02 +05304816 return ret;
4817}
4818
Lee Jones6ad4a512020-07-21 17:41:25 +01004819/*
Sakthivel Kf5860992013-04-17 16:37:02 +05304820 * see comments on pm8001_mpi_reg_resp.
4821 */
4822static int pm80xx_chip_reg_dev_req(struct pm8001_hba_info *pm8001_ha,
4823 struct pm8001_device *pm8001_dev, u32 flag)
4824{
4825 struct reg_dev_req payload;
4826 u32 opc;
4827 u32 stp_sspsmp_sata = 0x4;
4828 struct inbound_queue_table *circularQ;
4829 u32 linkrate, phy_id;
4830 int rc, tag = 0xdeadbeef;
4831 struct pm8001_ccb_info *ccb;
4832 u8 retryFlag = 0x1;
4833 u16 firstBurstSize = 0;
4834 u16 ITNT = 2000;
4835 struct domain_device *dev = pm8001_dev->sas_device;
4836 struct domain_device *parent_dev = dev->parent;
Ajish Koshy08d0a992021-09-06 22:34:01 +05304837 struct pm8001_port *port = dev->port->lldd_port;
Sakthivel Kf5860992013-04-17 16:37:02 +05304838 circularQ = &pm8001_ha->inbnd_q_tbl[0];
4839
4840 memset(&payload, 0, sizeof(payload));
4841 rc = pm8001_tag_alloc(pm8001_ha, &tag);
4842 if (rc)
4843 return rc;
4844 ccb = &pm8001_ha->ccb_info[tag];
4845 ccb->device = pm8001_dev;
4846 ccb->ccb_tag = tag;
4847 payload.tag = cpu_to_le32(tag);
4848
4849 if (flag == 1) {
4850 stp_sspsmp_sata = 0x02; /*direct attached sata */
4851 } else {
James Bottomleyaa9f8322013-05-07 14:44:06 -07004852 if (pm8001_dev->dev_type == SAS_SATA_DEV)
Sakthivel Kf5860992013-04-17 16:37:02 +05304853 stp_sspsmp_sata = 0x00; /* stp*/
James Bottomleyaa9f8322013-05-07 14:44:06 -07004854 else if (pm8001_dev->dev_type == SAS_END_DEVICE ||
Igor Pylypiv4f632912021-09-28 19:58:07 -07004855 dev_is_expander(pm8001_dev->dev_type))
Sakthivel Kf5860992013-04-17 16:37:02 +05304856 stp_sspsmp_sata = 0x01; /*ssp or smp*/
4857 }
John Garry924a3542019-06-10 20:41:41 +08004858 if (parent_dev && dev_is_expander(parent_dev->dev_type))
Sakthivel Kf5860992013-04-17 16:37:02 +05304859 phy_id = parent_dev->ex_dev.ex_phy->phy_id;
4860 else
4861 phy_id = pm8001_dev->attached_phy;
4862
4863 opc = OPC_INB_REG_DEV;
4864
4865 linkrate = (pm8001_dev->sas_device->linkrate < dev->port->linkrate) ?
4866 pm8001_dev->sas_device->linkrate : dev->port->linkrate;
4867
4868 payload.phyid_portid =
Ajish Koshy08d0a992021-09-06 22:34:01 +05304869 cpu_to_le32(((port->port_id) & 0xFF) |
Sakthivel Kf5860992013-04-17 16:37:02 +05304870 ((phy_id & 0xFF) << 8));
4871
4872 payload.dtype_dlr_mcn_ir_retry = cpu_to_le32((retryFlag & 0x01) |
4873 ((linkrate & 0x0F) << 24) |
4874 ((stp_sspsmp_sata & 0x03) << 28));
4875 payload.firstburstsize_ITNexustimeout =
4876 cpu_to_le32(ITNT | (firstBurstSize * 0x10000));
4877
4878 memcpy(payload.sas_addr, pm8001_dev->sas_device->sas_addr,
4879 SAS_ADDR_SIZE);
4880
peter chang91a43fa2019-11-14 15:39:05 +05304881 rc = pm8001_mpi_build_cmd(pm8001_ha, circularQ, opc, &payload,
4882 sizeof(payload), 0);
Tomas Henzl5533abc2014-07-09 17:20:49 +05304883 if (rc)
4884 pm8001_tag_free(pm8001_ha, tag);
Sakthivel Kf5860992013-04-17 16:37:02 +05304885
4886 return rc;
4887}
4888
4889/**
4890 * pm80xx_chip_phy_ctl_req - support the local phy operation
4891 * @pm8001_ha: our hba card information.
Lee Jones6ad4a512020-07-21 17:41:25 +01004892 * @phyId: the phy id which we wanted to operate
4893 * @phy_op: phy operation to request
Sakthivel Kf5860992013-04-17 16:37:02 +05304894 */
4895static int pm80xx_chip_phy_ctl_req(struct pm8001_hba_info *pm8001_ha,
4896 u32 phyId, u32 phy_op)
4897{
Viswas G25c6edb2017-10-18 11:39:10 +05304898 u32 tag;
4899 int rc;
Sakthivel Kf5860992013-04-17 16:37:02 +05304900 struct local_phy_ctl_req payload;
4901 struct inbound_queue_table *circularQ;
Sakthivel Kf5860992013-04-17 16:37:02 +05304902 u32 opc = OPC_INB_LOCAL_PHY_CONTROL;
4903 memset(&payload, 0, sizeof(payload));
Viswas G25c6edb2017-10-18 11:39:10 +05304904 rc = pm8001_tag_alloc(pm8001_ha, &tag);
4905 if (rc)
4906 return rc;
Sakthivel Kf5860992013-04-17 16:37:02 +05304907 circularQ = &pm8001_ha->inbnd_q_tbl[0];
Viswas G25c6edb2017-10-18 11:39:10 +05304908 payload.tag = cpu_to_le32(tag);
Sakthivel Kf5860992013-04-17 16:37:02 +05304909 payload.phyop_phyid =
4910 cpu_to_le32(((phy_op & 0xFF) << 8) | (phyId & 0xFF));
peter chang91a43fa2019-11-14 15:39:05 +05304911 return pm8001_mpi_build_cmd(pm8001_ha, circularQ, opc, &payload,
4912 sizeof(payload), 0);
Sakthivel Kf5860992013-04-17 16:37:02 +05304913}
4914
Colin Ian Kingf310a4e2019-03-29 23:44:23 +00004915static u32 pm80xx_chip_is_our_interrupt(struct pm8001_hba_info *pm8001_ha)
Sakthivel Kf5860992013-04-17 16:37:02 +05304916{
Sakthivel Kf5860992013-04-17 16:37:02 +05304917#ifdef PM8001_USE_MSIX
4918 return 1;
Colin Ian King292c04c2019-03-28 23:43:28 +00004919#else
4920 u32 value;
4921
Sakthivel Kf5860992013-04-17 16:37:02 +05304922 value = pm8001_cr32(pm8001_ha, 0, MSGU_ODR);
4923 if (value)
4924 return 1;
4925 return 0;
Colin Ian King292c04c2019-03-28 23:43:28 +00004926#endif
Sakthivel Kf5860992013-04-17 16:37:02 +05304927}
4928
4929/**
Lee Jones7cdaf122021-03-03 14:46:23 +00004930 * pm80xx_chip_isr - PM8001 isr handler.
Sakthivel Kf5860992013-04-17 16:37:02 +05304931 * @pm8001_ha: our hba card information.
Lee Jones6ad4a512020-07-21 17:41:25 +01004932 * @vec: irq number.
Sakthivel Kf5860992013-04-17 16:37:02 +05304933 */
4934static irqreturn_t
4935pm80xx_chip_isr(struct pm8001_hba_info *pm8001_ha, u8 vec)
4936{
4937 pm80xx_chip_interrupt_disable(pm8001_ha, vec);
Joe Perches1b5d2792020-11-20 15:16:09 -08004938 pm8001_dbg(pm8001_ha, DEVIO,
4939 "irq vec %d, ODMR:0x%x\n",
4940 vec, pm8001_cr32(pm8001_ha, 0, 0x30));
Sakthivel Kf5860992013-04-17 16:37:02 +05304941 process_oq(pm8001_ha, vec);
4942 pm80xx_chip_interrupt_enable(pm8001_ha, vec);
4943 return IRQ_HANDLED;
4944}
4945
Lee Jonesea310f52020-07-21 17:41:33 +01004946static void mpi_set_phy_profile_req(struct pm8001_hba_info *pm8001_ha,
4947 u32 operation, u32 phyid,
4948 u32 length, u32 *buf)
Anand Kumar Santhanam27909402013-09-18 13:02:44 +05304949{
Luo Jiaxing8a23dbc2021-04-08 20:56:32 +08004950 u32 tag, i, j = 0;
Anand Kumar Santhanam27909402013-09-18 13:02:44 +05304951 int rc;
4952 struct set_phy_profile_req payload;
4953 struct inbound_queue_table *circularQ;
4954 u32 opc = OPC_INB_SET_PHY_PROFILE;
4955
4956 memset(&payload, 0, sizeof(payload));
4957 rc = pm8001_tag_alloc(pm8001_ha, &tag);
4958 if (rc)
Joe Perches1b5d2792020-11-20 15:16:09 -08004959 pm8001_dbg(pm8001_ha, FAIL, "Invalid tag\n");
Anand Kumar Santhanam27909402013-09-18 13:02:44 +05304960 circularQ = &pm8001_ha->inbnd_q_tbl[0];
4961 payload.tag = cpu_to_le32(tag);
4962 payload.ppc_phyid = (((operation & 0xF) << 8) | (phyid & 0xFF));
Joe Perches1b5d2792020-11-20 15:16:09 -08004963 pm8001_dbg(pm8001_ha, INIT,
4964 " phy profile command for phy %x ,length is %d\n",
4965 payload.ppc_phyid, length);
Anand Kumar Santhanam27909402013-09-18 13:02:44 +05304966 for (i = length; i < (length + PHY_DWORD_LENGTH - 1); i++) {
4967 payload.reserved[j] = cpu_to_le32(*((u32 *)buf + i));
4968 j++;
4969 }
peter chang91a43fa2019-11-14 15:39:05 +05304970 rc = pm8001_mpi_build_cmd(pm8001_ha, circularQ, opc, &payload,
4971 sizeof(payload), 0);
Tomas Henzl5533abc2014-07-09 17:20:49 +05304972 if (rc)
4973 pm8001_tag_free(pm8001_ha, tag);
Anand Kumar Santhanam27909402013-09-18 13:02:44 +05304974}
4975
4976void pm8001_set_phy_profile(struct pm8001_hba_info *pm8001_ha,
4977 u32 length, u8 *buf)
4978{
YueHaibingfdd0a662018-09-14 01:38:56 +00004979 u32 i;
Anand Kumar Santhanam27909402013-09-18 13:02:44 +05304980
Anand Kumar Santhanam27909402013-09-18 13:02:44 +05304981 for (i = 0; i < pm8001_ha->chip->n_phy; i++) {
4982 mpi_set_phy_profile_req(pm8001_ha,
4983 SAS_PHY_ANALOG_SETTINGS_PAGE, i, length, (u32 *)buf);
4984 length = length + PHY_DWORD_LENGTH;
4985 }
Joe Perches1b5d2792020-11-20 15:16:09 -08004986 pm8001_dbg(pm8001_ha, INIT, "phy settings completed\n");
Anand Kumar Santhanam27909402013-09-18 13:02:44 +05304987}
Benjamin Roodc5614df2015-10-30 10:53:28 -04004988
4989void pm8001_set_phy_profile_single(struct pm8001_hba_info *pm8001_ha,
4990 u32 phy, u32 length, u32 *buf)
4991{
4992 u32 tag, opc;
4993 int rc, i;
4994 struct set_phy_profile_req payload;
4995 struct inbound_queue_table *circularQ;
4996
4997 memset(&payload, 0, sizeof(payload));
4998
4999 rc = pm8001_tag_alloc(pm8001_ha, &tag);
5000 if (rc)
Joe Perches1b5d2792020-11-20 15:16:09 -08005001 pm8001_dbg(pm8001_ha, INIT, "Invalid tag\n");
Benjamin Roodc5614df2015-10-30 10:53:28 -04005002
5003 circularQ = &pm8001_ha->inbnd_q_tbl[0];
5004 opc = OPC_INB_SET_PHY_PROFILE;
5005
5006 payload.tag = cpu_to_le32(tag);
5007 payload.ppc_phyid = (((SAS_PHY_ANALOG_SETTINGS_PAGE & 0xF) << 8)
5008 | (phy & 0xFF));
5009
5010 for (i = 0; i < length; i++)
5011 payload.reserved[i] = cpu_to_le32(*(buf + i));
5012
peter chang91a43fa2019-11-14 15:39:05 +05305013 rc = pm8001_mpi_build_cmd(pm8001_ha, circularQ, opc, &payload,
5014 sizeof(payload), 0);
Benjamin Roodc5614df2015-10-30 10:53:28 -04005015 if (rc)
5016 pm8001_tag_free(pm8001_ha, tag);
5017
Joe Perches1b5d2792020-11-20 15:16:09 -08005018 pm8001_dbg(pm8001_ha, INIT, "PHY %d settings applied\n", phy);
Benjamin Roodc5614df2015-10-30 10:53:28 -04005019}
Sakthivel Kf5860992013-04-17 16:37:02 +05305020const struct pm8001_dispatch pm8001_80xx_dispatch = {
5021 .name = "pmc80xx",
5022 .chip_init = pm80xx_chip_init,
5023 .chip_soft_rst = pm80xx_chip_soft_rst,
5024 .chip_rst = pm80xx_hw_chip_rst,
5025 .chip_iounmap = pm8001_chip_iounmap,
5026 .isr = pm80xx_chip_isr,
Colin Ian Kingf310a4e2019-03-29 23:44:23 +00005027 .is_our_interrupt = pm80xx_chip_is_our_interrupt,
Sakthivel Kf5860992013-04-17 16:37:02 +05305028 .isr_process_oq = process_oq,
5029 .interrupt_enable = pm80xx_chip_interrupt_enable,
5030 .interrupt_disable = pm80xx_chip_interrupt_disable,
5031 .make_prd = pm8001_chip_make_sg,
5032 .smp_req = pm80xx_chip_smp_req,
5033 .ssp_io_req = pm80xx_chip_ssp_io_req,
5034 .sata_req = pm80xx_chip_sata_req,
5035 .phy_start_req = pm80xx_chip_phy_start_req,
5036 .phy_stop_req = pm80xx_chip_phy_stop_req,
5037 .reg_dev_req = pm80xx_chip_reg_dev_req,
5038 .dereg_dev_req = pm8001_chip_dereg_dev_req,
5039 .phy_ctl_req = pm80xx_chip_phy_ctl_req,
5040 .task_abort = pm8001_chip_abort_task,
5041 .ssp_tm_req = pm8001_chip_ssp_tm_req,
5042 .get_nvmd_req = pm8001_chip_get_nvmd_req,
5043 .set_nvmd_req = pm8001_chip_set_nvmd_req,
5044 .fw_flash_update_req = pm8001_chip_fw_flash_update_req,
5045 .set_dev_state_req = pm8001_chip_set_dev_state_req,
akshatzena961ea02021-01-09 18:08:43 +05305046 .fatal_errors = pm80xx_fatal_errors,
Ajish Koshyee05cb72021-12-28 16:47:53 +05305047 .hw_event_ack_req = pm80xx_hw_event_ack_req,
Sakthivel Kf5860992013-04-17 16:37:02 +05305048};