* x86_64: calibrate_delay_direct and apic id lift for BSP
@ 2005-10-28 18:42 Yinghai Lu
2005-10-28 18:53 ` Andi Kleen
0 siblings, 1 reply; 6+ messages in thread
From: Yinghai Lu @ 2005-10-28 18:42 UTC (permalink / raw)
To: Andi Kleen; +Cc: discuss, linux-kernel, linuxbios
andi,
I tried to lift apic id in LinuxBIOS for all cpus after 0x10.
When using MB with AMD8111, the jiffies was not moving. So it is
locked at calibrate_delay_direct...
but MB with Nvidia ck804, jiffies is moving.
If I don't change BSP apic id ( keep it to 0), It changes....
I have no idea how the jiffies changes, there is another thread change it....?
YH
Memory: 508000k/524288k available (3146k kernel code, 15900k reserved,
1160k data, 296k init)
calibrate_delay_direct i=0
calibrate_delay_direct start_jiffies=fffedb08
calibrate_delay_direct 1 jiffies=fffedb08
calibrate_delay_direct 1 jiffies=fffedb08
calibrate_delay_direct 1 jiffies=fffedb08
calibrate_delay_direct 1 jiffies=fffedb08
^ permalink raw reply [flat|nested] 6+ messages in thread* Re: x86_64: calibrate_delay_direct and apic id lift for BSP
2005-10-28 18:42 x86_64: calibrate_delay_direct and apic id lift for BSP Yinghai Lu
@ 2005-10-28 18:53 ` Andi Kleen
2006-01-06 2:04 ` yhlu
0 siblings, 1 reply; 6+ messages in thread
From: Andi Kleen @ 2005-10-28 18:53 UTC (permalink / raw)
To: Yinghai Lu; +Cc: discuss, linux-kernel, linuxbios
On Friday 28 October 2005 20:42, Yinghai Lu wrote:
> andi,
>
> I tried to lift apic id in LinuxBIOS for all cpus after 0x10.
>
> When using MB with AMD8111, the jiffies was not moving. So it is
> locked at calibrate_delay_direct...
Have you tried it with 2.6.14? It has some new code to handle
high apic ids better
> but MB with Nvidia ck804, jiffies is moving.
The timer is wired different on nvidia than on 8111. They can
go either through the 8259 or through the IOAPIC. There is still
some code that falls back to the 8259 if IOAPIC doesn't work,
which may make it appear working on Nvidia.
As a warning I'm about to remove that code so don't rely on it.
> If I don't change BSP apic id ( keep it to 0), It changes....
>
> I have no idea how the jiffies changes, there is another thread change it....?
They change when interrupt 0 fires. So it's probably misrouted
or similar.
-Andi
^ permalink raw reply [flat|nested] 6+ messages in thread
* RE: x86_64: calibrate_delay_direct and apic id lift for BSP
@ 2005-10-28 19:49 Lu, Yinghai
2005-10-28 20:19 ` Yinghai Lu
0 siblings, 1 reply; 6+ messages in thread
From: Lu, Yinghai @ 2005-10-28 19:49 UTC (permalink / raw)
To: Andi Kleen; +Cc: discuss, linux-kernel, linuxbios
I have tried latest code..., except that, it works well.
YH
-----Original Message-----
From: Andi Kleen [mailto:ak@suse.de]
Sent: Friday, October 28, 2005 11:53 AM
To: Lu, Yinghai
Cc: discuss@x86-64.org; linux-kernel@vger.kernel.org;
linuxbios@openbios.org
Subject: Re: x86_64: calibrate_delay_direct and apic id lift for BSP
On Friday 28 October 2005 20:42, Yinghai Lu wrote:
> andi,
>
> I tried to lift apic id in LinuxBIOS for all cpus after 0x10.
>
> When using MB with AMD8111, the jiffies was not moving. So it is
> locked at calibrate_delay_direct...
Have you tried it with 2.6.14? It has some new code to handle
high apic ids better
> but MB with Nvidia ck804, jiffies is moving.
The timer is wired different on nvidia than on 8111. They can
go either through the 8259 or through the IOAPIC. There is still
some code that falls back to the 8259 if IOAPIC doesn't work,
which may make it appear working on Nvidia.
As a warning I'm about to remove that code so don't rely on it.
> If I don't change BSP apic id ( keep it to 0), It changes....
>
> I have no idea how the jiffies changes, there is another thread change
it....?
They change when interrupt 0 fires. So it's probably misrouted
or similar.
-Andi
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: x86_64: calibrate_delay_direct and apic id lift for BSP
2005-10-28 19:49 Lu, Yinghai
@ 2005-10-28 20:19 ` Yinghai Lu
2005-10-28 21:24 ` Andi Kleen
0 siblings, 1 reply; 6+ messages in thread
From: Yinghai Lu @ 2005-10-28 20:19 UTC (permalink / raw)
To: Andi Kleen; +Cc: discuss, linux-kernel, linuxbios
I wonder if 8111 only support 4 bit apicid, so it can not send irq to
BSP at apic id 0x10....
YH
On 10/28/05, Lu, Yinghai <yinghai.lu@amd.com> wrote:
> I have tried latest code..., except that, it works well.
>
> YH
>
> -----Original Message-----
> From: Andi Kleen [mailto:ak@suse.de]
> Sent: Friday, October 28, 2005 11:53 AM
> To: Lu, Yinghai
> Cc: discuss@x86-64.org; linux-kernel@vger.kernel.org;
> linuxbios@openbios.org
> Subject: Re: x86_64: calibrate_delay_direct and apic id lift for BSP
>
> On Friday 28 October 2005 20:42, Yinghai Lu wrote:
> > andi,
> >
> > I tried to lift apic id in LinuxBIOS for all cpus after 0x10.
> >
> > When using MB with AMD8111, the jiffies was not moving. So it is
> > locked at calibrate_delay_direct...
>
> Have you tried it with 2.6.14? It has some new code to handle
> high apic ids better
>
> > but MB with Nvidia ck804, jiffies is moving.
>
> The timer is wired different on nvidia than on 8111. They can
> go either through the 8259 or through the IOAPIC. There is still
> some code that falls back to the 8259 if IOAPIC doesn't work,
> which may make it appear working on Nvidia.
>
> As a warning I'm about to remove that code so don't rely on it.
>
> > If I don't change BSP apic id ( keep it to 0), It changes....
> >
> > I have no idea how the jiffies changes, there is another thread change
> it....?
>
> They change when interrupt 0 fires. So it's probably misrouted
> or similar.
>
>
> -Andi
>
>
> -
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at http://www.tux.org/lkml/
>
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2006-01-06 2:04 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-10-28 18:42 x86_64: calibrate_delay_direct and apic id lift for BSP Yinghai Lu
2005-10-28 18:53 ` Andi Kleen
2006-01-06 2:04 ` yhlu
-- strict thread matches above, loose matches on Subject: below --
2005-10-28 19:49 Lu, Yinghai
2005-10-28 20:19 ` Yinghai Lu
2005-10-28 21:24 ` Andi Kleen
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox