* ACPI_BUS dependency for CONFIG_PNP
@ 2004-11-15 11:46 Andi Kleen
[not found] ` <20041115114654.GJ1662-B4tOwbsTzaBolqkO4TVVkw@public.gmane.org>
0 siblings, 1 reply; 4+ messages in thread
From: Andi Kleen @ 2004-11-15 11:46 UTC (permalink / raw)
To: acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f
Cc: len.brown-ral2JQCrhuEAvxtiuMwx3w,
shaohua.li-ral2JQCrhuEAvxtiuMwx3w
2.6.10rc2 got this new dependency:
config PNP
bool "Plug and Play support"
depends on ISA || ACPI_BUS
from the ACPI update. This enables ISA-PNP on x86-64, where
it was always disabled previously and is completely useless. Can someone
explain the rationale behind that change? IMHO you should never use
ISA-PNP without CONFIG_ISA.
I would prefer if that hunk was reverted.
Thanks,
-Andi
-------------------------------------------------------
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: ACPI_BUS dependency for CONFIG_PNP
[not found] ` <20041115114654.GJ1662-B4tOwbsTzaBolqkO4TVVkw@public.gmane.org>
@ 2004-11-15 16:42 ` Len Brown
2004-11-15 17:35 ` Andi Kleen
0 siblings, 1 reply; 4+ messages in thread
From: Len Brown @ 2004-11-15 16:42 UTC (permalink / raw)
To: Andi Kleen; +Cc: ACPI Developers, Shaohua Li, Adam Belay
On Mon, 2004-11-15 at 06:46, Andi Kleen wrote:
> 2.6.10rc2 got this new dependency:
>
> config PNP
> bool "Plug and Play support"
> depends on ISA || ACPI_BUS
>
> from the ACPI update. This enables ISA-PNP on x86-64, where
> it was always disabled previously and is completely useless. Can
> someone
> explain the rationale behind that change? IMHO you should never use
> ISA-PNP without CONFIG_ISA.
Linux PNP handles up to 3 protocols:
ISAPNP -- useful only if CONFIG_ISA, independent of PNPBIOS and PNPACPI
PNPBIOS -- useful only if acpi_disabled
PNPACPI -- useful if !acpi_disabled
drivers/pnp/isapnp/Kconfig appears to already have the dependency you're
looking for to make sure that ISAPNP is not defined without CONFIG_ISA:
config ISAPNP
bool "ISA Plug and Play support"
depends on PNP && ISA
-------------------------------------------------------
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: ACPI_BUS dependency for CONFIG_PNP
2004-11-15 16:42 ` Len Brown
@ 2004-11-15 17:35 ` Andi Kleen
[not found] ` <20041115173525.GD13402-B4tOwbsTzaBolqkO4TVVkw@public.gmane.org>
0 siblings, 1 reply; 4+ messages in thread
From: Andi Kleen @ 2004-11-15 17:35 UTC (permalink / raw)
To: Len Brown; +Cc: Andi Kleen, ACPI Developers, Shaohua Li, Adam Belay
On Mon, Nov 15, 2004 at 11:42:47AM -0500, Brown, Len wrote:
> On Mon, 2004-11-15 at 06:46, Andi Kleen wrote:
> > 2.6.10rc2 got this new dependency:
> >
> > config PNP
> > bool "Plug and Play support"
> > depends on ISA || ACPI_BUS
> >
> > from the ACPI update. This enables ISA-PNP on x86-64, where
> > it was always disabled previously and is completely useless. Can
> > someone
> > explain the rationale behind that change? IMHO you should never use
> > ISA-PNP without CONFIG_ISA.
>
> Linux PNP handles up to 3 protocols:
> ISAPNP -- useful only if CONFIG_ISA, independent of PNPBIOS and PNPACPI
> PNPBIOS -- useful only if acpi_disabled
> PNPACPI -- useful if !acpi_disabled
Useful for what? As far as I know no device on x86-64 needs PNPBIOS
or PNPACPI
>
> drivers/pnp/isapnp/Kconfig appears to already have the dependency you're
> looking for to make sure that ISAPNP is not defined without CONFIG_ISA:
>
> config ISAPNP
> bool "ISA Plug and Play support"
> depends on PNP && ISA
>
Perhaps. But it doesn't work.
-Andi
-------------------------------------------------------
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: ACPI_BUS dependency for CONFIG_PNP
[not found] ` <20041115173525.GD13402-B4tOwbsTzaBolqkO4TVVkw@public.gmane.org>
@ 2004-11-16 5:41 ` Adam Belay
0 siblings, 0 replies; 4+ messages in thread
From: Adam Belay @ 2004-11-16 5:41 UTC (permalink / raw)
To: Andi Kleen; +Cc: Len Brown, ACPI Developers, Shaohua Li, Adam Belay
On Mon, Nov 15, 2004 at 06:35:25PM +0100, Andi Kleen wrote:
> On Mon, Nov 15, 2004 at 11:42:47AM -0500, Brown, Len wrote:
> > On Mon, 2004-11-15 at 06:46, Andi Kleen wrote:
> > > 2.6.10rc2 got this new dependency:
> > >
> > > config PNP
> > > bool "Plug and Play support"
> > > depends on ISA || ACPI_BUS
> > >
> > > from the ACPI update. This enables ISA-PNP on x86-64, where
> > > it was always disabled previously and is completely useless. Can
> > > someone
> > > explain the rationale behind that change? IMHO you should never use
> > > ISA-PNP without CONFIG_ISA.
> >
> > Linux PNP handles up to 3 protocols:
> > ISAPNP -- useful only if CONFIG_ISA, independent of PNPBIOS and PNPACPI
> > PNPBIOS -- useful only if acpi_disabled
> > PNPACPI -- useful if !acpi_disabled
>
> Useful for what? As far as I know no device on x86-64 needs PNPBIOS
> or PNPACPI
Most x86-64 hardware still utilizes ACPI for certain devices.
>
> >
> > drivers/pnp/isapnp/Kconfig appears to already have the dependency you're
> > looking for to make sure that ISAPNP is not defined without CONFIG_ISA:
> >
> > config ISAPNP
> > bool "ISA Plug and Play support"
> > depends on PNP && ISA
> >
>
> Perhaps. But it doesn't work.
In which way doesn't it work? It seems to pretty clearly require ISA support.
Is there a bug?
Thanks,
Adam
-------------------------------------------------------
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2004-11-16 5:41 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-11-15 11:46 ACPI_BUS dependency for CONFIG_PNP Andi Kleen
[not found] ` <20041115114654.GJ1662-B4tOwbsTzaBolqkO4TVVkw@public.gmane.org>
2004-11-15 16:42 ` Len Brown
2004-11-15 17:35 ` Andi Kleen
[not found] ` <20041115173525.GD13402-B4tOwbsTzaBolqkO4TVVkw@public.gmane.org>
2004-11-16 5:41 ` Adam Belay
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox