1. 19 Mar, 2015 4 commits
    • Laurent Pinchart's avatar
      drm: adv7511: Fix nested sleep when reading EDID · a5241289
      Laurent Pinchart authored
      The EDID read code waits for the read completion interrupt to occur
      using wait_event_interruptible(). The condition passed to the macro
      reads I2C registers. This results in sleeping with the task state set
      to TASK_INTERRUPTIBLE, triggering a WARN_ON() introduced in commit
      8eb23b9f ("sched: Debug nested sleeps").
      
      Fix this by reworking the EDID read code. Instead of checking whether
      the read is complete through I2C reads, handle the interrupt registers
      in the interrupt handler and update a new edid_read flag accordingly. As
      a side effect both the IRQ and polling code paths now process the
      interrupt sources through the same code path, simplifying the code.
      
      Cc: stable@vger.kernel.org
      Signed-off-by: default avatarLaurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
      a5241289
    • Laurent Pinchart's avatar
      drm: adv7511: Fix DDC error interrupt handling · 2e96206c
      Laurent Pinchart authored
      The DDC error interrupt bit is located in REG_INT1, not REG_INT0. Update
      both the interrupt wait code and the interrupt sources reset code
      accordingly.
      
      Cc: stable@vger.kernel.org
      Signed-off-by: default avatarLaurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
      2e96206c
    • Dave Airlie's avatar
      Merge branch 'drm_next' of https://github.com/markyzq/kernel-drm-rockchip into drm-next · 6b94aea0
      Dave Airlie authored
      rockchip fixes.
      
      * 'drm_next' of https://github.com/markyzq/kernel-drm-rockchip:
        drm/rockchip: vop: power off until vop standby take effect
        drm/rockchip: vop: set vop enabled after enable iommu
        drm/rockchip: vop use is_enabled instead of dpms mode
        drm/rockchip: vop: fix vop vsync/hsync polarity
        drm/rockchip: Only alloc a kmap for fbdev gem object
      6b94aea0
    • Dave Airlie's avatar
      Merge tag 'topic/drm-misc-2015-03-18' of git://anongit.freedesktop.org/drm-intel into drm-next · d79dc0a9
      Dave Airlie authored
      Another drm-misch pull request. Mostly the fbdev sizes deconfusion series
      from Rob, everything else is small stuff all over. And the large i2c over
      aux transfers patch, too.
      
      * tag 'topic/drm-misc-2015-03-18' of git://anongit.freedesktop.org/drm-intel:
        drm: check that planes types are correct while initializing CRTC
        drm: change connector to tmp_connector
        drm: Fix some typo mistake of the annotations
        drm: Silence sparse warnings
        drm: %pF is only for function pointers
        drm/fb: handle tiled connectors better
        drm/fb: small cleanup
        drm/rockchip: use correct fb width/height
        drm/exynos: use correct fb width/height
        drm/cma: use correct fb width/height
        drm/atomic: minor kerneldoc typo fix
        drm/fb: document drm_fb_helper_surface_size
        drm/dp: Use large transactions for I2C over AUX
        drm/plane-helper: Fixup mismerge
        drm/atomic: Constify a bunch of functions pointer structs
      d79dc0a9
  2. 17 Mar, 2015 3 commits
  3. 16 Mar, 2015 5 commits
  4. 13 Mar, 2015 2 commits
    • Ville Syrjälä's avatar
      drm: Silence sparse warnings · 43fc884e
      Ville Syrjälä authored
      ../drivers/gpu/drm/drm_vm.c:405:6: warning: symbol 'drm_vm_open_locked' was not declared. Should it be static?
      ../drivers/gpu/drm/drm_vm.c:431:6: warning: symbol 'drm_vm_close_locked' was not declared. Should it be static?
      ../drivers/gpu/drm/drm_vm.c:681:5: warning: symbol 'drm_vma_info' was not declared. Should it be static?
      
      ../drivers/gpu/drm/drm_pci.c:146:5: warning: symbol 'drm_pci_set_unique' was not declared. Should it be static?
      ../drivers/gpu/drm/drm_pci.c:216:5: warning: symbol 'drm_irq_by_busid' was not declared. Should it be static?
      
      ../drivers/gpu/drm/drm_info.c:47:5: warning: symbol 'drm_name_info' was not declared. Should it be static?
      ../drivers/gpu/drm/drm_info.c:72:5: warning: symbol 'drm_vm_info' was not declared. Should it be static?
      ../drivers/gpu/drm/drm_info.c:116:5: warning: symbol 'drm_bufs_info' was not declared. Should it be static?
      ../drivers/gpu/drm/drm_info.c:159:5: warning: symbol 'drm_clients_info' was not declared. Should it be static?
      ../drivers/gpu/drm/drm_info.c:209:5: warning: symbol 'drm_gem_name_info' was not declared. Should it be static?
      
      ../drivers/gpu/drm/drm_ioc32.c:1019:20: warning: symbol 'drm_compat_ioctls' was not declared. Should it be static?
      
      ../drivers/gpu/drm/drm_bridge.c:52:12: warning: function 'drm_bridge_attach' with external linkage has definition
      Signed-off-by: default avatarVille Syrjälä <ville.syrjala@linux.intel.com>
      Signed-off-by: default avatarDaniel Vetter <daniel.vetter@ffwll.ch>
      43fc884e
    • Scott Wood's avatar
      drm: %pF is only for function pointers · 2ee762b3
      Scott Wood authored
      Use %pS for actual addresses, otherwise you'll get bad output
      on arches like ppc64 where %pF expects a function descriptor.
      Signed-off-by: default avatarScott Wood <scottwood@freescale.com>
      Cc: dri-devel@lists.freedesktop.org
      Signed-off-by: default avatarDaniel Vetter <daniel.vetter@ffwll.ch>
      2ee762b3
  5. 11 Mar, 2015 11 commits
  6. 10 Mar, 2015 14 commits
  7. 09 Mar, 2015 1 commit