GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / toolchains / hndtools-arm-linux-2.6.36-uclibc-4.5.3 / arm-brcm-linux-uclibcgnueabi / sysroot / usr / include / linux / phonet.h
blob0ee1f2119bda051b0d9995dbcd04f6c1b44cdd29
1 /**
2 * file phonet.h
4 * Phonet sockets kernel interface
6 * Copyright (C) 2008 Nokia Corporation. All rights reserved.
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * version 2 as published by the Free Software Foundation.
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
20 * 02110-1301 USA
23 #ifndef LINUX_PHONET_H
24 #define LINUX_PHONET_H
26 #include <linux/types.h>
28 /* Automatic protocol selection */
29 #define PN_PROTO_TRANSPORT 0
30 /* Phonet datagram socket */
31 #define PN_PROTO_PHONET 1
32 /* Phonet pipe */
33 #define PN_PROTO_PIPE 2
34 #define PHONET_NPROTO 3
36 /* Socket options for SOL_PNPIPE level */
37 #define PNPIPE_ENCAP 1
38 #define PNPIPE_IFINDEX 2
40 #define PNADDR_ANY 0
41 #define PNADDR_BROADCAST 0xFC
42 #define PNPORT_RESOURCE_ROUTING 0
44 /* Values for PNPIPE_ENCAP option */
45 #define PNPIPE_ENCAP_NONE 0
46 #define PNPIPE_ENCAP_IP 1
48 /* ioctls */
49 #define SIOCPNGETOBJECT (SIOCPROTOPRIVATE + 0)
51 /* Phonet protocol header */
52 struct phonethdr {
53 __u8 pn_rdev;
54 __u8 pn_sdev;
55 __u8 pn_res;
56 __be16 pn_length;
57 __u8 pn_robj;
58 __u8 pn_sobj;
59 } __attribute__((packed));
61 /* Common Phonet payload header */
62 struct phonetmsg {
63 __u8 pn_trans_id; /* transaction ID */
64 __u8 pn_msg_id; /* message type */
65 union {
66 struct {
67 __u8 pn_submsg_id; /* message subtype */
68 __u8 pn_data[5];
69 } base;
70 struct {
71 __u16 pn_e_res_id; /* extended resource ID */
72 __u8 pn_e_submsg_id; /* message subtype */
73 __u8 pn_e_data[3];
74 } ext;
75 } pn_msg_u;
77 #define PN_COMMON_MESSAGE 0xF0
78 #define PN_COMMGR 0x10
79 #define PN_PREFIX 0xE0 /* resource for extended messages */
80 #define pn_submsg_id pn_msg_u.base.pn_submsg_id
81 #define pn_e_submsg_id pn_msg_u.ext.pn_e_submsg_id
82 #define pn_e_res_id pn_msg_u.ext.pn_e_res_id
83 #define pn_data pn_msg_u.base.pn_data
84 #define pn_e_data pn_msg_u.ext.pn_e_data
86 /* data for unreachable errors */
87 #define PN_COMM_SERVICE_NOT_IDENTIFIED_RESP 0x01
88 #define PN_COMM_ISA_ENTITY_NOT_REACHABLE_RESP 0x14
89 #define pn_orig_msg_id pn_data[0]
90 #define pn_status pn_data[1]
91 #define pn_e_orig_msg_id pn_e_data[0]
92 #define pn_e_status pn_e_data[1]
94 /* Phonet socket address structure */
95 struct sockaddr_pn {
96 sa_family_t spn_family;
97 __u8 spn_obj;
98 __u8 spn_dev;
99 __u8 spn_resource;
100 __u8 spn_zero[sizeof(struct sockaddr) - sizeof(sa_family_t) - 3];
101 } __attribute__((packed));
103 /* Well known address */
104 #define PN_DEV_PC 0x10
106 static __inline__ __u16 pn_object(__u8 addr, __u16 port)
108 return (addr << 8) | (port & 0x3ff);
111 static __inline__ __u8 pn_obj(__u16 handle)
113 return handle & 0xff;
116 static __inline__ __u8 pn_dev(__u16 handle)
118 return handle >> 8;
121 static __inline__ __u16 pn_port(__u16 handle)
123 return handle & 0x3ff;
126 static __inline__ __u8 pn_addr(__u16 handle)
128 return (handle >> 8) & 0xfc;
131 static __inline__ void pn_sockaddr_set_addr(struct sockaddr_pn *spn, __u8 addr)
133 spn->spn_dev &= 0x03;
134 spn->spn_dev |= addr & 0xfc;
137 static __inline__ void pn_sockaddr_set_port(struct sockaddr_pn *spn, __u16 port)
139 spn->spn_dev &= 0xfc;
140 spn->spn_dev |= (port >> 8) & 0x03;
141 spn->spn_obj = port & 0xff;
144 static __inline__ void pn_sockaddr_set_object(struct sockaddr_pn *spn,
145 __u16 handle)
147 spn->spn_dev = pn_dev(handle);
148 spn->spn_obj = pn_obj(handle);
151 static __inline__ void pn_sockaddr_set_resource(struct sockaddr_pn *spn,
152 __u8 resource)
154 spn->spn_resource = resource;
157 static __inline__ __u8 pn_sockaddr_get_addr(const struct sockaddr_pn *spn)
159 return spn->spn_dev & 0xfc;
162 static __inline__ __u16 pn_sockaddr_get_port(const struct sockaddr_pn *spn)
164 return ((spn->spn_dev & 0x03) << 8) | spn->spn_obj;
167 static __inline__ __u16 pn_sockaddr_get_object(const struct sockaddr_pn *spn)
169 return pn_object(spn->spn_dev, spn->spn_obj);
172 static __inline__ __u8 pn_sockaddr_get_resource(const struct sockaddr_pn *spn)
174 return spn->spn_resource;
177 /* Phonet device ioctl requests */
179 #endif