xref: /openbmc/linux/drivers/clk/meson/meson8b.h (revision d25ffef8)
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 
80d0c175daSAlexander Müller #endif /* __MESON8B_H */
81