isci: uplevel state machine
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / scsi / isci / core / scic_sds_request.h
bloba8d74a15a86bce26e3d9c6680e65828fbc36a374
1 /*
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.
5 * GPL LICENSE SUMMARY
7 * Copyright(c) 2008 - 2011 Intel Corporation. All rights reserved.
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.
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.
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.
24 * BSD LICENSE
26 * Copyright(c) 2008 - 2011 Intel Corporation. All rights reserved.
27 * All rights reserved.
29 * Redistribution and use in source and binary forms, with or without
30 * modification, are permitted provided that the following conditions
31 * are met:
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.
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.
56 #ifndef _SCIC_SDS_IO_REQUEST_H_
57 #define _SCIC_SDS_IO_REQUEST_H_
59 #include "isci.h"
60 #include "scic_io_request.h"
61 #include "state_machine.h"
62 #include "scu_task_context.h"
63 #include "scic_sds_stp_request.h"
64 #include "sas.h"
66 struct scic_sds_controller;
67 struct scic_sds_remote_device;
68 struct scic_sds_io_request_state_handler;
70 /**
71 * enum _scic_sds_io_request_started_task_mgmt_substates - This enumeration
72 * depicts all of the substates for a task management request to be
73 * performed in the STARTED super-state.
77 enum scic_sds_raw_request_started_task_mgmt_substates {
78 /**
79 * The AWAIT_TC_COMPLETION sub-state indicates that the started raw
80 * task management request is waiting for the transmission of the
81 * initial frame (i.e. command, task, etc.).
83 SCIC_SDS_IO_REQUEST_STARTED_TASK_MGMT_SUBSTATE_AWAIT_TC_COMPLETION,
85 /**
86 * This sub-state indicates that the started task management request
87 * is waiting for the reception of an unsolicited frame
88 * (i.e. response IU).
90 SCIC_SDS_IO_REQUEST_STARTED_TASK_MGMT_SUBSTATE_AWAIT_TC_RESPONSE,
94 /**
95 * enum _scic_sds_smp_request_started_substates - This enumeration depicts all
96 * of the substates for a SMP request to be performed in the STARTED
97 * super-state.
101 enum scic_sds_smp_request_started_substates {
103 * This sub-state indicates that the started task management request
104 * is waiting for the reception of an unsolicited frame
105 * (i.e. response IU).
107 SCIC_SDS_SMP_REQUEST_STARTED_SUBSTATE_AWAIT_RESPONSE,
110 * The AWAIT_TC_COMPLETION sub-state indicates that the started SMP request is
111 * waiting for the transmission of the initial frame (i.e. command, task, etc.).
113 SCIC_SDS_SMP_REQUEST_STARTED_SUBSTATE_AWAIT_TC_COMPLETION,
116 struct scic_sds_request {
118 * This field contains the information for the base request state machine.
120 struct sci_base_state_machine state_machine;
123 * This field simply points to the controller to which this IO request
124 * is associated.
126 struct scic_sds_controller *owning_controller;
129 * This field simply points to the remote device to which this IO request
130 * is associated.
132 struct scic_sds_remote_device *target_device;
135 * This field is utilized to determine if the SCI user is managing
136 * the IO tag for this request or if the core is managing it.
138 bool was_tag_assigned_by_user;
141 * This field indicates the IO tag for this request. The IO tag is
142 * comprised of the task_index and a sequence count. The sequence count
143 * is utilized to help identify tasks from one life to another.
145 u16 io_tag;
148 * This field specifies the protocol being utilized for this
149 * IO request.
151 SCIC_TRANSPORT_PROTOCOL protocol;
154 * This field indicates the completion status taken from the SCUs
155 * completion code. It indicates the completion result for the SCU hardware.
157 u32 scu_status;
160 * This field indicates the completion status returned to the SCI user. It
161 * indicates the users view of the io request completion.
163 u32 sci_status;
166 * This field contains the value to be utilized when posting (e.g. Post_TC,
167 * Post_TC_Abort) this request to the silicon.
169 u32 post_context;
171 struct scu_task_context *task_context_buffer;
172 struct scu_task_context tc ____cacheline_aligned;
174 /* could be larger with sg chaining */
175 #define SCU_SGL_SIZE ((SCU_IO_REQUEST_SGE_COUNT + 1) / 2)
176 struct scu_sgl_element_pair sg_table[SCU_SGL_SIZE] __attribute__ ((aligned(32)));
179 * This field indicates if this request is a task management request or
180 * normal IO request.
182 bool is_task_management_request;
185 * This field indicates that this request contains an initialized started
186 * substate machine.
188 bool has_started_substate_machine;
191 * This field is a pointer to the stored rx frame data. It is used in STP
192 * internal requests and SMP response frames. If this field is non-NULL the
193 * saved frame must be released on IO request completion.
195 * @todo In the future do we want to keep a list of RX frame buffers?
197 u32 saved_rx_frame_index;
200 * This field specifies the data necessary to manage the sub-state
201 * machine executed while in the SCI_BASE_REQUEST_STATE_STARTED state.
203 struct sci_base_state_machine started_substate_machine;
206 * This field specifies the current state handlers in place for this
207 * IO Request object. This field is updated each time the request
208 * changes state.
210 const struct scic_sds_io_request_state_handler *state_handlers;
213 * This field in the recorded device sequence for the io request. This is
214 * recorded during the build operation and is compared in the start
215 * operation. If the sequence is different then there was a change of
216 * devices from the build to start operations.
218 u8 device_sequence;
220 union {
221 struct {
222 union {
223 struct ssp_cmd_iu cmd;
224 struct ssp_task_iu tmf;
226 union {
227 struct ssp_response_iu rsp;
228 u8 rsp_buf[SSP_RESP_IU_MAX_SIZE];
230 } ssp;
232 struct {
233 struct smp_req cmd;
234 struct smp_resp rsp;
235 } smp;
237 struct {
238 struct scic_sds_stp_request req;
239 struct host_to_dev_fis cmd;
240 struct dev_to_host_fis rsp;
241 } stp;
246 static inline struct scic_sds_request *to_sci_req(struct scic_sds_stp_request *stp_req)
248 struct scic_sds_request *sci_req;
250 sci_req = container_of(stp_req, typeof(*sci_req), stp.req);
251 return sci_req;
255 * enum sci_base_request_states - This enumeration depicts all the states for
256 * the common request state machine.
260 enum sci_base_request_states {
262 * Simply the initial state for the base request state machine.
264 SCI_BASE_REQUEST_STATE_INITIAL,
267 * This state indicates that the request has been constructed. This state
268 * is entered from the INITIAL state.
270 SCI_BASE_REQUEST_STATE_CONSTRUCTED,
273 * This state indicates that the request has been started. This state is
274 * entered from the CONSTRUCTED state.
276 SCI_BASE_REQUEST_STATE_STARTED,
279 * This state indicates that the request has completed.
280 * This state is entered from the STARTED state. This state is entered from
281 * the ABORTING state.
283 SCI_BASE_REQUEST_STATE_COMPLETED,
286 * This state indicates that the request is in the process of being
287 * terminated/aborted.
288 * This state is entered from the CONSTRUCTED state.
289 * This state is entered from the STARTED state.
291 SCI_BASE_REQUEST_STATE_ABORTING,
294 * Simply the final state for the base request state machine.
296 SCI_BASE_REQUEST_STATE_FINAL,
299 typedef enum sci_status (*scic_sds_io_request_handler_t)
300 (struct scic_sds_request *request);
301 typedef enum sci_status (*scic_sds_io_request_frame_handler_t)
302 (struct scic_sds_request *req, u32 frame);
303 typedef enum sci_status (*scic_sds_io_request_event_handler_t)
304 (struct scic_sds_request *req, u32 event);
305 typedef enum sci_status (*scic_sds_io_request_task_completion_handler_t)
306 (struct scic_sds_request *req, u32 completion_code);
309 * struct scic_sds_io_request_state_handler - This is the SDS core definition
310 * of the state handlers.
314 struct scic_sds_io_request_state_handler {
316 * The start_handler specifies the method invoked when a user attempts to
317 * start a request.
319 scic_sds_io_request_handler_t start_handler;
322 * The abort_handler specifies the method invoked when a user attempts to
323 * abort a request.
325 scic_sds_io_request_handler_t abort_handler;
328 * The complete_handler specifies the method invoked when a user attempts to
329 * complete a request.
331 scic_sds_io_request_handler_t complete_handler;
333 scic_sds_io_request_task_completion_handler_t tc_completion_handler;
334 scic_sds_io_request_event_handler_t event_handler;
335 scic_sds_io_request_frame_handler_t frame_handler;
339 extern const struct sci_base_state scic_sds_io_request_started_task_mgmt_substate_table[];
342 * scic_sds_request_get_controller() -
344 * This macro will return the controller for this io request object
346 #define scic_sds_request_get_controller(sci_req) \
347 ((sci_req)->owning_controller)
350 * scic_sds_request_get_device() -
352 * This macro will return the device for this io request object
354 #define scic_sds_request_get_device(sci_req) \
355 ((sci_req)->target_device)
358 * scic_sds_request_get_port() -
360 * This macro will return the port for this io request object
362 #define scic_sds_request_get_port(sci_req) \
363 scic_sds_remote_device_get_port(scic_sds_request_get_device(sci_req))
366 * scic_sds_request_get_post_context() -
368 * This macro returns the constructed post context result for the io request.
370 #define scic_sds_request_get_post_context(sci_req) \
371 ((sci_req)->post_context)
374 * scic_sds_request_get_task_context() -
376 * This is a helper macro to return the os handle for this request object.
378 #define scic_sds_request_get_task_context(request) \
379 ((request)->task_context_buffer)
382 * scic_sds_request_set_status() -
384 * This macro will set the scu hardware status and sci request completion
385 * status for an io request.
387 #define scic_sds_request_set_status(request, scu_status_code, sci_status_code) \
389 (request)->scu_status = (scu_status_code); \
390 (request)->sci_status = (sci_status_code); \
393 #define scic_sds_request_complete(a_request) \
394 ((a_request)->state_handlers->complete_handler(a_request))
397 extern enum sci_status
398 scic_sds_io_request_tc_completion(struct scic_sds_request *request, u32 completion_code);
401 * SCU_SGL_ZERO() -
403 * This macro zeros the hardware SGL element data
405 #define SCU_SGL_ZERO(scu_sge) \
407 (scu_sge).length = 0; \
408 (scu_sge).address_lower = 0; \
409 (scu_sge).address_upper = 0; \
410 (scu_sge).address_modifier = 0; \
414 * SCU_SGL_COPY() -
416 * This macro copys the SGL Element data from the host os to the hardware SGL
417 * elment data
419 #define SCU_SGL_COPY(scu_sge, os_sge) \
421 (scu_sge).length = sg_dma_len(sg); \
422 (scu_sge).address_upper = \
423 upper_32_bits(sg_dma_address(sg)); \
424 (scu_sge).address_lower = \
425 lower_32_bits(sg_dma_address(sg)); \
426 (scu_sge).address_modifier = 0; \
430 * scic_sds_request_get_user_request() -
432 * This is a helper macro to return the os handle for this request object.
434 #define scic_sds_request_get_user_request(request) \
435 ((request)->user_request)
438 * *****************************************************************************
439 * * CORE REQUEST PROTOTYPES
440 * ***************************************************************************** */
442 void scic_sds_request_build_sgl(
443 struct scic_sds_request *sci_req);
447 void scic_sds_stp_request_assign_buffers(
448 struct scic_sds_request *sci_req);
450 void scic_sds_smp_request_assign_buffers(
451 struct scic_sds_request *sci_req);
453 /* --------------------------------------------------------------------------- */
455 enum sci_status scic_sds_request_start(
456 struct scic_sds_request *sci_req);
458 enum sci_status scic_sds_io_request_terminate(
459 struct scic_sds_request *sci_req);
461 enum sci_status scic_sds_io_request_complete(
462 struct scic_sds_request *sci_req);
464 void scic_sds_io_request_copy_response(
465 struct scic_sds_request *sci_req);
467 enum sci_status scic_sds_io_request_event_handler(
468 struct scic_sds_request *sci_req,
469 u32 event_code);
471 enum sci_status scic_sds_io_request_frame_handler(
472 struct scic_sds_request *sci_req,
473 u32 frame_index);
476 enum sci_status scic_sds_task_request_terminate(
477 struct scic_sds_request *sci_req);
480 * *****************************************************************************
481 * * STARTED STATE HANDLERS
482 * ***************************************************************************** */
484 enum sci_status scic_sds_request_started_state_abort_handler(
485 struct scic_sds_request *sci_req);
487 enum sci_status scic_sds_request_started_state_tc_completion_handler(
488 struct scic_sds_request *sci_req,
489 u32 completion_code);
491 #endif /* _SCIC_SDS_IO_REQUEST_H_ */