public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Randy Dunlap <randy.dunlap@oracle.com>
To: John Keller <jpk@sgi.com>
Cc: linux-kernel@vger.kernel.org, akpm@linux-foundation.org, steiner@sgi.com
Subject: Re: [PATCH] - x86_64-add-ioapic-nmi-support-fix-3
Date: Fri, 29 Jun 2007 16:12:50 -0700	[thread overview]
Message-ID: <468591F2.6050904@oracle.com> (raw)
In-Reply-To: <20070629220540.13496.17310.sendpatchset@attica.americas.sgi.com>

[adding Andi Kleen]

John Keller wrote:
> Place all the IOACPI NMI support code under CONFIG_ACPI
> to clear up build errors with certain configs.
> 
> Signed-off-by: John Keller <jpk@sgi.com>
> ---

Is there some architectural reason that IO APIC NMI support should
require ACPI?

Is this a new requirement?  It seems like a step backwards to me.


Documentation/nmi_watchdog.txt doesn't say anything about ACPI being
needed.  It does say:

"For x86-64, the needed APIC is always compiled in, and the NMI watchdog is
always enabled with I/O-APIC mode (nmi_watchdog=1). Currently, local APIC
mode (nmi_watchdog=2) does not work on x86-64.

Using local APIC (nmi_watchdog=2) needs the first performance register, so
you can't use it for other purposes (such as high precision performance
profiling.) However, at least oprofile and the perfctr driver disable the
local APIC NMI watchdog automatically."



>  arch/x86_64/kernel/io_apic.c |   77 +++++++++++++++++----------------
>  1 file changed, 40 insertions(+), 37 deletions(-)
> 
> 
> Index: linux-2.6.22-rc6/arch/x86_64/kernel/io_apic.c
> ===================================================================
> --- linux-2.6.22-rc6.orig/arch/x86_64/kernel/io_apic.c	2007-06-29 08:56:46.000000000 -0500
> +++ linux-2.6.22-rc6/arch/x86_64/kernel/io_apic.c	2007-06-29 10:28:08.109040333 -0500
> @@ -76,6 +76,10 @@ struct irq_cfg irq_cfg[NR_IRQS] __read_m
>  	[15] = { .domain = CPU_MASK_ALL, .vector = IRQ15_VECTOR, },
>  };
>  
> +#ifdef CONFIG_ACPI
> +static void setup_ioapic_nmi_irq(int ioapic, int pin,
> +				 struct IO_APIC_route_entry *entry);
> +#endif
>  static int assign_irq_vector(int irq, cpumask_t mask);
>  
>  #define __apicdebuginit  __init
> @@ -1168,9 +1172,6 @@ void __apicdebuginit print_PIC(void)
>  
>  #endif  /*  0  */
>  
> -static void setup_ioapic_nmi_irq(int ioapic, int pin,
> -				 struct IO_APIC_route_entry *entry);
> -
>  static void __init enable_IO_APIC(void)
>  {
>  	union IO_APIC_reg_01 reg_01;
> @@ -1211,8 +1212,10 @@ static void __init enable_IO_APIC(void)
>  				continue;
>  			}
>  
> +#ifdef CONFIG_ACPI
>  			if (entry.delivery_mode == dest_NMI)
>  				setup_ioapic_nmi_irq(apic, pin, &entry);
> +#endif
>  		}
>  	}
>  
> @@ -1586,40 +1589,6 @@ static void setup_nmi (void)
>  	printk(" done.\n");
>  }
>  
> -#define disable_nmi_ioapic      mask_IO_APIC_irq
> -#define enable_nmi_ioapic       unmask_IO_APIC_irq
> -
> -static struct irq_chip nmi_ioapic_chip __read_mostly = {
> -	.name		= "IO-APIC NMI",
> -	.enable		= enable_nmi_ioapic,
> -	.disable	= disable_nmi_ioapic,
> -	.mask		= mask_IO_APIC_irq,
> -	.unmask		= unmask_IO_APIC_irq,
> -};
> -
> -void __init setup_ioapic_nmi_irq(int apic, int pin,
> -				 struct IO_APIC_route_entry *entry)
> -{
> -	int irq;
> -
> -	entry->dest_mode = INT_DEST_MODE;
> -	entry->dest = cpu_mask_to_apicid(TARGET_CPUS);
> -	ioapic_write_entry(apic, pin, *entry);
> -
> -	irq = mp_apic_pin_to_gsi(apic, pin);
> -
> -	/* Setup pin_2_irq[irq] entry */
> -	add_pin_to_irq(irq, apic, pin);
> -
> -	irq_desc[irq].status = IRQ_NOREQUEST | IRQ_NO_BALANCING;
> -	if (!entry->mask) {
> -		irq_desc[irq].status &= ~IRQ_DISABLED;
> -		irq_desc[irq].depth = 0;
> -	}
> -
> -	set_irq_chip(irq, &nmi_ioapic_chip);
> -}
> -
>  /*
>   * This looks a bit hackish but it's about the only one way of sending
>   * a few INTA cycles to 8259As and any associated glue logic.  ICR does
> @@ -2282,6 +2251,40 @@ void __init io_apic_set_nmi_src_irq(int 
>  	ioapic_write_entry(ioapic, pin, entry);
>  }
>  
> +#define disable_nmi_ioapic      mask_IO_APIC_irq
> +#define enable_nmi_ioapic       unmask_IO_APIC_irq
> +
> +static struct irq_chip nmi_ioapic_chip __read_mostly = {
> +	.name		= "IO-APIC NMI",
> +	.enable		= enable_nmi_ioapic,
> +	.disable	= disable_nmi_ioapic,
> +	.mask		= mask_IO_APIC_irq,
> +	.unmask		= unmask_IO_APIC_irq,
> +};
> +
> +void __init setup_ioapic_nmi_irq(int apic, int pin,
> +				 struct IO_APIC_route_entry *entry)
> +{
> +	int irq;
> +
> +	entry->dest_mode = INT_DEST_MODE;
> +	entry->dest = cpu_mask_to_apicid(TARGET_CPUS);
> +	ioapic_write_entry(apic, pin, *entry);
> +
> +	irq = mp_apic_pin_to_gsi(apic, pin);
> +
> +	/* Setup pin_2_irq[irq] entry */
> +	add_pin_to_irq(irq, apic, pin);
> +
> +	irq_desc[irq].status = IRQ_NOREQUEST | IRQ_NO_BALANCING;
> +	if (!entry->mask) {
> +		irq_desc[irq].status &= ~IRQ_DISABLED;
> +		irq_desc[irq].depth = 0;
> +	}
> +
> +	set_irq_chip(irq, &nmi_ioapic_chip);
> +}
> +
>  #endif /* CONFIG_ACPI */
>  
>  


-- 
~Randy
*** Remember to use Documentation/SubmitChecklist when testing your code ***

  reply	other threads:[~2007-06-29 23:12 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-06-29 22:05 [PATCH] - x86_64-add-ioapic-nmi-support-fix-3 John Keller
2007-06-29 23:12 ` Randy Dunlap [this message]
2007-06-30 14:29   ` John Keller
2007-06-30 14:44     ` Randy Dunlap

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=468591F2.6050904@oracle.com \
    --to=randy.dunlap@oracle.com \
    --cc=akpm@linux-foundation.org \
    --cc=jpk@sgi.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=steiner@sgi.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox