Linux 5.7.7
[linux/fpc-iii.git] / arch / arm / mach-highbank / sysregs.h
blob3c13fdcafb1e8818241cbc266c5f98cf09c7f6ad
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /*
3 * Copyright 2011 Calxeda, Inc.
4 */
5 #ifndef _MACH_HIGHBANK__SYSREGS_H_
6 #define _MACH_HIGHBANK__SYSREGS_H_
8 #include <linux/io.h>
9 #include <linux/smp.h>
10 #include <asm/smp_plat.h>
11 #include <asm/smp_scu.h>
12 #include "core.h"
14 extern void __iomem *sregs_base;
16 #define HB_SREG_A9_PWR_REQ 0xf00
17 #define HB_SREG_A9_BOOT_STAT 0xf04
18 #define HB_SREG_A9_BOOT_DATA 0xf08
20 #define HB_PWR_SUSPEND 0
21 #define HB_PWR_SOFT_RESET 1
22 #define HB_PWR_HARD_RESET 2
23 #define HB_PWR_SHUTDOWN 3
25 #define SREG_CPU_PWR_CTRL(c) (0x200 + ((c) * 4))
27 static inline void highbank_set_core_pwr(void)
29 int cpu = MPIDR_AFFINITY_LEVEL(cpu_logical_map(smp_processor_id()), 0);
30 if (scu_base_addr)
31 scu_power_mode(scu_base_addr, SCU_PM_POWEROFF);
32 else
33 writel_relaxed(1, sregs_base + SREG_CPU_PWR_CTRL(cpu));
36 static inline void highbank_clear_core_pwr(void)
38 int cpu = MPIDR_AFFINITY_LEVEL(cpu_logical_map(smp_processor_id()), 0);
39 if (scu_base_addr)
40 scu_power_mode(scu_base_addr, SCU_PM_NORMAL);
41 else
42 writel_relaxed(0, sregs_base + SREG_CPU_PWR_CTRL(cpu));
45 static inline void highbank_set_pwr_suspend(void)
47 writel(HB_PWR_SUSPEND, sregs_base + HB_SREG_A9_PWR_REQ);
48 highbank_set_core_pwr();
51 static inline void highbank_set_pwr_shutdown(void)
53 writel(HB_PWR_SHUTDOWN, sregs_base + HB_SREG_A9_PWR_REQ);
54 highbank_set_core_pwr();
57 static inline void highbank_set_pwr_soft_reset(void)
59 writel(HB_PWR_SOFT_RESET, sregs_base + HB_SREG_A9_PWR_REQ);
60 highbank_set_core_pwr();
63 static inline void highbank_set_pwr_hard_reset(void)
65 writel(HB_PWR_HARD_RESET, sregs_base + HB_SREG_A9_PWR_REQ);
66 highbank_set_core_pwr();
69 static inline void highbank_clear_pwr_request(void)
71 writel(~0UL, sregs_base + HB_SREG_A9_PWR_REQ);
72 highbank_clear_core_pwr();
75 #endif