amd/00730F01: Add correct CPU model
Change-Id: I887f9eb890f1f1c6f88b7984f0520bd17be8b88b Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: http://review.coreboot.org/12284 Tested-by: build bot (Jenkins) Reviewed-by: Edward O'Callaghan <edward.ocallaghan@koparo.com> Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
This commit is contained in:
parent
740edf4f95
commit
ed98e945c0
|
@ -42,9 +42,6 @@ static void model_16_init(device_t dev)
|
||||||
u32 siblings;
|
u32 siblings;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
//x86_enable_cache();
|
|
||||||
//amd_setup_mtrrs();
|
|
||||||
//x86_mtrr_check();
|
|
||||||
disable_cache ();
|
disable_cache ();
|
||||||
/* Enable access to AMD RdDram and WrDram extension bits */
|
/* Enable access to AMD RdDram and WrDram extension bits */
|
||||||
msr = rdmsr(SYSCFG_MSR);
|
msr = rdmsr(SYSCFG_MSR);
|
||||||
|
@ -115,7 +112,8 @@ static struct device_operations cpu_dev_ops = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct cpu_device_id cpu_table[] = {
|
static struct cpu_device_id cpu_table[] = {
|
||||||
{ X86_VENDOR_AMD, 0x730f00 }, /* ML-A0, Guess, TODO: */
|
{ X86_VENDOR_AMD, 0x730F00 },
|
||||||
|
{ X86_VENDOR_AMD, 0x730F01 },
|
||||||
{ 0, 0 },
|
{ 0, 0 },
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue