2002-10-15 21:18:40

by Marc Singer

[permalink] [raw]
Subject: AMD Elan SC520 CPU speed problem w/patches

There appears to be cleverly hidden problem with the Elan SC520 CPU
speed when running the Linux kernel. The speed is controlled by a
memory-mapped registers that the CPU always offers at the physical
address 0xfffef000. Some BIOSs--at least General Systems--enable an
alias of these registers at 0x000df000 for the sake of real-mode
programs. It appears that something in the kernel writes to
0x000df002 because the CPU speed at the start of kernel initialization
is correct at 133MHz, but when user-mode applications start running
the CPU speed has been reduced to 100MHz. Disabling the unnecessary
aliasing solves the problem. Note that the BOGOMIPS calculation is
early enough to preceed the speed change.

<http://www.buici.com/elan>

Here, you'll find source to a program that verifies the problem.
You'll also find a patch for linux-2.2.22 that fixes this bug as well
as programming the PIT timer for Elan CPUs. Last, there is a watchdog
driver that works when the above mentioned aliasing is disabled.

Kindly copy replies to my email address.

Cheers,
Marc Singer


============================================================================

For the speed problem, the important part of the patch reads as below.
The code is executed at the top of init_amd().

--- linux-2.2.22-original/arch/i386/kernel/setup.c Mon Sep 16 09:26:11 2002
+++ linux-2.2.22/arch/i386/kernel/setup.c Tue Oct 15 11:35:17 2002
@@ -662,6 +662,29 @@

int r=get_model_name(c);

+#ifdef CONFIG_ELAN_COMPATIBILITY
+ if (c->x86 == 4 && (c->x86_model == 9 || c->x86_model == 10)) {
+ /* There appears to be a driver that clobbers one of the
+ system control registers because these registers are
+ mapped to 0xdf000. So, this code disables that mapping.
+ It isn't necessary anyway and is a legacy of the BIOS. */
+#define CBAR (0xfffc) /* Configuration Base Address (32-bit) */
+#define CBAR_ENB (0x80000000)
+#define CBAR_KEY (0X000000CB)
+ if (inl (CBAR) & CBAR_ENB)
+ outl (0 | CBAR_KEY, CBAR);


2002-10-20 16:55:37

by Robert Schwebel

[permalink] [raw]
Subject: Re: AMD Elan SC520 CPU speed problem w/patches

On Tue, Oct 15, 2002 at 02:23:10PM -0700, Marc Singer wrote:
> There appears to be cleverly hidden problem with the Elan SC520 CPU
> speed when running the Linux kernel.

My AMD Elan patch for the Linux kernel lives on

http://www.pengutronix.de/software/elan_en.html

If you have other stuff for it please send it to me (or port it back to
your 2.2 kernel).

Robert
--
Dipl.-Ing. Robert Schwebel | http://www.pengutronix.de
Pengutronix - Linux Solutions for Science and Industry
Braunschweiger Str. 79, 31134 Hildesheim, Germany
Handelsregister: Amtsgericht Hildesheim, HRA 2686
Phone: +49-5121-28619-0 | Fax: +49-5121-28619-4

Visit us at the SPS/IPC/Drives 2002 in Nuernberg!
Hall 5, Booth 154 +++ Please contact us for details.

2002-10-21 03:43:11

by Marc Singer

[permalink] [raw]
Subject: Re: AMD Elan SC520 CPU speed problem w/patches

On Sun, Oct 20, 2002 at 07:01:33PM +0200, Robert Schwebel wrote:
> On Tue, Oct 15, 2002 at 02:23:10PM -0700, Marc Singer wrote:
> > There appears to be cleverly hidden problem with the Elan SC520 CPU
> > speed when running the Linux kernel.
>
> My AMD Elan patch for the Linux kernel lives on
>
> http://www.pengutronix.de/software/elan_en.html
>
> If you have other stuff for it please send it to me (or port it back to
> your 2.2 kernel).
>
> Robert

I don't understand. Are you planning to add my fix to your patch?
Please, if you do so would you put a link to my page so that updates
to my elan stuff is easy to find?