18 Oct, 2008
10 commits
-
Someone noticed these registers moved around for later chips,
so we redo the codepaths per-chip. PCIE chips don't appear to
require explicit enables.Signed-off-by: Dave Airlie
-
This adds support for the RS400 family of IGPs for Intel CPUs.
Signed-off-by: Dave Airlie
-
This adds support for the HS2100 IGP chipset.
Signed-off-by: Dave Airlie
-
This should improve performance by avoiding uncached reads by the CPU (the
point of having a status page), and may improve stability. This patch only
affects G33, GM45 and G45 chips as those are the only ones using GTT-based
HWS mappings.Signed-off-by: Keith Packard
Signed-off-by: Eric Anholt
Signed-off-by: Dave Airlie -
Like the last patch but adds a macro to get at the irq value instead of
dereferencing pdev directly. Should make things easier for the BSD guys and
if we ever support non-PCI devices.Signed-off-by: Jesse Barnes
Signed-off-by: Dave Airlie -
Signed-off-by: Kristian Høgsberg
Signed-off-by: Eric Anholt
Signed-off-by: Dave Airlie -
Signed-off-by: Kristian Høgsberg
Signed-off-by: Eric Anholt
Signed-off-by: Dave Airlie -
GEM allows the creation of persistent buffer objects accessible by the
graphics device through new ioctls for managing execution of commands on the
device. The userland API is almost entirely driver-specific to ensure that
any driver building on this model can easily map the interface to individual
driver requirements.GEM is used by the 2d driver for managing its internal state allocations and
will be used for pixmap storage to reduce memory consumption and enable
zero-copy GLX_EXT_texture_from_pixmap, and in the 3d driver is used to enable
GL_EXT_framebuffer_object and GL_ARB_pixel_buffer_object.Signed-off-by: Eric Anholt
Signed-off-by: Dave Airlie -
Previously, drivers supporting vblank interrupt waits would run the interrupt
all the time, or all the time that any 3d client was running, preventing the
CPU from sleeping for long when the system was otherwise idle. Now, interrupts
are disabled any time that no client is waiting on a vblank event. The new
method uses vblank counters on the chipsets when the interrupts are turned
off, rather than counting interrupts, so that we can continue to present
accurate vblank numbers.Co-author: Michel Dänzer
Signed-off-by: Jesse Barnes
Signed-off-by: Eric Anholt
Signed-off-by: Dave Airlie -
There is no point in considering FreeBSD et al. in the linux kernel
source code.Signed-off-by: Carlos R. Mafra
Signed-off-by: Andrew Morton
Signed-off-by: Dave Airlie
15 Jul, 2008
1 commit
-
With new userspace libpciaccess we can get a conflicting mapping
on the PCIE GART table in the video RAM. Always try and map it _wc.Signed-off-by: Dave Airlie
14 Jul, 2008
1 commit
-
With the coming of kernel based modesetting and the memory manager stuff,
the everything in one directory approach was getting very ugly and
starting to be unmanageable.This restructures the drm along the lines of other kernel components.
It creates a drivers/gpu/drm directory and moves the hw drivers into
subdirectores. It moves the includes into an include/drm, and
sets up the unifdef for the userspace headers we should be exporting.Signed-off-by: Dave Airlie