Adding support for MOXA ART SoC. Testing port of linux-2.6.32.60-moxart.
[linux-3.6.7-moxart.git] / drivers / staging / ozwpan / ozappif.h
blob449a6ba8233734ff337a8b81869d05e5d81d5104
1 /* -----------------------------------------------------------------------------
2 * Copyright (c) 2011 Ozmo Inc
3 * Released under the GNU General Public License Version 2 (GPLv2).
4 * -----------------------------------------------------------------------------
5 */
6 #ifndef _OZAPPIF_H
7 #define _OZAPPIF_H
9 #include "ozeventdef.h"
11 #define OZ_IOCTL_MAGIC 0xf4
13 struct oz_mac_addr {
14 __u8 a[6];
17 #define OZ_MAX_PDS 8
19 struct oz_pd_list {
20 __u32 count;
21 struct oz_mac_addr addr[OZ_MAX_PDS];
24 #define OZ_MAX_BINDING_LEN 32
26 struct oz_binding_info {
27 char name[OZ_MAX_BINDING_LEN];
30 #define OZ_IOCTL_GET_PD_LIST _IOR(OZ_IOCTL_MAGIC, 0, struct oz_pd_list)
31 #define OZ_IOCTL_SET_ACTIVE_PD _IOW(OZ_IOCTL_MAGIC, 1, struct oz_mac_addr)
32 #define OZ_IOCTL_GET_ACTIVE_PD _IOR(OZ_IOCTL_MAGIC, 2, struct oz_mac_addr)
33 #define OZ_IOCTL_ADD_BINDING _IOW(OZ_IOCTL_MAGIC, 3, struct oz_binding_info)
34 #define OZ_IOCTL_REMOVE_BINDING _IOW(OZ_IOCTL_MAGIC, 4, struct oz_binding_info)
35 #define OZ_IOCTL_MAX 5
38 #endif /* _OZAPPIF_H */