| Age | Commit message (Collapse) | Author | 
|---|
|  | Add suspend/resume support to the i915 driver.  Moves some of the
initialization into the driver load routine, and fixes up places where we
assumed no dev_private existed in some of the cleanup paths.  This allows
us to suspend/resume properly even if X isn't running. | 
|  | Make DRM devices use real Linux devices instead of class devices, which are
going away.  While we're at it, clean up some of the interfaces to take
struct drm_device * or struct device * and use the global drm_class where
needed instead of passing it around. | 
|  | don't mask off the high dword.
Signed-off-by: Thomas Hellstrom <thomas-at-tungstengraphics-dot-com> | 
|  | Set bo init minor to 0.
Add the version function to header. | 
|  | Implement a version check IOCTL for drivers that don't use
drmMMInit from user-space.
Remove the minor check from the kernel code. That's really up
to the driver.
Bump major. | 
|  |  | 
|  |  | 
|  |  | 
|  |  | 
|  |  | 
|  | guarantee that it doesn't clash with the X server. | 
|  | Add interface entry cleaning a memory type without touching NO_EVICT buffers. | 
|  | Fix i915 since last commit. | 
|  |  | 
|  | associated with a particular command submission. | 
|  | Change the restriction that non-creators can't change the buffer flags to
non-creators can't change EVICT and NO_MOVE flags. | 
|  |  | 
|  | Remove need for lock for now.
May create races when we clean memory areas or on takedown.
Needs to be fixed.
Really do a validate on buffer creation in order to avoid problems with
fixed memory buffers. | 
|  | set pinning."
This reverts cf2d569daca6954d11a796f4d110148ae2e0c827 commit. | 
|  | This reverts f9c27aa50b715a7d21858f1ce9e4785120bd0c36 commit. | 
|  | This reverts 3a0bc518e35c62bb9c64c9105f836584d949653f commit. | 
|  |  | 
|  | We now always create a drm_ref_object for user objects and this is then the only
things that holds a reference to the user object.  This way unreference on will
destroy the user object when the last drm_ref_object goes way. | 
|  | The buffer object type is still tracked internally, but it is no longer
part of the user space visible ioctl interface.  If the bo create ioctl
specifies a non-NULL buffer address we assume drm_bo_type_user,
otherwise drm_bo_type_dc.  Kernel side allocations call
drm_buffer_object_create() directly and can still specify drm_bo_type_kernel.
Not 100% this makes sense either, but with this patch, the buffer type
is no longer exported and we can clean up the internals later on. | 
|  |  | 
|  |  | 
|  |  | 
|  |  | 
|  |  | 
|  | get out of sync. | 
|  |  | 
|  |  | 
|  |  | 
|  | Also no need to do pre-populate work on single page | 
|  |  | 
|  | This isn't 100% as command submission via PCI-e GART buffers doesn't work.
I've hacked around that for the time being.  This is essentially the code
that was used at the POWER.org event to show Bimini. | 
|  | as nobody ever derefs dummy, however not returning does the deref
correctly. | 
|  |  | 
|  | All nv30 functions in nv30_graph.c that can be used on nv20 are renamed
as accordingly. nv20 specific parts from nv20_graph.c are moved into
nv30_graph.c. | 
|  | Building without optimization causes the drm module not to link correctly on
ppc. | 
|  |  | 
|  |  | 
|  |  | 
|  | Conflicts:
	linux-core/drm_bo.c
	linux-core/drm_fence.c
	linux-core/drm_objects.h
	shared-core/drm.h | 
|  | This is some code for nouveau that Ben Skeggs worked on, and also
fixes the naming (having class in a system header file == C++ keyword == bad plan) | 
|  |  | 
|  |  | 
|  |  | 
|  | Modify the TTM backend bind arguments.
Export a number of functions needed for driver-specific super-ioctls.
Add a function to map buffer objects from the kernel, regardless of where they're
currently placed.
A number of error fixes. | 
|  | This branch replaces the NO_MOVE/NO_EVICT flags to buffer validation with a
separate privileged ioctl to pin buffers like NO_EVICT meant before.  The
functionality that was supposed to be covered by NO_MOVE may be reintroduced
later, possibly in a different way, after the superioctl branch is merged. |