blob: e18e7fd43f47d996613b0c1e7dfe6bc0e636c476 [file] [log] [blame]
alex.bluesman.smirnov@gmail.com0afd7ad2012-05-15 20:50:19 +00001/*
2 * IEEE802.15.4-2003 specification
3 *
4 * Copyright (C) 2007-2012 Siemens AG
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 *
alex.bluesman.smirnov@gmail.com0afd7ad2012-05-15 20:50:19 +000015 */
16#ifndef NET_MAC802154_H
17#define NET_MAC802154_H
18
19#include <net/af_ieee802154.h>
Alexander Aring239a84a2014-11-05 20:51:23 +010020#include <linux/ieee802154.h>
Phoebe Buckheister94b4f6c2014-03-14 21:24:00 +010021#include <linux/skbuff.h>
Alexander Aringba5bf172015-02-11 14:39:16 +010022#include <linux/unaligned/memmove.h>
alex.bluesman.smirnov@gmail.com0afd7ad2012-05-15 20:50:19 +000023
Alexander Aring7fe9a382014-12-10 15:33:12 +010024#include <net/cfg802154.h>
25
alex.bluesman.smirnov@gmail.com32bad7e2012-06-25 23:24:48 +000026/* General MAC frame format:
27 * 2 bytes: Frame Control
28 * 1 byte: Sequence Number
29 * 20 bytes: Addressing fields
30 * 14 bytes: Auxiliary Security Header
31 */
32#define MAC802154_FRAME_HARD_HEADER_LEN (2 + 1 + 20 + 14)
33
alex.bluesman.smirnov@gmail.com0afd7ad2012-05-15 20:50:19 +000034/* The following flags are used to indicate changed address settings from
35 * the stack to the hardware.
36 */
37
38/* indicates that the Short Address changed */
Alexander Aring57205c12014-10-25 05:25:09 +020039#define IEEE802154_AFILT_SADDR_CHANGED 0x00000001
alex.bluesman.smirnov@gmail.com0afd7ad2012-05-15 20:50:19 +000040/* indicates that the IEEE Address changed */
Alexander Aring57205c12014-10-25 05:25:09 +020041#define IEEE802154_AFILT_IEEEADDR_CHANGED 0x00000002
alex.bluesman.smirnov@gmail.com0afd7ad2012-05-15 20:50:19 +000042/* indicates that the PAN ID changed */
Alexander Aring57205c12014-10-25 05:25:09 +020043#define IEEE802154_AFILT_PANID_CHANGED 0x00000004
alex.bluesman.smirnov@gmail.com0afd7ad2012-05-15 20:50:19 +000044/* indicates that PAN Coordinator status changed */
Alexander Aring57205c12014-10-25 05:25:09 +020045#define IEEE802154_AFILT_PANC_CHANGED 0x00000008
alex.bluesman.smirnov@gmail.com0afd7ad2012-05-15 20:50:19 +000046
47struct ieee802154_hw_addr_filt {
48 __le16 pan_id; /* Each independent PAN selects a unique
49 * identifier. This PAN id allows communication
50 * between devices within a network using short
51 * addresses and enables transmissions between
52 * devices across independent networks.
53 */
54 __le16 short_addr;
Phoebe Buckheisterb70ab2e2014-03-14 21:23:59 +010055 __le64 ieee_addr;
alex.bluesman.smirnov@gmail.com0afd7ad2012-05-15 20:50:19 +000056 u8 pan_coord;
57};
58
Alexander Aring7c118c12014-11-05 20:51:20 +010059struct ieee802154_vif {
60 int type;
61
62 /* must be last */
63 u8 drv_priv[0] __aligned(sizeof(void *));
64};
65
Alexander Aring5a504392014-10-25 17:16:34 +020066struct ieee802154_hw {
alex.bluesman.smirnov@gmail.com0afd7ad2012-05-15 20:50:19 +000067 /* filled by the driver */
68 int extra_tx_headroom;
69 u32 flags;
70 struct device *parent;
71
72 /* filled by mac802154 core */
73 struct ieee802154_hw_addr_filt hw_filt;
74 void *priv;
75 struct wpan_phy *phy;
Alexander Aring7c118c12014-11-05 20:51:20 +010076 size_t vif_data_size;
alex.bluesman.smirnov@gmail.com0afd7ad2012-05-15 20:50:19 +000077};
78
79/* Checksum is in hardware and is omitted from a packet
80 *
81 * These following flags are used to indicate hardware capabilities to
82 * the stack. Generally, flags here should have their meaning
83 * done in a way that the simplest hardware doesn't need setting
84 * any particular flags. There are some exceptions to this rule,
85 * however, so you are advised to review these flags carefully.
86 */
87
Alexander Aring90386a72014-10-29 21:34:34 +010088/* Indicates that xmitter will add FCS on it's own. */
89#define IEEE802154_HW_TX_OMIT_CKSUM 0x00000001
alex.bluesman.smirnov@gmail.com0afd7ad2012-05-15 20:50:19 +000090/* Indicates that receiver will autorespond with ACK frames. */
Alexander Aring90a61612014-10-29 21:34:29 +010091#define IEEE802154_HW_AACK 0x00000002
Alexander Aring640985e2014-07-03 00:20:43 +020092/* Indicates that transceiver will support transmit power setting. */
Alexander Aring90a61612014-10-29 21:34:29 +010093#define IEEE802154_HW_TXPOWER 0x00000004
Alexander Aring640985e2014-07-03 00:20:43 +020094/* Indicates that transceiver will support listen before transmit. */
Alexander Aring90a61612014-10-29 21:34:29 +010095#define IEEE802154_HW_LBT 0x00000008
Alexander Aring640985e2014-07-03 00:20:43 +020096/* Indicates that transceiver will support cca mode setting. */
Alexander Aring90a61612014-10-29 21:34:29 +010097#define IEEE802154_HW_CCA_MODE 0x00000010
Alexander Aring640985e2014-07-03 00:20:43 +020098/* Indicates that transceiver will support cca ed level setting. */
Alexander Aring90a61612014-10-29 21:34:29 +010099#define IEEE802154_HW_CCA_ED_LEVEL 0x00000020
Alexander Aring640985e2014-07-03 00:20:43 +0200100/* Indicates that transceiver will support csma (max_be, min_be, csma retries)
101 * settings. */
Alexander Aring90a61612014-10-29 21:34:29 +0100102#define IEEE802154_HW_CSMA_PARAMS 0x00000040
Alexander Aring640985e2014-07-03 00:20:43 +0200103/* Indicates that transceiver will support ARET frame retries setting. */
Alexander Aring90a61612014-10-29 21:34:29 +0100104#define IEEE802154_HW_FRAME_RETRIES 0x00000080
Alexander Aringc8fc84e2014-10-29 21:34:31 +0100105/* Indicates that transceiver will support hardware address filter setting. */
106#define IEEE802154_HW_AFILT 0x00000100
Alexander Aring94b79222014-10-29 21:34:32 +0100107/* Indicates that transceiver will support promiscuous mode setting. */
108#define IEEE802154_HW_PROMISCUOUS 0x00000200
Alexander Aring90386a72014-10-29 21:34:34 +0100109/* Indicates that receiver omits FCS. */
110#define IEEE802154_HW_RX_OMIT_CKSUM 0x00000400
Alexander Aringec718f32014-10-29 21:34:37 +0100111/* Indicates that receiver will not filter frames with bad checksum. */
112#define IEEE802154_HW_RX_DROP_BAD_CKSUM 0x00000800
Alexander Aring90386a72014-10-29 21:34:34 +0100113
114/* Indicates that receiver omits FCS and xmitter will add FCS on it's own. */
115#define IEEE802154_HW_OMIT_CKSUM (IEEE802154_HW_TX_OMIT_CKSUM | \
116 IEEE802154_HW_RX_OMIT_CKSUM)
Alexander Aring640985e2014-07-03 00:20:43 +0200117
118/* This groups the most common CSMA support fields into one. */
119#define IEEE802154_HW_CSMA (IEEE802154_HW_CCA_MODE | \
120 IEEE802154_HW_CCA_ED_LEVEL | \
Alexander Aringab79be32014-10-29 21:34:30 +0100121 IEEE802154_HW_CSMA_PARAMS)
122
123/* This groups the most common ARET support fields into one. */
124#define IEEE802154_HW_ARET (IEEE802154_HW_CSMA | \
Alexander Aring640985e2014-07-03 00:20:43 +0200125 IEEE802154_HW_FRAME_RETRIES)
alex.bluesman.smirnov@gmail.com0afd7ad2012-05-15 20:50:19 +0000126
127/* struct ieee802154_ops - callbacks from mac802154 to the driver
128 *
129 * This structure contains various callbacks that the driver may
130 * handle or, in some cases, must handle, for example to transmit
131 * a frame.
132 *
133 * start: Handler that 802.15.4 module calls for device initialization.
134 * This function is called before the first interface is attached.
135 *
136 * stop: Handler that 802.15.4 module calls for device cleanup.
137 * This function is called after the last interface is removed.
138 *
Alexander Aringed0a5dc2014-10-26 09:37:08 +0100139 * xmit_sync:
140 * Handler that 802.15.4 module calls for each transmitted frame.
141 * skb cntains the buffer starting from the IEEE 802.15.4 header.
142 * The low-level driver should send the frame based on available
143 * configuration. This is called by a workqueue and useful for
144 * synchronous 802.15.4 drivers.
145 * This function should return zero or negative errno.
146 *
Alexander Aring1e7283a2014-10-26 09:37:14 +0100147 * WARNING:
148 * This will be deprecated soon. We don't accept synced xmit callbacks
149 * drivers anymore.
150 *
Alexander Aringed0a5dc2014-10-26 09:37:08 +0100151 * xmit_async:
152 * Handler that 802.15.4 module calls for each transmitted frame.
alex.bluesman.smirnov@gmail.com0afd7ad2012-05-15 20:50:19 +0000153 * skb cntains the buffer starting from the IEEE 802.15.4 header.
154 * The low-level driver should send the frame based on available
155 * configuration.
Alexander Aringdc67c6b2014-10-26 09:37:04 +0100156 * This function should return zero or negative errno.
alex.bluesman.smirnov@gmail.com0afd7ad2012-05-15 20:50:19 +0000157 *
158 * ed: Handler that 802.15.4 module calls for Energy Detection.
159 * This function should place the value for detected energy
160 * (usually device-dependant) in the level pointer and return
161 * either zero or negative errno. Called with pib_lock held.
162 *
163 * set_channel:
164 * Set radio for listening on specific channel.
165 * Set the device for listening on specified channel.
166 * Returns either zero, or negative errno. Called with pib_lock held.
167 *
168 * set_hw_addr_filt:
169 * Set radio for listening on specific address.
170 * Set the device for listening on specified address.
171 * Returns either zero, or negative errno.
Phoebe Buckheister9b2777d2014-02-17 11:34:08 +0100172 *
173 * set_txpower:
174 * Set radio transmit power in dB. Called with pib_lock held.
175 * Returns either zero, or negative errno.
Phoebe Buckheister84dda3c2014-02-17 11:34:10 +0100176 *
177 * set_lbt
178 * Enables or disables listen before talk on the device. Called with
179 * pib_lock held.
180 * Returns either zero, or negative errno.
Phoebe Buckheisterba08fea2014-02-17 11:34:11 +0100181 *
182 * set_cca_mode
183 * Sets the CCA mode used by the device. Called with pib_lock held.
184 * Returns either zero, or negative errno.
Phoebe Buckheister6ca00192014-02-17 11:34:12 +0100185 *
186 * set_cca_ed_level
187 * Sets the CCA energy detection threshold in dBm. Called with pib_lock
188 * held.
189 * Returns either zero, or negative errno.
Phoebe Buckheister4244db12014-02-17 11:34:14 +0100190 *
191 * set_csma_params
192 * Sets the CSMA parameter set for the PHY. Called with pib_lock held.
193 * Returns either zero, or negative errno.
194 *
195 * set_frame_retries
196 * Sets the retransmission attempt limit. Called with pib_lock held.
197 * Returns either zero, or negative errno.
Alexander Aring94b79222014-10-29 21:34:32 +0100198 *
199 * set_promiscuous_mode
200 * Enables or disable promiscuous mode.
alex.bluesman.smirnov@gmail.com0afd7ad2012-05-15 20:50:19 +0000201 */
202struct ieee802154_ops {
203 struct module *owner;
Alexander Aring5a504392014-10-25 17:16:34 +0200204 int (*start)(struct ieee802154_hw *hw);
205 void (*stop)(struct ieee802154_hw *hw);
Alexander Aringed0a5dc2014-10-26 09:37:08 +0100206 int (*xmit_sync)(struct ieee802154_hw *hw,
207 struct sk_buff *skb);
208 int (*xmit_async)(struct ieee802154_hw *hw,
209 struct sk_buff *skb);
Alexander Aring5a504392014-10-25 17:16:34 +0200210 int (*ed)(struct ieee802154_hw *hw, u8 *level);
Alexander Aringe37d2ec2014-10-28 18:21:19 +0100211 int (*set_channel)(struct ieee802154_hw *hw, u8 page,
212 u8 channel);
Alexander Aring5a504392014-10-25 17:16:34 +0200213 int (*set_hw_addr_filt)(struct ieee802154_hw *hw,
214 struct ieee802154_hw_addr_filt *filt,
alex.bluesman.smirnov@gmail.com0afd7ad2012-05-15 20:50:19 +0000215 unsigned long changed);
Varka Bhadram23310f62015-04-09 13:55:11 +0530216 int (*set_txpower)(struct ieee802154_hw *hw, s8 dbm);
Alexander Aring5a504392014-10-25 17:16:34 +0200217 int (*set_lbt)(struct ieee802154_hw *hw, bool on);
Alexander Aring7fe9a382014-12-10 15:33:12 +0100218 int (*set_cca_mode)(struct ieee802154_hw *hw,
219 const struct wpan_phy_cca *cca);
Alexander Aring5a504392014-10-25 17:16:34 +0200220 int (*set_cca_ed_level)(struct ieee802154_hw *hw,
Phoebe Buckheister6ca00192014-02-17 11:34:12 +0100221 s32 level);
Alexander Aring5a504392014-10-25 17:16:34 +0200222 int (*set_csma_params)(struct ieee802154_hw *hw,
Phoebe Buckheister4244db12014-02-17 11:34:14 +0100223 u8 min_be, u8 max_be, u8 retries);
Alexander Aring5a504392014-10-25 17:16:34 +0200224 int (*set_frame_retries)(struct ieee802154_hw *hw,
Phoebe Buckheister4244db12014-02-17 11:34:14 +0100225 s8 retries);
Alexander Aring94b79222014-10-29 21:34:32 +0100226 int (*set_promiscuous_mode)(struct ieee802154_hw *hw,
227 const bool on);
alex.bluesman.smirnov@gmail.com0afd7ad2012-05-15 20:50:19 +0000228};
229
Alexander Aringab24f502014-11-02 04:18:40 +0100230/**
Alexander Aring705cbbb2014-11-05 20:51:24 +0100231 * ieee802154_be64_to_le64 - copies and convert be64 to le64
232 * @le64_dst: le64 destination pointer
233 * @be64_src: be64 source pointer
Alexander Aringab24f502014-11-02 04:18:40 +0100234 */
Alexander Aring705cbbb2014-11-05 20:51:24 +0100235static inline void ieee802154_be64_to_le64(void *le64_dst, const void *be64_src)
Alexander Aringab24f502014-11-02 04:18:40 +0100236{
Alexander Aringba5bf172015-02-11 14:39:16 +0100237 __put_unaligned_memmove64(swab64p(be64_src), le64_dst);
Alexander Aringab24f502014-11-02 04:18:40 +0100238}
239
Alexander Aring239a84a2014-11-05 20:51:23 +0100240/**
241 * ieee802154_le64_to_be64 - copies and convert le64 to be64
242 * @be64_dst: be64 destination pointer
243 * @le64_src: le64 source pointer
244 */
245static inline void ieee802154_le64_to_be64(void *be64_dst, const void *le64_src)
246{
Alexander Aringb9767962015-02-11 14:39:17 +0100247 __put_unaligned_memmove64(swab64p(le64_src), be64_dst);
Alexander Aring239a84a2014-11-05 20:51:23 +0100248}
249
Varka Bhadram94910d42015-04-09 12:05:43 +0530250/* Basic interface to register ieee802154 device */
Alexander Aring5a504392014-10-25 17:16:34 +0200251struct ieee802154_hw *
Alexander Aring16301862014-10-28 18:21:18 +0100252ieee802154_alloc_hw(size_t priv_data_len, const struct ieee802154_ops *ops);
Alexander Aring5a504392014-10-25 17:16:34 +0200253void ieee802154_free_hw(struct ieee802154_hw *hw);
254int ieee802154_register_hw(struct ieee802154_hw *hw);
255void ieee802154_unregister_hw(struct ieee802154_hw *hw);
alex.bluesman.smirnov@gmail.com1010f542012-05-15 20:50:20 +0000256
Alexander Aringc5c47e62014-10-27 17:13:30 +0100257void ieee802154_rx(struct ieee802154_hw *hw, struct sk_buff *skb);
Alexander Aring5a504392014-10-25 17:16:34 +0200258void ieee802154_rx_irqsafe(struct ieee802154_hw *hw, struct sk_buff *skb,
alex.bluesman.smirnov@gmail.com1cd829c2012-05-15 20:50:21 +0000259 u8 lqi);
260
Alexander Aringc2085102014-10-26 09:37:05 +0100261void ieee802154_wake_queue(struct ieee802154_hw *hw);
262void ieee802154_stop_queue(struct ieee802154_hw *hw);
Alexander Aring61f2dcb2014-11-12 19:51:56 +0100263void ieee802154_xmit_complete(struct ieee802154_hw *hw, struct sk_buff *skb,
264 bool ifs_handling);
Alexander Aringc2085102014-10-26 09:37:05 +0100265
alex.bluesman.smirnov@gmail.com0afd7ad2012-05-15 20:50:19 +0000266#endif /* NET_MAC802154_H */