xref: /openbmc/linux/drivers/clk/meson/meson8b.h (revision 040e165b)
122f65a38SJerome Brunet /* SPDX-License-Identifier: GPL-2.0 */
2d0c175daSAlexander Müller /*
3d0c175daSAlexander Müller  * Copyright (c) 2015 Endless Mobile, Inc.
4d0c175daSAlexander Müller  * Author: Carlo Caione <carlo@endlessm.com>
5d0c175daSAlexander Müller  *
6d0c175daSAlexander Müller  * Copyright (c) 2016 BayLibre, Inc.
7d0c175daSAlexander Müller  * Michael Turquette <mturquette@baylibre.com>
8d0c175daSAlexander Müller  */
9d0c175daSAlexander Müller 
10d0c175daSAlexander Müller #ifndef __MESON8B_H
11d0c175daSAlexander Müller #define __MESON8B_H
12d0c175daSAlexander Müller 
13d0c175daSAlexander Müller /*
14d0c175daSAlexander Müller  * Clock controller register offsets
15d0c175daSAlexander Müller  *
16d0c175daSAlexander Müller  * Register offsets from the HardKernel[0] data sheet are listed in comment
17d0c175daSAlexander Müller  * blocks below. Those offsets must be multiplied by 4 before adding them to
18d0c175daSAlexander Müller  * the base address to get the right value
19d0c175daSAlexander Müller  *
205f1d8970SAlexander A. Klimov  * [0] https://dn.odroid.com/S805/Datasheet/S805_Datasheet%20V0.8%2020150126.pdf
21d0c175daSAlexander Müller  */
22b882964bSMartin Blumenstingl #define HHI_GP_PLL_CNTL			0x40  /* 0x10 offset in data sheet */
23a29ae860SMartin Blumenstingl #define HHI_GP_PLL_CNTL2		0x44  /* 0x11 offset in data sheet */
24a29ae860SMartin Blumenstingl #define HHI_GP_PLL_CNTL3		0x48  /* 0x12 offset in data sheet */
25a29ae860SMartin Blumenstingl #define HHI_GP_PLL_CNTL4		0x4C  /* 0x13 offset in data sheet */
26a29ae860SMartin Blumenstingl #define HHI_GP_PLL_CNTL5		0x50  /* 0x14 offset in data sheet */
276cb57c67SMartin Blumenstingl #define HHI_VIID_CLK_DIV		0x128 /* 0x4a offset in data sheet */
286cb57c67SMartin Blumenstingl #define HHI_VIID_CLK_CNTL		0x12c /* 0x4b offset in data sheet */
29e31a1900SAlexander Müller #define HHI_GCLK_MPEG0			0x140 /* 0x50 offset in data sheet */
30e31a1900SAlexander Müller #define HHI_GCLK_MPEG1			0x144 /* 0x51 offset in data sheet */
31e31a1900SAlexander Müller #define HHI_GCLK_MPEG2			0x148 /* 0x52 offset in data sheet */
32e31a1900SAlexander Müller #define HHI_GCLK_OTHER			0x150 /* 0x54 offset in data sheet */
33e31a1900SAlexander Müller #define HHI_GCLK_AO			0x154 /* 0x55 offset in data sheet */
34e0818a39SAlexander Müller #define HHI_SYS_CPU_CLK_CNTL1		0x15c /* 0x57 offset in data sheet */
356cb57c67SMartin Blumenstingl #define HHI_VID_CLK_DIV			0x164 /* 0x59 offset in data sheet */
36e0818a39SAlexander Müller #define HHI_MPEG_CLK_CNTL		0x174 /* 0x5d offset in data sheet */
37f278f05eSMartin Blumenstingl #define HHI_AUD_CLK_CNTL		0x178 /* 0x5e offset in data sheet */
3818962172SMartin Blumenstingl #define HHI_VID_CLK_CNTL		0x17c /* 0x5f offset in data sheet */
39c39c24c1SMartin Blumenstingl #define HHI_AUD_CLK_CNTL2		0x190 /* 0x64 offset in data sheet */
406cb57c67SMartin Blumenstingl #define HHI_VID_CLK_CNTL2		0x194 /* 0x65 offset in data sheet */
4118962172SMartin Blumenstingl #define HHI_VID_DIVIDER_CNTL		0x198 /* 0x66 offset in data sheet */
4218962172SMartin Blumenstingl #define HHI_SYS_CPU_CLK_CNTL0		0x19c /* 0x67 offset in data sheet */
4374e1f252SMartin Blumenstingl #define HHI_MALI_CLK_CNTL		0x1b0 /* 0x6c offset in data sheet */
4441785ce5SMartin Blumenstingl #define HHI_VPU_CLK_CNTL		0x1bc /* 0x6f offset in data sheet */
456cb57c67SMartin Blumenstingl #define HHI_HDMI_CLK_CNTL		0x1cc /* 0x73 offset in data sheet */
4690751f68SMartin Blumenstingl #define HHI_VDEC_CLK_CNTL		0x1e0 /* 0x78 offset in data sheet */
4790751f68SMartin Blumenstingl #define HHI_VDEC2_CLK_CNTL		0x1e4 /* 0x79 offset in data sheet */
4890751f68SMartin Blumenstingl #define HHI_VDEC3_CLK_CNTL		0x1e8 /* 0x7a offset in data sheet */
49b8c1ddadSMartin Blumenstingl #define HHI_NAND_CLK_CNTL		0x25c /* 0x97 offset in data sheet */
50e0818a39SAlexander Müller #define HHI_MPLL_CNTL			0x280 /* 0xa0 offset in data sheet */
51e0818a39SAlexander Müller #define HHI_SYS_PLL_CNTL		0x300 /* 0xc0 offset in data sheet */
52e0818a39SAlexander Müller #define HHI_VID_PLL_CNTL		0x320 /* 0xc8 offset in data sheet */
53007f3da7SMartin Blumenstingl #define HHI_VID_PLL_CNTL2		0x324 /* 0xc9 offset in data sheet */
54*040e165bSMartin Blumenstingl #define HHI_VID_PLL_CNTL3		0x328 /* 0xca offset in data sheet */
55*040e165bSMartin Blumenstingl #define HHI_VID_PLL_CNTL4		0x32c /* 0xcb offset in data sheet */
56*040e165bSMartin Blumenstingl #define HHI_VID_PLL_CNTL5		0x330 /* 0xcc offset in data sheet */
57*040e165bSMartin Blumenstingl #define HHI_VID_PLL_CNTL6		0x334 /* 0xcd offset in data sheet */
58*040e165bSMartin Blumenstingl #define HHI_VID2_PLL_CNTL		0x380 /* 0xe0 offset in data sheet */
59*040e165bSMartin Blumenstingl #define HHI_VID2_PLL_CNTL2		0x384 /* 0xe1 offset in data sheet */
60*040e165bSMartin Blumenstingl #define HHI_VID2_PLL_CNTL3		0x388 /* 0xe2 offset in data sheet */
61*040e165bSMartin Blumenstingl #define HHI_VID2_PLL_CNTL4		0x38c /* 0xe3 offset in data sheet */
62*040e165bSMartin Blumenstingl #define HHI_VID2_PLL_CNTL5		0x390 /* 0xe4 offset in data sheet */
63*040e165bSMartin Blumenstingl #define HHI_VID2_PLL_CNTL6		0x394 /* 0xe5 offset in data sheet */
64d0c175daSAlexander Müller 
650f32e64bSAlexander Müller /*
66b778f745SJerome Brunet  * MPLL register offeset taken from the S905 datasheet. Vendor kernel source
67b778f745SJerome Brunet  * confirm these are the same for the S805.
68b778f745SJerome Brunet  */
69b778f745SJerome Brunet #define HHI_MPLL_CNTL			0x280 /* 0xa0 offset in data sheet */
70b778f745SJerome Brunet #define HHI_MPLL_CNTL2			0x284 /* 0xa1 offset in data sheet */
71b778f745SJerome Brunet #define HHI_MPLL_CNTL3			0x288 /* 0xa2 offset in data sheet */
72b778f745SJerome Brunet #define HHI_MPLL_CNTL4			0x28C /* 0xa3 offset in data sheet */
73b778f745SJerome Brunet #define HHI_MPLL_CNTL5			0x290 /* 0xa4 offset in data sheet */
74b778f745SJerome Brunet #define HHI_MPLL_CNTL6			0x294 /* 0xa5 offset in data sheet */
75b778f745SJerome Brunet #define HHI_MPLL_CNTL7			0x298 /* 0xa6 offset in data sheet */
76b778f745SJerome Brunet #define HHI_MPLL_CNTL8			0x29C /* 0xa7 offset in data sheet */
77b778f745SJerome Brunet #define HHI_MPLL_CNTL9			0x2A0 /* 0xa8 offset in data sheet */
78b778f745SJerome Brunet #define HHI_MPLL_CNTL10			0x2A4 /* 0xa9 offset in data sheet */
79b778f745SJerome Brunet 
80b778f745SJerome Brunet /*
810f32e64bSAlexander Müller  * CLKID index values
820f32e64bSAlexander Müller  *
830f32e64bSAlexander Müller  * These indices are entirely contrived and do not map onto the hardware.
8431128822SJerome Brunet  * It has now been decided to expose everything by default in the DT header:
8531128822SJerome Brunet  * include/dt-bindings/clock/gxbb-clkc.h. Only the clocks ids we don't want
8631128822SJerome Brunet  * to expose, such as the internal muxes and dividers of composite clocks,
8731128822SJerome Brunet  * will remain defined here.
880f32e64bSAlexander Müller  */
890f32e64bSAlexander Müller 
90d610b54fSJerome Brunet #define CLKID_MPLL0_DIV		96
91d610b54fSJerome Brunet #define CLKID_MPLL1_DIV		97
92d610b54fSJerome Brunet #define CLKID_MPLL2_DIV		98
93251b6fd3SJerome Brunet #define CLKID_CPU_IN_SEL	99
94700ecf7fSMartin Blumenstingl #define CLKID_CPU_IN_DIV2	100
95700ecf7fSMartin Blumenstingl #define CLKID_CPU_IN_DIV3	101
96251b6fd3SJerome Brunet #define CLKID_CPU_SCALE_DIV	102
97251b6fd3SJerome Brunet #define CLKID_CPU_SCALE_OUT_SEL	103
98513b67acSJerome Brunet #define CLKID_MPLL_PREDIV	104
9905f81440SJerome Brunet #define CLKID_FCLK_DIV2_DIV	105
10005f81440SJerome Brunet #define CLKID_FCLK_DIV3_DIV	106
10105f81440SJerome Brunet #define CLKID_FCLK_DIV4_DIV	107
10205f81440SJerome Brunet #define CLKID_FCLK_DIV5_DIV	108
10305f81440SJerome Brunet #define CLKID_FCLK_DIV7_DIV	109
104b8c1ddadSMartin Blumenstingl #define CLKID_NAND_SEL		110
105b8c1ddadSMartin Blumenstingl #define CLKID_NAND_DIV		111
10687173557SJerome Brunet #define CLKID_PLL_FIXED_DCO	113
1076cb57c67SMartin Blumenstingl #define CLKID_HDMI_PLL_DCO	114
10887173557SJerome Brunet #define CLKID_PLL_SYS_DCO	115
109a7d19b05SMartin Blumenstingl #define CLKID_CPU_CLK_DIV2	116
110a7d19b05SMartin Blumenstingl #define CLKID_CPU_CLK_DIV3	117
111a7d19b05SMartin Blumenstingl #define CLKID_CPU_CLK_DIV4	118
112a7d19b05SMartin Blumenstingl #define CLKID_CPU_CLK_DIV5	119
113a7d19b05SMartin Blumenstingl #define CLKID_CPU_CLK_DIV6	120
114a7d19b05SMartin Blumenstingl #define CLKID_CPU_CLK_DIV7	121
115a7d19b05SMartin Blumenstingl #define CLKID_CPU_CLK_DIV8	122
116c5f09e6bSMartin Blumenstingl #define CLKID_APB_SEL		123
117a7d19b05SMartin Blumenstingl #define CLKID_PERIPH_SEL	125
118a7d19b05SMartin Blumenstingl #define CLKID_AXI_SEL		127
119a7d19b05SMartin Blumenstingl #define CLKID_L2_DRAM_SEL	129
1206cb57c67SMartin Blumenstingl #define CLKID_HDMI_PLL_LVDS_OUT 131
1216cb57c67SMartin Blumenstingl #define CLKID_VID_PLL_IN_SEL	133
1226cb57c67SMartin Blumenstingl #define CLKID_VID_PLL_IN_EN	134
1236cb57c67SMartin Blumenstingl #define CLKID_VID_PLL_PRE_DIV	135
1246cb57c67SMartin Blumenstingl #define CLKID_VID_PLL_POST_DIV	136
1256cb57c67SMartin Blumenstingl #define CLKID_VCLK_IN_EN	139
1266cb57c67SMartin Blumenstingl #define CLKID_VCLK_DIV1		140
1276cb57c67SMartin Blumenstingl #define CLKID_VCLK_DIV2_DIV	141
1286cb57c67SMartin Blumenstingl #define CLKID_VCLK_DIV2		142
1296cb57c67SMartin Blumenstingl #define CLKID_VCLK_DIV4_DIV	143
1306cb57c67SMartin Blumenstingl #define CLKID_VCLK_DIV4		144
1316cb57c67SMartin Blumenstingl #define CLKID_VCLK_DIV6_DIV	145
1326cb57c67SMartin Blumenstingl #define CLKID_VCLK_DIV6		146
1336cb57c67SMartin Blumenstingl #define CLKID_VCLK_DIV12_DIV	147
1346cb57c67SMartin Blumenstingl #define CLKID_VCLK_DIV12	148
1356cb57c67SMartin Blumenstingl #define CLKID_VCLK2_IN_EN	150
1366cb57c67SMartin Blumenstingl #define CLKID_VCLK2_DIV1	151
1376cb57c67SMartin Blumenstingl #define CLKID_VCLK2_DIV2_DIV	152
1386cb57c67SMartin Blumenstingl #define CLKID_VCLK2_DIV2	153
1396cb57c67SMartin Blumenstingl #define CLKID_VCLK2_DIV4_DIV	154
1406cb57c67SMartin Blumenstingl #define CLKID_VCLK2_DIV4	155
1416cb57c67SMartin Blumenstingl #define CLKID_VCLK2_DIV6_DIV	156
1426cb57c67SMartin Blumenstingl #define CLKID_VCLK2_DIV6	157
1436cb57c67SMartin Blumenstingl #define CLKID_VCLK2_DIV12_DIV	158
1446cb57c67SMartin Blumenstingl #define CLKID_VCLK2_DIV12	159
1456cb57c67SMartin Blumenstingl #define CLKID_CTS_ENCT_SEL	160
1466cb57c67SMartin Blumenstingl #define CLKID_CTS_ENCP_SEL	162
1476cb57c67SMartin Blumenstingl #define CLKID_CTS_ENCI_SEL	164
1486cb57c67SMartin Blumenstingl #define CLKID_HDMI_TX_PIXEL_SEL	166
1496cb57c67SMartin Blumenstingl #define CLKID_CTS_ENCL_SEL	168
1506cb57c67SMartin Blumenstingl #define CLKID_CTS_VDAC0_SEL	170
1516cb57c67SMartin Blumenstingl #define CLKID_HDMI_SYS_SEL	172
1526cb57c67SMartin Blumenstingl #define CLKID_HDMI_SYS_DIV	173
15374e1f252SMartin Blumenstingl #define CLKID_MALI_0_SEL	175
15474e1f252SMartin Blumenstingl #define CLKID_MALI_0_DIV	176
15574e1f252SMartin Blumenstingl #define CLKID_MALI_0		177
15674e1f252SMartin Blumenstingl #define CLKID_MALI_1_SEL	178
15774e1f252SMartin Blumenstingl #define CLKID_MALI_1_DIV	179
15874e1f252SMartin Blumenstingl #define CLKID_MALI_1		180
159b882964bSMartin Blumenstingl #define CLKID_GP_PLL_DCO	181
160b882964bSMartin Blumenstingl #define CLKID_GP_PLL		182
16141785ce5SMartin Blumenstingl #define CLKID_VPU_0_SEL		183
16241785ce5SMartin Blumenstingl #define CLKID_VPU_0_DIV		184
16341785ce5SMartin Blumenstingl #define CLKID_VPU_0		185
16441785ce5SMartin Blumenstingl #define CLKID_VPU_1_SEL		186
16541785ce5SMartin Blumenstingl #define CLKID_VPU_1_DIV		187
16641785ce5SMartin Blumenstingl #define CLKID_VPU_1		189
16790751f68SMartin Blumenstingl #define CLKID_VDEC_1_SEL	191
16890751f68SMartin Blumenstingl #define CLKID_VDEC_1_1_DIV	192
16990751f68SMartin Blumenstingl #define CLKID_VDEC_1_1		193
17090751f68SMartin Blumenstingl #define CLKID_VDEC_1_2_DIV	194
17190751f68SMartin Blumenstingl #define CLKID_VDEC_1_2		195
17290751f68SMartin Blumenstingl #define CLKID_VDEC_HCODEC_SEL	197
17390751f68SMartin Blumenstingl #define CLKID_VDEC_HCODEC_DIV	198
17490751f68SMartin Blumenstingl #define CLKID_VDEC_2_SEL	200
17590751f68SMartin Blumenstingl #define CLKID_VDEC_2_DIV	201
17690751f68SMartin Blumenstingl #define CLKID_VDEC_HEVC_SEL	203
17790751f68SMartin Blumenstingl #define CLKID_VDEC_HEVC_DIV	204
17890751f68SMartin Blumenstingl #define CLKID_VDEC_HEVC_EN	205
179f278f05eSMartin Blumenstingl #define CLKID_CTS_AMCLK_SEL	207
180f278f05eSMartin Blumenstingl #define CLKID_CTS_AMCLK_DIV	208
181c39c24c1SMartin Blumenstingl #define CLKID_CTS_MCLK_I958_SEL	210
182c39c24c1SMartin Blumenstingl #define CLKID_CTS_MCLK_I958_DIV	211
183e653b411SMartin Blumenstingl #define CLKID_VCLK_EN		214
1842568528fSMartin Blumenstingl #define CLKID_VCLK2_EN		215
1859e544b75SMartin Blumenstingl #define CLKID_VID_PLL_LVDS_EN	216
186*040e165bSMartin Blumenstingl #define CLKID_HDMI_PLL_DCO_IN   217
187d610b54fSJerome Brunet 
188*040e165bSMartin Blumenstingl #define CLK_NR_CLKS		218
1890f32e64bSAlexander Müller 
19018962172SMartin Blumenstingl /*
19118962172SMartin Blumenstingl  * include the CLKID and RESETID that have
19218962172SMartin Blumenstingl  * been made part of the stable DT binding
19318962172SMartin Blumenstingl  */
1940f32e64bSAlexander Müller #include <dt-bindings/clock/meson8b-clkc.h>
19518962172SMartin Blumenstingl #include <dt-bindings/reset/amlogic,meson8b-clkc-reset.h>
1960f32e64bSAlexander Müller 
197d0c175daSAlexander Müller #endif /* __MESON8B_H */
198