1 /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
5 #include <linux/atmapi.h>
6 #include <linux/atmioc.h>
8 #include <linux/types.h>
10 #define ATMMPC_CTRL _IO('a', ATMIOC_MPOA)
11 #define ATMMPC_DATA _IO('a', ATMIOC_MPOA+1)
13 #define MPC_SOCKET_INGRESS 1
14 #define MPC_SOCKET_EGRESS 2
18 __be32 ipaddr; /* the IP address of the shortcut */
19 int type; /* ingress or egress */
22 typedef struct in_ctrl_info {
23 __u8 Last_NHRP_CIE_code;
24 __u8 Last_Q2931_cause_value;
25 __u8 eg_MPC_ATM_addr[ATM_ESA_LEN];
27 __be32 in_dst_ip; /* IP address this ingress MPC sends packets to */
32 typedef struct eg_ctrl_info {
38 __be32 eg_dst_ip; /* IP address to which ingress MPC sends packets */
39 __u8 in_MPC_data_ATM_addr[ATM_ESA_LEN];
43 struct mpc_parameters {
44 __u16 mpc_p1; /* Shortcut-Setup Frame Count */
45 __u16 mpc_p2; /* Shortcut-Setup Frame Time */
46 __u8 mpc_p3[8]; /* Flow-detection Protocols */
47 __u16 mpc_p4; /* MPC Initial Retry Time */
48 __u16 mpc_p5; /* MPC Retry Time Maximum */
49 __u16 mpc_p6; /* Hold Down Time */
55 __u8 MPS_ctrl[ATM_ESA_LEN];
59 struct mpc_parameters params;
65 /* RFC 1483 LLC/SNAP encapsulation for routed IP PDUs */
66 __u8 dsap; /* Destination Service Access Point (0xAA) */
67 __u8 ssap; /* Source Service Access Point (0xAA) */
68 __u8 ui; /* Unnumbered Information (0x03) */
69 __u8 org[3]; /* Organizational identification (0x000000) */
70 __u8 type[2]; /* Ether type (for IP) (0x0800) */
73 /* TLVs this MPC recognizes */
74 #define TLV_MPOA_DEVICE_TYPE 0x00a03e2a
76 /* MPOA device types in MPOA Device Type TLV */
83 /* MPC parameter defaults */
85 #define MPC_P1 10 /* Shortcut-Setup Frame Count */
86 #define MPC_P2 1 /* Shortcut-Setup Frame Time */
87 #define MPC_P3 0 /* Flow-detection Protocols */
88 #define MPC_P4 5 /* MPC Initial Retry Time */
89 #define MPC_P5 40 /* MPC Retry Time Maximum */
90 #define MPC_P6 160 /* Hold Down Time */
91 #define HOLDING_TIME_DEFAULT 1200 /* same as MPS-p7 */
95 #define MPC_C1 2 /* Retry Time Multiplier */
96 #define MPC_C2 60 /* Initial Keep-Alive Lifetime */
98 /* Message types - to MPOA daemon */
100 #define SND_MPOA_RES_RQST 201
101 #define SET_MPS_CTRL_ADDR 202
102 #define SND_MPOA_RES_RTRY 203 /* Different type in a retry due to req id */
103 #define STOP_KEEP_ALIVE_SM 204
104 #define EGRESS_ENTRY_REMOVED 205
105 #define SND_EGRESS_PURGE 206
106 #define DIE 207 /* tell the daemon to exit() */
107 #define DATA_PLANE_PURGE 208 /* Data plane purge because of egress cache hit miss or dead MPS */
108 #define OPEN_INGRESS_SVC 209
110 /* Message types - from MPOA daemon */
112 #define MPOA_TRIGGER_RCVD 101
113 #define MPOA_RES_REPLY_RCVD 102
114 #define INGRESS_PURGE_RCVD 103
115 #define EGRESS_PURGE_RCVD 104
116 #define MPS_DEATH 105
117 #define CACHE_IMPOS_RCVD 106
118 #define SET_MPC_CTRL_ADDR 107 /* Our MPC's control ATM address */
119 #define SET_MPS_MAC_ADDR 108
120 #define CLEAN_UP_AND_EXIT 109
121 #define SET_MPC_PARAMS 110 /* MPC configuration parameters */
123 /* Message types - bidirectional */
125 #define RELOAD 301 /* kill -HUP the daemon for reload */
127 #endif /* _ATMMPC_H_ */