Re: speedstep-centrino on dothan

From: Dominik Brodowski
Date: Fri Jul 08 2005 - 00:13:36 EST


On Thu, Jul 07, 2005 at 11:59:28PM +0200, st3@xxxxxxxxxx wrote:
> read from ACPI tables, while still keeping them available.

You're only keeping some of them available, as you overwrite one such
setting. Alternatively you can increase p.state_count by one early enough.

> index = (((frequency)/100) << 8) | ((voltage - 700) / 16);
> printf ("%u\n", index);
printf ("0x%x\n", index);
is better

> want 500MHz at 940mV, you could add:
>
> centrino_model[cpu]->op_points[p.state_count - 2].index = 0x1295;
> centrino_model[cpu]->op_points[p.state_count - 2].index = 500000;
.frequency
> p.states[p.state_count - 2].core_frequency = 500;


Dominik
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/