Bug 438299
| Summary: | DDC fails on PowerBook | ||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| Product: | [Fedora] Fedora | Reporter: | David Woodhouse <dwmw2> | ||||||||
| Component: | xorg-x11-drv-ati | Assignee: | Dave Airlie <airlied> | ||||||||
| Status: | CLOSED RAWHIDE | QA Contact: | Fedora Extras Quality Assurance <extras-qa> | ||||||||
| Severity: | low | Docs Contact: | |||||||||
| Priority: | low | ||||||||||
| Version: | rawhide | CC: | jonstanley, xgl-maint | ||||||||
| Target Milestone: | --- | ||||||||||
| Target Release: | --- | ||||||||||
| Hardware: | All | ||||||||||
| OS: | Linux | ||||||||||
| Whiteboard: | |||||||||||
| Fixed In Version: | Doc Type: | Bug Fix | |||||||||
| Doc Text: | Story Points: | --- | |||||||||
| Clone Of: | Environment: | ||||||||||
| Last Closed: | 2008-04-18 06:02:05 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: | |||||||||||
| Bug Depends On: | |||||||||||
| Bug Blocks: | 439966 | ||||||||||
| Attachments: |
|
||||||||||
|
Description
David Woodhouse
2008-03-20 09:39:28 UTC
Created attachment 298672 [details]
Xorg.log from Fedora 8
Created attachment 298673 [details]
Xorg.log from Fedora 9
Created attachment 298688 [details]
Electra Xorg.log
I see DDC failure on an NV card too...
The DDC failure on ATI goes away, along with the crash on my G5, when I change RADEONGetBIOSInfo() to avoid allocating a buffer of 64KiB and then immediately asking pci_device_read_rom() to read the 128KiB BIOS ROM into it. Why is it that we don't allocate a buffer of size info->PciInfo->rom_size, anyway? That seems to be commented out, and we allocate RADEON_VBIOS_SIZE (64KiB) instead. --- a/src/radeon_bios.c
+++ b/src/radeon_bios.c
@@ -74,8 +74,8 @@ Bool RADEONGetBIOSInfo(ScrnInfoPtr pScrn, xf86Int10InfoPtr
pInt10)
unsigned short dptr;
#ifdef XSERVER_LIBPCIACCESS
- //info->VBIOS = xalloc(info->PciInfo->rom_size);
- info->VBIOS = xalloc(RADEON_VBIOS_SIZE);
+ info->VBIOS = xalloc(info->PciInfo->rom_size);
+ // info->VBIOS = xalloc(RADEON_VBIOS_SIZE);
#else
info->VBIOS = xalloc(RADEON_VBIOS_SIZE);
#endif
Has this made it into rawhide yet? (just reviewing the F9 blocker) should be fixed in rawhide this patch is in at least. |