Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-05-09 | Fix build problems | Alan Hourihane | |
2008-05-08 | i915: Changed intel_fb to use the new drm_crtc_set_config interface | Jakob Bornecrantz | |
2008-05-08 | i915: Fixed indent in intel_fb.c | Jakob Bornecrantz | |
2008-05-08 | drm: Made set_config use drm_mode_set as a argument | Jakob Bornecrantz | |
2008-05-08 | drm: check for NULL fb here, shouldn't happen but avoid oops for now | Dave Airlie | |
2008-05-08 | drm: set crtc->fb to NULL | Dave Airlie | |
2008-05-08 | intel: set correct limits on screen width/height from DDX | Dave Airlie | |
2008-05-08 | drm: fix replacefb to change fb properties | Dave Airlie | |
2008-05-08 | drm_mode: initial replacefb implemenation | Dave Airlie | |
2008-05-08 | drm: fix typo from previous merge | Dave Airlie | |
2008-05-08 | Merge remote branch 'origin/master' into modesetting-101 | Dave Airlie | |
Conflicts: linux-core/Makefile.kernel shared-core/i915_drv.h | |||
2008-05-07 | drm: nopage compat fixup for drm_vm | Dave Airlie | |
The kernel has removed nopage so move the old nopage codepaths into a compat vm file and switch to using the fault paths. nopfn is on its way out in the future also, so we should switch to using fault for that path as well soon | |||
2008-04-29 | i915: fix off by one in VGA save/restore of AR & CR regs | Jesse Barnes | |
Turns out it's important to save/restore AR14 in particular. | |||
2008-04-28 | Merge branch 'master' into modesetting-101 | Thomas Hellstrom | |
Conflicts: linux-core/Makefile.kernel linux-core/drm_compat.c linux-core/drm_fops.c linux-core/drm_lock.c shared-core/drm.h shared-core/i915_dma.c shared-core/i915_drv.h shared-core/i915_irq.c | |||
2008-04-27 | Use fixed sized types in new ioctls | Jesse Barnes | |
Make both crtc and the command argument 32 bits to avoid any 32-on-64 compat issues. | |||
2008-04-23 | Make via compile. | Kristian Høgsberg | |
Chase the lock to it's new location. | |||
2008-04-23 | Make radeon_ms compile. | Kristian Høgsberg | |
Remove lock functions and use pci_map_rom() instead of pci_map_rom_copy(). | |||
2008-04-23 | Don't disable IRQs, just tasklets, when taking the drm lock spinlock. | Thomas Hellstrom | |
2008-04-23 | Fixed unlock check on EAGAIN | Jakob Bornecrantz | |
2008-04-22 | add sysfs entry for DVO output | Hong Liu | |
forget to add it in the previous DVO porting patch. Signed-off-by: Hong Liu <hong.liu@intel.com> | |||
2008-04-22 | fix removing output_attrs | Hong Liu | |
fix a typo in removing output sysfs. Signed-off-by: Hong Liu <hong.liu@intel.com> | |||
2008-04-22 | linux-core Makefile: add GIT_REVISION | Pekka Paalanen | |
This tries to automatically fetch a git revision string and if succeeds, it #defines GIT_REVISION string macro. Packagers can override it by 'make GIT_REVISION=foo'. Update Nouveau to use GIT_REVISION, if defined, instead of DRIVER_DATE in struct drm_driver. Signed-off-by: Pekka Paalanen <pq@iki.fi> | |||
2008-04-17 | Porting DVO stuff | Hong Liu | |
Ported from Xorg intel 2d driver. Changed interfaces definitions, which needed to be changed later if other device wants to use these DVO stuff. | |||
2008-04-14 | Fix buffer object map wait error. | Thomas Hellstrom | |
Add some branch prediction hints. | |||
2008-04-14 | Fix buffer object creation validation. | Thomas Hellstrom | |
BO lock fixes. | |||
2008-04-14 | Unlock the BO mutex while waiting for idle, unmapped, unfenced. | Thomas Hellstrom | |
Move unfenced checking into idle checking. Never time out while waiting for software events like unmapped or unfenced. | |||
2008-04-14 | Fix up buffer manager locking. | Thomas Hellstrom | |
2008-04-11 | Save and restore dsparb and d_state regs | Keith Packard | |
2008-04-10 | Fixup Intel TV property code | Jesse Barnes | |
Use the new TV property creation routine and fixup the set_property code to actually do a mode set call when properties change. | |||
2008-04-10 | Split TV property creation into its own routine | Jesse Barnes | |
It needs to take arguments from the caller about supported TV formats, so declare it in drm_crtc.h and export it. | |||
2008-04-10 | Remove structure fields & code | Jesse Barnes | |
Cleanup some random cruft left over from the initial port. | |||
2008-04-10 | Fix masking in get_load_detect_pipe | Jesse Barnes | |
Start i at -1 so that the masking works right. | |||
2008-04-10 | Keep display info in struct display_info | Jesse Barnes | |
Some fields had snuck into the drm_output structure. Put them back and fill in more stuff from the EDID block. | |||
2008-04-09 | Fix TV load detection | Jesse Barnes | |
Now that we can allocate load detect pipes, we can perform TV out load detection correctly. Call the new routines and enable proper TV detection. | |||
2008-04-09 | Port pipe reservation code for load detection | Jesse Barnes | |
TV out needs to do load detection, which means we have to find an available pipe to use for the detection. Port over the pipe reservation code for this purpose. | |||
2008-04-09 | Add newline to debug output for output add | Jesse Barnes | |
2008-04-09 | Older kernels don't have kobject_uevent_env(), so punt | Alan Hourihane | |
the event for these older kernels. | |||
2008-04-09 | Fixup sysfs output registration | Jesse Barnes | |
Put off registering new outputs with sysfs until they're properly configured, or we may get duplicates if the type hasn't been set yet (as is the case with SDVO initialization). This also means moving de-registration into the cleanup function instead of output destroy, since the latter occurs during the normal course of setup when an output isn't found (and therefore not registered with sysfs yet. | |||
2008-04-08 | Merge branch 'modesetting-101' of ssh://git.freedesktop.org/git/mesa/drm ↵ | Jesse Barnes | |
into modesetting-101 | |||
2008-04-08 | Improved DRM sysfs support | Jesse Barnes | |
This patch ties outputs, output properties and hotplug events into the DRM core. Each output has a corresponding directory under the primary DRM device (usually card0) containing dpms, edid, modes, and connection status files. New hotplug change events occur when outputs are added or hotplug events are detected. | |||
2008-04-08 | radeon_ms: command buffer validation use array of function pointer | Jerome Glisse | |
2008-04-07 | Missing KERNEL_VERSION macro | Patrice Mandin | |
2008-04-07 | radeon_ms: another fb fix reset mode if fb changed | Jerome Glisse | |
2008-04-07 | nouveau: enable accelerated move to sysmem | Ben Skeggs | |
2008-04-07 | nouveau: enable m2mf for tt<->vram moves, fix fence_poll | Ben Skeggs | |
2008-04-06 | radeon_ms: fix framebuffer code | Jerome Glisse | |
2008-04-06 | Place highmem pages last in the ttm page array. | Thomas Hellstrom | |
2008-04-06 | Use clflush() when available for cache flushing. | Thomas Hellstrom | |
2008-04-06 | [I915] Fix VRAM eviction. | Thomas Hellstrom | |
2008-04-06 | Fix emergency allocation accounting. | Thomas Hellstrom | |