Skip to content
Commit 5769907a authored by Max Dmitrichenko's avatar Max Dmitrichenko Committed by David S. Miller
Browse files

sparc64: Fix PCI resource mapping on sparc64



There is a problem discovered in recent versions of ATI Mach64 driver
in X.org on sparc64 architecture. In short, the driver fails to mmap
MMIO aperture (PCI resource #2).

I've found that kernel's __pci_mmap_make_offset() returns EINVAL. It
checks whether user attempts to mmap more than the resource length,
which is 0x1000 bytes in our case. But PAGE_SIZE on SPARC64 is 0x2000
and this is what actually is being mmaped. So __pci_mmap_make_offset()
failed for this PCI resource.

Signed-off-by: default avatarMax Dmitrichenko <dmitrmax@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent a1995a65
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment