blob: f6d2f21d9d24f87218aef91cfae0476290dcdc17 [file] [log] [blame]
Hans de Goede316e29b2014-10-27 23:59:27 +01001/*
2 * Sunxi A31 CPUCFG register definition.
3 *
4 * (C) Copyright 2014 Hans de Goede <hdegoede@redhat.com
5 *
6 * SPDX-License-Identifier: GPL-2.0+
7 */
8
9#ifndef _SUNXI_CPUCFG_H
10#define _SUNXI_CPUCFG_H
11
Chen-Yu Tsaifcd4c4e2016-06-07 10:54:31 +080012#include <linux/compiler.h>
Chen-Yu Tsaid14dcb02016-06-07 10:54:30 +080013#include <linux/types.h>
14
Hans de Goede316e29b2014-10-27 23:59:27 +010015#ifndef __ASSEMBLY__
16
Chen-Yu Tsaifcd4c4e2016-06-07 10:54:31 +080017struct __packed sunxi_cpucfg_cpu {
18 u32 rst; /* base + 0x0 */
19 u32 ctrl; /* base + 0x4 */
20 u32 status; /* base + 0x8 */
21 u8 res[0x34]; /* base + 0xc */
22};
23
24struct __packed sunxi_cpucfg_reg {
Hans de Goede316e29b2014-10-27 23:59:27 +010025 u8 res0[0x40]; /* 0x000 */
Chen-Yu Tsaifcd4c4e2016-06-07 10:54:31 +080026 struct sunxi_cpucfg_cpu cpu[4]; /* 0x040 */
27 u8 res1[0x44]; /* 0x140 */
Hans de Goede316e29b2014-10-27 23:59:27 +010028 u32 gen_ctrl; /* 0x184 */
29 u32 l2_status; /* 0x188 */
Chen-Yu Tsaifcd4c4e2016-06-07 10:54:31 +080030 u8 res2[0x4]; /* 0x18c */
Hans de Goede316e29b2014-10-27 23:59:27 +010031 u32 event_in; /* 0x190 */
Chen-Yu Tsaifcd4c4e2016-06-07 10:54:31 +080032 u8 res3[0xc]; /* 0x194 */
Hans de Goede316e29b2014-10-27 23:59:27 +010033 u32 super_standy_flag; /* 0x1a0 */
34 u32 priv0; /* 0x1a4 */
35 u32 priv1; /* 0x1a8 */
Chen-Yu Tsaifcd4c4e2016-06-07 10:54:31 +080036 u8 res4[0x54]; /* 0x1ac */
Hans de Goede316e29b2014-10-27 23:59:27 +010037 u32 idle_cnt0_low; /* 0x200 */
38 u32 idle_cnt0_high; /* 0x204 */
39 u32 idle_cnt0_ctrl; /* 0x208 */
40 u8 res8[0x4]; /* 0x20c */
41 u32 idle_cnt1_low; /* 0x210 */
42 u32 idle_cnt1_high; /* 0x214 */
43 u32 idle_cnt1_ctrl; /* 0x218 */
44 u8 res9[0x4]; /* 0x21c */
45 u32 idle_cnt2_low; /* 0x220 */
46 u32 idle_cnt2_high; /* 0x224 */
47 u32 idle_cnt2_ctrl; /* 0x228 */
48 u8 res10[0x4]; /* 0x22c */
49 u32 idle_cnt3_low; /* 0x230 */
50 u32 idle_cnt3_high; /* 0x234 */
51 u32 idle_cnt3_ctrl; /* 0x238 */
52 u8 res11[0x4]; /* 0x23c */
53 u32 idle_cnt4_low; /* 0x240 */
54 u32 idle_cnt4_high; /* 0x244 */
55 u32 idle_cnt4_ctrl; /* 0x248 */
56 u8 res12[0x34]; /* 0x24c */
57 u32 cnt64_ctrl; /* 0x280 */
58 u32 cnt64_low; /* 0x284 */
59 u32 cnt64_high; /* 0x288 */
60};
61
62#endif /* __ASSEMBLY__ */
63#endif /* _SUNXI_CPUCFG_H */