2 * Linux network driver for Brocade Converged Network Adapter.
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License (GPL) Version 2 as
6 * published by the Free Software Foundation
8 * This program is distributed in the hope that it will be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
14 * Copyright (c) 2005-2010 Brocade Communications Systems, Inc.
20 * @file bfasm.h State machine defines
28 typedef void (*bfa_sm_t
)(void *sm
, int event
);
31 * oc - object class eg. bfa_ioc
32 * st - state, eg. reset
33 * otype - object type, eg. struct bfa_ioc
34 * etype - object type, eg. enum ioc_event
36 #define bfa_sm_state_decl(oc, st, otype, etype) \
37 static void oc ## _sm_ ## st(otype * fsm, etype event)
39 #define bfa_sm_set_state(_sm, _state) ((_sm)->sm = (bfa_sm_t)(_state))
40 #define bfa_sm_send_event(_sm, _event) ((_sm)->sm((_sm), (_event)))
41 #define bfa_sm_get_state(_sm) ((_sm)->sm)
42 #define bfa_sm_cmp_state(_sm, _state) ((_sm)->sm == (bfa_sm_t)(_state))
45 * For converting from state machine function to state encoding.
48 bfa_sm_t sm
; /*!< state machine function */
49 int state
; /*!< state machine encoding */
50 char *name
; /*!< state name for display */
52 #define BFA_SM(_sm) ((bfa_sm_t)(_sm))
55 * State machine with entry actions.
57 typedef void (*bfa_fsm_t
)(void *fsm
, int event
);
60 * oc - object class eg. bfa_ioc
61 * st - state, eg. reset
62 * otype - object type, eg. struct bfa_ioc
63 * etype - object type, eg. enum ioc_event
65 #define bfa_fsm_state_decl(oc, st, otype, etype) \
66 static void oc ## _sm_ ## st(otype * fsm, etype event); \
67 static void oc ## _sm_ ## st ## _entry(otype * fsm)
69 #define bfa_fsm_set_state(_fsm, _state) do { \
70 (_fsm)->fsm = (bfa_fsm_t)(_state); \
71 _state ## _entry(_fsm); \
74 #define bfa_fsm_send_event(_fsm, _event) ((_fsm)->fsm((_fsm), (_event)))
75 #define bfa_fsm_get_state(_fsm) ((_fsm)->fsm)
76 #define bfa_fsm_cmp_state(_fsm, _state) \
77 ((_fsm)->fsm == (bfa_fsm_t)(_state))
80 bfa_sm_to_state(const struct bfa_sm_table
*smt
, bfa_sm_t sm
)
84 while (smt
[i
].sm
&& smt
[i
].sm
!= sm
)