1 /* Code left here for historical purposes only. TODO: move into libnetdriver */
5 /* State management variables. */
8 /* Custom states definition. */
9 #define RL_STATE_READ_PROTOCOL_FREE (SEF_LU_STATE_CUSTOM_BASE + 0)
10 #define RL_STATE_WRITE_PROTOCOL_FREE (SEF_LU_STATE_CUSTOM_BASE + 1)
11 #define RL_STATE_IS_CUSTOM(s) \
12 ((s) >= RL_STATE_READ_PROTOCOL_FREE && (s) <= RL_STATE_WRITE_PROTOCOL_FREE)
14 /* State management helpers. */
15 static int is_reading
;
16 static int is_writing
;
18 static void load_state_info(void)
22 /* Check if we are reading or writing. */
25 is_reading
= !!(rep
->re_flags
& REF_READING
);
26 is_writing
= !!(rep
->re_flags
& REF_SEND_AVAIL
);
29 /*===========================================================================*
31 *===========================================================================*/
32 int sef_cb_lu_prepare(int state
)
36 /* Load state information. */
39 /* Check if we are ready for the target state. */
42 /* Standard states. */
43 case SEF_LU_STATE_REQUEST_FREE
:
47 case SEF_LU_STATE_PROTOCOL_FREE
:
48 is_ready
= (!is_reading
&& !is_writing
);
52 case RL_STATE_READ_PROTOCOL_FREE
:
53 is_ready
= (!is_reading
);
56 case RL_STATE_WRITE_PROTOCOL_FREE
:
57 is_ready
= (!is_writing
);
61 /* Tell SEF if we are ready. */
62 return is_ready
? OK
: ENOTREADY
;
65 /*===========================================================================*
66 * sef_cb_lu_state_isvalid *
67 *===========================================================================*/
68 int sef_cb_lu_state_isvalid(int state
, int UNUSED(flags
))
70 return SEF_LU_STATE_IS_STANDARD(state
) || RL_STATE_IS_CUSTOM(state
);
73 /*===========================================================================*
74 * sef_cb_lu_state_dump *
75 *===========================================================================*/
76 void sef_cb_lu_state_dump(int state
)
78 /* Load state information. */
81 sef_lu_dprint("rtl8139: live update state = %d\n", state
);
82 sef_lu_dprint("rtl8139: is_reading = %d\n", is_reading
);
83 sef_lu_dprint("rtl8139: is_writing = %d\n", is_writing
);
85 sef_lu_dprint("rtl8139: SEF_LU_STATE_WORK_FREE(%d) reached = %d\n",
86 SEF_LU_STATE_WORK_FREE
, TRUE
);
87 sef_lu_dprint("rtl8139: SEF_LU_STATE_REQUEST_FREE(%d) reached = %d\n",
88 SEF_LU_STATE_REQUEST_FREE
, TRUE
);
89 sef_lu_dprint("rtl8139: SEF_LU_STATE_PROTOCOL_FREE(%d) reached = %d\n",
90 SEF_LU_STATE_PROTOCOL_FREE
, (!is_reading
&& !is_writing
));
91 sef_lu_dprint("rtl8139: RL_STATE_READ_PROTOCOL_FREE(%d) reached = %d\n",
92 RL_STATE_READ_PROTOCOL_FREE
, (!is_reading
));
93 sef_lu_dprint("rtl8139: RL_STATE_WRITE_PROTOCOL_FREE(%d) reached = %d\n",
94 RL_STATE_WRITE_PROTOCOL_FREE
, (!is_writing
));