2004-04-02 14:48:43

by Christoph Terhechte

[permalink] [raw]
Subject: powernow-k8: broken PSB

Hi,

I'm running Gentoo Linux on an Athlon 64 system (board is Asus 8KV SE
Deluxe). I was getting the "BIOS error - no PSB" message when trying to
"modprobe powernow-k8", so I upgraded to 2.6.5-rc3-mm4 which includes
Pavel Machek's new powernow-k8 driver. Theoretically, it should be
getting tables through ACPI and ignore the legacy PST/PSB tables, but
I'm still getting the same error as before and inserting powernow-k8
fails with this message:

FATAL: Error inserting powernow_k8
(/lib/modules/2.6.5-rc3-mm4/kernel/arch/x86_64/cpufreq/powernow-k8.ko):
No such device

Is there anything I need to tell the kernel explicitly to inform it not
to use the legacy method? Any kernel options I might have overlooked?

BIOS support for ACPI 2.0 is activated and APIC APIC Supprt enabled. I'm
confused about this boot message, though:

PCI bridge 00:01 from 1106 found. Setting "noapic". Overwrite with
"apic"

--
Christoph Terhechte <[email protected]>
International Forum of New Cinema
Potsdamer Strasse 2
D-10785 Berlin
Tel: +49-30-269.55.200
Fax: +49-30-269.55.222


Attachments:
signature.asc (189.00 B)
Dies ist ein digital signierter Nachrichtenteil

2004-04-09 10:27:48

by Pavel Machek

[permalink] [raw]
Subject: Re: powernow-k8: broken PSB

Hi!

> I'm running Gentoo Linux on an Athlon 64 system (board is Asus 8KV SE
> Deluxe). I was getting the "BIOS error - no PSB" message when trying to
> "modprobe powernow-k8", so I upgraded to 2.6.5-rc3-mm4 which includes
> Pavel Machek's new powernow-k8 driver. Theoretically, it should be
> getting tables through ACPI and ignore the legacy PST/PSB tables, but
> I'm still getting the same error as before and inserting powernow-k8
> fails with this message:
>
> FATAL: Error inserting powernow_k8
> (/lib/modules/2.6.5-rc3-mm4/kernel/arch/x86_64/cpufreq/powernow-k8.ko):
> No such device

Try putting it directly into kernel.
Pavel
--
When do you have a heart between your knees?
[Johanka's followup: and *two* hearts?]

2004-04-09 15:57:03

by Andi Kleen

[permalink] [raw]
Subject: Re: powernow-k8: broken PSB

Christoph Terhechte <[email protected]> writes:

> I'm running Gentoo Linux on an Athlon 64 system (board is Asus 8KV SE
> Deluxe). I was getting the "BIOS error - no PSB" message when trying to
> "modprobe powernow-k8", so I upgraded to 2.6.5-rc3-mm4 which includes
> Pavel Machek's new powernow-k8 driver. Theoretically, it should be
> getting tables through ACPI and ignore the legacy PST/PSB tables, but
> I'm still getting the same error as before and inserting powernow-k8
> fails with this message:
>
> FATAL: Error inserting powernow_k8
> (/lib/modules/2.6.5-rc3-mm4/kernel/arch/x86_64/cpufreq/powernow-k8.ko):
> No such device

You have ACPI disabled right?

If yes this patch will fix it.

But you should enable it, otherwise the powernow driver works just like
the old one.

-Andi

diff -u linux/drivers/acpi/processor.c-o linux/drivers/acpi/processor.c
--- linux/drivers/acpi/processor.c-o 2004-04-04 23:35:32.000000000 +0200
+++ linux/drivers/acpi/processor.c 2004-04-05 21:39:37.000000000 +0200
@@ -2372,6 +2372,10 @@
}


+/* We keep the driver loaded even when ACPI is not running.
+ This is needed for the powernow-k8 driver, that works even without
+ ACPI, but needs symbols from this driver */
+
static int __init
acpi_processor_init (void)
{
@@ -2384,12 +2388,12 @@

acpi_processor_dir = proc_mkdir(ACPI_PROCESSOR_CLASS, acpi_root_dir);
if (!acpi_processor_dir)
- return_VALUE(-ENODEV);
+ return_VALUE(0);

result = acpi_bus_register_driver(&acpi_processor_driver);
if (result < 0) {
remove_proc_entry(ACPI_PROCESSOR_CLASS, acpi_root_dir);
- return_VALUE(-ENODEV);
+ return_VALUE(0);
}

acpi_thermal_cpufreq_init();




2004-04-10 14:31:18

by Christoph Terhechte

[permalink] [raw]
Subject: Re: powernow-k8: broken PSB

> You have ACPI disabled right?

No, I have it enabled. Another AMD64 user sent me his kernel .config which
I tried, and it worked. Then I slowly went back to my original kernel
.config step by step to find out what the culprit was. I was amazed to
find out that powernow-k8 still worked after I had gone back to my
original .config (took me half a day and about 50 reboots). Impossible for
me to say what triggered this change of mind of my system, but it works
perfectly now without me changing anything.

Sometimes I feel that even in the digital world there are things beyond
explanation ;-)

--
Christoph Terhechte <[email protected]>
International Forum of New Cinema
Potsdamer Strasse 2
D-10785 Berlin
Tel: +49-30-269.55.200
Fax: +49-30-269.55.222