Bug 436324
Summary: | RHEL4 installer kernels don't boot on a Intel DG965RY motherboard (G965 chipset) | ||||||
---|---|---|---|---|---|---|---|
Product: | Red Hat Enterprise Linux 4 | Reporter: | David Howells <dhowells> | ||||
Component: | kernel | Assignee: | David Howells <dhowells> | ||||
Status: | CLOSED DUPLICATE | QA Contact: | Martin Jenner <mjenner> | ||||
Severity: | low | Docs Contact: | |||||
Priority: | low | ||||||
Version: | 4.6 | CC: | tao | ||||
Target Milestone: | rc | ||||||
Target Release: | --- | ||||||
Hardware: | x86_64 | ||||||
OS: | Linux | ||||||
Whiteboard: | |||||||
Fixed In Version: | Doc Type: | Bug Fix | |||||
Doc Text: | Story Points: | --- | |||||
Clone Of: | Environment: | ||||||
Last Closed: | 2008-03-12 15:17:25 UTC | Type: | --- | ||||
Regression: | --- | Mount Type: | --- | ||||
Documentation: | --- | CRM: | |||||
Verified Versions: | Category: | --- | |||||
oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |||||
Cloudforms Team: | --- | Target Upstream Version: | |||||
Embargoed: | |||||||
Attachments: |
|
Description
David Howells
2008-03-06 15:11:44 UTC
I put some printks into the PCI probing code, and have determined that the box locks up when pci_read_bases() attempts to determine the size of PCI_BASE_ADDRESS_2 with this line: reg = PCI_BASE_ADDRESS_0 + (pos << 2); pci_read_config_dword(dev, reg, &l); pci_write_config_dword(dev, reg, ~0); <<<<<<<<<< here pci_read_config_dword(dev, reg, &sz); pci_write_config_dword(dev, reg, l); Adding "pci=nommconf" to the command line fixes the problem. Created attachment 297689 [details]
Disable PCI IO & MEM access on a device we're probing for BAR size
The G965 graphics hardware BARs can be probed, provided that access through the
I/O and Memory regions on that device are disabled for the duration of the
probe. I'm told by an Intel engineer that PCI_COMMAND_{IO,MEMORY} should
always be disabled during BAR probing.
|