2 * PMC-Sierra SPC 8001 SAS/SATA based host adapters driver
4 * Copyright (c) 2008-2009 USI Co., Ltd.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
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.
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.
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.
40 #include <linux/slab.h>
41 #include "pm8001_sas.h"
42 #include "pm8001_hwi.h"
43 #include "pm8001_chips.h"
44 #include "pm8001_ctl.h"
47 * read_main_config_table - read the configure table and save it.
48 * @pm8001_ha: our hba card information
50 static void read_main_config_table(struct pm8001_hba_info
*pm8001_ha
)
52 void __iomem
*address
= pm8001_ha
->main_cfg_tbl_addr
;
53 pm8001_ha
->main_cfg_tbl
.pm8001_tbl
.signature
=
54 pm8001_mr32(address
, 0x00);
55 pm8001_ha
->main_cfg_tbl
.pm8001_tbl
.interface_rev
=
56 pm8001_mr32(address
, 0x04);
57 pm8001_ha
->main_cfg_tbl
.pm8001_tbl
.firmware_rev
=
58 pm8001_mr32(address
, 0x08);
59 pm8001_ha
->main_cfg_tbl
.pm8001_tbl
.max_out_io
=
60 pm8001_mr32(address
, 0x0C);
61 pm8001_ha
->main_cfg_tbl
.pm8001_tbl
.max_sgl
=
62 pm8001_mr32(address
, 0x10);
63 pm8001_ha
->main_cfg_tbl
.pm8001_tbl
.ctrl_cap_flag
=
64 pm8001_mr32(address
, 0x14);
65 pm8001_ha
->main_cfg_tbl
.pm8001_tbl
.gst_offset
=
66 pm8001_mr32(address
, 0x18);
67 pm8001_ha
->main_cfg_tbl
.pm8001_tbl
.inbound_queue_offset
=
68 pm8001_mr32(address
, MAIN_IBQ_OFFSET
);
69 pm8001_ha
->main_cfg_tbl
.pm8001_tbl
.outbound_queue_offset
=
70 pm8001_mr32(address
, MAIN_OBQ_OFFSET
);
71 pm8001_ha
->main_cfg_tbl
.pm8001_tbl
.hda_mode_flag
=
72 pm8001_mr32(address
, MAIN_HDA_FLAGS_OFFSET
);
74 /* read analog Setting offset from the configuration table */
75 pm8001_ha
->main_cfg_tbl
.pm8001_tbl
.anolog_setup_table_offset
=
76 pm8001_mr32(address
, MAIN_ANALOG_SETUP_OFFSET
);
78 /* read Error Dump Offset and Length */
79 pm8001_ha
->main_cfg_tbl
.pm8001_tbl
.fatal_err_dump_offset0
=
80 pm8001_mr32(address
, MAIN_FATAL_ERROR_RDUMP0_OFFSET
);
81 pm8001_ha
->main_cfg_tbl
.pm8001_tbl
.fatal_err_dump_length0
=
82 pm8001_mr32(address
, MAIN_FATAL_ERROR_RDUMP0_LENGTH
);
83 pm8001_ha
->main_cfg_tbl
.pm8001_tbl
.fatal_err_dump_offset1
=
84 pm8001_mr32(address
, MAIN_FATAL_ERROR_RDUMP1_OFFSET
);
85 pm8001_ha
->main_cfg_tbl
.pm8001_tbl
.fatal_err_dump_length1
=
86 pm8001_mr32(address
, MAIN_FATAL_ERROR_RDUMP1_LENGTH
);
90 * read_general_status_table - read the general status table and save it.
91 * @pm8001_ha: our hba card information
93 static void read_general_status_table(struct pm8001_hba_info
*pm8001_ha
)
95 void __iomem
*address
= pm8001_ha
->general_stat_tbl_addr
;
96 pm8001_ha
->gs_tbl
.pm8001_tbl
.gst_len_mpistate
=
97 pm8001_mr32(address
, 0x00);
98 pm8001_ha
->gs_tbl
.pm8001_tbl
.iq_freeze_state0
=
99 pm8001_mr32(address
, 0x04);
100 pm8001_ha
->gs_tbl
.pm8001_tbl
.iq_freeze_state1
=
101 pm8001_mr32(address
, 0x08);
102 pm8001_ha
->gs_tbl
.pm8001_tbl
.msgu_tcnt
=
103 pm8001_mr32(address
, 0x0C);
104 pm8001_ha
->gs_tbl
.pm8001_tbl
.iop_tcnt
=
105 pm8001_mr32(address
, 0x10);
106 pm8001_ha
->gs_tbl
.pm8001_tbl
.rsvd
=
107 pm8001_mr32(address
, 0x14);
108 pm8001_ha
->gs_tbl
.pm8001_tbl
.phy_state
[0] =
109 pm8001_mr32(address
, 0x18);
110 pm8001_ha
->gs_tbl
.pm8001_tbl
.phy_state
[1] =
111 pm8001_mr32(address
, 0x1C);
112 pm8001_ha
->gs_tbl
.pm8001_tbl
.phy_state
[2] =
113 pm8001_mr32(address
, 0x20);
114 pm8001_ha
->gs_tbl
.pm8001_tbl
.phy_state
[3] =
115 pm8001_mr32(address
, 0x24);
116 pm8001_ha
->gs_tbl
.pm8001_tbl
.phy_state
[4] =
117 pm8001_mr32(address
, 0x28);
118 pm8001_ha
->gs_tbl
.pm8001_tbl
.phy_state
[5] =
119 pm8001_mr32(address
, 0x2C);
120 pm8001_ha
->gs_tbl
.pm8001_tbl
.phy_state
[6] =
121 pm8001_mr32(address
, 0x30);
122 pm8001_ha
->gs_tbl
.pm8001_tbl
.phy_state
[7] =
123 pm8001_mr32(address
, 0x34);
124 pm8001_ha
->gs_tbl
.pm8001_tbl
.gpio_input_val
=
125 pm8001_mr32(address
, 0x38);
126 pm8001_ha
->gs_tbl
.pm8001_tbl
.rsvd1
[0] =
127 pm8001_mr32(address
, 0x3C);
128 pm8001_ha
->gs_tbl
.pm8001_tbl
.rsvd1
[1] =
129 pm8001_mr32(address
, 0x40);
130 pm8001_ha
->gs_tbl
.pm8001_tbl
.recover_err_info
[0] =
131 pm8001_mr32(address
, 0x44);
132 pm8001_ha
->gs_tbl
.pm8001_tbl
.recover_err_info
[1] =
133 pm8001_mr32(address
, 0x48);
134 pm8001_ha
->gs_tbl
.pm8001_tbl
.recover_err_info
[2] =
135 pm8001_mr32(address
, 0x4C);
136 pm8001_ha
->gs_tbl
.pm8001_tbl
.recover_err_info
[3] =
137 pm8001_mr32(address
, 0x50);
138 pm8001_ha
->gs_tbl
.pm8001_tbl
.recover_err_info
[4] =
139 pm8001_mr32(address
, 0x54);
140 pm8001_ha
->gs_tbl
.pm8001_tbl
.recover_err_info
[5] =
141 pm8001_mr32(address
, 0x58);
142 pm8001_ha
->gs_tbl
.pm8001_tbl
.recover_err_info
[6] =
143 pm8001_mr32(address
, 0x5C);
144 pm8001_ha
->gs_tbl
.pm8001_tbl
.recover_err_info
[7] =
145 pm8001_mr32(address
, 0x60);
149 * read_inbnd_queue_table - read the inbound queue table and save it.
150 * @pm8001_ha: our hba card information
152 static void read_inbnd_queue_table(struct pm8001_hba_info
*pm8001_ha
)
155 void __iomem
*address
= pm8001_ha
->inbnd_q_tbl_addr
;
156 for (i
= 0; i
< PM8001_MAX_INB_NUM
; i
++) {
157 u32 offset
= i
* 0x20;
158 pm8001_ha
->inbnd_q_tbl
[i
].pi_pci_bar
=
159 get_pci_bar_index(pm8001_mr32(address
, (offset
+ 0x14)));
160 pm8001_ha
->inbnd_q_tbl
[i
].pi_offset
=
161 pm8001_mr32(address
, (offset
+ 0x18));
166 * read_outbnd_queue_table - read the outbound queue table and save it.
167 * @pm8001_ha: our hba card information
169 static void read_outbnd_queue_table(struct pm8001_hba_info
*pm8001_ha
)
172 void __iomem
*address
= pm8001_ha
->outbnd_q_tbl_addr
;
173 for (i
= 0; i
< PM8001_MAX_OUTB_NUM
; i
++) {
174 u32 offset
= i
* 0x24;
175 pm8001_ha
->outbnd_q_tbl
[i
].ci_pci_bar
=
176 get_pci_bar_index(pm8001_mr32(address
, (offset
+ 0x14)));
177 pm8001_ha
->outbnd_q_tbl
[i
].ci_offset
=
178 pm8001_mr32(address
, (offset
+ 0x18));
183 * init_default_table_values - init the default table.
184 * @pm8001_ha: our hba card information
186 static void init_default_table_values(struct pm8001_hba_info
*pm8001_ha
)
189 u32 offsetib
, offsetob
;
190 void __iomem
*addressib
= pm8001_ha
->inbnd_q_tbl_addr
;
191 void __iomem
*addressob
= pm8001_ha
->outbnd_q_tbl_addr
;
193 pm8001_ha
->main_cfg_tbl
.pm8001_tbl
.inbound_q_nppd_hppd
= 0;
194 pm8001_ha
->main_cfg_tbl
.pm8001_tbl
.outbound_hw_event_pid0_3
= 0;
195 pm8001_ha
->main_cfg_tbl
.pm8001_tbl
.outbound_hw_event_pid4_7
= 0;
196 pm8001_ha
->main_cfg_tbl
.pm8001_tbl
.outbound_ncq_event_pid0_3
= 0;
197 pm8001_ha
->main_cfg_tbl
.pm8001_tbl
.outbound_ncq_event_pid4_7
= 0;
198 pm8001_ha
->main_cfg_tbl
.pm8001_tbl
.outbound_tgt_ITNexus_event_pid0_3
=
200 pm8001_ha
->main_cfg_tbl
.pm8001_tbl
.outbound_tgt_ITNexus_event_pid4_7
=
202 pm8001_ha
->main_cfg_tbl
.pm8001_tbl
.outbound_tgt_ssp_event_pid0_3
= 0;
203 pm8001_ha
->main_cfg_tbl
.pm8001_tbl
.outbound_tgt_ssp_event_pid4_7
= 0;
204 pm8001_ha
->main_cfg_tbl
.pm8001_tbl
.outbound_tgt_smp_event_pid0_3
= 0;
205 pm8001_ha
->main_cfg_tbl
.pm8001_tbl
.outbound_tgt_smp_event_pid4_7
= 0;
207 pm8001_ha
->main_cfg_tbl
.pm8001_tbl
.upper_event_log_addr
=
208 pm8001_ha
->memoryMap
.region
[AAP1
].phys_addr_hi
;
209 pm8001_ha
->main_cfg_tbl
.pm8001_tbl
.lower_event_log_addr
=
210 pm8001_ha
->memoryMap
.region
[AAP1
].phys_addr_lo
;
211 pm8001_ha
->main_cfg_tbl
.pm8001_tbl
.event_log_size
=
212 PM8001_EVENT_LOG_SIZE
;
213 pm8001_ha
->main_cfg_tbl
.pm8001_tbl
.event_log_option
= 0x01;
214 pm8001_ha
->main_cfg_tbl
.pm8001_tbl
.upper_iop_event_log_addr
=
215 pm8001_ha
->memoryMap
.region
[IOP
].phys_addr_hi
;
216 pm8001_ha
->main_cfg_tbl
.pm8001_tbl
.lower_iop_event_log_addr
=
217 pm8001_ha
->memoryMap
.region
[IOP
].phys_addr_lo
;
218 pm8001_ha
->main_cfg_tbl
.pm8001_tbl
.iop_event_log_size
=
219 PM8001_EVENT_LOG_SIZE
;
220 pm8001_ha
->main_cfg_tbl
.pm8001_tbl
.iop_event_log_option
= 0x01;
221 pm8001_ha
->main_cfg_tbl
.pm8001_tbl
.fatal_err_interrupt
= 0x01;
222 for (i
= 0; i
< PM8001_MAX_INB_NUM
; i
++) {
223 pm8001_ha
->inbnd_q_tbl
[i
].element_pri_size_cnt
=
224 PM8001_MPI_QUEUE
| (pm8001_ha
->iomb_size
<< 16) | (0x00<<30);
225 pm8001_ha
->inbnd_q_tbl
[i
].upper_base_addr
=
226 pm8001_ha
->memoryMap
.region
[IB
+ i
].phys_addr_hi
;
227 pm8001_ha
->inbnd_q_tbl
[i
].lower_base_addr
=
228 pm8001_ha
->memoryMap
.region
[IB
+ i
].phys_addr_lo
;
229 pm8001_ha
->inbnd_q_tbl
[i
].base_virt
=
230 (u8
*)pm8001_ha
->memoryMap
.region
[IB
+ i
].virt_ptr
;
231 pm8001_ha
->inbnd_q_tbl
[i
].total_length
=
232 pm8001_ha
->memoryMap
.region
[IB
+ i
].total_len
;
233 pm8001_ha
->inbnd_q_tbl
[i
].ci_upper_base_addr
=
234 pm8001_ha
->memoryMap
.region
[CI
+ i
].phys_addr_hi
;
235 pm8001_ha
->inbnd_q_tbl
[i
].ci_lower_base_addr
=
236 pm8001_ha
->memoryMap
.region
[CI
+ i
].phys_addr_lo
;
237 pm8001_ha
->inbnd_q_tbl
[i
].ci_virt
=
238 pm8001_ha
->memoryMap
.region
[CI
+ i
].virt_ptr
;
240 pm8001_ha
->inbnd_q_tbl
[i
].pi_pci_bar
=
241 get_pci_bar_index(pm8001_mr32(addressib
,
243 pm8001_ha
->inbnd_q_tbl
[i
].pi_offset
=
244 pm8001_mr32(addressib
, (offsetib
+ 0x18));
245 pm8001_ha
->inbnd_q_tbl
[i
].producer_idx
= 0;
246 pm8001_ha
->inbnd_q_tbl
[i
].consumer_index
= 0;
248 for (i
= 0; i
< PM8001_MAX_OUTB_NUM
; i
++) {
249 pm8001_ha
->outbnd_q_tbl
[i
].element_size_cnt
=
250 PM8001_MPI_QUEUE
| (pm8001_ha
->iomb_size
<< 16) | (0x01<<30);
251 pm8001_ha
->outbnd_q_tbl
[i
].upper_base_addr
=
252 pm8001_ha
->memoryMap
.region
[OB
+ i
].phys_addr_hi
;
253 pm8001_ha
->outbnd_q_tbl
[i
].lower_base_addr
=
254 pm8001_ha
->memoryMap
.region
[OB
+ i
].phys_addr_lo
;
255 pm8001_ha
->outbnd_q_tbl
[i
].base_virt
=
256 (u8
*)pm8001_ha
->memoryMap
.region
[OB
+ i
].virt_ptr
;
257 pm8001_ha
->outbnd_q_tbl
[i
].total_length
=
258 pm8001_ha
->memoryMap
.region
[OB
+ i
].total_len
;
259 pm8001_ha
->outbnd_q_tbl
[i
].pi_upper_base_addr
=
260 pm8001_ha
->memoryMap
.region
[PI
+ i
].phys_addr_hi
;
261 pm8001_ha
->outbnd_q_tbl
[i
].pi_lower_base_addr
=
262 pm8001_ha
->memoryMap
.region
[PI
+ i
].phys_addr_lo
;
263 pm8001_ha
->outbnd_q_tbl
[i
].interrup_vec_cnt_delay
=
264 0 | (10 << 16) | (i
<< 24);
265 pm8001_ha
->outbnd_q_tbl
[i
].pi_virt
=
266 pm8001_ha
->memoryMap
.region
[PI
+ i
].virt_ptr
;
268 pm8001_ha
->outbnd_q_tbl
[i
].ci_pci_bar
=
269 get_pci_bar_index(pm8001_mr32(addressob
,
271 pm8001_ha
->outbnd_q_tbl
[i
].ci_offset
=
272 pm8001_mr32(addressob
, (offsetob
+ 0x18));
273 pm8001_ha
->outbnd_q_tbl
[i
].consumer_idx
= 0;
274 pm8001_ha
->outbnd_q_tbl
[i
].producer_index
= 0;
279 * update_main_config_table - update the main default table to the HBA.
280 * @pm8001_ha: our hba card information
282 static void update_main_config_table(struct pm8001_hba_info
*pm8001_ha
)
284 void __iomem
*address
= pm8001_ha
->main_cfg_tbl_addr
;
285 pm8001_mw32(address
, 0x24,
286 pm8001_ha
->main_cfg_tbl
.pm8001_tbl
.inbound_q_nppd_hppd
);
287 pm8001_mw32(address
, 0x28,
288 pm8001_ha
->main_cfg_tbl
.pm8001_tbl
.outbound_hw_event_pid0_3
);
289 pm8001_mw32(address
, 0x2C,
290 pm8001_ha
->main_cfg_tbl
.pm8001_tbl
.outbound_hw_event_pid4_7
);
291 pm8001_mw32(address
, 0x30,
292 pm8001_ha
->main_cfg_tbl
.pm8001_tbl
.outbound_ncq_event_pid0_3
);
293 pm8001_mw32(address
, 0x34,
294 pm8001_ha
->main_cfg_tbl
.pm8001_tbl
.outbound_ncq_event_pid4_7
);
295 pm8001_mw32(address
, 0x38,
296 pm8001_ha
->main_cfg_tbl
.pm8001_tbl
.
297 outbound_tgt_ITNexus_event_pid0_3
);
298 pm8001_mw32(address
, 0x3C,
299 pm8001_ha
->main_cfg_tbl
.pm8001_tbl
.
300 outbound_tgt_ITNexus_event_pid4_7
);
301 pm8001_mw32(address
, 0x40,
302 pm8001_ha
->main_cfg_tbl
.pm8001_tbl
.
303 outbound_tgt_ssp_event_pid0_3
);
304 pm8001_mw32(address
, 0x44,
305 pm8001_ha
->main_cfg_tbl
.pm8001_tbl
.
306 outbound_tgt_ssp_event_pid4_7
);
307 pm8001_mw32(address
, 0x48,
308 pm8001_ha
->main_cfg_tbl
.pm8001_tbl
.
309 outbound_tgt_smp_event_pid0_3
);
310 pm8001_mw32(address
, 0x4C,
311 pm8001_ha
->main_cfg_tbl
.pm8001_tbl
.
312 outbound_tgt_smp_event_pid4_7
);
313 pm8001_mw32(address
, 0x50,
314 pm8001_ha
->main_cfg_tbl
.pm8001_tbl
.upper_event_log_addr
);
315 pm8001_mw32(address
, 0x54,
316 pm8001_ha
->main_cfg_tbl
.pm8001_tbl
.lower_event_log_addr
);
317 pm8001_mw32(address
, 0x58,
318 pm8001_ha
->main_cfg_tbl
.pm8001_tbl
.event_log_size
);
319 pm8001_mw32(address
, 0x5C,
320 pm8001_ha
->main_cfg_tbl
.pm8001_tbl
.event_log_option
);
321 pm8001_mw32(address
, 0x60,
322 pm8001_ha
->main_cfg_tbl
.pm8001_tbl
.upper_iop_event_log_addr
);
323 pm8001_mw32(address
, 0x64,
324 pm8001_ha
->main_cfg_tbl
.pm8001_tbl
.lower_iop_event_log_addr
);
325 pm8001_mw32(address
, 0x68,
326 pm8001_ha
->main_cfg_tbl
.pm8001_tbl
.iop_event_log_size
);
327 pm8001_mw32(address
, 0x6C,
328 pm8001_ha
->main_cfg_tbl
.pm8001_tbl
.iop_event_log_option
);
329 pm8001_mw32(address
, 0x70,
330 pm8001_ha
->main_cfg_tbl
.pm8001_tbl
.fatal_err_interrupt
);
334 * update_inbnd_queue_table - update the inbound queue table to the HBA.
335 * @pm8001_ha: our hba card information
337 static void update_inbnd_queue_table(struct pm8001_hba_info
*pm8001_ha
,
340 void __iomem
*address
= pm8001_ha
->inbnd_q_tbl_addr
;
341 u16 offset
= number
* 0x20;
342 pm8001_mw32(address
, offset
+ 0x00,
343 pm8001_ha
->inbnd_q_tbl
[number
].element_pri_size_cnt
);
344 pm8001_mw32(address
, offset
+ 0x04,
345 pm8001_ha
->inbnd_q_tbl
[number
].upper_base_addr
);
346 pm8001_mw32(address
, offset
+ 0x08,
347 pm8001_ha
->inbnd_q_tbl
[number
].lower_base_addr
);
348 pm8001_mw32(address
, offset
+ 0x0C,
349 pm8001_ha
->inbnd_q_tbl
[number
].ci_upper_base_addr
);
350 pm8001_mw32(address
, offset
+ 0x10,
351 pm8001_ha
->inbnd_q_tbl
[number
].ci_lower_base_addr
);
355 * update_outbnd_queue_table - update the outbound queue table to the HBA.
356 * @pm8001_ha: our hba card information
358 static void update_outbnd_queue_table(struct pm8001_hba_info
*pm8001_ha
,
361 void __iomem
*address
= pm8001_ha
->outbnd_q_tbl_addr
;
362 u16 offset
= number
* 0x24;
363 pm8001_mw32(address
, offset
+ 0x00,
364 pm8001_ha
->outbnd_q_tbl
[number
].element_size_cnt
);
365 pm8001_mw32(address
, offset
+ 0x04,
366 pm8001_ha
->outbnd_q_tbl
[number
].upper_base_addr
);
367 pm8001_mw32(address
, offset
+ 0x08,
368 pm8001_ha
->outbnd_q_tbl
[number
].lower_base_addr
);
369 pm8001_mw32(address
, offset
+ 0x0C,
370 pm8001_ha
->outbnd_q_tbl
[number
].pi_upper_base_addr
);
371 pm8001_mw32(address
, offset
+ 0x10,
372 pm8001_ha
->outbnd_q_tbl
[number
].pi_lower_base_addr
);
373 pm8001_mw32(address
, offset
+ 0x1C,
374 pm8001_ha
->outbnd_q_tbl
[number
].interrup_vec_cnt_delay
);
378 * pm8001_bar4_shift - function is called to shift BAR base address
379 * @pm8001_ha : our hba card infomation
380 * @shiftValue : shifting value in memory bar.
382 int pm8001_bar4_shift(struct pm8001_hba_info
*pm8001_ha
, u32 shiftValue
)
387 /* program the inbound AXI translation Lower Address */
388 pm8001_cw32(pm8001_ha
, 1, SPC_IBW_AXI_TRANSLATION_LOW
, shiftValue
);
390 /* confirm the setting is written */
391 start
= jiffies
+ HZ
; /* 1 sec */
393 regVal
= pm8001_cr32(pm8001_ha
, 1, SPC_IBW_AXI_TRANSLATION_LOW
);
394 } while ((regVal
!= shiftValue
) && time_before(jiffies
, start
));
396 if (regVal
!= shiftValue
) {
397 PM8001_INIT_DBG(pm8001_ha
,
398 pm8001_printk("TIMEOUT:SPC_IBW_AXI_TRANSLATION_LOW"
399 " = 0x%x\n", regVal
));
406 * mpi_set_phys_g3_with_ssc
407 * @pm8001_ha: our hba card information
408 * @SSCbit: set SSCbit to 0 to disable all phys ssc; 1 to enable all phys ssc.
410 static void mpi_set_phys_g3_with_ssc(struct pm8001_hba_info
*pm8001_ha
,
413 u32 value
, offset
, i
;
416 #define SAS2_SETTINGS_LOCAL_PHY_0_3_SHIFT_ADDR 0x00030000
417 #define SAS2_SETTINGS_LOCAL_PHY_4_7_SHIFT_ADDR 0x00040000
418 #define SAS2_SETTINGS_LOCAL_PHY_0_3_OFFSET 0x1074
419 #define SAS2_SETTINGS_LOCAL_PHY_4_7_OFFSET 0x1074
420 #define PHY_G3_WITHOUT_SSC_BIT_SHIFT 12
421 #define PHY_G3_WITH_SSC_BIT_SHIFT 13
422 #define SNW3_PHY_CAPABILITIES_PARITY 31
425 * Using shifted destination address 0x3_0000:0x1074 + 0x4000*N (N=0:3)
426 * Using shifted destination address 0x4_0000:0x1074 + 0x4000*(N-4) (N=4:7)
428 spin_lock_irqsave(&pm8001_ha
->lock
, flags
);
429 if (-1 == pm8001_bar4_shift(pm8001_ha
,
430 SAS2_SETTINGS_LOCAL_PHY_0_3_SHIFT_ADDR
)) {
431 spin_unlock_irqrestore(&pm8001_ha
->lock
, flags
);
435 for (i
= 0; i
< 4; i
++) {
436 offset
= SAS2_SETTINGS_LOCAL_PHY_0_3_OFFSET
+ 0x4000 * i
;
437 pm8001_cw32(pm8001_ha
, 2, offset
, 0x80001501);
439 /* shift membase 3 for SAS2_SETTINGS_LOCAL_PHY 4 - 7 */
440 if (-1 == pm8001_bar4_shift(pm8001_ha
,
441 SAS2_SETTINGS_LOCAL_PHY_4_7_SHIFT_ADDR
)) {
442 spin_unlock_irqrestore(&pm8001_ha
->lock
, flags
);
445 for (i
= 4; i
< 8; i
++) {
446 offset
= SAS2_SETTINGS_LOCAL_PHY_4_7_OFFSET
+ 0x4000 * (i
-4);
447 pm8001_cw32(pm8001_ha
, 2, offset
, 0x80001501);
449 /*************************************************************
450 Change the SSC upspreading value to 0x0 so that upspreading is disabled.
451 Device MABC SMOD0 Controls
452 Address: (via MEMBASE-III):
453 Using shifted destination address 0x0_0000: with Offset 0xD8
455 31:28 R/W Reserved Do not change
456 27:24 R/W SAS_SMOD_SPRDUP 0000
457 23:20 R/W SAS_SMOD_SPRDDN 0000
458 19:0 R/W Reserved Do not change
459 Upon power-up this register will read as 0x8990c016,
460 and I would like you to change the SAS_SMOD_SPRDUP bits to 0b0000
461 so that the written value will be 0x8090c016.
462 This will ensure only down-spreading SSC is enabled on the SPC.
463 *************************************************************/
464 value
= pm8001_cr32(pm8001_ha
, 2, 0xd8);
465 pm8001_cw32(pm8001_ha
, 2, 0xd8, 0x8000C016);
467 /*set the shifted destination address to 0x0 to avoid error operation */
468 pm8001_bar4_shift(pm8001_ha
, 0x0);
469 spin_unlock_irqrestore(&pm8001_ha
->lock
, flags
);
474 * mpi_set_open_retry_interval_reg
475 * @pm8001_ha: our hba card information
476 * @interval - interval time for each OPEN_REJECT (RETRY). The units are in 1us.
478 static void mpi_set_open_retry_interval_reg(struct pm8001_hba_info
*pm8001_ha
,
486 #define OPEN_RETRY_INTERVAL_PHY_0_3_SHIFT_ADDR 0x00030000
487 #define OPEN_RETRY_INTERVAL_PHY_4_7_SHIFT_ADDR 0x00040000
488 #define OPEN_RETRY_INTERVAL_PHY_0_3_OFFSET 0x30B4
489 #define OPEN_RETRY_INTERVAL_PHY_4_7_OFFSET 0x30B4
490 #define OPEN_RETRY_INTERVAL_REG_MASK 0x0000FFFF
492 value
= interval
& OPEN_RETRY_INTERVAL_REG_MASK
;
493 spin_lock_irqsave(&pm8001_ha
->lock
, flags
);
494 /* shift bar and set the OPEN_REJECT(RETRY) interval time of PHY 0 -3.*/
495 if (-1 == pm8001_bar4_shift(pm8001_ha
,
496 OPEN_RETRY_INTERVAL_PHY_0_3_SHIFT_ADDR
)) {
497 spin_unlock_irqrestore(&pm8001_ha
->lock
, flags
);
500 for (i
= 0; i
< 4; i
++) {
501 offset
= OPEN_RETRY_INTERVAL_PHY_0_3_OFFSET
+ 0x4000 * i
;
502 pm8001_cw32(pm8001_ha
, 2, offset
, value
);
505 if (-1 == pm8001_bar4_shift(pm8001_ha
,
506 OPEN_RETRY_INTERVAL_PHY_4_7_SHIFT_ADDR
)) {
507 spin_unlock_irqrestore(&pm8001_ha
->lock
, flags
);
510 for (i
= 4; i
< 8; i
++) {
511 offset
= OPEN_RETRY_INTERVAL_PHY_4_7_OFFSET
+ 0x4000 * (i
-4);
512 pm8001_cw32(pm8001_ha
, 2, offset
, value
);
514 /*set the shifted destination address to 0x0 to avoid error operation */
515 pm8001_bar4_shift(pm8001_ha
, 0x0);
516 spin_unlock_irqrestore(&pm8001_ha
->lock
, flags
);
521 * mpi_init_check - check firmware initialization status.
522 * @pm8001_ha: our hba card information
524 static int mpi_init_check(struct pm8001_hba_info
*pm8001_ha
)
528 u32 gst_len_mpistate
;
529 /* Write bit0=1 to Inbound DoorBell Register to tell the SPC FW the
531 pm8001_cw32(pm8001_ha
, 0, MSGU_IBDB_SET
, SPC_MSGU_CFG_TABLE_UPDATE
);
532 /* wait until Inbound DoorBell Clear Register toggled */
533 max_wait_count
= 1 * 1000 * 1000;/* 1 sec */
536 value
= pm8001_cr32(pm8001_ha
, 0, MSGU_IBDB_SET
);
537 value
&= SPC_MSGU_CFG_TABLE_UPDATE
;
538 } while ((value
!= 0) && (--max_wait_count
));
542 /* check the MPI-State for initialization */
544 pm8001_mr32(pm8001_ha
->general_stat_tbl_addr
,
545 GST_GSTLEN_MPIS_OFFSET
);
546 if (GST_MPI_STATE_INIT
!= (gst_len_mpistate
& GST_MPI_STATE_MASK
))
548 /* check MPI Initialization error */
549 gst_len_mpistate
= gst_len_mpistate
>> 16;
550 if (0x0000 != gst_len_mpistate
)
556 * check_fw_ready - The LLDD check if the FW is ready, if not, return error.
557 * @pm8001_ha: our hba card information
559 static int check_fw_ready(struct pm8001_hba_info
*pm8001_ha
)
563 /* check error state */
564 value
= pm8001_cr32(pm8001_ha
, 0, MSGU_SCRATCH_PAD_1
);
565 value1
= pm8001_cr32(pm8001_ha
, 0, MSGU_SCRATCH_PAD_2
);
566 /* check AAP error */
567 if (SCRATCH_PAD1_ERR
== (value
& SCRATCH_PAD_STATE_MASK
)) {
569 value
= pm8001_cr32(pm8001_ha
, 0, MSGU_SCRATCH_PAD_0
);
573 /* check IOP error */
574 if (SCRATCH_PAD2_ERR
== (value1
& SCRATCH_PAD_STATE_MASK
)) {
576 value1
= pm8001_cr32(pm8001_ha
, 0, MSGU_SCRATCH_PAD_3
);
580 /* bit 4-31 of scratch pad1 should be zeros if it is not
582 if (value
& SCRATCH_PAD1_STATE_MASK
) {
584 pm8001_cr32(pm8001_ha
, 0, MSGU_SCRATCH_PAD_0
);
588 /* bit 2, 4-31 of scratch pad2 should be zeros if it is not
590 if (value1
& SCRATCH_PAD2_STATE_MASK
) {
595 max_wait_count
= 1 * 1000 * 1000;/* 1 sec timeout */
597 /* wait until scratch pad 1 and 2 registers in ready state */
600 value
= pm8001_cr32(pm8001_ha
, 0, MSGU_SCRATCH_PAD_1
)
602 value1
= pm8001_cr32(pm8001_ha
, 0, MSGU_SCRATCH_PAD_2
)
604 if ((--max_wait_count
) == 0)
606 } while ((value
!= SCRATCH_PAD1_RDY
) || (value1
!= SCRATCH_PAD2_RDY
));
610 static void init_pci_device_addresses(struct pm8001_hba_info
*pm8001_ha
)
612 void __iomem
*base_addr
;
618 value
= pm8001_cr32(pm8001_ha
, 0, 0x44);
619 offset
= value
& 0x03FFFFFF;
620 PM8001_INIT_DBG(pm8001_ha
,
621 pm8001_printk("Scratchpad 0 Offset: %x\n", offset
));
622 pcilogic
= (value
& 0xFC000000) >> 26;
623 pcibar
= get_pci_bar_index(pcilogic
);
624 PM8001_INIT_DBG(pm8001_ha
,
625 pm8001_printk("Scratchpad 0 PCI BAR: %d\n", pcibar
));
626 pm8001_ha
->main_cfg_tbl_addr
= base_addr
=
627 pm8001_ha
->io_mem
[pcibar
].memvirtaddr
+ offset
;
628 pm8001_ha
->general_stat_tbl_addr
=
629 base_addr
+ pm8001_cr32(pm8001_ha
, pcibar
, offset
+ 0x18);
630 pm8001_ha
->inbnd_q_tbl_addr
=
631 base_addr
+ pm8001_cr32(pm8001_ha
, pcibar
, offset
+ 0x1C);
632 pm8001_ha
->outbnd_q_tbl_addr
=
633 base_addr
+ pm8001_cr32(pm8001_ha
, pcibar
, offset
+ 0x20);
637 * pm8001_chip_init - the main init function that initialize whole PM8001 chip.
638 * @pm8001_ha: our hba card information
640 static int pm8001_chip_init(struct pm8001_hba_info
*pm8001_ha
)
644 pci_read_config_word(pm8001_ha
->pdev
, PCI_DEVICE_ID
, &deviceid
);
645 /* 8081 controllers need BAR shift to access MPI space
646 * as this is shared with BIOS data */
647 if (deviceid
== 0x8081 || deviceid
== 0x0042) {
648 if (-1 == pm8001_bar4_shift(pm8001_ha
, GSM_SM_BASE
)) {
649 PM8001_FAIL_DBG(pm8001_ha
,
650 pm8001_printk("Shift Bar4 to 0x%x failed\n",
655 /* check the firmware status */
656 if (-1 == check_fw_ready(pm8001_ha
)) {
657 PM8001_FAIL_DBG(pm8001_ha
,
658 pm8001_printk("Firmware is not ready!\n"));
662 /* Initialize pci space address eg: mpi offset */
663 init_pci_device_addresses(pm8001_ha
);
664 init_default_table_values(pm8001_ha
);
665 read_main_config_table(pm8001_ha
);
666 read_general_status_table(pm8001_ha
);
667 read_inbnd_queue_table(pm8001_ha
);
668 read_outbnd_queue_table(pm8001_ha
);
669 /* update main config table ,inbound table and outbound table */
670 update_main_config_table(pm8001_ha
);
671 for (i
= 0; i
< PM8001_MAX_INB_NUM
; i
++)
672 update_inbnd_queue_table(pm8001_ha
, i
);
673 for (i
= 0; i
< PM8001_MAX_OUTB_NUM
; i
++)
674 update_outbnd_queue_table(pm8001_ha
, i
);
675 /* 8081 controller donot require these operations */
676 if (deviceid
!= 0x8081 && deviceid
!= 0x0042) {
677 mpi_set_phys_g3_with_ssc(pm8001_ha
, 0);
678 /* 7->130ms, 34->500ms, 119->1.5s */
679 mpi_set_open_retry_interval_reg(pm8001_ha
, 119);
681 /* notify firmware update finished and check initialization status */
682 if (0 == mpi_init_check(pm8001_ha
)) {
683 PM8001_INIT_DBG(pm8001_ha
,
684 pm8001_printk("MPI initialize successful!\n"));
687 /*This register is a 16-bit timer with a resolution of 1us. This is the
688 timer used for interrupt delay/coalescing in the PCIe Application Layer.
689 Zero is not a valid value. A value of 1 in the register will cause the
690 interrupts to be normal. A value greater than 1 will cause coalescing
692 pm8001_cw32(pm8001_ha
, 1, 0x0033c0, 0x1);
693 pm8001_cw32(pm8001_ha
, 1, 0x0033c4, 0x0);
697 static int mpi_uninit_check(struct pm8001_hba_info
*pm8001_ha
)
701 u32 gst_len_mpistate
;
703 pci_read_config_word(pm8001_ha
->pdev
, PCI_DEVICE_ID
, &deviceid
);
704 if (deviceid
== 0x8081 || deviceid
== 0x0042) {
705 if (-1 == pm8001_bar4_shift(pm8001_ha
, GSM_SM_BASE
)) {
706 PM8001_FAIL_DBG(pm8001_ha
,
707 pm8001_printk("Shift Bar4 to 0x%x failed\n",
712 init_pci_device_addresses(pm8001_ha
);
713 /* Write bit1=1 to Inbound DoorBell Register to tell the SPC FW the
715 pm8001_cw32(pm8001_ha
, 0, MSGU_IBDB_SET
, SPC_MSGU_CFG_TABLE_RESET
);
717 /* wait until Inbound DoorBell Clear Register toggled */
718 max_wait_count
= 1 * 1000 * 1000;/* 1 sec */
721 value
= pm8001_cr32(pm8001_ha
, 0, MSGU_IBDB_SET
);
722 value
&= SPC_MSGU_CFG_TABLE_RESET
;
723 } while ((value
!= 0) && (--max_wait_count
));
725 if (!max_wait_count
) {
726 PM8001_FAIL_DBG(pm8001_ha
,
727 pm8001_printk("TIMEOUT:IBDB value/=0x%x\n", value
));
731 /* check the MPI-State for termination in progress */
732 /* wait until Inbound DoorBell Clear Register toggled */
733 max_wait_count
= 1 * 1000 * 1000; /* 1 sec */
737 pm8001_mr32(pm8001_ha
->general_stat_tbl_addr
,
738 GST_GSTLEN_MPIS_OFFSET
);
739 if (GST_MPI_STATE_UNINIT
==
740 (gst_len_mpistate
& GST_MPI_STATE_MASK
))
742 } while (--max_wait_count
);
743 if (!max_wait_count
) {
744 PM8001_FAIL_DBG(pm8001_ha
,
745 pm8001_printk(" TIME OUT MPI State = 0x%x\n",
746 gst_len_mpistate
& GST_MPI_STATE_MASK
));
753 * soft_reset_ready_check - Function to check FW is ready for soft reset.
754 * @pm8001_ha: our hba card information
756 static u32
soft_reset_ready_check(struct pm8001_hba_info
*pm8001_ha
)
758 u32 regVal
, regVal1
, regVal2
;
759 if (mpi_uninit_check(pm8001_ha
) != 0) {
760 PM8001_FAIL_DBG(pm8001_ha
,
761 pm8001_printk("MPI state is not ready\n"));
764 /* read the scratch pad 2 register bit 2 */
765 regVal
= pm8001_cr32(pm8001_ha
, 0, MSGU_SCRATCH_PAD_2
)
766 & SCRATCH_PAD2_FWRDY_RST
;
767 if (regVal
== SCRATCH_PAD2_FWRDY_RST
) {
768 PM8001_INIT_DBG(pm8001_ha
,
769 pm8001_printk("Firmware is ready for reset .\n"));
772 /* Trigger NMI twice via RB6 */
773 spin_lock_irqsave(&pm8001_ha
->lock
, flags
);
774 if (-1 == pm8001_bar4_shift(pm8001_ha
, RB6_ACCESS_REG
)) {
775 spin_unlock_irqrestore(&pm8001_ha
->lock
, flags
);
776 PM8001_FAIL_DBG(pm8001_ha
,
777 pm8001_printk("Shift Bar4 to 0x%x failed\n",
781 pm8001_cw32(pm8001_ha
, 2, SPC_RB6_OFFSET
,
782 RB6_MAGIC_NUMBER_RST
);
783 pm8001_cw32(pm8001_ha
, 2, SPC_RB6_OFFSET
, RB6_MAGIC_NUMBER_RST
);
784 /* wait for 100 ms */
786 regVal
= pm8001_cr32(pm8001_ha
, 0, MSGU_SCRATCH_PAD_2
) &
787 SCRATCH_PAD2_FWRDY_RST
;
788 if (regVal
!= SCRATCH_PAD2_FWRDY_RST
) {
789 regVal1
= pm8001_cr32(pm8001_ha
, 0, MSGU_SCRATCH_PAD_1
);
790 regVal2
= pm8001_cr32(pm8001_ha
, 0, MSGU_SCRATCH_PAD_2
);
791 PM8001_FAIL_DBG(pm8001_ha
,
792 pm8001_printk("TIMEOUT:MSGU_SCRATCH_PAD1"
793 "=0x%x, MSGU_SCRATCH_PAD2=0x%x\n",
795 PM8001_FAIL_DBG(pm8001_ha
,
796 pm8001_printk("SCRATCH_PAD0 value = 0x%x\n",
797 pm8001_cr32(pm8001_ha
, 0, MSGU_SCRATCH_PAD_0
)));
798 PM8001_FAIL_DBG(pm8001_ha
,
799 pm8001_printk("SCRATCH_PAD3 value = 0x%x\n",
800 pm8001_cr32(pm8001_ha
, 0, MSGU_SCRATCH_PAD_3
)));
801 spin_unlock_irqrestore(&pm8001_ha
->lock
, flags
);
804 spin_unlock_irqrestore(&pm8001_ha
->lock
, flags
);
810 * pm8001_chip_soft_rst - soft reset the PM8001 chip, so that the clear all
811 * the FW register status to the originated status.
812 * @pm8001_ha: our hba card information
815 pm8001_chip_soft_rst(struct pm8001_hba_info
*pm8001_ha
)
817 u32 regVal
, toggleVal
;
819 u32 regVal1
, regVal2
, regVal3
;
820 u32 signature
= 0x252acbcd; /* for host scratch pad0 */
823 /* step1: Check FW is ready for soft reset */
824 if (soft_reset_ready_check(pm8001_ha
) != 0) {
825 PM8001_FAIL_DBG(pm8001_ha
, pm8001_printk("FW is not ready\n"));
829 /* step 2: clear NMI status register on AAP1 and IOP, write the same
831 /* map 0x60000 to BAR4(0x20), BAR2(win) */
832 spin_lock_irqsave(&pm8001_ha
->lock
, flags
);
833 if (-1 == pm8001_bar4_shift(pm8001_ha
, MBIC_AAP1_ADDR_BASE
)) {
834 spin_unlock_irqrestore(&pm8001_ha
->lock
, flags
);
835 PM8001_FAIL_DBG(pm8001_ha
,
836 pm8001_printk("Shift Bar4 to 0x%x failed\n",
837 MBIC_AAP1_ADDR_BASE
));
840 regVal
= pm8001_cr32(pm8001_ha
, 2, MBIC_NMI_ENABLE_VPE0_IOP
);
841 PM8001_INIT_DBG(pm8001_ha
,
842 pm8001_printk("MBIC - NMI Enable VPE0 (IOP)= 0x%x\n", regVal
));
843 pm8001_cw32(pm8001_ha
, 2, MBIC_NMI_ENABLE_VPE0_IOP
, 0x0);
844 /* map 0x70000 to BAR4(0x20), BAR2(win) */
845 if (-1 == pm8001_bar4_shift(pm8001_ha
, MBIC_IOP_ADDR_BASE
)) {
846 spin_unlock_irqrestore(&pm8001_ha
->lock
, flags
);
847 PM8001_FAIL_DBG(pm8001_ha
,
848 pm8001_printk("Shift Bar4 to 0x%x failed\n",
849 MBIC_IOP_ADDR_BASE
));
852 regVal
= pm8001_cr32(pm8001_ha
, 2, MBIC_NMI_ENABLE_VPE0_AAP1
);
853 PM8001_INIT_DBG(pm8001_ha
,
854 pm8001_printk("MBIC - NMI Enable VPE0 (AAP1)= 0x%x\n", regVal
));
855 pm8001_cw32(pm8001_ha
, 2, MBIC_NMI_ENABLE_VPE0_AAP1
, 0x0);
857 regVal
= pm8001_cr32(pm8001_ha
, 1, PCIE_EVENT_INTERRUPT_ENABLE
);
858 PM8001_INIT_DBG(pm8001_ha
,
859 pm8001_printk("PCIE -Event Interrupt Enable = 0x%x\n", regVal
));
860 pm8001_cw32(pm8001_ha
, 1, PCIE_EVENT_INTERRUPT_ENABLE
, 0x0);
862 regVal
= pm8001_cr32(pm8001_ha
, 1, PCIE_EVENT_INTERRUPT
);
863 PM8001_INIT_DBG(pm8001_ha
,
864 pm8001_printk("PCIE - Event Interrupt = 0x%x\n", regVal
));
865 pm8001_cw32(pm8001_ha
, 1, PCIE_EVENT_INTERRUPT
, regVal
);
867 regVal
= pm8001_cr32(pm8001_ha
, 1, PCIE_ERROR_INTERRUPT_ENABLE
);
868 PM8001_INIT_DBG(pm8001_ha
,
869 pm8001_printk("PCIE -Error Interrupt Enable = 0x%x\n", regVal
));
870 pm8001_cw32(pm8001_ha
, 1, PCIE_ERROR_INTERRUPT_ENABLE
, 0x0);
872 regVal
= pm8001_cr32(pm8001_ha
, 1, PCIE_ERROR_INTERRUPT
);
873 PM8001_INIT_DBG(pm8001_ha
,
874 pm8001_printk("PCIE - Error Interrupt = 0x%x\n", regVal
));
875 pm8001_cw32(pm8001_ha
, 1, PCIE_ERROR_INTERRUPT
, regVal
);
877 /* read the scratch pad 1 register bit 2 */
878 regVal
= pm8001_cr32(pm8001_ha
, 0, MSGU_SCRATCH_PAD_1
)
880 toggleVal
= regVal
^ SCRATCH_PAD1_RST
;
882 /* set signature in host scratch pad0 register to tell SPC that the
883 host performs the soft reset */
884 pm8001_cw32(pm8001_ha
, 0, MSGU_HOST_SCRATCH_PAD_0
, signature
);
886 /* read required registers for confirmming */
887 /* map 0x0700000 to BAR4(0x20), BAR2(win) */
888 if (-1 == pm8001_bar4_shift(pm8001_ha
, GSM_ADDR_BASE
)) {
889 spin_unlock_irqrestore(&pm8001_ha
->lock
, flags
);
890 PM8001_FAIL_DBG(pm8001_ha
,
891 pm8001_printk("Shift Bar4 to 0x%x failed\n",
895 PM8001_INIT_DBG(pm8001_ha
,
896 pm8001_printk("GSM 0x0(0x00007b88)-GSM Configuration and"
898 pm8001_cr32(pm8001_ha
, 2, GSM_CONFIG_RESET
)));
900 /* step 3: host read GSM Configuration and Reset register */
901 regVal
= pm8001_cr32(pm8001_ha
, 2, GSM_CONFIG_RESET
);
902 /* Put those bits to low */
903 /* GSM XCBI offset = 0x70 0000
904 0x00 Bit 13 COM_SLV_SW_RSTB 1
905 0x00 Bit 12 QSSP_SW_RSTB 1
906 0x00 Bit 11 RAAE_SW_RSTB 1
907 0x00 Bit 9 RB_1_SW_RSTB 1
908 0x00 Bit 8 SM_SW_RSTB 1
910 regVal
&= ~(0x00003b00);
911 /* host write GSM Configuration and Reset register */
912 pm8001_cw32(pm8001_ha
, 2, GSM_CONFIG_RESET
, regVal
);
913 PM8001_INIT_DBG(pm8001_ha
,
914 pm8001_printk("GSM 0x0 (0x00007b88 ==> 0x00004088) - GSM "
915 "Configuration and Reset is set to = 0x%x\n",
916 pm8001_cr32(pm8001_ha
, 2, GSM_CONFIG_RESET
)));
919 /* disable GSM - Read Address Parity Check */
920 regVal1
= pm8001_cr32(pm8001_ha
, 2, GSM_READ_ADDR_PARITY_CHECK
);
921 PM8001_INIT_DBG(pm8001_ha
,
922 pm8001_printk("GSM 0x700038 - Read Address Parity Check "
923 "Enable = 0x%x\n", regVal1
));
924 pm8001_cw32(pm8001_ha
, 2, GSM_READ_ADDR_PARITY_CHECK
, 0x0);
925 PM8001_INIT_DBG(pm8001_ha
,
926 pm8001_printk("GSM 0x700038 - Read Address Parity Check Enable"
927 "is set to = 0x%x\n",
928 pm8001_cr32(pm8001_ha
, 2, GSM_READ_ADDR_PARITY_CHECK
)));
930 /* disable GSM - Write Address Parity Check */
931 regVal2
= pm8001_cr32(pm8001_ha
, 2, GSM_WRITE_ADDR_PARITY_CHECK
);
932 PM8001_INIT_DBG(pm8001_ha
,
933 pm8001_printk("GSM 0x700040 - Write Address Parity Check"
934 " Enable = 0x%x\n", regVal2
));
935 pm8001_cw32(pm8001_ha
, 2, GSM_WRITE_ADDR_PARITY_CHECK
, 0x0);
936 PM8001_INIT_DBG(pm8001_ha
,
937 pm8001_printk("GSM 0x700040 - Write Address Parity Check "
938 "Enable is set to = 0x%x\n",
939 pm8001_cr32(pm8001_ha
, 2, GSM_WRITE_ADDR_PARITY_CHECK
)));
941 /* disable GSM - Write Data Parity Check */
942 regVal3
= pm8001_cr32(pm8001_ha
, 2, GSM_WRITE_DATA_PARITY_CHECK
);
943 PM8001_INIT_DBG(pm8001_ha
,
944 pm8001_printk("GSM 0x300048 - Write Data Parity Check"
945 " Enable = 0x%x\n", regVal3
));
946 pm8001_cw32(pm8001_ha
, 2, GSM_WRITE_DATA_PARITY_CHECK
, 0x0);
947 PM8001_INIT_DBG(pm8001_ha
,
948 pm8001_printk("GSM 0x300048 - Write Data Parity Check Enable"
949 "is set to = 0x%x\n",
950 pm8001_cr32(pm8001_ha
, 2, GSM_WRITE_DATA_PARITY_CHECK
)));
952 /* step 5: delay 10 usec */
954 /* step 5-b: set GPIO-0 output control to tristate anyway */
955 if (-1 == pm8001_bar4_shift(pm8001_ha
, GPIO_ADDR_BASE
)) {
956 spin_unlock_irqrestore(&pm8001_ha
->lock
, flags
);
957 PM8001_INIT_DBG(pm8001_ha
,
958 pm8001_printk("Shift Bar4 to 0x%x failed\n",
962 regVal
= pm8001_cr32(pm8001_ha
, 2, GPIO_GPIO_0_0UTPUT_CTL_OFFSET
);
963 PM8001_INIT_DBG(pm8001_ha
,
964 pm8001_printk("GPIO Output Control Register:"
965 " = 0x%x\n", regVal
));
966 /* set GPIO-0 output control to tri-state */
967 regVal
&= 0xFFFFFFFC;
968 pm8001_cw32(pm8001_ha
, 2, GPIO_GPIO_0_0UTPUT_CTL_OFFSET
, regVal
);
970 /* Step 6: Reset the IOP and AAP1 */
971 /* map 0x00000 to BAR4(0x20), BAR2(win) */
972 if (-1 == pm8001_bar4_shift(pm8001_ha
, SPC_TOP_LEVEL_ADDR_BASE
)) {
973 spin_unlock_irqrestore(&pm8001_ha
->lock
, flags
);
974 PM8001_FAIL_DBG(pm8001_ha
,
975 pm8001_printk("SPC Shift Bar4 to 0x%x failed\n",
976 SPC_TOP_LEVEL_ADDR_BASE
));
979 regVal
= pm8001_cr32(pm8001_ha
, 2, SPC_REG_RESET
);
980 PM8001_INIT_DBG(pm8001_ha
,
981 pm8001_printk("Top Register before resetting IOP/AAP1"
982 ":= 0x%x\n", regVal
));
983 regVal
&= ~(SPC_REG_RESET_PCS_IOP_SS
| SPC_REG_RESET_PCS_AAP1_SS
);
984 pm8001_cw32(pm8001_ha
, 2, SPC_REG_RESET
, regVal
);
986 /* step 7: Reset the BDMA/OSSP */
987 regVal
= pm8001_cr32(pm8001_ha
, 2, SPC_REG_RESET
);
988 PM8001_INIT_DBG(pm8001_ha
,
989 pm8001_printk("Top Register before resetting BDMA/OSSP"
990 ": = 0x%x\n", regVal
));
991 regVal
&= ~(SPC_REG_RESET_BDMA_CORE
| SPC_REG_RESET_OSSP
);
992 pm8001_cw32(pm8001_ha
, 2, SPC_REG_RESET
, regVal
);
994 /* step 8: delay 10 usec */
997 /* step 9: bring the BDMA and OSSP out of reset */
998 regVal
= pm8001_cr32(pm8001_ha
, 2, SPC_REG_RESET
);
999 PM8001_INIT_DBG(pm8001_ha
,
1000 pm8001_printk("Top Register before bringing up BDMA/OSSP"
1001 ":= 0x%x\n", regVal
));
1002 regVal
|= (SPC_REG_RESET_BDMA_CORE
| SPC_REG_RESET_OSSP
);
1003 pm8001_cw32(pm8001_ha
, 2, SPC_REG_RESET
, regVal
);
1005 /* step 10: delay 10 usec */
1008 /* step 11: reads and sets the GSM Configuration and Reset Register */
1009 /* map 0x0700000 to BAR4(0x20), BAR2(win) */
1010 if (-1 == pm8001_bar4_shift(pm8001_ha
, GSM_ADDR_BASE
)) {
1011 spin_unlock_irqrestore(&pm8001_ha
->lock
, flags
);
1012 PM8001_FAIL_DBG(pm8001_ha
,
1013 pm8001_printk("SPC Shift Bar4 to 0x%x failed\n",
1017 PM8001_INIT_DBG(pm8001_ha
,
1018 pm8001_printk("GSM 0x0 (0x00007b88)-GSM Configuration and "
1019 "Reset = 0x%x\n", pm8001_cr32(pm8001_ha
, 2, GSM_CONFIG_RESET
)));
1020 regVal
= pm8001_cr32(pm8001_ha
, 2, GSM_CONFIG_RESET
);
1021 /* Put those bits to high */
1022 /* GSM XCBI offset = 0x70 0000
1023 0x00 Bit 13 COM_SLV_SW_RSTB 1
1024 0x00 Bit 12 QSSP_SW_RSTB 1
1025 0x00 Bit 11 RAAE_SW_RSTB 1
1026 0x00 Bit 9 RB_1_SW_RSTB 1
1027 0x00 Bit 8 SM_SW_RSTB 1
1029 regVal
|= (GSM_CONFIG_RESET_VALUE
);
1030 pm8001_cw32(pm8001_ha
, 2, GSM_CONFIG_RESET
, regVal
);
1031 PM8001_INIT_DBG(pm8001_ha
,
1032 pm8001_printk("GSM (0x00004088 ==> 0x00007b88) - GSM"
1033 " Configuration and Reset is set to = 0x%x\n",
1034 pm8001_cr32(pm8001_ha
, 2, GSM_CONFIG_RESET
)));
1036 /* step 12: Restore GSM - Read Address Parity Check */
1037 regVal
= pm8001_cr32(pm8001_ha
, 2, GSM_READ_ADDR_PARITY_CHECK
);
1038 /* just for debugging */
1039 PM8001_INIT_DBG(pm8001_ha
,
1040 pm8001_printk("GSM 0x700038 - Read Address Parity Check Enable"
1041 " = 0x%x\n", regVal
));
1042 pm8001_cw32(pm8001_ha
, 2, GSM_READ_ADDR_PARITY_CHECK
, regVal1
);
1043 PM8001_INIT_DBG(pm8001_ha
,
1044 pm8001_printk("GSM 0x700038 - Read Address Parity"
1045 " Check Enable is set to = 0x%x\n",
1046 pm8001_cr32(pm8001_ha
, 2, GSM_READ_ADDR_PARITY_CHECK
)));
1047 /* Restore GSM - Write Address Parity Check */
1048 regVal
= pm8001_cr32(pm8001_ha
, 2, GSM_WRITE_ADDR_PARITY_CHECK
);
1049 pm8001_cw32(pm8001_ha
, 2, GSM_WRITE_ADDR_PARITY_CHECK
, regVal2
);
1050 PM8001_INIT_DBG(pm8001_ha
,
1051 pm8001_printk("GSM 0x700040 - Write Address Parity Check"
1052 " Enable is set to = 0x%x\n",
1053 pm8001_cr32(pm8001_ha
, 2, GSM_WRITE_ADDR_PARITY_CHECK
)));
1054 /* Restore GSM - Write Data Parity Check */
1055 regVal
= pm8001_cr32(pm8001_ha
, 2, GSM_WRITE_DATA_PARITY_CHECK
);
1056 pm8001_cw32(pm8001_ha
, 2, GSM_WRITE_DATA_PARITY_CHECK
, regVal3
);
1057 PM8001_INIT_DBG(pm8001_ha
,
1058 pm8001_printk("GSM 0x700048 - Write Data Parity Check Enable"
1059 "is set to = 0x%x\n",
1060 pm8001_cr32(pm8001_ha
, 2, GSM_WRITE_DATA_PARITY_CHECK
)));
1062 /* step 13: bring the IOP and AAP1 out of reset */
1063 /* map 0x00000 to BAR4(0x20), BAR2(win) */
1064 if (-1 == pm8001_bar4_shift(pm8001_ha
, SPC_TOP_LEVEL_ADDR_BASE
)) {
1065 spin_unlock_irqrestore(&pm8001_ha
->lock
, flags
);
1066 PM8001_FAIL_DBG(pm8001_ha
,
1067 pm8001_printk("Shift Bar4 to 0x%x failed\n",
1068 SPC_TOP_LEVEL_ADDR_BASE
));
1071 regVal
= pm8001_cr32(pm8001_ha
, 2, SPC_REG_RESET
);
1072 regVal
|= (SPC_REG_RESET_PCS_IOP_SS
| SPC_REG_RESET_PCS_AAP1_SS
);
1073 pm8001_cw32(pm8001_ha
, 2, SPC_REG_RESET
, regVal
);
1075 /* step 14: delay 10 usec - Normal Mode */
1077 /* check Soft Reset Normal mode or Soft Reset HDA mode */
1078 if (signature
== SPC_SOFT_RESET_SIGNATURE
) {
1079 /* step 15 (Normal Mode): wait until scratch pad1 register
1081 max_wait_count
= 2 * 1000 * 1000;/* 2 sec */
1084 regVal
= pm8001_cr32(pm8001_ha
, 0, MSGU_SCRATCH_PAD_1
) &
1086 } while ((regVal
!= toggleVal
) && (--max_wait_count
));
1088 if (!max_wait_count
) {
1089 regVal
= pm8001_cr32(pm8001_ha
, 0,
1090 MSGU_SCRATCH_PAD_1
);
1091 PM8001_FAIL_DBG(pm8001_ha
,
1092 pm8001_printk("TIMEOUT : ToggleVal 0x%x,"
1093 "MSGU_SCRATCH_PAD1 = 0x%x\n",
1094 toggleVal
, regVal
));
1095 PM8001_FAIL_DBG(pm8001_ha
,
1096 pm8001_printk("SCRATCH_PAD0 value = 0x%x\n",
1097 pm8001_cr32(pm8001_ha
, 0,
1098 MSGU_SCRATCH_PAD_0
)));
1099 PM8001_FAIL_DBG(pm8001_ha
,
1100 pm8001_printk("SCRATCH_PAD2 value = 0x%x\n",
1101 pm8001_cr32(pm8001_ha
, 0,
1102 MSGU_SCRATCH_PAD_2
)));
1103 PM8001_FAIL_DBG(pm8001_ha
,
1104 pm8001_printk("SCRATCH_PAD3 value = 0x%x\n",
1105 pm8001_cr32(pm8001_ha
, 0,
1106 MSGU_SCRATCH_PAD_3
)));
1107 spin_unlock_irqrestore(&pm8001_ha
->lock
, flags
);
1111 /* step 16 (Normal) - Clear ODMR and ODCR */
1112 pm8001_cw32(pm8001_ha
, 0, MSGU_ODCR
, ODCR_CLEAR_ALL
);
1113 pm8001_cw32(pm8001_ha
, 0, MSGU_ODMR
, ODMR_CLEAR_ALL
);
1115 /* step 17 (Normal Mode): wait for the FW and IOP to get
1116 ready - 1 sec timeout */
1117 /* Wait for the SPC Configuration Table to be ready */
1118 if (check_fw_ready(pm8001_ha
) == -1) {
1119 regVal
= pm8001_cr32(pm8001_ha
, 0, MSGU_SCRATCH_PAD_1
);
1120 /* return error if MPI Configuration Table not ready */
1121 PM8001_INIT_DBG(pm8001_ha
,
1122 pm8001_printk("FW not ready SCRATCH_PAD1"
1123 " = 0x%x\n", regVal
));
1124 regVal
= pm8001_cr32(pm8001_ha
, 0, MSGU_SCRATCH_PAD_2
);
1125 /* return error if MPI Configuration Table not ready */
1126 PM8001_INIT_DBG(pm8001_ha
,
1127 pm8001_printk("FW not ready SCRATCH_PAD2"
1128 " = 0x%x\n", regVal
));
1129 PM8001_INIT_DBG(pm8001_ha
,
1130 pm8001_printk("SCRATCH_PAD0 value = 0x%x\n",
1131 pm8001_cr32(pm8001_ha
, 0,
1132 MSGU_SCRATCH_PAD_0
)));
1133 PM8001_INIT_DBG(pm8001_ha
,
1134 pm8001_printk("SCRATCH_PAD3 value = 0x%x\n",
1135 pm8001_cr32(pm8001_ha
, 0,
1136 MSGU_SCRATCH_PAD_3
)));
1137 spin_unlock_irqrestore(&pm8001_ha
->lock
, flags
);
1141 pm8001_bar4_shift(pm8001_ha
, 0);
1142 spin_unlock_irqrestore(&pm8001_ha
->lock
, flags
);
1144 PM8001_INIT_DBG(pm8001_ha
,
1145 pm8001_printk("SPC soft reset Complete\n"));
1149 static void pm8001_hw_chip_rst(struct pm8001_hba_info
*pm8001_ha
)
1153 PM8001_INIT_DBG(pm8001_ha
,
1154 pm8001_printk("chip reset start\n"));
1156 /* do SPC chip reset. */
1157 regVal
= pm8001_cr32(pm8001_ha
, 1, SPC_REG_RESET
);
1158 regVal
&= ~(SPC_REG_RESET_DEVICE
);
1159 pm8001_cw32(pm8001_ha
, 1, SPC_REG_RESET
, regVal
);
1164 /* bring chip reset out of reset */
1165 regVal
= pm8001_cr32(pm8001_ha
, 1, SPC_REG_RESET
);
1166 regVal
|= SPC_REG_RESET_DEVICE
;
1167 pm8001_cw32(pm8001_ha
, 1, SPC_REG_RESET
, regVal
);
1172 /* wait for 20 msec until the firmware gets reloaded */
1176 } while ((--i
) != 0);
1178 PM8001_INIT_DBG(pm8001_ha
,
1179 pm8001_printk("chip reset finished\n"));
1183 * pm8001_chip_iounmap - which maped when initialized.
1184 * @pm8001_ha: our hba card information
1186 void pm8001_chip_iounmap(struct pm8001_hba_info
*pm8001_ha
)
1188 s8 bar
, logical
= 0;
1189 for (bar
= 0; bar
< 6; bar
++) {
1191 ** logical BARs for SPC:
1192 ** bar 0 and 1 - logical BAR0
1193 ** bar 2 and 3 - logical BAR1
1194 ** bar4 - logical BAR2
1195 ** bar5 - logical BAR3
1196 ** Skip the appropriate assignments:
1198 if ((bar
== 1) || (bar
== 3))
1200 if (pm8001_ha
->io_mem
[logical
].memvirtaddr
) {
1201 iounmap(pm8001_ha
->io_mem
[logical
].memvirtaddr
);
1208 * pm8001_chip_interrupt_enable - enable PM8001 chip interrupt
1209 * @pm8001_ha: our hba card information
1212 pm8001_chip_intx_interrupt_enable(struct pm8001_hba_info
*pm8001_ha
)
1214 pm8001_cw32(pm8001_ha
, 0, MSGU_ODMR
, ODMR_CLEAR_ALL
);
1215 pm8001_cw32(pm8001_ha
, 0, MSGU_ODCR
, ODCR_CLEAR_ALL
);
1219 * pm8001_chip_intx_interrupt_disable- disable PM8001 chip interrupt
1220 * @pm8001_ha: our hba card information
1223 pm8001_chip_intx_interrupt_disable(struct pm8001_hba_info
*pm8001_ha
)
1225 pm8001_cw32(pm8001_ha
, 0, MSGU_ODMR
, ODMR_MASK_ALL
);
1229 * pm8001_chip_msix_interrupt_enable - enable PM8001 chip interrupt
1230 * @pm8001_ha: our hba card information
1233 pm8001_chip_msix_interrupt_enable(struct pm8001_hba_info
*pm8001_ha
,
1238 msi_index
= int_vec_idx
* MSIX_TABLE_ELEMENT_SIZE
;
1239 msi_index
+= MSIX_TABLE_BASE
;
1240 pm8001_cw32(pm8001_ha
, 0, msi_index
, MSIX_INTERRUPT_ENABLE
);
1241 value
= (1 << int_vec_idx
);
1242 pm8001_cw32(pm8001_ha
, 0, MSGU_ODCR
, value
);
1247 * pm8001_chip_msix_interrupt_disable - disable PM8001 chip interrupt
1248 * @pm8001_ha: our hba card information
1251 pm8001_chip_msix_interrupt_disable(struct pm8001_hba_info
*pm8001_ha
,
1255 msi_index
= int_vec_idx
* MSIX_TABLE_ELEMENT_SIZE
;
1256 msi_index
+= MSIX_TABLE_BASE
;
1257 pm8001_cw32(pm8001_ha
, 0, msi_index
, MSIX_INTERRUPT_DISABLE
);
1261 * pm8001_chip_interrupt_enable - enable PM8001 chip interrupt
1262 * @pm8001_ha: our hba card information
1265 pm8001_chip_interrupt_enable(struct pm8001_hba_info
*pm8001_ha
, u8 vec
)
1267 #ifdef PM8001_USE_MSIX
1268 pm8001_chip_msix_interrupt_enable(pm8001_ha
, 0);
1271 pm8001_chip_intx_interrupt_enable(pm8001_ha
);
1276 * pm8001_chip_intx_interrupt_disable- disable PM8001 chip interrupt
1277 * @pm8001_ha: our hba card information
1280 pm8001_chip_interrupt_disable(struct pm8001_hba_info
*pm8001_ha
, u8 vec
)
1282 #ifdef PM8001_USE_MSIX
1283 pm8001_chip_msix_interrupt_disable(pm8001_ha
, 0);
1286 pm8001_chip_intx_interrupt_disable(pm8001_ha
);
1291 * pm8001_mpi_msg_free_get - get the free message buffer for transfer
1293 * @circularQ: the inbound queue we want to transfer to HBA.
1294 * @messageSize: the message size of this transfer, normally it is 64 bytes
1295 * @messagePtr: the pointer to message.
1297 int pm8001_mpi_msg_free_get(struct inbound_queue_table
*circularQ
,
1298 u16 messageSize
, void **messagePtr
)
1300 u32 offset
, consumer_index
;
1301 struct mpi_msg_hdr
*msgHeader
;
1302 u8 bcCount
= 1; /* only support single buffer */
1304 /* Checks is the requested message size can be allocated in this queue*/
1305 if (messageSize
> IOMB_SIZE_SPCV
) {
1310 /* Stores the new consumer index */
1311 consumer_index
= pm8001_read_32(circularQ
->ci_virt
);
1312 circularQ
->consumer_index
= cpu_to_le32(consumer_index
);
1313 if (((circularQ
->producer_idx
+ bcCount
) % PM8001_MPI_QUEUE
) ==
1314 le32_to_cpu(circularQ
->consumer_index
)) {
1318 /* get memory IOMB buffer address */
1319 offset
= circularQ
->producer_idx
* messageSize
;
1320 /* increment to next bcCount element */
1321 circularQ
->producer_idx
= (circularQ
->producer_idx
+ bcCount
)
1323 /* Adds that distance to the base of the region virtual address plus
1324 the message header size*/
1325 msgHeader
= (struct mpi_msg_hdr
*)(circularQ
->base_virt
+ offset
);
1326 *messagePtr
= ((void *)msgHeader
) + sizeof(struct mpi_msg_hdr
);
1331 * pm8001_mpi_build_cmd- build the message queue for transfer, update the PI to
1332 * FW to tell the fw to get this message from IOMB.
1333 * @pm8001_ha: our hba card information
1334 * @circularQ: the inbound queue we want to transfer to HBA.
1335 * @opCode: the operation code represents commands which LLDD and fw recognized.
1336 * @payload: the command payload of each operation command.
1338 int pm8001_mpi_build_cmd(struct pm8001_hba_info
*pm8001_ha
,
1339 struct inbound_queue_table
*circularQ
,
1340 u32 opCode
, void *payload
, u32 responseQueue
)
1342 u32 Header
= 0, hpriority
= 0, bc
= 1, category
= 0x02;
1345 if (pm8001_mpi_msg_free_get(circularQ
, pm8001_ha
->iomb_size
,
1347 PM8001_IO_DBG(pm8001_ha
,
1348 pm8001_printk("No free mpi buffer\n"));
1352 /*Copy to the payload*/
1353 memcpy(pMessage
, payload
, (pm8001_ha
->iomb_size
-
1354 sizeof(struct mpi_msg_hdr
)));
1356 /*Build the header*/
1357 Header
= ((1 << 31) | (hpriority
<< 30) | ((bc
& 0x1f) << 24)
1358 | ((responseQueue
& 0x3F) << 16)
1359 | ((category
& 0xF) << 12) | (opCode
& 0xFFF));
1361 pm8001_write_32((pMessage
- 4), 0, cpu_to_le32(Header
));
1362 /*Update the PI to the firmware*/
1363 pm8001_cw32(pm8001_ha
, circularQ
->pi_pci_bar
,
1364 circularQ
->pi_offset
, circularQ
->producer_idx
);
1365 PM8001_IO_DBG(pm8001_ha
,
1366 pm8001_printk("INB Q %x OPCODE:%x , UPDATED PI=%d CI=%d\n",
1367 responseQueue
, opCode
, circularQ
->producer_idx
,
1368 circularQ
->consumer_index
));
1372 u32
pm8001_mpi_msg_free_set(struct pm8001_hba_info
*pm8001_ha
, void *pMsg
,
1373 struct outbound_queue_table
*circularQ
, u8 bc
)
1376 struct mpi_msg_hdr
*msgHeader
;
1377 struct mpi_msg_hdr
*pOutBoundMsgHeader
;
1379 msgHeader
= (struct mpi_msg_hdr
*)(pMsg
- sizeof(struct mpi_msg_hdr
));
1380 pOutBoundMsgHeader
= (struct mpi_msg_hdr
*)(circularQ
->base_virt
+
1381 circularQ
->consumer_idx
* pm8001_ha
->iomb_size
);
1382 if (pOutBoundMsgHeader
!= msgHeader
) {
1383 PM8001_FAIL_DBG(pm8001_ha
,
1384 pm8001_printk("consumer_idx = %d msgHeader = %p\n",
1385 circularQ
->consumer_idx
, msgHeader
));
1387 /* Update the producer index from SPC */
1388 producer_index
= pm8001_read_32(circularQ
->pi_virt
);
1389 circularQ
->producer_index
= cpu_to_le32(producer_index
);
1390 PM8001_FAIL_DBG(pm8001_ha
,
1391 pm8001_printk("consumer_idx = %d producer_index = %d"
1392 "msgHeader = %p\n", circularQ
->consumer_idx
,
1393 circularQ
->producer_index
, msgHeader
));
1396 /* free the circular queue buffer elements associated with the message*/
1397 circularQ
->consumer_idx
= (circularQ
->consumer_idx
+ bc
)
1399 /* update the CI of outbound queue */
1400 pm8001_cw32(pm8001_ha
, circularQ
->ci_pci_bar
, circularQ
->ci_offset
,
1401 circularQ
->consumer_idx
);
1402 /* Update the producer index from SPC*/
1403 producer_index
= pm8001_read_32(circularQ
->pi_virt
);
1404 circularQ
->producer_index
= cpu_to_le32(producer_index
);
1405 PM8001_IO_DBG(pm8001_ha
,
1406 pm8001_printk(" CI=%d PI=%d\n", circularQ
->consumer_idx
,
1407 circularQ
->producer_index
));
1412 * pm8001_mpi_msg_consume- get the MPI message from outbound queue
1414 * @pm8001_ha: our hba card information
1415 * @circularQ: the outbound queue table.
1416 * @messagePtr1: the message contents of this outbound message.
1417 * @pBC: the message size.
1419 u32
pm8001_mpi_msg_consume(struct pm8001_hba_info
*pm8001_ha
,
1420 struct outbound_queue_table
*circularQ
,
1421 void **messagePtr1
, u8
*pBC
)
1423 struct mpi_msg_hdr
*msgHeader
;
1424 __le32 msgHeader_tmp
;
1427 /* If there are not-yet-delivered messages ... */
1428 if (le32_to_cpu(circularQ
->producer_index
)
1429 != circularQ
->consumer_idx
) {
1430 /*Get the pointer to the circular queue buffer element*/
1431 msgHeader
= (struct mpi_msg_hdr
*)
1432 (circularQ
->base_virt
+
1433 circularQ
->consumer_idx
* pm8001_ha
->iomb_size
);
1435 header_tmp
= pm8001_read_32(msgHeader
);
1436 msgHeader_tmp
= cpu_to_le32(header_tmp
);
1437 if (0 != (le32_to_cpu(msgHeader_tmp
) & 0x80000000)) {
1438 if (OPC_OUB_SKIP_ENTRY
!=
1439 (le32_to_cpu(msgHeader_tmp
) & 0xfff)) {
1442 sizeof(struct mpi_msg_hdr
);
1443 *pBC
= (u8
)((le32_to_cpu(msgHeader_tmp
)
1445 PM8001_IO_DBG(pm8001_ha
,
1446 pm8001_printk(": CI=%d PI=%d "
1448 circularQ
->consumer_idx
,
1449 circularQ
->producer_index
,
1451 return MPI_IO_STATUS_SUCCESS
;
1453 circularQ
->consumer_idx
=
1454 (circularQ
->consumer_idx
+
1455 ((le32_to_cpu(msgHeader_tmp
)
1459 pm8001_write_32(msgHeader
, 0, 0);
1460 /* update the CI of outbound queue */
1461 pm8001_cw32(pm8001_ha
,
1462 circularQ
->ci_pci_bar
,
1463 circularQ
->ci_offset
,
1464 circularQ
->consumer_idx
);
1467 circularQ
->consumer_idx
=
1468 (circularQ
->consumer_idx
+
1469 ((le32_to_cpu(msgHeader_tmp
) >> 24) &
1470 0x1f)) % PM8001_MPI_QUEUE
;
1472 pm8001_write_32(msgHeader
, 0, 0);
1473 /* update the CI of outbound queue */
1474 pm8001_cw32(pm8001_ha
, circularQ
->ci_pci_bar
,
1475 circularQ
->ci_offset
,
1476 circularQ
->consumer_idx
);
1477 return MPI_IO_STATUS_FAIL
;
1481 void *pi_virt
= circularQ
->pi_virt
;
1482 /* Update the producer index from SPC */
1483 producer_index
= pm8001_read_32(pi_virt
);
1484 circularQ
->producer_index
= cpu_to_le32(producer_index
);
1486 } while (le32_to_cpu(circularQ
->producer_index
) !=
1487 circularQ
->consumer_idx
);
1488 /* while we don't have any more not-yet-delivered message */
1490 return MPI_IO_STATUS_BUSY
;
1493 void pm8001_work_fn(struct work_struct
*work
)
1495 struct pm8001_work
*pw
= container_of(work
, struct pm8001_work
, work
);
1496 struct pm8001_device
*pm8001_dev
;
1497 struct domain_device
*dev
;
1500 * So far, all users of this stash an associated structure here.
1501 * If we get here, and this pointer is null, then the action
1502 * was cancelled. This nullification happens when the device
1505 pm8001_dev
= pw
->data
; /* Most stash device structure */
1506 if ((pm8001_dev
== NULL
)
1507 || ((pw
->handler
!= IO_XFER_ERROR_BREAK
)
1508 && (pm8001_dev
->dev_type
== SAS_PHY_UNUSED
))) {
1513 switch (pw
->handler
) {
1514 case IO_XFER_ERROR_BREAK
:
1515 { /* This one stashes the sas_task instead */
1516 struct sas_task
*t
= (struct sas_task
*)pm8001_dev
;
1518 struct pm8001_ccb_info
*ccb
;
1519 struct pm8001_hba_info
*pm8001_ha
= pw
->pm8001_ha
;
1520 unsigned long flags
, flags1
;
1521 struct task_status_struct
*ts
;
1524 if (pm8001_query_task(t
) == TMF_RESP_FUNC_SUCC
)
1525 break; /* Task still on lu */
1526 spin_lock_irqsave(&pm8001_ha
->lock
, flags
);
1528 spin_lock_irqsave(&t
->task_state_lock
, flags1
);
1529 if (unlikely((t
->task_state_flags
& SAS_TASK_STATE_DONE
))) {
1530 spin_unlock_irqrestore(&t
->task_state_lock
, flags1
);
1531 spin_unlock_irqrestore(&pm8001_ha
->lock
, flags
);
1532 break; /* Task got completed by another */
1534 spin_unlock_irqrestore(&t
->task_state_lock
, flags1
);
1536 /* Search for a possible ccb that matches the task */
1537 for (i
= 0; ccb
= NULL
, i
< PM8001_MAX_CCB
; i
++) {
1538 ccb
= &pm8001_ha
->ccb_info
[i
];
1540 if ((tag
!= 0xFFFFFFFF) && (ccb
->task
== t
))
1544 spin_unlock_irqrestore(&pm8001_ha
->lock
, flags
);
1545 break; /* Task got freed by another */
1547 ts
= &t
->task_status
;
1548 ts
->resp
= SAS_TASK_COMPLETE
;
1549 /* Force the midlayer to retry */
1550 ts
->stat
= SAS_QUEUE_FULL
;
1551 pm8001_dev
= ccb
->device
;
1553 pm8001_dev
->running_req
--;
1554 spin_lock_irqsave(&t
->task_state_lock
, flags1
);
1555 t
->task_state_flags
&= ~SAS_TASK_STATE_PENDING
;
1556 t
->task_state_flags
&= ~SAS_TASK_AT_INITIATOR
;
1557 t
->task_state_flags
|= SAS_TASK_STATE_DONE
;
1558 if (unlikely((t
->task_state_flags
& SAS_TASK_STATE_ABORTED
))) {
1559 spin_unlock_irqrestore(&t
->task_state_lock
, flags1
);
1560 PM8001_FAIL_DBG(pm8001_ha
, pm8001_printk("task 0x%p"
1561 " done with event 0x%x resp 0x%x stat 0x%x but"
1562 " aborted by upper layer!\n",
1563 t
, pw
->handler
, ts
->resp
, ts
->stat
));
1564 pm8001_ccb_task_free(pm8001_ha
, t
, ccb
, tag
);
1565 spin_unlock_irqrestore(&pm8001_ha
->lock
, flags
);
1567 spin_unlock_irqrestore(&t
->task_state_lock
, flags1
);
1568 pm8001_ccb_task_free(pm8001_ha
, t
, ccb
, tag
);
1569 mb();/* in order to force CPU ordering */
1570 spin_unlock_irqrestore(&pm8001_ha
->lock
, flags
);
1574 case IO_XFER_OPEN_RETRY_TIMEOUT
:
1575 { /* This one stashes the sas_task instead */
1576 struct sas_task
*t
= (struct sas_task
*)pm8001_dev
;
1578 struct pm8001_ccb_info
*ccb
;
1579 struct pm8001_hba_info
*pm8001_ha
= pw
->pm8001_ha
;
1580 unsigned long flags
, flags1
;
1583 PM8001_IO_DBG(pm8001_ha
,
1584 pm8001_printk("IO_XFER_OPEN_RETRY_TIMEOUT\n"));
1586 ret
= pm8001_query_task(t
);
1588 PM8001_IO_DBG(pm8001_ha
,
1590 case TMF_RESP_FUNC_SUCC
:
1591 pm8001_printk("...Task on lu\n");
1594 case TMF_RESP_FUNC_COMPLETE
:
1595 pm8001_printk("...Task NOT on lu\n");
1599 pm8001_printk("...query task failed!!!\n");
1603 spin_lock_irqsave(&pm8001_ha
->lock
, flags
);
1605 spin_lock_irqsave(&t
->task_state_lock
, flags1
);
1607 if (unlikely((t
->task_state_flags
& SAS_TASK_STATE_DONE
))) {
1608 spin_unlock_irqrestore(&t
->task_state_lock
, flags1
);
1609 spin_unlock_irqrestore(&pm8001_ha
->lock
, flags
);
1610 if (ret
== TMF_RESP_FUNC_SUCC
) /* task on lu */
1611 (void)pm8001_abort_task(t
);
1612 break; /* Task got completed by another */
1615 spin_unlock_irqrestore(&t
->task_state_lock
, flags1
);
1617 /* Search for a possible ccb that matches the task */
1618 for (i
= 0; ccb
= NULL
, i
< PM8001_MAX_CCB
; i
++) {
1619 ccb
= &pm8001_ha
->ccb_info
[i
];
1621 if ((tag
!= 0xFFFFFFFF) && (ccb
->task
== t
))
1625 spin_unlock_irqrestore(&pm8001_ha
->lock
, flags
);
1626 if (ret
== TMF_RESP_FUNC_SUCC
) /* task on lu */
1627 (void)pm8001_abort_task(t
);
1628 break; /* Task got freed by another */
1631 pm8001_dev
= ccb
->device
;
1632 dev
= pm8001_dev
->sas_device
;
1635 case TMF_RESP_FUNC_SUCC
: /* task on lu */
1636 ccb
->open_retry
= 1; /* Snub completion */
1637 spin_unlock_irqrestore(&pm8001_ha
->lock
, flags
);
1638 ret
= pm8001_abort_task(t
);
1639 ccb
->open_retry
= 0;
1641 case TMF_RESP_FUNC_SUCC
:
1642 case TMF_RESP_FUNC_COMPLETE
:
1644 default: /* device misbehavior */
1645 ret
= TMF_RESP_FUNC_FAILED
;
1646 PM8001_IO_DBG(pm8001_ha
,
1647 pm8001_printk("...Reset phy\n"));
1648 pm8001_I_T_nexus_reset(dev
);
1653 case TMF_RESP_FUNC_COMPLETE
: /* task not on lu */
1654 spin_unlock_irqrestore(&pm8001_ha
->lock
, flags
);
1655 /* Do we need to abort the task locally? */
1658 default: /* device misbehavior */
1659 spin_unlock_irqrestore(&pm8001_ha
->lock
, flags
);
1660 ret
= TMF_RESP_FUNC_FAILED
;
1661 PM8001_IO_DBG(pm8001_ha
,
1662 pm8001_printk("...Reset phy\n"));
1663 pm8001_I_T_nexus_reset(dev
);
1666 if (ret
== TMF_RESP_FUNC_FAILED
)
1668 pm8001_open_reject_retry(pm8001_ha
, t
, pm8001_dev
);
1669 PM8001_IO_DBG(pm8001_ha
, pm8001_printk("...Complete\n"));
1671 case IO_OPEN_CNX_ERROR_IT_NEXUS_LOSS
:
1672 dev
= pm8001_dev
->sas_device
;
1673 pm8001_I_T_nexus_event_handler(dev
);
1675 case IO_OPEN_CNX_ERROR_STP_RESOURCES_BUSY
:
1676 dev
= pm8001_dev
->sas_device
;
1677 pm8001_I_T_nexus_reset(dev
);
1679 case IO_DS_IN_ERROR
:
1680 dev
= pm8001_dev
->sas_device
;
1681 pm8001_I_T_nexus_reset(dev
);
1683 case IO_DS_NON_OPERATIONAL
:
1684 dev
= pm8001_dev
->sas_device
;
1685 pm8001_I_T_nexus_reset(dev
);
1691 int pm8001_handle_event(struct pm8001_hba_info
*pm8001_ha
, void *data
,
1694 struct pm8001_work
*pw
;
1697 pw
= kmalloc(sizeof(struct pm8001_work
), GFP_ATOMIC
);
1699 pw
->pm8001_ha
= pm8001_ha
;
1701 pw
->handler
= handler
;
1702 INIT_WORK(&pw
->work
, pm8001_work_fn
);
1703 queue_work(pm8001_wq
, &pw
->work
);
1710 static void pm8001_send_abort_all(struct pm8001_hba_info
*pm8001_ha
,
1711 struct pm8001_device
*pm8001_ha_dev
)
1715 struct pm8001_ccb_info
*ccb
;
1716 struct sas_task
*task
= NULL
;
1717 struct task_abort_req task_abort
;
1718 struct inbound_queue_table
*circularQ
;
1719 u32 opc
= OPC_INB_SATA_ABORT
;
1722 if (!pm8001_ha_dev
) {
1723 PM8001_FAIL_DBG(pm8001_ha
, pm8001_printk("dev is null\n"));
1727 task
= sas_alloc_slow_task(GFP_ATOMIC
);
1730 PM8001_FAIL_DBG(pm8001_ha
, pm8001_printk("cannot "
1731 "allocate task\n"));
1735 task
->task_done
= pm8001_task_done
;
1737 res
= pm8001_tag_alloc(pm8001_ha
, &ccb_tag
);
1741 ccb
= &pm8001_ha
->ccb_info
[ccb_tag
];
1742 ccb
->device
= pm8001_ha_dev
;
1743 ccb
->ccb_tag
= ccb_tag
;
1746 circularQ
= &pm8001_ha
->inbnd_q_tbl
[0];
1748 memset(&task_abort
, 0, sizeof(task_abort
));
1749 task_abort
.abort_all
= cpu_to_le32(1);
1750 task_abort
.device_id
= cpu_to_le32(pm8001_ha_dev
->device_id
);
1751 task_abort
.tag
= cpu_to_le32(ccb_tag
);
1753 ret
= pm8001_mpi_build_cmd(pm8001_ha
, circularQ
, opc
, &task_abort
, 0);
1755 pm8001_tag_free(pm8001_ha
, ccb_tag
);
1759 static void pm8001_send_read_log(struct pm8001_hba_info
*pm8001_ha
,
1760 struct pm8001_device
*pm8001_ha_dev
)
1762 struct sata_start_req sata_cmd
;
1765 struct pm8001_ccb_info
*ccb
;
1766 struct sas_task
*task
= NULL
;
1767 struct host_to_dev_fis fis
;
1768 struct domain_device
*dev
;
1769 struct inbound_queue_table
*circularQ
;
1770 u32 opc
= OPC_INB_SATA_HOST_OPSTART
;
1772 task
= sas_alloc_slow_task(GFP_ATOMIC
);
1775 PM8001_FAIL_DBG(pm8001_ha
,
1776 pm8001_printk("cannot allocate task !!!\n"));
1779 task
->task_done
= pm8001_task_done
;
1781 res
= pm8001_tag_alloc(pm8001_ha
, &ccb_tag
);
1783 sas_free_task(task
);
1784 PM8001_FAIL_DBG(pm8001_ha
,
1785 pm8001_printk("cannot allocate tag !!!\n"));
1789 /* allocate domain device by ourselves as libsas
1790 * is not going to provide any
1792 dev
= kzalloc(sizeof(struct domain_device
), GFP_ATOMIC
);
1794 sas_free_task(task
);
1795 pm8001_tag_free(pm8001_ha
, ccb_tag
);
1796 PM8001_FAIL_DBG(pm8001_ha
,
1797 pm8001_printk("Domain device cannot be allocated\n"));
1801 task
->dev
->lldd_dev
= pm8001_ha_dev
;
1803 ccb
= &pm8001_ha
->ccb_info
[ccb_tag
];
1804 ccb
->device
= pm8001_ha_dev
;
1805 ccb
->ccb_tag
= ccb_tag
;
1807 pm8001_ha_dev
->id
|= NCQ_READ_LOG_FLAG
;
1808 pm8001_ha_dev
->id
|= NCQ_2ND_RLE_FLAG
;
1810 memset(&sata_cmd
, 0, sizeof(sata_cmd
));
1811 circularQ
= &pm8001_ha
->inbnd_q_tbl
[0];
1813 /* construct read log FIS */
1814 memset(&fis
, 0, sizeof(struct host_to_dev_fis
));
1815 fis
.fis_type
= 0x27;
1817 fis
.command
= ATA_CMD_READ_LOG_EXT
;
1819 fis
.sector_count
= 0x1;
1821 sata_cmd
.tag
= cpu_to_le32(ccb_tag
);
1822 sata_cmd
.device_id
= cpu_to_le32(pm8001_ha_dev
->device_id
);
1823 sata_cmd
.ncqtag_atap_dir_m
|= ((0x1 << 7) | (0x5 << 9));
1824 memcpy(&sata_cmd
.sata_fis
, &fis
, sizeof(struct host_to_dev_fis
));
1826 res
= pm8001_mpi_build_cmd(pm8001_ha
, circularQ
, opc
, &sata_cmd
, 0);
1828 sas_free_task(task
);
1829 pm8001_tag_free(pm8001_ha
, ccb_tag
);
1835 * mpi_ssp_completion- process the event that FW response to the SSP request.
1836 * @pm8001_ha: our hba card information
1837 * @piomb: the message contents of this outbound message.
1839 * When FW has completed a ssp request for example a IO request, after it has
1840 * filled the SG data with the data, it will trigger this event represent
1841 * that he has finished the job,please check the coresponding buffer.
1842 * So we will tell the caller who maybe waiting the result to tell upper layer
1843 * that the task has been finished.
1846 mpi_ssp_completion(struct pm8001_hba_info
*pm8001_ha
, void *piomb
)
1849 struct pm8001_ccb_info
*ccb
;
1850 unsigned long flags
;
1854 struct ssp_completion_resp
*psspPayload
;
1855 struct task_status_struct
*ts
;
1856 struct ssp_response_iu
*iu
;
1857 struct pm8001_device
*pm8001_dev
;
1858 psspPayload
= (struct ssp_completion_resp
*)(piomb
+ 4);
1859 status
= le32_to_cpu(psspPayload
->status
);
1860 tag
= le32_to_cpu(psspPayload
->tag
);
1861 ccb
= &pm8001_ha
->ccb_info
[tag
];
1862 if ((status
== IO_ABORTED
) && ccb
->open_retry
) {
1863 /* Being completed by another */
1864 ccb
->open_retry
= 0;
1867 pm8001_dev
= ccb
->device
;
1868 param
= le32_to_cpu(psspPayload
->param
);
1872 if (status
&& status
!= IO_UNDERFLOW
)
1873 PM8001_FAIL_DBG(pm8001_ha
,
1874 pm8001_printk("sas IO status 0x%x\n", status
));
1875 if (unlikely(!t
|| !t
->lldd_task
|| !t
->dev
))
1877 ts
= &t
->task_status
;
1878 /* Print sas address of IO failed device */
1879 if ((status
!= IO_SUCCESS
) && (status
!= IO_OVERFLOW
) &&
1880 (status
!= IO_UNDERFLOW
))
1881 PM8001_FAIL_DBG(pm8001_ha
,
1882 pm8001_printk("SAS Address of IO Failure Drive:"
1883 "%016llx", SAS_ADDR(t
->dev
->sas_addr
)));
1887 PM8001_IO_DBG(pm8001_ha
, pm8001_printk("IO_SUCCESS"
1888 ",param = %d\n", param
));
1890 ts
->resp
= SAS_TASK_COMPLETE
;
1891 ts
->stat
= SAM_STAT_GOOD
;
1893 ts
->resp
= SAS_TASK_COMPLETE
;
1894 ts
->stat
= SAS_PROTO_RESPONSE
;
1895 ts
->residual
= param
;
1896 iu
= &psspPayload
->ssp_resp_iu
;
1897 sas_ssp_task_response(pm8001_ha
->dev
, t
, iu
);
1900 pm8001_dev
->running_req
--;
1903 PM8001_IO_DBG(pm8001_ha
,
1904 pm8001_printk("IO_ABORTED IOMB Tag\n"));
1905 ts
->resp
= SAS_TASK_COMPLETE
;
1906 ts
->stat
= SAS_ABORTED_TASK
;
1909 /* SSP Completion with error */
1910 PM8001_IO_DBG(pm8001_ha
, pm8001_printk("IO_UNDERFLOW"
1911 ",param = %d\n", param
));
1912 ts
->resp
= SAS_TASK_COMPLETE
;
1913 ts
->stat
= SAS_DATA_UNDERRUN
;
1914 ts
->residual
= param
;
1916 pm8001_dev
->running_req
--;
1919 PM8001_IO_DBG(pm8001_ha
,
1920 pm8001_printk("IO_NO_DEVICE\n"));
1921 ts
->resp
= SAS_TASK_UNDELIVERED
;
1922 ts
->stat
= SAS_PHY_DOWN
;
1924 case IO_XFER_ERROR_BREAK
:
1925 PM8001_IO_DBG(pm8001_ha
,
1926 pm8001_printk("IO_XFER_ERROR_BREAK\n"));
1927 ts
->resp
= SAS_TASK_COMPLETE
;
1928 ts
->stat
= SAS_OPEN_REJECT
;
1929 /* Force the midlayer to retry */
1930 ts
->open_rej_reason
= SAS_OREJ_RSVD_RETRY
;
1932 case IO_XFER_ERROR_PHY_NOT_READY
:
1933 PM8001_IO_DBG(pm8001_ha
,
1934 pm8001_printk("IO_XFER_ERROR_PHY_NOT_READY\n"));
1935 ts
->resp
= SAS_TASK_COMPLETE
;
1936 ts
->stat
= SAS_OPEN_REJECT
;
1937 ts
->open_rej_reason
= SAS_OREJ_RSVD_RETRY
;
1939 case IO_OPEN_CNX_ERROR_PROTOCOL_NOT_SUPPORTED
:
1940 PM8001_IO_DBG(pm8001_ha
,
1941 pm8001_printk("IO_OPEN_CNX_ERROR_PROTOCOL_NOT_SUPPORTED\n"));
1942 ts
->resp
= SAS_TASK_COMPLETE
;
1943 ts
->stat
= SAS_OPEN_REJECT
;
1944 ts
->open_rej_reason
= SAS_OREJ_EPROTO
;
1946 case IO_OPEN_CNX_ERROR_ZONE_VIOLATION
:
1947 PM8001_IO_DBG(pm8001_ha
,
1948 pm8001_printk("IO_OPEN_CNX_ERROR_ZONE_VIOLATION\n"));
1949 ts
->resp
= SAS_TASK_COMPLETE
;
1950 ts
->stat
= SAS_OPEN_REJECT
;
1951 ts
->open_rej_reason
= SAS_OREJ_UNKNOWN
;
1953 case IO_OPEN_CNX_ERROR_BREAK
:
1954 PM8001_IO_DBG(pm8001_ha
,
1955 pm8001_printk("IO_OPEN_CNX_ERROR_BREAK\n"));
1956 ts
->resp
= SAS_TASK_COMPLETE
;
1957 ts
->stat
= SAS_OPEN_REJECT
;
1958 ts
->open_rej_reason
= SAS_OREJ_RSVD_RETRY
;
1960 case IO_OPEN_CNX_ERROR_IT_NEXUS_LOSS
:
1961 PM8001_IO_DBG(pm8001_ha
,
1962 pm8001_printk("IO_OPEN_CNX_ERROR_IT_NEXUS_LOSS\n"));
1963 ts
->resp
= SAS_TASK_COMPLETE
;
1964 ts
->stat
= SAS_OPEN_REJECT
;
1965 ts
->open_rej_reason
= SAS_OREJ_UNKNOWN
;
1967 pm8001_handle_event(pm8001_ha
,
1969 IO_OPEN_CNX_ERROR_IT_NEXUS_LOSS
);
1971 case IO_OPEN_CNX_ERROR_BAD_DESTINATION
:
1972 PM8001_IO_DBG(pm8001_ha
,
1973 pm8001_printk("IO_OPEN_CNX_ERROR_BAD_DESTINATION\n"));
1974 ts
->resp
= SAS_TASK_COMPLETE
;
1975 ts
->stat
= SAS_OPEN_REJECT
;
1976 ts
->open_rej_reason
= SAS_OREJ_BAD_DEST
;
1978 case IO_OPEN_CNX_ERROR_CONNECTION_RATE_NOT_SUPPORTED
:
1979 PM8001_IO_DBG(pm8001_ha
,
1980 pm8001_printk("IO_OPEN_CNX_ERROR_CONNECTION_RATE_"
1981 "NOT_SUPPORTED\n"));
1982 ts
->resp
= SAS_TASK_COMPLETE
;
1983 ts
->stat
= SAS_OPEN_REJECT
;
1984 ts
->open_rej_reason
= SAS_OREJ_CONN_RATE
;
1986 case IO_OPEN_CNX_ERROR_WRONG_DESTINATION
:
1987 PM8001_IO_DBG(pm8001_ha
,
1988 pm8001_printk("IO_OPEN_CNX_ERROR_WRONG_DESTINATION\n"));
1989 ts
->resp
= SAS_TASK_UNDELIVERED
;
1990 ts
->stat
= SAS_OPEN_REJECT
;
1991 ts
->open_rej_reason
= SAS_OREJ_WRONG_DEST
;
1993 case IO_XFER_ERROR_NAK_RECEIVED
:
1994 PM8001_IO_DBG(pm8001_ha
,
1995 pm8001_printk("IO_XFER_ERROR_NAK_RECEIVED\n"));
1996 ts
->resp
= SAS_TASK_COMPLETE
;
1997 ts
->stat
= SAS_OPEN_REJECT
;
1998 ts
->open_rej_reason
= SAS_OREJ_RSVD_RETRY
;
2000 case IO_XFER_ERROR_ACK_NAK_TIMEOUT
:
2001 PM8001_IO_DBG(pm8001_ha
,
2002 pm8001_printk("IO_XFER_ERROR_ACK_NAK_TIMEOUT\n"));
2003 ts
->resp
= SAS_TASK_COMPLETE
;
2004 ts
->stat
= SAS_NAK_R_ERR
;
2006 case IO_XFER_ERROR_DMA
:
2007 PM8001_IO_DBG(pm8001_ha
,
2008 pm8001_printk("IO_XFER_ERROR_DMA\n"));
2009 ts
->resp
= SAS_TASK_COMPLETE
;
2010 ts
->stat
= SAS_OPEN_REJECT
;
2012 case IO_XFER_OPEN_RETRY_TIMEOUT
:
2013 PM8001_IO_DBG(pm8001_ha
,
2014 pm8001_printk("IO_XFER_OPEN_RETRY_TIMEOUT\n"));
2015 ts
->resp
= SAS_TASK_COMPLETE
;
2016 ts
->stat
= SAS_OPEN_REJECT
;
2017 ts
->open_rej_reason
= SAS_OREJ_RSVD_RETRY
;
2019 case IO_XFER_ERROR_OFFSET_MISMATCH
:
2020 PM8001_IO_DBG(pm8001_ha
,
2021 pm8001_printk("IO_XFER_ERROR_OFFSET_MISMATCH\n"));
2022 ts
->resp
= SAS_TASK_COMPLETE
;
2023 ts
->stat
= SAS_OPEN_REJECT
;
2025 case IO_PORT_IN_RESET
:
2026 PM8001_IO_DBG(pm8001_ha
,
2027 pm8001_printk("IO_PORT_IN_RESET\n"));
2028 ts
->resp
= SAS_TASK_COMPLETE
;
2029 ts
->stat
= SAS_OPEN_REJECT
;
2031 case IO_DS_NON_OPERATIONAL
:
2032 PM8001_IO_DBG(pm8001_ha
,
2033 pm8001_printk("IO_DS_NON_OPERATIONAL\n"));
2034 ts
->resp
= SAS_TASK_COMPLETE
;
2035 ts
->stat
= SAS_OPEN_REJECT
;
2037 pm8001_handle_event(pm8001_ha
,
2039 IO_DS_NON_OPERATIONAL
);
2041 case IO_DS_IN_RECOVERY
:
2042 PM8001_IO_DBG(pm8001_ha
,
2043 pm8001_printk("IO_DS_IN_RECOVERY\n"));
2044 ts
->resp
= SAS_TASK_COMPLETE
;
2045 ts
->stat
= SAS_OPEN_REJECT
;
2047 case IO_TM_TAG_NOT_FOUND
:
2048 PM8001_IO_DBG(pm8001_ha
,
2049 pm8001_printk("IO_TM_TAG_NOT_FOUND\n"));
2050 ts
->resp
= SAS_TASK_COMPLETE
;
2051 ts
->stat
= SAS_OPEN_REJECT
;
2053 case IO_SSP_EXT_IU_ZERO_LEN_ERROR
:
2054 PM8001_IO_DBG(pm8001_ha
,
2055 pm8001_printk("IO_SSP_EXT_IU_ZERO_LEN_ERROR\n"));
2056 ts
->resp
= SAS_TASK_COMPLETE
;
2057 ts
->stat
= SAS_OPEN_REJECT
;
2059 case IO_OPEN_CNX_ERROR_HW_RESOURCE_BUSY
:
2060 PM8001_IO_DBG(pm8001_ha
,
2061 pm8001_printk("IO_OPEN_CNX_ERROR_HW_RESOURCE_BUSY\n"));
2062 ts
->resp
= SAS_TASK_COMPLETE
;
2063 ts
->stat
= SAS_OPEN_REJECT
;
2064 ts
->open_rej_reason
= SAS_OREJ_RSVD_RETRY
;
2067 PM8001_IO_DBG(pm8001_ha
,
2068 pm8001_printk("Unknown status 0x%x\n", status
));
2069 /* not allowed case. Therefore, return failed status */
2070 ts
->resp
= SAS_TASK_COMPLETE
;
2071 ts
->stat
= SAS_OPEN_REJECT
;
2074 PM8001_IO_DBG(pm8001_ha
,
2075 pm8001_printk("scsi_status = %x\n ",
2076 psspPayload
->ssp_resp_iu
.status
));
2077 spin_lock_irqsave(&t
->task_state_lock
, flags
);
2078 t
->task_state_flags
&= ~SAS_TASK_STATE_PENDING
;
2079 t
->task_state_flags
&= ~SAS_TASK_AT_INITIATOR
;
2080 t
->task_state_flags
|= SAS_TASK_STATE_DONE
;
2081 if (unlikely((t
->task_state_flags
& SAS_TASK_STATE_ABORTED
))) {
2082 spin_unlock_irqrestore(&t
->task_state_lock
, flags
);
2083 PM8001_FAIL_DBG(pm8001_ha
, pm8001_printk("task 0x%p done with"
2084 " io_status 0x%x resp 0x%x "
2085 "stat 0x%x but aborted by upper layer!\n",
2086 t
, status
, ts
->resp
, ts
->stat
));
2087 pm8001_ccb_task_free(pm8001_ha
, t
, ccb
, tag
);
2089 spin_unlock_irqrestore(&t
->task_state_lock
, flags
);
2090 pm8001_ccb_task_free(pm8001_ha
, t
, ccb
, tag
);
2091 mb();/* in order to force CPU ordering */
2096 /*See the comments for mpi_ssp_completion */
2097 static void mpi_ssp_event(struct pm8001_hba_info
*pm8001_ha
, void *piomb
)
2100 unsigned long flags
;
2101 struct task_status_struct
*ts
;
2102 struct pm8001_ccb_info
*ccb
;
2103 struct pm8001_device
*pm8001_dev
;
2104 struct ssp_event_resp
*psspPayload
=
2105 (struct ssp_event_resp
*)(piomb
+ 4);
2106 u32 event
= le32_to_cpu(psspPayload
->event
);
2107 u32 tag
= le32_to_cpu(psspPayload
->tag
);
2108 u32 port_id
= le32_to_cpu(psspPayload
->port_id
);
2109 u32 dev_id
= le32_to_cpu(psspPayload
->device_id
);
2111 ccb
= &pm8001_ha
->ccb_info
[tag
];
2113 pm8001_dev
= ccb
->device
;
2115 PM8001_FAIL_DBG(pm8001_ha
,
2116 pm8001_printk("sas IO status 0x%x\n", event
));
2117 if (unlikely(!t
|| !t
->lldd_task
|| !t
->dev
))
2119 ts
= &t
->task_status
;
2120 PM8001_IO_DBG(pm8001_ha
,
2121 pm8001_printk("port_id = %x,device_id = %x\n",
2125 PM8001_IO_DBG(pm8001_ha
, pm8001_printk("IO_UNDERFLOW\n");)
2126 ts
->resp
= SAS_TASK_COMPLETE
;
2127 ts
->stat
= SAS_DATA_OVERRUN
;
2130 pm8001_dev
->running_req
--;
2132 case IO_XFER_ERROR_BREAK
:
2133 PM8001_IO_DBG(pm8001_ha
,
2134 pm8001_printk("IO_XFER_ERROR_BREAK\n"));
2135 pm8001_handle_event(pm8001_ha
, t
, IO_XFER_ERROR_BREAK
);
2137 case IO_XFER_ERROR_PHY_NOT_READY
:
2138 PM8001_IO_DBG(pm8001_ha
,
2139 pm8001_printk("IO_XFER_ERROR_PHY_NOT_READY\n"));
2140 ts
->resp
= SAS_TASK_COMPLETE
;
2141 ts
->stat
= SAS_OPEN_REJECT
;
2142 ts
->open_rej_reason
= SAS_OREJ_RSVD_RETRY
;
2144 case IO_OPEN_CNX_ERROR_PROTOCOL_NOT_SUPPORTED
:
2145 PM8001_IO_DBG(pm8001_ha
,
2146 pm8001_printk("IO_OPEN_CNX_ERROR_PROTOCOL_NOT"
2148 ts
->resp
= SAS_TASK_COMPLETE
;
2149 ts
->stat
= SAS_OPEN_REJECT
;
2150 ts
->open_rej_reason
= SAS_OREJ_EPROTO
;
2152 case IO_OPEN_CNX_ERROR_ZONE_VIOLATION
:
2153 PM8001_IO_DBG(pm8001_ha
,
2154 pm8001_printk("IO_OPEN_CNX_ERROR_ZONE_VIOLATION\n"));
2155 ts
->resp
= SAS_TASK_COMPLETE
;
2156 ts
->stat
= SAS_OPEN_REJECT
;
2157 ts
->open_rej_reason
= SAS_OREJ_UNKNOWN
;
2159 case IO_OPEN_CNX_ERROR_BREAK
:
2160 PM8001_IO_DBG(pm8001_ha
,
2161 pm8001_printk("IO_OPEN_CNX_ERROR_BREAK\n"));
2162 ts
->resp
= SAS_TASK_COMPLETE
;
2163 ts
->stat
= SAS_OPEN_REJECT
;
2164 ts
->open_rej_reason
= SAS_OREJ_RSVD_RETRY
;
2166 case IO_OPEN_CNX_ERROR_IT_NEXUS_LOSS
:
2167 PM8001_IO_DBG(pm8001_ha
,
2168 pm8001_printk("IO_OPEN_CNX_ERROR_IT_NEXUS_LOSS\n"));
2169 ts
->resp
= SAS_TASK_COMPLETE
;
2170 ts
->stat
= SAS_OPEN_REJECT
;
2171 ts
->open_rej_reason
= SAS_OREJ_UNKNOWN
;
2173 pm8001_handle_event(pm8001_ha
,
2175 IO_OPEN_CNX_ERROR_IT_NEXUS_LOSS
);
2177 case IO_OPEN_CNX_ERROR_BAD_DESTINATION
:
2178 PM8001_IO_DBG(pm8001_ha
,
2179 pm8001_printk("IO_OPEN_CNX_ERROR_BAD_DESTINATION\n"));
2180 ts
->resp
= SAS_TASK_COMPLETE
;
2181 ts
->stat
= SAS_OPEN_REJECT
;
2182 ts
->open_rej_reason
= SAS_OREJ_BAD_DEST
;
2184 case IO_OPEN_CNX_ERROR_CONNECTION_RATE_NOT_SUPPORTED
:
2185 PM8001_IO_DBG(pm8001_ha
,
2186 pm8001_printk("IO_OPEN_CNX_ERROR_CONNECTION_RATE_"
2187 "NOT_SUPPORTED\n"));
2188 ts
->resp
= SAS_TASK_COMPLETE
;
2189 ts
->stat
= SAS_OPEN_REJECT
;
2190 ts
->open_rej_reason
= SAS_OREJ_CONN_RATE
;
2192 case IO_OPEN_CNX_ERROR_WRONG_DESTINATION
:
2193 PM8001_IO_DBG(pm8001_ha
,
2194 pm8001_printk("IO_OPEN_CNX_ERROR_WRONG_DESTINATION\n"));
2195 ts
->resp
= SAS_TASK_COMPLETE
;
2196 ts
->stat
= SAS_OPEN_REJECT
;
2197 ts
->open_rej_reason
= SAS_OREJ_WRONG_DEST
;
2199 case IO_XFER_ERROR_NAK_RECEIVED
:
2200 PM8001_IO_DBG(pm8001_ha
,
2201 pm8001_printk("IO_XFER_ERROR_NAK_RECEIVED\n"));
2202 ts
->resp
= SAS_TASK_COMPLETE
;
2203 ts
->stat
= SAS_OPEN_REJECT
;
2204 ts
->open_rej_reason
= SAS_OREJ_RSVD_RETRY
;
2206 case IO_XFER_ERROR_ACK_NAK_TIMEOUT
:
2207 PM8001_IO_DBG(pm8001_ha
,
2208 pm8001_printk("IO_XFER_ERROR_ACK_NAK_TIMEOUT\n"));
2209 ts
->resp
= SAS_TASK_COMPLETE
;
2210 ts
->stat
= SAS_NAK_R_ERR
;
2212 case IO_XFER_OPEN_RETRY_TIMEOUT
:
2213 PM8001_IO_DBG(pm8001_ha
,
2214 pm8001_printk("IO_XFER_OPEN_RETRY_TIMEOUT\n"));
2215 pm8001_handle_event(pm8001_ha
, t
, IO_XFER_OPEN_RETRY_TIMEOUT
);
2217 case IO_XFER_ERROR_UNEXPECTED_PHASE
:
2218 PM8001_IO_DBG(pm8001_ha
,
2219 pm8001_printk("IO_XFER_ERROR_UNEXPECTED_PHASE\n"));
2220 ts
->resp
= SAS_TASK_COMPLETE
;
2221 ts
->stat
= SAS_DATA_OVERRUN
;
2223 case IO_XFER_ERROR_XFER_RDY_OVERRUN
:
2224 PM8001_IO_DBG(pm8001_ha
,
2225 pm8001_printk("IO_XFER_ERROR_XFER_RDY_OVERRUN\n"));
2226 ts
->resp
= SAS_TASK_COMPLETE
;
2227 ts
->stat
= SAS_DATA_OVERRUN
;
2229 case IO_XFER_ERROR_XFER_RDY_NOT_EXPECTED
:
2230 PM8001_IO_DBG(pm8001_ha
,
2231 pm8001_printk("IO_XFER_ERROR_XFER_RDY_NOT_EXPECTED\n"));
2232 ts
->resp
= SAS_TASK_COMPLETE
;
2233 ts
->stat
= SAS_DATA_OVERRUN
;
2235 case IO_XFER_ERROR_CMD_ISSUE_ACK_NAK_TIMEOUT
:
2236 PM8001_IO_DBG(pm8001_ha
,
2237 pm8001_printk("IO_XFER_ERROR_CMD_ISSUE_ACK_NAK_TIMEOUT\n"));
2238 ts
->resp
= SAS_TASK_COMPLETE
;
2239 ts
->stat
= SAS_DATA_OVERRUN
;
2241 case IO_XFER_ERROR_OFFSET_MISMATCH
:
2242 PM8001_IO_DBG(pm8001_ha
,
2243 pm8001_printk("IO_XFER_ERROR_OFFSET_MISMATCH\n"));
2244 ts
->resp
= SAS_TASK_COMPLETE
;
2245 ts
->stat
= SAS_DATA_OVERRUN
;
2247 case IO_XFER_ERROR_XFER_ZERO_DATA_LEN
:
2248 PM8001_IO_DBG(pm8001_ha
,
2249 pm8001_printk("IO_XFER_ERROR_XFER_ZERO_DATA_LEN\n"));
2250 ts
->resp
= SAS_TASK_COMPLETE
;
2251 ts
->stat
= SAS_DATA_OVERRUN
;
2253 case IO_XFER_CMD_FRAME_ISSUED
:
2254 PM8001_IO_DBG(pm8001_ha
,
2255 pm8001_printk(" IO_XFER_CMD_FRAME_ISSUED\n"));
2258 PM8001_IO_DBG(pm8001_ha
,
2259 pm8001_printk("Unknown status 0x%x\n", event
));
2260 /* not allowed case. Therefore, return failed status */
2261 ts
->resp
= SAS_TASK_COMPLETE
;
2262 ts
->stat
= SAS_DATA_OVERRUN
;
2265 spin_lock_irqsave(&t
->task_state_lock
, flags
);
2266 t
->task_state_flags
&= ~SAS_TASK_STATE_PENDING
;
2267 t
->task_state_flags
&= ~SAS_TASK_AT_INITIATOR
;
2268 t
->task_state_flags
|= SAS_TASK_STATE_DONE
;
2269 if (unlikely((t
->task_state_flags
& SAS_TASK_STATE_ABORTED
))) {
2270 spin_unlock_irqrestore(&t
->task_state_lock
, flags
);
2271 PM8001_FAIL_DBG(pm8001_ha
, pm8001_printk("task 0x%p done with"
2272 " event 0x%x resp 0x%x "
2273 "stat 0x%x but aborted by upper layer!\n",
2274 t
, event
, ts
->resp
, ts
->stat
));
2275 pm8001_ccb_task_free(pm8001_ha
, t
, ccb
, tag
);
2277 spin_unlock_irqrestore(&t
->task_state_lock
, flags
);
2278 pm8001_ccb_task_free(pm8001_ha
, t
, ccb
, tag
);
2279 mb();/* in order to force CPU ordering */
2284 /*See the comments for mpi_ssp_completion */
2286 mpi_sata_completion(struct pm8001_hba_info
*pm8001_ha
, void *piomb
)
2289 struct pm8001_ccb_info
*ccb
;
2294 u8 sata_addr_low
[4];
2295 u32 temp_sata_addr_low
;
2297 u32 temp_sata_addr_hi
;
2298 struct sata_completion_resp
*psataPayload
;
2299 struct task_status_struct
*ts
;
2300 struct ata_task_resp
*resp
;
2302 struct pm8001_device
*pm8001_dev
;
2303 unsigned long flags
;
2305 psataPayload
= (struct sata_completion_resp
*)(piomb
+ 4);
2306 status
= le32_to_cpu(psataPayload
->status
);
2307 tag
= le32_to_cpu(psataPayload
->tag
);
2310 PM8001_FAIL_DBG(pm8001_ha
,
2311 pm8001_printk("tag null\n"));
2314 ccb
= &pm8001_ha
->ccb_info
[tag
];
2315 param
= le32_to_cpu(psataPayload
->param
);
2318 pm8001_dev
= ccb
->device
;
2320 PM8001_FAIL_DBG(pm8001_ha
,
2321 pm8001_printk("ccb null\n"));
2326 if (t
->dev
&& (t
->dev
->lldd_dev
))
2327 pm8001_dev
= t
->dev
->lldd_dev
;
2329 PM8001_FAIL_DBG(pm8001_ha
,
2330 pm8001_printk("task null\n"));
2334 if ((pm8001_dev
&& !(pm8001_dev
->id
& NCQ_READ_LOG_FLAG
))
2335 && unlikely(!t
|| !t
->lldd_task
|| !t
->dev
)) {
2336 PM8001_FAIL_DBG(pm8001_ha
,
2337 pm8001_printk("task or dev null\n"));
2341 ts
= &t
->task_status
;
2343 PM8001_FAIL_DBG(pm8001_ha
,
2344 pm8001_printk("ts null\n"));
2347 /* Print sas address of IO failed device */
2348 if ((status
!= IO_SUCCESS
) && (status
!= IO_OVERFLOW
) &&
2349 (status
!= IO_UNDERFLOW
)) {
2350 if (!((t
->dev
->parent
) &&
2351 (DEV_IS_EXPANDER(t
->dev
->parent
->dev_type
)))) {
2352 for (i
= 0 , j
= 4; j
<= 7 && i
<= 3; i
++ , j
++)
2353 sata_addr_low
[i
] = pm8001_ha
->sas_addr
[j
];
2354 for (i
= 0 , j
= 0; j
<= 3 && i
<= 3; i
++ , j
++)
2355 sata_addr_hi
[i
] = pm8001_ha
->sas_addr
[j
];
2356 memcpy(&temp_sata_addr_low
, sata_addr_low
,
2357 sizeof(sata_addr_low
));
2358 memcpy(&temp_sata_addr_hi
, sata_addr_hi
,
2359 sizeof(sata_addr_hi
));
2360 temp_sata_addr_hi
= (((temp_sata_addr_hi
>> 24) & 0xff)
2361 |((temp_sata_addr_hi
<< 8) &
2363 ((temp_sata_addr_hi
>> 8)
2365 ((temp_sata_addr_hi
<< 24) &
2367 temp_sata_addr_low
= ((((temp_sata_addr_low
>> 24)
2369 ((temp_sata_addr_low
<< 8)
2371 ((temp_sata_addr_low
>> 8)
2373 ((temp_sata_addr_low
<< 24)
2375 pm8001_dev
->attached_phy
+
2377 PM8001_FAIL_DBG(pm8001_ha
,
2378 pm8001_printk("SAS Address of IO Failure Drive:"
2379 "%08x%08x", temp_sata_addr_hi
,
2380 temp_sata_addr_low
));
2382 PM8001_FAIL_DBG(pm8001_ha
,
2383 pm8001_printk("SAS Address of IO Failure Drive:"
2384 "%016llx", SAS_ADDR(t
->dev
->sas_addr
)));
2389 PM8001_IO_DBG(pm8001_ha
, pm8001_printk("IO_SUCCESS\n"));
2391 ts
->resp
= SAS_TASK_COMPLETE
;
2392 ts
->stat
= SAM_STAT_GOOD
;
2393 /* check if response is for SEND READ LOG */
2395 (pm8001_dev
->id
& NCQ_READ_LOG_FLAG
)) {
2396 /* set new bit for abort_all */
2397 pm8001_dev
->id
|= NCQ_ABORT_ALL_FLAG
;
2398 /* clear bit for read log */
2399 pm8001_dev
->id
= pm8001_dev
->id
& 0x7FFFFFFF;
2400 pm8001_send_abort_all(pm8001_ha
, pm8001_dev
);
2402 pm8001_tag_free(pm8001_ha
, tag
);
2408 ts
->resp
= SAS_TASK_COMPLETE
;
2409 ts
->stat
= SAS_PROTO_RESPONSE
;
2410 ts
->residual
= param
;
2411 PM8001_IO_DBG(pm8001_ha
,
2412 pm8001_printk("SAS_PROTO_RESPONSE len = %d\n",
2414 sata_resp
= &psataPayload
->sata_resp
[0];
2415 resp
= (struct ata_task_resp
*)ts
->buf
;
2416 if (t
->ata_task
.dma_xfer
== 0 &&
2417 t
->data_dir
== PCI_DMA_FROMDEVICE
) {
2418 len
= sizeof(struct pio_setup_fis
);
2419 PM8001_IO_DBG(pm8001_ha
,
2420 pm8001_printk("PIO read len = %d\n", len
));
2421 } else if (t
->ata_task
.use_ncq
) {
2422 len
= sizeof(struct set_dev_bits_fis
);
2423 PM8001_IO_DBG(pm8001_ha
,
2424 pm8001_printk("FPDMA len = %d\n", len
));
2426 len
= sizeof(struct dev_to_host_fis
);
2427 PM8001_IO_DBG(pm8001_ha
,
2428 pm8001_printk("other len = %d\n", len
));
2430 if (SAS_STATUS_BUF_SIZE
>= sizeof(*resp
)) {
2431 resp
->frame_len
= len
;
2432 memcpy(&resp
->ending_fis
[0], sata_resp
, len
);
2433 ts
->buf_valid_size
= sizeof(*resp
);
2435 PM8001_IO_DBG(pm8001_ha
,
2436 pm8001_printk("response to large\n"));
2439 pm8001_dev
->running_req
--;
2442 PM8001_IO_DBG(pm8001_ha
,
2443 pm8001_printk("IO_ABORTED IOMB Tag\n"));
2444 ts
->resp
= SAS_TASK_COMPLETE
;
2445 ts
->stat
= SAS_ABORTED_TASK
;
2447 pm8001_dev
->running_req
--;
2449 /* following cases are to do cases */
2451 /* SATA Completion with error */
2452 PM8001_IO_DBG(pm8001_ha
,
2453 pm8001_printk("IO_UNDERFLOW param = %d\n", param
));
2454 ts
->resp
= SAS_TASK_COMPLETE
;
2455 ts
->stat
= SAS_DATA_UNDERRUN
;
2456 ts
->residual
= param
;
2458 pm8001_dev
->running_req
--;
2461 PM8001_IO_DBG(pm8001_ha
,
2462 pm8001_printk("IO_NO_DEVICE\n"));
2463 ts
->resp
= SAS_TASK_UNDELIVERED
;
2464 ts
->stat
= SAS_PHY_DOWN
;
2466 case IO_XFER_ERROR_BREAK
:
2467 PM8001_IO_DBG(pm8001_ha
,
2468 pm8001_printk("IO_XFER_ERROR_BREAK\n"));
2469 ts
->resp
= SAS_TASK_COMPLETE
;
2470 ts
->stat
= SAS_INTERRUPTED
;
2472 case IO_XFER_ERROR_PHY_NOT_READY
:
2473 PM8001_IO_DBG(pm8001_ha
,
2474 pm8001_printk("IO_XFER_ERROR_PHY_NOT_READY\n"));
2475 ts
->resp
= SAS_TASK_COMPLETE
;
2476 ts
->stat
= SAS_OPEN_REJECT
;
2477 ts
->open_rej_reason
= SAS_OREJ_RSVD_RETRY
;
2479 case IO_OPEN_CNX_ERROR_PROTOCOL_NOT_SUPPORTED
:
2480 PM8001_IO_DBG(pm8001_ha
,
2481 pm8001_printk("IO_OPEN_CNX_ERROR_PROTOCOL_NOT"
2483 ts
->resp
= SAS_TASK_COMPLETE
;
2484 ts
->stat
= SAS_OPEN_REJECT
;
2485 ts
->open_rej_reason
= SAS_OREJ_EPROTO
;
2487 case IO_OPEN_CNX_ERROR_ZONE_VIOLATION
:
2488 PM8001_IO_DBG(pm8001_ha
,
2489 pm8001_printk("IO_OPEN_CNX_ERROR_ZONE_VIOLATION\n"));
2490 ts
->resp
= SAS_TASK_COMPLETE
;
2491 ts
->stat
= SAS_OPEN_REJECT
;
2492 ts
->open_rej_reason
= SAS_OREJ_UNKNOWN
;
2494 case IO_OPEN_CNX_ERROR_BREAK
:
2495 PM8001_IO_DBG(pm8001_ha
,
2496 pm8001_printk("IO_OPEN_CNX_ERROR_BREAK\n"));
2497 ts
->resp
= SAS_TASK_COMPLETE
;
2498 ts
->stat
= SAS_OPEN_REJECT
;
2499 ts
->open_rej_reason
= SAS_OREJ_RSVD_CONT0
;
2501 case IO_OPEN_CNX_ERROR_IT_NEXUS_LOSS
:
2502 PM8001_IO_DBG(pm8001_ha
,
2503 pm8001_printk("IO_OPEN_CNX_ERROR_IT_NEXUS_LOSS\n"));
2504 ts
->resp
= SAS_TASK_COMPLETE
;
2505 ts
->stat
= SAS_DEV_NO_RESPONSE
;
2506 if (!t
->uldd_task
) {
2507 pm8001_handle_event(pm8001_ha
,
2509 IO_OPEN_CNX_ERROR_IT_NEXUS_LOSS
);
2510 ts
->resp
= SAS_TASK_UNDELIVERED
;
2511 ts
->stat
= SAS_QUEUE_FULL
;
2512 pm8001_ccb_task_free_done(pm8001_ha
, t
, ccb
, tag
);
2516 case IO_OPEN_CNX_ERROR_BAD_DESTINATION
:
2517 PM8001_IO_DBG(pm8001_ha
,
2518 pm8001_printk("IO_OPEN_CNX_ERROR_BAD_DESTINATION\n"));
2519 ts
->resp
= SAS_TASK_UNDELIVERED
;
2520 ts
->stat
= SAS_OPEN_REJECT
;
2521 ts
->open_rej_reason
= SAS_OREJ_BAD_DEST
;
2522 if (!t
->uldd_task
) {
2523 pm8001_handle_event(pm8001_ha
,
2525 IO_OPEN_CNX_ERROR_IT_NEXUS_LOSS
);
2526 ts
->resp
= SAS_TASK_UNDELIVERED
;
2527 ts
->stat
= SAS_QUEUE_FULL
;
2528 pm8001_ccb_task_free_done(pm8001_ha
, t
, ccb
, tag
);
2532 case IO_OPEN_CNX_ERROR_CONNECTION_RATE_NOT_SUPPORTED
:
2533 PM8001_IO_DBG(pm8001_ha
,
2534 pm8001_printk("IO_OPEN_CNX_ERROR_CONNECTION_RATE_"
2535 "NOT_SUPPORTED\n"));
2536 ts
->resp
= SAS_TASK_COMPLETE
;
2537 ts
->stat
= SAS_OPEN_REJECT
;
2538 ts
->open_rej_reason
= SAS_OREJ_CONN_RATE
;
2540 case IO_OPEN_CNX_ERROR_STP_RESOURCES_BUSY
:
2541 PM8001_IO_DBG(pm8001_ha
,
2542 pm8001_printk("IO_OPEN_CNX_ERROR_STP_RESOURCES"
2544 ts
->resp
= SAS_TASK_COMPLETE
;
2545 ts
->stat
= SAS_DEV_NO_RESPONSE
;
2546 if (!t
->uldd_task
) {
2547 pm8001_handle_event(pm8001_ha
,
2549 IO_OPEN_CNX_ERROR_STP_RESOURCES_BUSY
);
2550 ts
->resp
= SAS_TASK_UNDELIVERED
;
2551 ts
->stat
= SAS_QUEUE_FULL
;
2552 pm8001_ccb_task_free_done(pm8001_ha
, t
, ccb
, tag
);
2556 case IO_OPEN_CNX_ERROR_WRONG_DESTINATION
:
2557 PM8001_IO_DBG(pm8001_ha
,
2558 pm8001_printk("IO_OPEN_CNX_ERROR_WRONG_DESTINATION\n"));
2559 ts
->resp
= SAS_TASK_COMPLETE
;
2560 ts
->stat
= SAS_OPEN_REJECT
;
2561 ts
->open_rej_reason
= SAS_OREJ_WRONG_DEST
;
2563 case IO_XFER_ERROR_NAK_RECEIVED
:
2564 PM8001_IO_DBG(pm8001_ha
,
2565 pm8001_printk("IO_XFER_ERROR_NAK_RECEIVED\n"));
2566 ts
->resp
= SAS_TASK_COMPLETE
;
2567 ts
->stat
= SAS_NAK_R_ERR
;
2569 case IO_XFER_ERROR_ACK_NAK_TIMEOUT
:
2570 PM8001_IO_DBG(pm8001_ha
,
2571 pm8001_printk("IO_XFER_ERROR_ACK_NAK_TIMEOUT\n"));
2572 ts
->resp
= SAS_TASK_COMPLETE
;
2573 ts
->stat
= SAS_NAK_R_ERR
;
2575 case IO_XFER_ERROR_DMA
:
2576 PM8001_IO_DBG(pm8001_ha
,
2577 pm8001_printk("IO_XFER_ERROR_DMA\n"));
2578 ts
->resp
= SAS_TASK_COMPLETE
;
2579 ts
->stat
= SAS_ABORTED_TASK
;
2581 case IO_XFER_ERROR_SATA_LINK_TIMEOUT
:
2582 PM8001_IO_DBG(pm8001_ha
,
2583 pm8001_printk("IO_XFER_ERROR_SATA_LINK_TIMEOUT\n"));
2584 ts
->resp
= SAS_TASK_UNDELIVERED
;
2585 ts
->stat
= SAS_DEV_NO_RESPONSE
;
2587 case IO_XFER_ERROR_REJECTED_NCQ_MODE
:
2588 PM8001_IO_DBG(pm8001_ha
,
2589 pm8001_printk("IO_XFER_ERROR_REJECTED_NCQ_MODE\n"));
2590 ts
->resp
= SAS_TASK_COMPLETE
;
2591 ts
->stat
= SAS_DATA_UNDERRUN
;
2593 case IO_XFER_OPEN_RETRY_TIMEOUT
:
2594 PM8001_IO_DBG(pm8001_ha
,
2595 pm8001_printk("IO_XFER_OPEN_RETRY_TIMEOUT\n"));
2596 ts
->resp
= SAS_TASK_COMPLETE
;
2597 ts
->stat
= SAS_OPEN_TO
;
2599 case IO_PORT_IN_RESET
:
2600 PM8001_IO_DBG(pm8001_ha
,
2601 pm8001_printk("IO_PORT_IN_RESET\n"));
2602 ts
->resp
= SAS_TASK_COMPLETE
;
2603 ts
->stat
= SAS_DEV_NO_RESPONSE
;
2605 case IO_DS_NON_OPERATIONAL
:
2606 PM8001_IO_DBG(pm8001_ha
,
2607 pm8001_printk("IO_DS_NON_OPERATIONAL\n"));
2608 ts
->resp
= SAS_TASK_COMPLETE
;
2609 ts
->stat
= SAS_DEV_NO_RESPONSE
;
2610 if (!t
->uldd_task
) {
2611 pm8001_handle_event(pm8001_ha
, pm8001_dev
,
2612 IO_DS_NON_OPERATIONAL
);
2613 ts
->resp
= SAS_TASK_UNDELIVERED
;
2614 ts
->stat
= SAS_QUEUE_FULL
;
2615 pm8001_ccb_task_free_done(pm8001_ha
, t
, ccb
, tag
);
2619 case IO_DS_IN_RECOVERY
:
2620 PM8001_IO_DBG(pm8001_ha
,
2621 pm8001_printk(" IO_DS_IN_RECOVERY\n"));
2622 ts
->resp
= SAS_TASK_COMPLETE
;
2623 ts
->stat
= SAS_DEV_NO_RESPONSE
;
2625 case IO_DS_IN_ERROR
:
2626 PM8001_IO_DBG(pm8001_ha
,
2627 pm8001_printk("IO_DS_IN_ERROR\n"));
2628 ts
->resp
= SAS_TASK_COMPLETE
;
2629 ts
->stat
= SAS_DEV_NO_RESPONSE
;
2630 if (!t
->uldd_task
) {
2631 pm8001_handle_event(pm8001_ha
, pm8001_dev
,
2633 ts
->resp
= SAS_TASK_UNDELIVERED
;
2634 ts
->stat
= SAS_QUEUE_FULL
;
2635 pm8001_ccb_task_free_done(pm8001_ha
, t
, ccb
, tag
);
2639 case IO_OPEN_CNX_ERROR_HW_RESOURCE_BUSY
:
2640 PM8001_IO_DBG(pm8001_ha
,
2641 pm8001_printk("IO_OPEN_CNX_ERROR_HW_RESOURCE_BUSY\n"));
2642 ts
->resp
= SAS_TASK_COMPLETE
;
2643 ts
->stat
= SAS_OPEN_REJECT
;
2644 ts
->open_rej_reason
= SAS_OREJ_RSVD_RETRY
;
2647 PM8001_IO_DBG(pm8001_ha
,
2648 pm8001_printk("Unknown status 0x%x\n", status
));
2649 /* not allowed case. Therefore, return failed status */
2650 ts
->resp
= SAS_TASK_COMPLETE
;
2651 ts
->stat
= SAS_DEV_NO_RESPONSE
;
2654 spin_lock_irqsave(&t
->task_state_lock
, flags
);
2655 t
->task_state_flags
&= ~SAS_TASK_STATE_PENDING
;
2656 t
->task_state_flags
&= ~SAS_TASK_AT_INITIATOR
;
2657 t
->task_state_flags
|= SAS_TASK_STATE_DONE
;
2658 if (unlikely((t
->task_state_flags
& SAS_TASK_STATE_ABORTED
))) {
2659 spin_unlock_irqrestore(&t
->task_state_lock
, flags
);
2660 PM8001_FAIL_DBG(pm8001_ha
,
2661 pm8001_printk("task 0x%p done with io_status 0x%x"
2662 " resp 0x%x stat 0x%x but aborted by upper layer!\n",
2663 t
, status
, ts
->resp
, ts
->stat
));
2664 pm8001_ccb_task_free(pm8001_ha
, t
, ccb
, tag
);
2666 spin_unlock_irqrestore(&t
->task_state_lock
, flags
);
2667 pm8001_ccb_task_free_done(pm8001_ha
, t
, ccb
, tag
);
2671 /*See the comments for mpi_ssp_completion */
2672 static void mpi_sata_event(struct pm8001_hba_info
*pm8001_ha
, void *piomb
)
2675 struct task_status_struct
*ts
;
2676 struct pm8001_ccb_info
*ccb
;
2677 struct pm8001_device
*pm8001_dev
;
2678 struct sata_event_resp
*psataPayload
=
2679 (struct sata_event_resp
*)(piomb
+ 4);
2680 u32 event
= le32_to_cpu(psataPayload
->event
);
2681 u32 tag
= le32_to_cpu(psataPayload
->tag
);
2682 u32 port_id
= le32_to_cpu(psataPayload
->port_id
);
2683 u32 dev_id
= le32_to_cpu(psataPayload
->device_id
);
2684 unsigned long flags
;
2686 ccb
= &pm8001_ha
->ccb_info
[tag
];
2690 pm8001_dev
= ccb
->device
;
2692 PM8001_FAIL_DBG(pm8001_ha
,
2693 pm8001_printk("No CCB !!!. returning\n"));
2696 PM8001_FAIL_DBG(pm8001_ha
,
2697 pm8001_printk("SATA EVENT 0x%x\n", event
));
2699 /* Check if this is NCQ error */
2700 if (event
== IO_XFER_ERROR_ABORTED_NCQ_MODE
) {
2701 /* find device using device id */
2702 pm8001_dev
= pm8001_find_dev(pm8001_ha
, dev_id
);
2703 /* send read log extension */
2705 pm8001_send_read_log(pm8001_ha
, pm8001_dev
);
2709 ccb
= &pm8001_ha
->ccb_info
[tag
];
2711 pm8001_dev
= ccb
->device
;
2713 PM8001_FAIL_DBG(pm8001_ha
,
2714 pm8001_printk("sata IO status 0x%x\n", event
));
2715 if (unlikely(!t
|| !t
->lldd_task
|| !t
->dev
))
2717 ts
= &t
->task_status
;
2718 PM8001_IO_DBG(pm8001_ha
, pm8001_printk(
2719 "port_id:0x%x, device_id:0x%x, tag:0x%x, event:0x%x\n",
2720 port_id
, dev_id
, tag
, event
));
2723 PM8001_IO_DBG(pm8001_ha
, pm8001_printk("IO_UNDERFLOW\n"));
2724 ts
->resp
= SAS_TASK_COMPLETE
;
2725 ts
->stat
= SAS_DATA_OVERRUN
;
2728 pm8001_dev
->running_req
--;
2730 case IO_XFER_ERROR_BREAK
:
2731 PM8001_IO_DBG(pm8001_ha
,
2732 pm8001_printk("IO_XFER_ERROR_BREAK\n"));
2733 ts
->resp
= SAS_TASK_COMPLETE
;
2734 ts
->stat
= SAS_INTERRUPTED
;
2736 case IO_XFER_ERROR_PHY_NOT_READY
:
2737 PM8001_IO_DBG(pm8001_ha
,
2738 pm8001_printk("IO_XFER_ERROR_PHY_NOT_READY\n"));
2739 ts
->resp
= SAS_TASK_COMPLETE
;
2740 ts
->stat
= SAS_OPEN_REJECT
;
2741 ts
->open_rej_reason
= SAS_OREJ_RSVD_RETRY
;
2743 case IO_OPEN_CNX_ERROR_PROTOCOL_NOT_SUPPORTED
:
2744 PM8001_IO_DBG(pm8001_ha
,
2745 pm8001_printk("IO_OPEN_CNX_ERROR_PROTOCOL_NOT"
2747 ts
->resp
= SAS_TASK_COMPLETE
;
2748 ts
->stat
= SAS_OPEN_REJECT
;
2749 ts
->open_rej_reason
= SAS_OREJ_EPROTO
;
2751 case IO_OPEN_CNX_ERROR_ZONE_VIOLATION
:
2752 PM8001_IO_DBG(pm8001_ha
,
2753 pm8001_printk("IO_OPEN_CNX_ERROR_ZONE_VIOLATION\n"));
2754 ts
->resp
= SAS_TASK_COMPLETE
;
2755 ts
->stat
= SAS_OPEN_REJECT
;
2756 ts
->open_rej_reason
= SAS_OREJ_UNKNOWN
;
2758 case IO_OPEN_CNX_ERROR_BREAK
:
2759 PM8001_IO_DBG(pm8001_ha
,
2760 pm8001_printk("IO_OPEN_CNX_ERROR_BREAK\n"));
2761 ts
->resp
= SAS_TASK_COMPLETE
;
2762 ts
->stat
= SAS_OPEN_REJECT
;
2763 ts
->open_rej_reason
= SAS_OREJ_RSVD_CONT0
;
2765 case IO_OPEN_CNX_ERROR_IT_NEXUS_LOSS
:
2766 PM8001_IO_DBG(pm8001_ha
,
2767 pm8001_printk("IO_OPEN_CNX_ERROR_IT_NEXUS_LOSS\n"));
2768 ts
->resp
= SAS_TASK_UNDELIVERED
;
2769 ts
->stat
= SAS_DEV_NO_RESPONSE
;
2770 if (!t
->uldd_task
) {
2771 pm8001_handle_event(pm8001_ha
,
2773 IO_OPEN_CNX_ERROR_IT_NEXUS_LOSS
);
2774 ts
->resp
= SAS_TASK_COMPLETE
;
2775 ts
->stat
= SAS_QUEUE_FULL
;
2776 pm8001_ccb_task_free_done(pm8001_ha
, t
, ccb
, tag
);
2780 case IO_OPEN_CNX_ERROR_BAD_DESTINATION
:
2781 PM8001_IO_DBG(pm8001_ha
,
2782 pm8001_printk("IO_OPEN_CNX_ERROR_BAD_DESTINATION\n"));
2783 ts
->resp
= SAS_TASK_UNDELIVERED
;
2784 ts
->stat
= SAS_OPEN_REJECT
;
2785 ts
->open_rej_reason
= SAS_OREJ_BAD_DEST
;
2787 case IO_OPEN_CNX_ERROR_CONNECTION_RATE_NOT_SUPPORTED
:
2788 PM8001_IO_DBG(pm8001_ha
,
2789 pm8001_printk("IO_OPEN_CNX_ERROR_CONNECTION_RATE_"
2790 "NOT_SUPPORTED\n"));
2791 ts
->resp
= SAS_TASK_COMPLETE
;
2792 ts
->stat
= SAS_OPEN_REJECT
;
2793 ts
->open_rej_reason
= SAS_OREJ_CONN_RATE
;
2795 case IO_OPEN_CNX_ERROR_WRONG_DESTINATION
:
2796 PM8001_IO_DBG(pm8001_ha
,
2797 pm8001_printk("IO_OPEN_CNX_ERROR_WRONG_DESTINATION\n"));
2798 ts
->resp
= SAS_TASK_COMPLETE
;
2799 ts
->stat
= SAS_OPEN_REJECT
;
2800 ts
->open_rej_reason
= SAS_OREJ_WRONG_DEST
;
2802 case IO_XFER_ERROR_NAK_RECEIVED
:
2803 PM8001_IO_DBG(pm8001_ha
,
2804 pm8001_printk("IO_XFER_ERROR_NAK_RECEIVED\n"));
2805 ts
->resp
= SAS_TASK_COMPLETE
;
2806 ts
->stat
= SAS_NAK_R_ERR
;
2808 case IO_XFER_ERROR_PEER_ABORTED
:
2809 PM8001_IO_DBG(pm8001_ha
,
2810 pm8001_printk("IO_XFER_ERROR_PEER_ABORTED\n"));
2811 ts
->resp
= SAS_TASK_COMPLETE
;
2812 ts
->stat
= SAS_NAK_R_ERR
;
2814 case IO_XFER_ERROR_REJECTED_NCQ_MODE
:
2815 PM8001_IO_DBG(pm8001_ha
,
2816 pm8001_printk("IO_XFER_ERROR_REJECTED_NCQ_MODE\n"));
2817 ts
->resp
= SAS_TASK_COMPLETE
;
2818 ts
->stat
= SAS_DATA_UNDERRUN
;
2820 case IO_XFER_OPEN_RETRY_TIMEOUT
:
2821 PM8001_IO_DBG(pm8001_ha
,
2822 pm8001_printk("IO_XFER_OPEN_RETRY_TIMEOUT\n"));
2823 ts
->resp
= SAS_TASK_COMPLETE
;
2824 ts
->stat
= SAS_OPEN_TO
;
2826 case IO_XFER_ERROR_UNEXPECTED_PHASE
:
2827 PM8001_IO_DBG(pm8001_ha
,
2828 pm8001_printk("IO_XFER_ERROR_UNEXPECTED_PHASE\n"));
2829 ts
->resp
= SAS_TASK_COMPLETE
;
2830 ts
->stat
= SAS_OPEN_TO
;
2832 case IO_XFER_ERROR_XFER_RDY_OVERRUN
:
2833 PM8001_IO_DBG(pm8001_ha
,
2834 pm8001_printk("IO_XFER_ERROR_XFER_RDY_OVERRUN\n"));
2835 ts
->resp
= SAS_TASK_COMPLETE
;
2836 ts
->stat
= SAS_OPEN_TO
;
2838 case IO_XFER_ERROR_XFER_RDY_NOT_EXPECTED
:
2839 PM8001_IO_DBG(pm8001_ha
,
2840 pm8001_printk("IO_XFER_ERROR_XFER_RDY_NOT_EXPECTED\n"));
2841 ts
->resp
= SAS_TASK_COMPLETE
;
2842 ts
->stat
= SAS_OPEN_TO
;
2844 case IO_XFER_ERROR_OFFSET_MISMATCH
:
2845 PM8001_IO_DBG(pm8001_ha
,
2846 pm8001_printk("IO_XFER_ERROR_OFFSET_MISMATCH\n"));
2847 ts
->resp
= SAS_TASK_COMPLETE
;
2848 ts
->stat
= SAS_OPEN_TO
;
2850 case IO_XFER_ERROR_XFER_ZERO_DATA_LEN
:
2851 PM8001_IO_DBG(pm8001_ha
,
2852 pm8001_printk("IO_XFER_ERROR_XFER_ZERO_DATA_LEN\n"));
2853 ts
->resp
= SAS_TASK_COMPLETE
;
2854 ts
->stat
= SAS_OPEN_TO
;
2856 case IO_XFER_CMD_FRAME_ISSUED
:
2857 PM8001_IO_DBG(pm8001_ha
,
2858 pm8001_printk("IO_XFER_CMD_FRAME_ISSUED\n"));
2860 case IO_XFER_PIO_SETUP_ERROR
:
2861 PM8001_IO_DBG(pm8001_ha
,
2862 pm8001_printk("IO_XFER_PIO_SETUP_ERROR\n"));
2863 ts
->resp
= SAS_TASK_COMPLETE
;
2864 ts
->stat
= SAS_OPEN_TO
;
2867 PM8001_IO_DBG(pm8001_ha
,
2868 pm8001_printk("Unknown status 0x%x\n", event
));
2869 /* not allowed case. Therefore, return failed status */
2870 ts
->resp
= SAS_TASK_COMPLETE
;
2871 ts
->stat
= SAS_OPEN_TO
;
2874 spin_lock_irqsave(&t
->task_state_lock
, flags
);
2875 t
->task_state_flags
&= ~SAS_TASK_STATE_PENDING
;
2876 t
->task_state_flags
&= ~SAS_TASK_AT_INITIATOR
;
2877 t
->task_state_flags
|= SAS_TASK_STATE_DONE
;
2878 if (unlikely((t
->task_state_flags
& SAS_TASK_STATE_ABORTED
))) {
2879 spin_unlock_irqrestore(&t
->task_state_lock
, flags
);
2880 PM8001_FAIL_DBG(pm8001_ha
,
2881 pm8001_printk("task 0x%p done with io_status 0x%x"
2882 " resp 0x%x stat 0x%x but aborted by upper layer!\n",
2883 t
, event
, ts
->resp
, ts
->stat
));
2884 pm8001_ccb_task_free(pm8001_ha
, t
, ccb
, tag
);
2886 spin_unlock_irqrestore(&t
->task_state_lock
, flags
);
2887 pm8001_ccb_task_free_done(pm8001_ha
, t
, ccb
, tag
);
2891 /*See the comments for mpi_ssp_completion */
2893 mpi_smp_completion(struct pm8001_hba_info
*pm8001_ha
, void *piomb
)
2897 struct pm8001_ccb_info
*ccb
;
2898 unsigned long flags
;
2901 struct smp_completion_resp
*psmpPayload
;
2902 struct task_status_struct
*ts
;
2903 struct pm8001_device
*pm8001_dev
;
2905 psmpPayload
= (struct smp_completion_resp
*)(piomb
+ 4);
2906 status
= le32_to_cpu(psmpPayload
->status
);
2907 tag
= le32_to_cpu(psmpPayload
->tag
);
2909 ccb
= &pm8001_ha
->ccb_info
[tag
];
2910 param
= le32_to_cpu(psmpPayload
->param
);
2912 ts
= &t
->task_status
;
2913 pm8001_dev
= ccb
->device
;
2915 PM8001_FAIL_DBG(pm8001_ha
,
2916 pm8001_printk("smp IO status 0x%x\n", status
));
2917 if (unlikely(!t
|| !t
->lldd_task
|| !t
->dev
))
2922 PM8001_IO_DBG(pm8001_ha
, pm8001_printk("IO_SUCCESS\n"));
2923 ts
->resp
= SAS_TASK_COMPLETE
;
2924 ts
->stat
= SAM_STAT_GOOD
;
2926 pm8001_dev
->running_req
--;
2929 PM8001_IO_DBG(pm8001_ha
,
2930 pm8001_printk("IO_ABORTED IOMB\n"));
2931 ts
->resp
= SAS_TASK_COMPLETE
;
2932 ts
->stat
= SAS_ABORTED_TASK
;
2934 pm8001_dev
->running_req
--;
2937 PM8001_IO_DBG(pm8001_ha
, pm8001_printk("IO_UNDERFLOW\n"));
2938 ts
->resp
= SAS_TASK_COMPLETE
;
2939 ts
->stat
= SAS_DATA_OVERRUN
;
2942 pm8001_dev
->running_req
--;
2945 PM8001_IO_DBG(pm8001_ha
, pm8001_printk("IO_NO_DEVICE\n"));
2946 ts
->resp
= SAS_TASK_COMPLETE
;
2947 ts
->stat
= SAS_PHY_DOWN
;
2949 case IO_ERROR_HW_TIMEOUT
:
2950 PM8001_IO_DBG(pm8001_ha
,
2951 pm8001_printk("IO_ERROR_HW_TIMEOUT\n"));
2952 ts
->resp
= SAS_TASK_COMPLETE
;
2953 ts
->stat
= SAM_STAT_BUSY
;
2955 case IO_XFER_ERROR_BREAK
:
2956 PM8001_IO_DBG(pm8001_ha
,
2957 pm8001_printk("IO_XFER_ERROR_BREAK\n"));
2958 ts
->resp
= SAS_TASK_COMPLETE
;
2959 ts
->stat
= SAM_STAT_BUSY
;
2961 case IO_XFER_ERROR_PHY_NOT_READY
:
2962 PM8001_IO_DBG(pm8001_ha
,
2963 pm8001_printk("IO_XFER_ERROR_PHY_NOT_READY\n"));
2964 ts
->resp
= SAS_TASK_COMPLETE
;
2965 ts
->stat
= SAM_STAT_BUSY
;
2967 case IO_OPEN_CNX_ERROR_PROTOCOL_NOT_SUPPORTED
:
2968 PM8001_IO_DBG(pm8001_ha
,
2969 pm8001_printk("IO_OPEN_CNX_ERROR_PROTOCOL_NOT_SUPPORTED\n"));
2970 ts
->resp
= SAS_TASK_COMPLETE
;
2971 ts
->stat
= SAS_OPEN_REJECT
;
2972 ts
->open_rej_reason
= SAS_OREJ_UNKNOWN
;
2974 case IO_OPEN_CNX_ERROR_ZONE_VIOLATION
:
2975 PM8001_IO_DBG(pm8001_ha
,
2976 pm8001_printk("IO_OPEN_CNX_ERROR_ZONE_VIOLATION\n"));
2977 ts
->resp
= SAS_TASK_COMPLETE
;
2978 ts
->stat
= SAS_OPEN_REJECT
;
2979 ts
->open_rej_reason
= SAS_OREJ_UNKNOWN
;
2981 case IO_OPEN_CNX_ERROR_BREAK
:
2982 PM8001_IO_DBG(pm8001_ha
,
2983 pm8001_printk("IO_OPEN_CNX_ERROR_BREAK\n"));
2984 ts
->resp
= SAS_TASK_COMPLETE
;
2985 ts
->stat
= SAS_OPEN_REJECT
;
2986 ts
->open_rej_reason
= SAS_OREJ_RSVD_CONT0
;
2988 case IO_OPEN_CNX_ERROR_IT_NEXUS_LOSS
:
2989 PM8001_IO_DBG(pm8001_ha
,
2990 pm8001_printk("IO_OPEN_CNX_ERROR_IT_NEXUS_LOSS\n"));
2991 ts
->resp
= SAS_TASK_COMPLETE
;
2992 ts
->stat
= SAS_OPEN_REJECT
;
2993 ts
->open_rej_reason
= SAS_OREJ_UNKNOWN
;
2994 pm8001_handle_event(pm8001_ha
,
2996 IO_OPEN_CNX_ERROR_IT_NEXUS_LOSS
);
2998 case IO_OPEN_CNX_ERROR_BAD_DESTINATION
:
2999 PM8001_IO_DBG(pm8001_ha
,
3000 pm8001_printk("IO_OPEN_CNX_ERROR_BAD_DESTINATION\n"));
3001 ts
->resp
= SAS_TASK_COMPLETE
;
3002 ts
->stat
= SAS_OPEN_REJECT
;
3003 ts
->open_rej_reason
= SAS_OREJ_BAD_DEST
;
3005 case IO_OPEN_CNX_ERROR_CONNECTION_RATE_NOT_SUPPORTED
:
3006 PM8001_IO_DBG(pm8001_ha
,
3007 pm8001_printk("IO_OPEN_CNX_ERROR_CONNECTION_RATE_"
3008 "NOT_SUPPORTED\n"));
3009 ts
->resp
= SAS_TASK_COMPLETE
;
3010 ts
->stat
= SAS_OPEN_REJECT
;
3011 ts
->open_rej_reason
= SAS_OREJ_CONN_RATE
;
3013 case IO_OPEN_CNX_ERROR_WRONG_DESTINATION
:
3014 PM8001_IO_DBG(pm8001_ha
,
3015 pm8001_printk("IO_OPEN_CNX_ERROR_WRONG_DESTINATION\n"));
3016 ts
->resp
= SAS_TASK_COMPLETE
;
3017 ts
->stat
= SAS_OPEN_REJECT
;
3018 ts
->open_rej_reason
= SAS_OREJ_WRONG_DEST
;
3020 case IO_XFER_ERROR_RX_FRAME
:
3021 PM8001_IO_DBG(pm8001_ha
,
3022 pm8001_printk("IO_XFER_ERROR_RX_FRAME\n"));
3023 ts
->resp
= SAS_TASK_COMPLETE
;
3024 ts
->stat
= SAS_DEV_NO_RESPONSE
;
3026 case IO_XFER_OPEN_RETRY_TIMEOUT
:
3027 PM8001_IO_DBG(pm8001_ha
,
3028 pm8001_printk("IO_XFER_OPEN_RETRY_TIMEOUT\n"));
3029 ts
->resp
= SAS_TASK_COMPLETE
;
3030 ts
->stat
= SAS_OPEN_REJECT
;
3031 ts
->open_rej_reason
= SAS_OREJ_RSVD_RETRY
;
3033 case IO_ERROR_INTERNAL_SMP_RESOURCE
:
3034 PM8001_IO_DBG(pm8001_ha
,
3035 pm8001_printk("IO_ERROR_INTERNAL_SMP_RESOURCE\n"));
3036 ts
->resp
= SAS_TASK_COMPLETE
;
3037 ts
->stat
= SAS_QUEUE_FULL
;
3039 case IO_PORT_IN_RESET
:
3040 PM8001_IO_DBG(pm8001_ha
,
3041 pm8001_printk("IO_PORT_IN_RESET\n"));
3042 ts
->resp
= SAS_TASK_COMPLETE
;
3043 ts
->stat
= SAS_OPEN_REJECT
;
3044 ts
->open_rej_reason
= SAS_OREJ_RSVD_RETRY
;
3046 case IO_DS_NON_OPERATIONAL
:
3047 PM8001_IO_DBG(pm8001_ha
,
3048 pm8001_printk("IO_DS_NON_OPERATIONAL\n"));
3049 ts
->resp
= SAS_TASK_COMPLETE
;
3050 ts
->stat
= SAS_DEV_NO_RESPONSE
;
3052 case IO_DS_IN_RECOVERY
:
3053 PM8001_IO_DBG(pm8001_ha
,
3054 pm8001_printk("IO_DS_IN_RECOVERY\n"));
3055 ts
->resp
= SAS_TASK_COMPLETE
;
3056 ts
->stat
= SAS_OPEN_REJECT
;
3057 ts
->open_rej_reason
= SAS_OREJ_RSVD_RETRY
;
3059 case IO_OPEN_CNX_ERROR_HW_RESOURCE_BUSY
:
3060 PM8001_IO_DBG(pm8001_ha
,
3061 pm8001_printk("IO_OPEN_CNX_ERROR_HW_RESOURCE_BUSY\n"));
3062 ts
->resp
= SAS_TASK_COMPLETE
;
3063 ts
->stat
= SAS_OPEN_REJECT
;
3064 ts
->open_rej_reason
= SAS_OREJ_RSVD_RETRY
;
3067 PM8001_IO_DBG(pm8001_ha
,
3068 pm8001_printk("Unknown status 0x%x\n", status
));
3069 ts
->resp
= SAS_TASK_COMPLETE
;
3070 ts
->stat
= SAS_DEV_NO_RESPONSE
;
3071 /* not allowed case. Therefore, return failed status */
3074 spin_lock_irqsave(&t
->task_state_lock
, flags
);
3075 t
->task_state_flags
&= ~SAS_TASK_STATE_PENDING
;
3076 t
->task_state_flags
&= ~SAS_TASK_AT_INITIATOR
;
3077 t
->task_state_flags
|= SAS_TASK_STATE_DONE
;
3078 if (unlikely((t
->task_state_flags
& SAS_TASK_STATE_ABORTED
))) {
3079 spin_unlock_irqrestore(&t
->task_state_lock
, flags
);
3080 PM8001_FAIL_DBG(pm8001_ha
, pm8001_printk("task 0x%p done with"
3081 " io_status 0x%x resp 0x%x "
3082 "stat 0x%x but aborted by upper layer!\n",
3083 t
, status
, ts
->resp
, ts
->stat
));
3084 pm8001_ccb_task_free(pm8001_ha
, t
, ccb
, tag
);
3086 spin_unlock_irqrestore(&t
->task_state_lock
, flags
);
3087 pm8001_ccb_task_free(pm8001_ha
, t
, ccb
, tag
);
3088 mb();/* in order to force CPU ordering */
3093 void pm8001_mpi_set_dev_state_resp(struct pm8001_hba_info
*pm8001_ha
,
3096 struct set_dev_state_resp
*pPayload
=
3097 (struct set_dev_state_resp
*)(piomb
+ 4);
3098 u32 tag
= le32_to_cpu(pPayload
->tag
);
3099 struct pm8001_ccb_info
*ccb
= &pm8001_ha
->ccb_info
[tag
];
3100 struct pm8001_device
*pm8001_dev
= ccb
->device
;
3101 u32 status
= le32_to_cpu(pPayload
->status
);
3102 u32 device_id
= le32_to_cpu(pPayload
->device_id
);
3103 u8 pds
= le32_to_cpu(pPayload
->pds_nds
) & PDS_BITS
;
3104 u8 nds
= le32_to_cpu(pPayload
->pds_nds
) & NDS_BITS
;
3105 PM8001_MSG_DBG(pm8001_ha
, pm8001_printk("Set device id = 0x%x state "
3106 "from 0x%x to 0x%x status = 0x%x!\n",
3107 device_id
, pds
, nds
, status
));
3108 complete(pm8001_dev
->setds_completion
);
3110 ccb
->ccb_tag
= 0xFFFFFFFF;
3111 pm8001_tag_free(pm8001_ha
, tag
);
3114 void pm8001_mpi_set_nvmd_resp(struct pm8001_hba_info
*pm8001_ha
, void *piomb
)
3116 struct get_nvm_data_resp
*pPayload
=
3117 (struct get_nvm_data_resp
*)(piomb
+ 4);
3118 u32 tag
= le32_to_cpu(pPayload
->tag
);
3119 struct pm8001_ccb_info
*ccb
= &pm8001_ha
->ccb_info
[tag
];
3120 u32 dlen_status
= le32_to_cpu(pPayload
->dlen_status
);
3121 complete(pm8001_ha
->nvmd_completion
);
3122 PM8001_MSG_DBG(pm8001_ha
, pm8001_printk("Set nvm data complete!\n"));
3123 if ((dlen_status
& NVMD_STAT
) != 0) {
3124 PM8001_FAIL_DBG(pm8001_ha
,
3125 pm8001_printk("Set nvm data error!\n"));
3129 ccb
->ccb_tag
= 0xFFFFFFFF;
3130 pm8001_tag_free(pm8001_ha
, tag
);
3134 pm8001_mpi_get_nvmd_resp(struct pm8001_hba_info
*pm8001_ha
, void *piomb
)
3136 struct fw_control_ex
*fw_control_context
;
3137 struct get_nvm_data_resp
*pPayload
=
3138 (struct get_nvm_data_resp
*)(piomb
+ 4);
3139 u32 tag
= le32_to_cpu(pPayload
->tag
);
3140 struct pm8001_ccb_info
*ccb
= &pm8001_ha
->ccb_info
[tag
];
3141 u32 dlen_status
= le32_to_cpu(pPayload
->dlen_status
);
3142 u32 ir_tds_bn_dps_das_nvm
=
3143 le32_to_cpu(pPayload
->ir_tda_bn_dps_das_nvm
);
3144 void *virt_addr
= pm8001_ha
->memoryMap
.region
[NVMD
].virt_ptr
;
3145 fw_control_context
= ccb
->fw_control_context
;
3147 PM8001_MSG_DBG(pm8001_ha
, pm8001_printk("Get nvm data complete!\n"));
3148 if ((dlen_status
& NVMD_STAT
) != 0) {
3149 PM8001_FAIL_DBG(pm8001_ha
,
3150 pm8001_printk("Get nvm data error!\n"));
3151 complete(pm8001_ha
->nvmd_completion
);
3155 if (ir_tds_bn_dps_das_nvm
& IPMode
) {
3156 /* indirect mode - IR bit set */
3157 PM8001_MSG_DBG(pm8001_ha
,
3158 pm8001_printk("Get NVMD success, IR=1\n"));
3159 if ((ir_tds_bn_dps_das_nvm
& NVMD_TYPE
) == TWI_DEVICE
) {
3160 if (ir_tds_bn_dps_das_nvm
== 0x80a80200) {
3161 memcpy(pm8001_ha
->sas_addr
,
3162 ((u8
*)virt_addr
+ 4),
3164 PM8001_MSG_DBG(pm8001_ha
,
3165 pm8001_printk("Get SAS address"
3166 " from VPD successfully!\n"));
3168 } else if (((ir_tds_bn_dps_das_nvm
& NVMD_TYPE
) == C_SEEPROM
)
3169 || ((ir_tds_bn_dps_das_nvm
& NVMD_TYPE
) == VPD_FLASH
) ||
3170 ((ir_tds_bn_dps_das_nvm
& NVMD_TYPE
) == EXPAN_ROM
)) {
3172 } else if (((ir_tds_bn_dps_das_nvm
& NVMD_TYPE
) == AAP1_RDUMP
)
3173 || ((ir_tds_bn_dps_das_nvm
& NVMD_TYPE
) == IOP_RDUMP
)) {
3176 /* Should not be happened*/
3177 PM8001_MSG_DBG(pm8001_ha
,
3178 pm8001_printk("(IR=1)Wrong Device type 0x%x\n",
3179 ir_tds_bn_dps_das_nvm
));
3181 } else /* direct mode */{
3182 PM8001_MSG_DBG(pm8001_ha
,
3183 pm8001_printk("Get NVMD success, IR=0, dataLen=%d\n",
3184 (dlen_status
& NVMD_LEN
) >> 24));
3186 /* Though fw_control_context is freed below, usrAddr still needs
3187 * to be updated as this holds the response to the request function
3189 memcpy(fw_control_context
->usrAddr
,
3190 pm8001_ha
->memoryMap
.region
[NVMD
].virt_ptr
,
3191 fw_control_context
->len
);
3192 kfree(ccb
->fw_control_context
);
3194 ccb
->ccb_tag
= 0xFFFFFFFF;
3195 pm8001_tag_free(pm8001_ha
, tag
);
3196 complete(pm8001_ha
->nvmd_completion
);
3199 int pm8001_mpi_local_phy_ctl(struct pm8001_hba_info
*pm8001_ha
, void *piomb
)
3201 struct local_phy_ctl_resp
*pPayload
=
3202 (struct local_phy_ctl_resp
*)(piomb
+ 4);
3203 u32 status
= le32_to_cpu(pPayload
->status
);
3204 u32 phy_id
= le32_to_cpu(pPayload
->phyop_phyid
) & ID_BITS
;
3205 u32 phy_op
= le32_to_cpu(pPayload
->phyop_phyid
) & OP_BITS
;
3207 PM8001_MSG_DBG(pm8001_ha
,
3208 pm8001_printk("%x phy execute %x phy op failed!\n",
3211 PM8001_MSG_DBG(pm8001_ha
,
3212 pm8001_printk("%x phy execute %x phy op success!\n",
3218 * pm8001_bytes_dmaed - one of the interface function communication with libsas
3219 * @pm8001_ha: our hba card information
3220 * @i: which phy that received the event.
3222 * when HBA driver received the identify done event or initiate FIS received
3223 * event(for SATA), it will invoke this function to notify the sas layer that
3224 * the sas toplogy has formed, please discover the the whole sas domain,
3225 * while receive a broadcast(change) primitive just tell the sas
3226 * layer to discover the changed domain rather than the whole domain.
3228 void pm8001_bytes_dmaed(struct pm8001_hba_info
*pm8001_ha
, int i
)
3230 struct pm8001_phy
*phy
= &pm8001_ha
->phy
[i
];
3231 struct asd_sas_phy
*sas_phy
= &phy
->sas_phy
;
3232 struct sas_ha_struct
*sas_ha
;
3233 if (!phy
->phy_attached
)
3236 sas_ha
= pm8001_ha
->sas
;
3238 struct sas_phy
*sphy
= sas_phy
->phy
;
3239 sphy
->negotiated_linkrate
= sas_phy
->linkrate
;
3240 sphy
->minimum_linkrate
= phy
->minimum_linkrate
;
3241 sphy
->minimum_linkrate_hw
= SAS_LINK_RATE_1_5_GBPS
;
3242 sphy
->maximum_linkrate
= phy
->maximum_linkrate
;
3243 sphy
->maximum_linkrate_hw
= phy
->maximum_linkrate
;
3246 if (phy
->phy_type
& PORT_TYPE_SAS
) {
3247 struct sas_identify_frame
*id
;
3248 id
= (struct sas_identify_frame
*)phy
->frame_rcvd
;
3249 id
->dev_type
= phy
->identify
.device_type
;
3250 id
->initiator_bits
= SAS_PROTOCOL_ALL
;
3251 id
->target_bits
= phy
->identify
.target_port_protocols
;
3252 } else if (phy
->phy_type
& PORT_TYPE_SATA
) {
3255 PM8001_MSG_DBG(pm8001_ha
, pm8001_printk("phy %d byte dmaded.\n", i
));
3257 sas_phy
->frame_rcvd_size
= phy
->frame_rcvd_size
;
3258 pm8001_ha
->sas
->notify_port_event(sas_phy
, PORTE_BYTES_DMAED
);
3261 /* Get the link rate speed */
3262 void pm8001_get_lrate_mode(struct pm8001_phy
*phy
, u8 link_rate
)
3264 struct sas_phy
*sas_phy
= phy
->sas_phy
.phy
;
3266 switch (link_rate
) {
3268 phy
->sas_phy
.linkrate
= SAS_LINK_RATE_12_0_GBPS
;
3269 phy
->sas_phy
.phy
->negotiated_linkrate
= SAS_LINK_RATE_12_0_GBPS
;
3272 phy
->sas_phy
.linkrate
= SAS_LINK_RATE_6_0_GBPS
;
3273 phy
->sas_phy
.phy
->negotiated_linkrate
= SAS_LINK_RATE_6_0_GBPS
;
3276 phy
->sas_phy
.linkrate
= SAS_LINK_RATE_3_0_GBPS
;
3277 phy
->sas_phy
.phy
->negotiated_linkrate
= SAS_LINK_RATE_3_0_GBPS
;
3280 phy
->sas_phy
.linkrate
= SAS_LINK_RATE_1_5_GBPS
;
3281 phy
->sas_phy
.phy
->negotiated_linkrate
= SAS_LINK_RATE_1_5_GBPS
;
3284 sas_phy
->negotiated_linkrate
= phy
->sas_phy
.linkrate
;
3285 sas_phy
->maximum_linkrate_hw
= SAS_LINK_RATE_6_0_GBPS
;
3286 sas_phy
->minimum_linkrate_hw
= SAS_LINK_RATE_1_5_GBPS
;
3287 sas_phy
->maximum_linkrate
= SAS_LINK_RATE_6_0_GBPS
;
3288 sas_phy
->minimum_linkrate
= SAS_LINK_RATE_1_5_GBPS
;
3292 * asd_get_attached_sas_addr -- extract/generate attached SAS address
3293 * @phy: pointer to asd_phy
3294 * @sas_addr: pointer to buffer where the SAS address is to be written
3296 * This function extracts the SAS address from an IDENTIFY frame
3297 * received. If OOB is SATA, then a SAS address is generated from the
3300 * LOCKING: the frame_rcvd_lock needs to be held since this parses the frame
3303 void pm8001_get_attached_sas_addr(struct pm8001_phy
*phy
,
3306 if (phy
->sas_phy
.frame_rcvd
[0] == 0x34
3307 && phy
->sas_phy
.oob_mode
== SATA_OOB_MODE
) {
3308 struct pm8001_hba_info
*pm8001_ha
= phy
->sas_phy
.ha
->lldd_ha
;
3309 /* FIS device-to-host */
3310 u64 addr
= be64_to_cpu(*(__be64
*)pm8001_ha
->sas_addr
);
3311 addr
+= phy
->sas_phy
.id
;
3312 *(__be64
*)sas_addr
= cpu_to_be64(addr
);
3314 struct sas_identify_frame
*idframe
=
3315 (void *) phy
->sas_phy
.frame_rcvd
;
3316 memcpy(sas_addr
, idframe
->sas_addr
, SAS_ADDR_SIZE
);
3321 * pm8001_hw_event_ack_req- For PM8001,some events need to acknowage to FW.
3322 * @pm8001_ha: our hba card information
3323 * @Qnum: the outbound queue message number.
3324 * @SEA: source of event to ack
3325 * @port_id: port id.
3327 * @param0: parameter 0.
3328 * @param1: parameter 1.
3330 static void pm8001_hw_event_ack_req(struct pm8001_hba_info
*pm8001_ha
,
3331 u32 Qnum
, u32 SEA
, u32 port_id
, u32 phyId
, u32 param0
, u32 param1
)
3333 struct hw_event_ack_req payload
;
3334 u32 opc
= OPC_INB_SAS_HW_EVENT_ACK
;
3336 struct inbound_queue_table
*circularQ
;
3338 memset((u8
*)&payload
, 0, sizeof(payload
));
3339 circularQ
= &pm8001_ha
->inbnd_q_tbl
[Qnum
];
3340 payload
.tag
= cpu_to_le32(1);
3341 payload
.sea_phyid_portid
= cpu_to_le32(((SEA
& 0xFFFF) << 8) |
3342 ((phyId
& 0x0F) << 4) | (port_id
& 0x0F));
3343 payload
.param0
= cpu_to_le32(param0
);
3344 payload
.param1
= cpu_to_le32(param1
);
3345 pm8001_mpi_build_cmd(pm8001_ha
, circularQ
, opc
, &payload
, 0);
3348 static int pm8001_chip_phy_ctl_req(struct pm8001_hba_info
*pm8001_ha
,
3349 u32 phyId
, u32 phy_op
);
3352 * hw_event_sas_phy_up -FW tells me a SAS phy up event.
3353 * @pm8001_ha: our hba card information
3354 * @piomb: IO message buffer
3357 hw_event_sas_phy_up(struct pm8001_hba_info
*pm8001_ha
, void *piomb
)
3359 struct hw_event_resp
*pPayload
=
3360 (struct hw_event_resp
*)(piomb
+ 4);
3361 u32 lr_evt_status_phyid_portid
=
3362 le32_to_cpu(pPayload
->lr_evt_status_phyid_portid
);
3364 (u8
)((lr_evt_status_phyid_portid
& 0xF0000000) >> 28);
3365 u8 port_id
= (u8
)(lr_evt_status_phyid_portid
& 0x0000000F);
3367 (u8
)((lr_evt_status_phyid_portid
& 0x000000F0) >> 4);
3368 u32 npip_portstate
= le32_to_cpu(pPayload
->npip_portstate
);
3369 u8 portstate
= (u8
)(npip_portstate
& 0x0000000F);
3370 struct pm8001_port
*port
= &pm8001_ha
->port
[port_id
];
3371 struct sas_ha_struct
*sas_ha
= pm8001_ha
->sas
;
3372 struct pm8001_phy
*phy
= &pm8001_ha
->phy
[phy_id
];
3373 unsigned long flags
;
3374 u8 deviceType
= pPayload
->sas_identify
.dev_type
;
3375 port
->port_state
= portstate
;
3376 phy
->phy_state
= PHY_STATE_LINK_UP_SPC
;
3377 PM8001_MSG_DBG(pm8001_ha
,
3378 pm8001_printk("HW_EVENT_SAS_PHY_UP port id = %d, phy id = %d\n",
3381 switch (deviceType
) {
3382 case SAS_PHY_UNUSED
:
3383 PM8001_MSG_DBG(pm8001_ha
,
3384 pm8001_printk("device type no device.\n"));
3386 case SAS_END_DEVICE
:
3387 PM8001_MSG_DBG(pm8001_ha
, pm8001_printk("end device.\n"));
3388 pm8001_chip_phy_ctl_req(pm8001_ha
, phy_id
,
3389 PHY_NOTIFY_ENABLE_SPINUP
);
3390 port
->port_attached
= 1;
3391 pm8001_get_lrate_mode(phy
, link_rate
);
3393 case SAS_EDGE_EXPANDER_DEVICE
:
3394 PM8001_MSG_DBG(pm8001_ha
,
3395 pm8001_printk("expander device.\n"));
3396 port
->port_attached
= 1;
3397 pm8001_get_lrate_mode(phy
, link_rate
);
3399 case SAS_FANOUT_EXPANDER_DEVICE
:
3400 PM8001_MSG_DBG(pm8001_ha
,
3401 pm8001_printk("fanout expander device.\n"));
3402 port
->port_attached
= 1;
3403 pm8001_get_lrate_mode(phy
, link_rate
);
3406 PM8001_MSG_DBG(pm8001_ha
,
3407 pm8001_printk("unknown device type(%x)\n", deviceType
));
3410 phy
->phy_type
|= PORT_TYPE_SAS
;
3411 phy
->identify
.device_type
= deviceType
;
3412 phy
->phy_attached
= 1;
3413 if (phy
->identify
.device_type
== SAS_END_DEVICE
)
3414 phy
->identify
.target_port_protocols
= SAS_PROTOCOL_SSP
;
3415 else if (phy
->identify
.device_type
!= SAS_PHY_UNUSED
)
3416 phy
->identify
.target_port_protocols
= SAS_PROTOCOL_SMP
;
3417 phy
->sas_phy
.oob_mode
= SAS_OOB_MODE
;
3418 sas_ha
->notify_phy_event(&phy
->sas_phy
, PHYE_OOB_DONE
);
3419 spin_lock_irqsave(&phy
->sas_phy
.frame_rcvd_lock
, flags
);
3420 memcpy(phy
->frame_rcvd
, &pPayload
->sas_identify
,
3421 sizeof(struct sas_identify_frame
)-4);
3422 phy
->frame_rcvd_size
= sizeof(struct sas_identify_frame
) - 4;
3423 pm8001_get_attached_sas_addr(phy
, phy
->sas_phy
.attached_sas_addr
);
3424 spin_unlock_irqrestore(&phy
->sas_phy
.frame_rcvd_lock
, flags
);
3425 if (pm8001_ha
->flags
== PM8001F_RUN_TIME
)
3426 mdelay(200);/*delay a moment to wait disk to spinup*/
3427 pm8001_bytes_dmaed(pm8001_ha
, phy_id
);
3431 * hw_event_sata_phy_up -FW tells me a SATA phy up event.
3432 * @pm8001_ha: our hba card information
3433 * @piomb: IO message buffer
3436 hw_event_sata_phy_up(struct pm8001_hba_info
*pm8001_ha
, void *piomb
)
3438 struct hw_event_resp
*pPayload
=
3439 (struct hw_event_resp
*)(piomb
+ 4);
3440 u32 lr_evt_status_phyid_portid
=
3441 le32_to_cpu(pPayload
->lr_evt_status_phyid_portid
);
3443 (u8
)((lr_evt_status_phyid_portid
& 0xF0000000) >> 28);
3444 u8 port_id
= (u8
)(lr_evt_status_phyid_portid
& 0x0000000F);
3446 (u8
)((lr_evt_status_phyid_portid
& 0x000000F0) >> 4);
3447 u32 npip_portstate
= le32_to_cpu(pPayload
->npip_portstate
);
3448 u8 portstate
= (u8
)(npip_portstate
& 0x0000000F);
3449 struct pm8001_port
*port
= &pm8001_ha
->port
[port_id
];
3450 struct sas_ha_struct
*sas_ha
= pm8001_ha
->sas
;
3451 struct pm8001_phy
*phy
= &pm8001_ha
->phy
[phy_id
];
3452 unsigned long flags
;
3453 PM8001_MSG_DBG(pm8001_ha
,
3454 pm8001_printk("HW_EVENT_SATA_PHY_UP port id = %d,"
3455 " phy id = %d\n", port_id
, phy_id
));
3456 port
->port_state
= portstate
;
3457 phy
->phy_state
= PHY_STATE_LINK_UP_SPC
;
3458 port
->port_attached
= 1;
3459 pm8001_get_lrate_mode(phy
, link_rate
);
3460 phy
->phy_type
|= PORT_TYPE_SATA
;
3461 phy
->phy_attached
= 1;
3462 phy
->sas_phy
.oob_mode
= SATA_OOB_MODE
;
3463 sas_ha
->notify_phy_event(&phy
->sas_phy
, PHYE_OOB_DONE
);
3464 spin_lock_irqsave(&phy
->sas_phy
.frame_rcvd_lock
, flags
);
3465 memcpy(phy
->frame_rcvd
, ((u8
*)&pPayload
->sata_fis
- 4),
3466 sizeof(struct dev_to_host_fis
));
3467 phy
->frame_rcvd_size
= sizeof(struct dev_to_host_fis
);
3468 phy
->identify
.target_port_protocols
= SAS_PROTOCOL_SATA
;
3469 phy
->identify
.device_type
= SAS_SATA_DEV
;
3470 pm8001_get_attached_sas_addr(phy
, phy
->sas_phy
.attached_sas_addr
);
3471 spin_unlock_irqrestore(&phy
->sas_phy
.frame_rcvd_lock
, flags
);
3472 pm8001_bytes_dmaed(pm8001_ha
, phy_id
);
3476 * hw_event_phy_down -we should notify the libsas the phy is down.
3477 * @pm8001_ha: our hba card information
3478 * @piomb: IO message buffer
3481 hw_event_phy_down(struct pm8001_hba_info
*pm8001_ha
, void *piomb
)
3483 struct hw_event_resp
*pPayload
=
3484 (struct hw_event_resp
*)(piomb
+ 4);
3485 u32 lr_evt_status_phyid_portid
=
3486 le32_to_cpu(pPayload
->lr_evt_status_phyid_portid
);
3487 u8 port_id
= (u8
)(lr_evt_status_phyid_portid
& 0x0000000F);
3489 (u8
)((lr_evt_status_phyid_portid
& 0x000000F0) >> 4);
3490 u32 npip_portstate
= le32_to_cpu(pPayload
->npip_portstate
);
3491 u8 portstate
= (u8
)(npip_portstate
& 0x0000000F);
3492 struct pm8001_port
*port
= &pm8001_ha
->port
[port_id
];
3493 struct pm8001_phy
*phy
= &pm8001_ha
->phy
[phy_id
];
3494 port
->port_state
= portstate
;
3496 phy
->identify
.device_type
= 0;
3497 phy
->phy_attached
= 0;
3498 memset(&phy
->dev_sas_addr
, 0, SAS_ADDR_SIZE
);
3499 switch (portstate
) {
3503 PM8001_MSG_DBG(pm8001_ha
,
3504 pm8001_printk(" PortInvalid portID %d\n", port_id
));
3505 PM8001_MSG_DBG(pm8001_ha
,
3506 pm8001_printk(" Last phy Down and port invalid\n"));
3507 port
->port_attached
= 0;
3508 pm8001_hw_event_ack_req(pm8001_ha
, 0, HW_EVENT_PHY_DOWN
,
3509 port_id
, phy_id
, 0, 0);
3512 PM8001_MSG_DBG(pm8001_ha
,
3513 pm8001_printk(" Port In Reset portID %d\n", port_id
));
3515 case PORT_NOT_ESTABLISHED
:
3516 PM8001_MSG_DBG(pm8001_ha
,
3517 pm8001_printk(" phy Down and PORT_NOT_ESTABLISHED\n"));
3518 port
->port_attached
= 0;
3521 PM8001_MSG_DBG(pm8001_ha
,
3522 pm8001_printk(" phy Down and PORT_LOSTCOMM\n"));
3523 PM8001_MSG_DBG(pm8001_ha
,
3524 pm8001_printk(" Last phy Down and port invalid\n"));
3525 port
->port_attached
= 0;
3526 pm8001_hw_event_ack_req(pm8001_ha
, 0, HW_EVENT_PHY_DOWN
,
3527 port_id
, phy_id
, 0, 0);
3530 port
->port_attached
= 0;
3531 PM8001_MSG_DBG(pm8001_ha
,
3532 pm8001_printk(" phy Down and(default) = %x\n",
3540 * pm8001_mpi_reg_resp -process register device ID response.
3541 * @pm8001_ha: our hba card information
3542 * @piomb: IO message buffer
3544 * when sas layer find a device it will notify LLDD, then the driver register
3545 * the domain device to FW, this event is the return device ID which the FW
3546 * has assigned, from now,inter-communication with FW is no longer using the
3547 * SAS address, use device ID which FW assigned.
3549 int pm8001_mpi_reg_resp(struct pm8001_hba_info
*pm8001_ha
, void *piomb
)
3554 struct pm8001_ccb_info
*ccb
;
3555 struct pm8001_device
*pm8001_dev
;
3556 struct dev_reg_resp
*registerRespPayload
=
3557 (struct dev_reg_resp
*)(piomb
+ 4);
3559 htag
= le32_to_cpu(registerRespPayload
->tag
);
3560 ccb
= &pm8001_ha
->ccb_info
[htag
];
3561 pm8001_dev
= ccb
->device
;
3562 status
= le32_to_cpu(registerRespPayload
->status
);
3563 device_id
= le32_to_cpu(registerRespPayload
->device_id
);
3564 PM8001_MSG_DBG(pm8001_ha
,
3565 pm8001_printk(" register device is status = %d\n", status
));
3567 case DEVREG_SUCCESS
:
3568 PM8001_MSG_DBG(pm8001_ha
, pm8001_printk("DEVREG_SUCCESS\n"));
3569 pm8001_dev
->device_id
= device_id
;
3571 case DEVREG_FAILURE_OUT_OF_RESOURCE
:
3572 PM8001_MSG_DBG(pm8001_ha
,
3573 pm8001_printk("DEVREG_FAILURE_OUT_OF_RESOURCE\n"));
3575 case DEVREG_FAILURE_DEVICE_ALREADY_REGISTERED
:
3576 PM8001_MSG_DBG(pm8001_ha
,
3577 pm8001_printk("DEVREG_FAILURE_DEVICE_ALREADY_REGISTERED\n"));
3579 case DEVREG_FAILURE_INVALID_PHY_ID
:
3580 PM8001_MSG_DBG(pm8001_ha
,
3581 pm8001_printk("DEVREG_FAILURE_INVALID_PHY_ID\n"));
3583 case DEVREG_FAILURE_PHY_ID_ALREADY_REGISTERED
:
3584 PM8001_MSG_DBG(pm8001_ha
,
3585 pm8001_printk("DEVREG_FAILURE_PHY_ID_ALREADY_REGISTERED\n"));
3587 case DEVREG_FAILURE_PORT_ID_OUT_OF_RANGE
:
3588 PM8001_MSG_DBG(pm8001_ha
,
3589 pm8001_printk("DEVREG_FAILURE_PORT_ID_OUT_OF_RANGE\n"));
3591 case DEVREG_FAILURE_PORT_NOT_VALID_STATE
:
3592 PM8001_MSG_DBG(pm8001_ha
,
3593 pm8001_printk("DEVREG_FAILURE_PORT_NOT_VALID_STATE\n"));
3595 case DEVREG_FAILURE_DEVICE_TYPE_NOT_VALID
:
3596 PM8001_MSG_DBG(pm8001_ha
,
3597 pm8001_printk("DEVREG_FAILURE_DEVICE_TYPE_NOT_VALID\n"));
3600 PM8001_MSG_DBG(pm8001_ha
,
3601 pm8001_printk("DEVREG_FAILURE_DEVICE_TYPE_NOT_UNSORPORTED\n"));
3604 complete(pm8001_dev
->dcompletion
);
3606 ccb
->ccb_tag
= 0xFFFFFFFF;
3607 pm8001_tag_free(pm8001_ha
, htag
);
3611 int pm8001_mpi_dereg_resp(struct pm8001_hba_info
*pm8001_ha
, void *piomb
)
3615 struct dev_reg_resp
*registerRespPayload
=
3616 (struct dev_reg_resp
*)(piomb
+ 4);
3618 status
= le32_to_cpu(registerRespPayload
->status
);
3619 device_id
= le32_to_cpu(registerRespPayload
->device_id
);
3621 PM8001_MSG_DBG(pm8001_ha
,
3622 pm8001_printk(" deregister device failed ,status = %x"
3623 ", device_id = %x\n", status
, device_id
));
3628 * fw_flash_update_resp - Response from FW for flash update command.
3629 * @pm8001_ha: our hba card information
3630 * @piomb: IO message buffer
3632 int pm8001_mpi_fw_flash_update_resp(struct pm8001_hba_info
*pm8001_ha
,
3636 struct fw_flash_Update_resp
*ppayload
=
3637 (struct fw_flash_Update_resp
*)(piomb
+ 4);
3638 u32 tag
= le32_to_cpu(ppayload
->tag
);
3639 struct pm8001_ccb_info
*ccb
= &pm8001_ha
->ccb_info
[tag
];
3640 status
= le32_to_cpu(ppayload
->status
);
3642 case FLASH_UPDATE_COMPLETE_PENDING_REBOOT
:
3643 PM8001_MSG_DBG(pm8001_ha
,
3644 pm8001_printk(": FLASH_UPDATE_COMPLETE_PENDING_REBOOT\n"));
3646 case FLASH_UPDATE_IN_PROGRESS
:
3647 PM8001_MSG_DBG(pm8001_ha
,
3648 pm8001_printk(": FLASH_UPDATE_IN_PROGRESS\n"));
3650 case FLASH_UPDATE_HDR_ERR
:
3651 PM8001_MSG_DBG(pm8001_ha
,
3652 pm8001_printk(": FLASH_UPDATE_HDR_ERR\n"));
3654 case FLASH_UPDATE_OFFSET_ERR
:
3655 PM8001_MSG_DBG(pm8001_ha
,
3656 pm8001_printk(": FLASH_UPDATE_OFFSET_ERR\n"));
3658 case FLASH_UPDATE_CRC_ERR
:
3659 PM8001_MSG_DBG(pm8001_ha
,
3660 pm8001_printk(": FLASH_UPDATE_CRC_ERR\n"));
3662 case FLASH_UPDATE_LENGTH_ERR
:
3663 PM8001_MSG_DBG(pm8001_ha
,
3664 pm8001_printk(": FLASH_UPDATE_LENGTH_ERR\n"));
3666 case FLASH_UPDATE_HW_ERR
:
3667 PM8001_MSG_DBG(pm8001_ha
,
3668 pm8001_printk(": FLASH_UPDATE_HW_ERR\n"));
3670 case FLASH_UPDATE_DNLD_NOT_SUPPORTED
:
3671 PM8001_MSG_DBG(pm8001_ha
,
3672 pm8001_printk(": FLASH_UPDATE_DNLD_NOT_SUPPORTED\n"));
3674 case FLASH_UPDATE_DISABLED
:
3675 PM8001_MSG_DBG(pm8001_ha
,
3676 pm8001_printk(": FLASH_UPDATE_DISABLED\n"));
3679 PM8001_MSG_DBG(pm8001_ha
,
3680 pm8001_printk("No matched status = %d\n", status
));
3683 kfree(ccb
->fw_control_context
);
3685 ccb
->ccb_tag
= 0xFFFFFFFF;
3686 pm8001_tag_free(pm8001_ha
, tag
);
3687 complete(pm8001_ha
->nvmd_completion
);
3691 int pm8001_mpi_general_event(struct pm8001_hba_info
*pm8001_ha
, void *piomb
)
3695 struct general_event_resp
*pPayload
=
3696 (struct general_event_resp
*)(piomb
+ 4);
3697 status
= le32_to_cpu(pPayload
->status
);
3698 PM8001_MSG_DBG(pm8001_ha
,
3699 pm8001_printk(" status = 0x%x\n", status
));
3700 for (i
= 0; i
< GENERAL_EVENT_PAYLOAD
; i
++)
3701 PM8001_MSG_DBG(pm8001_ha
,
3702 pm8001_printk("inb_IOMB_payload[0x%x] 0x%x,\n", i
,
3703 pPayload
->inb_IOMB_payload
[i
]));
3707 int pm8001_mpi_task_abort_resp(struct pm8001_hba_info
*pm8001_ha
, void *piomb
)
3710 struct pm8001_ccb_info
*ccb
;
3711 unsigned long flags
;
3714 struct task_status_struct
*ts
;
3715 struct pm8001_device
*pm8001_dev
;
3717 struct task_abort_resp
*pPayload
=
3718 (struct task_abort_resp
*)(piomb
+ 4);
3720 status
= le32_to_cpu(pPayload
->status
);
3721 tag
= le32_to_cpu(pPayload
->tag
);
3723 PM8001_FAIL_DBG(pm8001_ha
,
3724 pm8001_printk(" TAG NULL. RETURNING !!!"));
3728 scp
= le32_to_cpu(pPayload
->scp
);
3729 ccb
= &pm8001_ha
->ccb_info
[tag
];
3731 pm8001_dev
= ccb
->device
; /* retrieve device */
3734 PM8001_FAIL_DBG(pm8001_ha
,
3735 pm8001_printk(" TASK NULL. RETURNING !!!"));
3738 ts
= &t
->task_status
;
3740 PM8001_FAIL_DBG(pm8001_ha
,
3741 pm8001_printk("task abort failed status 0x%x ,"
3742 "tag = 0x%x, scp= 0x%x\n", status
, tag
, scp
));
3745 PM8001_EH_DBG(pm8001_ha
, pm8001_printk("IO_SUCCESS\n"));
3746 ts
->resp
= SAS_TASK_COMPLETE
;
3747 ts
->stat
= SAM_STAT_GOOD
;
3750 PM8001_EH_DBG(pm8001_ha
, pm8001_printk("IO_NOT_VALID\n"));
3751 ts
->resp
= TMF_RESP_FUNC_FAILED
;
3754 spin_lock_irqsave(&t
->task_state_lock
, flags
);
3755 t
->task_state_flags
&= ~SAS_TASK_STATE_PENDING
;
3756 t
->task_state_flags
&= ~SAS_TASK_AT_INITIATOR
;
3757 t
->task_state_flags
|= SAS_TASK_STATE_DONE
;
3758 spin_unlock_irqrestore(&t
->task_state_lock
, flags
);
3759 pm8001_ccb_task_free(pm8001_ha
, t
, ccb
, tag
);
3762 if (pm8001_dev
->id
& NCQ_ABORT_ALL_FLAG
) {
3763 pm8001_tag_free(pm8001_ha
, tag
);
3765 /* clear the flag */
3766 pm8001_dev
->id
&= 0xBFFFFFFF;
3774 * mpi_hw_event -The hw event has come.
3775 * @pm8001_ha: our hba card information
3776 * @piomb: IO message buffer
3778 static int mpi_hw_event(struct pm8001_hba_info
*pm8001_ha
, void* piomb
)
3780 unsigned long flags
;
3781 struct hw_event_resp
*pPayload
=
3782 (struct hw_event_resp
*)(piomb
+ 4);
3783 u32 lr_evt_status_phyid_portid
=
3784 le32_to_cpu(pPayload
->lr_evt_status_phyid_portid
);
3785 u8 port_id
= (u8
)(lr_evt_status_phyid_portid
& 0x0000000F);
3787 (u8
)((lr_evt_status_phyid_portid
& 0x000000F0) >> 4);
3789 (u16
)((lr_evt_status_phyid_portid
& 0x00FFFF00) >> 8);
3791 (u8
)((lr_evt_status_phyid_portid
& 0x0F000000) >> 24);
3792 struct sas_ha_struct
*sas_ha
= pm8001_ha
->sas
;
3793 struct pm8001_phy
*phy
= &pm8001_ha
->phy
[phy_id
];
3794 struct asd_sas_phy
*sas_phy
= sas_ha
->sas_phy
[phy_id
];
3795 PM8001_MSG_DBG(pm8001_ha
,
3796 pm8001_printk("outbound queue HW event & event type : "));
3797 switch (eventType
) {
3798 case HW_EVENT_PHY_START_STATUS
:
3799 PM8001_MSG_DBG(pm8001_ha
,
3800 pm8001_printk("HW_EVENT_PHY_START_STATUS"
3801 " status = %x\n", status
));
3804 if (pm8001_ha
->flags
== PM8001F_RUN_TIME
)
3805 complete(phy
->enable_completion
);
3808 case HW_EVENT_SAS_PHY_UP
:
3809 PM8001_MSG_DBG(pm8001_ha
,
3810 pm8001_printk("HW_EVENT_PHY_START_STATUS\n"));
3811 hw_event_sas_phy_up(pm8001_ha
, piomb
);
3813 case HW_EVENT_SATA_PHY_UP
:
3814 PM8001_MSG_DBG(pm8001_ha
,
3815 pm8001_printk("HW_EVENT_SATA_PHY_UP\n"));
3816 hw_event_sata_phy_up(pm8001_ha
, piomb
);
3818 case HW_EVENT_PHY_STOP_STATUS
:
3819 PM8001_MSG_DBG(pm8001_ha
,
3820 pm8001_printk("HW_EVENT_PHY_STOP_STATUS "
3821 "status = %x\n", status
));
3825 case HW_EVENT_SATA_SPINUP_HOLD
:
3826 PM8001_MSG_DBG(pm8001_ha
,
3827 pm8001_printk("HW_EVENT_SATA_SPINUP_HOLD\n"));
3828 sas_ha
->notify_phy_event(&phy
->sas_phy
, PHYE_SPINUP_HOLD
);
3830 case HW_EVENT_PHY_DOWN
:
3831 PM8001_MSG_DBG(pm8001_ha
,
3832 pm8001_printk("HW_EVENT_PHY_DOWN\n"));
3833 sas_ha
->notify_phy_event(&phy
->sas_phy
, PHYE_LOSS_OF_SIGNAL
);
3834 phy
->phy_attached
= 0;
3836 hw_event_phy_down(pm8001_ha
, piomb
);
3838 case HW_EVENT_PORT_INVALID
:
3839 PM8001_MSG_DBG(pm8001_ha
,
3840 pm8001_printk("HW_EVENT_PORT_INVALID\n"));
3841 sas_phy_disconnected(sas_phy
);
3842 phy
->phy_attached
= 0;
3843 sas_ha
->notify_port_event(sas_phy
, PORTE_LINK_RESET_ERR
);
3845 /* the broadcast change primitive received, tell the LIBSAS this event
3846 to revalidate the sas domain*/
3847 case HW_EVENT_BROADCAST_CHANGE
:
3848 PM8001_MSG_DBG(pm8001_ha
,
3849 pm8001_printk("HW_EVENT_BROADCAST_CHANGE\n"));
3850 pm8001_hw_event_ack_req(pm8001_ha
, 0, HW_EVENT_BROADCAST_CHANGE
,
3851 port_id
, phy_id
, 1, 0);
3852 spin_lock_irqsave(&sas_phy
->sas_prim_lock
, flags
);
3853 sas_phy
->sas_prim
= HW_EVENT_BROADCAST_CHANGE
;
3854 spin_unlock_irqrestore(&sas_phy
->sas_prim_lock
, flags
);
3855 sas_ha
->notify_port_event(sas_phy
, PORTE_BROADCAST_RCVD
);
3857 case HW_EVENT_PHY_ERROR
:
3858 PM8001_MSG_DBG(pm8001_ha
,
3859 pm8001_printk("HW_EVENT_PHY_ERROR\n"));
3860 sas_phy_disconnected(&phy
->sas_phy
);
3861 phy
->phy_attached
= 0;
3862 sas_ha
->notify_phy_event(&phy
->sas_phy
, PHYE_OOB_ERROR
);
3864 case HW_EVENT_BROADCAST_EXP
:
3865 PM8001_MSG_DBG(pm8001_ha
,
3866 pm8001_printk("HW_EVENT_BROADCAST_EXP\n"));
3867 spin_lock_irqsave(&sas_phy
->sas_prim_lock
, flags
);
3868 sas_phy
->sas_prim
= HW_EVENT_BROADCAST_EXP
;
3869 spin_unlock_irqrestore(&sas_phy
->sas_prim_lock
, flags
);
3870 sas_ha
->notify_port_event(sas_phy
, PORTE_BROADCAST_RCVD
);
3872 case HW_EVENT_LINK_ERR_INVALID_DWORD
:
3873 PM8001_MSG_DBG(pm8001_ha
,
3874 pm8001_printk("HW_EVENT_LINK_ERR_INVALID_DWORD\n"));
3875 pm8001_hw_event_ack_req(pm8001_ha
, 0,
3876 HW_EVENT_LINK_ERR_INVALID_DWORD
, port_id
, phy_id
, 0, 0);
3877 sas_phy_disconnected(sas_phy
);
3878 phy
->phy_attached
= 0;
3879 sas_ha
->notify_port_event(sas_phy
, PORTE_LINK_RESET_ERR
);
3881 case HW_EVENT_LINK_ERR_DISPARITY_ERROR
:
3882 PM8001_MSG_DBG(pm8001_ha
,
3883 pm8001_printk("HW_EVENT_LINK_ERR_DISPARITY_ERROR\n"));
3884 pm8001_hw_event_ack_req(pm8001_ha
, 0,
3885 HW_EVENT_LINK_ERR_DISPARITY_ERROR
,
3886 port_id
, phy_id
, 0, 0);
3887 sas_phy_disconnected(sas_phy
);
3888 phy
->phy_attached
= 0;
3889 sas_ha
->notify_port_event(sas_phy
, PORTE_LINK_RESET_ERR
);
3891 case HW_EVENT_LINK_ERR_CODE_VIOLATION
:
3892 PM8001_MSG_DBG(pm8001_ha
,
3893 pm8001_printk("HW_EVENT_LINK_ERR_CODE_VIOLATION\n"));
3894 pm8001_hw_event_ack_req(pm8001_ha
, 0,
3895 HW_EVENT_LINK_ERR_CODE_VIOLATION
,
3896 port_id
, phy_id
, 0, 0);
3897 sas_phy_disconnected(sas_phy
);
3898 phy
->phy_attached
= 0;
3899 sas_ha
->notify_port_event(sas_phy
, PORTE_LINK_RESET_ERR
);
3901 case HW_EVENT_LINK_ERR_LOSS_OF_DWORD_SYNCH
:
3902 PM8001_MSG_DBG(pm8001_ha
,
3903 pm8001_printk("HW_EVENT_LINK_ERR_LOSS_OF_DWORD_SYNCH\n"));
3904 pm8001_hw_event_ack_req(pm8001_ha
, 0,
3905 HW_EVENT_LINK_ERR_LOSS_OF_DWORD_SYNCH
,
3906 port_id
, phy_id
, 0, 0);
3907 sas_phy_disconnected(sas_phy
);
3908 phy
->phy_attached
= 0;
3909 sas_ha
->notify_port_event(sas_phy
, PORTE_LINK_RESET_ERR
);
3911 case HW_EVENT_MALFUNCTION
:
3912 PM8001_MSG_DBG(pm8001_ha
,
3913 pm8001_printk("HW_EVENT_MALFUNCTION\n"));
3915 case HW_EVENT_BROADCAST_SES
:
3916 PM8001_MSG_DBG(pm8001_ha
,
3917 pm8001_printk("HW_EVENT_BROADCAST_SES\n"));
3918 spin_lock_irqsave(&sas_phy
->sas_prim_lock
, flags
);
3919 sas_phy
->sas_prim
= HW_EVENT_BROADCAST_SES
;
3920 spin_unlock_irqrestore(&sas_phy
->sas_prim_lock
, flags
);
3921 sas_ha
->notify_port_event(sas_phy
, PORTE_BROADCAST_RCVD
);
3923 case HW_EVENT_INBOUND_CRC_ERROR
:
3924 PM8001_MSG_DBG(pm8001_ha
,
3925 pm8001_printk("HW_EVENT_INBOUND_CRC_ERROR\n"));
3926 pm8001_hw_event_ack_req(pm8001_ha
, 0,
3927 HW_EVENT_INBOUND_CRC_ERROR
,
3928 port_id
, phy_id
, 0, 0);
3930 case HW_EVENT_HARD_RESET_RECEIVED
:
3931 PM8001_MSG_DBG(pm8001_ha
,
3932 pm8001_printk("HW_EVENT_HARD_RESET_RECEIVED\n"));
3933 sas_ha
->notify_port_event(sas_phy
, PORTE_HARD_RESET
);
3935 case HW_EVENT_ID_FRAME_TIMEOUT
:
3936 PM8001_MSG_DBG(pm8001_ha
,
3937 pm8001_printk("HW_EVENT_ID_FRAME_TIMEOUT\n"));
3938 sas_phy_disconnected(sas_phy
);
3939 phy
->phy_attached
= 0;
3940 sas_ha
->notify_port_event(sas_phy
, PORTE_LINK_RESET_ERR
);
3942 case HW_EVENT_LINK_ERR_PHY_RESET_FAILED
:
3943 PM8001_MSG_DBG(pm8001_ha
,
3944 pm8001_printk("HW_EVENT_LINK_ERR_PHY_RESET_FAILED\n"));
3945 pm8001_hw_event_ack_req(pm8001_ha
, 0,
3946 HW_EVENT_LINK_ERR_PHY_RESET_FAILED
,
3947 port_id
, phy_id
, 0, 0);
3948 sas_phy_disconnected(sas_phy
);
3949 phy
->phy_attached
= 0;
3950 sas_ha
->notify_port_event(sas_phy
, PORTE_LINK_RESET_ERR
);
3952 case HW_EVENT_PORT_RESET_TIMER_TMO
:
3953 PM8001_MSG_DBG(pm8001_ha
,
3954 pm8001_printk("HW_EVENT_PORT_RESET_TIMER_TMO\n"));
3955 sas_phy_disconnected(sas_phy
);
3956 phy
->phy_attached
= 0;
3957 sas_ha
->notify_port_event(sas_phy
, PORTE_LINK_RESET_ERR
);
3959 case HW_EVENT_PORT_RECOVERY_TIMER_TMO
:
3960 PM8001_MSG_DBG(pm8001_ha
,
3961 pm8001_printk("HW_EVENT_PORT_RECOVERY_TIMER_TMO\n"));
3962 sas_phy_disconnected(sas_phy
);
3963 phy
->phy_attached
= 0;
3964 sas_ha
->notify_port_event(sas_phy
, PORTE_LINK_RESET_ERR
);
3966 case HW_EVENT_PORT_RECOVER
:
3967 PM8001_MSG_DBG(pm8001_ha
,
3968 pm8001_printk("HW_EVENT_PORT_RECOVER\n"));
3970 case HW_EVENT_PORT_RESET_COMPLETE
:
3971 PM8001_MSG_DBG(pm8001_ha
,
3972 pm8001_printk("HW_EVENT_PORT_RESET_COMPLETE\n"));
3974 case EVENT_BROADCAST_ASYNCH_EVENT
:
3975 PM8001_MSG_DBG(pm8001_ha
,
3976 pm8001_printk("EVENT_BROADCAST_ASYNCH_EVENT\n"));
3979 PM8001_MSG_DBG(pm8001_ha
,
3980 pm8001_printk("Unknown event type = %x\n", eventType
));
3987 * process_one_iomb - process one outbound Queue memory block
3988 * @pm8001_ha: our hba card information
3989 * @piomb: IO message buffer
3991 static void process_one_iomb(struct pm8001_hba_info
*pm8001_ha
, void *piomb
)
3993 __le32 pHeader
= *(__le32
*)piomb
;
3994 u8 opc
= (u8
)((le32_to_cpu(pHeader
)) & 0xFFF);
3996 PM8001_MSG_DBG(pm8001_ha
, pm8001_printk("process_one_iomb:"));
4000 PM8001_MSG_DBG(pm8001_ha
, pm8001_printk("OPC_OUB_ECHO\n"));
4002 case OPC_OUB_HW_EVENT
:
4003 PM8001_MSG_DBG(pm8001_ha
,
4004 pm8001_printk("OPC_OUB_HW_EVENT\n"));
4005 mpi_hw_event(pm8001_ha
, piomb
);
4007 case OPC_OUB_SSP_COMP
:
4008 PM8001_MSG_DBG(pm8001_ha
,
4009 pm8001_printk("OPC_OUB_SSP_COMP\n"));
4010 mpi_ssp_completion(pm8001_ha
, piomb
);
4012 case OPC_OUB_SMP_COMP
:
4013 PM8001_MSG_DBG(pm8001_ha
,
4014 pm8001_printk("OPC_OUB_SMP_COMP\n"));
4015 mpi_smp_completion(pm8001_ha
, piomb
);
4017 case OPC_OUB_LOCAL_PHY_CNTRL
:
4018 PM8001_MSG_DBG(pm8001_ha
,
4019 pm8001_printk("OPC_OUB_LOCAL_PHY_CNTRL\n"));
4020 pm8001_mpi_local_phy_ctl(pm8001_ha
, piomb
);
4022 case OPC_OUB_DEV_REGIST
:
4023 PM8001_MSG_DBG(pm8001_ha
,
4024 pm8001_printk("OPC_OUB_DEV_REGIST\n"));
4025 pm8001_mpi_reg_resp(pm8001_ha
, piomb
);
4027 case OPC_OUB_DEREG_DEV
:
4028 PM8001_MSG_DBG(pm8001_ha
,
4029 pm8001_printk("unregister the device\n"));
4030 pm8001_mpi_dereg_resp(pm8001_ha
, piomb
);
4032 case OPC_OUB_GET_DEV_HANDLE
:
4033 PM8001_MSG_DBG(pm8001_ha
,
4034 pm8001_printk("OPC_OUB_GET_DEV_HANDLE\n"));
4036 case OPC_OUB_SATA_COMP
:
4037 PM8001_MSG_DBG(pm8001_ha
,
4038 pm8001_printk("OPC_OUB_SATA_COMP\n"));
4039 mpi_sata_completion(pm8001_ha
, piomb
);
4041 case OPC_OUB_SATA_EVENT
:
4042 PM8001_MSG_DBG(pm8001_ha
,
4043 pm8001_printk("OPC_OUB_SATA_EVENT\n"));
4044 mpi_sata_event(pm8001_ha
, piomb
);
4046 case OPC_OUB_SSP_EVENT
:
4047 PM8001_MSG_DBG(pm8001_ha
,
4048 pm8001_printk("OPC_OUB_SSP_EVENT\n"));
4049 mpi_ssp_event(pm8001_ha
, piomb
);
4051 case OPC_OUB_DEV_HANDLE_ARRIV
:
4052 PM8001_MSG_DBG(pm8001_ha
,
4053 pm8001_printk("OPC_OUB_DEV_HANDLE_ARRIV\n"));
4054 /*This is for target*/
4056 case OPC_OUB_SSP_RECV_EVENT
:
4057 PM8001_MSG_DBG(pm8001_ha
,
4058 pm8001_printk("OPC_OUB_SSP_RECV_EVENT\n"));
4059 /*This is for target*/
4061 case OPC_OUB_DEV_INFO
:
4062 PM8001_MSG_DBG(pm8001_ha
,
4063 pm8001_printk("OPC_OUB_DEV_INFO\n"));
4065 case OPC_OUB_FW_FLASH_UPDATE
:
4066 PM8001_MSG_DBG(pm8001_ha
,
4067 pm8001_printk("OPC_OUB_FW_FLASH_UPDATE\n"));
4068 pm8001_mpi_fw_flash_update_resp(pm8001_ha
, piomb
);
4070 case OPC_OUB_GPIO_RESPONSE
:
4071 PM8001_MSG_DBG(pm8001_ha
,
4072 pm8001_printk("OPC_OUB_GPIO_RESPONSE\n"));
4074 case OPC_OUB_GPIO_EVENT
:
4075 PM8001_MSG_DBG(pm8001_ha
,
4076 pm8001_printk("OPC_OUB_GPIO_EVENT\n"));
4078 case OPC_OUB_GENERAL_EVENT
:
4079 PM8001_MSG_DBG(pm8001_ha
,
4080 pm8001_printk("OPC_OUB_GENERAL_EVENT\n"));
4081 pm8001_mpi_general_event(pm8001_ha
, piomb
);
4083 case OPC_OUB_SSP_ABORT_RSP
:
4084 PM8001_MSG_DBG(pm8001_ha
,
4085 pm8001_printk("OPC_OUB_SSP_ABORT_RSP\n"));
4086 pm8001_mpi_task_abort_resp(pm8001_ha
, piomb
);
4088 case OPC_OUB_SATA_ABORT_RSP
:
4089 PM8001_MSG_DBG(pm8001_ha
,
4090 pm8001_printk("OPC_OUB_SATA_ABORT_RSP\n"));
4091 pm8001_mpi_task_abort_resp(pm8001_ha
, piomb
);
4093 case OPC_OUB_SAS_DIAG_MODE_START_END
:
4094 PM8001_MSG_DBG(pm8001_ha
,
4095 pm8001_printk("OPC_OUB_SAS_DIAG_MODE_START_END\n"));
4097 case OPC_OUB_SAS_DIAG_EXECUTE
:
4098 PM8001_MSG_DBG(pm8001_ha
,
4099 pm8001_printk("OPC_OUB_SAS_DIAG_EXECUTE\n"));
4101 case OPC_OUB_GET_TIME_STAMP
:
4102 PM8001_MSG_DBG(pm8001_ha
,
4103 pm8001_printk("OPC_OUB_GET_TIME_STAMP\n"));
4105 case OPC_OUB_SAS_HW_EVENT_ACK
:
4106 PM8001_MSG_DBG(pm8001_ha
,
4107 pm8001_printk("OPC_OUB_SAS_HW_EVENT_ACK\n"));
4109 case OPC_OUB_PORT_CONTROL
:
4110 PM8001_MSG_DBG(pm8001_ha
,
4111 pm8001_printk("OPC_OUB_PORT_CONTROL\n"));
4113 case OPC_OUB_SMP_ABORT_RSP
:
4114 PM8001_MSG_DBG(pm8001_ha
,
4115 pm8001_printk("OPC_OUB_SMP_ABORT_RSP\n"));
4116 pm8001_mpi_task_abort_resp(pm8001_ha
, piomb
);
4118 case OPC_OUB_GET_NVMD_DATA
:
4119 PM8001_MSG_DBG(pm8001_ha
,
4120 pm8001_printk("OPC_OUB_GET_NVMD_DATA\n"));
4121 pm8001_mpi_get_nvmd_resp(pm8001_ha
, piomb
);
4123 case OPC_OUB_SET_NVMD_DATA
:
4124 PM8001_MSG_DBG(pm8001_ha
,
4125 pm8001_printk("OPC_OUB_SET_NVMD_DATA\n"));
4126 pm8001_mpi_set_nvmd_resp(pm8001_ha
, piomb
);
4128 case OPC_OUB_DEVICE_HANDLE_REMOVAL
:
4129 PM8001_MSG_DBG(pm8001_ha
,
4130 pm8001_printk("OPC_OUB_DEVICE_HANDLE_REMOVAL\n"));
4132 case OPC_OUB_SET_DEVICE_STATE
:
4133 PM8001_MSG_DBG(pm8001_ha
,
4134 pm8001_printk("OPC_OUB_SET_DEVICE_STATE\n"));
4135 pm8001_mpi_set_dev_state_resp(pm8001_ha
, piomb
);
4137 case OPC_OUB_GET_DEVICE_STATE
:
4138 PM8001_MSG_DBG(pm8001_ha
,
4139 pm8001_printk("OPC_OUB_GET_DEVICE_STATE\n"));
4141 case OPC_OUB_SET_DEV_INFO
:
4142 PM8001_MSG_DBG(pm8001_ha
,
4143 pm8001_printk("OPC_OUB_SET_DEV_INFO\n"));
4145 case OPC_OUB_SAS_RE_INITIALIZE
:
4146 PM8001_MSG_DBG(pm8001_ha
,
4147 pm8001_printk("OPC_OUB_SAS_RE_INITIALIZE\n"));
4150 PM8001_MSG_DBG(pm8001_ha
,
4151 pm8001_printk("Unknown outbound Queue IOMB OPC = %x\n",
4157 static int process_oq(struct pm8001_hba_info
*pm8001_ha
, u8 vec
)
4159 struct outbound_queue_table
*circularQ
;
4161 u8
uninitialized_var(bc
);
4162 u32 ret
= MPI_IO_STATUS_FAIL
;
4163 unsigned long flags
;
4165 spin_lock_irqsave(&pm8001_ha
->lock
, flags
);
4166 circularQ
= &pm8001_ha
->outbnd_q_tbl
[vec
];
4168 ret
= pm8001_mpi_msg_consume(pm8001_ha
, circularQ
, &pMsg1
, &bc
);
4169 if (MPI_IO_STATUS_SUCCESS
== ret
) {
4170 /* process the outbound message */
4171 process_one_iomb(pm8001_ha
, (void *)(pMsg1
- 4));
4172 /* free the message from the outbound circular buffer */
4173 pm8001_mpi_msg_free_set(pm8001_ha
, pMsg1
,
4176 if (MPI_IO_STATUS_BUSY
== ret
) {
4177 /* Update the producer index from SPC */
4178 circularQ
->producer_index
=
4179 cpu_to_le32(pm8001_read_32(circularQ
->pi_virt
));
4180 if (le32_to_cpu(circularQ
->producer_index
) ==
4181 circularQ
->consumer_idx
)
4186 spin_unlock_irqrestore(&pm8001_ha
->lock
, flags
);
4190 /* PCI_DMA_... to our direction translation. */
4191 static const u8 data_dir_flags
[] = {
4192 [PCI_DMA_BIDIRECTIONAL
] = DATA_DIR_BYRECIPIENT
,/* UNSPECIFIED */
4193 [PCI_DMA_TODEVICE
] = DATA_DIR_OUT
,/* OUTBOUND */
4194 [PCI_DMA_FROMDEVICE
] = DATA_DIR_IN
,/* INBOUND */
4195 [PCI_DMA_NONE
] = DATA_DIR_NONE
,/* NO TRANSFER */
4198 pm8001_chip_make_sg(struct scatterlist
*scatter
, int nr
, void *prd
)
4201 struct scatterlist
*sg
;
4202 struct pm8001_prd
*buf_prd
= prd
;
4204 for_each_sg(scatter
, sg
, nr
, i
) {
4205 buf_prd
->addr
= cpu_to_le64(sg_dma_address(sg
));
4206 buf_prd
->im_len
.len
= cpu_to_le32(sg_dma_len(sg
));
4207 buf_prd
->im_len
.e
= 0;
4212 static void build_smp_cmd(u32 deviceID
, __le32 hTag
, struct smp_req
*psmp_cmd
)
4214 psmp_cmd
->tag
= hTag
;
4215 psmp_cmd
->device_id
= cpu_to_le32(deviceID
);
4216 psmp_cmd
->len_ip_ir
= cpu_to_le32(1|(1 << 1));
4220 * pm8001_chip_smp_req - send a SMP task to FW
4221 * @pm8001_ha: our hba card information.
4222 * @ccb: the ccb information this request used.
4224 static int pm8001_chip_smp_req(struct pm8001_hba_info
*pm8001_ha
,
4225 struct pm8001_ccb_info
*ccb
)
4228 struct sas_task
*task
= ccb
->task
;
4229 struct domain_device
*dev
= task
->dev
;
4230 struct pm8001_device
*pm8001_dev
= dev
->lldd_dev
;
4231 struct scatterlist
*sg_req
, *sg_resp
;
4232 u32 req_len
, resp_len
;
4233 struct smp_req smp_cmd
;
4235 struct inbound_queue_table
*circularQ
;
4237 memset(&smp_cmd
, 0, sizeof(smp_cmd
));
4239 * DMA-map SMP request, response buffers
4241 sg_req
= &task
->smp_task
.smp_req
;
4242 elem
= dma_map_sg(pm8001_ha
->dev
, sg_req
, 1, PCI_DMA_TODEVICE
);
4245 req_len
= sg_dma_len(sg_req
);
4247 sg_resp
= &task
->smp_task
.smp_resp
;
4248 elem
= dma_map_sg(pm8001_ha
->dev
, sg_resp
, 1, PCI_DMA_FROMDEVICE
);
4253 resp_len
= sg_dma_len(sg_resp
);
4254 /* must be in dwords */
4255 if ((req_len
& 0x3) || (resp_len
& 0x3)) {
4260 opc
= OPC_INB_SMP_REQUEST
;
4261 circularQ
= &pm8001_ha
->inbnd_q_tbl
[0];
4262 smp_cmd
.tag
= cpu_to_le32(ccb
->ccb_tag
);
4263 smp_cmd
.long_smp_req
.long_req_addr
=
4264 cpu_to_le64((u64
)sg_dma_address(&task
->smp_task
.smp_req
));
4265 smp_cmd
.long_smp_req
.long_req_size
=
4266 cpu_to_le32((u32
)sg_dma_len(&task
->smp_task
.smp_req
)-4);
4267 smp_cmd
.long_smp_req
.long_resp_addr
=
4268 cpu_to_le64((u64
)sg_dma_address(&task
->smp_task
.smp_resp
));
4269 smp_cmd
.long_smp_req
.long_resp_size
=
4270 cpu_to_le32((u32
)sg_dma_len(&task
->smp_task
.smp_resp
)-4);
4271 build_smp_cmd(pm8001_dev
->device_id
, smp_cmd
.tag
, &smp_cmd
);
4272 rc
= pm8001_mpi_build_cmd(pm8001_ha
, circularQ
, opc
,
4273 (u32
*)&smp_cmd
, 0);
4280 dma_unmap_sg(pm8001_ha
->dev
, &ccb
->task
->smp_task
.smp_resp
, 1,
4281 PCI_DMA_FROMDEVICE
);
4283 dma_unmap_sg(pm8001_ha
->dev
, &ccb
->task
->smp_task
.smp_req
, 1,
4289 * pm8001_chip_ssp_io_req - send a SSP task to FW
4290 * @pm8001_ha: our hba card information.
4291 * @ccb: the ccb information this request used.
4293 static int pm8001_chip_ssp_io_req(struct pm8001_hba_info
*pm8001_ha
,
4294 struct pm8001_ccb_info
*ccb
)
4296 struct sas_task
*task
= ccb
->task
;
4297 struct domain_device
*dev
= task
->dev
;
4298 struct pm8001_device
*pm8001_dev
= dev
->lldd_dev
;
4299 struct ssp_ini_io_start_req ssp_cmd
;
4300 u32 tag
= ccb
->ccb_tag
;
4303 struct inbound_queue_table
*circularQ
;
4304 u32 opc
= OPC_INB_SSPINIIOSTART
;
4305 memset(&ssp_cmd
, 0, sizeof(ssp_cmd
));
4306 memcpy(ssp_cmd
.ssp_iu
.lun
, task
->ssp_task
.LUN
, 8);
4308 cpu_to_le32(data_dir_flags
[task
->data_dir
] << 8 | 0x0);/*0 for
4309 SAS 1.1 compatible TLR*/
4310 ssp_cmd
.data_len
= cpu_to_le32(task
->total_xfer_len
);
4311 ssp_cmd
.device_id
= cpu_to_le32(pm8001_dev
->device_id
);
4312 ssp_cmd
.tag
= cpu_to_le32(tag
);
4313 if (task
->ssp_task
.enable_first_burst
)
4314 ssp_cmd
.ssp_iu
.efb_prio_attr
|= 0x80;
4315 ssp_cmd
.ssp_iu
.efb_prio_attr
|= (task
->ssp_task
.task_prio
<< 3);
4316 ssp_cmd
.ssp_iu
.efb_prio_attr
|= (task
->ssp_task
.task_attr
& 7);
4317 memcpy(ssp_cmd
.ssp_iu
.cdb
, task
->ssp_task
.cmd
->cmnd
,
4318 task
->ssp_task
.cmd
->cmd_len
);
4319 circularQ
= &pm8001_ha
->inbnd_q_tbl
[0];
4321 /* fill in PRD (scatter/gather) table, if any */
4322 if (task
->num_scatter
> 1) {
4323 pm8001_chip_make_sg(task
->scatter
, ccb
->n_elem
, ccb
->buf_prd
);
4324 phys_addr
= ccb
->ccb_dma_handle
+
4325 offsetof(struct pm8001_ccb_info
, buf_prd
[0]);
4326 ssp_cmd
.addr_low
= cpu_to_le32(lower_32_bits(phys_addr
));
4327 ssp_cmd
.addr_high
= cpu_to_le32(upper_32_bits(phys_addr
));
4328 ssp_cmd
.esgl
= cpu_to_le32(1<<31);
4329 } else if (task
->num_scatter
== 1) {
4330 u64 dma_addr
= sg_dma_address(task
->scatter
);
4331 ssp_cmd
.addr_low
= cpu_to_le32(lower_32_bits(dma_addr
));
4332 ssp_cmd
.addr_high
= cpu_to_le32(upper_32_bits(dma_addr
));
4333 ssp_cmd
.len
= cpu_to_le32(task
->total_xfer_len
);
4335 } else if (task
->num_scatter
== 0) {
4336 ssp_cmd
.addr_low
= 0;
4337 ssp_cmd
.addr_high
= 0;
4338 ssp_cmd
.len
= cpu_to_le32(task
->total_xfer_len
);
4341 ret
= pm8001_mpi_build_cmd(pm8001_ha
, circularQ
, opc
, &ssp_cmd
, 0);
4345 static int pm8001_chip_sata_req(struct pm8001_hba_info
*pm8001_ha
,
4346 struct pm8001_ccb_info
*ccb
)
4348 struct sas_task
*task
= ccb
->task
;
4349 struct domain_device
*dev
= task
->dev
;
4350 struct pm8001_device
*pm8001_ha_dev
= dev
->lldd_dev
;
4351 u32 tag
= ccb
->ccb_tag
;
4353 struct sata_start_req sata_cmd
;
4354 u32 hdr_tag
, ncg_tag
= 0;
4358 struct inbound_queue_table
*circularQ
;
4359 unsigned long flags
;
4360 u32 opc
= OPC_INB_SATA_HOST_OPSTART
;
4361 memset(&sata_cmd
, 0, sizeof(sata_cmd
));
4362 circularQ
= &pm8001_ha
->inbnd_q_tbl
[0];
4363 if (task
->data_dir
== PCI_DMA_NONE
) {
4364 ATAP
= 0x04; /* no data*/
4365 PM8001_IO_DBG(pm8001_ha
, pm8001_printk("no data\n"));
4366 } else if (likely(!task
->ata_task
.device_control_reg_update
)) {
4367 if (task
->ata_task
.dma_xfer
) {
4368 ATAP
= 0x06; /* DMA */
4369 PM8001_IO_DBG(pm8001_ha
, pm8001_printk("DMA\n"));
4371 ATAP
= 0x05; /* PIO*/
4372 PM8001_IO_DBG(pm8001_ha
, pm8001_printk("PIO\n"));
4374 if (task
->ata_task
.use_ncq
&&
4375 dev
->sata_dev
.class != ATA_DEV_ATAPI
) {
4376 ATAP
= 0x07; /* FPDMA */
4377 PM8001_IO_DBG(pm8001_ha
, pm8001_printk("FPDMA\n"));
4380 if (task
->ata_task
.use_ncq
&& pm8001_get_ncq_tag(task
, &hdr_tag
)) {
4381 task
->ata_task
.fis
.sector_count
|= (u8
) (hdr_tag
<< 3);
4384 dir
= data_dir_flags
[task
->data_dir
] << 8;
4385 sata_cmd
.tag
= cpu_to_le32(tag
);
4386 sata_cmd
.device_id
= cpu_to_le32(pm8001_ha_dev
->device_id
);
4387 sata_cmd
.data_len
= cpu_to_le32(task
->total_xfer_len
);
4388 sata_cmd
.ncqtag_atap_dir_m
=
4389 cpu_to_le32(((ncg_tag
& 0xff)<<16)|((ATAP
& 0x3f) << 10) | dir
);
4390 sata_cmd
.sata_fis
= task
->ata_task
.fis
;
4391 if (likely(!task
->ata_task
.device_control_reg_update
))
4392 sata_cmd
.sata_fis
.flags
|= 0x80;/* C=1: update ATA cmd reg */
4393 sata_cmd
.sata_fis
.flags
&= 0xF0;/* PM_PORT field shall be 0 */
4394 /* fill in PRD (scatter/gather) table, if any */
4395 if (task
->num_scatter
> 1) {
4396 pm8001_chip_make_sg(task
->scatter
, ccb
->n_elem
, ccb
->buf_prd
);
4397 phys_addr
= ccb
->ccb_dma_handle
+
4398 offsetof(struct pm8001_ccb_info
, buf_prd
[0]);
4399 sata_cmd
.addr_low
= lower_32_bits(phys_addr
);
4400 sata_cmd
.addr_high
= upper_32_bits(phys_addr
);
4401 sata_cmd
.esgl
= cpu_to_le32(1 << 31);
4402 } else if (task
->num_scatter
== 1) {
4403 u64 dma_addr
= sg_dma_address(task
->scatter
);
4404 sata_cmd
.addr_low
= lower_32_bits(dma_addr
);
4405 sata_cmd
.addr_high
= upper_32_bits(dma_addr
);
4406 sata_cmd
.len
= cpu_to_le32(task
->total_xfer_len
);
4408 } else if (task
->num_scatter
== 0) {
4409 sata_cmd
.addr_low
= 0;
4410 sata_cmd
.addr_high
= 0;
4411 sata_cmd
.len
= cpu_to_le32(task
->total_xfer_len
);
4415 /* Check for read log for failed drive and return */
4416 if (sata_cmd
.sata_fis
.command
== 0x2f) {
4417 if (((pm8001_ha_dev
->id
& NCQ_READ_LOG_FLAG
) ||
4418 (pm8001_ha_dev
->id
& NCQ_ABORT_ALL_FLAG
) ||
4419 (pm8001_ha_dev
->id
& NCQ_2ND_RLE_FLAG
))) {
4420 struct task_status_struct
*ts
;
4422 pm8001_ha_dev
->id
&= 0xDFFFFFFF;
4423 ts
= &task
->task_status
;
4425 spin_lock_irqsave(&task
->task_state_lock
, flags
);
4426 ts
->resp
= SAS_TASK_COMPLETE
;
4427 ts
->stat
= SAM_STAT_GOOD
;
4428 task
->task_state_flags
&= ~SAS_TASK_STATE_PENDING
;
4429 task
->task_state_flags
&= ~SAS_TASK_AT_INITIATOR
;
4430 task
->task_state_flags
|= SAS_TASK_STATE_DONE
;
4431 if (unlikely((task
->task_state_flags
&
4432 SAS_TASK_STATE_ABORTED
))) {
4433 spin_unlock_irqrestore(&task
->task_state_lock
,
4435 PM8001_FAIL_DBG(pm8001_ha
,
4436 pm8001_printk("task 0x%p resp 0x%x "
4437 " stat 0x%x but aborted by upper layer "
4438 "\n", task
, ts
->resp
, ts
->stat
));
4439 pm8001_ccb_task_free(pm8001_ha
, task
, ccb
, tag
);
4441 spin_unlock_irqrestore(&task
->task_state_lock
,
4443 pm8001_ccb_task_free_done(pm8001_ha
, task
,
4450 ret
= pm8001_mpi_build_cmd(pm8001_ha
, circularQ
, opc
, &sata_cmd
, 0);
4455 * pm8001_chip_phy_start_req - start phy via PHY_START COMMAND
4456 * @pm8001_ha: our hba card information.
4457 * @num: the inbound queue number
4458 * @phy_id: the phy id which we wanted to start up.
4461 pm8001_chip_phy_start_req(struct pm8001_hba_info
*pm8001_ha
, u8 phy_id
)
4463 struct phy_start_req payload
;
4464 struct inbound_queue_table
*circularQ
;
4467 u32 opcode
= OPC_INB_PHYSTART
;
4468 circularQ
= &pm8001_ha
->inbnd_q_tbl
[0];
4469 memset(&payload
, 0, sizeof(payload
));
4470 payload
.tag
= cpu_to_le32(tag
);
4472 ** [0:7] PHY Identifier
4473 ** [8:11] link rate 1.5G, 3G, 6G
4474 ** [12:13] link mode 01b SAS mode; 10b SATA mode; 11b both
4475 ** [14] 0b disable spin up hold; 1b enable spin up hold
4477 payload
.ase_sh_lm_slr_phyid
= cpu_to_le32(SPINHOLD_DISABLE
|
4478 LINKMODE_AUTO
| LINKRATE_15
|
4479 LINKRATE_30
| LINKRATE_60
| phy_id
);
4480 payload
.sas_identify
.dev_type
= SAS_END_DEVICE
;
4481 payload
.sas_identify
.initiator_bits
= SAS_PROTOCOL_ALL
;
4482 memcpy(payload
.sas_identify
.sas_addr
,
4483 pm8001_ha
->sas_addr
, SAS_ADDR_SIZE
);
4484 payload
.sas_identify
.phy_id
= phy_id
;
4485 ret
= pm8001_mpi_build_cmd(pm8001_ha
, circularQ
, opcode
, &payload
, 0);
4490 * pm8001_chip_phy_stop_req - start phy via PHY_STOP COMMAND
4491 * @pm8001_ha: our hba card information.
4492 * @num: the inbound queue number
4493 * @phy_id: the phy id which we wanted to start up.
4495 static int pm8001_chip_phy_stop_req(struct pm8001_hba_info
*pm8001_ha
,
4498 struct phy_stop_req payload
;
4499 struct inbound_queue_table
*circularQ
;
4502 u32 opcode
= OPC_INB_PHYSTOP
;
4503 circularQ
= &pm8001_ha
->inbnd_q_tbl
[0];
4504 memset(&payload
, 0, sizeof(payload
));
4505 payload
.tag
= cpu_to_le32(tag
);
4506 payload
.phy_id
= cpu_to_le32(phy_id
);
4507 ret
= pm8001_mpi_build_cmd(pm8001_ha
, circularQ
, opcode
, &payload
, 0);
4512 * see comments on pm8001_mpi_reg_resp.
4514 static int pm8001_chip_reg_dev_req(struct pm8001_hba_info
*pm8001_ha
,
4515 struct pm8001_device
*pm8001_dev
, u32 flag
)
4517 struct reg_dev_req payload
;
4519 u32 stp_sspsmp_sata
= 0x4;
4520 struct inbound_queue_table
*circularQ
;
4521 u32 linkrate
, phy_id
;
4522 int rc
, tag
= 0xdeadbeef;
4523 struct pm8001_ccb_info
*ccb
;
4525 u16 firstBurstSize
= 0;
4527 struct domain_device
*dev
= pm8001_dev
->sas_device
;
4528 struct domain_device
*parent_dev
= dev
->parent
;
4529 circularQ
= &pm8001_ha
->inbnd_q_tbl
[0];
4531 memset(&payload
, 0, sizeof(payload
));
4532 rc
= pm8001_tag_alloc(pm8001_ha
, &tag
);
4535 ccb
= &pm8001_ha
->ccb_info
[tag
];
4536 ccb
->device
= pm8001_dev
;
4538 payload
.tag
= cpu_to_le32(tag
);
4540 stp_sspsmp_sata
= 0x02; /*direct attached sata */
4542 if (pm8001_dev
->dev_type
== SAS_SATA_DEV
)
4543 stp_sspsmp_sata
= 0x00; /* stp*/
4544 else if (pm8001_dev
->dev_type
== SAS_END_DEVICE
||
4545 pm8001_dev
->dev_type
== SAS_EDGE_EXPANDER_DEVICE
||
4546 pm8001_dev
->dev_type
== SAS_FANOUT_EXPANDER_DEVICE
)
4547 stp_sspsmp_sata
= 0x01; /*ssp or smp*/
4549 if (parent_dev
&& DEV_IS_EXPANDER(parent_dev
->dev_type
))
4550 phy_id
= parent_dev
->ex_dev
.ex_phy
->phy_id
;
4552 phy_id
= pm8001_dev
->attached_phy
;
4553 opc
= OPC_INB_REG_DEV
;
4554 linkrate
= (pm8001_dev
->sas_device
->linkrate
< dev
->port
->linkrate
) ?
4555 pm8001_dev
->sas_device
->linkrate
: dev
->port
->linkrate
;
4556 payload
.phyid_portid
=
4557 cpu_to_le32(((pm8001_dev
->sas_device
->port
->id
) & 0x0F) |
4558 ((phy_id
& 0x0F) << 4));
4559 payload
.dtype_dlr_retry
= cpu_to_le32((retryFlag
& 0x01) |
4560 ((linkrate
& 0x0F) * 0x1000000) |
4561 ((stp_sspsmp_sata
& 0x03) * 0x10000000));
4562 payload
.firstburstsize_ITNexustimeout
=
4563 cpu_to_le32(ITNT
| (firstBurstSize
* 0x10000));
4564 memcpy(payload
.sas_addr
, pm8001_dev
->sas_device
->sas_addr
,
4566 rc
= pm8001_mpi_build_cmd(pm8001_ha
, circularQ
, opc
, &payload
, 0);
4571 * see comments on pm8001_mpi_reg_resp.
4573 int pm8001_chip_dereg_dev_req(struct pm8001_hba_info
*pm8001_ha
,
4576 struct dereg_dev_req payload
;
4577 u32 opc
= OPC_INB_DEREG_DEV_HANDLE
;
4579 struct inbound_queue_table
*circularQ
;
4581 circularQ
= &pm8001_ha
->inbnd_q_tbl
[0];
4582 memset(&payload
, 0, sizeof(payload
));
4583 payload
.tag
= cpu_to_le32(1);
4584 payload
.device_id
= cpu_to_le32(device_id
);
4585 PM8001_MSG_DBG(pm8001_ha
,
4586 pm8001_printk("unregister device device_id = %d\n", device_id
));
4587 ret
= pm8001_mpi_build_cmd(pm8001_ha
, circularQ
, opc
, &payload
, 0);
4592 * pm8001_chip_phy_ctl_req - support the local phy operation
4593 * @pm8001_ha: our hba card information.
4594 * @num: the inbound queue number
4595 * @phy_id: the phy id which we wanted to operate
4598 static int pm8001_chip_phy_ctl_req(struct pm8001_hba_info
*pm8001_ha
,
4599 u32 phyId
, u32 phy_op
)
4601 struct local_phy_ctl_req payload
;
4602 struct inbound_queue_table
*circularQ
;
4604 u32 opc
= OPC_INB_LOCAL_PHY_CONTROL
;
4605 memset(&payload
, 0, sizeof(payload
));
4606 circularQ
= &pm8001_ha
->inbnd_q_tbl
[0];
4607 payload
.tag
= cpu_to_le32(1);
4608 payload
.phyop_phyid
=
4609 cpu_to_le32(((phy_op
& 0xff) << 8) | (phyId
& 0x0F));
4610 ret
= pm8001_mpi_build_cmd(pm8001_ha
, circularQ
, opc
, &payload
, 0);
4614 static u32
pm8001_chip_is_our_interupt(struct pm8001_hba_info
*pm8001_ha
)
4617 #ifdef PM8001_USE_MSIX
4620 value
= pm8001_cr32(pm8001_ha
, 0, MSGU_ODR
);
4628 * pm8001_chip_isr - PM8001 isr handler.
4629 * @pm8001_ha: our hba card information.
4634 pm8001_chip_isr(struct pm8001_hba_info
*pm8001_ha
, u8 vec
)
4636 pm8001_chip_interrupt_disable(pm8001_ha
, vec
);
4637 process_oq(pm8001_ha
, vec
);
4638 pm8001_chip_interrupt_enable(pm8001_ha
, vec
);
4642 static int send_task_abort(struct pm8001_hba_info
*pm8001_ha
, u32 opc
,
4643 u32 dev_id
, u8 flag
, u32 task_tag
, u32 cmd_tag
)
4645 struct task_abort_req task_abort
;
4646 struct inbound_queue_table
*circularQ
;
4648 circularQ
= &pm8001_ha
->inbnd_q_tbl
[0];
4649 memset(&task_abort
, 0, sizeof(task_abort
));
4650 if (ABORT_SINGLE
== (flag
& ABORT_MASK
)) {
4651 task_abort
.abort_all
= 0;
4652 task_abort
.device_id
= cpu_to_le32(dev_id
);
4653 task_abort
.tag_to_abort
= cpu_to_le32(task_tag
);
4654 task_abort
.tag
= cpu_to_le32(cmd_tag
);
4655 } else if (ABORT_ALL
== (flag
& ABORT_MASK
)) {
4656 task_abort
.abort_all
= cpu_to_le32(1);
4657 task_abort
.device_id
= cpu_to_le32(dev_id
);
4658 task_abort
.tag
= cpu_to_le32(cmd_tag
);
4660 ret
= pm8001_mpi_build_cmd(pm8001_ha
, circularQ
, opc
, &task_abort
, 0);
4665 * pm8001_chip_abort_task - SAS abort task when error or exception happened.
4666 * @task: the task we wanted to aborted.
4667 * @flag: the abort flag.
4669 int pm8001_chip_abort_task(struct pm8001_hba_info
*pm8001_ha
,
4670 struct pm8001_device
*pm8001_dev
, u8 flag
, u32 task_tag
, u32 cmd_tag
)
4673 int rc
= TMF_RESP_FUNC_FAILED
;
4674 PM8001_EH_DBG(pm8001_ha
,
4675 pm8001_printk("cmd_tag = %x, abort task tag = 0x%x",
4676 cmd_tag
, task_tag
));
4677 if (pm8001_dev
->dev_type
== SAS_END_DEVICE
)
4678 opc
= OPC_INB_SSP_ABORT
;
4679 else if (pm8001_dev
->dev_type
== SAS_SATA_DEV
)
4680 opc
= OPC_INB_SATA_ABORT
;
4682 opc
= OPC_INB_SMP_ABORT
;/* SMP */
4683 device_id
= pm8001_dev
->device_id
;
4684 rc
= send_task_abort(pm8001_ha
, opc
, device_id
, flag
,
4686 if (rc
!= TMF_RESP_FUNC_COMPLETE
)
4687 PM8001_EH_DBG(pm8001_ha
, pm8001_printk("rc= %d\n", rc
));
4692 * pm8001_chip_ssp_tm_req - built the task management command.
4693 * @pm8001_ha: our hba card information.
4694 * @ccb: the ccb information.
4695 * @tmf: task management function.
4697 int pm8001_chip_ssp_tm_req(struct pm8001_hba_info
*pm8001_ha
,
4698 struct pm8001_ccb_info
*ccb
, struct pm8001_tmf_task
*tmf
)
4700 struct sas_task
*task
= ccb
->task
;
4701 struct domain_device
*dev
= task
->dev
;
4702 struct pm8001_device
*pm8001_dev
= dev
->lldd_dev
;
4703 u32 opc
= OPC_INB_SSPINITMSTART
;
4704 struct inbound_queue_table
*circularQ
;
4705 struct ssp_ini_tm_start_req sspTMCmd
;
4708 memset(&sspTMCmd
, 0, sizeof(sspTMCmd
));
4709 sspTMCmd
.device_id
= cpu_to_le32(pm8001_dev
->device_id
);
4710 sspTMCmd
.relate_tag
= cpu_to_le32(tmf
->tag_of_task_to_be_managed
);
4711 sspTMCmd
.tmf
= cpu_to_le32(tmf
->tmf
);
4712 memcpy(sspTMCmd
.lun
, task
->ssp_task
.LUN
, 8);
4713 sspTMCmd
.tag
= cpu_to_le32(ccb
->ccb_tag
);
4714 if (pm8001_ha
->chip_id
!= chip_8001
)
4715 sspTMCmd
.ds_ads_m
= 0x08;
4716 circularQ
= &pm8001_ha
->inbnd_q_tbl
[0];
4717 ret
= pm8001_mpi_build_cmd(pm8001_ha
, circularQ
, opc
, &sspTMCmd
, 0);
4721 int pm8001_chip_get_nvmd_req(struct pm8001_hba_info
*pm8001_ha
,
4724 u32 opc
= OPC_INB_GET_NVMD_DATA
;
4728 struct pm8001_ccb_info
*ccb
;
4729 struct inbound_queue_table
*circularQ
;
4730 struct get_nvm_data_req nvmd_req
;
4731 struct fw_control_ex
*fw_control_context
;
4732 struct pm8001_ioctl_payload
*ioctl_payload
= payload
;
4734 nvmd_type
= ioctl_payload
->minor_function
;
4735 fw_control_context
= kzalloc(sizeof(struct fw_control_ex
), GFP_KERNEL
);
4736 if (!fw_control_context
)
4738 fw_control_context
->usrAddr
= (u8
*)ioctl_payload
->func_specific
;
4739 fw_control_context
->len
= ioctl_payload
->length
;
4740 circularQ
= &pm8001_ha
->inbnd_q_tbl
[0];
4741 memset(&nvmd_req
, 0, sizeof(nvmd_req
));
4742 rc
= pm8001_tag_alloc(pm8001_ha
, &tag
);
4744 kfree(fw_control_context
);
4747 ccb
= &pm8001_ha
->ccb_info
[tag
];
4749 ccb
->fw_control_context
= fw_control_context
;
4750 nvmd_req
.tag
= cpu_to_le32(tag
);
4752 switch (nvmd_type
) {
4754 u32 twi_addr
, twi_page_size
;
4758 nvmd_req
.len_ir_vpdd
= cpu_to_le32(IPMode
| twi_addr
<< 16 |
4759 twi_page_size
<< 8 | TWI_DEVICE
);
4760 nvmd_req
.resp_len
= cpu_to_le32(ioctl_payload
->length
);
4761 nvmd_req
.resp_addr_hi
=
4762 cpu_to_le32(pm8001_ha
->memoryMap
.region
[NVMD
].phys_addr_hi
);
4763 nvmd_req
.resp_addr_lo
=
4764 cpu_to_le32(pm8001_ha
->memoryMap
.region
[NVMD
].phys_addr_lo
);
4768 nvmd_req
.len_ir_vpdd
= cpu_to_le32(IPMode
| C_SEEPROM
);
4769 nvmd_req
.resp_len
= cpu_to_le32(ioctl_payload
->length
);
4770 nvmd_req
.resp_addr_hi
=
4771 cpu_to_le32(pm8001_ha
->memoryMap
.region
[NVMD
].phys_addr_hi
);
4772 nvmd_req
.resp_addr_lo
=
4773 cpu_to_le32(pm8001_ha
->memoryMap
.region
[NVMD
].phys_addr_lo
);
4777 nvmd_req
.len_ir_vpdd
= cpu_to_le32(IPMode
| VPD_FLASH
);
4778 nvmd_req
.resp_len
= cpu_to_le32(ioctl_payload
->length
);
4779 nvmd_req
.resp_addr_hi
=
4780 cpu_to_le32(pm8001_ha
->memoryMap
.region
[NVMD
].phys_addr_hi
);
4781 nvmd_req
.resp_addr_lo
=
4782 cpu_to_le32(pm8001_ha
->memoryMap
.region
[NVMD
].phys_addr_lo
);
4786 nvmd_req
.len_ir_vpdd
= cpu_to_le32(IPMode
| EXPAN_ROM
);
4787 nvmd_req
.resp_len
= cpu_to_le32(ioctl_payload
->length
);
4788 nvmd_req
.resp_addr_hi
=
4789 cpu_to_le32(pm8001_ha
->memoryMap
.region
[NVMD
].phys_addr_hi
);
4790 nvmd_req
.resp_addr_lo
=
4791 cpu_to_le32(pm8001_ha
->memoryMap
.region
[NVMD
].phys_addr_lo
);
4795 nvmd_req
.len_ir_vpdd
= cpu_to_le32(IPMode
| IOP_RDUMP
);
4796 nvmd_req
.resp_len
= cpu_to_le32(ioctl_payload
->length
);
4797 nvmd_req
.vpd_offset
= cpu_to_le32(ioctl_payload
->offset
);
4798 nvmd_req
.resp_addr_hi
=
4799 cpu_to_le32(pm8001_ha
->memoryMap
.region
[NVMD
].phys_addr_hi
);
4800 nvmd_req
.resp_addr_lo
=
4801 cpu_to_le32(pm8001_ha
->memoryMap
.region
[NVMD
].phys_addr_lo
);
4807 rc
= pm8001_mpi_build_cmd(pm8001_ha
, circularQ
, opc
, &nvmd_req
, 0);
4809 kfree(fw_control_context
);
4810 pm8001_tag_free(pm8001_ha
, tag
);
4815 int pm8001_chip_set_nvmd_req(struct pm8001_hba_info
*pm8001_ha
,
4818 u32 opc
= OPC_INB_SET_NVMD_DATA
;
4822 struct pm8001_ccb_info
*ccb
;
4823 struct inbound_queue_table
*circularQ
;
4824 struct set_nvm_data_req nvmd_req
;
4825 struct fw_control_ex
*fw_control_context
;
4826 struct pm8001_ioctl_payload
*ioctl_payload
= payload
;
4828 nvmd_type
= ioctl_payload
->minor_function
;
4829 fw_control_context
= kzalloc(sizeof(struct fw_control_ex
), GFP_KERNEL
);
4830 if (!fw_control_context
)
4832 circularQ
= &pm8001_ha
->inbnd_q_tbl
[0];
4833 memcpy(pm8001_ha
->memoryMap
.region
[NVMD
].virt_ptr
,
4834 &ioctl_payload
->func_specific
,
4835 ioctl_payload
->length
);
4836 memset(&nvmd_req
, 0, sizeof(nvmd_req
));
4837 rc
= pm8001_tag_alloc(pm8001_ha
, &tag
);
4839 kfree(fw_control_context
);
4842 ccb
= &pm8001_ha
->ccb_info
[tag
];
4843 ccb
->fw_control_context
= fw_control_context
;
4845 nvmd_req
.tag
= cpu_to_le32(tag
);
4846 switch (nvmd_type
) {
4848 u32 twi_addr
, twi_page_size
;
4851 nvmd_req
.reserved
[0] = cpu_to_le32(0xFEDCBA98);
4852 nvmd_req
.len_ir_vpdd
= cpu_to_le32(IPMode
| twi_addr
<< 16 |
4853 twi_page_size
<< 8 | TWI_DEVICE
);
4854 nvmd_req
.resp_len
= cpu_to_le32(ioctl_payload
->length
);
4855 nvmd_req
.resp_addr_hi
=
4856 cpu_to_le32(pm8001_ha
->memoryMap
.region
[NVMD
].phys_addr_hi
);
4857 nvmd_req
.resp_addr_lo
=
4858 cpu_to_le32(pm8001_ha
->memoryMap
.region
[NVMD
].phys_addr_lo
);
4862 nvmd_req
.len_ir_vpdd
= cpu_to_le32(IPMode
| C_SEEPROM
);
4863 nvmd_req
.resp_len
= cpu_to_le32(ioctl_payload
->length
);
4864 nvmd_req
.reserved
[0] = cpu_to_le32(0xFEDCBA98);
4865 nvmd_req
.resp_addr_hi
=
4866 cpu_to_le32(pm8001_ha
->memoryMap
.region
[NVMD
].phys_addr_hi
);
4867 nvmd_req
.resp_addr_lo
=
4868 cpu_to_le32(pm8001_ha
->memoryMap
.region
[NVMD
].phys_addr_lo
);
4871 nvmd_req
.len_ir_vpdd
= cpu_to_le32(IPMode
| VPD_FLASH
);
4872 nvmd_req
.resp_len
= cpu_to_le32(ioctl_payload
->length
);
4873 nvmd_req
.reserved
[0] = cpu_to_le32(0xFEDCBA98);
4874 nvmd_req
.resp_addr_hi
=
4875 cpu_to_le32(pm8001_ha
->memoryMap
.region
[NVMD
].phys_addr_hi
);
4876 nvmd_req
.resp_addr_lo
=
4877 cpu_to_le32(pm8001_ha
->memoryMap
.region
[NVMD
].phys_addr_lo
);
4880 nvmd_req
.len_ir_vpdd
= cpu_to_le32(IPMode
| EXPAN_ROM
);
4881 nvmd_req
.resp_len
= cpu_to_le32(ioctl_payload
->length
);
4882 nvmd_req
.reserved
[0] = cpu_to_le32(0xFEDCBA98);
4883 nvmd_req
.resp_addr_hi
=
4884 cpu_to_le32(pm8001_ha
->memoryMap
.region
[NVMD
].phys_addr_hi
);
4885 nvmd_req
.resp_addr_lo
=
4886 cpu_to_le32(pm8001_ha
->memoryMap
.region
[NVMD
].phys_addr_lo
);
4891 rc
= pm8001_mpi_build_cmd(pm8001_ha
, circularQ
, opc
, &nvmd_req
, 0);
4893 kfree(fw_control_context
);
4894 pm8001_tag_free(pm8001_ha
, tag
);
4900 * pm8001_chip_fw_flash_update_build - support the firmware update operation
4901 * @pm8001_ha: our hba card information.
4902 * @fw_flash_updata_info: firmware flash update param
4905 pm8001_chip_fw_flash_update_build(struct pm8001_hba_info
*pm8001_ha
,
4906 void *fw_flash_updata_info
, u32 tag
)
4908 struct fw_flash_Update_req payload
;
4909 struct fw_flash_updata_info
*info
;
4910 struct inbound_queue_table
*circularQ
;
4912 u32 opc
= OPC_INB_FW_FLASH_UPDATE
;
4914 memset(&payload
, 0, sizeof(struct fw_flash_Update_req
));
4915 circularQ
= &pm8001_ha
->inbnd_q_tbl
[0];
4916 info
= fw_flash_updata_info
;
4917 payload
.tag
= cpu_to_le32(tag
);
4918 payload
.cur_image_len
= cpu_to_le32(info
->cur_image_len
);
4919 payload
.cur_image_offset
= cpu_to_le32(info
->cur_image_offset
);
4920 payload
.total_image_len
= cpu_to_le32(info
->total_image_len
);
4921 payload
.len
= info
->sgl
.im_len
.len
;
4922 payload
.sgl_addr_lo
=
4923 cpu_to_le32(lower_32_bits(le64_to_cpu(info
->sgl
.addr
)));
4924 payload
.sgl_addr_hi
=
4925 cpu_to_le32(upper_32_bits(le64_to_cpu(info
->sgl
.addr
)));
4926 ret
= pm8001_mpi_build_cmd(pm8001_ha
, circularQ
, opc
, &payload
, 0);
4931 pm8001_chip_fw_flash_update_req(struct pm8001_hba_info
*pm8001_ha
,
4934 struct fw_flash_updata_info flash_update_info
;
4935 struct fw_control_info
*fw_control
;
4936 struct fw_control_ex
*fw_control_context
;
4939 struct pm8001_ccb_info
*ccb
;
4940 void *buffer
= pm8001_ha
->memoryMap
.region
[FW_FLASH
].virt_ptr
;
4941 dma_addr_t phys_addr
= pm8001_ha
->memoryMap
.region
[FW_FLASH
].phys_addr
;
4942 struct pm8001_ioctl_payload
*ioctl_payload
= payload
;
4944 fw_control_context
= kzalloc(sizeof(struct fw_control_ex
), GFP_KERNEL
);
4945 if (!fw_control_context
)
4947 fw_control
= (struct fw_control_info
*)&ioctl_payload
->func_specific
;
4948 memcpy(buffer
, fw_control
->buffer
, fw_control
->len
);
4949 flash_update_info
.sgl
.addr
= cpu_to_le64(phys_addr
);
4950 flash_update_info
.sgl
.im_len
.len
= cpu_to_le32(fw_control
->len
);
4951 flash_update_info
.sgl
.im_len
.e
= 0;
4952 flash_update_info
.cur_image_offset
= fw_control
->offset
;
4953 flash_update_info
.cur_image_len
= fw_control
->len
;
4954 flash_update_info
.total_image_len
= fw_control
->size
;
4955 fw_control_context
->fw_control
= fw_control
;
4956 fw_control_context
->virtAddr
= buffer
;
4957 fw_control_context
->phys_addr
= phys_addr
;
4958 fw_control_context
->len
= fw_control
->len
;
4959 rc
= pm8001_tag_alloc(pm8001_ha
, &tag
);
4961 kfree(fw_control_context
);
4964 ccb
= &pm8001_ha
->ccb_info
[tag
];
4965 ccb
->fw_control_context
= fw_control_context
;
4967 rc
= pm8001_chip_fw_flash_update_build(pm8001_ha
, &flash_update_info
,
4973 pm8001_get_gsm_dump(struct device
*cdev
, u32 length
, char *buf
)
4975 u32 value
, rem
, offset
= 0, bar
= 0;
4976 u32 index
, work_offset
, dw_length
;
4977 u32 shift_value
, gsm_base
, gsm_dump_offset
;
4979 struct Scsi_Host
*shost
= class_to_shost(cdev
);
4980 struct sas_ha_struct
*sha
= SHOST_TO_SAS_HA(shost
);
4981 struct pm8001_hba_info
*pm8001_ha
= sha
->lldd_ha
;
4984 gsm_dump_offset
= pm8001_ha
->fatal_forensic_shift_offset
;
4986 /* check max is 1 Mbytes */
4987 if ((length
> 0x100000) || (gsm_dump_offset
& 3) ||
4988 ((gsm_dump_offset
+ length
) > 0x1000000))
4991 if (pm8001_ha
->chip_id
== chip_8001
)
4996 work_offset
= gsm_dump_offset
& 0xFFFF0000;
4997 offset
= gsm_dump_offset
& 0x0000FFFF;
4998 gsm_dump_offset
= work_offset
;
4999 /* adjust length to dword boundary */
5001 dw_length
= length
>> 2;
5003 for (index
= 0; index
< dw_length
; index
++) {
5004 if ((work_offset
+ offset
) & 0xFFFF0000) {
5005 if (pm8001_ha
->chip_id
== chip_8001
)
5006 shift_value
= ((gsm_dump_offset
+ offset
) &
5007 SHIFT_REG_64K_MASK
);
5009 shift_value
= (((gsm_dump_offset
+ offset
) &
5010 SHIFT_REG_64K_MASK
) >>
5011 SHIFT_REG_BIT_SHIFT
);
5013 if (pm8001_ha
->chip_id
== chip_8001
) {
5014 gsm_base
= GSM_BASE
;
5015 if (-1 == pm8001_bar4_shift(pm8001_ha
,
5016 (gsm_base
+ shift_value
)))
5020 if (-1 == pm80xx_bar4_shift(pm8001_ha
,
5021 (gsm_base
+ shift_value
)))
5024 gsm_dump_offset
= (gsm_dump_offset
+ offset
) &
5027 offset
= offset
& 0x0000FFFF;
5029 value
= pm8001_cr32(pm8001_ha
, bar
, (work_offset
+ offset
) &
5031 direct_data
+= sprintf(direct_data
, "%08x ", value
);
5035 value
= pm8001_cr32(pm8001_ha
, bar
, (work_offset
+ offset
) &
5037 /* xfr for non_dw */
5038 direct_data
+= sprintf(direct_data
, "%08x ", value
);
5040 /* Shift back to BAR4 original address */
5041 if (-1 == pm8001_bar4_shift(pm8001_ha
, 0))
5043 pm8001_ha
->fatal_forensic_shift_offset
+= 1024;
5045 if (pm8001_ha
->fatal_forensic_shift_offset
>= 0x100000)
5046 pm8001_ha
->fatal_forensic_shift_offset
= 0;
5047 return direct_data
- buf
;
5051 pm8001_chip_set_dev_state_req(struct pm8001_hba_info
*pm8001_ha
,
5052 struct pm8001_device
*pm8001_dev
, u32 state
)
5054 struct set_dev_state_req payload
;
5055 struct inbound_queue_table
*circularQ
;
5056 struct pm8001_ccb_info
*ccb
;
5059 u32 opc
= OPC_INB_SET_DEVICE_STATE
;
5060 memset(&payload
, 0, sizeof(payload
));
5061 rc
= pm8001_tag_alloc(pm8001_ha
, &tag
);
5064 ccb
= &pm8001_ha
->ccb_info
[tag
];
5066 ccb
->device
= pm8001_dev
;
5067 circularQ
= &pm8001_ha
->inbnd_q_tbl
[0];
5068 payload
.tag
= cpu_to_le32(tag
);
5069 payload
.device_id
= cpu_to_le32(pm8001_dev
->device_id
);
5070 payload
.nds
= cpu_to_le32(state
);
5071 rc
= pm8001_mpi_build_cmd(pm8001_ha
, circularQ
, opc
, &payload
, 0);
5077 pm8001_chip_sas_re_initialization(struct pm8001_hba_info
*pm8001_ha
)
5079 struct sas_re_initialization_req payload
;
5080 struct inbound_queue_table
*circularQ
;
5081 struct pm8001_ccb_info
*ccb
;
5084 u32 opc
= OPC_INB_SAS_RE_INITIALIZE
;
5085 memset(&payload
, 0, sizeof(payload
));
5086 rc
= pm8001_tag_alloc(pm8001_ha
, &tag
);
5089 ccb
= &pm8001_ha
->ccb_info
[tag
];
5091 circularQ
= &pm8001_ha
->inbnd_q_tbl
[0];
5092 payload
.tag
= cpu_to_le32(tag
);
5093 payload
.SSAHOLT
= cpu_to_le32(0xd << 25);
5094 payload
.sata_hol_tmo
= cpu_to_le32(80);
5095 payload
.open_reject_cmdretries_data_retries
= cpu_to_le32(0xff00ff);
5096 rc
= pm8001_mpi_build_cmd(pm8001_ha
, circularQ
, opc
, &payload
, 0);
5098 pm8001_tag_free(pm8001_ha
, tag
);
5103 const struct pm8001_dispatch pm8001_8001_dispatch
= {
5105 .chip_init
= pm8001_chip_init
,
5106 .chip_soft_rst
= pm8001_chip_soft_rst
,
5107 .chip_rst
= pm8001_hw_chip_rst
,
5108 .chip_iounmap
= pm8001_chip_iounmap
,
5109 .isr
= pm8001_chip_isr
,
5110 .is_our_interupt
= pm8001_chip_is_our_interupt
,
5111 .isr_process_oq
= process_oq
,
5112 .interrupt_enable
= pm8001_chip_interrupt_enable
,
5113 .interrupt_disable
= pm8001_chip_interrupt_disable
,
5114 .make_prd
= pm8001_chip_make_sg
,
5115 .smp_req
= pm8001_chip_smp_req
,
5116 .ssp_io_req
= pm8001_chip_ssp_io_req
,
5117 .sata_req
= pm8001_chip_sata_req
,
5118 .phy_start_req
= pm8001_chip_phy_start_req
,
5119 .phy_stop_req
= pm8001_chip_phy_stop_req
,
5120 .reg_dev_req
= pm8001_chip_reg_dev_req
,
5121 .dereg_dev_req
= pm8001_chip_dereg_dev_req
,
5122 .phy_ctl_req
= pm8001_chip_phy_ctl_req
,
5123 .task_abort
= pm8001_chip_abort_task
,
5124 .ssp_tm_req
= pm8001_chip_ssp_tm_req
,
5125 .get_nvmd_req
= pm8001_chip_get_nvmd_req
,
5126 .set_nvmd_req
= pm8001_chip_set_nvmd_req
,
5127 .fw_flash_update_req
= pm8001_chip_fw_flash_update_req
,
5128 .set_dev_state_req
= pm8001_chip_set_dev_state_req
,
5129 .sas_re_init_req
= pm8001_chip_sas_re_initialization
,