150476Speter/*-
234198Sjdp * SPDX-License-Identifier: BSD-2-Clause OR GPL-2.0
385594Sobrien *
485594Sobrien * This file is provided under a dual BSD/GPLv2 license.  When using or
567811Sobrien * redistributing this file, you may do so under either license.
634198Sjdp *
7200038Skib * GPL LICENSE SUMMARY
8117074Sru *
993399Smarkm * Copyright(c) 2008 - 2011 Intel Corporation. All rights reserved.
10181997Skib *
1134198Sjdp * This program is free software; you can redistribute it and/or modify
1296516Sru * it under the terms of version 2 of the GNU General Public License as
1334198Sjdp * published by the Free Software Foundation.
1496530Sru *
15217375Sdim * This program is distributed in the hope that it will be useful, but
1696530Sru * WITHOUT ANY WARRANTY; without even the implied warranty of
17217375Sdim * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18217375Sdim * General Public License for more details.
1938928Sjdp *
20217375Sdim * You should have received a copy of the GNU General Public License
21217375Sdim * along with this program; if not, write to the Free Software
22232832Skib * Foundation, Inc., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
23200038Skib * The full GNU General Public License is included in this distribution
24217375Sdim * in the file called LICENSE.GPL.
25234502Sdim *
26217375Sdim * BSD LICENSE
27217375Sdim *
28217375Sdim * Copyright(c) 2008 - 2011 Intel Corporation. All rights reserved.
29232832Skib * All rights reserved.
30217375Sdim *
31217375Sdim * Redistribution and use in source and binary forms, with or without
32234502Sdim * modification, are permitted provided that the following conditions
33217375Sdim * are met:
34217375Sdim *
35217375Sdim *   * Redistributions of source code must retain the above copyright
36232832Skib *     notice, this list of conditions and the following disclaimer.
37217375Sdim *   * Redistributions in binary form must reproduce the above copyright
38217375Sdim *     notice, this list of conditions and the following disclaimer in
39234502Sdim *     the documentation and/or other materials provided with the
40217375Sdim *     distribution.
4134198Sjdp *
42100872Sru * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
4396516Sru * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
4434198Sjdp * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
4534198Sjdp * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
46 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
47 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
48 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
49 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
50 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
51 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
52 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
53 */
54
55#include <sys/cdefs.h>
56/**
57 * @file
58 *
59 * @brief This file contains all of the SCIF_SAS_IO_REQUEST object
60 *        state entrance and exit method implementations.
61 */
62
63#include <dev/isci/scil/scic_controller.h>
64
65#include <dev/isci/scil/scif_sas_io_request.h>
66#include <dev/isci/scil/scif_sas_domain.h>
67#include <dev/isci/scil/scif_sas_controller.h>
68#include <dev/isci/scil/scif_sas_logger.h>
69
70//******************************************************************************
71//* P R O T E C T E D   M E T H O D S
72//******************************************************************************
73
74/**
75 * @brief This method implements the actions taken when entering the
76 *        INITIAL state.
77 *
78 * @param[in]  object This parameter specifies the base object for which
79 *             the state transition is occurring.  This is cast into a
80 *             SCIF_SAS_IO_REQUEST object in the method implementation.
81 *
82 * @return none
83 */
84static
85void scif_sas_io_request_initial_state_enter(
86   SCI_BASE_OBJECT_T *object
87)
88{
89   SCIF_SAS_IO_REQUEST_T * fw_io = (SCIF_SAS_IO_REQUEST_T *)object;
90
91   SET_STATE_HANDLER(
92      &fw_io->parent,
93      scif_sas_io_request_state_handler_table,
94      SCI_BASE_REQUEST_STATE_INITIAL
95   );
96
97   // Initial state is a transitional state to the constructed state
98   sci_base_state_machine_change_state(
99      &fw_io->parent.parent.state_machine, SCI_BASE_REQUEST_STATE_CONSTRUCTED
100   );
101}
102
103/**
104 * @brief This method implements the actions taken when entering the
105 *        CONSTRUCTED state.
106 *
107 * @param[in]  object This parameter specifies the base object for which
108 *             the state transition is occurring.  This is cast into a
109 *             SCIF_SAS_IO_REQUEST object in the method implementation.
110 *
111 * @return none
112 */
113static
114void scif_sas_io_request_constructed_state_enter(
115   SCI_BASE_OBJECT_T *object
116)
117{
118   SCIF_SAS_IO_REQUEST_T * fw_io = (SCIF_SAS_IO_REQUEST_T *)object;
119
120   SET_STATE_HANDLER(
121      &fw_io->parent,
122      scif_sas_io_request_state_handler_table,
123      SCI_BASE_REQUEST_STATE_CONSTRUCTED
124   );
125}
126
127/**
128 * @brief This method implements the actions taken when entering the
129 *        STARTED state.
130 *
131 * @param[in]  object This parameter specifies the base object for which
132 *             the state transition is occurring.  This is cast into a
133 *             SCIF_SAS_IO_REQUEST object in the method implementation.
134 *
135 * @return none
136 */
137static
138void scif_sas_io_request_started_state_enter(
139   SCI_BASE_OBJECT_T *object
140)
141{
142   SCIF_SAS_IO_REQUEST_T * fw_io = (SCIF_SAS_IO_REQUEST_T *)object;
143
144   SET_STATE_HANDLER(
145      &fw_io->parent,
146      scif_sas_io_request_state_handler_table,
147      SCI_BASE_REQUEST_STATE_STARTED
148   );
149}
150
151/**
152 * @brief This method implements the actions taken when entering the
153 *        COMPLETED state.
154 *
155 * @param[in]  object This parameter specifies the base object for which
156 *             the state transition is occurring.  This is cast into a
157 *             SCIF_SAS_IO_REQUEST object in the method implementation.
158 *
159 * @return none
160 */
161static
162void scif_sas_io_request_completed_state_enter(
163   SCI_BASE_OBJECT_T *object
164)
165{
166   SCIF_SAS_IO_REQUEST_T * fw_io = (SCIF_SAS_IO_REQUEST_T *)object;
167
168   SET_STATE_HANDLER(
169      &fw_io->parent,
170      scif_sas_io_request_state_handler_table,
171      SCI_BASE_REQUEST_STATE_COMPLETED
172   );
173}
174
175/**
176 * @brief This method implements the actions taken when entering the
177 *        ABORTING state.
178 *
179 * @param[in]  object This parameter specifies the base object for which
180 *             the state transition is occurring.  This is cast into a
181 *             SCIF_SAS_IO_REQUEST object in the method implementation.
182 *
183 * @return none
184 */
185static
186void scif_sas_io_request_aborting_state_enter(
187   SCI_BASE_OBJECT_T *object
188)
189{
190   SCIF_SAS_IO_REQUEST_T * fw_io = (SCIF_SAS_IO_REQUEST_T *)object;
191
192   SCIF_LOG_WARNING((
193      sci_base_object_get_logger(fw_io),
194      SCIF_LOG_OBJECT_IO_REQUEST | SCIF_LOG_OBJECT_TASK_MANAGEMENT,
195      "Domain:0x%x Device:0x%x IORequest:0x%x terminating\n",
196      fw_io->parent.device->domain, fw_io->parent.device, fw_io
197   ));
198
199   SET_STATE_HANDLER(
200      &fw_io->parent,
201      scif_sas_io_request_state_handler_table,
202      SCI_BASE_REQUEST_STATE_ABORTING
203   );
204
205   fw_io->parent.status = scif_sas_request_terminate_start(
206                             &fw_io->parent, fw_io->parent.core_object
207                          );
208}
209
210/**
211 * @brief This method implements the actions taken when exiting the
212 *        ABORTING state.
213 *
214 * @param[in]  object This parameter specifies the base object for which
215 *             the state transition is occurring.  This is cast into a
216 *             SCIF_SAS_IO_REQUEST object in the method implementation.
217 *
218 * @return none
219 */
220static
221void scif_sas_io_request_aborting_state_exit(
222   SCI_BASE_OBJECT_T *object
223)
224{
225   SCIF_SAS_REQUEST_T * fw_request = (SCIF_SAS_REQUEST_T *)object;
226   scif_sas_request_terminate_complete(fw_request);
227}
228
229/**
230 * @brief This method implements the actions taken when entering the
231 *        FINAL state.
232 *
233 * @param[in]  object This parameter specifies the base object for which
234 *             the state transition is occurring.  This is cast into a
235 *             SCIF_SAS_IO_REQUEST object in the method implementation.
236 *
237 * @return none
238 */
239static
240void scif_sas_io_request_final_state_enter(
241   SCI_BASE_OBJECT_T *object
242)
243{
244   SCIF_SAS_IO_REQUEST_T * fw_io = (SCIF_SAS_IO_REQUEST_T *)object;
245
246   SET_STATE_HANDLER(
247      &fw_io->parent,
248      scif_sas_io_request_state_handler_table,
249      SCI_BASE_REQUEST_STATE_FINAL
250   );
251}
252
253SCI_BASE_STATE_T scif_sas_io_request_state_table[SCI_BASE_REQUEST_MAX_STATES] =
254{
255   {
256      SCI_BASE_REQUEST_STATE_INITIAL,
257      scif_sas_io_request_initial_state_enter,
258      NULL
259   },
260   {
261      SCI_BASE_REQUEST_STATE_CONSTRUCTED,
262      scif_sas_io_request_constructed_state_enter,
263      NULL
264   },
265   {
266      SCI_BASE_REQUEST_STATE_STARTED,
267      scif_sas_io_request_started_state_enter,
268      NULL
269   },
270   {
271      SCI_BASE_REQUEST_STATE_COMPLETED,
272      scif_sas_io_request_completed_state_enter,
273      NULL
274   },
275   {
276      SCI_BASE_REQUEST_STATE_ABORTING,
277      scif_sas_io_request_aborting_state_enter,
278      scif_sas_io_request_aborting_state_exit
279   },
280   {
281      SCI_BASE_REQUEST_STATE_FINAL,
282      scif_sas_io_request_final_state_enter,
283      NULL
284   },
285};
286
287