1. 28 5月, 2014 3 次提交
  2. 20 2月, 2014 1 次提交
  3. 10 2月, 2014 1 次提交
  4. 18 1月, 2014 16 次提交
  5. 13 12月, 2013 1 次提交
  6. 12 12月, 2013 1 次提交
  7. 02 12月, 2013 2 次提交
  8. 30 9月, 2013 2 次提交
  9. 25 6月, 2013 1 次提交
  10. 23 6月, 2013 1 次提交
  11. 01 6月, 2013 1 次提交
  12. 30 5月, 2013 1 次提交
  13. 27 5月, 2013 1 次提交
  14. 05 4月, 2013 1 次提交
    • S
      clk: tegra: defer application of init table · 441f199a
      Stephen Warren 提交于
      The Tegra clock driver is initialized during the ARM machine descriptor's
      .init_irq() hook. It can't be initialized earlier, since dynamic memory
      usage is required. It can't be initialized later, since the .init_timer()
      hook needs the clocks initialized. However, at this time, udelay()
      doesn't work.
      
      The Tegra clock initialization table may enable some PLLs. Enabling a PLL
      may require usage of udelay(). Hence, this can't happen right when the
      clock driver is initialized.
      
      To solve this, separate the clock driver initialization from the clock
      table processing, so they can execute at separate times.
      Signed-off-by: NStephen Warren <swarren@nvidia.com>
      441f199a
  15. 01 4月, 2013 1 次提交
  16. 27 3月, 2013 1 次提交
    • E
      clk: arm: sunxi: Add a new clock driver for sunxi SOCs · e874a669
      Emilio López 提交于
      This commit implements the base CPU clocks for sunxi devices. It has
      been tested using a slightly modified cpufreq driver from the
      linux-sunxi 3.0 tree.
      
      Additionally, document the new bindings introduced by this patch.
      
      Idling:
          / # cat /sys/kernel/debug/clk/clk_summary
             clock                        enable_cnt  prepare_cnt  rate
          ---------------------------------------------------------------------
           osc32k                         0           0            32768
           osc24M_fixed                   0           0            24000000
              osc24M                      0           0            24000000
                 apb1_mux                 0           0            24000000
                    apb1                  0           0            24000000
                 pll1                     0           0            60000000
                    cpu                   0           0            60000000
                       axi                0           0            60000000
                          ahb             0           0            60000000
                             apb0         0           0            30000000
           dummy                          0           0            0
      
      After "yes >/dev/null &":
          / # cat /sys/kernel/debug/clk/clk_summary
             clock                        enable_cnt  prepare_cnt  rate
          ---------------------------------------------------------------------
           osc32k                         0           0            32768
           osc24M_fixed                   0           0            24000000
              osc24M                      0           0            24000000
                 apb1_mux                 0           0            24000000
                    apb1                  0           0            24000000
                 pll1                     0           0            1008000000
                    cpu                   0           0            1008000000
                       axi                0           0            336000000
                          ahb             0           0            168000000
                             apb0         0           0            84000000
           dummy                          0           0            0
      Signed-off-by: NEmilio López <emilio@elopez.com.ar>
      Acked-by: NMaxime Ripard <maxime.ripard@free-electrons.com>
      Signed-off-by: NMike Turquette <mturquette@linaro.org>
      e874a669
  17. 29 1月, 2013 3 次提交
  18. 25 1月, 2013 1 次提交
  19. 20 11月, 2012 1 次提交