lkml.org 
[lkml]   [2009]   [Aug]   [19]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [PATCH v2 10/10] x86/apic: Early setup IOAPIC for APB timer


On Thu, 16 Jul 2009, Pan, Jacob jun wrote:

> >From ba824feed1fc5aa5029f6506b0d54145b949d48d Mon Sep 17 00:00:00 2001
> From: Jacob Pan <jacob.jun.pan@intel.com>
> Date: Wed, 15 Jul 2009 11:30:40 -0700
> Subject: [PATCH] x86/apic: Early setup IOAPIC for APB timer
>
> Intel Moorestown platform uses APB system timers which rely
> on IOAPIC to deliver its interrupts. Early setup the APIC
> system is necessary to allow timer interrupts.
>
> Signed-off-by: Jacob Pan <jacob.jun.pan@intel.com>
> ---
> arch/x86/include/asm/apic.h | 1 +
> arch/x86/kernel/apic/io_apic.c | 68 ++++++++++++++++++++++++++++++++++++++++
> 2 files changed, 69 insertions(+), 0 deletions(-)
>
> diff --git a/arch/x86/include/asm/apic.h b/arch/x86/include/asm/apic.h
> index bb7d479..a74cb30 100644
> --- a/arch/x86/include/asm/apic.h
> +++ b/arch/x86/include/asm/apic.h
> @@ -87,6 +87,7 @@ extern void xapic_wait_icr_idle(void);
> extern u32 safe_xapic_wait_icr_idle(void);
> extern void xapic_icr_write(u32, u32);
> extern int setup_profiling_timer(unsigned int);
> +extern void pre_init_apic_IRQ(void);
>
> static inline void native_apic_mem_write(u32 reg, u32 v)
> {
> diff --git a/arch/x86/kernel/apic/io_apic.c b/arch/x86/kernel/apic/io_apic.c
> index 645c8eb..9bcbfa3 100644
> --- a/arch/x86/kernel/apic/io_apic.c
> +++ b/arch/x86/kernel/apic/io_apic.c
> @@ -36,6 +36,7 @@
> #include <linux/freezer.h>
> #include <linux/kthread.h>
> #include <linux/jiffies.h> /* time_after() */
> +#include <linux/sfi.h>
> #ifdef CONFIG_ACPI
> #include <acpi/acpi_bus.h>
> #endif
> @@ -63,6 +64,7 @@
> #include <asm/uv/uv_hub.h>
> #include <asm/uv/uv_irq.h>
> #include <asm/platform_feature.h>
> +#include <asm/apb_timer.h>
> #include <asm/apic.h>
>
> #define __apicdebuginit(type) static type __init
> @@ -2884,6 +2886,13 @@ static inline void __init check_timer(void)
>
> local_irq_save(flags);
>
> + if (platform_has(X86_PLATFORM_FEATURE_APBT)) {
> + if (timer_irq_works()) {
> + printk(KERN_INFO "APB timer works\n");
> + return;

What restores interrupt flags ?

> + } else
> + panic("Check APB timer failed\n");
> + }
> /*
> * get/set the timer IRQ vector:
> */
> @@ -4225,3 +4234,62 @@ static int __init ioapic_insert_resources(void)
> /* Insert the IO APIC resources after PCI initialization has occured to handle
> * IO APICS that are mapped in on a BAR in PCI space. */
> late_initcall(ioapic_insert_resources);
> +
> +/* Enable IOAPIC early just for system timer */
> +void __init pre_init_apic_IRQ(void)
> +{
> + struct irq_cfg *cfg;
> +
> + printk(KERN_INFO "Early APIC setup for system timer\n");
> +#ifndef CONFIG_SMP
> + phys_cpu_present_map = physid_mask_of_physid(boot_cpu_physical_apicid);
> +#endif
> + setup_local_APIC();
> + cfg = irq_cfg(0);
> + add_pin_to_irq_node(cfg, 0, 0, 0);
> + setup_timer_IRQ0_pin(0, 0, cfg->vector);
> +}
> +
> +#ifdef CONFIG_APB_TIMER
> +int arch_setup_apbt_irqs(int irq, int trigger, int mask, int cpu)
> +{

This looks wrong. It's conflicting with the generic affinity
setting. I need to have a closer look to figure out the details.

Thanks,

tglx



\
 
 \ /
  Last update: 2009-08-19 18:01    [W:0.071 / U:0.592 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site