Patrick Ale wrote:
> On Fri, Aug 1, 2008 at 1:34 AM, Dan Mick <[EMAIL PROTECTED]> wrote:
>>
>> Not surprising, since that's not the message you posted:
>>
>> Jul 31 16:15:55 nemesis pci_autoconfig: [ID 516285 kern.warning]
>> WARNING: failed to program mem space [0/31/3] [EMAIL PROTECTED] length 0x100
>
>> $ ggrep -Rl "failed to program mem" *
> uts/sun4u/io/sbd_mem.c

Your Aspire laptop won't run any sun4u sparc code.

usr/src/uts/intel/io/pci/pci_boot.c:

/*
  * Add the "reg" and "assigned-addresses" property
  */
static int
add_reg_props(dev_info_t *dip, uchar_t bus, uchar_t dev, uchar_t func,
     int config_op, int pciide)
{
        ...
                                 if (base == 0) {
                                         cmn_err(CE_WARN, "failed to program "
                                             "mem space [%d/%d/%d] [EMAIL 
PROTECTED]"
                                             " length 0x%x",
                                             bus, dev, func, offset, len);
                                 }
        ...
}

I'd breakpoint at that cmn_err call and then dump the devinfo
in the arguments to see what we're dealing with;  then remove
that device or play with it's config in bios etc to try and
encourage it forward.

Gavin
_______________________________________________
opensolaris-code mailing list
opensolaris-code@opensolaris.org
http://mail.opensolaris.org/mailman/listinfo/opensolaris-code

Reply via email to