-----Original Message----- From: Hugh Greenberg [mailto:hng@lanl.gov] Sent: Wednesday, October 21, 2009 8:58 AM To: Myles Watson; coreboot@coreboot.org Subject: Re: [Fwd: Re: [Fwd: Re: [coreboot] [Fwd: Re: arima hdama problem]]]
It seems like the changes to apic_timer.c were not needed as it is still getting to the same spot without them:
Good.
PCI: 00:1f.0, bad id 0xffffffff POST: 0x25
I would add a print statement in src/devices/pci_device.c:
/* For all children that implement scan_bus() (i.e. bridges) * scan the bus behind that child. */ for (child = bus->children; child; child = child->sibling) { /* Put a print statement here that prints out the child that's being scanned. */ printk_debug("scan bus of %s\n", dev_path(child)); max = scan_bus(child, max); }
I'm away from my machine right now, so I don't have a patch.
Thanks, Myles