From 8b8600d6bf2f3911f4efefdebf72912218a3264a Mon Sep 17 00:00:00 2001 From: richardg867 Date: Tue, 24 Mar 2020 17:19:52 -0300 Subject: [PATCH] Change hardware monitor VCORE around on the P2B-LS More CPUs use a 2.0V vcore so make Klamath's 2.8V the exception rather than the rule. --- src/machine/m_at_socket8.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/machine/m_at_socket8.c b/src/machine/m_at_socket8.c index aff78d747..459e1f321 100644 --- a/src/machine/m_at_socket8.c +++ b/src/machine/m_at_socket8.c @@ -179,7 +179,7 @@ machine_at_p2bls_init(const machine_t *model) 27, /* CPU */ 0 }, { /* voltages (divisors other than 16 = unclear how that number was achieved) */ - 2800 / 16, /* VCORE (2.8V by default) */ + 2050 / 16, /* VCORE (2.05V by default) */ 0, /* unused */ 3300 / 16, /* +3.3V */ 5000 / 27, /* +5V */ @@ -189,8 +189,8 @@ machine_at_p2bls_init(const machine_t *model) 0 } }; - if (model->cpu[cpu_manufacturer].cpus[cpu_effective].cpu_type == CPU_PENTIUM2D) - machine_hwm.voltages[0] = 2050 / 16; /* set lower VCORE (2.05V) for Deschutes */ + if (model->cpu[cpu_manufacturer].cpus[cpu_effective].cpu_type == CPU_PENTIUM2) + machine_hwm.voltages[0] = 2800 / 16; /* set higher VCORE (2.8V) for Klamath */ hwm_set_values(machine_hwm); device_add(&as99127f_device);