ARM: dts: npcm8xx: add npcm845 function node
[platform/kernel/u-boot.git] / drivers / reset / reset-socfpga.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * Socfpga Reset Controller Driver
4  *
5  * Copyright 2014 Steffen Trumtrar <s.trumtrar@pengutronix.de>
6  *
7  * based on
8  * Allwinner SoCs Reset Controller driver
9  *
10  * Copyright 2013 Maxime Ripard
11  *
12  * Maxime Ripard <maxime.ripard@free-electrons.com>
13  */
14
15 #include <common.h>
16 #include <dm.h>
17 #include <log.h>
18 #include <malloc.h>
19 #include <dm/lists.h>
20 #include <dm/of_access.h>
21 #include <env.h>
22 #include <reset-uclass.h>
23 #include <wait_bit.h>
24 #include <linux/bitops.h>
25 #include <linux/io.h>
26 #include <linux/sizes.h>
27
28 #define BANK_INCREMENT          4
29 #define NR_BANKS                8
30
31 struct socfpga_reset_data {
32         void __iomem *modrst_base;
33 };
34
35 /*
36  * For compatibility with Kernels that don't support peripheral reset, this
37  * driver can keep the old behaviour of not asserting peripheral reset before
38  * starting the OS and deasserting all peripheral resets (enabling all
39  * peripherals).
40  *
41  * For that, the reset driver checks the environment variable
42  * "socfpga_legacy_reset_compat". If this variable is '1', perihperals are not
43  * reset again once taken out of reset and all peripherals in 'permodrst' are
44  * taken out of reset before booting into the OS.
45  * Note that this should be required for gen5 systems only that are running
46  * Linux kernels without proper peripheral reset support for all drivers used.
47  */
48 static bool socfpga_reset_keep_enabled(void)
49 {
50 #if !defined(CONFIG_SPL_BUILD) || CONFIG_IS_ENABLED(ENV_SUPPORT)
51         const char *env_str;
52         long val;
53
54         env_str = env_get("socfpga_legacy_reset_compat");
55         if (env_str) {
56                 val = simple_strtol(env_str, NULL, 0);
57                 if (val == 1)
58                         return true;
59         }
60 #endif
61
62         return false;
63 }
64
65 static int socfpga_reset_assert(struct reset_ctl *reset_ctl)
66 {
67         struct socfpga_reset_data *data = dev_get_priv(reset_ctl->dev);
68         int id = reset_ctl->id;
69         int reg_width = sizeof(u32);
70         int bank = id / (reg_width * BITS_PER_BYTE);
71         int offset = id % (reg_width * BITS_PER_BYTE);
72
73         setbits_le32(data->modrst_base + (bank * BANK_INCREMENT), BIT(offset));
74         return 0;
75 }
76
77 static int socfpga_reset_deassert(struct reset_ctl *reset_ctl)
78 {
79         struct socfpga_reset_data *data = dev_get_priv(reset_ctl->dev);
80         int id = reset_ctl->id;
81         int reg_width = sizeof(u32);
82         int bank = id / (reg_width * BITS_PER_BYTE);
83         int offset = id % (reg_width * BITS_PER_BYTE);
84
85         clrbits_le32(data->modrst_base + (bank * BANK_INCREMENT), BIT(offset));
86
87         return wait_for_bit_le32(data->modrst_base + (bank * BANK_INCREMENT),
88                                  BIT(offset),
89                                  false, 500, false);
90 }
91
92 static const struct reset_ops socfpga_reset_ops = {
93         .rst_assert = socfpga_reset_assert,
94         .rst_deassert = socfpga_reset_deassert,
95 };
96
97 static int socfpga_reset_probe(struct udevice *dev)
98 {
99         struct socfpga_reset_data *data = dev_get_priv(dev);
100         u32 modrst_offset;
101         void __iomem *membase;
102
103         membase = dev_read_addr_ptr(dev);
104
105         modrst_offset = dev_read_u32_default(dev, "altr,modrst-offset", 0x10);
106         data->modrst_base = membase + modrst_offset;
107
108         return 0;
109 }
110
111 static int socfpga_reset_remove(struct udevice *dev)
112 {
113         struct socfpga_reset_data *data = dev_get_priv(dev);
114
115         if (socfpga_reset_keep_enabled()) {
116                 puts("Deasserting all peripheral resets\n");
117                 writel(0, data->modrst_base + 4);
118         }
119
120         return 0;
121 }
122
123 static int socfpga_reset_bind(struct udevice *dev)
124 {
125         int ret;
126         struct udevice *sys_child;
127
128         /*
129          * The sysreset driver does not have a device node, so bind it here.
130          * Bind it to the node, too, so that it can get its base address.
131          */
132         ret = device_bind_driver_to_node(dev, "socfpga_sysreset", "sysreset",
133                                          dev_ofnode(dev), &sys_child);
134         if (ret)
135                 debug("Warning: No sysreset driver: ret=%d\n", ret);
136
137         return 0;
138 }
139
140 static const struct udevice_id socfpga_reset_match[] = {
141         { .compatible = "altr,rst-mgr" },
142         { /* sentinel */ },
143 };
144
145 U_BOOT_DRIVER(socfpga_reset) = {
146         .name = "socfpga-reset",
147         .id = UCLASS_RESET,
148         .of_match = socfpga_reset_match,
149         .bind = socfpga_reset_bind,
150         .probe = socfpga_reset_probe,
151         .priv_auto      = sizeof(struct socfpga_reset_data),
152         .ops = &socfpga_reset_ops,
153         .remove = socfpga_reset_remove,
154         .flags  = DM_FLAG_OS_PREPARE,
155 };