Felix Held has submitted this change. ( https://review.coreboot.org/c/coreboot/+/57095 )
Change subject: soc/intel/common: Add PMC IPC commands for FIVR ......................................................................
soc/intel/common: Add PMC IPC commands for FIVR
Add PMC IPC commands information for FIVR control functionality.
BUG=b:198582766 BRANCH=None TEST=Build FW and test on brya0 board
Change-Id: Iccb43b7ba4f0765499bf1844efbbb526bd671a8f Signed-off-by: Sumeet Pawnikar sumeet.r.pawnikar@intel.com Reviewed-on: https://review.coreboot.org/c/coreboot/+/57095 Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Tim Wawrzynczak twawrzynczak@chromium.org --- M src/soc/intel/common/block/include/intelblocks/pmc_ipc.h 1 file changed, 9 insertions(+), 0 deletions(-)
Approvals: build bot (Jenkins): Verified Tim Wawrzynczak: Looks good to me, approved
diff --git a/src/soc/intel/common/block/include/intelblocks/pmc_ipc.h b/src/soc/intel/common/block/include/intelblocks/pmc_ipc.h index b67abc0..fb33a07 100644 --- a/src/soc/intel/common/block/include/intelblocks/pmc_ipc.h +++ b/src/soc/intel/common/block/include/intelblocks/pmc_ipc.h @@ -16,6 +16,15 @@ #define PMC_IPC_CMD_SIZE_SHIFT 16 #define PMC_IPC_CMD_SIZE_MASK 0xff
+/* IPC command to control FIVR Configuration */ +#define PMC_IPC_CMD_COMMAND_FIVR 0xA3 +/* IPC subcommand to write FIVR Register */ +#define PMC_IPC_CMD_CMD_ID_FIVR_WRITE 0x01 +/* IPC subcommand to control RFI Control 0 register logic write */ +#define PMC_IPC_SUBCMD_RFI_CTRL0_LOGIC 0x00 +/* IPC subcommand to control RFI Control 4 register logic write */ +#define PMC_IPC_SUBCMD_RFI_CTRL4_LOGIC 0x01 + #define PMC_IPC_CMD_FIELD(name, val) \ ((((val) & PMC_IPC_CMD_##name##_MASK) << PMC_IPC_CMD_##name##_SHIFT))