1. 17 3月, 2016 2 次提交
  2. 04 2月, 2016 2 次提交
  3. 25 1月, 2016 1 次提交
  4. 16 1月, 2016 4 次提交
  5. 03 1月, 2016 1 次提交
    • H
      clk: rockchip: fix section mismatches with new child-clocks · 5b738403
      Heiko Stübner 提交于
      To model the muxes downstream of fractional dividers we introduced the
      child property, allowing to describe a direct child clock.
      The first implementation seems to cause section warnings, as the core
      clock-tree is marked as initdata while the data pointed to from the
      child element is not.
      
      While there may be some way to also set that missing property in the
      inline notation I didn't find it, so to actually fix the issue for now
      move the sub-definitions into separate declarations that can have
      their own __initdata properties.
      Signed-off-by: NHeiko Stuebner <heiko@sntech.de>
      Signed-off-by: NMichael Turquette <mturquette@baylibre.com>
      5b738403
  6. 24 12月, 2015 1 次提交
  7. 21 12月, 2015 1 次提交
    • H
      clk: rockchip: only enter pll slow-mode directly before reboots on rk3288 · dfff24bd
      Heiko Stuebner 提交于
      As commit 1d33929e ("clk: rockchip: switch PLLs to slow mode before
      reboot for rk3288") states, switching the PLLs to slow-mode is only
      necessary when rebooting using the soft-reset done through the CRU.
      
      The dwc2 controllers used create really big number of interrupts in
      special constellations involving usb-hubs and their number is so high,
      it can even overwhelm the interrupt handler if the cpu-speed os to low.
      
      Right now the PLLs are put into slow-mode in a shutdown syscore_ops
      callback which means it happens on all reboots (not only the soft-reset
      ones) and even on poweroff actions.
      
      This can result in the system not powering off and getting stuck instead,
      so we should move the slow-mode change nearer to the actual reboot action.
      
      For this we introduce the possiblity to also set a callback that gets
      called from the restart-handler directly prior to restarting the system
      and move the shutdown-callback to this new option.
      
      With this the slow-mode switch is done only on the necessary reboots
      and also has a smaller possibility of causing artifacts.
      
      Fixes: 1d33929e ("clk: rockchip: switch PLLs to slow mode before reboot for rk3288")
      Signed-off-by: NHeiko Stuebner <heiko.stuebner@collabora.com>
      Reviewed-by: NDouglas Anderson <dianders@chromium.org>
      dfff24bd
  8. 17 12月, 2015 1 次提交
  9. 24 11月, 2015 1 次提交