1 /* SPDX-License-Identifier: GPL-2.0-only */ 2 3 #ifndef SOC_INTEL_APL_PCR_H 4 #define SOC_INTEL_APL_PCR_H 5 6 /* 7 * Port ids. 8 */ 9 #if CONFIG(SOC_INTEL_GEMINILAKE) 10 #define PID_GPIO_AUDIO 0xC9 11 #define PID_GPIO_SCC 0xC8 12 #else 13 #define PID_GPIO_SW 0xC0 14 #define PID_GPIO_S 0xC2 15 #define PID_GPIO_W 0xC7 16 #endif 17 #define PID_GPIO_NW 0xC4 18 #define PID_GPIO_N 0xC5 19 #define PID_ITSS 0xD0 20 #define PID_RTC 0xD1 21 #define PID_LPC 0xD2 22 #define PID_MODPHY 0xA5 23 24 #define PID_AUNIT 0x4D 25 #define PID_BUNIT 0x4C 26 #define PID_TUNIT 0x52 27 28 #define PID_PSF3 0xC6 29 #define PID_DMI 0x00 /* Reserved */ 30 #define PID_CSME0 0x9A /* Reserved */ 31 32 #endif /* SOC_INTEL_APL_PCR_H */ 33