]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/scsi/isci/state_machine.c
isci: add some type safety to the state machine interface
[mirror_ubuntu-artful-kernel.git] / drivers / scsi / isci / state_machine.c
CommitLineData
6f231dda
DW
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.
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
56/**
57 * This file contains all of the functionality common to all state machine
58 * object implementations.
59 *
60 *
61 */
62
3bff9d54 63#include "state_machine.h"
6f231dda
DW
64
65static void sci_state_machine_exit_state(struct sci_base_state_machine *sm)
66{
67 u32 state = sm->current_state_id;
de728b7d 68 sci_state_transition_t exit = sm->state_table[state].exit_state;
6f231dda
DW
69
70 if (exit)
9269e0e8 71 exit(sm);
6f231dda
DW
72}
73
74static void sci_state_machine_enter_state(struct sci_base_state_machine *sm)
75{
76 u32 state = sm->current_state_id;
de728b7d 77 sci_state_transition_t enter = sm->state_table[state].enter_state;
6f231dda
DW
78
79 if (enter)
9269e0e8 80 enter(sm);
6f231dda
DW
81}
82
6f231dda
DW
83/**
84 * This method will set the initial state and state table for the state
85 * machine. The caller should follow this request with the initialize
86 * request to cause the state machine to start.
87 * @sm: This parameter provides the state machine object to be
88 * constructed.
6f231dda
DW
89 * @state_table: This parameter specifies the table of state objects that is
90 * managed by this state machine.
91 * @initial_state: This parameter specifies the value of the initial state for
92 * this state machine.
93 *
94 */
95void sci_base_state_machine_construct(struct sci_base_state_machine *sm,
6f231dda
DW
96 const struct sci_base_state *state_table,
97 u32 initial_state)
98{
6f231dda
DW
99 sm->initial_state_id = initial_state;
100 sm->previous_state_id = initial_state;
101 sm->current_state_id = initial_state;
102 sm->state_table = state_table;
103}
104
105/**
106 * This method will cause the state machine to enter the initial state.
107 * @sm: This parameter specifies the state machine that is to
108 * be started.
109 *
110 * sci_base_state_machine_construct() for how to set the initial state none
111 */
112void sci_base_state_machine_start(struct sci_base_state_machine *sm)
113{
114 sm->current_state_id = sm->initial_state_id;
6f231dda
DW
115 sci_state_machine_enter_state(sm);
116}
117
118/**
119 * This method will cause the state machine to exit it's current state only.
120 * @sm: This parameter specifies the state machine that is to
121 * be stopped.
122 *
123 */
124void sci_base_state_machine_stop(
125 struct sci_base_state_machine *sm)
126{
127 sci_state_machine_exit_state(sm);
6f231dda
DW
128}
129
130/**
131 * This method performs an update to the current state of the state machine.
132 * @sm: This parameter specifies the state machine for which
133 * the caller wishes to perform a state change.
134 * @next_state: This parameter specifies the new state for the state machine.
135 *
136 */
137void sci_base_state_machine_change_state(
138 struct sci_base_state_machine *sm,
139 u32 next_state)
140{
141 sci_state_machine_exit_state(sm);
142
143 sm->previous_state_id = sm->current_state_id;
144 sm->current_state_id = next_state;
145
6f231dda
DW
146 sci_state_machine_enter_state(sm);
147}
148
149/**
150 * This method simply returns the current state of the state machine to the
151 * caller.
152 * @sm: This parameter specifies the state machine for which to
153 * retrieve the current state.
154 *
155 * This method returns a u32 value indicating the current state for the
156 * supplied state machine.
157 */
158u32 sci_base_state_machine_get_state(struct sci_base_state_machine *sm)
159{
160 return sm->current_state_id;
161}
162