162306a36Sopenharmony_ci// SPDX-License-Identifier: GPL-2.0-only
262306a36Sopenharmony_ci/*
362306a36Sopenharmony_ci * nl802154.h
462306a36Sopenharmony_ci *
562306a36Sopenharmony_ci * Copyright (C) 2007, 2008 Siemens AG
662306a36Sopenharmony_ci */
762306a36Sopenharmony_ci
862306a36Sopenharmony_ci#include <linux/kernel.h>
962306a36Sopenharmony_ci#include <net/netlink.h>
1062306a36Sopenharmony_ci#include <linux/nl802154.h>
1162306a36Sopenharmony_ci
1262306a36Sopenharmony_ci#define NLA_HW_ADDR NLA_U64
1362306a36Sopenharmony_ci
1462306a36Sopenharmony_ciconst struct nla_policy ieee802154_policy[IEEE802154_ATTR_MAX + 1] = {
1562306a36Sopenharmony_ci	[IEEE802154_ATTR_DEV_NAME] = { .type = NLA_STRING, },
1662306a36Sopenharmony_ci	[IEEE802154_ATTR_DEV_INDEX] = { .type = NLA_U32, },
1762306a36Sopenharmony_ci	[IEEE802154_ATTR_PHY_NAME] = { .type = NLA_STRING, },
1862306a36Sopenharmony_ci
1962306a36Sopenharmony_ci	[IEEE802154_ATTR_STATUS] = { .type = NLA_U8, },
2062306a36Sopenharmony_ci	[IEEE802154_ATTR_SHORT_ADDR] = { .type = NLA_U16, },
2162306a36Sopenharmony_ci	[IEEE802154_ATTR_HW_ADDR] = { .type = NLA_HW_ADDR, },
2262306a36Sopenharmony_ci	[IEEE802154_ATTR_PAN_ID] = { .type = NLA_U16, },
2362306a36Sopenharmony_ci	[IEEE802154_ATTR_CHANNEL] = { .type = NLA_U8, },
2462306a36Sopenharmony_ci	[IEEE802154_ATTR_BCN_ORD] = { .type = NLA_U8, },
2562306a36Sopenharmony_ci	[IEEE802154_ATTR_SF_ORD] = { .type = NLA_U8, },
2662306a36Sopenharmony_ci	[IEEE802154_ATTR_PAN_COORD] = { .type = NLA_U8, },
2762306a36Sopenharmony_ci	[IEEE802154_ATTR_BAT_EXT] = { .type = NLA_U8, },
2862306a36Sopenharmony_ci	[IEEE802154_ATTR_COORD_REALIGN] = { .type = NLA_U8, },
2962306a36Sopenharmony_ci	[IEEE802154_ATTR_PAGE] = { .type = NLA_U8, },
3062306a36Sopenharmony_ci	[IEEE802154_ATTR_DEV_TYPE] = { .type = NLA_U8, },
3162306a36Sopenharmony_ci	[IEEE802154_ATTR_COORD_SHORT_ADDR] = { .type = NLA_U16, },
3262306a36Sopenharmony_ci	[IEEE802154_ATTR_COORD_HW_ADDR] = { .type = NLA_HW_ADDR, },
3362306a36Sopenharmony_ci	[IEEE802154_ATTR_COORD_PAN_ID] = { .type = NLA_U16, },
3462306a36Sopenharmony_ci	[IEEE802154_ATTR_SRC_SHORT_ADDR] = { .type = NLA_U16, },
3562306a36Sopenharmony_ci	[IEEE802154_ATTR_SRC_HW_ADDR] = { .type = NLA_HW_ADDR, },
3662306a36Sopenharmony_ci	[IEEE802154_ATTR_SRC_PAN_ID] = { .type = NLA_U16, },
3762306a36Sopenharmony_ci	[IEEE802154_ATTR_DEST_SHORT_ADDR] = { .type = NLA_U16, },
3862306a36Sopenharmony_ci	[IEEE802154_ATTR_DEST_HW_ADDR] = { .type = NLA_HW_ADDR, },
3962306a36Sopenharmony_ci	[IEEE802154_ATTR_DEST_PAN_ID] = { .type = NLA_U16, },
4062306a36Sopenharmony_ci
4162306a36Sopenharmony_ci	[IEEE802154_ATTR_CAPABILITY] = { .type = NLA_U8, },
4262306a36Sopenharmony_ci	[IEEE802154_ATTR_REASON] = { .type = NLA_U8, },
4362306a36Sopenharmony_ci	[IEEE802154_ATTR_SCAN_TYPE] = { .type = NLA_U8, },
4462306a36Sopenharmony_ci	[IEEE802154_ATTR_CHANNELS] = { .type = NLA_U32, },
4562306a36Sopenharmony_ci	[IEEE802154_ATTR_DURATION] = { .type = NLA_U8, },
4662306a36Sopenharmony_ci	[IEEE802154_ATTR_ED_LIST] = { .len = 27 },
4762306a36Sopenharmony_ci	[IEEE802154_ATTR_CHANNEL_PAGE_LIST] = { .len = 32 * 4, },
4862306a36Sopenharmony_ci
4962306a36Sopenharmony_ci	[IEEE802154_ATTR_TXPOWER] = { .type = NLA_S8, },
5062306a36Sopenharmony_ci	[IEEE802154_ATTR_LBT_ENABLED] = { .type = NLA_U8, },
5162306a36Sopenharmony_ci	[IEEE802154_ATTR_CCA_MODE] = { .type = NLA_U8, },
5262306a36Sopenharmony_ci	[IEEE802154_ATTR_CCA_ED_LEVEL] = { .type = NLA_S32, },
5362306a36Sopenharmony_ci	[IEEE802154_ATTR_CSMA_RETRIES] = { .type = NLA_U8, },
5462306a36Sopenharmony_ci	[IEEE802154_ATTR_CSMA_MIN_BE] = { .type = NLA_U8, },
5562306a36Sopenharmony_ci	[IEEE802154_ATTR_CSMA_MAX_BE] = { .type = NLA_U8, },
5662306a36Sopenharmony_ci
5762306a36Sopenharmony_ci	[IEEE802154_ATTR_FRAME_RETRIES] = { .type = NLA_S8, },
5862306a36Sopenharmony_ci
5962306a36Sopenharmony_ci	[IEEE802154_ATTR_LLSEC_ENABLED] = { .type = NLA_U8, },
6062306a36Sopenharmony_ci	[IEEE802154_ATTR_LLSEC_SECLEVEL] = { .type = NLA_U8, },
6162306a36Sopenharmony_ci	[IEEE802154_ATTR_LLSEC_KEY_MODE] = { .type = NLA_U8, },
6262306a36Sopenharmony_ci	[IEEE802154_ATTR_LLSEC_KEY_SOURCE_SHORT] = { .type = NLA_U32, },
6362306a36Sopenharmony_ci	[IEEE802154_ATTR_LLSEC_KEY_SOURCE_EXTENDED] = { .type = NLA_HW_ADDR, },
6462306a36Sopenharmony_ci	[IEEE802154_ATTR_LLSEC_KEY_ID] = { .type = NLA_U8, },
6562306a36Sopenharmony_ci	[IEEE802154_ATTR_LLSEC_FRAME_COUNTER] = { .type = NLA_U32 },
6662306a36Sopenharmony_ci	[IEEE802154_ATTR_LLSEC_KEY_BYTES] = { .len = 16, },
6762306a36Sopenharmony_ci	[IEEE802154_ATTR_LLSEC_KEY_USAGE_FRAME_TYPES] = { .type = NLA_U8, },
6862306a36Sopenharmony_ci	[IEEE802154_ATTR_LLSEC_KEY_USAGE_COMMANDS] = { .len = 258 / 8 },
6962306a36Sopenharmony_ci	[IEEE802154_ATTR_LLSEC_FRAME_TYPE] = { .type = NLA_U8, },
7062306a36Sopenharmony_ci	[IEEE802154_ATTR_LLSEC_CMD_FRAME_ID] = { .type = NLA_U8, },
7162306a36Sopenharmony_ci	[IEEE802154_ATTR_LLSEC_SECLEVELS] = { .type = NLA_U8, },
7262306a36Sopenharmony_ci	[IEEE802154_ATTR_LLSEC_DEV_OVERRIDE] = { .type = NLA_U8, },
7362306a36Sopenharmony_ci	[IEEE802154_ATTR_LLSEC_DEV_KEY_MODE] = { .type = NLA_U8, },
7462306a36Sopenharmony_ci};
75