1f11c7f63SJim Harris /*-
2*718cf2ccSPedro F. Giffuni * SPDX-License-Identifier: BSD-2-Clause OR GPL-2.0
3*718cf2ccSPedro F. Giffuni *
4f11c7f63SJim Harris * This file is provided under a dual BSD/GPLv2 license. When using or
5f11c7f63SJim Harris * redistributing this file, you may do so under either license.
6f11c7f63SJim Harris *
7f11c7f63SJim Harris * GPL LICENSE SUMMARY
8f11c7f63SJim Harris *
9f11c7f63SJim Harris * Copyright(c) 2008 - 2011 Intel Corporation. All rights reserved.
10f11c7f63SJim Harris *
11f11c7f63SJim Harris * This program is free software; you can redistribute it and/or modify
12f11c7f63SJim Harris * it under the terms of version 2 of the GNU General Public License as
13f11c7f63SJim Harris * published by the Free Software Foundation.
14f11c7f63SJim Harris *
15f11c7f63SJim Harris * This program is distributed in the hope that it will be useful, but
16f11c7f63SJim Harris * WITHOUT ANY WARRANTY; without even the implied warranty of
17f11c7f63SJim Harris * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18f11c7f63SJim Harris * General Public License for more details.
19f11c7f63SJim Harris *
20f11c7f63SJim Harris * You should have received a copy of the GNU General Public License
21f11c7f63SJim Harris * along with this program; if not, write to the Free Software
22f11c7f63SJim Harris * Foundation, Inc., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
23f11c7f63SJim Harris * The full GNU General Public License is included in this distribution
24f11c7f63SJim Harris * in the file called LICENSE.GPL.
25f11c7f63SJim Harris *
26f11c7f63SJim Harris * BSD LICENSE
27f11c7f63SJim Harris *
28f11c7f63SJim Harris * Copyright(c) 2008 - 2011 Intel Corporation. All rights reserved.
29f11c7f63SJim Harris * All rights reserved.
30f11c7f63SJim Harris *
31f11c7f63SJim Harris * Redistribution and use in source and binary forms, with or without
32f11c7f63SJim Harris * modification, are permitted provided that the following conditions
33f11c7f63SJim Harris * are met:
34f11c7f63SJim Harris *
35f11c7f63SJim Harris * * Redistributions of source code must retain the above copyright
36f11c7f63SJim Harris * notice, this list of conditions and the following disclaimer.
37f11c7f63SJim Harris * * Redistributions in binary form must reproduce the above copyright
38f11c7f63SJim Harris * notice, this list of conditions and the following disclaimer in
39f11c7f63SJim Harris * the documentation and/or other materials provided with the
40f11c7f63SJim Harris * distribution.
41f11c7f63SJim Harris *
42f11c7f63SJim Harris * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
43f11c7f63SJim Harris * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
44f11c7f63SJim Harris * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
45f11c7f63SJim Harris * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
46f11c7f63SJim Harris * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
47f11c7f63SJim Harris * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
48f11c7f63SJim Harris * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
49f11c7f63SJim Harris * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
50f11c7f63SJim Harris * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
51f11c7f63SJim Harris * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
52f11c7f63SJim Harris * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
53f11c7f63SJim Harris */
54f11c7f63SJim Harris
55f11c7f63SJim Harris #include <sys/cdefs.h>
56f11c7f63SJim Harris /**
57f11c7f63SJim Harris * @file
58f11c7f63SJim Harris *
59f11c7f63SJim Harris * @brief This file contains all of the SCIF_SAS_TASK_REQUEST object
60f11c7f63SJim Harris * state entrance and exit method implementations.
61f11c7f63SJim Harris */
62f11c7f63SJim Harris
63f11c7f63SJim Harris #include <dev/isci/scil/scif_sas_task_request.h>
64f11c7f63SJim Harris
65f11c7f63SJim Harris //******************************************************************************
66f11c7f63SJim Harris //* P R O T E C T E D M E T H O D S
67f11c7f63SJim Harris //******************************************************************************
68f11c7f63SJim Harris
69f11c7f63SJim Harris /**
70f11c7f63SJim Harris * @brief This method implements the actions taken when entering the
71f11c7f63SJim Harris * INITIAL state.
72f11c7f63SJim Harris *
73f11c7f63SJim Harris * @param[in] object This parameter specifies the base object for which
74f11c7f63SJim Harris * the state transition is occurring. This is cast into a
75f11c7f63SJim Harris * SCIF_SAS_TASK_REQUEST object in the method implementation.
76f11c7f63SJim Harris *
77f11c7f63SJim Harris * @return none
78f11c7f63SJim Harris */
79f11c7f63SJim Harris static
scif_sas_task_request_initial_state_enter(SCI_BASE_OBJECT_T * object)80f11c7f63SJim Harris void scif_sas_task_request_initial_state_enter(
81f11c7f63SJim Harris SCI_BASE_OBJECT_T *object
82f11c7f63SJim Harris )
83f11c7f63SJim Harris {
84f11c7f63SJim Harris SCIF_SAS_TASK_REQUEST_T * fw_task = (SCIF_SAS_TASK_REQUEST_T *)object;
85f11c7f63SJim Harris
86f11c7f63SJim Harris SET_STATE_HANDLER(
87f11c7f63SJim Harris &fw_task->parent,
88f11c7f63SJim Harris scif_sas_task_request_state_handler_table,
89f11c7f63SJim Harris SCI_BASE_REQUEST_STATE_INITIAL
90f11c7f63SJim Harris );
91f11c7f63SJim Harris
92f11c7f63SJim Harris // Initial state is a transitional state to the constructed state
93f11c7f63SJim Harris sci_base_state_machine_change_state(
94f11c7f63SJim Harris &fw_task->parent.parent.state_machine, SCI_BASE_REQUEST_STATE_CONSTRUCTED
95f11c7f63SJim Harris );
96f11c7f63SJim Harris }
97f11c7f63SJim Harris
98f11c7f63SJim Harris /**
99f11c7f63SJim Harris * @brief This method implements the actions taken when entering the
100f11c7f63SJim Harris * CONSTRUCTED state.
101f11c7f63SJim Harris *
102f11c7f63SJim Harris * @param[in] object This parameter specifies the base object for which
103f11c7f63SJim Harris * the state transition is occurring. This is cast into a
104f11c7f63SJim Harris * SCIF_SAS_TASK_REQUEST object in the method implementation.
105f11c7f63SJim Harris *
106f11c7f63SJim Harris * @return none
107f11c7f63SJim Harris */
108f11c7f63SJim Harris static
scif_sas_task_request_constructed_state_enter(SCI_BASE_OBJECT_T * object)109f11c7f63SJim Harris void scif_sas_task_request_constructed_state_enter(
110f11c7f63SJim Harris SCI_BASE_OBJECT_T *object
111f11c7f63SJim Harris )
112f11c7f63SJim Harris {
113f11c7f63SJim Harris SCIF_SAS_TASK_REQUEST_T * fw_task = (SCIF_SAS_TASK_REQUEST_T *)object;
114f11c7f63SJim Harris
115f11c7f63SJim Harris SET_STATE_HANDLER(
116f11c7f63SJim Harris &fw_task->parent,
117f11c7f63SJim Harris scif_sas_task_request_state_handler_table,
118f11c7f63SJim Harris SCI_BASE_REQUEST_STATE_CONSTRUCTED
119f11c7f63SJim Harris );
120f11c7f63SJim Harris }
121f11c7f63SJim Harris
122f11c7f63SJim Harris /**
123f11c7f63SJim Harris * @brief This method implements the actions taken when entering the
124f11c7f63SJim Harris * STARTED state.
125f11c7f63SJim Harris *
126f11c7f63SJim Harris * @param[in] object This parameter specifies the base object for which
127f11c7f63SJim Harris * the state transition is occurring. This is cast into a
128f11c7f63SJim Harris * SCIF_SAS_TASK_REQUEST object in the method implementation.
129f11c7f63SJim Harris *
130f11c7f63SJim Harris * @return none
131f11c7f63SJim Harris */
132f11c7f63SJim Harris static
scif_sas_task_request_started_state_enter(SCI_BASE_OBJECT_T * object)133f11c7f63SJim Harris void scif_sas_task_request_started_state_enter(
134f11c7f63SJim Harris SCI_BASE_OBJECT_T *object
135f11c7f63SJim Harris )
136f11c7f63SJim Harris {
137f11c7f63SJim Harris SCIF_SAS_TASK_REQUEST_T * fw_task = (SCIF_SAS_TASK_REQUEST_T *)object;
138f11c7f63SJim Harris
139f11c7f63SJim Harris SET_STATE_HANDLER(
140f11c7f63SJim Harris &fw_task->parent,
141f11c7f63SJim Harris scif_sas_task_request_state_handler_table,
142f11c7f63SJim Harris SCI_BASE_REQUEST_STATE_STARTED
143f11c7f63SJim Harris );
144f11c7f63SJim Harris
145f11c7f63SJim Harris // Increment the affected request count to include the task performing
146f11c7f63SJim Harris // the task management to ensure we don't complete the task request until
147f11c7f63SJim Harris // all terminations and the task itself have completed.
148f11c7f63SJim Harris fw_task->affected_request_count++;
149f11c7f63SJim Harris }
150f11c7f63SJim Harris
151f11c7f63SJim Harris /**
152f11c7f63SJim Harris * @brief This method implements the actions taken when entering the
153f11c7f63SJim Harris * COMPLETED state.
154f11c7f63SJim Harris *
155f11c7f63SJim Harris * @param[in] object This parameter specifies the base object for which
156f11c7f63SJim Harris * the state transition is occurring. This is cast into a
157f11c7f63SJim Harris * SCIF_SAS_TASK_REQUEST object in the method implementation.
158f11c7f63SJim Harris *
159f11c7f63SJim Harris * @return none
160f11c7f63SJim Harris */
161f11c7f63SJim Harris static
scif_sas_task_request_completed_state_enter(SCI_BASE_OBJECT_T * object)162f11c7f63SJim Harris void scif_sas_task_request_completed_state_enter(
163f11c7f63SJim Harris SCI_BASE_OBJECT_T *object
164f11c7f63SJim Harris )
165f11c7f63SJim Harris {
166f11c7f63SJim Harris SCIF_SAS_TASK_REQUEST_T * fw_task = (SCIF_SAS_TASK_REQUEST_T *)object;
167f11c7f63SJim Harris
168f11c7f63SJim Harris SET_STATE_HANDLER(
169f11c7f63SJim Harris &fw_task->parent,
170f11c7f63SJim Harris scif_sas_task_request_state_handler_table,
171f11c7f63SJim Harris SCI_BASE_REQUEST_STATE_COMPLETED
172f11c7f63SJim Harris );
173f11c7f63SJim Harris
174f11c7f63SJim Harris // Check to see if the task management operation is now finished (i.e.
175f11c7f63SJim Harris // all of the task terminations and the task management request are
176f11c7f63SJim Harris // complete).
177f11c7f63SJim Harris scif_sas_task_request_operation_complete(fw_task);
178f11c7f63SJim Harris }
179f11c7f63SJim Harris
180f11c7f63SJim Harris /**
181f11c7f63SJim Harris * @brief This method implements the actions taken when entering the
182f11c7f63SJim Harris * ABORTING state.
183f11c7f63SJim Harris *
184f11c7f63SJim Harris * @param[in] object This parameter specifies the base object for which
185f11c7f63SJim Harris * the state transition is occurring. This is cast into a
186f11c7f63SJim Harris * SCIF_SAS_TASK_REQUEST object in the method implementation.
187f11c7f63SJim Harris *
188f11c7f63SJim Harris * @return none
189f11c7f63SJim Harris */
190f11c7f63SJim Harris static
scif_sas_task_request_aborting_state_enter(SCI_BASE_OBJECT_T * object)191f11c7f63SJim Harris void scif_sas_task_request_aborting_state_enter(
192f11c7f63SJim Harris SCI_BASE_OBJECT_T *object
193f11c7f63SJim Harris )
194f11c7f63SJim Harris {
195f11c7f63SJim Harris SCIF_SAS_TASK_REQUEST_T * fw_task = (SCIF_SAS_TASK_REQUEST_T *)object;
196f11c7f63SJim Harris
197f11c7f63SJim Harris SET_STATE_HANDLER(
198f11c7f63SJim Harris &fw_task->parent,
199f11c7f63SJim Harris scif_sas_task_request_state_handler_table,
200f11c7f63SJim Harris SCI_BASE_REQUEST_STATE_ABORTING
201f11c7f63SJim Harris );
202f11c7f63SJim Harris
203f11c7f63SJim Harris /// @todo Is terminating a previously outstanding task request right?
204f11c7f63SJim Harris fw_task->parent.status = scif_sas_request_terminate_start(
205f11c7f63SJim Harris &fw_task->parent, fw_task->parent.core_object
206f11c7f63SJim Harris );
207f11c7f63SJim Harris }
208f11c7f63SJim Harris
209f11c7f63SJim Harris /**
210f11c7f63SJim Harris * @brief This method implements the actions taken when exiting the
211f11c7f63SJim Harris * ABORTING state.
212f11c7f63SJim Harris *
213f11c7f63SJim Harris * @param[in] object This parameter specifies the base object for which
214f11c7f63SJim Harris * the state transition is occurring. This is cast into a
215f11c7f63SJim Harris * SCIF_SAS_TASK_REQUEST object in the method implementation.
216f11c7f63SJim Harris *
217f11c7f63SJim Harris * @return none
218f11c7f63SJim Harris */
219f11c7f63SJim Harris static
scif_sas_task_request_aborting_state_exit(SCI_BASE_OBJECT_T * object)220f11c7f63SJim Harris void scif_sas_task_request_aborting_state_exit(
221f11c7f63SJim Harris SCI_BASE_OBJECT_T *object
222f11c7f63SJim Harris )
223f11c7f63SJim Harris {
224f11c7f63SJim Harris SCIF_SAS_REQUEST_T * fw_request = (SCIF_SAS_REQUEST_T *)object;
225f11c7f63SJim Harris scif_sas_request_terminate_complete(fw_request);
226f11c7f63SJim Harris }
227f11c7f63SJim Harris
228f11c7f63SJim Harris /**
229f11c7f63SJim Harris * @brief This method implements the actions taken when entering the
230f11c7f63SJim Harris * FINAL state.
231f11c7f63SJim Harris *
232f11c7f63SJim Harris * @param[in] object This parameter specifies the base object for which
233f11c7f63SJim Harris * the state transition is occurring. This is cast into a
234f11c7f63SJim Harris * SCIF_SAS_TASK_REQUEST object in the method implementation.
235f11c7f63SJim Harris *
236f11c7f63SJim Harris * @return none
237f11c7f63SJim Harris */
238f11c7f63SJim Harris static
scif_sas_task_request_final_state_enter(SCI_BASE_OBJECT_T * object)239f11c7f63SJim Harris void scif_sas_task_request_final_state_enter(
240f11c7f63SJim Harris SCI_BASE_OBJECT_T *object
241f11c7f63SJim Harris )
242f11c7f63SJim Harris {
243f11c7f63SJim Harris SCIF_SAS_TASK_REQUEST_T * fw_task = (SCIF_SAS_TASK_REQUEST_T *)object;
244f11c7f63SJim Harris
245f11c7f63SJim Harris SET_STATE_HANDLER(
246f11c7f63SJim Harris &fw_task->parent,
247f11c7f63SJim Harris scif_sas_task_request_state_handler_table,
248f11c7f63SJim Harris SCI_BASE_REQUEST_STATE_FINAL
249f11c7f63SJim Harris );
250f11c7f63SJim Harris }
251f11c7f63SJim Harris
252f11c7f63SJim Harris
253f11c7f63SJim Harris SCI_BASE_STATE_T
254f11c7f63SJim Harris scif_sas_task_request_state_table[SCI_BASE_REQUEST_MAX_STATES] =
255f11c7f63SJim Harris {
256f11c7f63SJim Harris {
257f11c7f63SJim Harris SCI_BASE_REQUEST_STATE_INITIAL,
258f11c7f63SJim Harris scif_sas_task_request_initial_state_enter,
259f11c7f63SJim Harris NULL
260f11c7f63SJim Harris },
261f11c7f63SJim Harris {
262f11c7f63SJim Harris SCI_BASE_REQUEST_STATE_CONSTRUCTED,
263f11c7f63SJim Harris scif_sas_task_request_constructed_state_enter,
264f11c7f63SJim Harris NULL
265f11c7f63SJim Harris },
266f11c7f63SJim Harris {
267f11c7f63SJim Harris SCI_BASE_REQUEST_STATE_STARTED,
268f11c7f63SJim Harris scif_sas_task_request_started_state_enter,
269f11c7f63SJim Harris NULL
270f11c7f63SJim Harris },
271f11c7f63SJim Harris {
272f11c7f63SJim Harris SCI_BASE_REQUEST_STATE_COMPLETED,
273f11c7f63SJim Harris scif_sas_task_request_completed_state_enter,
274f11c7f63SJim Harris NULL
275f11c7f63SJim Harris },
276f11c7f63SJim Harris {
277f11c7f63SJim Harris SCI_BASE_REQUEST_STATE_ABORTING,
278f11c7f63SJim Harris scif_sas_task_request_aborting_state_enter,
279f11c7f63SJim Harris scif_sas_task_request_aborting_state_exit
280f11c7f63SJim Harris },
281f11c7f63SJim Harris {
282f11c7f63SJim Harris SCI_BASE_REQUEST_STATE_FINAL,
283f11c7f63SJim Harris scif_sas_task_request_final_state_enter,
284f11c7f63SJim Harris NULL
285f11c7f63SJim Harris },
286f11c7f63SJim Harris };
287f11c7f63SJim Harris
288