cpu/amd/fam10: Drop support
Relocatable ramstage, postcar stage and C_ENVIRONMENT_BOOTBLOCK are now mandatory features, which this platform lacks. Change-Id: I3c69f158a5667783292161815f9ae61195b5e03b Signed-off-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-on: https://review.coreboot.org/c/coreboot/+/36963 Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
committed by
Kyösti Mälkki
parent
eef63607b8
commit
de56a66e73
@@ -210,8 +210,7 @@ int cpu_have_cpuid(void);
|
||||
|
||||
static inline bool cpu_is_amd(void)
|
||||
{
|
||||
return CONFIG(CPU_AMD_AGESA) || CONFIG(CPU_AMD_PI)
|
||||
|| CONFIG(SOC_AMD_COMMON) || CONFIG(CPU_AMD_MODEL_10XXX);
|
||||
return CONFIG(CPU_AMD_AGESA) || CONFIG(CPU_AMD_PI) || CONFIG(SOC_AMD_COMMON);
|
||||
}
|
||||
|
||||
static inline bool cpu_is_intel(void)
|
||||
|
@@ -545,16 +545,6 @@ static int get_socket_type(void)
|
||||
return 0x13;
|
||||
if (CONFIG(CPU_INTEL_SOCKET_LGA775))
|
||||
return 0x15;
|
||||
if (CONFIG(CPU_AMD_SOCKET_AM2R2))
|
||||
return 0x17;
|
||||
if (CONFIG(CPU_AMD_SOCKET_F_1207))
|
||||
return 0x18;
|
||||
if (CONFIG(CPU_AMD_SOCKET_G34_NON_AGESA))
|
||||
return 0x1a;
|
||||
if (CONFIG(CPU_AMD_SOCKET_AM3))
|
||||
return 0x1b;
|
||||
if (CONFIG(CPU_AMD_SOCKET_C32_NON_AGESA))
|
||||
return 0x1c;
|
||||
|
||||
return 0x02; /* Unknown */
|
||||
}
|
||||
|
Reference in New Issue
Block a user