ieee802154_netdev.h 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. /*
  2. * An interface between IEEE802.15.4 device and rest of the kernel.
  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. *
  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. * Alexander Smirnov <alex.bluesman.smirnov@gmail.com>
  25. */
  26. #ifndef IEEE802154_NETDEVICE_H
  27. #define IEEE802154_NETDEVICE_H
  28. #include <net/af_ieee802154.h>
  29. struct ieee802154_frag_info {
  30. __be16 d_tag;
  31. u16 d_size;
  32. u8 d_offset;
  33. };
  34. /*
  35. * A control block of skb passed between the ARPHRD_IEEE802154 device
  36. * and other stack parts.
  37. */
  38. struct ieee802154_mac_cb {
  39. u8 lqi;
  40. struct ieee802154_addr_sa sa;
  41. struct ieee802154_addr_sa da;
  42. u8 flags;
  43. u8 seq;
  44. struct ieee802154_frag_info frag_info;
  45. };
  46. static inline struct ieee802154_mac_cb *mac_cb(struct sk_buff *skb)
  47. {
  48. return (struct ieee802154_mac_cb *)skb->cb;
  49. }
  50. #define MAC_CB_FLAG_TYPEMASK ((1 << 3) - 1)
  51. #define MAC_CB_FLAG_ACKREQ (1 << 3)
  52. #define MAC_CB_FLAG_SECEN (1 << 4)
  53. #define MAC_CB_FLAG_INTRAPAN (1 << 5)
  54. static inline int mac_cb_is_ackreq(struct sk_buff *skb)
  55. {
  56. return mac_cb(skb)->flags & MAC_CB_FLAG_ACKREQ;
  57. }
  58. static inline int mac_cb_is_secen(struct sk_buff *skb)
  59. {
  60. return mac_cb(skb)->flags & MAC_CB_FLAG_SECEN;
  61. }
  62. static inline int mac_cb_is_intrapan(struct sk_buff *skb)
  63. {
  64. return mac_cb(skb)->flags & MAC_CB_FLAG_INTRAPAN;
  65. }
  66. static inline int mac_cb_type(struct sk_buff *skb)
  67. {
  68. return mac_cb(skb)->flags & MAC_CB_FLAG_TYPEMASK;
  69. }
  70. #define IEEE802154_MAC_SCAN_ED 0
  71. #define IEEE802154_MAC_SCAN_ACTIVE 1
  72. #define IEEE802154_MAC_SCAN_PASSIVE 2
  73. #define IEEE802154_MAC_SCAN_ORPHAN 3
  74. struct wpan_phy;
  75. /*
  76. * This should be located at net_device->ml_priv
  77. *
  78. * get_phy should increment the reference counting on returned phy.
  79. * Use wpan_wpy_put to put that reference.
  80. */
  81. struct ieee802154_mlme_ops {
  82. /* The following fields are optional (can be NULL). */
  83. int (*assoc_req)(struct net_device *dev,
  84. struct ieee802154_addr_sa *addr,
  85. u8 channel, u8 page, u8 cap);
  86. int (*assoc_resp)(struct net_device *dev,
  87. struct ieee802154_addr_sa *addr,
  88. u16 short_addr, u8 status);
  89. int (*disassoc_req)(struct net_device *dev,
  90. struct ieee802154_addr_sa *addr,
  91. u8 reason);
  92. int (*start_req)(struct net_device *dev,
  93. struct ieee802154_addr_sa *addr,
  94. u8 channel, u8 page, u8 bcn_ord, u8 sf_ord,
  95. u8 pan_coord, u8 blx, u8 coord_realign);
  96. int (*scan_req)(struct net_device *dev,
  97. u8 type, u32 channels, u8 page, u8 duration);
  98. /* The fields below are required. */
  99. struct wpan_phy *(*get_phy)(const struct net_device *dev);
  100. /*
  101. * FIXME: these should become the part of PIB/MIB interface.
  102. * However we still don't have IB interface of any kind
  103. */
  104. u16 (*get_pan_id)(const struct net_device *dev);
  105. u16 (*get_short_addr)(const struct net_device *dev);
  106. u8 (*get_dsn)(const struct net_device *dev);
  107. };
  108. /* The IEEE 802.15.4 standard defines 2 type of the devices:
  109. * - FFD - full functionality device
  110. * - RFD - reduce functionality device
  111. *
  112. * So 2 sets of mlme operations are needed
  113. */
  114. struct ieee802154_reduced_mlme_ops {
  115. struct wpan_phy *(*get_phy)(const struct net_device *dev);
  116. };
  117. static inline struct ieee802154_mlme_ops *
  118. ieee802154_mlme_ops(const struct net_device *dev)
  119. {
  120. return dev->ml_priv;
  121. }
  122. static inline struct ieee802154_reduced_mlme_ops *
  123. ieee802154_reduced_mlme_ops(const struct net_device *dev)
  124. {
  125. return dev->ml_priv;
  126. }
  127. #endif