2 * Copyright (C) 2007-2012 Siemens AG
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2
6 * as published by the Free Software Foundation.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
14 * Pavel Smolenskiy <pavel.smolenskiy@gmail.com>
15 * Maxim Gorbachyov <maxim.gorbachev@siemens.com>
16 * Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
17 * Alexander Smirnov <alex.bluesman.smirnov@gmail.com>
19 #ifndef __IEEE802154_I_H
20 #define __IEEE802154_I_H
22 #include <linux/interrupt.h>
23 #include <linux/mutex.h>
24 #include <linux/hrtimer.h>
25 #include <net/cfg802154.h>
26 #include <net/mac802154.h>
27 #include <net/nl802154.h>
28 #include <net/ieee802154_netdev.h>
32 /* mac802154 device private data */
33 struct ieee802154_local
{
34 struct ieee802154_hw hw
;
35 const struct ieee802154_ops
*ops
;
42 /* As in mac80211 slaves list is modified:
44 * 2) protected by slaves_mtx;
47 * So atomic readers can use any of this protection methods.
49 struct list_head interfaces
;
50 struct mutex iflist_mtx
;
52 /* This one is used for scanning and other jobs not to be interfered
55 struct workqueue_struct
*workqueue
;
57 struct hrtimer ifs_timer
;
62 struct tasklet_struct tasklet
;
63 struct sk_buff_head skb_queue
;
65 struct sk_buff
*tx_skb
;
66 struct work_struct tx_work
;
70 IEEE802154_RX_MSG
= 1,
73 enum ieee802154_sdata_state_bits
{
77 /* Slave interface definition.
79 * Slaves represent typical network interfaces available from userspace.
80 * Each ieee802154 device/transceiver may have several slaves and able
81 * to be associated with several networks at the same time.
83 struct ieee802154_sub_if_data
{
84 struct list_head list
; /* the ieee802154_priv->slaves list */
86 struct wpan_dev wpan_dev
;
88 struct ieee802154_local
*local
;
89 struct net_device
*dev
;
94 /* protects sec from concurrent access by netlink. access by
95 * encrypt/decrypt/header_create safe without additional protection.
99 struct mac802154_llsec sec
;
102 /* utility functions/constants */
103 extern const void *const mac802154_wpan_phy_privid
; /* for wpan_phy privid */
105 static inline struct ieee802154_local
*
106 hw_to_local(struct ieee802154_hw
*hw
)
108 return container_of(hw
, struct ieee802154_local
, hw
);
111 static inline struct ieee802154_sub_if_data
*
112 IEEE802154_DEV_TO_SUB_IF(const struct net_device
*dev
)
114 return netdev_priv(dev
);
117 static inline struct ieee802154_sub_if_data
*
118 IEEE802154_WPAN_DEV_TO_SUB_IF(struct wpan_dev
*wpan_dev
)
120 return container_of(wpan_dev
, struct ieee802154_sub_if_data
, wpan_dev
);
124 ieee802154_sdata_running(struct ieee802154_sub_if_data
*sdata
)
126 return test_bit(SDATA_STATE_RUNNING
, &sdata
->state
);
129 extern struct ieee802154_mlme_ops mac802154_mlme_wpan
;
131 void ieee802154_rx(struct ieee802154_local
*local
, struct sk_buff
*skb
);
132 void ieee802154_xmit_worker(struct work_struct
*work
);
134 ieee802154_monitor_start_xmit(struct sk_buff
*skb
, struct net_device
*dev
);
136 ieee802154_subif_start_xmit(struct sk_buff
*skb
, struct net_device
*dev
);
137 enum hrtimer_restart
ieee802154_xmit_ifs_timer(struct hrtimer
*timer
);
140 void mac802154_dev_set_page_channel(struct net_device
*dev
, u8 page
, u8 chan
);
142 int mac802154_get_params(struct net_device
*dev
,
143 struct ieee802154_llsec_params
*params
);
144 int mac802154_set_params(struct net_device
*dev
,
145 const struct ieee802154_llsec_params
*params
,
148 int mac802154_add_key(struct net_device
*dev
,
149 const struct ieee802154_llsec_key_id
*id
,
150 const struct ieee802154_llsec_key
*key
);
151 int mac802154_del_key(struct net_device
*dev
,
152 const struct ieee802154_llsec_key_id
*id
);
154 int mac802154_add_dev(struct net_device
*dev
,
155 const struct ieee802154_llsec_device
*llsec_dev
);
156 int mac802154_del_dev(struct net_device
*dev
, __le64 dev_addr
);
158 int mac802154_add_devkey(struct net_device
*dev
,
160 const struct ieee802154_llsec_device_key
*key
);
161 int mac802154_del_devkey(struct net_device
*dev
,
163 const struct ieee802154_llsec_device_key
*key
);
165 int mac802154_add_seclevel(struct net_device
*dev
,
166 const struct ieee802154_llsec_seclevel
*sl
);
167 int mac802154_del_seclevel(struct net_device
*dev
,
168 const struct ieee802154_llsec_seclevel
*sl
);
170 void mac802154_lock_table(struct net_device
*dev
);
171 void mac802154_get_table(struct net_device
*dev
,
172 struct ieee802154_llsec_table
**t
);
173 void mac802154_unlock_table(struct net_device
*dev
);
175 int mac802154_wpan_update_llsec(struct net_device
*dev
);
177 /* interface handling */
178 int ieee802154_iface_init(void);
179 void ieee802154_iface_exit(void);
180 void ieee802154_if_remove(struct ieee802154_sub_if_data
*sdata
);
182 ieee802154_if_add(struct ieee802154_local
*local
, const char *name
,
183 unsigned char name_assign_type
, enum nl802154_iftype type
,
184 __le64 extended_addr
);
185 void ieee802154_remove_interfaces(struct ieee802154_local
*local
);
186 void ieee802154_stop_device(struct ieee802154_local
*local
);
188 #endif /* __IEEE802154_I_H */