blob: 6a16566f0221f671d9d15b36edd478cfeb594597 [file] [log] [blame]
Inaky Perez-Gonzalez34e95e42008-09-17 16:34:05 +01001/*
2 * Ultra Wide Band
3 * Debug interface commands
4 *
5 * Copyright (C) 2008 Cambridge Silicon Radio Ltd.
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License version
9 * 2 as published by the Free Software Foundation.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 */
19#ifndef __LINUX__UWB__DEBUG_CMD_H__
20#define __LINUX__UWB__DEBUG_CMD_H__
21
22#include <linux/types.h>
23
24/*
25 * Debug interface commands
26 *
27 * UWB_DBG_CMD_RSV_ESTABLISH: Establish a new unicast reservation.
28 *
29 * UWB_DBG_CMD_RSV_TERMINATE: Terminate the Nth reservation.
30 */
31
32enum uwb_dbg_cmd_type {
33 UWB_DBG_CMD_RSV_ESTABLISH = 1,
34 UWB_DBG_CMD_RSV_TERMINATE = 2,
Stefano Panella6d5a6812008-11-04 14:24:57 +000035 UWB_DBG_CMD_IE_ADD = 3,
36 UWB_DBG_CMD_IE_RM = 4,
Inaky Perez-Gonzalez34e95e42008-09-17 16:34:05 +010037};
38
39struct uwb_dbg_cmd_rsv_establish {
40 __u8 target[6];
41 __u8 type;
42 __u16 max_mas;
43 __u16 min_mas;
44 __u8 sparsity;
45};
46
47struct uwb_dbg_cmd_rsv_terminate {
48 int index;
49};
50
Stefano Panella6d5a6812008-11-04 14:24:57 +000051struct uwb_dbg_cmd_ie {
52 __u8 data[128];
53 int len;
54};
55
Inaky Perez-Gonzalez34e95e42008-09-17 16:34:05 +010056struct uwb_dbg_cmd {
57 __u32 type;
58 union {
59 struct uwb_dbg_cmd_rsv_establish rsv_establish;
60 struct uwb_dbg_cmd_rsv_terminate rsv_terminate;
Stefano Panella6d5a6812008-11-04 14:24:57 +000061 struct uwb_dbg_cmd_ie ie_add;
62 struct uwb_dbg_cmd_ie ie_rm;
Inaky Perez-Gonzalez34e95e42008-09-17 16:34:05 +010063 };
64};
65
66#endif /* #ifndef __LINUX__UWB__DEBUG_CMD_H__ */