blob: b2229d32a50aa9b201739a00c112762708e2d44c [file] [log] [blame]
Talel Atias8390f262012-11-15 16:33:18 +02001#ifndef _MSM_IPA_H_
2#define _MSM_IPA_H_
3
4#ifndef __KERNEL__
5#include <stdint.h>
6#include <stddef.h>
7#include <sys/stat.h>
8#endif
9#include <linux/ioctl.h>
10
11/**
12 * unique magic number of the IPA device
13 */
14#define IPA_IOC_MAGIC 0xCF
15
16/**
17 * name of the default routing tables for v4 and v6
18 */
19#define IPA_DFLT_RT_TBL_NAME "ipa_dflt_rt"
20
21/**
22 * the commands supported by IPA driver
23 */
24#define IPA_IOCTL_ADD_HDR 0
25#define IPA_IOCTL_DEL_HDR 1
26#define IPA_IOCTL_ADD_RT_RULE 2
27#define IPA_IOCTL_DEL_RT_RULE 3
28#define IPA_IOCTL_ADD_FLT_RULE 4
29#define IPA_IOCTL_DEL_FLT_RULE 5
30#define IPA_IOCTL_COMMIT_HDR 6
31#define IPA_IOCTL_RESET_HDR 7
32#define IPA_IOCTL_COMMIT_RT 8
33#define IPA_IOCTL_RESET_RT 9
34#define IPA_IOCTL_COMMIT_FLT 10
35#define IPA_IOCTL_RESET_FLT 11
36#define IPA_IOCTL_DUMP 12
37#define IPA_IOCTL_GET_RT_TBL 13
38#define IPA_IOCTL_PUT_RT_TBL 14
39#define IPA_IOCTL_COPY_HDR 15
40#define IPA_IOCTL_QUERY_INTF 16
41#define IPA_IOCTL_QUERY_INTF_TX_PROPS 17
42#define IPA_IOCTL_QUERY_INTF_RX_PROPS 18
43#define IPA_IOCTL_GET_HDR 19
44#define IPA_IOCTL_PUT_HDR 20
45#define IPA_IOCTL_SET_FLT 21
46#define IPA_IOCTL_ALLOC_NAT_MEM 22
47#define IPA_IOCTL_V4_INIT_NAT 23
48#define IPA_IOCTL_NAT_DMA 24
49#define IPA_IOCTL_V4_DEL_NAT 26
Talel Atias9bc53892013-02-10 15:10:07 +020050#define IPA_IOCTL_PULL_MSG 27
Talel Atias8390f262012-11-15 16:33:18 +020051#define IPA_IOCTL_GET_NAT_OFFSET 28
Vladislav Mordohovichc76217e2013-03-10 17:45:05 +020052#define IPA_IOCTL_RM_ADD_DEPENDENCY 29
53#define IPA_IOCTL_RM_DEL_DEPENDENCY 30
54#define IPA_IOCTL_MAX 31
Talel Atias8390f262012-11-15 16:33:18 +020055
56/**
57 * max size of the header to be inserted
58 */
59#define IPA_HDR_MAX_SIZE 64
60
61/**
62 * max size of the name of the resource (routing table, header)
63 */
64#define IPA_RESOURCE_NAME_MAX 20
65
66/**
Talel Atias9bc53892013-02-10 15:10:07 +020067 * size of the mac address
68 */
69#define IPA_MAC_ADDR_SIZE 6
70
71/**
Talel Atias8390f262012-11-15 16:33:18 +020072 * the attributes of the rule (routing or filtering)
73 */
74#define IPA_FLT_TOS (1ul << 0)
75#define IPA_FLT_PROTOCOL (1ul << 1)
76#define IPA_FLT_SRC_ADDR (1ul << 2)
77#define IPA_FLT_DST_ADDR (1ul << 3)
78#define IPA_FLT_SRC_PORT_RANGE (1ul << 4)
79#define IPA_FLT_DST_PORT_RANGE (1ul << 5)
80#define IPA_FLT_TYPE (1ul << 6)
81#define IPA_FLT_CODE (1ul << 7)
82#define IPA_FLT_SPI (1ul << 8)
83#define IPA_FLT_SRC_PORT (1ul << 9)
84#define IPA_FLT_DST_PORT (1ul << 10)
85#define IPA_FLT_TC (1ul << 11)
86#define IPA_FLT_FLOW_LABEL (1ul << 12)
87#define IPA_FLT_NEXT_HDR (1ul << 13)
88#define IPA_FLT_META_DATA (1ul << 14)
89#define IPA_FLT_FRAGMENT (1ul << 15)
Skylar Chang1bb53742013-06-14 15:05:47 -070090#define IPA_FLT_TOS_MASKED (1ul << 16)
Talel Atias8390f262012-11-15 16:33:18 +020091
92/**
93 * enum ipa_client_type - names for the various IPA "clients"
94 * these are from the perspective of the clients, for e.g.
95 * HSIC1_PROD means HSIC client is the producer and IPA is the
96 * consumer
97 */
98enum ipa_client_type {
99 IPA_CLIENT_PROD,
100 IPA_CLIENT_HSIC1_PROD = IPA_CLIENT_PROD,
101 IPA_CLIENT_HSIC2_PROD,
102 IPA_CLIENT_HSIC3_PROD,
103 IPA_CLIENT_HSIC4_PROD,
104 IPA_CLIENT_HSIC5_PROD,
105 IPA_CLIENT_USB_PROD,
106 IPA_CLIENT_A5_WLAN_AMPDU_PROD,
107 IPA_CLIENT_A2_EMBEDDED_PROD,
108 IPA_CLIENT_A2_TETHERED_PROD,
109 IPA_CLIENT_A5_LAN_WAN_PROD,
110 IPA_CLIENT_A5_CMD_PROD,
111 IPA_CLIENT_Q6_LAN_PROD,
112
113 IPA_CLIENT_CONS,
114 IPA_CLIENT_HSIC1_CONS = IPA_CLIENT_CONS,
115 IPA_CLIENT_HSIC2_CONS,
116 IPA_CLIENT_HSIC3_CONS,
117 IPA_CLIENT_HSIC4_CONS,
118 IPA_CLIENT_HSIC5_CONS,
119 IPA_CLIENT_USB_CONS,
120 IPA_CLIENT_A2_EMBEDDED_CONS,
121 IPA_CLIENT_A2_TETHERED_CONS,
122 IPA_CLIENT_A5_LAN_WAN_CONS,
123 IPA_CLIENT_Q6_LAN_CONS,
124
125 IPA_CLIENT_MAX,
126};
127
128/**
129 * enum ipa_ip_type - Address family: IPv4 or IPv6
130 */
131enum ipa_ip_type {
132 IPA_IP_v4,
133 IPA_IP_v6,
134 IPA_IP_MAX
135};
136
137/**
138 * enum ipa_flt_action - action field of filtering rule
139 *
140 * Pass to routing: 5'd0
141 * Pass to source NAT: 5'd1
142 * Pass to destination NAT: 5'd2
143 * Pass to default output pipe (e.g., A5): 5'd3
144 */
145enum ipa_flt_action {
146 IPA_PASS_TO_ROUTING,
147 IPA_PASS_TO_SRC_NAT,
148 IPA_PASS_TO_DST_NAT,
149 IPA_PASS_TO_EXCEPTION
150};
151
152/**
Talel Atias9bc53892013-02-10 15:10:07 +0200153 * enum ipa_wlan_event - Events for wlan client
154 *
155 * wlan client connect: New wlan client connected
156 * wlan client disconnect: wlan client disconnected
157 * wlan client power save: wlan client moved to power save
158 * wlan client normal: wlan client moved out of power save
159 * sw routing enable: ipa routing is disabled
160 * sw routing disable: ipa routing is enabled
Ravi Gummadidala16f65812013-03-04 16:35:54 -0800161 * wlan ap connect: wlan AP(access point) is up
162 * wlan ap disconnect: wlan AP(access point) is down
163 * wlan sta connect: wlan STA(station) is up
164 * wlan sta disconnect: wlan STA(station) is down
Talel Atias9bc53892013-02-10 15:10:07 +0200165 */
166enum ipa_wlan_event {
167 WLAN_CLIENT_CONNECT,
168 WLAN_CLIENT_DISCONNECT,
169 WLAN_CLIENT_POWER_SAVE_MODE,
170 WLAN_CLIENT_NORMAL_MODE,
171 SW_ROUTING_ENABLE,
172 SW_ROUTING_DISABLE,
Ravi Gummadidala16f65812013-03-04 16:35:54 -0800173 WLAN_AP_CONNECT,
174 WLAN_AP_DISCONNECT,
175 WLAN_STA_CONNECT,
176 WLAN_STA_DISCONNECT,
Ravi Gummadidala43946232013-03-18 14:44:47 -0700177 IPA_EVENT_MAX
Talel Atias9bc53892013-02-10 15:10:07 +0200178};
179
Vladislav Mordohovichc76217e2013-03-10 17:45:05 +0200180/**
181 * enum ipa_rm_resource_name - IPA RM clients identification names
182 *
183 * Add new mapping to ipa_rm_dep_prod_index() / ipa_rm_dep_cons_index()
184 * when adding new entry to this enum.
185 */
186enum ipa_rm_resource_name {
187 IPA_RM_RESOURCE_PROD = 0,
188 IPA_RM_RESOURCE_BRIDGE_PROD = IPA_RM_RESOURCE_PROD,
189 IPA_RM_RESOURCE_A2_PROD,
190 IPA_RM_RESOURCE_USB_PROD,
191 IPA_RM_RESOURCE_HSIC_PROD,
192 IPA_RM_RESOURCE_STD_ECM_PROD,
193 IPA_RM_RESOURCE_WWAN_0_PROD,
194 IPA_RM_RESOURCE_WWAN_1_PROD,
195 IPA_RM_RESOURCE_WWAN_2_PROD,
196 IPA_RM_RESOURCE_WWAN_3_PROD,
197 IPA_RM_RESOURCE_WWAN_4_PROD,
198 IPA_RM_RESOURCE_WWAN_5_PROD,
199 IPA_RM_RESOURCE_WWAN_6_PROD,
200 IPA_RM_RESOURCE_WWAN_7_PROD,
201 IPA_RM_RESOURCE_WLAN_PROD,
202 IPA_RM_RESOURCE_PROD_MAX,
203
204 IPA_RM_RESOURCE_A2_CONS = IPA_RM_RESOURCE_PROD_MAX,
205 IPA_RM_RESOURCE_USB_CONS,
206 IPA_RM_RESOURCE_HSIC_CONS,
207 IPA_RM_RESOURCE_MAX
208};
Talel Atias9bc53892013-02-10 15:10:07 +0200209
210/**
Talel Atias8390f262012-11-15 16:33:18 +0200211 * struct ipa_rule_attrib - attributes of a routing/filtering
212 * rule, all in LE
213 * @attrib_mask: what attributes are valid
214 * @src_port_lo: low port of src port range
215 * @src_port_hi: high port of src port range
216 * @dst_port_lo: low port of dst port range
217 * @dst_port_hi: high port of dst port range
218 * @type: ICMP/IGMP type
219 * @code: ICMP/IGMP code
220 * @spi: IPSec SPI
221 * @src_port: exact src port
222 * @dst_port: exact dst port
223 * @meta_data: meta-data val
224 * @meta_data_mask: meta-data mask
225 * @u.v4.tos: type of service
226 * @u.v4.protocol: protocol
227 * @u.v4.src_addr: src address value
228 * @u.v4.src_addr_mask: src address mask
229 * @u.v4.dst_addr: dst address value
230 * @u.v4.dst_addr_mask: dst address mask
231 * @u.v6.tc: traffic class
232 * @u.v6.flow_label: flow label
233 * @u.v6.next_hdr: next header
234 * @u.v6.src_addr: src address val
235 * @u.v6.src_addr_mask: src address mask
236 * @u.v6.dst_addr: dst address val
237 * @u.v6.dst_addr_mask: dst address mask
238 */
239struct ipa_rule_attrib {
240 uint32_t attrib_mask;
241 uint16_t src_port_lo;
242 uint16_t src_port_hi;
243 uint16_t dst_port_lo;
244 uint16_t dst_port_hi;
245 uint8_t type;
246 uint8_t code;
Skylar Chang1bb53742013-06-14 15:05:47 -0700247 uint8_t tos_value;
248 uint8_t tos_mask;
Talel Atias8390f262012-11-15 16:33:18 +0200249 uint32_t spi;
250 uint16_t src_port;
251 uint16_t dst_port;
252 uint32_t meta_data;
253 uint32_t meta_data_mask;
254 union {
255 struct {
256 uint8_t tos;
257 uint8_t protocol;
258 uint32_t src_addr;
259 uint32_t src_addr_mask;
260 uint32_t dst_addr;
261 uint32_t dst_addr_mask;
262 } v4;
263 struct {
264 uint8_t tc;
265 uint32_t flow_label;
266 uint8_t next_hdr;
267 uint32_t src_addr[4];
268 uint32_t src_addr_mask[4];
269 uint32_t dst_addr[4];
270 uint32_t dst_addr_mask[4];
271 } v6;
272 } u;
273};
274
275/**
276 * struct ipa_flt_rule - attributes of a filtering rule
277 * @action: action field
278 * @rt_tbl_hdl: handle of table from "get"
279 * @attrib: attributes of the rule
280 */
281struct ipa_flt_rule {
282 enum ipa_flt_action action;
283 uint32_t rt_tbl_hdl;
284 struct ipa_rule_attrib attrib;
285};
286
287/**
288 * struct ipa_rt_rule - attributes of a routing rule
289 * @dst: dst "client"
290 * @hdr_hdl: handle to the dynamic header
291 it is not an index or an offset
292 * @attrib: attributes of the rule
293 */
294struct ipa_rt_rule {
295 enum ipa_client_type dst;
296 uint32_t hdr_hdl;
297 struct ipa_rule_attrib attrib;
298};
299
300/**
301 * struct ipa_hdr_add - header descriptor includes in and out
302 * parameters
303 * @name: name of the header
304 * @hdr: actual header to be inserted
305 * @hdr_len: size of above header
306 * @is_partial: header not fully specified
307 * @hdr_hdl: out paramerer, handle to header, valid when status is 0
308 * @status: out paramerer, status of header add operation,
309 * 0 for success,
310 * -1 for failure
311 */
312struct ipa_hdr_add {
313 char name[IPA_RESOURCE_NAME_MAX];
314 uint8_t hdr[IPA_HDR_MAX_SIZE];
315 uint8_t hdr_len;
316 uint8_t is_partial;
317 uint32_t hdr_hdl;
318 int status;
319};
320
321/**
322 * struct ipa_ioc_add_hdr - header addition parameters (support
323 * multiple headers and commit)
324 * @commit: should headers be written to IPA HW also?
325 * @num_hdrs: num of headers that follow
326 * @ipa_hdr_add hdr: all headers need to go here back to
327 * back, no pointers
328 */
329struct ipa_ioc_add_hdr {
330 uint8_t commit;
331 uint8_t num_hdrs;
332 struct ipa_hdr_add hdr[0];
333};
334
335/**
336 * struct ipa_ioc_copy_hdr - retrieve a copy of the specified
337 * header - caller can then derive the complete header
338 * @name: name of the header resource
339 * @hdr: out parameter, contents of specified header,
340 * valid only when ioctl return val is non-negative
341 * @hdr_len: out parameter, size of above header
342 * valid only when ioctl return val is non-negative
343 * @is_partial: out parameter, indicates whether specified header is partial
344 * valid only when ioctl return val is non-negative
345 */
346struct ipa_ioc_copy_hdr {
347 char name[IPA_RESOURCE_NAME_MAX];
348 uint8_t hdr[IPA_HDR_MAX_SIZE];
349 uint8_t hdr_len;
350 uint8_t is_partial;
351};
352
353/**
354 * struct ipa_ioc_get_hdr - header entry lookup parameters, if lookup was
355 * successful caller must call put to release the reference count when done
356 * @name: name of the header resource
357 * @hdl: out parameter, handle of header entry
358 * valid only when ioctl return val is non-negative
359 */
360struct ipa_ioc_get_hdr {
361 char name[IPA_RESOURCE_NAME_MAX];
362 uint32_t hdl;
363};
364
365/**
366 * struct ipa_hdr_del - header descriptor includes in and out
367 * parameters
368 *
369 * @hdl: handle returned from header add operation
370 * @status: out parameter, status of header remove operation,
371 * 0 for success,
372 * -1 for failure
373 */
374struct ipa_hdr_del {
375 uint32_t hdl;
376 int status;
377};
378
379/**
380 * struct ipa_ioc_del_hdr - header deletion parameters (support
381 * multiple headers and commit)
382 * @commit: should headers be removed from IPA HW also?
383 * @num_hdls: num of headers being removed
384 * @ipa_hdr_del hdl: all handles need to go here back to back, no pointers
385 */
386struct ipa_ioc_del_hdr {
387 uint8_t commit;
388 uint8_t num_hdls;
389 struct ipa_hdr_del hdl[0];
390};
391
392/**
393 * struct ipa_rt_rule_add - routing rule descriptor includes in
394 * and out parameters
395 * @rule: actual rule to be added
396 * @at_rear: add at back of routing table, it is NOT possible to add rules at
397 * the rear of the "default" routing tables
398 * @rt_rule_hdl: output parameter, handle to rule, valid when status is 0
399 * @status: output parameter, status of routing rule add operation,
400 * 0 for success,
401 * -1 for failure
402 */
403struct ipa_rt_rule_add {
404 struct ipa_rt_rule rule;
405 uint8_t at_rear;
406 uint32_t rt_rule_hdl;
407 int status;
408};
409
410/**
411 * struct ipa_ioc_add_rt_rule - routing rule addition parameters (supports
412 * multiple rules and commit);
413 *
414 * all rules MUST be added to same table
415 * @commit: should rules be written to IPA HW also?
416 * @ip: IP family of rule
417 * @rt_tbl_name: name of routing table resource
418 * @num_rules: number of routing rules that follow
419 * @ipa_rt_rule_add rules: all rules need to go back to back here, no pointers
420 */
421struct ipa_ioc_add_rt_rule {
422 uint8_t commit;
423 enum ipa_ip_type ip;
424 char rt_tbl_name[IPA_RESOURCE_NAME_MAX];
425 uint8_t num_rules;
426 struct ipa_rt_rule_add rules[0];
427};
428
429/**
430 * struct ipa_rt_rule_del - routing rule descriptor includes in
431 * and out parameters
432 * @hdl: handle returned from route rule add operation
433 * @status: output parameter, status of route rule delete operation,
434 * 0 for success,
435 * -1 for failure
436 */
437struct ipa_rt_rule_del {
438 uint32_t hdl;
439 int status;
440};
441
442/**
443 * struct ipa_ioc_del_rt_rule - routing rule deletion parameters (supports
444 * multiple headers and commit)
445 * @commit: should rules be removed from IPA HW also?
446 * @ip: IP family of rules
447 * @num_hdls: num of rules being removed
448 * @ipa_rt_rule_del hdl: all handles need to go back to back here, no pointers
449 */
450struct ipa_ioc_del_rt_rule {
451 uint8_t commit;
452 enum ipa_ip_type ip;
453 uint8_t num_hdls;
454 struct ipa_rt_rule_del hdl[0];
455};
456
457/**
458 * struct ipa_flt_rule_add - filtering rule descriptor includes
459 * in and out parameters
460 * @rule: actual rule to be added
461 * @at_rear: add at back of filtering table?
462 * @flt_rule_hdl: out parameter, handle to rule, valid when status is 0
463 * @status: output parameter, status of filtering rule add operation,
464 * 0 for success,
465 * -1 for failure
466 *
467 */
468struct ipa_flt_rule_add {
469 struct ipa_flt_rule rule;
470 uint8_t at_rear;
471 uint32_t flt_rule_hdl;
472 int status;
473};
474
475/**
476 * struct ipa_ioc_add_flt_rule - filtering rule addition parameters (supports
477 * multiple rules and commit)
478 * all rules MUST be added to same table
479 * @commit: should rules be written to IPA HW also?
480 * @ip: IP family of rule
481 * @ep: which "clients" pipe does this rule apply to?
482 * valid only when global is 0
483 * @global: does this apply to global filter table of specific IP family
484 * @num_rules: number of filtering rules that follow
485 * @rules: all rules need to go back to back here, no pointers
486 */
487struct ipa_ioc_add_flt_rule {
488 uint8_t commit;
489 enum ipa_ip_type ip;
490 enum ipa_client_type ep;
491 uint8_t global;
492 uint8_t num_rules;
493 struct ipa_flt_rule_add rules[0];
494};
495
496/**
497 * struct ipa_flt_rule_del - filtering rule descriptor includes
498 * in and out parameters
499 *
500 * @hdl: handle returned from filtering rule add operation
501 * @status: output parameter, status of filtering rule delete operation,
502 * 0 for success,
503 * -1 for failure
504 */
505struct ipa_flt_rule_del {
506 uint32_t hdl;
507 int status;
508};
509
510/**
511 * struct ipa_ioc_del_flt_rule - filtering rule deletion parameters (supports
512 * multiple headers and commit)
513 * @commit: should rules be removed from IPA HW also?
514 * @ip: IP family of rules
515 * @num_hdls: num of rules being removed
516 * @hdl: all handles need to go back to back here, no pointers
517 */
518struct ipa_ioc_del_flt_rule {
519 uint8_t commit;
520 enum ipa_ip_type ip;
521 uint8_t num_hdls;
522 struct ipa_flt_rule_del hdl[0];
523};
524
525/**
526 * struct ipa_ioc_get_rt_tbl - routing table lookup parameters, if lookup was
527 * successful caller must call put to release the reference
528 * count when done
529 * @ip: IP family of table
530 * @name: name of routing table resource
531 * @htl: output parameter, handle of routing table, valid only when ioctl
532 * return val is non-negative
533 */
534struct ipa_ioc_get_rt_tbl {
535 enum ipa_ip_type ip;
536 char name[IPA_RESOURCE_NAME_MAX];
537 uint32_t hdl;
538};
539
540/**
541 * struct ipa_ioc_query_intf - used to lookup number of tx and
542 * rx properties of interface
543 * @name: name of interface
544 * @num_tx_props: output parameter, number of tx properties
545 * valid only when ioctl return val is non-negative
546 * @num_rx_props: output parameter, number of rx properties
547 * valid only when ioctl return val is non-negative
548 */
549struct ipa_ioc_query_intf {
550 char name[IPA_RESOURCE_NAME_MAX];
551 uint32_t num_tx_props;
552 uint32_t num_rx_props;
553};
554
555/**
556 * struct ipa_ioc_tx_intf_prop - interface tx property
557 * @ip: IP family of routing rule
558 * @attrib: routing rule
559 * @dst_pipe: routing output pipe
560 * @hdr_name: name of associated header if any, empty string when no header
561 */
562struct ipa_ioc_tx_intf_prop {
563 enum ipa_ip_type ip;
564 struct ipa_rule_attrib attrib;
565 enum ipa_client_type dst_pipe;
566 char hdr_name[IPA_RESOURCE_NAME_MAX];
567};
568
569/**
570 * struct ipa_ioc_query_intf_tx_props - interface tx propertie
571 * @name: name of interface
Talel Atias9bc53892013-02-10 15:10:07 +0200572 * @num_tx_props: number of TX properties
Talel Atias8390f262012-11-15 16:33:18 +0200573 * @tx[0]: output parameter, the tx properties go here back to back
574 */
575struct ipa_ioc_query_intf_tx_props {
576 char name[IPA_RESOURCE_NAME_MAX];
Talel Atias9bc53892013-02-10 15:10:07 +0200577 uint32_t num_tx_props;
Talel Atias8390f262012-11-15 16:33:18 +0200578 struct ipa_ioc_tx_intf_prop tx[0];
579};
580
581/**
582 * struct ipa_ioc_rx_intf_prop - interface rx property
583 * @ip: IP family of filtering rule
584 * @attrib: filtering rule
585 * @src_pipe: input pipe
586 */
587struct ipa_ioc_rx_intf_prop {
588 enum ipa_ip_type ip;
589 struct ipa_rule_attrib attrib;
590 enum ipa_client_type src_pipe;
591};
592
593/**
594 * struct ipa_ioc_query_intf_rx_props - interface rx propertie
595 * @name: name of interface
Talel Atias9bc53892013-02-10 15:10:07 +0200596 * @num_rx_props: number of RX properties
Talel Atias8390f262012-11-15 16:33:18 +0200597 * @rx: output parameter, the rx properties go here back to back
598 */
599struct ipa_ioc_query_intf_rx_props {
600 char name[IPA_RESOURCE_NAME_MAX];
Talel Atias9bc53892013-02-10 15:10:07 +0200601 uint32_t num_rx_props;
Talel Atias8390f262012-11-15 16:33:18 +0200602 struct ipa_ioc_rx_intf_prop rx[0];
603};
604
605/**
606 * struct ipa_ioc_nat_alloc_mem - nat table memory allocation
607 * properties
608 * @dev_name: input parameter, the name of table
609 * @size: input parameter, size of table in bytes
610 * @offset: output parameter, offset into page in case of system memory
611 */
612struct ipa_ioc_nat_alloc_mem {
613 char dev_name[IPA_RESOURCE_NAME_MAX];
614 size_t size;
615 off_t offset;
616};
617
618/**
619 * struct ipa_ioc_v4_nat_init - nat table initialization
620 * parameters
621 * @tbl_index: input parameter, index of the table
622 * @ipv4_rules_offset: input parameter, ipv4 rules address offset
623 * @expn_rules_offset: input parameter, ipv4 expansion rules address offset
624 * @index_offset: input parameter, index rules offset
625 * @index_expn_offset: input parameter, index expansion rules offset
626 * @table_entries: input parameter, ipv4 rules table size in entries
627 * @expn_table_entries: input parameter, ipv4 expansion rules table size
628 * @ip_addr: input parameter, public ip address
629 */
630struct ipa_ioc_v4_nat_init {
631 uint8_t tbl_index;
632 uint32_t ipv4_rules_offset;
633 uint32_t expn_rules_offset;
634
635 uint32_t index_offset;
636 uint32_t index_expn_offset;
637
638 uint16_t table_entries;
639 uint16_t expn_table_entries;
640 uint32_t ip_addr;
641};
642
643/**
644 * struct ipa_ioc_v4_nat_del - nat table delete parameter
645 * @table_index: input parameter, index of the table
646 * @public_ip_addr: input parameter, public ip address
647 */
648struct ipa_ioc_v4_nat_del {
649 uint8_t table_index;
650 uint32_t public_ip_addr;
651};
652
653/**
654 * struct ipa_ioc_nat_dma_one - nat dma command parameter
655 * @table_index: input parameter, index of the table
656 * @base_addr: type of table, from which the base address of the table
657 * can be inferred
658 * @offset: destination offset within the NAT table
659 * @data: data to be written.
660 */
661struct ipa_ioc_nat_dma_one {
662 uint8_t table_index;
663 uint8_t base_addr;
664
665 uint32_t offset;
666 uint16_t data;
667
668};
669
670/**
671 * struct ipa_ioc_nat_dma_cmd - To hold multiple nat dma commands
672 * @entries: number of dma commands in use
673 * @dma: data pointer to the dma commands
674 */
675struct ipa_ioc_nat_dma_cmd {
676 uint8_t entries;
677 struct ipa_ioc_nat_dma_one dma[0];
678
679};
680
681/**
682 * struct ipa_msg_meta - Format of the message meta-data.
683 * @msg_type: the type of the message
Talel Atias8390f262012-11-15 16:33:18 +0200684 * @rsvd: reserved bits for future use.
Talel Atias9bc53892013-02-10 15:10:07 +0200685 * @msg_len: the length of the message in bytes
Talel Atias8390f262012-11-15 16:33:18 +0200686 *
Talel Atias9bc53892013-02-10 15:10:07 +0200687 * For push model:
Talel Atias8390f262012-11-15 16:33:18 +0200688 * Client in user-space should issue a read on the device (/dev/ipa) with a
Talel Atias9bc53892013-02-10 15:10:07 +0200689 * sufficiently large buffer in a continuous loop, call will block when there is
690 * no message to read. Upon return, client can read the ipa_msg_meta from start
691 * of buffer to find out type and length of message
692 * size of buffer supplied >= (size of largest message + size of metadata)
Talel Atias8390f262012-11-15 16:33:18 +0200693 *
Talel Atias9bc53892013-02-10 15:10:07 +0200694 * For pull model:
695 * Client in user-space can also issue a pull msg IOCTL to device (/dev/ipa)
696 * with a payload containing space for the ipa_msg_meta and the message specific
697 * payload length.
698 * size of buffer supplied == (len of specific message + size of metadata)
Talel Atias8390f262012-11-15 16:33:18 +0200699 */
700struct ipa_msg_meta {
701 uint8_t msg_type;
Talel Atias8390f262012-11-15 16:33:18 +0200702 uint8_t rsvd;
Talel Atias9bc53892013-02-10 15:10:07 +0200703 uint16_t msg_len;
Talel Atias8390f262012-11-15 16:33:18 +0200704};
705
706/**
Talel Atias9bc53892013-02-10 15:10:07 +0200707 * struct ipa_wlan_msg - To hold information about wlan client
708 * @name: name of the wlan interface
709 * @mac_addr: mac address of wlan client
710 *
711 * wlan drivers need to pass name of wlan iface and mac address of
712 * wlan client along with ipa_wlan_event, whenever a wlan client is
713 * connected/disconnected/moved to power save/come out of power save
714 */
715struct ipa_wlan_msg {
716 char name[IPA_RESOURCE_NAME_MAX];
717 uint8_t mac_addr[IPA_MAC_ADDR_SIZE];
718};
719
Vladislav Mordohovichc76217e2013-03-10 17:45:05 +0200720/**
721 * struct ipa_ioc_rm_dependency - parameters for add/delete dependency
722 * @resource_name: name of dependent resource
723 * @depends_on_name: name of its dependency
724 */
725struct ipa_ioc_rm_dependency {
726 enum ipa_rm_resource_name resource_name;
727 enum ipa_rm_resource_name depends_on_name;
728};
Talel Atias9bc53892013-02-10 15:10:07 +0200729
730
731/**
Talel Atias8390f262012-11-15 16:33:18 +0200732 * actual IOCTLs supported by IPA driver
733 */
734#define IPA_IOC_ADD_HDR _IOWR(IPA_IOC_MAGIC, \
735 IPA_IOCTL_ADD_HDR, \
736 struct ipa_ioc_add_hdr *)
737#define IPA_IOC_DEL_HDR _IOWR(IPA_IOC_MAGIC, \
738 IPA_IOCTL_DEL_HDR, \
739 struct ipa_ioc_del_hdr *)
740#define IPA_IOC_ADD_RT_RULE _IOWR(IPA_IOC_MAGIC, \
741 IPA_IOCTL_ADD_RT_RULE, \
742 struct ipa_ioc_add_rt_rule *)
743#define IPA_IOC_DEL_RT_RULE _IOWR(IPA_IOC_MAGIC, \
744 IPA_IOCTL_DEL_RT_RULE, \
745 struct ipa_ioc_del_rt_rule *)
746#define IPA_IOC_ADD_FLT_RULE _IOWR(IPA_IOC_MAGIC, \
747 IPA_IOCTL_ADD_FLT_RULE, \
748 struct ipa_ioc_add_flt_rule *)
749#define IPA_IOC_DEL_FLT_RULE _IOWR(IPA_IOC_MAGIC, \
750 IPA_IOCTL_DEL_FLT_RULE, \
751 struct ipa_ioc_del_flt_rule *)
752#define IPA_IOC_COMMIT_HDR _IO(IPA_IOC_MAGIC,\
753 IPA_IOCTL_COMMIT_HDR)
754#define IPA_IOC_RESET_HDR _IO(IPA_IOC_MAGIC,\
755 IPA_IOCTL_RESET_HDR)
756#define IPA_IOC_COMMIT_RT _IOW(IPA_IOC_MAGIC, \
757 IPA_IOCTL_COMMIT_RT, \
758 enum ipa_ip_type)
759#define IPA_IOC_RESET_RT _IOW(IPA_IOC_MAGIC, \
760 IPA_IOCTL_RESET_RT, \
761 enum ipa_ip_type)
762#define IPA_IOC_COMMIT_FLT _IOW(IPA_IOC_MAGIC, \
763 IPA_IOCTL_COMMIT_FLT, \
764 enum ipa_ip_type)
765#define IPA_IOC_RESET_FLT _IOW(IPA_IOC_MAGIC, \
766 IPA_IOCTL_RESET_FLT, \
767 enum ipa_ip_type)
768#define IPA_IOC_DUMP _IO(IPA_IOC_MAGIC, \
769 IPA_IOCTL_DUMP)
770#define IPA_IOC_GET_RT_TBL _IOWR(IPA_IOC_MAGIC, \
771 IPA_IOCTL_GET_RT_TBL, \
772 struct ipa_ioc_get_rt_tbl *)
773#define IPA_IOC_PUT_RT_TBL _IOW(IPA_IOC_MAGIC, \
774 IPA_IOCTL_PUT_RT_TBL, \
775 uint32_t)
776#define IPA_IOC_COPY_HDR _IOWR(IPA_IOC_MAGIC, \
777 IPA_IOCTL_COPY_HDR, \
778 struct ipa_ioc_copy_hdr *)
779#define IPA_IOC_QUERY_INTF _IOWR(IPA_IOC_MAGIC, \
780 IPA_IOCTL_QUERY_INTF, \
781 struct ipa_ioc_query_intf *)
782#define IPA_IOC_QUERY_INTF_TX_PROPS _IOWR(IPA_IOC_MAGIC, \
783 IPA_IOCTL_QUERY_INTF_TX_PROPS, \
784 struct ipa_ioc_query_intf_tx_props *)
785#define IPA_IOC_QUERY_INTF_RX_PROPS _IOWR(IPA_IOC_MAGIC, \
786 IPA_IOCTL_QUERY_INTF_RX_PROPS, \
787 struct ipa_ioc_query_intf_rx_props *)
788#define IPA_IOC_GET_HDR _IOWR(IPA_IOC_MAGIC, \
789 IPA_IOCTL_GET_HDR, \
790 struct ipa_ioc_get_hdr *)
791#define IPA_IOC_PUT_HDR _IOW(IPA_IOC_MAGIC, \
792 IPA_IOCTL_PUT_HDR, \
793 uint32_t)
794#define IPA_IOC_ALLOC_NAT_MEM _IOWR(IPA_IOC_MAGIC, \
795 IPA_IOCTL_ALLOC_NAT_MEM, \
796 struct ipa_ioc_nat_alloc_mem *)
797#define IPA_IOC_V4_INIT_NAT _IOWR(IPA_IOC_MAGIC, \
798 IPA_IOCTL_V4_INIT_NAT, \
799 struct ipa_ioc_v4_nat_init *)
800#define IPA_IOC_NAT_DMA _IOWR(IPA_IOC_MAGIC, \
801 IPA_IOCTL_NAT_DMA, \
802 struct ipa_ioc_nat_dma_cmd *)
803#define IPA_IOC_V4_DEL_NAT _IOWR(IPA_IOC_MAGIC, \
804 IPA_IOCTL_V4_DEL_NAT, \
805 struct ipa_ioc_v4_nat_del *)
806#define IPA_IOC_GET_NAT_OFFSET _IOWR(IPA_IOC_MAGIC, \
807 IPA_IOCTL_GET_NAT_OFFSET, \
808 uint32_t *)
809#define IPA_IOC_SET_FLT _IOW(IPA_IOC_MAGIC, \
810 IPA_IOCTL_SET_FLT, \
811 uint32_t)
Talel Atias9bc53892013-02-10 15:10:07 +0200812#define IPA_IOC_PULL_MSG _IOWR(IPA_IOC_MAGIC, \
813 IPA_IOCTL_PULL_MSG, \
Talel Atias8390f262012-11-15 16:33:18 +0200814 struct ipa_msg_meta *)
Vladislav Mordohovichc76217e2013-03-10 17:45:05 +0200815#define IPA_IOC_RM_ADD_DEPENDENCY _IOWR(IPA_IOC_MAGIC, \
816 IPA_IOCTL_RM_ADD_DEPENDENCY, \
817 struct ipa_ioc_rm_dependency *)
818#define IPA_IOC_RM_DEL_DEPENDENCY _IOWR(IPA_IOC_MAGIC, \
819 IPA_IOCTL_RM_DEL_DEPENDENCY, \
820 struct ipa_ioc_rm_dependency *)
Talel Atias8390f262012-11-15 16:33:18 +0200821
Gidon Studinskia83ef572013-03-04 18:38:16 +0200822/*
823 * unique magic number of the Tethering bridge ioctls
824 */
825#define TETH_BRIDGE_IOC_MAGIC 0xCE
826
827/*
828 * Ioctls supported by Tethering bridge driver
829 */
830#define TETH_BRIDGE_IOCTL_SET_BRIDGE_MODE 0
831#define TETH_BRIDGE_IOCTL_SET_AGGR_PARAMS 1
832#define TETH_BRIDGE_IOCTL_GET_AGGR_PARAMS 2
833#define TETH_BRIDGE_IOCTL_GET_AGGR_CAPABILITIES 3
834#define TETH_BRIDGE_IOCTL_MAX 4
835
836
837/**
838 * enum teth_link_protocol_type - link protocol (IP / Ethernet)
839 */
840enum teth_link_protocol_type {
841 TETH_LINK_PROTOCOL_IP,
842 TETH_LINK_PROTOCOL_ETHERNET,
843 TETH_LINK_PROTOCOL_MAX,
844};
845
846/**
847 * enum teth_aggr_protocol_type - Aggregation protocol (MBIM / TLP)
848 */
849enum teth_aggr_protocol_type {
850 TETH_AGGR_PROTOCOL_NONE,
851 TETH_AGGR_PROTOCOL_MBIM,
852 TETH_AGGR_PROTOCOL_TLP,
853 TETH_AGGR_PROTOCOL_MAX,
854};
855
856/**
857 * struct teth_aggr_params_link - Aggregation parameters for uplink/downlink
858 * @aggr_prot: Aggregation protocol (MBIM / TLP)
859 * @max_transfer_size_byte: Maximal size of aggregated packet in bytes.
860 * Default value is 16*1024.
861 * @max_datagrams: Maximal number of IP packets in an aggregated
862 * packet. Default value is 16
863 */
864struct teth_aggr_params_link {
865 enum teth_aggr_protocol_type aggr_prot;
866 uint32_t max_transfer_size_byte;
867 uint32_t max_datagrams;
868};
869
870
871/**
872 * struct teth_aggr_params - Aggregation parmeters
873 * @ul: Uplink parameters
874 * @dl: Downlink parmaeters
875 */
876struct teth_aggr_params {
877 struct teth_aggr_params_link ul;
878 struct teth_aggr_params_link dl;
879};
880
881/**
882 * struct teth_aggr_capabilities - Aggregation capabilities
883 * @num_protocols: Number of protocols described in the array
884 * @prot_caps[]: Array of aggregation capabilities per protocol
885 */
886struct teth_aggr_capabilities {
887 uint16_t num_protocols;
888 struct teth_aggr_params_link prot_caps[0];
889};
890
891
892#define TETH_BRIDGE_IOC_SET_BRIDGE_MODE _IOW(TETH_BRIDGE_IOC_MAGIC, \
893 TETH_BRIDGE_IOCTL_SET_BRIDGE_MODE, \
894 enum teth_link_protocol_type)
895#define TETH_BRIDGE_IOC_SET_AGGR_PARAMS _IOW(TETH_BRIDGE_IOC_MAGIC, \
896 TETH_BRIDGE_IOCTL_SET_AGGR_PARAMS, \
897 struct teth_aggr_params *)
898#define TETH_BRIDGE_IOC_GET_AGGR_PARAMS _IOR(TETH_BRIDGE_IOC_MAGIC, \
899 TETH_BRIDGE_IOCTL_GET_AGGR_PARAMS, \
900 struct teth_aggr_params *)
901#define TETH_BRIDGE_IOC_GET_AGGR_CAPABILITIES _IOWR(TETH_BRIDGE_IOC_MAGIC, \
902 TETH_BRIDGE_IOCTL_GET_AGGR_CAPABILITIES, \
903 struct teth_aggr_capabilities *)
904
Talel Atias8390f262012-11-15 16:33:18 +0200905#endif /* _MSM_IPA_H_ */