mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 12:45:42 +00:00
c3dc39a2f8
It is bad practice to include common.h in other header files since it can bring in any number of superfluous definitions. It implies that some C files don't include it and thus may be missing CONFIG options that are set up by that file. The C files should include these themselves. Update some header files in arch/arm to drop this. Signed-off-by: Simon Glass <sjg@chromium.org>
35 lines
758 B
C
35 lines
758 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
*
|
|
* (c) 2007 Pengutronix, Sascha Hauer <s.hauer@pengutronix.de>
|
|
*/
|
|
|
|
#ifndef __ASM_ARCH_CLOCK_H
|
|
#define __ASM_ARCH_CLOCK_H
|
|
|
|
#define MXC_HCLK CONFIG_MX31_HCLK_FREQ
|
|
|
|
#define MXC_CLK32 CONFIG_MX31_CLK32
|
|
|
|
enum mxc_clock {
|
|
MXC_ARM_CLK,
|
|
MXC_IPG_CLK,
|
|
MXC_IPG_PERCLK,
|
|
MXC_CSPI_CLK,
|
|
MXC_UART_CLK,
|
|
MXC_IPU_CLK,
|
|
MXC_ESDHC_CLK,
|
|
MXC_I2C_CLK,
|
|
};
|
|
|
|
unsigned int mxc_get_clock(enum mxc_clock clk);
|
|
extern u32 imx_get_uartclk(void);
|
|
extern void mx31_gpio_mux(unsigned long mode);
|
|
extern void mx31_set_pad(enum iomux_pins pin, u32 config);
|
|
extern void mx31_set_gpr(enum iomux_gp_func gp, char en);
|
|
|
|
void mx31_uart1_hw_init(void);
|
|
void mx31_uart2_hw_init(void);
|
|
void mx31_spi2_hw_init(void);
|
|
|
|
#endif /* __ASM_ARCH_CLOCK_H */
|