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