1. 15 8月, 2017 15 次提交
  2. 02 6月, 2017 6 次提交
  3. 03 4月, 2017 2 次提交
    • J
      drm/omap: Rename enum omap_plane to enum omap_plane_id · 864050c7
      Jyri Sarha 提交于
      The enum omap_plane conflicted with the same struct name for omapdrm
      plane private data. This rename should solve the conflict.
      
      The rename was implement with this very simple coccinelle patch:
      ------------------------
      @@
      @@
      enum
      -omap_plane
      +omap_plane_id
      ------------------------
      The patch was applied like this:
      spatch --sp-file <cocci_file> --all-includes --in-place --dir drivers/gpu/drm/omapdrm
      
      The above patch did not rename the actual enum definition. That was
      added manually on top of the spatch changes.
      Signed-off-by: NJyri Sarha <jsarha@ti.com>
      Acked-by: NLaurent Pinchart <laurent.pinchart@ideasonboard.com>
      Signed-off-by: NTomi Valkeinen <tomi.valkeinen@ti.com>
      864050c7
    • T
      drm/omap: move dispc related dss-feat funcs to dispc · c283400a
      Tomi Valkeinen 提交于
      omapdrm still uses a few non-dispc functions: dss_feat_get_num_mgrs(),
      dss_feat_get_num_ovls() and  dss_feat_get_supported_color_modes(). We
      want to provide omapdrm a single dispc_ops function pointer struct so
      that omapdrm will use either the current omapdss or the new omapdss6
      driver depending on the platform.
      
      Those three functions are really dispc functions, but are located in the
      dss_features.c for legacy reasons.
      
      This patch adds similar functionss to the dispc, and changes omapdrm to
      use those new functions. Underneath the functions still call the
      functions from dss_feature.c.
      Signed-off-by: NTomi Valkeinen <tomi.valkeinen@ti.com>
      c283400a
  4. 03 6月, 2016 1 次提交
  5. 20 5月, 2016 2 次提交
  6. 29 12月, 2015 4 次提交
  7. 25 2月, 2015 1 次提交
  8. 04 2月, 2015 2 次提交
  9. 12 11月, 2014 2 次提交
  10. 09 5月, 2014 2 次提交
  11. 17 4月, 2014 1 次提交
  12. 30 12月, 2013 1 次提交
  13. 09 10月, 2013 1 次提交
    • A
      omapdss: HDMI: Use OMAP4 HDMI core functions directly and remove hdmi_ip_ops · 425f02fd
      Archit Taneja 提交于
      After removing wrapper, pll and phy funcs from ti_hdmi_4xxx_ip.c, we are left
      with OMAP4 HDMI core functions. Use these directly in hdmi.c rather than using
      hdmi_ip_ops. Rename the core functions with a 'hdmi4' suffix.
      
      We used to have hdmi_ip_ops so that one could support HDMI within a TI SoC which
      had a non-DSS display subsytem. This however never got put into use, and hence
      these ops aren't useful any more.
      
      The DT/hwmod information for hdmi doesn't split the address space according to
      the required sub blocks. Keep the address offset and size information in the
      driver for now. This will be removed when the driver gets the information
      correctly from DT/hwmod.
      Signed-off-by: NArchit Taneja <archit@ti.com>
      Signed-off-by: NTomi Valkeinen <tomi.valkeinen@ti.com>
      425f02fd