1. 03 6月, 2015 1 次提交
    • S
      ARM: imx6: initialize CCM_CLPCR_LPM into RUN mode earlier · 35e2916f
      Shawn Guo 提交于
      Commit 4631960d26da ("ARM: imx6: set initial power mode in pm function")
      moves imx6_set_lpm() from clock init function into
      imx6_pm_common_init().  This causes a hang when cpuidle support is
      enabled.  The reason for that is ARM core clock is shut down
      unexpectedly by WAIT mode.  It happens with the following call stack:
      
          cpuidle_register_governor()
              cpuidle_switch_governor()
                  cpuidle_uninstall_idle_handler()
                      synchronize_sched()
                          wait_rcu_gp()
                              wait_for_completion()
      
      When wait_for_completion() is called as above, all cores are idle/WFI.
      Hence, the reset value of CCM_CLPCR_LPM - WAIT mode, will trigger a
      hardware shutdown of the ARM core clock.
      
      To fix the regression, we need to ensure that CCM_CLPCR_LPM is
      initialized into RUN mode earlier than cpuidle governor registration,
      which is a postcore_initcall.  This patch creates function
      imx6_pm_ccm_init() to map CCM block and initialize CCM_CLPCR_LPM into
      RUN mode, and have the function called from machine .init_irq hook,
      which should be early enough.
      Reported-by: NKevin Hilman <khilman@kernel.org>
      Fixes: 8fb76a07 ("ARM: imx6: set initial power mode in pm function")
      Tested-by: NKevin Hilman <khilman@linaro.org>
      Tested-by: NTyler Baker <tyler.baker@linaro.org>
      Signed-off-by: NShawn Guo <shawn.guo@linaro.org>
      35e2916f
  2. 30 3月, 2015 2 次提交
  3. 22 11月, 2014 2 次提交
  4. 18 7月, 2014 1 次提交
  5. 05 3月, 2014 2 次提交
    • A
      ARM: imx: add suspend in ocram support for i.mx6q · df595746
      Anson Huang 提交于
      When system enter suspend, we can set the DDR IO to
      high-Z state to save DDR IOs' power consumption, this
      operation can save many power(from ~26mA@1.5V to ~15mA@1.5V,
      measured on i.MX6Q SabreSD board, R25) of DDR IOs. To
      achieve that, we need to copy the suspend code to ocram
      and run the low level hardware related code(set DDR IOs
      to high-Z state) in ocram.
      
      If there is no ocram space available, then system will
      still do suspend in external DDR, hence no DDR IOs will
      be set to high-Z.
      
      The OCRAM usage layout is as below,
      
      ocram suspend region(4K currently):
      ======================== high address ======================
                                    .
                                    .
                                    .
                                    ^
                                    ^
                                    ^
                            imx6_suspend code
                   PM_INFO structure(imx6_cpu_pm_info)
      ======================== low address =======================
      Reviewed-by: NSascha Hauer <s.hauer@pengutronix.de>
      Signed-off-by: NAnson Huang <b20788@freescale.com>
      Signed-off-by: NShawn Guo <shawn.guo@linaro.org>
      df595746
    • A
      ARM: imx: add cpuidle support for i.mx6sl · 751f7e99
      Anson Huang 提交于
      Add cpuidle support for i.MX6SL, currently only support
      two cpuidle levels(ARM wfi and WAIT mode), and add software
      workaround for WAIT mode errata as below:
      
      ERR005311 CCM: After exit from WAIT mode, unwanted interrupt(s) taken
                during WAIT mode entry process could cause cache memory
                corruption.
      
      Software workaround:
          To prevent this issue from occurring, software should ensure that
      the ARM to IPG clock ratio is less than 12:5 (that is < 2.4x), before
      entering WAIT mode.
      Signed-off-by: NAnson Huang <b20788@freescale.com>
      Signed-off-by: NShawn Guo <shawn.guo@linaro.org>
      751f7e99
  6. 31 12月, 2013 2 次提交
  7. 21 10月, 2013 4 次提交
  8. 30 9月, 2013 1 次提交
  9. 16 8月, 2013 1 次提交
  10. 17 6月, 2013 2 次提交