xref: /freebsd/sys/contrib/device-tree/include/dt-bindings/clock/ingenic,jz4740-cgu.h (revision 8cc087a1eee9ec1ca9f7ac1e63ad51bdb5a682eb)
1*8cc087a1SEmmanuel Vadot /* SPDX-License-Identifier: GPL-2.0 */
2*8cc087a1SEmmanuel Vadot /*
3*8cc087a1SEmmanuel Vadot  * This header provides clock numbers for the ingenic,jz4740-cgu DT binding.
4*8cc087a1SEmmanuel Vadot  *
5*8cc087a1SEmmanuel Vadot  * They are roughly ordered as:
6*8cc087a1SEmmanuel Vadot  *   - external clocks
7*8cc087a1SEmmanuel Vadot  *   - PLLs
8*8cc087a1SEmmanuel Vadot  *   - muxes/dividers in the order they appear in the jz4740 programmers manual
9*8cc087a1SEmmanuel Vadot  *   - gates in order of their bit in the CLKGR* registers
10*8cc087a1SEmmanuel Vadot  */
11*8cc087a1SEmmanuel Vadot 
12*8cc087a1SEmmanuel Vadot #ifndef __DT_BINDINGS_CLOCK_JZ4740_CGU_H__
13*8cc087a1SEmmanuel Vadot #define __DT_BINDINGS_CLOCK_JZ4740_CGU_H__
14*8cc087a1SEmmanuel Vadot 
15*8cc087a1SEmmanuel Vadot #define JZ4740_CLK_EXT		0
16*8cc087a1SEmmanuel Vadot #define JZ4740_CLK_RTC		1
17*8cc087a1SEmmanuel Vadot #define JZ4740_CLK_PLL		2
18*8cc087a1SEmmanuel Vadot #define JZ4740_CLK_PLL_HALF	3
19*8cc087a1SEmmanuel Vadot #define JZ4740_CLK_CCLK		4
20*8cc087a1SEmmanuel Vadot #define JZ4740_CLK_HCLK		5
21*8cc087a1SEmmanuel Vadot #define JZ4740_CLK_PCLK		6
22*8cc087a1SEmmanuel Vadot #define JZ4740_CLK_MCLK		7
23*8cc087a1SEmmanuel Vadot #define JZ4740_CLK_LCD		8
24*8cc087a1SEmmanuel Vadot #define JZ4740_CLK_LCD_PCLK	9
25*8cc087a1SEmmanuel Vadot #define JZ4740_CLK_I2S		10
26*8cc087a1SEmmanuel Vadot #define JZ4740_CLK_SPI		11
27*8cc087a1SEmmanuel Vadot #define JZ4740_CLK_MMC		12
28*8cc087a1SEmmanuel Vadot #define JZ4740_CLK_UHC		13
29*8cc087a1SEmmanuel Vadot #define JZ4740_CLK_UDC		14
30*8cc087a1SEmmanuel Vadot #define JZ4740_CLK_UART0	15
31*8cc087a1SEmmanuel Vadot #define JZ4740_CLK_UART1	16
32*8cc087a1SEmmanuel Vadot #define JZ4740_CLK_DMA		17
33*8cc087a1SEmmanuel Vadot #define JZ4740_CLK_IPU		18
34*8cc087a1SEmmanuel Vadot #define JZ4740_CLK_ADC		19
35*8cc087a1SEmmanuel Vadot #define JZ4740_CLK_I2C		20
36*8cc087a1SEmmanuel Vadot #define JZ4740_CLK_AIC		21
37*8cc087a1SEmmanuel Vadot #define JZ4740_CLK_TCU		22
38*8cc087a1SEmmanuel Vadot 
39*8cc087a1SEmmanuel Vadot #endif /* __DT_BINDINGS_CLOCK_JZ4740_CGU_H__ */
40