Sergey Lapin | 9ec7671 | 2009-06-08 12:18:48 +0000 | [diff] [blame] | 1 | /* |
| 2 | * An interface between IEEE802.15.4 device and rest of the kernel. |
| 3 | * |
[email protected] | 74a02fc | 2012-05-15 20:50:23 +0000 | [diff] [blame] | 4 | * Copyright (C) 2007-2012 Siemens AG |
Sergey Lapin | 9ec7671 | 2009-06-08 12:18:48 +0000 | [diff] [blame] | 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License version 2 |
| 8 | * as published by the Free Software Foundation. |
| 9 | * |
| 10 | * This program is distributed in the hope that it will be useful, |
| 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 13 | * GNU General Public License for more details. |
| 14 | * |
| 15 | * You should have received a copy of the GNU General Public License along |
| 16 | * with this program; if not, write to the Free Software Foundation, Inc., |
| 17 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
| 18 | * |
| 19 | * Written by: |
| 20 | * Pavel Smolenskiy <[email protected]> |
| 21 | * Maxim Gorbachyov <[email protected]> |
| 22 | * Maxim Osipov <[email protected]> |
| 23 | * Dmitry Eremin-Solenikov <[email protected]> |
[email protected] | 74a02fc | 2012-05-15 20:50:23 +0000 | [diff] [blame] | 24 | * Alexander Smirnov <[email protected]> |
Sergey Lapin | 9ec7671 | 2009-06-08 12:18:48 +0000 | [diff] [blame] | 25 | */ |
| 26 | |
| 27 | #ifndef IEEE802154_NETDEVICE_H |
| 28 | #define IEEE802154_NETDEVICE_H |
| 29 | |
[email protected] | 1cd829c | 2012-05-15 20:50:21 +0000 | [diff] [blame] | 30 | #include <net/af_ieee802154.h> |
| 31 | |
Alexander Aring | 89745c9 | 2014-02-28 07:32:43 +0100 | [diff] [blame] | 32 | struct ieee802154_frag_info { |
| 33 | __be16 d_tag; |
| 34 | u16 d_size; |
| 35 | u8 d_offset; |
| 36 | }; |
| 37 | |
Sergey Lapin | 9ec7671 | 2009-06-08 12:18:48 +0000 | [diff] [blame] | 38 | /* |
| 39 | * A control block of skb passed between the ARPHRD_IEEE802154 device |
| 40 | * and other stack parts. |
| 41 | */ |
| 42 | struct ieee802154_mac_cb { |
| 43 | u8 lqi; |
Phoebe Buckheister | 376b7bd | 2014-03-14 21:23:57 +0100 | [diff] [blame^] | 44 | struct ieee802154_addr_sa sa; |
| 45 | struct ieee802154_addr_sa da; |
Sergey Lapin | 9ec7671 | 2009-06-08 12:18:48 +0000 | [diff] [blame] | 46 | u8 flags; |
| 47 | u8 seq; |
Alexander Aring | 89745c9 | 2014-02-28 07:32:43 +0100 | [diff] [blame] | 48 | struct ieee802154_frag_info frag_info; |
Sergey Lapin | 9ec7671 | 2009-06-08 12:18:48 +0000 | [diff] [blame] | 49 | }; |
| 50 | |
| 51 | static inline struct ieee802154_mac_cb *mac_cb(struct sk_buff *skb) |
| 52 | { |
| 53 | return (struct ieee802154_mac_cb *)skb->cb; |
| 54 | } |
| 55 | |
| 56 | #define MAC_CB_FLAG_TYPEMASK ((1 << 3) - 1) |
| 57 | |
| 58 | #define MAC_CB_FLAG_ACKREQ (1 << 3) |
| 59 | #define MAC_CB_FLAG_SECEN (1 << 4) |
| 60 | #define MAC_CB_FLAG_INTRAPAN (1 << 5) |
| 61 | |
| 62 | static inline int mac_cb_is_ackreq(struct sk_buff *skb) |
| 63 | { |
| 64 | return mac_cb(skb)->flags & MAC_CB_FLAG_ACKREQ; |
| 65 | } |
| 66 | |
| 67 | static inline int mac_cb_is_secen(struct sk_buff *skb) |
| 68 | { |
| 69 | return mac_cb(skb)->flags & MAC_CB_FLAG_SECEN; |
| 70 | } |
| 71 | |
| 72 | static inline int mac_cb_is_intrapan(struct sk_buff *skb) |
| 73 | { |
| 74 | return mac_cb(skb)->flags & MAC_CB_FLAG_INTRAPAN; |
| 75 | } |
| 76 | |
| 77 | static inline int mac_cb_type(struct sk_buff *skb) |
| 78 | { |
| 79 | return mac_cb(skb)->flags & MAC_CB_FLAG_TYPEMASK; |
| 80 | } |
| 81 | |
| 82 | #define IEEE802154_MAC_SCAN_ED 0 |
| 83 | #define IEEE802154_MAC_SCAN_ACTIVE 1 |
| 84 | #define IEEE802154_MAC_SCAN_PASSIVE 2 |
| 85 | #define IEEE802154_MAC_SCAN_ORPHAN 3 |
| 86 | |
Dmitry Eremin-Solenikov | 4272344 | 2009-11-04 17:53:23 +0300 | [diff] [blame] | 87 | struct wpan_phy; |
Sergey Lapin | 9ec7671 | 2009-06-08 12:18:48 +0000 | [diff] [blame] | 88 | /* |
| 89 | * This should be located at net_device->ml_priv |
Dmitry Eremin-Solenikov | 4272344 | 2009-11-04 17:53:23 +0300 | [diff] [blame] | 90 | * |
| 91 | * get_phy should increment the reference counting on returned phy. |
| 92 | * Use wpan_wpy_put to put that reference. |
Sergey Lapin | 9ec7671 | 2009-06-08 12:18:48 +0000 | [diff] [blame] | 93 | */ |
| 94 | struct ieee802154_mlme_ops { |
Werner Almesberger | 56aa091 | 2013-04-04 06:32:35 +0000 | [diff] [blame] | 95 | /* The following fields are optional (can be NULL). */ |
| 96 | |
Sergey Lapin | 9ec7671 | 2009-06-08 12:18:48 +0000 | [diff] [blame] | 97 | int (*assoc_req)(struct net_device *dev, |
Phoebe Buckheister | 376b7bd | 2014-03-14 21:23:57 +0100 | [diff] [blame^] | 98 | struct ieee802154_addr_sa *addr, |
Dmitry Eremin-Solenikov | 16eea49 | 2009-08-19 19:32:24 +0400 | [diff] [blame] | 99 | u8 channel, u8 page, u8 cap); |
Sergey Lapin | 9ec7671 | 2009-06-08 12:18:48 +0000 | [diff] [blame] | 100 | int (*assoc_resp)(struct net_device *dev, |
Phoebe Buckheister | 376b7bd | 2014-03-14 21:23:57 +0100 | [diff] [blame^] | 101 | struct ieee802154_addr_sa *addr, |
Sergey Lapin | 9ec7671 | 2009-06-08 12:18:48 +0000 | [diff] [blame] | 102 | u16 short_addr, u8 status); |
| 103 | int (*disassoc_req)(struct net_device *dev, |
Phoebe Buckheister | 376b7bd | 2014-03-14 21:23:57 +0100 | [diff] [blame^] | 104 | struct ieee802154_addr_sa *addr, |
Sergey Lapin | 9ec7671 | 2009-06-08 12:18:48 +0000 | [diff] [blame] | 105 | u8 reason); |
| 106 | int (*start_req)(struct net_device *dev, |
Phoebe Buckheister | 376b7bd | 2014-03-14 21:23:57 +0100 | [diff] [blame^] | 107 | struct ieee802154_addr_sa *addr, |
Dmitry Eremin-Solenikov | 16eea49 | 2009-08-19 19:32:24 +0400 | [diff] [blame] | 108 | u8 channel, u8 page, u8 bcn_ord, u8 sf_ord, |
Sergey Lapin | 9ec7671 | 2009-06-08 12:18:48 +0000 | [diff] [blame] | 109 | u8 pan_coord, u8 blx, u8 coord_realign); |
| 110 | int (*scan_req)(struct net_device *dev, |
Dmitry Eremin-Solenikov | 16eea49 | 2009-08-19 19:32:24 +0400 | [diff] [blame] | 111 | u8 type, u32 channels, u8 page, u8 duration); |
Sergey Lapin | 9ec7671 | 2009-06-08 12:18:48 +0000 | [diff] [blame] | 112 | |
Werner Almesberger | 56aa091 | 2013-04-04 06:32:35 +0000 | [diff] [blame] | 113 | /* The fields below are required. */ |
| 114 | |
Dmitry Eremin-Solenikov | 4272344 | 2009-11-04 17:53:23 +0300 | [diff] [blame] | 115 | struct wpan_phy *(*get_phy)(const struct net_device *dev); |
| 116 | |
Sergey Lapin | 9ec7671 | 2009-06-08 12:18:48 +0000 | [diff] [blame] | 117 | /* |
| 118 | * FIXME: these should become the part of PIB/MIB interface. |
| 119 | * However we still don't have IB interface of any kind |
| 120 | */ |
Dmitry Eremin-Solenikov | a9966b5 | 2009-10-02 19:05:00 +0400 | [diff] [blame] | 121 | u16 (*get_pan_id)(const struct net_device *dev); |
| 122 | u16 (*get_short_addr)(const struct net_device *dev); |
| 123 | u8 (*get_dsn)(const struct net_device *dev); |
Sergey Lapin | 9ec7671 | 2009-06-08 12:18:48 +0000 | [diff] [blame] | 124 | }; |
| 125 | |
[email protected] | 74a02fc | 2012-05-15 20:50:23 +0000 | [diff] [blame] | 126 | /* The IEEE 802.15.4 standard defines 2 type of the devices: |
| 127 | * - FFD - full functionality device |
| 128 | * - RFD - reduce functionality device |
| 129 | * |
| 130 | * So 2 sets of mlme operations are needed |
| 131 | */ |
| 132 | struct ieee802154_reduced_mlme_ops { |
| 133 | struct wpan_phy *(*get_phy)(const struct net_device *dev); |
| 134 | }; |
| 135 | |
| 136 | static inline struct ieee802154_mlme_ops * |
| 137 | ieee802154_mlme_ops(const struct net_device *dev) |
| 138 | { |
| 139 | return dev->ml_priv; |
| 140 | } |
| 141 | |
| 142 | static inline struct ieee802154_reduced_mlme_ops * |
| 143 | ieee802154_reduced_mlme_ops(const struct net_device *dev) |
Sergey Lapin | 9ec7671 | 2009-06-08 12:18:48 +0000 | [diff] [blame] | 144 | { |
| 145 | return dev->ml_priv; |
| 146 | } |
| 147 | |
| 148 | #endif |