Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-12-22 | intel: Remove linux build of i915 DRM, as it's unmaintained and a user trap. | Eric Anholt | |
The code's in the linux kernel. | |||
2008-12-17 | libdrm: add mode setting files | Jesse Barnes | |
Add mode setting files to libdrm, including xf86drmMode.* and the new drm_mode.h header. Also add a couple of tests to sanity check the kernel interfaces and update code to support them. | |||
2008-12-10 | Revert "Merge branch 'modesetting-gem'" | Jesse Barnes | |
This reverts commit 6656db10551bbb8770dd945b6d81d5138521f208. We really just want the libdrm and ioctl bits, not all the driver stuff. | |||
2008-11-19 | Merge branch 'modesetting-gem' of ssh://git.freedesktop.org/git/mesa/drm ↵ | Jesse Barnes | |
into modesetting-gem | |||
2008-11-17 | Revert "gem: protect idr_pre with the spinlock" | Jerome Glisse | |
This reverts commit f46aba43329786c9b2776e82af31d90e1c67eae0. | |||
2008-11-16 | gem: protect idr_pre with the spinlock | Jerome Glisse | |
There seems to be an issue if we don't protect idr_pre with the spinlock we use for idr operations. | |||
2008-11-15 | drm/bo: fix stupid lock imbalance | Dave Airlie | |
2008-11-13 | Merge branch 'master' into modesetting-gem | Jesse Barnes | |
Conflicts: libdrm/Makefile.am libdrm/intel/intel_bufmgr.h libdrm/intel/intel_bufmgr_fake.c libdrm/intel/intel_bufmgr_gem.c shared-core/drm.h shared-core/i915_dma.c shared-core/i915_irq.c shared-core/radeon_cp.c shared-core/radeon_drv.h | |||
2008-11-12 | mode: Minor reodering and renaming | Jakob Bornecrantz | |
2008-11-12 | mode: Remove hotplug support from ioctl interface | Jakob Bornecrantz | |
2008-11-12 | radeon+libdrm-radeon: change relocation informations | Jerome Glisse | |
Relocation now consist of the following informations (in this order) : handle buffer object handle identifier start_offset start offset of first data of the buffer object used by the cs end_offset end offset of last data of the buffer object used by the cs read_domain read domain (either VRAM, or GTT as GPU is invalid for CS) write_domain write domain (either VRAM, or GTT as GPU is invalid for CS) flags flags used for further optimization (like discard previous buffer content or forget buffer content after cs which can help in avoiding moving content in or out) | |||
2008-11-10 | radeon: add gart useable size to report to userspace | Dave Airlie | |
2008-11-10 | radeon: upgrade atom headers | Dave Airlie | |
2008-11-10 | radeon: fix fence race condition hopefully | Dave Airlie | |
For some reason reading the SCRATCH reg from RAM causes some race to occur. Hopefully fix this. | |||
2008-11-10 | drm/radeon: add dpms connector functions | Dave Airlie | |
2008-11-10 | radeon: avivo cursors are across the full surface. | Dave Airlie | |
fixes cursor on second head | |||
2008-11-10 | modesetting: set the crtc x,y after the mode base change | Dave Airlie | |
2008-11-10 | drm/radeon: add uncached allocator to drm ttm code. | Dave Airlie | |
2008-11-10 | radeon: fixup vram visible calculation to take a/c pinned objects for now | Dave Airlie | |
2008-11-06 | radeon: lib radeon add bo & cs gem backend | Jerome Glisse | |
2008-11-03 | radeon: make build again | Dave Airlie | |
2008-11-03 | radeon: fix ROP values for the paint ROP | Dave Airlie | |
2008-11-03 | radeon: add mtrr support for VRAM aperture. | Dave Airlie | |
2008-11-03 | radeon: add more HDMI bits | Dave Airlie | |
2008-11-03 | radeon: set dma bufs bo type to a kernel type | Dave Airlie | |
2008-11-03 | radeon: enable DVI-D + HDMI connectors. | Dave Airlie | |
This allows the rs690 to work on DVI | |||
2008-11-03 | radeon: add more debugging | Dave Airlie | |
2008-11-03 | radeon: overhaul ring interactions | Dave Airlie | |
emit in 16-dword blocks, emit irqs at same time as everything else | |||
2008-11-03 | radeon: fix race in sysfs | Dave Airlie | |
2008-11-03 | radeon: add proc debugging for interrupts/ring | Dave Airlie | |
2008-11-03 | radeon: only enable dynclks if asked for | Dave Airlie | |
2008-11-03 | radeon: add wait rendering API | Dave Airlie | |
2008-11-03 | radeon: remove unused gem indirect ioctl | Dave Airlie | |
2008-11-03 | radeon: fix some warnings | Dave Airlie | |
2008-11-03 | radeon: fix free after refcount | Dave Airlie | |
2008-11-03 | radeon: CS2 make it all work with new relocs style | Dave Airlie | |
2008-11-03 | radeon: make new CS2 command submission interface port older interface to this | Dave Airlie | |
2008-11-03 | radeon/drm: fixup ref counting in on fb objs | Dave Airlie | |
2008-11-03 | radeon: add r423 bits to modesetting | Dave Airlie | |
2008-11-03 | radeon: pull bus master enable into its own function | Dave Airlie | |
2008-11-03 | radeon: fix accessible VRAM sizing | Dave Airlie | |
2008-11-03 | radeon: fix some warnings | Dave Airlie | |
2008-11-03 | radeon: workaround failure to parse some rs48x edid | Dave Airlie | |
2008-11-02 | nouveau: compat fix for set_page_locked(). | Pekka Paalanen | |
The set_page_locked() function has changed its name again. 2.6.28 offers __set_page_locked() instead, which uses non-atomic __set_bit() to do the work. In this case, offer our own set_page_locked() using the atomic set_bit(), because I do not know if atomic access is really necessary. Atomic behaviour is the one previously expected. Signed-off-by: Pekka Paalanen <pq@iki.fi> | |||
2008-10-28 | nv50: symlink nv50_grctx.h to linux-core... | Ben Skeggs | |
2008-10-27 | drm: missing init_mm symbol, compatibility fix | Pekka Paalanen | |
The drm_compat.c version of kmap_atomic_prot_pfn() uses the macro pgd_offset_k(), which references the symbol init_mm. Starting in 2.6.25, init_mm is no longer exported by default. The only user of kmap_atomic_prot_pfn() is i915, so this should not hurt anyone, and it allows people to load drm.ko. Signed-off-by: Pekka Paalanen <pq@iki.fi> | |||
2008-10-24 | mode: Try to settle on a standard for struct fields | Jakob Bornecrantz | |
2008-10-16 | radeon: add initial agp support. | Dave Airlie | |
This add agpmode command line option. | |||
2008-10-16 | radeon: fixup interrupt suspend/resume | Dave Airlie | |
2008-10-16 | radeon: fixup suspend/resume bus master enable | Dave Airlie | |