mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 05:04:26 +00:00
83d290c56f
When U-Boot started using SPDX tags we were among the early adopters and there weren't a lot of other examples to borrow from. So we picked the area of the file that usually had a full license text and replaced it with an appropriate SPDX-License-Identifier: entry. Since then, the Linux Kernel has adopted SPDX tags and they place it as the very first line in a file (except where shebangs are used, then it's second line) and with slightly different comment styles than us. In part due to community overlap, in part due to better tag visibility and in part for other minor reasons, switch over to that style. This commit changes all instances where we have a single declared license in the tag as both the before and after are identical in tag contents. There's also a few places where I found we did not have a tag and have introduced one. Signed-off-by: Tom Rini <trini@konsulko.com>
69 lines
1 KiB
C
69 lines
1 KiB
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* (C) Copyright 2011
|
|
* Stefano Babic, DENX Software Engineering, sbabic@denx.de.
|
|
*/
|
|
|
|
#ifndef __ASM_ARCH_CLOCK_H
|
|
#define __ASM_ARCH_CLOCK_H
|
|
|
|
#include <common.h>
|
|
|
|
#ifdef CONFIG_MX35_HCLK_FREQ
|
|
#define MXC_HCLK CONFIG_MX35_HCLK_FREQ
|
|
#else
|
|
#define MXC_HCLK 24000000
|
|
#endif
|
|
|
|
#ifdef CONFIG_MX35_CLK32
|
|
#define MXC_CLK32 CONFIG_MX35_CLK32
|
|
#else
|
|
#define MXC_CLK32 32768
|
|
#endif
|
|
|
|
enum mxc_clock {
|
|
MXC_ARM_CLK,
|
|
MXC_AHB_CLK,
|
|
MXC_IPG_CLK,
|
|
MXC_IPG_PERCLK,
|
|
MXC_UART_CLK,
|
|
MXC_ESDHC1_CLK,
|
|
MXC_ESDHC2_CLK,
|
|
MXC_ESDHC3_CLK,
|
|
MXC_USB_CLK,
|
|
MXC_CSPI_CLK,
|
|
MXC_FEC_CLK,
|
|
MXC_I2C_CLK,
|
|
};
|
|
|
|
enum mxc_main_clock {
|
|
CPU_CLK,
|
|
AHB_CLK,
|
|
IPG_CLK,
|
|
IPG_PER_CLK,
|
|
NFC_CLK,
|
|
USB_CLK,
|
|
HSP_CLK,
|
|
};
|
|
|
|
enum mxc_peri_clock {
|
|
UART1_BAUD,
|
|
UART2_BAUD,
|
|
UART3_BAUD,
|
|
SSI1_BAUD,
|
|
SSI2_BAUD,
|
|
CSI_BAUD,
|
|
MSHC_CLK,
|
|
ESDHC1_CLK,
|
|
ESDHC2_CLK,
|
|
ESDHC3_CLK,
|
|
SPDIF_CLK,
|
|
SPI1_CLK,
|
|
SPI2_CLK,
|
|
};
|
|
|
|
u32 imx_get_uartclk(void);
|
|
u32 imx_get_fecclk(void);
|
|
unsigned int mxc_get_clock(enum mxc_clock clk);
|
|
|
|
#endif /* __ASM_ARCH_CLOCK_H */
|