blob: 4ae3ea1af7c38646cd9c3eba48ad61a6be0ca571 [file] [log] [blame]
Gregory CLEMENT7444dad2012-08-02 11:17:51 +03001/*
2 * Power Management Service Unit(PMSU) support for Armada 370/XP platforms.
3 *
4 * Copyright (C) 2012 Marvell
5 *
6 * Yehuda Yitschak <yehuday@marvell.com>
7 * Gregory Clement <gregory.clement@free-electrons.com>
8 * Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
9 *
10 * This file is licensed under the terms of the GNU General Public
11 * License version 2. This program is licensed "as is" without any
12 * warranty of any kind, whether express or implied.
13 *
14 * The Armada 370 and Armada XP SOCs have a power management service
15 * unit which is responsible for powering down and waking up CPUs and
16 * other SOC units
17 */
18
Thomas Petazzonibd045a12014-04-14 15:50:30 +020019#define pr_fmt(fmt) "mvebu-pmsu: " fmt
20
Gregory CLEMENT7444dad2012-08-02 11:17:51 +030021#include <linux/kernel.h>
22#include <linux/init.h>
23#include <linux/of_address.h>
24#include <linux/io.h>
25#include <linux/smp.h>
Thomas Petazzoni49754ff2014-04-14 15:50:29 +020026#include <linux/resource.h>
Gregory CLEMENT7444dad2012-08-02 11:17:51 +030027#include <asm/smp_plat.h>
Thomas Petazzoni49754ff2014-04-14 15:50:29 +020028#include "common.h"
Jisheng Zhangb12634e2013-11-07 17:02:38 +080029#include "pmsu.h"
Gregory CLEMENT7444dad2012-08-02 11:17:51 +030030
31static void __iomem *pmsu_mp_base;
Gregory CLEMENT7444dad2012-08-02 11:17:51 +030032
Gregory CLEMENT0c3acc72014-04-14 15:50:31 +020033#define PMSU_BASE_OFFSET 0x100
34#define PMSU_REG_SIZE 0x1000
35
36#define PMSU_BOOT_ADDR_REDIRECT_OFFSET(cpu) ((cpu * 0x100) + 0x124)
Gregory CLEMENT7444dad2012-08-02 11:17:51 +030037
38static struct of_device_id of_pmsu_table[] = {
Gregory CLEMENT0c3acc72014-04-14 15:50:31 +020039 { .compatible = "marvell,armada-370-pmsu", },
40 { .compatible = "marvell,armada-370-xp-pmsu", },
Gregory CLEMENT7444dad2012-08-02 11:17:51 +030041 { /* end of list */ },
42};
43
44#ifdef CONFIG_SMP
45int armada_xp_boot_cpu(unsigned int cpu_id, void *boot_addr)
46{
Thomas Petazzoni49754ff2014-04-14 15:50:29 +020047 int hw_cpu, ret;
Gregory CLEMENT7444dad2012-08-02 11:17:51 +030048
Thomas Petazzoni49754ff2014-04-14 15:50:29 +020049 if (!pmsu_mp_base) {
Gregory CLEMENT7444dad2012-08-02 11:17:51 +030050 pr_warn("Can't boot CPU. PMSU is uninitialized\n");
Thomas Petazzoni49754ff2014-04-14 15:50:29 +020051 return -ENODEV;
Gregory CLEMENT7444dad2012-08-02 11:17:51 +030052 }
53
54 hw_cpu = cpu_logical_map(cpu_id);
55
56 writel(virt_to_phys(boot_addr), pmsu_mp_base +
57 PMSU_BOOT_ADDR_REDIRECT_OFFSET(hw_cpu));
58
Thomas Petazzoni49754ff2014-04-14 15:50:29 +020059 ret = mvebu_cpu_reset_deassert(hw_cpu);
60 if (ret) {
61 pr_warn("unable to boot CPU: %d\n", ret);
62 return ret;
63 }
Gregory CLEMENT7444dad2012-08-02 11:17:51 +030064
65 return 0;
66}
67#endif
68
Jisheng Zhangb12634e2013-11-07 17:02:38 +080069static int __init armada_370_xp_pmsu_init(void)
Gregory CLEMENT7444dad2012-08-02 11:17:51 +030070{
71 struct device_node *np;
Thomas Petazzonibd045a12014-04-14 15:50:30 +020072 struct resource res;
73 int ret = 0;
Gregory CLEMENT7444dad2012-08-02 11:17:51 +030074
75 np = of_find_matching_node(NULL, of_pmsu_table);
Thomas Petazzonibd045a12014-04-14 15:50:30 +020076 if (!np)
77 return 0;
78
79 pr_info("Initializing Power Management Service Unit\n");
80
81 if (of_address_to_resource(np, 0, &res)) {
82 pr_err("unable to get resource\n");
83 ret = -ENOENT;
84 goto out;
Gregory CLEMENT7444dad2012-08-02 11:17:51 +030085 }
86
Gregory CLEMENT0c3acc72014-04-14 15:50:31 +020087 if (of_device_is_compatible(np, "marvell,armada-370-xp-pmsu")) {
88 pr_warn(FW_WARN "deprecated pmsu binding\n");
89 res.start = res.start - PMSU_BASE_OFFSET;
90 res.end = res.start + PMSU_REG_SIZE - 1;
91 }
92
Thomas Petazzonibd045a12014-04-14 15:50:30 +020093 if (!request_mem_region(res.start, resource_size(&res),
94 np->full_name)) {
95 pr_err("unable to request region\n");
96 ret = -EBUSY;
97 goto out;
98 }
99
100 pmsu_mp_base = ioremap(res.start, resource_size(&res));
101 if (!pmsu_mp_base) {
102 pr_err("unable to map registers\n");
103 release_mem_region(res.start, resource_size(&res));
104 ret = -ENOMEM;
105 goto out;
106 }
107
108 out:
109 of_node_put(np);
110 return ret;
Gregory CLEMENT7444dad2012-08-02 11:17:51 +0300111}
112
113early_initcall(armada_370_xp_pmsu_init);