1. 22 3月, 2018 1 次提交
  2. 19 3月, 2018 1 次提交
  3. 08 1月, 2018 2 次提交
  4. 21 12月, 2017 8 次提交
    • T
      drm/tegra: dc: Implement legacy blending · ebae8d07
      Thierry Reding 提交于
      This implements alpha blending on legacy display controllers (Tegra20,
      Tegra30 and Tegra114). While it's theoretically possible to support the
      zpos property to enable userspace to specify the Z-order of each plane
      individually, this is not currently supported and the same fixed Z-
      order as previously defined is used.
      
      Reverts commit 71835caa ("drm/tegra: fb: Force alpha formats") since
      the opaque formats are now supported.
      Reported-by: NDmitry Osipenko <digetx@gmail.com>
      Fixes: 7772fdae ("drm/tegra: Support ARGB and ABGR formats")
      Signed-off-by: NThierry Reding <treding@nvidia.com>
      ebae8d07
    • D
      drm/tegra: dc: Link DC1 to DC0 on Tegra20 · f68ba691
      Dmitry Osipenko 提交于
      Hardware reset isn't actually broken on Tegra20, but there is a
      dependency on the first display controller to be taken out of reset for
      the second to be enabled successfully. Model this dependency using a PM
      device link.
      Signed-off-by: NDmitry Osipenko <digetx@gmail.com>
      [treding@nvidia.com: minor cleanups, extend commit message]
      Signed-off-by: NThierry Reding <treding@nvidia.com>
      f68ba691
    • A
      drm/tegra: Fix non-debugfs builds · 39f55c61
      Arnd Bergmann 提交于
      The new debugfs registration fails to build when CONFIG_DEBUGFS is
      disabled, because the drm_crtc structure is lacking a member in that
      configuration:
      
      drivers/gpu/drm/tegra/dc.c: In function 'tegra_dc_late_register':
      drivers/gpu/drm/tegra/dc.c:1204:28: error: 'struct drm_crtc' has no member named 'debugfs_entry'
      
      Without CONFIG_DEBUGFS, the rest of the function already degrades
      into nothing, so we just avoid the one assignment.
      
      Fixes: b95800ee ("drm/tegra: dc: Register debugfs in ->late_register()")
      Signed-off-by: NArnd Bergmann <arnd@arndb.de>
      Signed-off-by: NThierry Reding <treding@nvidia.com>
      39f55c61
    • T
      drm/tegra: Use IOMMU groups · bc8828bd
      Thierry Reding 提交于
      In order to support IOMMUs more generically and transparently handle the
      ARM SMMU on Tegra186, move to using groups instead of devices for domain
      attachment. An IOMMU group is a set of devices that share the same IOMMU
      domain and is therefore a good match to represent what Tegra DRM needs.
      Signed-off-by: NThierry Reding <treding@nvidia.com>
      bc8828bd
    • T
      drm/tegra: Implement zpos property · ab7d3f58
      Thierry Reding 提交于
      Implement the standard zpos property for planes on Tegra124 and later.
      Earlier generations have a different blending unit that needs different
      programming.
      Signed-off-by: NThierry Reding <treding@nvidia.com>
      ab7d3f58
    • T
      drm/tegra: dc: Remove redundant spinlock · 363541e8
      Thierry Reding 提交于
      The spinlock is only used to serialize accesses to the DC_CMD_INT_MASK
      register. However, this register is accesses either with interrupts
      masked (in tegra_crtc_atomic_enable()) or protected by the vbl_lock and
      vblank_time_lock spinlocks of the DRM device. Therefore, these accesses
      don't need any extra serialization and the lock can be removed.
      Signed-off-by: NThierry Reding <treding@nvidia.com>
      363541e8
    • T
      drm/tegra: dc: Use direct offset to plane registers · 1087fac1
      Thierry Reding 提交于
      Traditionally, windows were accessed indirectly, through a register
      selection window that required a global register to be programmed with
      the index of the window to access. Since the global register could be
      written from modesetting functions as well as the interrupt handler
      concurrently, accesses had to be serialized using a lock. Using direct
      accesses to the window registers the lock can be avoided.
      Signed-off-by: NThierry Reding <treding@nvidia.com>
      1087fac1
    • T
      drm/tegra: dc: Support more formats · 511c7023
      Thierry Reding 提交于
      Also, split up formats into per-SoC lists because not all generations
      support all of them. Note that the list is now exhaustive for all RGB
      formats, but not for YUV and indexed formats.
      Signed-off-by: NThierry Reding <treding@nvidia.com>
      511c7023
  5. 13 12月, 2017 16 次提交
  6. 21 11月, 2017 2 次提交
  7. 20 10月, 2017 6 次提交
  8. 02 8月, 2017 1 次提交
    • B
      drm: Plumb modifiers through plane init · e6fc3b68
      Ben Widawsky 提交于
      This is the plumbing for supporting fb modifiers on planes. Modifiers
      have already been introduced to some extent, but this series will extend
      this to allow querying modifiers per plane. Based on this, the client to
      enable optimal modifications for framebuffers.
      
      This patch simply allows the DRM drivers to initialize their list of
      supported modifiers upon initializing the plane.
      
      v2: A minor addition from Daniel
      
      v3:
      * Updated commit message
      * s/INVALID/DRM_FORMAT_MOD_INVALID (Liviu)
      * Remove some excess newlines (Liviu)
      * Update comment for > 64 modifiers (Liviu)
      
      v4: Minor comment adjustments (Liviu)
      
      v5: Some new platforms added due to rebase
      
      v6: Add some missed plane inits (or maybe they're new - who knows at
      this point) (Daniel)
      Signed-off-by: NBen Widawsky <ben@bwidawsk.net>
      Reviewed-by: Daniel Stone <daniels@collabora.com> (v2)
      Reviewed-by: NLiviu Dudau <Liviu.Dudau@arm.com>
      Signed-off-by: NDaniel Stone <daniels@collabora.com>
      e6fc3b68
  9. 30 6月, 2017 2 次提交
  10. 15 6月, 2017 1 次提交