1. 29 Mar, 2018 14 commits
  2. 28 Mar, 2018 16 commits
  3. 27 Mar, 2018 1 commit
  4. 26 Mar, 2018 4 commits
  5. 22 Mar, 2018 1 commit
  6. 21 Mar, 2018 4 commits
    • Sean Paul's avatar
      Merge airlied/drm-next into drm-misc-next · 1c7095d2
      Sean Paul authored
      Refresh -misc-next
      Signed-off-by: default avatarSean Paul <seanpaul@chromium.org>
      1c7095d2
    • Santha Meena Ramamoorthy's avatar
      drm/qxl: Replace drm_gem_object_reference/unreference() with _get/put() · 2793c1d7
      Santha Meena Ramamoorthy authored
      Replace drm_gem_object_reference/unreference function with *_get/put()
      suffixes, because it is shorter and consistent with the kernel
      kref_get/put() functions. The following Coccinelle script was used:
      
      @@
      expression e;
      @@
      
      (
      -drm_gem_object_reference(e);
      +drm_gem_object_get(e);
      |
      -drm_gem_object_unreference(e);
      +drm_gem_object_put(e);
      |
      -drm_gem_object_unreference_unlocked(e);
      +drm_gem_object_put_unlocked(e);
      )
      Signed-off-by: default avatarSantha Meena Ramamoorthy <santhameena13@gmail.com>
      Signed-off-by: default avatarDaniel Vetter <daniel.vetter@ffwll.ch>
      Link: https://patchwork.freedesktop.org/patch/msgid/1521570567-22519-1-git-send-email-santhameena13@gmail.com
      2793c1d7
    • Dave Airlie's avatar
      Merge tag 'omapdrm-4.17' of git://git.kernel.org/pub/scm/linux/kernel/git/tomba/linux into drm-next · 78230c46
      Dave Airlie authored
      omapdrm patches for v4.17
      
      * Fix sparse warnings from omapdrm
      * HPD support for DVI connector
      * Big cleanup to remove static variables
      
      * tag 'omapdrm-4.17' of git://git.kernel.org/pub/scm/linux/kernel/git/tomba/linux: (69 commits)
        drm/omap: fix compile error when DPI is disabled
        drm/omap: fix compile error when debugfs is disabled
        drm: omapdrm: displays: panel-dsi-cm: Fix field access before set
        drm/omap: cleanup color space conversion
        drm/omap: Allow HDMI audio setup even if we do not have video configured
        drm/omap: fix maximum sizes
        drm/omap: add writeback funcs to dispc_ops
        drm/omap: fix scaling limits for WB
        drm/omap: fix WB height with interlace
        drm/omap: fix WBDELAYCOUNT with interlace
        drm/omap: fix WBDELAYCOUNT for HDMI
        drm/omap: set WB channel-in in wb_setup()
        drm/omap: Add pclk setting case when channel is DSS_WB
        drm/omap: dispc: disp_wb_setup to check return code
        drm/omap: remove leftover enums
        dt-bindings: display: add HPD gpio to DVI connector
        drm/omap: add HPD support to connector-dvi
        drm/omap: Init fbdev emulation only when we have displays
        drm/omap: cleanup fbdev init/free
        drm/omap: fix omap_fbdev_free() when omap_fbdev_create() wasn't called
        ...
      78230c46
    • Dave Airlie's avatar
      Merge tag 'drm-msm-next-2018-03-20' of git://people.freedesktop.org/~robclark/linux into drm-next · b65bd403
      Dave Airlie authored
      Updates for 4.17.  Sorry, running a bit late on this, didn't have a
      chance to send pull-req before heading to linaro.  But it has all been
      in linux-next for a while.  Main updates:
      
       + DSI updates from 10nm / SDM845
       + fix for race condition with a3xx/a4xx fence completion irq
       + some refactoring/prep work for eventual a6xx support (ie. when we have
         a userspace)
       + a5xx debugfs enhancements
       + some mdp5 fixes/cleanups to prepare for eventually merging writeback
         support (ie. when we have a userspace)
      
      * tag 'drm-msm-next-2018-03-20' of git://people.freedesktop.org/~robclark/linux: (36 commits)
        drm/msm: fix building without debugfs
        drm/msm/mdp5: don't pre-reserve LM's if no dual-dsi
        drm/msm/mdp5: add missing LM flush bits
        drm/msm/mdp5: print a bit more of the atomic state
        drm/msm/mdp5: rework CTL START signal handling
        drm/msm: Trigger fence completion from GPU
        drm/msm/dsi: fix direct caller of msm_gem_free_object()
        drm/msm: strip out msm_fence_cb
        drm/msm: rename mdp->disp
        drm/msm/dsi: Fix potential NULL pointer dereference in msm_dsi_modeset_init
        drm/msm/adreno/a5xx_debugfs: fix potential NULL pointer dereference
        drm/msm/dsi: Get byte_intf_clk only for versions that need it
        drm/msm/adreno: Use generic function to load firmware to a buffer object
        drm/msm/adreno: Define a list of firmware files to load per target
        drm/msm/adreno: Rename gpmufw to powerfw
        drm/msm: Pass the correct aperture end to drm_mm_init
        drm/msm/gpu: Set number of clocks to 0 if the list allocation fails
        drm/msm: Replace gem_object deprecated functions
        drm/msm/hdmi: fix semicolon.cocci warnings
        drm/msm/mdp5: Fix trailing semicolon
        ...
      b65bd403