diff options
author | Terry Lv <r65388@freescale.com> | 2010-05-12 22:47:31 +0800 |
---|---|---|
committer | Terry Lv <r65388@freescale.com> | 2010-05-14 15:35:52 +0800 |
commit | 9ef0863e8bd5eba9243b4f5e84b75806b1d4c889 (patch) | |
tree | 8017fe12dc3a1ff770a09230ca55e51a9f8c66d9 /include | |
parent | 9667c8061fcfe407b2fa2055b09e0509dc7cc041 (diff) | |
download | u-boot-imx-9ef0863e8bd5eba9243b4f5e84b75806b1d4c889.zip u-boot-imx-9ef0863e8bd5eba9243b4f5e84b75806b1d4c889.tar.gz u-boot-imx-9ef0863e8bd5eba9243b4f5e84b75806b1d4c889.tar.bz2 |
ENGR00123418: Add peripheral clock setup support
Add peripheral clock setup support.
Signed-off-by: Terry Lv <r65388@freescale.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/asm-arm/arch-mx53/mx53.h | 1 | ||||
-rw-r--r-- | include/asm-arm/clock.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/include/asm-arm/arch-mx53/mx53.h b/include/asm-arm/arch-mx53/mx53.h index b1f3d27..6586b9c 100644 --- a/include/asm-arm/arch-mx53/mx53.h +++ b/include/asm-arm/arch-mx53/mx53.h @@ -393,6 +393,7 @@ enum boot_device { enum mxc_clock { MXC_ARM_CLK = 0, + MXC_PER_CLK, MXC_AHB_CLK, MXC_IPG_CLK, MXC_IPG_PERCLK, diff --git a/include/asm-arm/clock.h b/include/asm-arm/clock.h index 95afb89..41f8c8c 100644 --- a/include/asm-arm/clock.h +++ b/include/asm-arm/clock.h @@ -27,6 +27,7 @@ enum { CPU_CLK = 0, + PERIPH_CLK, AHB_CLK, IPG_CLK, IPG_PERCLK, |