public inbox for linux-ia64@vger.kernel.org
 help / color / mirror / Atom feed
* Does the new ACPI code work with bigsur?
@ 2003-07-28 21:44 H. J. Lu
  2003-07-28 22:06 ` Matthew Wilcox
  2003-07-28 23:18 ` H. J. Lu
  0 siblings, 2 replies; 3+ messages in thread
From: H. J. Lu @ 2003-07-28 21:44 UTC (permalink / raw)
  To: linux-ia64

2.4.21 kernel has

ACPI Subsystem revision 20020517

and works fine on bigsur. Has anyone got

ACPI Subsystem revision 20030619

working on bigsur?


H.J.

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: Does the new ACPI code work with bigsur?
  2003-07-28 21:44 Does the new ACPI code work with bigsur? H. J. Lu
@ 2003-07-28 22:06 ` Matthew Wilcox
  2003-07-28 23:18 ` H. J. Lu
  1 sibling, 0 replies; 3+ messages in thread
From: Matthew Wilcox @ 2003-07-28 22:06 UTC (permalink / raw)
  To: linux-ia64

On Mon, Jul 28, 2003 at 02:44:07PM -0700, H. J. Lu wrote:
> 2.4.21 kernel has
> 
> ACPI Subsystem revision 20020517
> 
> and works fine on bigsur. Has anyone got
> 
> ACPI Subsystem revision 20030619
> 
> working on bigsur?

what firmware are you running?  this is a common problem with bigsur-era
machines.

-- 
"It's not Hollywood.  War is real, war is primarily not about defeat or
victory, it is about death.  I've seen thousands and thousands of dead bodies.
Do you think I want to have an academic debate on this subject?" -- Robert Fisk

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: Does the new ACPI code work with bigsur?
  2003-07-28 21:44 Does the new ACPI code work with bigsur? H. J. Lu
  2003-07-28 22:06 ` Matthew Wilcox
@ 2003-07-28 23:18 ` H. J. Lu
  1 sibling, 0 replies; 3+ messages in thread
From: H. J. Lu @ 2003-07-28 23:18 UTC (permalink / raw)
  To: linux-ia64

On Mon, Jul 28, 2003 at 11:06:23PM +0100, Matthew Wilcox wrote:
> On Mon, Jul 28, 2003 at 02:44:07PM -0700, H. J. Lu wrote:
> > 2.4.21 kernel has
> > 
> > ACPI Subsystem revision 20020517
> > 
> > and works fine on bigsur. Has anyone got
> > 
> > ACPI Subsystem revision 20030619
> > 
> > working on bigsur?
> 
> what firmware are you running?  this is a common problem with bigsur-era
> machines.

My firmware is OK. This patch allows the kernel to boot on bigsur.


H.J.
--- linux/drivers/acpi/osl.c.acpi	Mon Jul 28 11:41:53 2003
+++ linux/drivers/acpi/osl.c	Mon Jul 28 15:12:44 2003
@@ -250,7 +250,12 @@ acpi_os_install_interrupt_handler(u32 ir
 	irq = acpi_fadt.sci_int;
 
 #ifdef CONFIG_IA64
-	irq = gsi_to_vector(irq);
+	irq = acpi_irq_to_vector (irq);
+	if (irq < 0) {
+		printk(KERN_ERR PREFIX "SCI (IRQ%d/%d) not registerd\n",
+		       irq, acpi_fadt.sci_int);
+		return AE_OK;
+	}
 #endif
 	acpi_irq_irq = irq;
 	acpi_irq_handler = handler;

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2003-07-28 23:18 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-07-28 21:44 Does the new ACPI code work with bigsur? H. J. Lu
2003-07-28 22:06 ` Matthew Wilcox
2003-07-28 23:18 ` H. J. Lu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox