1*8cc087a1SEmmanuel Vadot /* SPDX-License-Identifier: GPL-2.0 */ 2*8cc087a1SEmmanuel Vadot /* 3*8cc087a1SEmmanuel Vadot * This header provides clock numbers for the ingenic,x1830-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 x1830 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_X1830_CGU_H__ 13*8cc087a1SEmmanuel Vadot #define __DT_BINDINGS_CLOCK_X1830_CGU_H__ 14*8cc087a1SEmmanuel Vadot 15*8cc087a1SEmmanuel Vadot #define X1830_CLK_EXCLK 0 16*8cc087a1SEmmanuel Vadot #define X1830_CLK_RTCLK 1 17*8cc087a1SEmmanuel Vadot #define X1830_CLK_APLL 2 18*8cc087a1SEmmanuel Vadot #define X1830_CLK_MPLL 3 19*8cc087a1SEmmanuel Vadot #define X1830_CLK_EPLL 4 20*8cc087a1SEmmanuel Vadot #define X1830_CLK_VPLL 5 21*8cc087a1SEmmanuel Vadot #define X1830_CLK_OTGPHY 6 22*8cc087a1SEmmanuel Vadot #define X1830_CLK_SCLKA 7 23*8cc087a1SEmmanuel Vadot #define X1830_CLK_CPUMUX 8 24*8cc087a1SEmmanuel Vadot #define X1830_CLK_CPU 9 25*8cc087a1SEmmanuel Vadot #define X1830_CLK_L2CACHE 10 26*8cc087a1SEmmanuel Vadot #define X1830_CLK_AHB0 11 27*8cc087a1SEmmanuel Vadot #define X1830_CLK_AHB2PMUX 12 28*8cc087a1SEmmanuel Vadot #define X1830_CLK_AHB2 13 29*8cc087a1SEmmanuel Vadot #define X1830_CLK_PCLK 14 30*8cc087a1SEmmanuel Vadot #define X1830_CLK_DDR 15 31*8cc087a1SEmmanuel Vadot #define X1830_CLK_MAC 16 32*8cc087a1SEmmanuel Vadot #define X1830_CLK_LCD 17 33*8cc087a1SEmmanuel Vadot #define X1830_CLK_MSCMUX 18 34*8cc087a1SEmmanuel Vadot #define X1830_CLK_MSC0 19 35*8cc087a1SEmmanuel Vadot #define X1830_CLK_MSC1 20 36*8cc087a1SEmmanuel Vadot #define X1830_CLK_SSIPLL 21 37*8cc087a1SEmmanuel Vadot #define X1830_CLK_SSIPLL_DIV2 22 38*8cc087a1SEmmanuel Vadot #define X1830_CLK_SSIMUX 23 39*8cc087a1SEmmanuel Vadot #define X1830_CLK_EMC 24 40*8cc087a1SEmmanuel Vadot #define X1830_CLK_EFUSE 25 41*8cc087a1SEmmanuel Vadot #define X1830_CLK_OTG 26 42*8cc087a1SEmmanuel Vadot #define X1830_CLK_SSI0 27 43*8cc087a1SEmmanuel Vadot #define X1830_CLK_SMB0 28 44*8cc087a1SEmmanuel Vadot #define X1830_CLK_SMB1 29 45*8cc087a1SEmmanuel Vadot #define X1830_CLK_SMB2 30 46*8cc087a1SEmmanuel Vadot #define X1830_CLK_UART0 31 47*8cc087a1SEmmanuel Vadot #define X1830_CLK_UART1 32 48*8cc087a1SEmmanuel Vadot #define X1830_CLK_SSI1 33 49*8cc087a1SEmmanuel Vadot #define X1830_CLK_SFC 34 50*8cc087a1SEmmanuel Vadot #define X1830_CLK_PDMA 35 51*8cc087a1SEmmanuel Vadot #define X1830_CLK_TCU 36 52*8cc087a1SEmmanuel Vadot #define X1830_CLK_DTRNG 37 53*8cc087a1SEmmanuel Vadot #define X1830_CLK_OST 38 54*8cc087a1SEmmanuel Vadot #define X1830_CLK_EXCLK_DIV512 39 55*8cc087a1SEmmanuel Vadot #define X1830_CLK_RTC 40 56*8cc087a1SEmmanuel Vadot 57*8cc087a1SEmmanuel Vadot #endif /* __DT_BINDINGS_CLOCK_X1830_CGU_H__ */ 58