2009-06-08 20:18:48 +08:00
|
|
|
/*
|
|
|
|
* An interface between IEEE802.15.4 device and rest of the kernel.
|
|
|
|
*
|
2012-05-16 04:50:23 +08:00
|
|
|
* Copyright (C) 2007-2012 Siemens AG
|
2009-06-08 20:18:48 +08:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*
|
|
|
|
* Written by:
|
|
|
|
* Pavel Smolenskiy <pavel.smolenskiy@gmail.com>
|
|
|
|
* Maxim Gorbachyov <maxim.gorbachev@siemens.com>
|
|
|
|
* Maxim Osipov <maxim.osipov@siemens.com>
|
|
|
|
* Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
|
2012-05-16 04:50:23 +08:00
|
|
|
* Alexander Smirnov <alex.bluesman.smirnov@gmail.com>
|
2009-06-08 20:18:48 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef IEEE802154_NETDEVICE_H
|
|
|
|
#define IEEE802154_NETDEVICE_H
|
|
|
|
|
2012-05-16 04:50:21 +08:00
|
|
|
#include <net/af_ieee802154.h>
|
|
|
|
|
2014-03-15 04:23:58 +08:00
|
|
|
struct ieee802154_addr {
|
|
|
|
u8 mode;
|
|
|
|
__le16 pan_id;
|
|
|
|
union {
|
|
|
|
__le16 short_addr;
|
|
|
|
__le64 extended_addr;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
static inline bool ieee802154_addr_equal(const struct ieee802154_addr *a1,
|
|
|
|
const struct ieee802154_addr *a2)
|
|
|
|
{
|
|
|
|
if (a1->pan_id != a2->pan_id || a1->mode != a2->mode)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if ((a1->mode == IEEE802154_ADDR_LONG &&
|
|
|
|
a1->extended_addr != a2->extended_addr) ||
|
|
|
|
(a1->mode == IEEE802154_ADDR_SHORT &&
|
|
|
|
a1->short_addr != a2->short_addr))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline __le64 ieee802154_devaddr_from_raw(const void *raw)
|
|
|
|
{
|
|
|
|
u64 temp;
|
|
|
|
|
|
|
|
memcpy(&temp, raw, IEEE802154_ADDR_LEN);
|
|
|
|
return (__force __le64)swab64(temp);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void ieee802154_devaddr_to_raw(void *raw, __le64 addr)
|
|
|
|
{
|
|
|
|
u64 temp = swab64((__force u64)addr);
|
|
|
|
|
|
|
|
memcpy(raw, &temp, IEEE802154_ADDR_LEN);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void ieee802154_addr_from_sa(struct ieee802154_addr *a,
|
|
|
|
const struct ieee802154_addr_sa *sa)
|
|
|
|
{
|
|
|
|
a->mode = sa->addr_type;
|
|
|
|
a->pan_id = cpu_to_le16(sa->pan_id);
|
|
|
|
|
|
|
|
switch (a->mode) {
|
|
|
|
case IEEE802154_ADDR_SHORT:
|
|
|
|
a->short_addr = cpu_to_le16(sa->short_addr);
|
|
|
|
break;
|
|
|
|
case IEEE802154_ADDR_LONG:
|
|
|
|
a->extended_addr = ieee802154_devaddr_from_raw(sa->hwaddr);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void ieee802154_addr_to_sa(struct ieee802154_addr_sa *sa,
|
|
|
|
const struct ieee802154_addr *a)
|
|
|
|
{
|
|
|
|
sa->addr_type = a->mode;
|
|
|
|
sa->pan_id = le16_to_cpu(a->pan_id);
|
|
|
|
|
|
|
|
switch (a->mode) {
|
|
|
|
case IEEE802154_ADDR_SHORT:
|
|
|
|
sa->short_addr = le16_to_cpu(a->short_addr);
|
|
|
|
break;
|
|
|
|
case IEEE802154_ADDR_LONG:
|
|
|
|
ieee802154_devaddr_to_raw(sa->hwaddr, a->extended_addr);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-02-28 14:32:43 +08:00
|
|
|
struct ieee802154_frag_info {
|
|
|
|
__be16 d_tag;
|
|
|
|
u16 d_size;
|
|
|
|
u8 d_offset;
|
|
|
|
};
|
|
|
|
|
2009-06-08 20:18:48 +08:00
|
|
|
/*
|
|
|
|
* A control block of skb passed between the ARPHRD_IEEE802154 device
|
|
|
|
* and other stack parts.
|
|
|
|
*/
|
|
|
|
struct ieee802154_mac_cb {
|
|
|
|
u8 lqi;
|
2014-03-15 04:23:57 +08:00
|
|
|
struct ieee802154_addr_sa sa;
|
|
|
|
struct ieee802154_addr_sa da;
|
2009-06-08 20:18:48 +08:00
|
|
|
u8 flags;
|
|
|
|
u8 seq;
|
2014-02-28 14:32:43 +08:00
|
|
|
struct ieee802154_frag_info frag_info;
|
2009-06-08 20:18:48 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
static inline struct ieee802154_mac_cb *mac_cb(struct sk_buff *skb)
|
|
|
|
{
|
|
|
|
return (struct ieee802154_mac_cb *)skb->cb;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define MAC_CB_FLAG_TYPEMASK ((1 << 3) - 1)
|
|
|
|
|
|
|
|
#define MAC_CB_FLAG_ACKREQ (1 << 3)
|
|
|
|
#define MAC_CB_FLAG_SECEN (1 << 4)
|
|
|
|
#define MAC_CB_FLAG_INTRAPAN (1 << 5)
|
|
|
|
|
|
|
|
static inline int mac_cb_is_ackreq(struct sk_buff *skb)
|
|
|
|
{
|
|
|
|
return mac_cb(skb)->flags & MAC_CB_FLAG_ACKREQ;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int mac_cb_is_secen(struct sk_buff *skb)
|
|
|
|
{
|
|
|
|
return mac_cb(skb)->flags & MAC_CB_FLAG_SECEN;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int mac_cb_is_intrapan(struct sk_buff *skb)
|
|
|
|
{
|
|
|
|
return mac_cb(skb)->flags & MAC_CB_FLAG_INTRAPAN;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int mac_cb_type(struct sk_buff *skb)
|
|
|
|
{
|
|
|
|
return mac_cb(skb)->flags & MAC_CB_FLAG_TYPEMASK;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define IEEE802154_MAC_SCAN_ED 0
|
|
|
|
#define IEEE802154_MAC_SCAN_ACTIVE 1
|
|
|
|
#define IEEE802154_MAC_SCAN_PASSIVE 2
|
|
|
|
#define IEEE802154_MAC_SCAN_ORPHAN 3
|
|
|
|
|
2009-11-04 22:53:23 +08:00
|
|
|
struct wpan_phy;
|
2009-06-08 20:18:48 +08:00
|
|
|
/*
|
|
|
|
* This should be located at net_device->ml_priv
|
2009-11-04 22:53:23 +08:00
|
|
|
*
|
|
|
|
* get_phy should increment the reference counting on returned phy.
|
|
|
|
* Use wpan_wpy_put to put that reference.
|
2009-06-08 20:18:48 +08:00
|
|
|
*/
|
|
|
|
struct ieee802154_mlme_ops {
|
2013-04-04 14:32:35 +08:00
|
|
|
/* The following fields are optional (can be NULL). */
|
|
|
|
|
2009-06-08 20:18:48 +08:00
|
|
|
int (*assoc_req)(struct net_device *dev,
|
2014-03-15 04:23:57 +08:00
|
|
|
struct ieee802154_addr_sa *addr,
|
2009-08-19 23:32:24 +08:00
|
|
|
u8 channel, u8 page, u8 cap);
|
2009-06-08 20:18:48 +08:00
|
|
|
int (*assoc_resp)(struct net_device *dev,
|
2014-03-15 04:23:57 +08:00
|
|
|
struct ieee802154_addr_sa *addr,
|
2009-06-08 20:18:48 +08:00
|
|
|
u16 short_addr, u8 status);
|
|
|
|
int (*disassoc_req)(struct net_device *dev,
|
2014-03-15 04:23:57 +08:00
|
|
|
struct ieee802154_addr_sa *addr,
|
2009-06-08 20:18:48 +08:00
|
|
|
u8 reason);
|
|
|
|
int (*start_req)(struct net_device *dev,
|
2014-03-15 04:23:57 +08:00
|
|
|
struct ieee802154_addr_sa *addr,
|
2009-08-19 23:32:24 +08:00
|
|
|
u8 channel, u8 page, u8 bcn_ord, u8 sf_ord,
|
2009-06-08 20:18:48 +08:00
|
|
|
u8 pan_coord, u8 blx, u8 coord_realign);
|
|
|
|
int (*scan_req)(struct net_device *dev,
|
2009-08-19 23:32:24 +08:00
|
|
|
u8 type, u32 channels, u8 page, u8 duration);
|
2009-06-08 20:18:48 +08:00
|
|
|
|
2013-04-04 14:32:35 +08:00
|
|
|
/* The fields below are required. */
|
|
|
|
|
2009-11-04 22:53:23 +08:00
|
|
|
struct wpan_phy *(*get_phy)(const struct net_device *dev);
|
|
|
|
|
2009-06-08 20:18:48 +08:00
|
|
|
/*
|
|
|
|
* FIXME: these should become the part of PIB/MIB interface.
|
|
|
|
* However we still don't have IB interface of any kind
|
|
|
|
*/
|
2009-10-02 23:05:00 +08:00
|
|
|
u16 (*get_pan_id)(const struct net_device *dev);
|
|
|
|
u16 (*get_short_addr)(const struct net_device *dev);
|
|
|
|
u8 (*get_dsn)(const struct net_device *dev);
|
2009-06-08 20:18:48 +08:00
|
|
|
};
|
|
|
|
|
2012-05-16 04:50:23 +08:00
|
|
|
/* The IEEE 802.15.4 standard defines 2 type of the devices:
|
|
|
|
* - FFD - full functionality device
|
|
|
|
* - RFD - reduce functionality device
|
|
|
|
*
|
|
|
|
* So 2 sets of mlme operations are needed
|
|
|
|
*/
|
|
|
|
struct ieee802154_reduced_mlme_ops {
|
|
|
|
struct wpan_phy *(*get_phy)(const struct net_device *dev);
|
|
|
|
};
|
|
|
|
|
|
|
|
static inline struct ieee802154_mlme_ops *
|
|
|
|
ieee802154_mlme_ops(const struct net_device *dev)
|
2009-06-08 20:18:48 +08:00
|
|
|
{
|
|
|
|
return dev->ml_priv;
|
|
|
|
}
|
|
|
|
|
2012-05-16 04:50:23 +08:00
|
|
|
static inline struct ieee802154_reduced_mlme_ops *
|
|
|
|
ieee802154_reduced_mlme_ops(const struct net_device *dev)
|
|
|
|
{
|
|
|
|
return dev->ml_priv;
|
|
|
|
}
|
2009-06-08 20:18:48 +08:00
|
|
|
|
2012-05-16 04:50:23 +08:00
|
|
|
#endif
|