On Monday 28 May 2007 01:58:32 am M. Warner Losh wrote: > In message: <4659DAD1.9040609_at_elischer.org> > Julian Elischer <julian_at_elischer.org> writes: > : I finally rebooted my old laptop on a -current from about 3 weeks ago. > : (I did the rebuild then but the machine has been off since) > : and ta-da! no network card.. it is a Dell inspiron 7500 with > : a pccard 'ed' device card.. > : > : Was there anything broken 3 weeks ago WRT old ed driver cards? > : or pccd? > : > : It come up saying "unknown card type".. Which is odd > : as it always used to knwo what to do. > : > : This machine has a local CVS mirror on it so > : even though it's offline, I'm rebuilding from 2 months ago.. > : (I couldn't just reboot to the old system as there is really only just > : room for one kernel directory on the root partition.) > : > : More info when it comes back online > > I think, but am not sure, this is related to some changes John made to > acpi resource allocation. I get weird port allocations due to some > questionable assumptions on his part... I've not had time to look > into this in detail, but I see it on all cardbus cards that allocate > I/O ports. All of the ones that only do memory work great. You can try this perhaps: --- //depot/vendor/freebsd/src/sys/dev/acpica/acpi.c 2007/05/08 14:37:51 +++ //depot/user/jhb/acpipci/dev/acpica/acpi.c 2007/05/08 22:28:25 _at__at_ -1030,17 +1030,18 _at__at_ } /* - * If this is an allocation of a specific range, see if we can satisfy - * the request from our system resource regions. If we can't, pass the - * request up to the parent. + * Try to pass the request up to our parent first. If that + * doesn't work, then see if we can satisfy the request via a + * suballocation from our system resource regions. */ - if (start + count - 1 == end && rm != NULL) + res = BUS_ALLOC_RESOURCE(device_get_parent(bus), child, type, rid, + start, end, count, flags); + if (res == NULL && rm != NULL) { res = rman_reserve_resource(rm, start, end, count, flags & ~RF_ACTIVE, child); - if (res == NULL) { - res = BUS_ALLOC_RESOURCE(device_get_parent(bus), child, type, rid, - start, end, count, flags); - } else { + if (res == NULL) + goto out; + rman_set_rid(res, *rid); /* If requested, activate the resource using the parent's method. */ -- John BaldwinReceived on Fri Jul 13 2007 - 11:19:36 UTC
This archive was generated by hypermail 2.4.0 : Wed May 19 2021 - 11:39:14 UTC