ieee802154_netdev.h 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. /*
  2. * An interface between IEEE802.15.4 device and rest of the kernel.
  3. *
  4. * Copyright (C) 2007, 2008, 2009 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. *
  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 <pavel.smolenskiy@gmail.com>
  21. * Maxim Gorbachyov <maxim.gorbachev@siemens.com>
  22. * Maxim Osipov <maxim.osipov@siemens.com>
  23. * Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
  24. */
  25. #ifndef IEEE802154_NETDEVICE_H
  26. #define IEEE802154_NETDEVICE_H
  27. #include <net/af_ieee802154.h>
  28. /*
  29. * A control block of skb passed between the ARPHRD_IEEE802154 device
  30. * and other stack parts.
  31. */
  32. struct ieee802154_mac_cb {
  33. u8 lqi;
  34. struct ieee802154_addr sa;
  35. struct ieee802154_addr da;
  36. u8 flags;
  37. u8 seq;
  38. };
  39. static inline struct ieee802154_mac_cb *mac_cb(struct sk_buff *skb)
  40. {
  41. return (struct ieee802154_mac_cb *)skb->cb;
  42. }
  43. #define MAC_CB_FLAG_TYPEMASK ((1 << 3) - 1)
  44. #define MAC_CB_FLAG_ACKREQ (1 << 3)
  45. #define MAC_CB_FLAG_SECEN (1 << 4)
  46. #define MAC_CB_FLAG_INTRAPAN (1 << 5)
  47. static inline int mac_cb_is_ackreq(struct sk_buff *skb)
  48. {
  49. return mac_cb(skb)->flags & MAC_CB_FLAG_ACKREQ;
  50. }
  51. static inline int mac_cb_is_secen(struct sk_buff *skb)
  52. {
  53. return mac_cb(skb)->flags & MAC_CB_FLAG_SECEN;
  54. }
  55. static inline int mac_cb_is_intrapan(struct sk_buff *skb)
  56. {
  57. return mac_cb(skb)->flags & MAC_CB_FLAG_INTRAPAN;
  58. }
  59. static inline int mac_cb_type(struct sk_buff *skb)
  60. {
  61. return mac_cb(skb)->flags & MAC_CB_FLAG_TYPEMASK;
  62. }
  63. #define IEEE802154_MAC_SCAN_ED 0
  64. #define IEEE802154_MAC_SCAN_ACTIVE 1
  65. #define IEEE802154_MAC_SCAN_PASSIVE 2
  66. #define IEEE802154_MAC_SCAN_ORPHAN 3
  67. struct wpan_phy;
  68. /*
  69. * This should be located at net_device->ml_priv
  70. *
  71. * get_phy should increment the reference counting on returned phy.
  72. * Use wpan_wpy_put to put that reference.
  73. */
  74. struct ieee802154_mlme_ops {
  75. int (*assoc_req)(struct net_device *dev,
  76. struct ieee802154_addr *addr,
  77. u8 channel, u8 page, u8 cap);
  78. int (*assoc_resp)(struct net_device *dev,
  79. struct ieee802154_addr *addr,
  80. u16 short_addr, u8 status);
  81. int (*disassoc_req)(struct net_device *dev,
  82. struct ieee802154_addr *addr,
  83. u8 reason);
  84. int (*start_req)(struct net_device *dev,
  85. struct ieee802154_addr *addr,
  86. u8 channel, u8 page, u8 bcn_ord, u8 sf_ord,
  87. u8 pan_coord, u8 blx, u8 coord_realign);
  88. int (*scan_req)(struct net_device *dev,
  89. u8 type, u32 channels, u8 page, u8 duration);
  90. struct wpan_phy *(*get_phy)(const struct net_device *dev);
  91. /*
  92. * FIXME: these should become the part of PIB/MIB interface.
  93. * However we still don't have IB interface of any kind
  94. */
  95. u16 (*get_pan_id)(const struct net_device *dev);
  96. u16 (*get_short_addr)(const struct net_device *dev);
  97. u8 (*get_dsn)(const struct net_device *dev);
  98. u8 (*get_bsn)(const struct net_device *dev);
  99. };
  100. static inline struct ieee802154_mlme_ops *ieee802154_mlme_ops(
  101. const struct net_device *dev)
  102. {
  103. return dev->ml_priv;
  104. }
  105. #endif