brintos

brintos / linux-shallow public Read only

0
0
Text · 2.1 KiB · 91b8387 Raw
67 lines · c
1/* SPDX-License-Identifier: BSD-3-Clause-Clear */2/*3 * Copyright (c) 2018-2019 The Linux Foundation. All rights reserved.4 * Copyright (c) 2023 Qualcomm Innovation Center, Inc. All rights reserved.5 */6 7/* "API" level of the ath11k testmode interface. Bump it after every8 * incompatible interface change.9 */10#define ATH11K_TESTMODE_VERSION_MAJOR 111 12/* Bump this after every _compatible_ interface change, for example13 * addition of a new command or an attribute.14 */15#define ATH11K_TESTMODE_VERSION_MINOR 116 17#define ATH11K_TM_DATA_MAX_LEN		500018#define ATH11K_FTM_EVENT_MAX_BUF_LENGTH 204819 20enum ath11k_tm_attr {21	__ATH11K_TM_ATTR_INVALID		= 0,22	ATH11K_TM_ATTR_CMD			= 1,23	ATH11K_TM_ATTR_DATA			= 2,24	ATH11K_TM_ATTR_WMI_CMDID		= 3,25	ATH11K_TM_ATTR_VERSION_MAJOR		= 4,26	ATH11K_TM_ATTR_VERSION_MINOR		= 5,27	ATH11K_TM_ATTR_WMI_OP_VERSION		= 6,28 29	/* keep last */30	__ATH11K_TM_ATTR_AFTER_LAST,31	ATH11K_TM_ATTR_MAX		= __ATH11K_TM_ATTR_AFTER_LAST - 1,32};33 34/* All ath11k testmode interface commands specified in35 * ATH11K_TM_ATTR_CMD36 */37enum ath11k_tm_cmd {38	/* Returns the supported ath11k testmode interface version in39	 * ATH11K_TM_ATTR_VERSION. Always guaranteed to work. User space40	 * uses this to verify it's using the correct version of the41	 * testmode interface42	 */43	ATH11K_TM_CMD_GET_VERSION = 0,44 45	/* The command used to transmit a WMI command to the firmware and46	 * the event to receive WMI events from the firmware. Without47	 * struct wmi_cmd_hdr header, only the WMI payload. Command id is48	 * provided with ATH11K_TM_ATTR_WMI_CMDID and payload in49	 * ATH11K_TM_ATTR_DATA.50	 */51	ATH11K_TM_CMD_WMI = 1,52 53	/* Boots the UTF firmware, the netdev interface must be down at the54	 * time.55	 */56	ATH11K_TM_CMD_TESTMODE_START = 2,57 58	/* The command used to transmit a FTM WMI command to the firmware59	 * and the event to receive WMI events from the firmware. The data60	 * received only contain the payload, need to add the tlv header61	 * and send the cmd to firmware with command id WMI_PDEV_UTF_CMDID.62	 * The data payload size could be large and the driver needs to63	 * send segmented data to firmware.64	 */65	ATH11K_TM_CMD_WMI_FTM = 3,66};67