1*0fdebc5eSThomas Gleixner // SPDX-License-Identifier: GPL-2.0-only
231af49dbSGregory CLEMENT /*
3df863de1SThomas Petazzoni * System controller support for Armada 370, 375 and XP platforms.
431af49dbSGregory CLEMENT *
531af49dbSGregory CLEMENT * Copyright (C) 2012 Marvell
631af49dbSGregory CLEMENT *
731af49dbSGregory CLEMENT * Lior Amsalem <alior@marvell.com>
831af49dbSGregory CLEMENT * Gregory CLEMENT <gregory.clement@free-electrons.com>
931af49dbSGregory CLEMENT * Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
1031af49dbSGregory CLEMENT *
11df863de1SThomas Petazzoni * The Armada 370, 375 and Armada XP SoCs have a range of
1231af49dbSGregory CLEMENT * miscellaneous registers, that do not belong to a particular device,
1331af49dbSGregory CLEMENT * but rather provide system-level features. This basic
1431af49dbSGregory CLEMENT * system-controller driver provides a device tree binding for those
1531af49dbSGregory CLEMENT * registers, and implements utility functions offering various
1631af49dbSGregory CLEMENT * features related to those registers.
1731af49dbSGregory CLEMENT *
1831af49dbSGregory CLEMENT * For now, the feature set is limited to restarting the platform by a
1931af49dbSGregory CLEMENT * soft-reset, but it might be extended in the future.
2031af49dbSGregory CLEMENT */
2131af49dbSGregory CLEMENT
2231af49dbSGregory CLEMENT #include <linux/kernel.h>
2331af49dbSGregory CLEMENT #include <linux/init.h>
2431af49dbSGregory CLEMENT #include <linux/of_address.h>
2531af49dbSGregory CLEMENT #include <linux/io.h>
267b6d864bSRobin Holt #include <linux/reboot.h>
27b12634e3SJisheng Zhang #include "common.h"
28305969fbSGregory CLEMENT #include "mvebu-soc-id.h"
29305969fbSGregory CLEMENT #include "pmsu.h"
30305969fbSGregory CLEMENT
31305969fbSGregory CLEMENT #define ARMADA_375_CRYPT0_ENG_TARGET 41
32305969fbSGregory CLEMENT #define ARMADA_375_CRYPT0_ENG_ATTR 1
3331af49dbSGregory CLEMENT
3431af49dbSGregory CLEMENT static void __iomem *system_controller_base;
35305969fbSGregory CLEMENT static phys_addr_t system_controller_phys_base;
3631af49dbSGregory CLEMENT
3731af49dbSGregory CLEMENT struct mvebu_system_controller {
3831af49dbSGregory CLEMENT u32 rstoutn_mask_offset;
3931af49dbSGregory CLEMENT u32 system_soft_reset_offset;
4031af49dbSGregory CLEMENT
4131af49dbSGregory CLEMENT u32 rstoutn_mask_reset_out_en;
4231af49dbSGregory CLEMENT u32 system_soft_reset;
4300504be4SGregory CLEMENT
4400504be4SGregory CLEMENT u32 resume_boot_addr;
459674d4a3SGregory CLEMENT
469674d4a3SGregory CLEMENT u32 dev_id;
479674d4a3SGregory CLEMENT u32 rev_id;
4831af49dbSGregory CLEMENT };
4931af49dbSGregory CLEMENT static struct mvebu_system_controller *mvebu_sc;
5031af49dbSGregory CLEMENT
51b12634e3SJisheng Zhang static const struct mvebu_system_controller armada_370_xp_system_controller = {
5231af49dbSGregory CLEMENT .rstoutn_mask_offset = 0x60,
5331af49dbSGregory CLEMENT .system_soft_reset_offset = 0x64,
5431af49dbSGregory CLEMENT .rstoutn_mask_reset_out_en = 0x1,
5531af49dbSGregory CLEMENT .system_soft_reset = 0x1,
569674d4a3SGregory CLEMENT .dev_id = 0x38,
579674d4a3SGregory CLEMENT .rev_id = 0x3c,
5831af49dbSGregory CLEMENT };
5931af49dbSGregory CLEMENT
60df863de1SThomas Petazzoni static const struct mvebu_system_controller armada_375_system_controller = {
61df863de1SThomas Petazzoni .rstoutn_mask_offset = 0x54,
62df863de1SThomas Petazzoni .system_soft_reset_offset = 0x58,
63df863de1SThomas Petazzoni .rstoutn_mask_reset_out_en = 0x1,
64df863de1SThomas Petazzoni .system_soft_reset = 0x1,
6500504be4SGregory CLEMENT .resume_boot_addr = 0xd4,
669674d4a3SGregory CLEMENT .dev_id = 0x38,
679674d4a3SGregory CLEMENT .rev_id = 0x3c,
68df863de1SThomas Petazzoni };
69df863de1SThomas Petazzoni
70b12634e3SJisheng Zhang static const struct mvebu_system_controller orion_system_controller = {
7131af49dbSGregory CLEMENT .rstoutn_mask_offset = 0x108,
7231af49dbSGregory CLEMENT .system_soft_reset_offset = 0x10c,
7331af49dbSGregory CLEMENT .rstoutn_mask_reset_out_en = 0x4,
7431af49dbSGregory CLEMENT .system_soft_reset = 0x1,
7531af49dbSGregory CLEMENT };
7631af49dbSGregory CLEMENT
77a8cacc0aSJosh Cartwright static const struct of_device_id of_system_controller_table[] = {
7831af49dbSGregory CLEMENT {
7931af49dbSGregory CLEMENT .compatible = "marvell,orion-system-controller",
8031af49dbSGregory CLEMENT .data = (void *) &orion_system_controller,
8131af49dbSGregory CLEMENT }, {
8231af49dbSGregory CLEMENT .compatible = "marvell,armada-370-xp-system-controller",
8331af49dbSGregory CLEMENT .data = (void *) &armada_370_xp_system_controller,
84df863de1SThomas Petazzoni }, {
85df863de1SThomas Petazzoni .compatible = "marvell,armada-375-system-controller",
86df863de1SThomas Petazzoni .data = (void *) &armada_375_system_controller,
8731af49dbSGregory CLEMENT },
8831af49dbSGregory CLEMENT { /* end of list */ },
8931af49dbSGregory CLEMENT };
9031af49dbSGregory CLEMENT
mvebu_restart(enum reboot_mode mode,const char * cmd)917b6d864bSRobin Holt void mvebu_restart(enum reboot_mode mode, const char *cmd)
9231af49dbSGregory CLEMENT {
9331af49dbSGregory CLEMENT if (!system_controller_base) {
9431af49dbSGregory CLEMENT pr_err("Cannot restart, system-controller not available: check the device tree\n");
9531af49dbSGregory CLEMENT } else {
9631af49dbSGregory CLEMENT /*
9731af49dbSGregory CLEMENT * Enable soft reset to assert RSTOUTn.
9831af49dbSGregory CLEMENT */
9931af49dbSGregory CLEMENT writel(mvebu_sc->rstoutn_mask_reset_out_en,
10031af49dbSGregory CLEMENT system_controller_base +
10131af49dbSGregory CLEMENT mvebu_sc->rstoutn_mask_offset);
10231af49dbSGregory CLEMENT /*
10331af49dbSGregory CLEMENT * Assert soft reset.
10431af49dbSGregory CLEMENT */
10531af49dbSGregory CLEMENT writel(mvebu_sc->system_soft_reset,
10631af49dbSGregory CLEMENT system_controller_base +
10731af49dbSGregory CLEMENT mvebu_sc->system_soft_reset_offset);
10831af49dbSGregory CLEMENT }
10931af49dbSGregory CLEMENT
11031af49dbSGregory CLEMENT while (1)
11131af49dbSGregory CLEMENT ;
11231af49dbSGregory CLEMENT }
11331af49dbSGregory CLEMENT
mvebu_system_controller_get_soc_id(u32 * dev,u32 * rev)1149674d4a3SGregory CLEMENT int mvebu_system_controller_get_soc_id(u32 *dev, u32 *rev)
1159674d4a3SGregory CLEMENT {
1169674d4a3SGregory CLEMENT if (of_machine_is_compatible("marvell,armada380") &&
1179674d4a3SGregory CLEMENT system_controller_base) {
1189674d4a3SGregory CLEMENT *dev = readl(system_controller_base + mvebu_sc->dev_id) >> 16;
1199674d4a3SGregory CLEMENT *rev = (readl(system_controller_base + mvebu_sc->rev_id) >> 8)
1209674d4a3SGregory CLEMENT & 0xF;
1219674d4a3SGregory CLEMENT return 0;
1229674d4a3SGregory CLEMENT } else
1239674d4a3SGregory CLEMENT return -ENODEV;
1249674d4a3SGregory CLEMENT }
1259674d4a3SGregory CLEMENT
12616523518SArnd Bergmann #if defined(CONFIG_SMP) && defined(CONFIG_MACH_MVEBU_V7)
mvebu_armada375_smp_wa_init(void)1276c5066f6SBen Dooks static void mvebu_armada375_smp_wa_init(void)
128305969fbSGregory CLEMENT {
129305969fbSGregory CLEMENT u32 dev, rev;
130305969fbSGregory CLEMENT phys_addr_t resume_addr_reg;
131305969fbSGregory CLEMENT
132305969fbSGregory CLEMENT if (mvebu_get_soc_id(&dev, &rev) != 0)
133305969fbSGregory CLEMENT return;
134305969fbSGregory CLEMENT
135305969fbSGregory CLEMENT if (rev != ARMADA_375_Z1_REV)
136305969fbSGregory CLEMENT return;
137305969fbSGregory CLEMENT
138305969fbSGregory CLEMENT resume_addr_reg = system_controller_phys_base +
139305969fbSGregory CLEMENT mvebu_sc->resume_boot_addr;
140305969fbSGregory CLEMENT mvebu_setup_boot_addr_wa(ARMADA_375_CRYPT0_ENG_TARGET,
141305969fbSGregory CLEMENT ARMADA_375_CRYPT0_ENG_ATTR,
142305969fbSGregory CLEMENT resume_addr_reg);
143305969fbSGregory CLEMENT }
144305969fbSGregory CLEMENT
mvebu_system_controller_set_cpu_boot_addr(void * boot_addr)14500504be4SGregory CLEMENT void mvebu_system_controller_set_cpu_boot_addr(void *boot_addr)
14600504be4SGregory CLEMENT {
14700504be4SGregory CLEMENT BUG_ON(system_controller_base == NULL);
14800504be4SGregory CLEMENT BUG_ON(mvebu_sc->resume_boot_addr == 0);
149305969fbSGregory CLEMENT
150305969fbSGregory CLEMENT if (of_machine_is_compatible("marvell,armada375"))
151305969fbSGregory CLEMENT mvebu_armada375_smp_wa_init();
152305969fbSGregory CLEMENT
15364fc2a94SFlorian Fainelli writel(__pa_symbol(boot_addr), system_controller_base +
15400504be4SGregory CLEMENT mvebu_sc->resume_boot_addr);
15500504be4SGregory CLEMENT }
15600504be4SGregory CLEMENT #endif
15700504be4SGregory CLEMENT
mvebu_system_controller_init(void)15831af49dbSGregory CLEMENT static int __init mvebu_system_controller_init(void)
15931af49dbSGregory CLEMENT {
160a8cacc0aSJosh Cartwright const struct of_device_id *match;
16131af49dbSGregory CLEMENT struct device_node *np;
16231af49dbSGregory CLEMENT
163a8cacc0aSJosh Cartwright np = of_find_matching_node_and_match(NULL, of_system_controller_table,
164a8cacc0aSJosh Cartwright &match);
16531af49dbSGregory CLEMENT if (np) {
166305969fbSGregory CLEMENT struct resource res;
16731af49dbSGregory CLEMENT system_controller_base = of_iomap(np, 0);
168305969fbSGregory CLEMENT of_address_to_resource(np, 0, &res);
169305969fbSGregory CLEMENT system_controller_phys_base = res.start;
17031af49dbSGregory CLEMENT mvebu_sc = (struct mvebu_system_controller *)match->data;
171abe511acSJisheng Zhang of_node_put(np);
17231af49dbSGregory CLEMENT }
17331af49dbSGregory CLEMENT
17431af49dbSGregory CLEMENT return 0;
17531af49dbSGregory CLEMENT }
17631af49dbSGregory CLEMENT
17700504be4SGregory CLEMENT early_initcall(mvebu_system_controller_init);
178