acpi.h 490 B

12345678910111213141516171819202122
  1. /* SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause */
  2. /* Copyright(c) 2021-2023 Realtek Corporation
  3. */
  4. #ifndef __RTW89_ACPI_H__
  5. #define __RTW89_ACPI_H__
  6. #include "core.h"
  7. enum rtw89_acpi_dsm_func {
  8. RTW89_ACPI_DSM_FUNC_IDN_BAND_SUP = 2,
  9. RTW89_ACPI_DSM_FUNC_6G_DIS = 3,
  10. RTW89_ACPI_DSM_FUNC_6G_BP = 4,
  11. RTW89_ACPI_DSM_FUNC_TAS_EN = 5,
  12. RTW89_ACPI_DSM_FUNC_59G_EN = 6,
  13. };
  14. int rtw89_acpi_evaluate_dsm(struct rtw89_dev *rtwdev,
  15. enum rtw89_acpi_dsm_func func, u8 *value);
  16. #endif