/[base]
ViewVC logotype

Revision 282199


Jump to revision: Previous Next
Author: dumbbell
Date: Tue Apr 28 19:35:05 2015 UTC (9 years, 2 months ago)
Changed paths: 159 (showing only 100; show all)
Log Message:
drm: Update the device-independent code to match Linux 3.8.13

This update brings few features:
    o  Support for the setmaster/dropmaster ioctls. For instance, they
       are used to run multiple X servers simultaneously.
    o  Support for minor devices. The only user-visible change is a new
       entry in /dev/dri but it is useless at the moment. This is a
       first step to support render nodes [1].

The main benefit is to greatly reduce the diff with Linux (at the
expense of an unreadable commit diff). Hopefully, next upgrades will be
easier.

No updates were made to the drivers, beside adapting them to API
changes.

[1] https://en.wikipedia.org/wiki/Direct_Rendering_Manager#Render_nodes

r280814 is merged at the same time to avoid a short window where RANDR
might be broken:

drm: Import Linux commit 9bc3cd5673d84d29272fa7181a4dfca83cbb48c1

Author: Ville Syrjälä <ville.syrjala@linux.intel.com>
Date:   Fri May 31 12:17:08 2013 +0000

    drm: Sort connector modes based on vrefresh

    Keeping the modes sorted by vrefresh before the pixel clock makes the
    mode list somehow more pleasing to the eye.

    Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
    Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
    Signed-off-by: Dave Airlie <airlied@redhat.com>

PR:		198936 (r280814)
Tested by:	Many people
MFC of:		r280183, r280187 (original commit by glebius), r280814
Relnotes:	yes


Changed paths

Path Details
Directorystable/10/ modified , props changed
Directorystable/10/sys/dev/drm2/ati_pcigart.c modified , text changed
Directorystable/10/sys/dev/drm2/drm.h modified , text changed
Directorystable/10/sys/dev/drm2/drmP.h modified , text changed
Directorystable/10/sys/dev/drm2/drm_agpsupport.c modified , text changed
Directorystable/10/sys/dev/drm2/drm_atomic.h modified , text changed
Directorystable/10/sys/dev/drm2/drm_auth.c modified , text changed
Directorystable/10/sys/dev/drm2/drm_buffer.c modified , text changed
Directorystable/10/sys/dev/drm2/drm_bufs.c modified , text changed
Directorystable/10/sys/dev/drm2/drm_context.c modified , text changed
Directorystable/10/sys/dev/drm2/drm_crtc.c modified , text changed
Directorystable/10/sys/dev/drm2/drm_crtc.h modified , text changed
Directorystable/10/sys/dev/drm2/drm_crtc_helper.c modified , text changed
Directorystable/10/sys/dev/drm2/drm_crtc_helper.h modified , text changed
Directorystable/10/sys/dev/drm2/drm_dma.c modified , text changed
Directorystable/10/sys/dev/drm2/drm_dp_helper.c modified , text changed
Directorystable/10/sys/dev/drm2/drm_dp_iic_helper.c modified , text changed
Directorystable/10/sys/dev/drm2/drm_drawable.c deleted
Directorystable/10/sys/dev/drm2/drm_drv.c modified , text changed
Directorystable/10/sys/dev/drm2/drm_edid.c modified , text changed
Directorystable/10/sys/dev/drm2/drm_edid.h modified , text changed
Directorystable/10/sys/dev/drm2/drm_edid_modes.h modified , text changed
Directorystable/10/sys/dev/drm2/drm_fb_helper.c modified , text changed
Directorystable/10/sys/dev/drm2/drm_fb_helper.h modified , text changed
Directorystable/10/sys/dev/drm2/drm_fops.c modified , text changed
Directorystable/10/sys/dev/drm2/drm_fourcc.h modified , text changed
Directorystable/10/sys/dev/drm2/drm_gem.c modified , text changed
Directorystable/10/sys/dev/drm2/drm_gem_names.c modified , text changed
Directorystable/10/sys/dev/drm2/drm_global.c modified , text changed
Directorystable/10/sys/dev/drm2/drm_hashtab.c modified , text changed
Directorystable/10/sys/dev/drm2/drm_internal.h deleted
Directorystable/10/sys/dev/drm2/drm_ioc32.c modified , text changed
Directorystable/10/sys/dev/drm2/drm_ioctl.c modified , text changed
Directorystable/10/sys/dev/drm2/drm_irq.c modified , text changed
Directorystable/10/sys/dev/drm2/drm_lock.c modified , text changed
Directorystable/10/sys/dev/drm2/drm_memory.c modified , text changed
Directorystable/10/sys/dev/drm2/drm_mm.c modified , text changed
Directorystable/10/sys/dev/drm2/drm_mm.h modified , text changed
Directorystable/10/sys/dev/drm2/drm_mode.h modified , text changed
Directorystable/10/sys/dev/drm2/drm_modes.c modified , text changed
Directorystable/10/sys/dev/drm2/drm_os_freebsd.c
(Copied from head/sys/dev/drm2/drm_os_freebsd.c, r280183)
added , text changed
Directorystable/10/sys/dev/drm2/drm_os_freebsd.h modified , text changed
Directorystable/10/sys/dev/drm2/drm_pci.c modified , text changed
Directorystable/10/sys/dev/drm2/drm_pciids.h modified , text changed
Directorystable/10/sys/dev/drm2/drm_sarea.h modified , text changed
Directorystable/10/sys/dev/drm2/drm_scatter.c modified , text changed
Directorystable/10/sys/dev/drm2/drm_sman.c deleted
Directorystable/10/sys/dev/drm2/drm_sman.h deleted
Directorystable/10/sys/dev/drm2/drm_stub.c modified , text changed
Directorystable/10/sys/dev/drm2/drm_sysctl.c modified , text changed
Directorystable/10/sys/dev/drm2/drm_vm.c modified , text changed
Directorystable/10/sys/dev/drm2/i915/i915_debug.c modified , text changed
Directorystable/10/sys/dev/drm2/i915/i915_dma.c modified , text changed
Directorystable/10/sys/dev/drm2/i915/i915_drm.h modified , text changed
Directorystable/10/sys/dev/drm2/i915/i915_drv.c modified , text changed
Directorystable/10/sys/dev/drm2/i915/i915_drv.h modified , text changed
Directorystable/10/sys/dev/drm2/i915/i915_gem.c modified , text changed
Directorystable/10/sys/dev/drm2/i915/i915_gem_context.c modified , text changed
Directorystable/10/sys/dev/drm2/i915/i915_gem_evict.c modified , text changed
Directorystable/10/sys/dev/drm2/i915/i915_gem_execbuffer.c modified , text changed
Directorystable/10/sys/dev/drm2/i915/i915_gem_gtt.c modified , text changed
Directorystable/10/sys/dev/drm2/i915/i915_gem_tiling.c modified , text changed
Directorystable/10/sys/dev/drm2/i915/i915_ioc32.c modified , text changed
Directorystable/10/sys/dev/drm2/i915/i915_irq.c modified , text changed
Directorystable/10/sys/dev/drm2/i915/i915_suspend.c modified , text changed
Directorystable/10/sys/dev/drm2/i915/intel_crt.c modified , text changed
Directorystable/10/sys/dev/drm2/i915/intel_display.c modified , text changed
Directorystable/10/sys/dev/drm2/i915/intel_dp.c modified , text changed
Directorystable/10/sys/dev/drm2/i915/intel_fb.c modified , text changed
Directorystable/10/sys/dev/drm2/i915/intel_hdmi.c modified , text changed
Directorystable/10/sys/dev/drm2/i915/intel_iic.c modified , text changed
Directorystable/10/sys/dev/drm2/i915/intel_lvds.c modified , text changed
Directorystable/10/sys/dev/drm2/i915/intel_modes.c modified , text changed
Directorystable/10/sys/dev/drm2/i915/intel_opregion.c modified , text changed
Directorystable/10/sys/dev/drm2/i915/intel_overlay.c modified , text changed
Directorystable/10/sys/dev/drm2/i915/intel_panel.c modified , text changed
Directorystable/10/sys/dev/drm2/i915/intel_ringbuffer.c modified , text changed
Directorystable/10/sys/dev/drm2/i915/intel_sdvo.c modified , text changed
Directorystable/10/sys/dev/drm2/i915/intel_tv.c modified , text changed
Directorystable/10/sys/dev/drm2/radeon/atom.c modified , text changed
Directorystable/10/sys/dev/drm2/radeon/atombios_crtc.c modified , text changed
Directorystable/10/sys/dev/drm2/radeon/atombios_dp.c modified , text changed
Directorystable/10/sys/dev/drm2/radeon/atombios_encoders.c modified , text changed
Directorystable/10/sys/dev/drm2/radeon/atombios_i2c.c modified , text changed
Directorystable/10/sys/dev/drm2/radeon/cayman_blit_shaders.c modified , text changed
Directorystable/10/sys/dev/drm2/radeon/evergreen.c modified , text changed
Directorystable/10/sys/dev/drm2/radeon/evergreen_blit_shaders.c modified , text changed
Directorystable/10/sys/dev/drm2/radeon/evergreen_cs.c modified , text changed
Directorystable/10/sys/dev/drm2/radeon/evergreen_reg.h modified , text changed
Directorystable/10/sys/dev/drm2/radeon/ni.c modified , text changed
Directorystable/10/sys/dev/drm2/radeon/nid.h modified , text changed
Directorystable/10/sys/dev/drm2/radeon/r100.c modified , text changed
Directorystable/10/sys/dev/drm2/radeon/r200.c modified , text changed
Directorystable/10/sys/dev/drm2/radeon/r300.c modified , text changed
Directorystable/10/sys/dev/drm2/radeon/r300_cmdbuf.c modified , text changed
Directorystable/10/sys/dev/drm2/radeon/r420.c modified , text changed
Directorystable/10/sys/dev/drm2/radeon/r500_reg.h modified , text changed
Directorystable/10/sys/dev/drm2/radeon/r600.c modified , text changed
Directorystable/10/sys/dev/drm2/radeon/r600_blit.c modified , text changed
Directorystable/10/sys/dev/drm2/radeon/r600_blit_shaders.c modified , text changed
[...]

  ViewVC Help
Powered by ViewVC 1.1.27