Sergey Lapin | 2c21d11 | 2009-06-08 12:18:49 +0000 | [diff] [blame] | 1 | /* |
| 2 | * nl802154.h |
| 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 | */ |
| 20 | |
| 21 | #ifndef NL802154_H |
| 22 | #define NL802154_H |
| 23 | |
| 24 | #define IEEE802154_NL_NAME "802.15.4 MAC" |
| 25 | #define IEEE802154_MCAST_COORD_NAME "coordinator" |
| 26 | #define IEEE802154_MCAST_BEACON_NAME "beacon" |
| 27 | |
| 28 | enum { |
| 29 | __IEEE802154_ATTR_INVALID, |
| 30 | |
| 31 | IEEE802154_ATTR_DEV_NAME, |
| 32 | IEEE802154_ATTR_DEV_INDEX, |
| 33 | |
| 34 | IEEE802154_ATTR_STATUS, |
| 35 | |
| 36 | IEEE802154_ATTR_SHORT_ADDR, |
| 37 | IEEE802154_ATTR_HW_ADDR, |
| 38 | IEEE802154_ATTR_PAN_ID, |
| 39 | |
| 40 | IEEE802154_ATTR_CHANNEL, |
| 41 | |
| 42 | IEEE802154_ATTR_COORD_SHORT_ADDR, |
| 43 | IEEE802154_ATTR_COORD_HW_ADDR, |
| 44 | IEEE802154_ATTR_COORD_PAN_ID, |
| 45 | |
| 46 | IEEE802154_ATTR_SRC_SHORT_ADDR, |
| 47 | IEEE802154_ATTR_SRC_HW_ADDR, |
| 48 | IEEE802154_ATTR_SRC_PAN_ID, |
| 49 | |
| 50 | IEEE802154_ATTR_DEST_SHORT_ADDR, |
| 51 | IEEE802154_ATTR_DEST_HW_ADDR, |
| 52 | IEEE802154_ATTR_DEST_PAN_ID, |
| 53 | |
| 54 | IEEE802154_ATTR_CAPABILITY, |
| 55 | IEEE802154_ATTR_REASON, |
| 56 | IEEE802154_ATTR_SCAN_TYPE, |
| 57 | IEEE802154_ATTR_CHANNELS, |
| 58 | IEEE802154_ATTR_DURATION, |
| 59 | IEEE802154_ATTR_ED_LIST, |
| 60 | IEEE802154_ATTR_BCN_ORD, |
| 61 | IEEE802154_ATTR_SF_ORD, |
| 62 | IEEE802154_ATTR_PAN_COORD, |
| 63 | IEEE802154_ATTR_BAT_EXT, |
| 64 | IEEE802154_ATTR_COORD_REALIGN, |
| 65 | IEEE802154_ATTR_SEC, |
| 66 | |
Dmitry Eremin-Solenikov | 16eea49 | 2009-08-19 19:32:24 +0400 | [diff] [blame] | 67 | IEEE802154_ATTR_PAGE, |
Dmitry Eremin-Solenikov | 1eaa9d0 | 2009-09-15 17:04:44 +0400 | [diff] [blame] | 68 | IEEE802154_ATTR_CHANNEL_PAGE_LIST, |
| 69 | |
| 70 | IEEE802154_ATTR_PHY_NAME, |
alex.bluesman.smirnov@gmail.com | 90c049b | 2012-05-15 20:50:27 +0000 | [diff] [blame] | 71 | IEEE802154_ATTR_DEV_TYPE, |
Dmitry Eremin-Solenikov | 16eea49 | 2009-08-19 19:32:24 +0400 | [diff] [blame] | 72 | |
Phoebe Buckheister | 9b2777d | 2014-02-17 11:34:08 +0100 | [diff] [blame] | 73 | IEEE802154_ATTR_TXPOWER, |
Phoebe Buckheister | 84dda3c | 2014-02-17 11:34:10 +0100 | [diff] [blame] | 74 | IEEE802154_ATTR_LBT_ENABLED, |
Phoebe Buckheister | ba08fea | 2014-02-17 11:34:11 +0100 | [diff] [blame] | 75 | IEEE802154_ATTR_CCA_MODE, |
Phoebe Buckheister | 6ca0019 | 2014-02-17 11:34:12 +0100 | [diff] [blame] | 76 | IEEE802154_ATTR_CCA_ED_LEVEL, |
Phoebe Buckheister | 4244db1 | 2014-02-17 11:34:14 +0100 | [diff] [blame] | 77 | IEEE802154_ATTR_CSMA_RETRIES, |
| 78 | IEEE802154_ATTR_CSMA_MIN_BE, |
| 79 | IEEE802154_ATTR_CSMA_MAX_BE, |
| 80 | |
| 81 | IEEE802154_ATTR_FRAME_RETRIES, |
Phoebe Buckheister | 9b2777d | 2014-02-17 11:34:08 +0100 | [diff] [blame] | 82 | |
Sergey Lapin | 2c21d11 | 2009-06-08 12:18:49 +0000 | [diff] [blame] | 83 | __IEEE802154_ATTR_MAX, |
| 84 | }; |
| 85 | |
| 86 | #define IEEE802154_ATTR_MAX (__IEEE802154_ATTR_MAX - 1) |
| 87 | |
Dmitry Baryshkov | 78090a5 | 2009-08-07 02:58:38 +0000 | [diff] [blame] | 88 | extern const struct nla_policy ieee802154_policy[]; |
Sergey Lapin | 2c21d11 | 2009-06-08 12:18:49 +0000 | [diff] [blame] | 89 | |
| 90 | /* commands */ |
| 91 | /* REQ should be responded with CONF |
| 92 | * and INDIC with RESP |
| 93 | */ |
| 94 | enum { |
| 95 | __IEEE802154_COMMAND_INVALID, |
| 96 | |
| 97 | IEEE802154_ASSOCIATE_REQ, |
| 98 | IEEE802154_ASSOCIATE_CONF, |
| 99 | IEEE802154_DISASSOCIATE_REQ, |
| 100 | IEEE802154_DISASSOCIATE_CONF, |
| 101 | IEEE802154_GET_REQ, |
| 102 | IEEE802154_GET_CONF, |
| 103 | IEEE802154_RESET_REQ, |
| 104 | IEEE802154_RESET_CONF, |
| 105 | IEEE802154_SCAN_REQ, |
| 106 | IEEE802154_SCAN_CONF, |
| 107 | IEEE802154_SET_REQ, |
| 108 | IEEE802154_SET_CONF, |
| 109 | IEEE802154_START_REQ, |
| 110 | IEEE802154_START_CONF, |
| 111 | IEEE802154_SYNC_REQ, |
| 112 | IEEE802154_POLL_REQ, |
| 113 | IEEE802154_POLL_CONF, |
| 114 | |
| 115 | IEEE802154_ASSOCIATE_INDIC, |
| 116 | IEEE802154_ASSOCIATE_RESP, |
| 117 | IEEE802154_DISASSOCIATE_INDIC, |
| 118 | IEEE802154_BEACON_NOTIFY_INDIC, |
| 119 | IEEE802154_ORPHAN_INDIC, |
| 120 | IEEE802154_ORPHAN_RESP, |
| 121 | IEEE802154_COMM_STATUS_INDIC, |
| 122 | IEEE802154_SYNC_LOSS_INDIC, |
| 123 | |
| 124 | IEEE802154_GTS_REQ, /* Not supported yet */ |
| 125 | IEEE802154_GTS_INDIC, /* Not supported yet */ |
| 126 | IEEE802154_GTS_CONF, /* Not supported yet */ |
| 127 | IEEE802154_RX_ENABLE_REQ, /* Not supported yet */ |
| 128 | IEEE802154_RX_ENABLE_CONF, /* Not supported yet */ |
| 129 | |
Dmitry Baryshkov | 8e753dd | 2009-08-07 02:58:40 +0000 | [diff] [blame] | 130 | IEEE802154_LIST_IFACE, |
Dmitry Eremin-Solenikov | 1eaa9d0 | 2009-09-15 17:04:44 +0400 | [diff] [blame] | 131 | IEEE802154_LIST_PHY, |
Dmitry Eremin-Solenikov | bb1cafb | 2009-11-05 16:56:23 +0300 | [diff] [blame] | 132 | IEEE802154_ADD_IFACE, |
| 133 | IEEE802154_DEL_IFACE, |
Dmitry Baryshkov | 8e753dd | 2009-08-07 02:58:40 +0000 | [diff] [blame] | 134 | |
Phoebe Buckheister | e462ded | 2014-03-31 21:37:46 +0200 | [diff] [blame] | 135 | IEEE802154_SET_MACPARAMS, |
Phoebe Buckheister | 9b2777d | 2014-02-17 11:34:08 +0100 | [diff] [blame] | 136 | |
Sergey Lapin | 2c21d11 | 2009-06-08 12:18:49 +0000 | [diff] [blame] | 137 | __IEEE802154_CMD_MAX, |
| 138 | }; |
| 139 | |
| 140 | #define IEEE802154_CMD_MAX (__IEEE802154_CMD_MAX - 1) |
| 141 | |
alex.bluesman.smirnov@gmail.com | 90c049b | 2012-05-15 20:50:27 +0000 | [diff] [blame] | 142 | enum { |
| 143 | __IEEE802154_DEV_INVALID = -1, |
alex.bluesman.smirnov@gmail.com | 0606069 | 2012-05-15 20:50:29 +0000 | [diff] [blame] | 144 | |
alex.bluesman.smirnov@gmail.com | 32bad7e | 2012-06-25 23:24:48 +0000 | [diff] [blame] | 145 | IEEE802154_DEV_WPAN, |
| 146 | IEEE802154_DEV_MONITOR, |
alex.bluesman.smirnov@gmail.com | 0606069 | 2012-05-15 20:50:29 +0000 | [diff] [blame] | 147 | |
alex.bluesman.smirnov@gmail.com | 90c049b | 2012-05-15 20:50:27 +0000 | [diff] [blame] | 148 | __IEEE802154_DEV_MAX, |
| 149 | }; |
| 150 | |
Sergey Lapin | 2c21d11 | 2009-06-08 12:18:49 +0000 | [diff] [blame] | 151 | #endif |