]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/arm/include/asm/arch-mx6/clock.h
fccddbac0bc9293f5b147517443c484e4ce8c68e
[karo-tx-uboot.git] / arch / arm / include / asm / arch-mx6 / clock.h
1 /*
2  * (C) Copyright 2009
3  * Stefano Babic, DENX Software Engineering, sbabic@denx.de.
4  *
5  * SPDX-License-Identifier:     GPL-2.0+
6  */
7
8 #ifndef __ASM_ARCH_CLOCK_H
9 #define __ASM_ARCH_CLOCK_H
10
11 #include <common.h>
12
13 #ifdef CONFIG_SYS_MX6_HCLK
14 #define MXC_HCLK        CONFIG_SYS_MX6_HCLK
15 #else
16 #define MXC_HCLK        24000000
17 #endif
18
19 #ifdef CONFIG_SYS_MX6_CLK32
20 #define MXC_CLK32       CONFIG_SYS_MX6_CLK32
21 #else
22 #define MXC_CLK32       32768
23 #endif
24
25 enum mxc_clock {
26         MXC_ARM_CLK = 0,
27         MXC_PER_CLK,
28         MXC_AHB_CLK,
29         MXC_IPG_CLK,
30         MXC_IPG_PERCLK,
31         MXC_UART_CLK,
32         MXC_CSPI_CLK,
33         MXC_AXI_CLK,
34         MXC_EMI_SLOW_CLK,
35         MXC_DDR_CLK,
36         MXC_ESDHC_CLK,
37         MXC_ESDHC2_CLK,
38         MXC_ESDHC3_CLK,
39         MXC_ESDHC4_CLK,
40         MXC_SATA_CLK,
41         MXC_NFC_CLK,
42         MXC_I2C_CLK,
43 };
44
45 enum enet_freq {
46         ENET_25MHZ,
47         ENET_50MHZ,
48         ENET_100MHZ,
49         ENET_125MHZ,
50 };
51
52 struct clk {
53         const char *name;
54         int id;
55         /* Source clock this clk depends on */
56         struct clk *parent;
57         /* Secondary clock to enable/disable with this clock */
58         struct clk *secondary;
59         /* Current clock rate */
60         unsigned long rate;
61         /* Reference count of clock enable/disable */
62         __s8 usecount;
63         /* Register bit position for clock's enable/disable control. */
64         u8 enable_shift;
65         /* Register address for clock's enable/disable control. */
66         void *enable_reg;
67         u32 flags;
68         /*
69          * Function ptr to recalculate the clock's rate based on parent
70          * clock's rate
71          */
72         void (*recalc) (struct clk *);
73         /*
74          * Function ptr to set the clock to a new rate. The rate must match a
75          * supported rate returned from round_rate. Leave blank if clock is not
76         * programmable
77          */
78         int (*set_rate) (struct clk *, unsigned long);
79         /*
80          * Function ptr to round the requested clock rate to the nearest
81          * supported rate that is less than or equal to the requested rate.
82          */
83         unsigned long (*round_rate) (struct clk *, unsigned long);
84         /*
85          * Function ptr to enable the clock. Leave blank if clock can not
86          * be gated.
87          */
88         int (*enable) (struct clk *);
89         /*
90          * Function ptr to disable the clock. Leave blank if clock can not
91          * be gated.
92          */
93         void (*disable) (struct clk *);
94         /* Function ptr to set the parent clock of the clock. */
95         int (*set_parent) (struct clk *, struct clk *);
96 };
97
98 u32 imx_get_uartclk(void);
99 u32 imx_get_fecclk(void);
100 unsigned int mxc_get_clock(enum mxc_clock clk);
101 int mxc_set_clock(u32 ref, u32 freq, enum mxc_clock clk);
102 void setup_gpmi_io_clk(u32 cfg);
103 void hab_caam_clock_enable(unsigned char enable);
104 void enable_ocotp_clk(unsigned char enable);
105 void enable_usboh3_clk(unsigned char enable);
106 void enable_uart_clk(unsigned char enable);
107 int enable_usdhc_clk(unsigned char enable, unsigned bus_num);
108 int enable_sata_clock(void);
109 void disable_sata_clock(void);
110 int enable_pcie_clock(void);
111 int enable_i2c_clk(unsigned char enable, unsigned i2c_num);
112 int enable_spi_clk(unsigned char enable, unsigned spi_num);
113 void enable_ipu_clock(void);
114 int enable_fec_anatop_clock(enum enet_freq freq);
115 void enable_enet_clk(unsigned char enable);
116 void enable_qspi_clk(int qspi_num);
117 void enable_thermal_clk(void);
118 void ipu_clk_enable(void);
119 void ipu_clk_disable(void);
120 void ipu_di_clk_enable(int di);
121 void ipu_di_clk_disable(int di);
122 void ldb_clk_enable(int ldb);
123 void ldb_clk_disable(int ldb);
124 void ocotp_clk_enable(void);
125 void ocotp_clk_disable(void);
126 #endif /* __ASM_ARCH_CLOCK_H */