1. 12 10月, 2015 1 次提交
    • S
      clk: imx6: Add SPDIF_GCLK clock in clock tree · 84a87250
      Shengjiu Wang 提交于
      Correct SPDIF clock setting issue in clock tree, the SPDIF_GCLK is also
      one clock of SPDIF, which is missed before.
      
      We found an issue that imx can't enter low power mode with spdif
      if IMX6x_CLK_SPDIF is used as the core clock of spdif. Because
      spdif driver will register IMX6x_CLK_SPDIF clock to regmap, regmap will do
      clk_prepare in init function, then IMX6x_CLK_SPDIF clock is prepared in probe,
      so its parent clock (PLL clock) is prepared, the prepare operation of
      PLL clock is to enable the clock. But I.MX needs all PLL clock is disabled,
      then it can enter low power mode.
      
      So we can't use IMX6x_CLK_SPDIF as the core clock of spdif, the correct spdif
      core clock is SPDIF_GCLK, which share same gate bit with IMX6x_CLK_SPDIF clock.
      SPDIF_GCLK's parent clock is ipg clock.
      Signed-off-by: NShengjiu Wang <shengjiu.wang@freescale.com>
      Signed-off-by: NShawn Guo <shawnguo@kernel.org>
      84a87250
  2. 26 9月, 2015 1 次提交
  3. 03 6月, 2015 4 次提交
  4. 16 9月, 2014 6 次提交
  5. 18 7月, 2014 3 次提交
  6. 17 6月, 2014 1 次提交
  7. 30 4月, 2014 1 次提交
  8. 05 3月, 2014 5 次提交
    • A
      ARM: imx: avoid calling clk APIs in idle thread which may cause schedule · 6e6cdf66
      Anson Huang 提交于
      As clk_pllv3_wait_lock will call usleep_range, and the clk APIs
      mutex lock may be held when CPU entering idle, so calling clk
      APIs must be avoided in cpu idle thread, this is to avoid reschedule
      warning in cpu idle, just access register directly to achieve that.
      
      bad: scheduling from the idle thread!
      CPU: 0 PID: 0 Comm: swapper/0 Not tainted 3.14.0-rc1+ #657
      Backtrace:
      [<80012188>] (dump_backtrace) from [<8001246c>] (show_stack+0x18/0x1c)
       r6:808c0038 r5:00000000 r4:808e5a1c r3:00000000
      [<80012454>] (show_stack) from [<8064b2ec>] (dump_stack+0x84/0x9c)
      [<8064b268>] (dump_stack) from [<80055ee0>] (dequeue_task_idle+0x20/0x30)
       r5:808bef40 r4:bf7dff40
      [<80055ec0>] (dequeue_task_idle) from [<8004f028>] (dequeue_task+0x30/0x50)
       r4:bf7dff40 r3:80055ec0
      [<8004eff8>] (dequeue_task) from [<800503c0>] (deactivate_task+0x30/0x34)
       r4:bf7dff40
      [<80050390>] (deactivate_task) from [<8064d8e4>] (__schedule+0x2c8/0x5c0)
      [<8064d61c>] (__schedule) from [<8064dc14>] (schedule+0x38/0x88)
       r10:80912964 r9:808c1e50 r8:808c0038 r7:808cbf30 r6:80e128ec r5:60000093
       r4:80912968
      [<8064dbdc>] (schedule) from [<8064dfec>] (schedule_preempt_disabled+0x10/0x14)
      [<8064dfdc>] (schedule_preempt_disabled) from [<8064ebc0>] (mutex_lock_nested+0x1c0/0x3c0)
      [<8064ea00>] (mutex_lock_nested) from [<804ae71c>] (clk_prepare_lock+0x44/0xe4)
       r10:806554cc r9:bf7df1bc r8:808cf4f8 r7:808cf544 r6:bf7df1b8 r5:808c0010
       r4:80e69750
      [<804ae6d8>] (clk_prepare_lock) from [<804af214>] (clk_get_rate+0x14/0x64)
       r6:bf7df1b8 r5:00000002 r4:bf017000 r3:80922ad0
      [<804af200>] (clk_get_rate) from [<80025d30>] (imx6sl_set_wait_clk+0x18/0x20)
       r5:00000002 r4:00000001
      [<80025d18>] (imx6sl_set_wait_clk) from [<80023454>] (imx6sl_enter_wait+0x20/0x48)
      [<80023434>] (imx6sl_enter_wait) from [<80477c24>] (cpuidle_enter_state+0x44/0xfc)
       r4:3c386e48 r3:80023434
      [<80477be0>] (cpuidle_enter_state) from [<80477dd8>] (cpuidle_idle_call+0xfc/0x160)
       r8:808cf4f8 r7:00000001 r6:80e69534 r5:00000000 r4:bf7df1b8
      [<80477cdc>] (cpuidle_idle_call) from [<8000f61c>] (arch_cpu_idle+0x10/0x50)
       r9:808c0000 r8:00000000 r7:80921a89 r6:808c8938 r5:808c899c r4:808c0000
      [<8000f60c>] (arch_cpu_idle) from [<8006fa94>] (cpu_startup_entry+0x108/0x160)
      [<8006f98c>] (cpu_startup_entry) from [<806452ac>] (rest_init+0xb4/0xdc)
       r7:808afae0
      [<806451f8>] (rest_init) from [<8086fb58>] (start_kernel+0x328/0x38c)
       r6:ffffffff r5:808c8880 r4:808c8a30
      [<8086f830>] (start_kernel) from [<80008074>] (0x80008074)
      Signed-off-by: NAnson Huang <b20788@freescale.com>
      Signed-off-by: NShawn Guo <shawn.guo@linaro.org>
      6e6cdf66
    • A
      ARM: imx: add always-on clock array for i.mx6sl to maintain correct usecount · 17626b7c
      Anson Huang 提交于
      IPG, ARM and MMDC's clock should be enabled during kernel boot up,
      so we need to maintain their usecount, otherwise, they may be
      disabled unexpectedly if their children's clock are turned off, and
      caused their parent PLLs also get disabled, which is incorrect.
      Signed-off-by: NAnson Huang <b20788@freescale.com>
      Signed-off-by: NShawn Guo <shawn.guo@linaro.org>
      17626b7c
    • L
      ARM: imx: clk-imx6sl: Suppress duplicate const sparse warning · b21c22e3
      Liu Ying 提交于
      There should be no duplicate const specifiers for those static
      constant character string arrays defined for clock mux options.
      Also, the arrays are only taken as the 5th argument for the
      imx_clk_mux() function, which is in the type of 'const char
      **parents'.  So, let's remove the 2nd const specifier right
      after 'char'.
      
      This patch fixes these sparse warnings:
      arch/arm/mach-imx/clk-imx6sl.c:21:25: warning: duplicate const
      arch/arm/mach-imx/clk-imx6sl.c:22:25: warning: duplicate const
      arch/arm/mach-imx/clk-imx6sl.c:23:25: warning: duplicate const
      arch/arm/mach-imx/clk-imx6sl.c:24:25: warning: duplicate const
      arch/arm/mach-imx/clk-imx6sl.c:25:25: warning: duplicate const
      arch/arm/mach-imx/clk-imx6sl.c:26:25: warning: duplicate const
      arch/arm/mach-imx/clk-imx6sl.c:27:25: warning: duplicate const
      arch/arm/mach-imx/clk-imx6sl.c:28:25: warning: duplicate const
      arch/arm/mach-imx/clk-imx6sl.c:29:25: warning: duplicate const
      arch/arm/mach-imx/clk-imx6sl.c:30:25: warning: duplicate const
      arch/arm/mach-imx/clk-imx6sl.c:31:25: warning: duplicate const
      arch/arm/mach-imx/clk-imx6sl.c:32:25: warning: duplicate const
      arch/arm/mach-imx/clk-imx6sl.c:33:25: warning: duplicate const
      arch/arm/mach-imx/clk-imx6sl.c:34:25: warning: duplicate const
      arch/arm/mach-imx/clk-imx6sl.c:35:25: warning: duplicate const
      arch/arm/mach-imx/clk-imx6sl.c:36:25: warning: duplicate const
      arch/arm/mach-imx/clk-imx6sl.c:37:25: warning: duplicate const
      arch/arm/mach-imx/clk-imx6sl.c:38:25: warning: duplicate const
      arch/arm/mach-imx/clk-imx6sl.c:39:25: warning: duplicate const
      arch/arm/mach-imx/clk-imx6sl.c:40:25: warning: duplicate const
      arch/arm/mach-imx/clk-imx6sl.c:41:25: warning: duplicate const
      Signed-off-by: NLiu Ying <Ying.Liu@freescale.com>
      Signed-off-by: NShawn Guo <shawn.guo@linaro.org>
      b21c22e3
    • 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
    • A
      ARM: imx: AHB rate must be set to 132MHz on i.mx6sl · 848db4a0
      Anson Huang 提交于
      The reset value of AHB divider is 3, so current AHB rate
      is 99MHz which is not correct for kernel, need to ensure
      AHB rate is 132MHz in clk driver, as ipg is sourcing from
      AHB, and it should be 66MHz by default.
      Signed-off-by: NAnson Huang <b20788@freescale.com>
      Signed-off-by: NShawn Guo <shawn.guo@linaro.org>
      848db4a0
  9. 11 2月, 2014 1 次提交
  10. 31 12月, 2013 4 次提交
  11. 21 10月, 2013 1 次提交
    • S
      ARM: imx: enable suspend for imx6sl · 9ba64fe3
      Shawn Guo 提交于
      The imx6sl low power mode implementation inherits imx6q/dl one,
      and pm-imx6q.c can just work for imx6sl with some minor updates.
      Let's enable imx6sl suspend support by reusing pm-imx6q.c and use
      cpu_is_imxXX() to handle the those minor differences between imx6sl
      and imx6q/dl.
      Signed-off-by: NShawn Guo <shawn.guo@linaro.org>
      9ba64fe3
  12. 16 8月, 2013 1 次提交
  13. 17 6月, 2013 2 次提交