blob: 6033b0d7c782b43191ee79f8a681ce5c0be9f1a9 [file] [log] [blame]
Bai Ping06e325e2018-10-28 00:12:34 +08001/*
Jacky Baif7dc4012019-03-06 16:58:18 +08002 * Copyright (c) 2018-2019, ARM Limited and Contributors. All rights reserved.
Bai Ping06e325e2018-10-28 00:12:34 +08003 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#ifndef IMX8M_GPC_H
8#define IMX8M_GPC_H
9
10#define LPCR_A53_BSC 0x0
11#define LPCR_A53_BSC2 0x108
12#define LPCR_A53_AD 0x4
13#define LPCR_M4 0x8
14#define SLPCR 0x14
15#define MST_CPU_MAPPING 0x18
16#define MLPCR 0x20
17#define PGC_ACK_SEL_A53 0x24
18#define IMR1_CORE0_A53 0x30
19#define IMR1_CORE1_A53 0x40
20#define IMR1_CORE2_A53 0x1C0
21#define IMR1_CORE3_A53 0x1D0
22#define IMR1_CORE0_M4 0x50
23#define SLT0_CFG 0xB0
24#define GPC_PU_PWRHSK 0x1FC
25#define PGC_CPU_0_1_MAPPING 0xEC
26#define CPU_PGC_UP_TRG 0xF0
27#define PU_PGC_UP_TRG 0xF8
28#define CPU_PGC_DN_TRG 0xFC
29#define PU_PGC_DN_TRG 0x104
30#define A53_CORE0_PGC 0x800
31#define A53_PLAT_PGC 0x900
Jacky Baif7dc4012019-03-06 16:58:18 +080032#define PLAT_PGC_PCR 0x900
Bai Ping06e325e2018-10-28 00:12:34 +080033#define PGC_SCU_TIMING 0x910
34
35#define MASK_DSM_TRIGGER_A53 BIT(31)
36#define IRQ_SRC_A53_WUP BIT(30)
Jacky Baif7dc4012019-03-06 16:58:18 +080037#define IRQ_SRC_A53_WUP_SHIFT 30
Bai Ping06e325e2018-10-28 00:12:34 +080038#define IRQ_SRC_C1 BIT(29)
39#define IRQ_SRC_C0 BIT(28)
40#define IRQ_SRC_C3 BIT(23)
41#define IRQ_SRC_C2 BIT(22)
Jacky Bai9bd2f842019-11-28 13:16:33 +080042#define CORE_WKUP_FROM_GIC (IRQ_SRC_C0 | IRQ_SRC_C1 | IRQ_SRC_C2 | IRQ_SRC_C3)
Bai Ping06e325e2018-10-28 00:12:34 +080043#define CPU_CLOCK_ON_LPM BIT(14)
Jacky Baif7dc4012019-03-06 16:58:18 +080044#define A53_CLK_ON_LPM BIT(14)
Bai Ping06e325e2018-10-28 00:12:34 +080045#define MASTER0_LPM_HSK BIT(6)
46
47#define L2PGE BIT(31)
48#define EN_L2_WFI_PDN BIT(5)
49#define EN_PLAT_PDN BIT(4)
50
51#define SLPCR_EN_DSM BIT(31)
52#define SLPCR_RBC_EN BIT(30)
53#define SLPCR_A53_FASTWUP_STOP_MODE BIT(17)
54#define SLPCR_A53_FASTWUP_WAIT_MODE BIT(16)
55#define SLPCR_VSTBY BIT(2)
56#define SLPCR_SBYOS BIT(1)
57#define SLPCR_BYPASS_PMIC_READY BIT(0)
58#define SLPCR_RBC_COUNT_SHIFT 24
Jacky Baif7dc4012019-03-06 16:58:18 +080059#define SLPCR_STBY_COUNT_SHFT 3
Bai Ping06e325e2018-10-28 00:12:34 +080060
61#define A53_DUMMY_PDN_ACK BIT(15)
62#define A53_DUMMY_PUP_ACK BIT(31)
63#define A53_PLAT_PDN_ACK BIT(2)
64#define A53_PLAT_PUP_ACK BIT(18)
65
Jacky Baif7dc4012019-03-06 16:58:18 +080066#define PLAT_PUP_SLT_CTRL BIT(9)
67#define PLAT_PDN_SLT_CTRL BIT(8)
68
Bai Ping06e325e2018-10-28 00:12:34 +080069#define SLT_PLAT_PDN BIT(8)
70#define SLT_PLAT_PUP BIT(9)
71
Jacky Baia6177002019-03-06 17:15:06 +080072#define MASTER1_MAPPING BIT(1)
73#define MASTER2_MAPPING BIT(2)
74
Jacky Bai9bd2f842019-11-28 13:16:33 +080075#define TMR_TCD2_SHIFT 0
76#define TMC_TMR_SHIFT 10
77#define TRC1_TMC_SHIFT 20
78
Bai Ping06e325e2018-10-28 00:12:34 +080079/* helper macro */
80#define A53_LPM_MASK U(0xF)
81#define A53_LPM_WAIT U(0x5)
82#define A53_LPM_STOP U(0xA)
Jacky Baif7dc4012019-03-06 16:58:18 +080083#define LPM_MODE(local_state) ((local_state) == PLAT_WAIT_RET_STATE ? A53_LPM_WAIT : A53_LPM_STOP)
Bai Ping06e325e2018-10-28 00:12:34 +080084
85#define DSM_MODE_MASK BIT(31)
86
87#define A53_CORE_WUP_SRC(core_id) (1 << ((core_id) < 2 ? 28 + (core_id) : 22 + (core_id) - 2))
88#define COREx_PGC_PCR(core_id) (0x800 + (core_id) * 0x40)
89#define COREx_WFI_PDN(core_id) (1 << ((core_id) < 2 ? (core_id) * 2 : ((core_id) - 2) * 2 + 16))
90#define COREx_IRQ_WUP(core_id) ((core_id) < 2 ? (1 << ((core_id) * 2 + 8)) : (1 << ((core_id) * 2 + 20)))
91#define COREx_LPM_PUP(core_id) ((core_id) < 2 ? (1 << ((core_id) * 2 + 9)) : (1 << ((core_id) * 2 + 21)))
92#define SLTx_CFG(n) ((SLT0_CFG + ((n) * 4)))
93#define SLT_COREx_PUP(core_id) (0x2 << ((core_id) * 2))
94
Jacky Baif7dc4012019-03-06 16:58:18 +080095#define IRQ_IMR_NUM 4
96#define IMR_MASK_ALL 0xffffffff
97
Bai Ping06e325e2018-10-28 00:12:34 +080098/* function declare */
99void imx_gpc_init(void);
100void imx_set_cpu_secure_entry(unsigned int core_index, uintptr_t sec_entrypoint);
101void imx_set_cpu_pwr_off(unsigned int core_index);
102void imx_set_cpu_pwr_on(unsigned int core_index);
103void imx_set_cpu_lpm(unsigned int core_index, bool pdn);
104void imx_set_cluster_standby(bool retention);
105void imx_set_cluster_powerdown(unsigned int last_core, uint8_t power_state);
Jacky Baif7dc4012019-03-06 16:58:18 +0800106void imx_noc_slot_config(bool pdn);
107void imx_set_sys_wakeup(unsigned int last_core, bool pdn);
108void imx_set_sys_lpm(unsigned last_core, bool retention);
Bai Ping06e325e2018-10-28 00:12:34 +0800109void imx_set_rbc_count(void);
110void imx_clear_rbc_count(void);
111
112#endif /*IMX8M_GPC_H */