1. 11 9月, 2019 1 次提交
    • M
      drm/i915: Use literal representation of cdclk tables · 736da811
      Matt Roper 提交于
      The bspec lays out legal cdclk frequencies, PLL ratios, and CD2X
      dividers in an easy-to-read table for most recent platforms.  We've been
      translating the data from that table into platform-specific code logic,
      but it's easy to overlook an area we need to update when adding new
      cdclk values or enabling new platforms.  Let's just add a form of the
      bspec table to the code and then adjust our functions to pull what they
      need directly out of the table.
      
      v2: Fix comparison when finding best cdclk.
      
      v3: Another logic fix for calc_cdclk.
      
      v4:
       - Use named initializers for cdclk tables. (Ville)
       - Include refclk as a field in the table instead of adding all three
         ratios for each entry. (Ville)
       - Terminate tables with an empty entry to avoid needing to store the
         table size. (Ville)
       - Don't try so hard to return reasonable values from our lookup
         functions if we get impossible inputs; just WARN and return 0.
         (Ville)
       - Keep a bxt_ prefix on the lookup functions since they're still only
         used on bxt+ for now.  We can rename them later if we extend this
         table-based approach back to older platforms.  (Ville)
      
      v5:
       - Fix cnl table's ratios for 24mhz refclk. (Ville)
       - Don't miss the named initializers on the cnl table. (Ville)
       - Represent refclk in table as u16 rather than u32. (Ville)
      
      Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
      Signed-off-by: NMatt Roper <matthew.d.roper@intel.com>
      Reviewed-by: NVille Syrjälä <ville.syrjala@linux.intel.com>
      Link: https://patchwork.freedesktop.org/patch/msgid/20190910161506.7158-1-matthew.d.roper@intel.com
      736da811
  2. 10 9月, 2019 1 次提交
  3. 30 8月, 2019 2 次提交
  4. 24 8月, 2019 3 次提交
  5. 23 8月, 2019 1 次提交
    • J
      drm/i915/psr: Make PSR registers relative to transcoders · 4ab4fa10
      José Roberto de Souza 提交于
      PSR registers are a mess, some have the full address while others just
      have the additional offset from psr_mmio_base.
      
      For BDW+ psr_mmio_base is nothing more than TRANSCODER_EDP_OFFSET +
      0x800 and using it makes more difficult for people with an PSR
      register address or PSR register name from from BSpec as i915 also
      don't match the BSpec names.
      For HSW psr_mmio_base is _DDI_BUF_CTL_A + 0x800 and PSR registers are
      only available in DDIA.
      
      Other reason to make relative to transcoder is that since BDW every
      transcoder have PSR registers, so in theory it should be possible to
      have PSR enabled in a non-eDP transcoder.
      
      So for BDW+ we can use _TRANS2() to get the register offset of any
      PSR register in any transcoder while for HSW we have _HSW_PSR_ADJ
      that will calculate the register offset for the single PSR instance,
      noting that we are already guarded about trying to enable PSR in other
      port than DDIA on HSW by the 'if (dig_port->base.port != PORT_A)' in
      intel_psr_compute_config(), this check should only be valid for HSW
      and will be changed in future.
      PSR2 registers and PSR_EVENT was added after Haswell so that is why
      _PSR_ADJ() is not used in some macros.
      
      The only registers that can not be relative to transcoder are
      PSR_IMR and PSR_IIR that are not relative to anything, so keeping it
      hardcoded. That changed for TGL but it will be handled in another
      patch.
      
      Also removing BDW_EDP_PSR_BASE from GVT because it is not used as it
      is the only PSR register that GVT have.
      
      v5:
      - Macros changed to be more explicit about HSW (Dhinakaran)
      - Squashed with the patch that added the tran parameter to the
      macros (Dhinakaran)
      
      v6:
      - Checking for interruption errors after module reload in the
      transcoder that will be used (Dhinakaran)
      - Using lowercase to the registers offsets
      
      v7:
      - Removing IS_HASWELL() from registers macros(Jani)
      
      Cc: Dhinakaran Pandiyan <dhinakaran.pandiyan@intel.com>
      Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
      Cc: Jani Nikula <jani.nikula@linux.intel.com>
      Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
      Cc: Zhi Wang <zhi.a.wang@intel.com>
      Reviewed-by: NLucas De Marchi <lucas.demarchi@intel.com>
      Signed-off-by: NJosé Roberto de Souza <jose.souza@intel.com>
      Signed-off-by: NLucas De Marchi <lucas.demarchi@intel.com>
      Link: https://patchwork.freedesktop.org/patch/msgid/20190820223325.27490-1-jose.souza@intel.com
      4ab4fa10
  6. 22 8月, 2019 1 次提交
  7. 21 8月, 2019 1 次提交
  8. 20 8月, 2019 3 次提交
  9. 17 8月, 2019 3 次提交
  10. 16 8月, 2019 1 次提交
  11. 14 8月, 2019 1 次提交
  12. 13 8月, 2019 1 次提交
  13. 12 8月, 2019 1 次提交
  14. 10 8月, 2019 1 次提交
  15. 09 8月, 2019 11 次提交
  16. 08 8月, 2019 3 次提交
  17. 07 8月, 2019 4 次提交
  18. 06 8月, 2019 1 次提交