1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * Copyright (C) 2007-2012 Siemens AG
11 #ifndef __IEEE802154_I_H
12 #define __IEEE802154_I_H
14 #include <linux/interrupt.h>
15 #include <linux/mutex.h>
16 #include <linux/hrtimer.h>
17 #include <net/cfg802154.h>
18 #include <net/mac802154.h>
19 #include <net/nl802154.h>
20 #include <net/ieee802154_netdev.h>
24 /* mac802154 device private data */
25 struct ieee802154_local {
26 struct ieee802154_hw hw;
27 const struct ieee802154_ops *ops;
34 /* As in mac80211 slaves list is modified:
36 * 2) protected by slaves_mtx;
39 * So atomic readers can use any of this protection methods.
41 struct list_head interfaces;
42 struct mutex iflist_mtx;
44 /* This one is used for scanning and other jobs not to be interfered
47 struct workqueue_struct *workqueue;
49 struct hrtimer ifs_timer;
54 struct tasklet_struct tasklet;
55 struct sk_buff_head skb_queue;
57 struct sk_buff *tx_skb;
58 struct work_struct tx_work;
59 /* A negative Linux error code or a null/positive MLME error status */
64 IEEE802154_RX_MSG = 1,
67 enum ieee802154_sdata_state_bits {
71 /* Slave interface definition.
73 * Slaves represent typical network interfaces available from userspace.
74 * Each ieee802154 device/transceiver may have several slaves and able
75 * to be associated with several networks at the same time.
77 struct ieee802154_sub_if_data {
78 struct list_head list; /* the ieee802154_priv->slaves list */
80 struct wpan_dev wpan_dev;
82 struct ieee802154_local *local;
83 struct net_device *dev;
88 /* protects sec from concurrent access by netlink. access by
89 * encrypt/decrypt/header_create safe without additional protection.
93 struct mac802154_llsec sec;
96 /* utility functions/constants */
97 extern const void *const mac802154_wpan_phy_privid; /* for wpan_phy privid */
99 static inline struct ieee802154_local *
100 hw_to_local(struct ieee802154_hw *hw)
102 return container_of(hw, struct ieee802154_local, hw);
105 static inline struct ieee802154_sub_if_data *
106 IEEE802154_DEV_TO_SUB_IF(const struct net_device *dev)
108 return netdev_priv(dev);
111 static inline struct ieee802154_sub_if_data *
112 IEEE802154_WPAN_DEV_TO_SUB_IF(struct wpan_dev *wpan_dev)
114 return container_of(wpan_dev, struct ieee802154_sub_if_data, wpan_dev);
118 ieee802154_sdata_running(struct ieee802154_sub_if_data *sdata)
120 return test_bit(SDATA_STATE_RUNNING, &sdata->state);
123 extern struct ieee802154_mlme_ops mac802154_mlme_wpan;
125 void ieee802154_rx(struct ieee802154_local *local, struct sk_buff *skb);
126 void ieee802154_xmit_worker(struct work_struct *work);
128 ieee802154_monitor_start_xmit(struct sk_buff *skb, struct net_device *dev);
130 ieee802154_subif_start_xmit(struct sk_buff *skb, struct net_device *dev);
131 enum hrtimer_restart ieee802154_xmit_ifs_timer(struct hrtimer *timer);
134 void mac802154_dev_set_page_channel(struct net_device *dev, u8 page, u8 chan);
136 int mac802154_get_params(struct net_device *dev,
137 struct ieee802154_llsec_params *params);
138 int mac802154_set_params(struct net_device *dev,
139 const struct ieee802154_llsec_params *params,
142 int mac802154_add_key(struct net_device *dev,
143 const struct ieee802154_llsec_key_id *id,
144 const struct ieee802154_llsec_key *key);
145 int mac802154_del_key(struct net_device *dev,
146 const struct ieee802154_llsec_key_id *id);
148 int mac802154_add_dev(struct net_device *dev,
149 const struct ieee802154_llsec_device *llsec_dev);
150 int mac802154_del_dev(struct net_device *dev, __le64 dev_addr);
152 int mac802154_add_devkey(struct net_device *dev,
154 const struct ieee802154_llsec_device_key *key);
155 int mac802154_del_devkey(struct net_device *dev,
157 const struct ieee802154_llsec_device_key *key);
159 int mac802154_add_seclevel(struct net_device *dev,
160 const struct ieee802154_llsec_seclevel *sl);
161 int mac802154_del_seclevel(struct net_device *dev,
162 const struct ieee802154_llsec_seclevel *sl);
164 void mac802154_lock_table(struct net_device *dev);
165 void mac802154_get_table(struct net_device *dev,
166 struct ieee802154_llsec_table **t);
167 void mac802154_unlock_table(struct net_device *dev);
169 int mac802154_wpan_update_llsec(struct net_device *dev);
171 /* interface handling */
172 int ieee802154_iface_init(void);
173 void ieee802154_iface_exit(void);
174 void ieee802154_if_remove(struct ieee802154_sub_if_data *sdata);
176 ieee802154_if_add(struct ieee802154_local *local, const char *name,
177 unsigned char name_assign_type, enum nl802154_iftype type,
178 __le64 extended_addr);
179 void ieee802154_remove_interfaces(struct ieee802154_local *local);
180 void ieee802154_stop_device(struct ieee802154_local *local);
182 #endif /* __IEEE802154_I_H */