1 /* SPDX-License-Identifier: GPL-2.0 */ 2 #ifndef _ASM_X86_AMD_FCH_H_ 3 #define _ASM_X86_AMD_FCH_H_ 4 5 #define FCH_PM_BASE 0xFED80300 6 7 /* Register offsets from PM base: */ 8 #define FCH_PM_DECODEEN 0x00 9 #define FCH_PM_DECODEEN_SMBUS0SEL GENMASK(20, 19) 10 #define FCH_PM_SCRATCH 0x80 11 #define FCH_PM_S5_RESET_STATUS 0xC0 12 13 #endif /* _ASM_X86_AMD_FCH_H_ */ 14