blob: e05f66e2eda33f5399cccb6f31d0c8c72ecb824e [file] [log] [blame]
alex.bluesman.smirnov@gmail.com1010f542012-05-15 20:50:20 +00001/*
2 * Copyright (C) 2007-2012 Siemens AG
3 *
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.
7 *
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.
12 *
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
16 *
17 * Written by:
18 * Pavel Smolenskiy <pavel.smolenskiy@gmail.com>
19 * Maxim Gorbachyov <maxim.gorbachev@siemens.com>
20 * Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
21 * Alexander Smirnov <alex.bluesman.smirnov@gmail.com>
22 */
23#ifndef MAC802154_H
24#define MAC802154_H
25
Phoebe Buckheister5d637d52014-05-16 17:46:37 +020026#include <net/mac802154.h>
Phoebe Buckheistere462ded2014-03-31 21:37:46 +020027#include <net/ieee802154_netdev.h>
28
alex.bluesman.smirnov@gmail.com1010f542012-05-15 20:50:20 +000029/* mac802154 device private data */
30struct mac802154_priv {
31 struct ieee802154_dev hw;
32 struct ieee802154_ops *ops;
33
34 /* ieee802154 phy */
35 struct wpan_phy *phy;
36
37 int open_count;
38
39 /* As in mac80211 slaves list is modified:
40 * 1) under the RTNL
41 * 2) protected by slaves_mtx;
42 * 3) in an RCU manner
43 *
44 * So atomic readers can use any of this protection methods.
45 */
46 struct list_head slaves;
47 struct mutex slaves_mtx;
48
49 /* This one is used for scanning and other jobs not to be interfered
50 * with serial driver.
51 */
52 struct workqueue_struct *dev_workqueue;
53
54 /* SoftMAC device is registered and running. One can add subinterfaces.
55 * This flag should be modified under slaves_mtx and RTNL, so you can
56 * read them using any of protection methods.
57 */
58 bool running;
59};
60
61#define MAC802154_DEVICE_STOPPED 0x00
62#define MAC802154_DEVICE_RUN 0x01
63
alex.bluesman.smirnov@gmail.com4d23c9c2012-05-15 20:50:24 +000064/* Slave interface definition.
65 *
66 * Slaves represent typical network interfaces available from userspace.
67 * Each ieee802154 device/transceiver may have several slaves and able
68 * to be associated with several networks at the same time.
69 */
70struct mac802154_sub_if_data {
71 struct list_head list; /* the ieee802154_priv->slaves list */
72
73 struct mac802154_priv *hw;
74 struct net_device *dev;
75
76 int type;
Phoebe Buckheister336908f2014-03-31 21:37:45 +020077 bool running;
alex.bluesman.smirnov@gmail.com4d23c9c2012-05-15 20:50:24 +000078
79 spinlock_t mib_lock;
80
81 __le16 pan_id;
82 __le16 short_addr;
Phoebe Buckheisterb70ab2e2014-03-14 21:23:59 +010083 __le64 extended_addr;
alex.bluesman.smirnov@gmail.com4d23c9c2012-05-15 20:50:24 +000084
85 u8 chan;
86 u8 page;
87
Phoebe Buckheistere462ded2014-03-31 21:37:46 +020088 struct ieee802154_mac_params mac_params;
89
alex.bluesman.smirnov@gmail.com4d23c9c2012-05-15 20:50:24 +000090 /* MAC BSN field */
91 u8 bsn;
92 /* MAC DSN field */
93 u8 dsn;
94};
95
alex.bluesman.smirnov@gmail.com1010f542012-05-15 20:50:20 +000096#define mac802154_to_priv(_hw) container_of(_hw, struct mac802154_priv, hw)
97
Chen Gang2c1bbbf2013-04-25 00:49:55 +000098#define MAC802154_CHAN_NONE 0xff /* No channel is assigned */
alex.bluesman.smirnov@gmail.com06060692012-05-15 20:50:29 +000099
alex.bluesman.smirnov@gmail.com6e2128d2012-05-15 20:50:25 +0000100extern struct ieee802154_reduced_mlme_ops mac802154_mlme_reduced;
alex.bluesman.smirnov@gmail.com32bad7e2012-06-25 23:24:48 +0000101extern struct ieee802154_mlme_ops mac802154_mlme_wpan;
alex.bluesman.smirnov@gmail.com6e2128d2012-05-15 20:50:25 +0000102
alex.bluesman.smirnov@gmail.com62610ad2012-05-15 20:50:28 +0000103int mac802154_slave_open(struct net_device *dev);
104int mac802154_slave_close(struct net_device *dev);
105
alex.bluesman.smirnov@gmail.com06060692012-05-15 20:50:29 +0000106void mac802154_monitors_rx(struct mac802154_priv *priv, struct sk_buff *skb);
107void mac802154_monitor_setup(struct net_device *dev);
108
alex.bluesman.smirnov@gmail.com32bad7e2012-06-25 23:24:48 +0000109void mac802154_wpans_rx(struct mac802154_priv *priv, struct sk_buff *skb);
110void mac802154_wpan_setup(struct net_device *dev);
111
alex.bluesman.smirnov@gmail.com5b641eb2012-05-15 20:50:22 +0000112netdev_tx_t mac802154_tx(struct mac802154_priv *priv, struct sk_buff *skb,
113 u8 page, u8 chan);
114
alex.bluesman.smirnov@gmail.comef2486f2012-05-15 20:50:26 +0000115/* MIB callbacks */
Phoebe Buckheisterb70ab2e2014-03-14 21:23:59 +0100116void mac802154_dev_set_short_addr(struct net_device *dev, __le16 val);
117__le16 mac802154_dev_get_short_addr(const struct net_device *dev);
alex.bluesman.smirnov@gmail.comef2486f2012-05-15 20:50:26 +0000118void mac802154_dev_set_ieee_addr(struct net_device *dev);
Phoebe Buckheisterb70ab2e2014-03-14 21:23:59 +0100119__le16 mac802154_dev_get_pan_id(const struct net_device *dev);
120void mac802154_dev_set_pan_id(struct net_device *dev, __le16 val);
alex.bluesman.smirnov@gmail.com66b69d42012-06-25 23:24:51 +0000121void mac802154_dev_set_page_channel(struct net_device *dev, u8 page, u8 chan);
Tony Cheneau04835462013-03-25 17:59:29 +0000122u8 mac802154_dev_get_dsn(const struct net_device *dev);
alex.bluesman.smirnov@gmail.comef2486f2012-05-15 20:50:26 +0000123
Phoebe Buckheistere462ded2014-03-31 21:37:46 +0200124int mac802154_set_mac_params(struct net_device *dev,
125 const struct ieee802154_mac_params *params);
126void mac802154_get_mac_params(struct net_device *dev,
127 struct ieee802154_mac_params *params);
128
alex.bluesman.smirnov@gmail.com1010f542012-05-15 20:50:20 +0000129#endif /* MAC802154_H */