Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-03-10 | rradeon_ms: rework fence code and bring radeon ms up to date | Jerome Glisse | |
2008-02-26 | radeon: remove TTM from an earlier merge | Jerome Glisse | |
2008-02-26 | Merge branch 'master' of git+ssh://git.freedesktop.org/git/mesa/drm into ↵ | Alan Hourihane | |
modesetting-101 Conflicts: shared-core/i915_dma.c | |||
2008-02-26 | DRM_INFO -> DRM_DEBUG | Alan Hourihane | |
2008-02-26 | DRM_INFO -> DRM_DEBUG | Alan Hourihane | |
2008-02-26 | define PRETHAW | Alan Hourihane | |
2008-02-26 | Implement short circuit for base change only | Alan Hourihane | |
Allow mode to be set with fb_id set to -1, meaning set the mode with the current fb (if we have one bound). Allow intelfb to hook back up it's fb if modesetting clears it (maybe temporary). Move any crtc->fb related register changes to set_base in intel_fb. General intelfb cleanups. | |||
2008-02-26 | drm: fix pick crtcs mode selection code | Dave Airlie | |
2008-02-22 | i915: put ARX back into index mode before doing restore | Jesse Barnes | |
Fixes resume from hibernate in some configurations. | |||
2008-02-22 | silence warning | Alan Hourihane | |
2008-02-22 | modesetting: fix memory leak and misallocation | Dave Airlie | |
2008-02-22 | add ioctl to get back memory managed area sized - used for kernel inited areas | Dave Airlie | |
2008-02-22 | hopefully shit works now without this... | Dave Airlie | |
2008-02-21 | Merge branch 'master' of git+ssh://git.freedesktop.org/git/mesa/drm into ↵ | Alan Hourihane | |
modesetting-101 | |||
2008-02-21 | Don't free irq resources until after we've unregistered the handler. | Kristian Høgsberg | |
2008-02-21 | Merge branch 'master' of git+ssh://git.freedesktop.org/git/mesa/drm into ↵ | Alan Hourihane | |
modesetting-101 Conflicts: linux-core/drm_sysfs.c | |||
2008-02-21 | linux: Clean up vblank related resources from drm_irq_uninstall(). | Michel Dänzer | |
This fixes at least two problems: * The vblank_disable_fn timer callback could get called after the DRM was de-initialized, e.g. on X server shutdown. * Leak of vblank related resources when disabling and re-enabling the IRQ, e.g. on an X server reset. | |||
2008-02-20 | compatibility code for pci_get_bus_and_slot() | Alan Hourihane | |
2008-02-20 | remove more offset | Dave Airlie | |
2008-02-20 | drm/fb: get rid of offset from structure use bo offset | Dave Airlie | |
2008-02-20 | ttm: make sure userspace can't destroy kernel create memory managers | Dave Airlie | |
2008-02-20 | drm: add support for passing state into the suspend hooks. | Dave Airlie | |
fix i915 driver to use state for hibernate save avoidance. Signed-off-by: Dave Airlie <airlied@redhat.com> | |||
2008-02-19 | Fix up conflicts for DRI2 (untested) | Alan Hourihane | |
2008-02-18 | Merge branch 'master' of git+ssh://git.freedesktop.org/git/mesa/drm into ↵ | Alan Hourihane | |
modesetting-101 Conflicts: linux-core/i915_fence.c linux-core/via_fence.c shared-core/i915_dma.c shared-core/i915_drv.h shared-core/i915_irq.c | |||
2008-02-16 | [915]: more registers for S3 (DSPCLK_GATE_D, CACHE_MODE_0, MI_ARB_STATE) | Keith Packard | |
Failing to preserve the MI_ARB_STATE register was causing FIFO underruns on the VGA output on my HP 2510p after resume. | |||
2008-02-15 | i915: initial (and untested) TV out support | Jesse Barnes | |
Ported from xf86-video-intel. Still need to tie in TV modes somehow, though preferably w/o using the properties mechanism. | |||
2008-02-15 | fb: fixup the offset by getting it from the right place | Dave Airlie | |
2008-02-15 | various fixes from trying to get userspace started | Dave Airlie | |
2008-02-15 | switch naming to new proposed scheme | Dave Airlie | |
2008-02-15 | remove drm_minors_limit | Dave Airlie | |
2008-02-13 | start moving over to proper hierarchy wrt master accesses | Dave Airlie | |
2008-02-13 | major port of multi-master ideas into modesetting | Dave Airlie | |
2008-02-13 | drm: re-write minor number allocation to use an idr. | Dave Airlie | |
Fixup the minor number allocation scheme to use an idr and move the control nodes up higher. | |||
2008-02-07 | Restore pipeconf regs unconditionally | Jesse Barnes | |
On many chipsets, the checks for DPLL enable or VGA mode will prevent the pipeconf regs from being restored, which could result in a blank display or X failing to come back after resume. So restore them unconditionally along with actually restoring pipe B's palette correctly. | |||
2008-02-07 | Revert "DRM_CONTROL_ALLOW logic was reversed" | Alan Hourihane | |
This reverts commit 7af1bb874d9b8b1b8760ad200cee587c41c23434. | |||
2008-02-07 | i915: save/restore interrupt state | Jesse Barnes | |
On resume, if the interrupt state isn't restored correctly, we may end up with a flood of unexpected or ill-timed interrupts, which could cause the kernel to disable the interrupt or vblank events to happen at the wrong time. So save/restore them properly. | |||
2008-02-07 | Fix vblank enable/disable callbacks | Jesse Barnes | |
There were two problems with the existing callback code: the vblank enable callback happened multiple times per disable, making drivers more complex than they had to be, and there was a race between the final decrement of the vblank usage counter and the next enable call, which could have resulted in a put->schedule disable->get->enable->disable sequence, which would be bad. So add a new vblank_enabled array to track vblank enable on per-pipe basis, and add a lock to protect it along with the refcount + enable/disable calls to fix the race. | |||
2008-02-07 | Added kernel part of hotplug ioctl | Jakob Bornecrantz | |
2008-02-05 | DRM_CONTROL_ALLOW logic was reversed | Alan Hourihane | |
2008-02-05 | fix some warnings | Alan Hourihane | |
2008-02-05 | build fix for older kernels | Alan Hourihane | |
2008-02-05 | Fix function declaration | Alan Hourihane | |
2008-02-05 | Add missing round_jiffies_relative() for older kernels | Alan Hourihane | |
2008-02-05 | i915: Re-report breadcrumbs on poll to the fence manager, | Thomas Hellstrom | |
since a breadcrumb may actually turn up before a corresponding fence object has been placed on the fence ring. | |||
2008-02-05 | consistency | Alan Hourihane | |
2008-02-05 | Remove duplicate | Alan Hourihane | |
2008-01-31 | Add an fence_class_manager::last_queued_sequence member, since a | Thomas Hellstrom | |
sequence number may actually turn up before the corresponding fence object has been queued on the ring. Fence drivers can use this member to determine whether a sequence number must be re-reported. | |||
2008-01-30 | Simplify the fencing code and differentiate between flushes and | Thomas Hellstrom | |
waiting types. Add a "command_stream_barrier" method to the bo driver. | |||
2008-01-30 | Fix for cursor off | Jakob Bornecrantz | |
2008-01-28 | Fix hibernate save/restore of VGA attribute regs | Jesse Barnes | |
In hibernate, we may end up calling the VGA save regs function twice, so we need to make sure it's idempotent. That means leaving ARX in index mode after the first save operation. Fixes hibernate on 965. |