lkml.org 
[lkml]   [2008]   [Apr]   [21]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
From
SubjectRe: [patch 22/53] PNP: factor pnp_init_resource_table() and pnp_clean_resource_table()
Date
On Monday 21 April 2008 12:41:31 pm Rene Herman wrote:
> isapnp_get_resources didn't allocate simply since it hasn't been called yet;
> there's nothing to get from an inactive device. It is pnp_assign_resources
> which constructs the table which isapnp_set_resources then puts to the hardware.

Yes, right. I reproduced this on an ACPI system where the BIOS leaves
a couple devices disabled.

> Getting things working also needs setting pnp_res->index (to nport, nmem,
> nirq, ndma in pnp_assign_resources) so that the isapnp_set_resources which
> follows sets to the correct hardware index, but at that point position in
> the list and the index are mixing together in unhealthy ways -- in the
> pnp_assign_foo helpers, pnp_get_resource(.., idx) just get the "idx-th"
> resource of the correct type in the list but it seems it really should be
> getting the resource of the correct type with its ->index set to "idx".

I don't mind setting pnp_res->index in the generic pnp_assign_* code.
We have to do that already in pnp_set_current_resources() (the /sys
interface), and I don't see a good way around it.

In pnp_assign_resources(), we currently assume that all independent
options appear before any dependent ones because we compute nport,
nmem, etc by iterating through the independent options first. Then
we use those nport, nmem, etc values as the "index" (CSR index for
ISAPNP, nth resource type in the template for PNPBIOS and PNPACPI).
I don't know whether this assumption is in the spec, but at least
we've assumed it for a long time.

I'm trying to figure out the cases where pnp_assign_resources()
has to pay attention to pre-existing configuration. It looks like
the common case is that we'll start with an empty resource list, and
we can just find non-conflicting values and use pnp_add_foo_resource().

But I'm concerned about all the IORESOURCE_AUTO stuff. Seems like
we should only get to pnp_assign_foo() with !IORESOURCE_AUTO if
(a) we've used /sys to set some but not all resources, or (b) the
BIOS described fewer things in _CRS than in _PRS (which seems like
a BIOS bug). But I'm not comfortable with this yet.

> Anyways, currently things really don't work though, due to
>
> 1) pnp_assign_resources needing to construct the list and
> 2) it needing to match resources by their index.
>
> (do note that pnp_assign_foo are the only callers of pnp_check_foo and they
> could be either merged together or at least not communicate via "idx" but
> simply by passing the res/pnp_res).

Yes, I'd like to do that. But I think I'd better wait or I'll never
get anything finished :-)

> Also note -- manually set resources are skipped in pnp_assign_resources, yet
> they also definitely need their index initialized for use by
> isapnp_set_resources.

Yes. "Manually set resources" includes ones from /sys and also the
resources we discover from active devices. We should already be setting
those in the /sys and ISAPNP "read resources" paths.

Bjorn


\
 
 \ /
  Last update: 2008-04-22 01:13    [W:2.069 / U:0.396 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site