diff options
author | Terry Lv <r65388@freescale.com> | 2010-09-21 15:24:04 +0800 |
---|---|---|
committer | Terry Lv <r65388@freescale.com> | 2010-09-21 15:24:44 +0800 |
commit | 359ec824c60dffdca80f42ca626fb5baf67ad20e (patch) | |
tree | 18d524ff8f1458cbbd33f4af67962c17789ecb84 /include/asm-arm | |
parent | f7af4ae4bbe25f6e53fcc779458ab31c6c412596 (diff) | |
download | u-boot-imx-359ec824c60dffdca80f42ca626fb5baf67ad20e.zip u-boot-imx-359ec824c60dffdca80f42ca626fb5baf67ad20e.tar.gz u-boot-imx-359ec824c60dffdca80f42ca626fb5baf67ad20e.tar.bz2 |
ENGR00131779: Use serial_mxc as uart driver for all platforms
Use serial_mxc as uart driver for all platforms.
Signed-off-by: Terry Lv <r65388@freescale.com>
Diffstat (limited to 'include/asm-arm')
-rw-r--r-- | include/asm-arm/arch-mx31/mx31.h | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/include/asm-arm/arch-mx31/mx31.h b/include/asm-arm/arch-mx31/mx31.h index 53b9f27..3f8e3ca 100644 --- a/include/asm-arm/arch-mx31/mx31.h +++ b/include/asm-arm/arch-mx31/mx31.h @@ -24,21 +24,28 @@ #ifndef __ASM_ARCH_MX31_H #define __ASM_ARCH_MX31_H -extern u32 mx31_get_ipg_clk(void); -extern void mx31_gpio_mux(unsigned long mode); +#ifndef __ASSEMBLER__ + +enum mxc_clock { + MXC_ARM_CLK, + MXC_UART_CLK, +}; enum mx31_gpio_direction { MX31_GPIO_DIRECTION_IN, MX31_GPIO_DIRECTION_OUT, }; +extern int mxc_get_clock(enum mxc_clock clk); +extern void mx31_gpio_mux(unsigned long mode); + #ifdef CONFIG_MX31_GPIO extern int mx31_gpio_direction(unsigned int gpio, - enum mx31_gpio_direction direction); + enum mx31_gpio_direction direction); extern void mx31_gpio_set(unsigned int gpio, unsigned int value); #else static inline int mx31_gpio_direction(unsigned int gpio, - enum mx31_gpio_direction direction) + enum mx31_gpio_direction direction) { return 1; } @@ -50,4 +57,6 @@ static inline void mx31_gpio_set(unsigned int gpio, unsigned int value) void mx31_uart1_hw_init(void); void mx31_spi2_hw_init(void); +#endif + #endif /* __ASM_ARCH_MX31_H */ |