blob: 5995df7f2622eaa20382d7ad0e90483675a6b5eb [file] [log] [blame]
Rob Herring220e6cf2011-06-07 10:02:55 -05001/*
2 * Copyright 2011 Calxeda, Inc.
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms and conditions of the GNU General Public License,
6 * version 2, as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
11 * more details.
12 *
13 * You should have received a copy of the GNU General Public License along with
14 * this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16#ifndef _MACH_HIGHBANK__SYSREGS_H_
17#define _MACH_HIGHBANK__SYSREGS_H_
18
19#include <linux/io.h>
Rob Herring7a2848d2012-10-25 12:13:47 -050020#include <linux/smp.h>
21#include <asm/smp_plat.h>
22#include <asm/smp_scu.h>
23#include "core.h"
Rob Herring220e6cf2011-06-07 10:02:55 -050024
25extern void __iomem *sregs_base;
26
27#define HB_SREG_A9_PWR_REQ 0xf00
28#define HB_SREG_A9_BOOT_STAT 0xf04
29#define HB_SREG_A9_BOOT_DATA 0xf08
30
31#define HB_PWR_SUSPEND 0
32#define HB_PWR_SOFT_RESET 1
33#define HB_PWR_HARD_RESET 2
34#define HB_PWR_SHUTDOWN 3
35
Rob Herring7a2848d2012-10-25 12:13:47 -050036#define SREG_CPU_PWR_CTRL(c) (0x200 + ((c) * 4))
37
38static inline void highbank_set_core_pwr(void)
39{
Rob Herring63fc1372013-01-31 13:28:42 -060040 int cpu = MPIDR_AFFINITY_LEVEL(cpu_logical_map(smp_processor_id()), 0);
Rob Herring7a2848d2012-10-25 12:13:47 -050041 if (scu_base_addr)
42 scu_power_mode(scu_base_addr, SCU_PM_POWEROFF);
43 else
44 writel_relaxed(1, sregs_base + SREG_CPU_PWR_CTRL(cpu));
45}
46
Rob Herring98529102012-12-30 10:15:06 -060047static inline void highbank_clear_core_pwr(void)
48{
Rob Herring63fc1372013-01-31 13:28:42 -060049 int cpu = MPIDR_AFFINITY_LEVEL(cpu_logical_map(smp_processor_id()), 0);
Rob Herring98529102012-12-30 10:15:06 -060050 if (scu_base_addr)
51 scu_power_mode(scu_base_addr, SCU_PM_NORMAL);
52 else
53 writel_relaxed(0, sregs_base + SREG_CPU_PWR_CTRL(cpu));
54}
55
Rob Herringc05ee882012-12-30 10:15:04 -060056static inline void highbank_set_pwr_suspend(void)
Rob Herring220e6cf2011-06-07 10:02:55 -050057{
58 writel(HB_PWR_SUSPEND, sregs_base + HB_SREG_A9_PWR_REQ);
Rob Herring7a2848d2012-10-25 12:13:47 -050059 highbank_set_core_pwr();
Rob Herring220e6cf2011-06-07 10:02:55 -050060}
61
Rob Herringc05ee882012-12-30 10:15:04 -060062static inline void highbank_set_pwr_shutdown(void)
Rob Herring220e6cf2011-06-07 10:02:55 -050063{
64 writel(HB_PWR_SHUTDOWN, sregs_base + HB_SREG_A9_PWR_REQ);
Rob Herring7a2848d2012-10-25 12:13:47 -050065 highbank_set_core_pwr();
Rob Herring220e6cf2011-06-07 10:02:55 -050066}
67
Rob Herringc05ee882012-12-30 10:15:04 -060068static inline void highbank_set_pwr_soft_reset(void)
Rob Herring220e6cf2011-06-07 10:02:55 -050069{
70 writel(HB_PWR_SOFT_RESET, sregs_base + HB_SREG_A9_PWR_REQ);
Rob Herring7a2848d2012-10-25 12:13:47 -050071 highbank_set_core_pwr();
Rob Herring220e6cf2011-06-07 10:02:55 -050072}
73
Rob Herringc05ee882012-12-30 10:15:04 -060074static inline void highbank_set_pwr_hard_reset(void)
Rob Herring220e6cf2011-06-07 10:02:55 -050075{
76 writel(HB_PWR_HARD_RESET, sregs_base + HB_SREG_A9_PWR_REQ);
Rob Herring7a2848d2012-10-25 12:13:47 -050077 highbank_set_core_pwr();
Rob Herring220e6cf2011-06-07 10:02:55 -050078}
79
Rob Herring98529102012-12-30 10:15:06 -060080static inline void highbank_clear_pwr_request(void)
81{
82 writel(~0UL, sregs_base + HB_SREG_A9_PWR_REQ);
83 highbank_clear_core_pwr();
84}
85
Rob Herring220e6cf2011-06-07 10:02:55 -050086#endif