1. 03 9月, 2018 23 次提交
  2. 28 6月, 2018 2 次提交
    • T
      drm/omap: fix email address · 6505d75c
      Tomi Valkeinen 提交于
      Change tomi.valkeinen@nokia.com to tomi.valkeinen@ti.com.
      Signed-off-by: NTomi Valkeinen <tomi.valkeinen@ti.com>
      6505d75c
    • V
      drm/omap: Implement workaround for DRA7 errata ID:i932 · c618a3a9
      Venkateswara Rao Mandela 提交于
      Description of DRA7 Errata i932:
      
      In rare circumstances DPLL_VIDEO1 and DPLL_VIDEO2 PLL's may not lock on
      the first attempt during DSS initialization. When this occurs, a
      subsequent attempt to relock the PLL will result in PLL successfully
      locking.
      
      This patch does the following as per the errata recommendation:
      
      - retries locking the PLL upto 20 times.
      
      - The time to wait for a PLL lock set to 1000 REFCLK cycles. We use
      usleep_range to wait for 1000 REFCLK cycles in the us range. This tight
      constraint is imposed as a lock later than 1000 REFCLK cycles may have
      high jitter.
      
      - Criteria for PLL lock is extended from check on just the PLL_LOCK bit
      to check on 6 PLL_STATUS bits.
      
      Silicon Versions Impacted:
      DRA71, DRA72, DRA74, DRA76 - All silicon revisions
      AM57x - All silicon revisions
      
      OMAP4/5 are not impacted by this errata
      Signed-off-by: NVenkateswara Rao Mandela <venkat.mandela@ti.com>
      [tomi.valkeinen@ti.com: ported to v4.14]
      Signed-off-by: NTomi Valkeinen <tomi.valkeinen@ti.com>
      c618a3a9
  3. 25 5月, 2018 1 次提交
  4. 07 5月, 2018 4 次提交
  5. 05 4月, 2018 1 次提交
  6. 14 3月, 2018 2 次提交
    • T
      drm/omap: fix compile error when DPI is disabled · 037f0315
      Tomi Valkeinen 提交于
      When CONFIG_OMAP2_DSS_DPI is disabled, compilation fails due to:
      
      drivers/gpu/drm/omapdrm/dss/dss.h:388:25: error: conflicting types for ‘port’
           struct device_node *port,
                               ^~~~
      
      Fix this by renaming the first parameter correctly.
      Signed-off-by: NTomi Valkeinen <tomi.valkeinen@ti.com>
      037f0315
    • T
      drm/omap: fix compile error when debugfs is disabled · 83df2d4e
      Tomi Valkeinen 提交于
      When compiling with CONFIG_OMAP2_DSS_DEBUGFS disabled, build fails due
      to:
      
      drivers/gpu/drm/omapdrm/dss/dss.c:1474:10: error: ‘dss_debug_dump_clocks’ undeclared (first use in this function); did you mean ‘dispc_dump_clocks’?
                dss_debug_dump_clocks, dss);
                ^~~~~~~~~~~~~~~~~~~~~
                dispc_dump_clocks
      
      Fix this by moving the required functions outside #if
      defined(CONFIG_OMAP2_DSS_DEBUGFS).
      
      In the long term, we perhaps want to try to get all the debugfs support
      left out if debugfs is not enabled.
      Signed-off-by: NTomi Valkeinen <tomi.valkeinen@ti.com>
      83df2d4e
  7. 01 3月, 2018 7 次提交