1
2 #ifndef _ATMMPC_H_
3 #define _ATMMPC_H_
4
5 #include <linux/atmapi.h>
6 #include <linux/atmioc.h>
7 #include <linux/atm.h>
8 #include <linux/types.h>
9
10 #define ATMMPC_CTRL _IO('a', ATMIOC_MPOA)
11 #define ATMMPC_DATA _IO('a', ATMIOC_MPOA+1)
12
13 #define MPC_SOCKET_INGRESS 1
14 #define MPC_SOCKET_EGRESS 2
15
16 struct atmmpc_ioc {
17 int dev_num;
18 __be32 ipaddr;
19 int type;
20 };
21
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];
26 __be32 tag;
27 __be32 in_dst_ip;
28 __u16 holding_time;
29 __u32 request_id;
30 } in_ctrl_info;
31
32 typedef struct eg_ctrl_info {
33 __u8 DLL_header[256];
34 __u8 DH_length;
35 __be32 cache_id;
36 __be32 tag;
37 __be32 mps_ip;
38 __be32 eg_dst_ip;
39 __u8 in_MPC_data_ATM_addr[ATM_ESA_LEN];
40 __u16 holding_time;
41 } eg_ctrl_info;
42
43 struct mpc_parameters {
44 __u16 mpc_p1;
45 __u16 mpc_p2;
46 __u8 mpc_p3[8];
47 __u16 mpc_p4;
48 __u16 mpc_p5;
49 __u16 mpc_p6;
50 } ;
51
52 struct k_message {
53 __u16 type;
54 __be32 ip_mask;
55 __u8 MPS_ctrl[ATM_ESA_LEN];
56 union {
57 in_ctrl_info in_info;
58 eg_ctrl_info eg_info;
59 struct mpc_parameters params;
60 } content;
61 struct atm_qos qos;
62 } __ATM_API_ALIGN;
63
64 struct llc_snap_hdr {
65
66 __u8 dsap;
67 __u8 ssap;
68 __u8 ui;
69 __u8 org[3];
70 __u8 type[2];
71 };
72
73
74 #define TLV_MPOA_DEVICE_TYPE 0x00a03e2a
75
76
77 #define NON_MPOA 0
78 #define MPS 1
79 #define MPC 2
80 #define MPS_AND_MPC 3
81
82
83
84
85 #define MPC_P1 10
86 #define MPC_P2 1
87 #define MPC_P3 0
88 #define MPC_P4 5
89 #define MPC_P5 40
90 #define MPC_P6 160
91 #define HOLDING_TIME_DEFAULT 1200
92
93
94
95 #define MPC_C1 2
96 #define MPC_C2 60
97
98
99
100 #define SND_MPOA_RES_RQST 201
101 #define SET_MPS_CTRL_ADDR 202
102 #define SND_MPOA_RES_RTRY 203
103 #define STOP_KEEP_ALIVE_SM 204
104 #define EGRESS_ENTRY_REMOVED 205
105 #define SND_EGRESS_PURGE 206
106 #define DIE 207
107 #define DATA_PLANE_PURGE 208
108 #define OPEN_INGRESS_SVC 209
109
110
111
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
119 #define SET_MPS_MAC_ADDR 108
120 #define CLEAN_UP_AND_EXIT 109
121 #define SET_MPC_PARAMS 110
122
123
124
125 #define RELOAD 301
126
127 #endif