1. 07 7月, 2015 2 次提交
  2. 31 5月, 2015 1 次提交
  3. 01 5月, 2015 2 次提交
  4. 09 4月, 2015 1 次提交
  5. 08 4月, 2015 1 次提交
  6. 07 4月, 2015 1 次提交
  7. 27 3月, 2015 2 次提交
  8. 24 3月, 2015 5 次提交
  9. 13 3月, 2015 2 次提交
  10. 26 2月, 2015 5 次提交
  11. 03 2月, 2015 1 次提交
  12. 28 1月, 2015 4 次提交
  13. 04 12月, 2014 1 次提交
  14. 18 11月, 2014 1 次提交
  15. 20 10月, 2014 1 次提交
  16. 26 9月, 2014 1 次提交
  17. 23 9月, 2014 4 次提交
  18. 03 9月, 2014 1 次提交
    • S
      clk: qcom: Fix sdc 144kHz frequency entry · d8210e28
      Stephen Boyd 提交于
      The pre-divider for the sdc clocks only has 2 bits in it, so we
      can't possibly divide by anything larger than 4 here.
      Furthermore, we program the value of ~(n - m) and the n value is
      larger than 8 bits (max of 256). Replace this entry with 200kHz
      which is close enough to 144kHz to be usable.
      
      Cc: Kumar Gala <galak@codeaurora.org>
      Cc: Andy Gross <agross@codeaurora.org>
      Fixes: 24d8fba4 "clk: qcom: Add support for IPQ8064's global clock controller (GCC)"
      Signed-off-by: NStephen Boyd <sboyd@codeaurora.org>
      Signed-off-by: NMike Turquette <mturquette@linaro.org>
      d8210e28
  19. 16 7月, 2014 4 次提交
    • S
      clk: qcom: Add support for APQ8064 multimedia clocks · e216ce60
      Stephen Boyd 提交于
      The APQ8064 multimedia clock controller is fairly similar to the
      8960 multimedia clock controller, except that gfx2d0/1 has been
      removed and the gfx3d frequency is slightly faster when using the
      newly introduced PLL15. We also add vcap clocks and a couple new
      TV clocks.
      Signed-off-by: NStephen Boyd <sboyd@codeaurora.org>
      e216ce60
    • S
      clk: qcom: pll: Add support for configuring SR PLLs · d8c25d3a
      Stephen Boyd 提交于
      Some SR type PLLs need to be configured for a certain rate when
      linux boots. Add support for these types of PLLs so that we can
      program PLL15's rate on apq8064.
      Signed-off-by: NStephen Boyd <sboyd@codeaurora.org>
      d8c25d3a
    • S
      clk: qcom: mdp_lut_clk is a child of mdp_src · f87dfcab
      Stephen Boyd 提交于
      The mdp_lut_clk isn't a child of the mdp_clk. Instead it's the
      child of the mdp_src clock. Fix it.
      
      Fixes: 6d00b56f "clk: qcom: Add support for MSM8960's multimedia clock controller (MMCC)"
      Signed-off-by: NStephen Boyd <sboyd@codeaurora.org>
      f87dfcab
    • S
      clk: qcom: Fix PLL rate configurations · 5b6b7490
      Stephen Boyd 提交于
      Sometimes we need to program PLLs with a fixed rate
      configuration during driver probe. Doing this after we register
      the PLLs with the clock framework causes the common clock
      framework to assume the rate of the PLLs are 0. This causes all
      sorts of problems for rate recalculations because the common
      clock framework caches the rate once at registration time unless
      a flag is set to always recalculate the rates.
      
      Split the qcom_cc_probe() function into two pieces, map and
      everything else, so that drivers which need to configure some
      PLL rates or otherwise twiddle bits in the clock controller can
      do so before registering clocks. This allows us to properly
      detect the rates of PLLs that are programmed at boot.
      
      Fixes: 49fc825f "clk: qcom: Consolidate common probe code"
      Signed-off-by: NStephen Boyd <sboyd@codeaurora.org>
      5b6b7490