Add support for AMD Hawk Point FP7 (Phoenix)

This commit is contained in:
Sam Demeulemeester
2025-05-27 22:02:41 +02:00
parent 07d84f4f34
commit 2f9b165eec
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -446,7 +446,7 @@ static bool fch_zen_get_smb(void)
pm_reg |= __inb(AMD_DATA_IO_PORT);
// Special case for AMD Family 19h & Extended Model > 4 (get smb address in memory)
if ((imc.family == IMC_K19_CZN || imc.family == IMC_K19_RPL || imc.family >= IMC_K1A_STP) && pm_reg == 0xFFFF) {
if ((imc.family == IMC_K19_CZN || imc.family == IMC_K19_PHX || imc.family == IMC_K19_RPL || imc.family >= IMC_K1A_STP) && pm_reg == 0xFFFF) {
smbusbase = ((*(const uint32_t *)(0xFED80000 + 0x300) >> 8) & 0xFF) << 8;
return true;
}
+1
View File
@@ -37,6 +37,7 @@ void memctrl_init(void)
case IMC_K19_VRM:
case IMC_K19_RPL:
case IMC_K19_RBT:
case IMC_K19_PHX:
case IMC_K1A_GRG:
get_imc_config_amd_zen();
break;