diff options
author | Fabio Estevam <fabio.estevam@nxp.com> | 2018-07-10 13:31:48 -0300 |
---|---|---|
committer | Shawn Guo <shawnguo@kernel.org> | 2018-07-12 09:52:20 +0800 |
commit | 26b754f99402d6e7fc4e07d67a2597e6ebabde8b (patch) | |
tree | 952de042c8ac68e8ce02a210c63e062777db151a /arch/arm/mach-imx/common.h | |
parent | 11d973de60e1a69e2b0b240557ad02cf9f884d71 (diff) | |
download | lwn-26b754f99402d6e7fc4e07d67a2597e6ebabde8b.tar.gz lwn-26b754f99402d6e7fc4e07d67a2597e6ebabde8b.zip |
ARM: mx5: Set the DBGEN bit in ARM_GPC register
On i.MX51/i.MX53 it is necessary to set the DBGEN bit in
ARM_GPC register in order to turn on the debug clocks.
The DBGEN bit of ARM_GPC register has the following description
in the i.MX53 Reference Manual:
"This allows the user to manually activate clocks within the debug
system. This register bit directly controls the platform's dbgen_out
output signal which connects to the DAP_SYS to enable all debug clocks.
Once enabled, the clocks cannot be disabled except by asserting the
disable_trace input of the DAP_SYS."
Based on a previous patch from Sebastian Reichel.
Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com>
Signed-off-by: Shawn Guo <shawnguo@kernel.org>
Diffstat (limited to 'arch/arm/mach-imx/common.h')
-rw-r--r-- | arch/arm/mach-imx/common.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/mach-imx/common.h b/arch/arm/mach-imx/common.h index 93225db759f8..423dd76bb6b8 100644 --- a/arch/arm/mach-imx/common.h +++ b/arch/arm/mach-imx/common.h @@ -62,6 +62,7 @@ void imx_gpc_set_arm_power_up_timing(u32 sw2iso, u32 sw); void imx_gpc_set_arm_power_down_timing(u32 sw2iso, u32 sw); void imx25_pm_init(void); void imx27_pm_init(void); +void imx5_pmu_init(void); enum mxc_cpu_pwr_mode { WAIT_CLOCKED, /* wfi only */ |