sar.h (537B)
1/* SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause */ 2/* Copyright(c) 2018-2021 Realtek Corporation 3 */ 4 5#include "main.h" 6 7/* NL80211_SAR_TYPE_POWER means unit is in 0.25 dBm, 8 * where 0.25 = 1/4 = 2^(-2), so make factor 2. 9 */ 10#define RTW_COMMON_SAR_FCT 2 11 12struct rtw_sar_arg { 13 u8 sar_band; 14 u8 path; 15 u8 rs; 16}; 17 18extern const struct cfg80211_sar_capa rtw_sar_capa; 19 20s8 rtw_query_sar(struct rtw_dev *rtwdev, const struct rtw_sar_arg *arg); 21int rtw_set_sar_specs(struct rtw_dev *rtwdev, 22 const struct cfg80211_sar_specs *sar);