blob: fd63d3aad8399071f0fab63ee79cfca97962997e [file] [log] [blame]
Jernej Skrabece3313012021-01-11 21:11:37 +01001/* SPDX-License-Identifier: GPL-2.0+ */
2/*
3 * Sunxi H6 Power Management Unit register definition.
4 *
5 * (C) Copyright 2020 Jernej Skrabec <jernej.skrabec@siol.net>
6 */
7
8#ifndef _SUN50I_PRCM_H
9#define _SUN50I_PRCM_H
10
11#ifndef __ASSEMBLY__
12#include <linux/compiler.h>
13
14struct sunxi_prcm_reg {
15 u32 cpus_cfg; /* 0x000 */
16 u8 res0[0x8]; /* 0x004 */
17 u32 apbs1_cfg; /* 0x00c */
18 u32 apbs2_cfg; /* 0x010 */
19 u8 res1[0x108]; /* 0x014 */
20 u32 tmr_gate_reset; /* 0x11c */
21 u8 res2[0xc]; /* 0x120 */
22 u32 twd_gate_reset; /* 0x12c */
23 u8 res3[0xc]; /* 0x130 */
24 u32 pwm_gate_reset; /* 0x13c */
25 u8 res4[0x4c]; /* 0x140 */
26 u32 uart_gate_reset; /* 0x18c */
27 u8 res5[0xc]; /* 0x190 */
28 u32 twi_gate_reset; /* 0x19c */
29 u8 res6[0x1c]; /* 0x1a0 */
30 u32 rsb_gate_reset; /* 0x1bc */
31 u32 cir_cfg; /* 0x1c0 */
32 u8 res7[0x8]; /* 0x1c4 */
33 u32 cir_gate_reset; /* 0x1cc */
34 u8 res8[0x10]; /* 0x1d0 */
35 u32 w1_cfg; /* 0x1e0 */
36 u8 res9[0x8]; /* 0x1e4 */
37 u32 w1_gate_reset; /* 0x1ec */
38 u8 res10[0x1c]; /* 0x1f0 */
39 u32 rtc_gate_reset; /* 0x20c */
Jernej Skrabece04cd492022-01-30 15:27:13 +010040 u8 res11[0x34]; /* 0x210 */
41 u32 pll_ldo_cfg; /* 0x244 */
42 u8 res12[0x8]; /* 0x248 */
43 u32 sys_pwroff_gating; /* 0x250 */
44 u8 res13[0xbc]; /* 0x254 */
45 u32 res_cal_ctrl; /* 0x310 */
46 u32 ohms200; /* 0x314 */
47 u32 ohms240; /* 0x318 */
48 u32 res_cal_status; /* 0x31c */
Jernej Skrabece3313012021-01-11 21:11:37 +010049};
50check_member(sunxi_prcm_reg, rtc_gate_reset, 0x20c);
Jernej Skrabece04cd492022-01-30 15:27:13 +010051check_member(sunxi_prcm_reg, res_cal_status, 0x31c);
Jernej Skrabece3313012021-01-11 21:11:37 +010052
53#define PRCM_TWI_GATE (1 << 0)
54#define PRCM_TWI_RESET (1 << 16)
55
56#endif /* __ASSEMBLY__ */
57#endif /* _PRCM_H */