• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 
3 /*
4  * NOTE: The layout of the global_nvs structure below must match the layout
5  * in soc/soc/amd/glinda/acpi/globalnvs.asl !!!
6  *
7  */
8 
9 #ifndef AMD_GLINDA_NVS_H
10 #define AMD_GLINDA_NVS_H
11 
12 #include <stdint.h>
13 
14 struct __packed global_nvs {
15 	/* Miscellaneous */
16 	uint64_t	pm1i; /* 0x00 - 0x07 - System Wake Source - PM1 Index */
17 	uint64_t	gpei; /* 0x08 - 0x0f - GPE Wake Source */
18 };
19 
20 #endif /* AMD_GLINDA_NVS_H */
21