blob: f720b97b7bb5c9982afda972af51aab1f9be4b25 [file] [log] [blame]
Dan Williams6f231dd2011-07-02 22:56:22 -07001/*
2 * This file is provided under a dual BSD/GPLv2 license. When using or
3 * redistributing this file, you may do so under either license.
4 *
5 * GPL LICENSE SUMMARY
6 *
7 * Copyright(c) 2008 - 2011 Intel Corporation. All rights reserved.
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of version 2 of the GNU General Public License as
11 * published by the Free Software Foundation.
12 *
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
21 * The full GNU General Public License is included in this distribution
22 * in the file called LICENSE.GPL.
23 *
24 * BSD LICENSE
25 *
26 * Copyright(c) 2008 - 2011 Intel Corporation. All rights reserved.
27 * All rights reserved.
28 *
29 * Redistribution and use in source and binary forms, with or without
30 * modification, are permitted provided that the following conditions
31 * are met:
32 *
33 * * Redistributions of source code must retain the above copyright
34 * notice, this list of conditions and the following disclaimer.
35 * * Redistributions in binary form must reproduce the above copyright
36 * notice, this list of conditions and the following disclaimer in
37 * the documentation and/or other materials provided with the
38 * distribution.
39 * * Neither the name of Intel Corporation nor the names of its
40 * contributors may be used to endorse or promote products derived
41 * from this software without specific prior written permission.
42 *
43 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
44 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
45 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
46 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
47 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
48 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
49 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
50 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
51 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
52 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
53 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
54 */
55
Dan Williams0d843662011-05-08 01:56:57 -070056#ifndef _ISCI_REQUEST_H_
Dan Williams6f231dd2011-07-02 22:56:22 -070057#define _ISCI_REQUEST_H_
58
59#include "isci.h"
Dan Williamsce2b3262011-05-08 15:49:15 -070060#include "host.h"
Dan Williamsf1f52e72011-05-10 02:28:45 -070061#include "scu_task_context.h"
Dan Williams6f231dd2011-07-02 22:56:22 -070062
63/**
64 * struct isci_request_status - This enum defines the possible states of an I/O
65 * request.
66 *
67 *
68 */
69enum isci_request_status {
70 unallocated = 0x00,
71 allocated = 0x01,
72 started = 0x02,
73 completed = 0x03,
74 aborting = 0x04,
75 aborted = 0x05,
Jeff Skirvin4dc043c2011-03-04 14:06:52 -080076 terminating = 0x06,
77 dead = 0x07
Dan Williams6f231dd2011-07-02 22:56:22 -070078};
79
80enum task_type {
81 io_task = 0,
82 tmf_task = 1
83};
84
Dan Williamsf1f52e72011-05-10 02:28:45 -070085enum sci_request_protocol {
86 SCIC_NO_PROTOCOL,
87 SCIC_SMP_PROTOCOL,
88 SCIC_SSP_PROTOCOL,
89 SCIC_STP_PROTOCOL
Dan Williamsc72086e2011-05-10 02:28:48 -070090}; /* XXX remove me, use sas_task.{dev|task_proto} instead */;
Dan Williamsf1f52e72011-05-10 02:28:45 -070091
Dan Williamsba7cb222011-06-27 11:56:41 -070092/**
93 * isci_stp_request - extra request infrastructure to handle pio/atapi protocol
94 * @pio_len - number of bytes requested at PIO setup
95 * @status - pio setup ending status value to tell us if we need
Dan Williams5076a1a2011-06-27 14:57:03 -070096 * to wait for another fis or if the transfer is complete. Upon
Dan Williamsba7cb222011-06-27 11:56:41 -070097 * receipt of a d2h fis this will be the status field of that fis.
98 * @sgl - track pio transfer progress as we iterate through the sgl
Dan Williamsba7cb222011-06-27 11:56:41 -070099 */
100struct isci_stp_request {
101 u32 pio_len;
102 u8 status;
Dan Williams5dec6f42011-05-10 02:28:49 -0700103
Dan Williamsba7cb222011-06-27 11:56:41 -0700104 struct isci_stp_pio_sgl {
105 int index;
106 u8 set;
107 u32 offset;
108 } sgl;
Dan Williams5dec6f42011-05-10 02:28:49 -0700109};
110
Dan Williams5076a1a2011-06-27 14:57:03 -0700111struct isci_request {
112 enum isci_request_status status;
113 #define IREQ_COMPLETE_IN_TARGET 0
114 #define IREQ_TERMINATED 1
115 #define IREQ_TMF 2
116 #define IREQ_ACTIVE 3
117 unsigned long flags;
118 /* XXX kill ttype and ttype_ptr, allocate full sas_task */
119 enum task_type ttype;
120 union ttype_ptr_union {
121 struct sas_task *io_task_ptr; /* When ttype==io_task */
122 struct isci_tmf *tmf_task_ptr; /* When ttype==tmf_task */
123 } ttype_ptr;
124 struct isci_host *isci_host;
125 /* For use in the requests_to_{complete|abort} lists: */
126 struct list_head completed_node;
127 /* For use in the reqs_in_process list: */
128 struct list_head dev_node;
129 spinlock_t state_lock;
130 dma_addr_t request_daddr;
131 dma_addr_t zero_scatter_daddr;
132 unsigned int num_sg_entries;
133 /* Note: "io_request_completion" is completed in two different ways
134 * depending on whether this is a TMF or regular request.
135 * - TMF requests are completed in the thread that started them;
136 * - regular requests are completed in the request completion callback
137 * function.
138 * This difference in operation allows the aborter of a TMF request
139 * to be sure that once the TMF request completes, the I/O that the
140 * TMF was aborting is guaranteed to have completed.
141 *
142 * XXX kill io_request_completion
Dan Williamsf1f52e72011-05-10 02:28:45 -0700143 */
Dan Williams5076a1a2011-06-27 14:57:03 -0700144 struct completion *io_request_completion;
Edmund Nadolskie3013702011-06-02 00:10:43 +0000145 struct sci_base_state_machine sm;
Dan Williamsd9dcb4b2011-06-30 17:38:32 -0700146 struct isci_host *owning_controller;
Dan Williams78a6f062011-06-30 16:31:37 -0700147 struct isci_remote_device *target_device;
Dan Williamsf1f52e72011-05-10 02:28:45 -0700148 u16 io_tag;
Dan Williamsf1f52e72011-05-10 02:28:45 -0700149 enum sci_request_protocol protocol;
Dan Williams5076a1a2011-06-27 14:57:03 -0700150 u32 scu_status; /* hardware result */
151 u32 sci_status; /* upper layer disposition */
Dan Williamsf1f52e72011-05-10 02:28:45 -0700152 u32 post_context;
Dan Williams312e0c22011-06-28 13:47:09 -0700153 struct scu_task_context *tc;
Dan Williamsf1f52e72011-05-10 02:28:45 -0700154 /* could be larger with sg chaining */
Dan Williams7c78da32011-06-01 16:00:01 -0700155 #define SCU_SGL_SIZE ((SCI_MAX_SCATTER_GATHER_ELEMENTS + 1) / 2)
Dan Williamsf1f52e72011-05-10 02:28:45 -0700156 struct scu_sgl_element_pair sg_table[SCU_SGL_SIZE] __attribute__ ((aligned(32)));
Dan Williams5076a1a2011-06-27 14:57:03 -0700157 /* This field is a pointer to the stored rx frame data. It is used in
Edmund Nadolskie3013702011-06-02 00:10:43 +0000158 * STP internal requests and SMP response frames. If this field is
159 * non-NULL the saved frame must be released on IO request completion.
Dan Williamsf1f52e72011-05-10 02:28:45 -0700160 */
161 u32 saved_rx_frame_index;
162
Dan Williamsf1f52e72011-05-10 02:28:45 -0700163 union {
164 struct {
165 union {
166 struct ssp_cmd_iu cmd;
167 struct ssp_task_iu tmf;
168 };
169 union {
170 struct ssp_response_iu rsp;
171 u8 rsp_buf[SSP_RESP_IU_MAX_SIZE];
172 };
173 } ssp;
Dan Williamsf1f52e72011-05-10 02:28:45 -0700174 struct {
Dan Williamsba7cb222011-06-27 11:56:41 -0700175 struct isci_stp_request req;
Dan Williamsf1f52e72011-05-10 02:28:45 -0700176 struct host_to_dev_fis cmd;
177 struct dev_to_host_fis rsp;
178 } stp;
179 };
Dan Williamsf1f52e72011-05-10 02:28:45 -0700180};
181
Dan Williams5076a1a2011-06-27 14:57:03 -0700182static inline struct isci_request *to_ireq(struct isci_stp_request *stp_req)
Dan Williamsf1f52e72011-05-10 02:28:45 -0700183{
Dan Williams5076a1a2011-06-27 14:57:03 -0700184 struct isci_request *ireq;
Dan Williamsf1f52e72011-05-10 02:28:45 -0700185
Dan Williams5076a1a2011-06-27 14:57:03 -0700186 ireq = container_of(stp_req, typeof(*ireq), stp.req);
Dan Williams67ea8382011-05-08 11:47:15 -0700187 return ireq;
188}
189
Dan Williams6f231dd2011-07-02 22:56:22 -0700190/**
Dan Williamsf1f52e72011-05-10 02:28:45 -0700191 * enum sci_base_request_states - This enumeration depicts all the states for
192 * the common request state machine.
193 *
194 *
195 */
196enum sci_base_request_states {
Edmund Nadolskie3013702011-06-02 00:10:43 +0000197 /*
Dan Williamsf1f52e72011-05-10 02:28:45 -0700198 * Simply the initial state for the base request state machine.
199 */
Edmund Nadolskie3013702011-06-02 00:10:43 +0000200 SCI_REQ_INIT,
Dan Williamsf1f52e72011-05-10 02:28:45 -0700201
Edmund Nadolskie3013702011-06-02 00:10:43 +0000202 /*
203 * This state indicates that the request has been constructed.
204 * This state is entered from the INITIAL state.
Dan Williamsf1f52e72011-05-10 02:28:45 -0700205 */
Edmund Nadolskie3013702011-06-02 00:10:43 +0000206 SCI_REQ_CONSTRUCTED,
Dan Williamsf1f52e72011-05-10 02:28:45 -0700207
Edmund Nadolskie3013702011-06-02 00:10:43 +0000208 /*
209 * This state indicates that the request has been started. This state
210 * is entered from the CONSTRUCTED state.
Dan Williamsf1f52e72011-05-10 02:28:45 -0700211 */
Edmund Nadolskie3013702011-06-02 00:10:43 +0000212 SCI_REQ_STARTED,
Dan Williamsf1f52e72011-05-10 02:28:45 -0700213
Edmund Nadolskie3013702011-06-02 00:10:43 +0000214 SCI_REQ_STP_UDMA_WAIT_TC_COMP,
215 SCI_REQ_STP_UDMA_WAIT_D2H,
Dan Williams5dec6f42011-05-10 02:28:49 -0700216
Edmund Nadolskie3013702011-06-02 00:10:43 +0000217 SCI_REQ_STP_NON_DATA_WAIT_H2D,
218 SCI_REQ_STP_NON_DATA_WAIT_D2H,
Dan Williams5dec6f42011-05-10 02:28:49 -0700219
Edmund Nadolskie3013702011-06-02 00:10:43 +0000220 SCI_REQ_STP_SOFT_RESET_WAIT_H2D_ASSERTED,
221 SCI_REQ_STP_SOFT_RESET_WAIT_H2D_DIAG,
222 SCI_REQ_STP_SOFT_RESET_WAIT_D2H,
Dan Williams5dec6f42011-05-10 02:28:49 -0700223
Edmund Nadolskie3013702011-06-02 00:10:43 +0000224 /*
225 * While in this state the IO request object is waiting for the TC
226 * completion notification for the H2D Register FIS
Dan Williams5dec6f42011-05-10 02:28:49 -0700227 */
Edmund Nadolskie3013702011-06-02 00:10:43 +0000228 SCI_REQ_STP_PIO_WAIT_H2D,
Dan Williams5dec6f42011-05-10 02:28:49 -0700229
Edmund Nadolskie3013702011-06-02 00:10:43 +0000230 /*
231 * While in this state the IO request object is waiting for either a
232 * PIO Setup FIS or a D2H register FIS. The type of frame received is
233 * based on the result of the prior frame and line conditions.
Dan Williams5dec6f42011-05-10 02:28:49 -0700234 */
Edmund Nadolskie3013702011-06-02 00:10:43 +0000235 SCI_REQ_STP_PIO_WAIT_FRAME,
Dan Williams5dec6f42011-05-10 02:28:49 -0700236
Edmund Nadolskie3013702011-06-02 00:10:43 +0000237 /*
238 * While in this state the IO request object is waiting for a DATA
239 * frame from the device.
Dan Williams5dec6f42011-05-10 02:28:49 -0700240 */
Edmund Nadolskie3013702011-06-02 00:10:43 +0000241 SCI_REQ_STP_PIO_DATA_IN,
Dan Williams5dec6f42011-05-10 02:28:49 -0700242
Edmund Nadolskie3013702011-06-02 00:10:43 +0000243 /*
244 * While in this state the IO request object is waiting to transmit
245 * the next data frame to the device.
Dan Williams5dec6f42011-05-10 02:28:49 -0700246 */
Edmund Nadolskie3013702011-06-02 00:10:43 +0000247 SCI_REQ_STP_PIO_DATA_OUT,
Dan Williams5dec6f42011-05-10 02:28:49 -0700248
Edmund Nadolskie3013702011-06-02 00:10:43 +0000249 /*
Dan Williamsb50102d2011-09-30 18:52:19 -0700250 * While in this state the IO request object is waiting for the TC
251 * completion notification for the H2D Register FIS
252 */
253 SCI_REQ_ATAPI_WAIT_H2D,
254
255 /*
256 * While in this state the IO request object is waiting for either a
257 * PIO Setup.
258 */
259 SCI_REQ_ATAPI_WAIT_PIO_SETUP,
260
261 /*
262 * The non-data IO transit to this state in this state after receiving
263 * TC completion. While in this state IO request object is waiting for
264 * D2H status frame as UF.
265 */
266 SCI_REQ_ATAPI_WAIT_D2H,
267
268 /*
269 * When transmitting raw frames hardware reports task context completion
270 * after every frame submission, so in the non-accelerated case we need
271 * to expect the completion for the "cdb" frame.
272 */
273 SCI_REQ_ATAPI_WAIT_TC_COMP,
274
275 /*
Dan Williamsf1393032011-05-10 02:28:47 -0700276 * The AWAIT_TC_COMPLETION sub-state indicates that the started raw
277 * task management request is waiting for the transmission of the
278 * initial frame (i.e. command, task, etc.).
279 */
Edmund Nadolskie3013702011-06-02 00:10:43 +0000280 SCI_REQ_TASK_WAIT_TC_COMP,
Dan Williamsf1393032011-05-10 02:28:47 -0700281
Edmund Nadolskie3013702011-06-02 00:10:43 +0000282 /*
Dan Williamsf1393032011-05-10 02:28:47 -0700283 * This sub-state indicates that the started task management request
284 * is waiting for the reception of an unsolicited frame
285 * (i.e. response IU).
286 */
Edmund Nadolskie3013702011-06-02 00:10:43 +0000287 SCI_REQ_TASK_WAIT_TC_RESP,
Dan Williamsf1393032011-05-10 02:28:47 -0700288
Edmund Nadolskie3013702011-06-02 00:10:43 +0000289 /*
Dan Williamsc72086e2011-05-10 02:28:48 -0700290 * This sub-state indicates that the started task management request
291 * is waiting for the reception of an unsolicited frame
292 * (i.e. response IU).
293 */
Edmund Nadolskie3013702011-06-02 00:10:43 +0000294 SCI_REQ_SMP_WAIT_RESP,
Dan Williamsc72086e2011-05-10 02:28:48 -0700295
Edmund Nadolskie3013702011-06-02 00:10:43 +0000296 /*
297 * The AWAIT_TC_COMPLETION sub-state indicates that the started SMP
298 * request is waiting for the transmission of the initial frame
299 * (i.e. command, task, etc.).
Dan Williamsc72086e2011-05-10 02:28:48 -0700300 */
Edmund Nadolskie3013702011-06-02 00:10:43 +0000301 SCI_REQ_SMP_WAIT_TC_COMP,
Dan Williamsc72086e2011-05-10 02:28:48 -0700302
Edmund Nadolskie3013702011-06-02 00:10:43 +0000303 /*
Dan Williamsf1f52e72011-05-10 02:28:45 -0700304 * This state indicates that the request has completed.
Edmund Nadolskie3013702011-06-02 00:10:43 +0000305 * This state is entered from the STARTED state. This state is entered
306 * from the ABORTING state.
Dan Williamsf1f52e72011-05-10 02:28:45 -0700307 */
Edmund Nadolskie3013702011-06-02 00:10:43 +0000308 SCI_REQ_COMPLETED,
Dan Williamsf1f52e72011-05-10 02:28:45 -0700309
Edmund Nadolskie3013702011-06-02 00:10:43 +0000310 /*
Dan Williamsf1f52e72011-05-10 02:28:45 -0700311 * This state indicates that the request is in the process of being
312 * terminated/aborted.
313 * This state is entered from the CONSTRUCTED state.
314 * This state is entered from the STARTED state.
315 */
Edmund Nadolskie3013702011-06-02 00:10:43 +0000316 SCI_REQ_ABORTING,
Dan Williamsf1f52e72011-05-10 02:28:45 -0700317
Edmund Nadolskie3013702011-06-02 00:10:43 +0000318 /*
Dan Williamsf1f52e72011-05-10 02:28:45 -0700319 * Simply the final state for the base request state machine.
320 */
Edmund Nadolskie3013702011-06-02 00:10:43 +0000321 SCI_REQ_FINAL,
Dan Williamsf1f52e72011-05-10 02:28:45 -0700322};
323
Dan Williams89a73012011-06-30 19:14:33 -0700324enum sci_status sci_request_start(struct isci_request *ireq);
325enum sci_status sci_io_request_terminate(struct isci_request *ireq);
Edmund Nadolskie3013702011-06-02 00:10:43 +0000326enum sci_status
Dan Williams89a73012011-06-30 19:14:33 -0700327sci_io_request_event_handler(struct isci_request *ireq,
Edmund Nadolskie3013702011-06-02 00:10:43 +0000328 u32 event_code);
329enum sci_status
Dan Williams89a73012011-06-30 19:14:33 -0700330sci_io_request_frame_handler(struct isci_request *ireq,
Edmund Nadolskie3013702011-06-02 00:10:43 +0000331 u32 frame_index);
332enum sci_status
Dan Williams89a73012011-06-30 19:14:33 -0700333sci_task_request_terminate(struct isci_request *ireq);
Edmund Nadolskie3013702011-06-02 00:10:43 +0000334extern enum sci_status
Dan Williams89a73012011-06-30 19:14:33 -0700335sci_request_complete(struct isci_request *ireq);
Edmund Nadolskie3013702011-06-02 00:10:43 +0000336extern enum sci_status
Dan Williams89a73012011-06-30 19:14:33 -0700337sci_io_request_tc_completion(struct isci_request *ireq, u32 code);
Dan Williamsf1f52e72011-05-10 02:28:45 -0700338
Dan Williamsf1f52e72011-05-10 02:28:45 -0700339/* XXX open code in caller */
Edmund Nadolskie3013702011-06-02 00:10:43 +0000340static inline dma_addr_t
Dan Williams89a73012011-06-30 19:14:33 -0700341sci_io_request_get_dma_addr(struct isci_request *ireq, void *virt_addr)
Dan Williamsf1f52e72011-05-10 02:28:45 -0700342{
Dan Williamsf1f52e72011-05-10 02:28:45 -0700343
344 char *requested_addr = (char *)virt_addr;
345 char *base_addr = (char *)ireq;
346
347 BUG_ON(requested_addr < base_addr);
348 BUG_ON((requested_addr - base_addr) >= sizeof(*ireq));
349
350 return ireq->request_daddr + (requested_addr - base_addr);
351}
352
353/**
Dan Williams6f231dd2011-07-02 22:56:22 -0700354 * isci_request_change_state() - This function sets the status of the request
355 * object.
356 * @request: This parameter points to the isci_request object
357 * @status: This Parameter is the new status of the object
358 *
359 */
Edmund Nadolskie3013702011-06-02 00:10:43 +0000360static inline enum isci_request_status
361isci_request_change_state(struct isci_request *isci_request,
362 enum isci_request_status status)
Dan Williams6f231dd2011-07-02 22:56:22 -0700363{
364 enum isci_request_status old_state;
365 unsigned long flags;
366
367 dev_dbg(&isci_request->isci_host->pdev->dev,
368 "%s: isci_request = %p, state = 0x%x\n",
369 __func__,
370 isci_request,
371 status);
372
373 BUG_ON(isci_request == NULL);
374
375 spin_lock_irqsave(&isci_request->state_lock, flags);
376 old_state = isci_request->status;
377 isci_request->status = status;
378 spin_unlock_irqrestore(&isci_request->state_lock, flags);
379
380 return old_state;
381}
382
383/**
384 * isci_request_change_started_to_newstate() - This function sets the status of
385 * the request object.
386 * @request: This parameter points to the isci_request object
387 * @status: This Parameter is the new status of the object
388 *
389 * state previous to any change.
390 */
Edmund Nadolskie3013702011-06-02 00:10:43 +0000391static inline enum isci_request_status
392isci_request_change_started_to_newstate(struct isci_request *isci_request,
393 struct completion *completion_ptr,
394 enum isci_request_status newstate)
Dan Williams6f231dd2011-07-02 22:56:22 -0700395{
396 enum isci_request_status old_state;
397 unsigned long flags;
398
Dan Williams6f231dd2011-07-02 22:56:22 -0700399 spin_lock_irqsave(&isci_request->state_lock, flags);
400
401 old_state = isci_request->status;
402
Jeff Skirvinf219f012011-03-31 13:10:34 -0700403 if (old_state == started || old_state == aborting) {
Dan Williams6f231dd2011-07-02 22:56:22 -0700404 BUG_ON(isci_request->io_request_completion != NULL);
405
406 isci_request->io_request_completion = completion_ptr;
407 isci_request->status = newstate;
408 }
Edmund Nadolskie3013702011-06-02 00:10:43 +0000409
Dan Williams6f231dd2011-07-02 22:56:22 -0700410 spin_unlock_irqrestore(&isci_request->state_lock, flags);
411
412 dev_dbg(&isci_request->isci_host->pdev->dev,
413 "%s: isci_request = %p, old_state = 0x%x\n",
414 __func__,
415 isci_request,
416 old_state);
417
418 return old_state;
419}
420
421/**
422 * isci_request_change_started_to_aborted() - This function sets the status of
423 * the request object.
424 * @request: This parameter points to the isci_request object
425 * @completion_ptr: This parameter is saved as the kernel completion structure
426 * signalled when the old request completes.
427 *
428 * state previous to any change.
429 */
Edmund Nadolskie3013702011-06-02 00:10:43 +0000430static inline enum isci_request_status
431isci_request_change_started_to_aborted(struct isci_request *isci_request,
432 struct completion *completion_ptr)
Dan Williams6f231dd2011-07-02 22:56:22 -0700433{
Edmund Nadolskie3013702011-06-02 00:10:43 +0000434 return isci_request_change_started_to_newstate(isci_request,
435 completion_ptr,
436 aborted);
Dan Williams6f231dd2011-07-02 22:56:22 -0700437}
Dan Williams6f231dd2011-07-02 22:56:22 -0700438
Edmund Nadolskie3013702011-06-02 00:10:43 +0000439#define isci_request_access_task(req) ((req)->ttype_ptr.io_task_ptr)
Dan Williams6f231dd2011-07-02 22:56:22 -0700440
Edmund Nadolskie3013702011-06-02 00:10:43 +0000441#define isci_request_access_tmf(req) ((req)->ttype_ptr.tmf_task_ptr)
Dan Williams6f231dd2011-07-02 22:56:22 -0700442
Dan Williamsdb056252011-06-17 14:18:39 -0700443struct isci_request *isci_tmf_request_from_tag(struct isci_host *ihost,
444 struct isci_tmf *isci_tmf,
445 u16 tag);
Dan Williams209fae12011-06-13 17:39:44 -0700446int isci_request_execute(struct isci_host *ihost, struct isci_remote_device *idev,
Dan Williamsdb056252011-06-17 14:18:39 -0700447 struct sas_task *task, u16 tag);
Dan Williamsddcc7e32011-06-17 10:40:43 -0700448void isci_terminate_pending_requests(struct isci_host *ihost,
449 struct isci_remote_device *idev);
Edmund Nadolskie3013702011-06-02 00:10:43 +0000450enum sci_status
Dan Williams89a73012011-06-30 19:14:33 -0700451sci_task_request_construct(struct isci_host *ihost,
Dan Williams78a6f062011-06-30 16:31:37 -0700452 struct isci_remote_device *idev,
Edmund Nadolskie3013702011-06-02 00:10:43 +0000453 u16 io_tag,
Dan Williams5076a1a2011-06-27 14:57:03 -0700454 struct isci_request *ireq);
Edmund Nadolskie3013702011-06-02 00:10:43 +0000455enum sci_status
Dan Williams89a73012011-06-30 19:14:33 -0700456sci_task_request_construct_ssp(struct isci_request *ireq);
Edmund Nadolskie3013702011-06-02 00:10:43 +0000457enum sci_status
Dan Williams89a73012011-06-30 19:14:33 -0700458sci_task_request_construct_sata(struct isci_request *ireq);
Dan Williams89a73012011-06-30 19:14:33 -0700459void sci_smp_request_copy_response(struct isci_request *ireq);
Jeff Skirvin9274f452011-06-23 17:09:02 -0700460
461static inline int isci_task_is_ncq_recovery(struct sas_task *task)
462{
463 return (sas_protocol_ata(task->task_proto) &&
James Bottomleya5ec7f862011-07-03 14:14:45 -0500464 task->ata_task.fis.command == ATA_CMD_READ_LOG_EXT &&
465 task->ata_task.fis.lbal == ATA_LOG_SATA_NCQ);
Jeff Skirvin9274f452011-06-23 17:09:02 -0700466
467}
468
Dan Williams6f231dd2011-07-02 22:56:22 -0700469#endif /* !defined(_ISCI_REQUEST_H_) */