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