global_nvs.h 497 B

123456789101112131415161718
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * Copyright (C) 2016, Bin Meng <bmeng.cn@gmail.com>
  4. */
  5. #ifndef _ACPI_GNVS_H_
  6. #define _ACPI_GNVS_H_
  7. /*
  8. * This file provides two ACPI global NVS macros: ACPI_GNVS_ADDR and
  9. * ACPI_GNVS_SIZE. They are to be used in platform's global_nvs.asl file
  10. * to declare the GNVS OperationRegion, as well as write_acpi_tables()
  11. * for the GNVS address runtime fix up.
  12. */
  13. #define ACPI_GNVS_ADDR 0xdeadbeef
  14. #define ACPI_GNVS_SIZE 0x100
  15. #endif /* _ACPI_GNVS_H_ */