bond: Add bonding driver and LACP protocol
[vpp.git] / src / plugins / lacp / ptx_machine.h
1 /*
2  * Copyright (c) 2017 Cisco and/or its affiliates.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at:
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15
16 #ifndef ___LACP_PTX_MACHINE_H__
17 #define ___LACP_PTX_MACHINE_H__
18
19 #include <stdint.h>
20 #include <lacp/machine.h>
21
22 #define foreach_lacp_ptx_event          \
23   _(0, BEGIN, "begin")                  \
24   _(1, LONG_TIMEOUT, "long tiemout")    \
25   _(2, TIMER_EXPIRED, "timer expired")  \
26   _(3, SHORT_TIMEOUT, "short timeout")
27
28 typedef enum
29 {
30 #define _(a, b, c) LACP_PTX_EVENT_##b = (a),
31   foreach_lacp_ptx_event
32 #undef _
33 } lacp_ptx_event_t;
34
35 #define foreach_lacp_ptx_sm_state       \
36   _(0, NO_PERIODIC, "no periodic")      \
37   _(1, FAST_PERIODIC, "fast periodic")  \
38   _(2, SLOW_PERIODIC, "slow periodic")  \
39   _(3, PERIODIC_TX, "periodic transmission")
40
41 typedef enum
42 {
43 #define _(a, b, c) LACP_PTX_STATE_##b = (a),
44   foreach_lacp_ptx_sm_state
45 #undef _
46 } lacp_ptx_sm_state_t;
47
48 extern lacp_machine_t lacp_ptx_machine;
49
50 int lacp_ptx_action_no_periodic (void *p1, void *p2);
51 int lacp_ptx_action_slow_periodic (void *p1, void *p2);
52 int lacp_ptx_action_fast_periodic (void *p1, void *p2);
53 int lacp_ptx_action_timer_expired (void *p1, void *p2);
54 void lacp_ptx_debug_func (slave_if_t * sif, int event, int state,
55                           lacp_fsm_state_t * transition);
56
57 #define LACP_ACTION_NO_PERIODIC \
58   LACP_ACTION_ROUTINE(lacp_ptx_action_no_periodic)
59 #define LACP_ACTION_SLOW_PERIODIC \
60   LACP_ACTION_ROUTINE(lacp_ptx_action_slow_periodic)
61 #define LACP_ACTION_FAST_PERIODIC \
62   LACP_ACTION_ROUTINE(lacp_ptx_action_fast_periodic)
63 #define LACP_ACTION_TIMER_EXPIRED \
64   LACP_ACTION_ROUTINE(lacp_ptx_action_timer_expired)
65
66 static inline void
67 lacp_start_periodic_timer (vlib_main_t * vm, slave_if_t * sif, u8 expiration)
68 {
69   sif->periodic_timer = vlib_time_now (vm) + expiration;
70 }
71
72 #endif /* __LACP_PTX_MACHINE_H__ */
73
74 /*
75  * fd.io coding-style-patch-verification: ON
76  *
77  * Local Variables:
78  * eval: (c-set-style "gnu")
79  * End:
80  */