]>
Commit | Line | Data |
---|---|---|
83d290c5 | 1 | // SPDX-License-Identifier: GPL-2.0+ |
584861ff | 2 | /* |
fb48bc44 PC |
3 | * Copyright (C) 2017, STMicroelectronics - All Rights Reserved |
4 | * Author(s): Patrice Chotard, <[email protected]> for STMicroelectronics. | |
584861ff PC |
5 | */ |
6 | ||
7 | #include <common.h> | |
8 | #include <errno.h> | |
f7ae49fc | 9 | #include <log.h> |
336d4615 | 10 | #include <malloc.h> |
584861ff PC |
11 | #include <wait_bit.h> |
12 | #include <dm.h> | |
13 | #include <reset-uclass.h> | |
14 | #include <regmap.h> | |
15 | #include <syscon.h> | |
16 | #include <dt-bindings/reset/stih407-resets.h> | |
cd93d625 | 17 | #include <linux/bitops.h> |
584861ff PC |
18 | |
19 | DECLARE_GLOBAL_DATA_PTR; | |
20 | ||
21 | struct sti_reset { | |
22 | const struct syscfg_reset_controller_data *data; | |
23 | }; | |
24 | ||
25 | /** | |
26 | * Reset channel description for a system configuration register based | |
27 | * reset controller. | |
28 | * | |
29 | * @compatible: Compatible string of the syscon containing this | |
30 | * channel's control and ack (status) bits. | |
31 | * @reset_offset: Reset register offset in sysconf bank. | |
32 | * @reset_bit: Bit number in reset register. | |
33 | * @ack_offset: Ack reset register offset in syscon bank. | |
34 | * @ack_bit: Bit number in Ack reset register. | |
aef5b738 PC |
35 | * @deassert_cnt: incremented when reset is deasserted, reset can only be |
36 | * asserted when equal to 0 | |
584861ff PC |
37 | */ |
38 | ||
39 | struct syscfg_reset_channel_data { | |
40 | const char *compatible; | |
41 | int reset_offset; | |
42 | int reset_bit; | |
43 | int ack_offset; | |
44 | int ack_bit; | |
aef5b738 | 45 | int deassert_cnt; |
584861ff PC |
46 | }; |
47 | ||
48 | /** | |
49 | * Description of a system configuration register based reset controller. | |
50 | * | |
51 | * @wait_for_ack: The controller will wait for reset assert and de-assert to | |
52 | * be "ack'd" in a channel's ack field. | |
53 | * @active_low: Are the resets in this controller active low, i.e. clearing | |
54 | * the reset bit puts the hardware into reset. | |
55 | * @nr_channels: The number of reset channels in this controller. | |
56 | * @channels: An array of reset channel descriptions. | |
57 | */ | |
58 | struct syscfg_reset_controller_data { | |
59 | bool wait_for_ack; | |
60 | bool active_low; | |
61 | int nr_channels; | |
aef5b738 | 62 | struct syscfg_reset_channel_data *channels; |
584861ff PC |
63 | }; |
64 | ||
65 | /* STiH407 Peripheral powerdown definitions. */ | |
66 | static const char stih407_core[] = "st,stih407-core-syscfg"; | |
67 | static const char stih407_sbc_reg[] = "st,stih407-sbc-reg-syscfg"; | |
68 | static const char stih407_lpm[] = "st,stih407-lpm-syscfg"; | |
69 | ||
70 | #define _SYSCFG_RST_CH(_c, _rr, _rb, _ar, _ab) \ | |
71 | { .compatible = _c, \ | |
72 | .reset_offset = _rr, \ | |
73 | .reset_bit = _rb, \ | |
74 | .ack_offset = _ar, \ | |
75 | .ack_bit = _ab, } | |
76 | ||
77 | #define _SYSCFG_RST_CH_NO_ACK(_c, _rr, _rb) \ | |
78 | { .compatible = _c, \ | |
79 | .reset_offset = _rr, \ | |
80 | .reset_bit = _rb, } | |
81 | ||
82 | #define STIH407_SRST_CORE(_reg, _bit) \ | |
83 | _SYSCFG_RST_CH_NO_ACK(stih407_core, _reg, _bit) | |
84 | ||
85 | #define STIH407_SRST_SBC(_reg, _bit) \ | |
86 | _SYSCFG_RST_CH_NO_ACK(stih407_sbc_reg, _reg, _bit) | |
87 | ||
88 | #define STIH407_SRST_LPM(_reg, _bit) \ | |
89 | _SYSCFG_RST_CH_NO_ACK(stih407_lpm, _reg, _bit) | |
90 | ||
91 | #define STIH407_PDN_0(_bit) \ | |
92 | _SYSCFG_RST_CH(stih407_core, SYSCFG_5000, _bit, SYSSTAT_5500, _bit) | |
93 | #define STIH407_PDN_1(_bit) \ | |
94 | _SYSCFG_RST_CH(stih407_core, SYSCFG_5001, _bit, SYSSTAT_5501, _bit) | |
95 | #define STIH407_PDN_ETH(_bit, _stat) \ | |
96 | _SYSCFG_RST_CH(stih407_sbc_reg, SYSCFG_4032, _bit, SYSSTAT_4520, _stat) | |
97 | ||
98 | /* Powerdown requests control 0 */ | |
99 | #define SYSCFG_5000 0x0 | |
100 | #define SYSSTAT_5500 0x7d0 | |
101 | /* Powerdown requests control 1 (High Speed Links) */ | |
102 | #define SYSCFG_5001 0x4 | |
103 | #define SYSSTAT_5501 0x7d4 | |
104 | ||
105 | /* Ethernet powerdown/status/reset */ | |
106 | #define SYSCFG_4032 0x80 | |
107 | #define SYSSTAT_4520 0x820 | |
108 | #define SYSCFG_4002 0x8 | |
109 | ||
aef5b738 | 110 | static struct syscfg_reset_channel_data stih407_powerdowns[] = { |
584861ff PC |
111 | [STIH407_EMISS_POWERDOWN] = STIH407_PDN_0(1), |
112 | [STIH407_NAND_POWERDOWN] = STIH407_PDN_0(0), | |
113 | [STIH407_USB3_POWERDOWN] = STIH407_PDN_1(6), | |
114 | [STIH407_USB2_PORT1_POWERDOWN] = STIH407_PDN_1(5), | |
115 | [STIH407_USB2_PORT0_POWERDOWN] = STIH407_PDN_1(4), | |
116 | [STIH407_PCIE1_POWERDOWN] = STIH407_PDN_1(3), | |
117 | [STIH407_PCIE0_POWERDOWN] = STIH407_PDN_1(2), | |
118 | [STIH407_SATA1_POWERDOWN] = STIH407_PDN_1(1), | |
119 | [STIH407_SATA0_POWERDOWN] = STIH407_PDN_1(0), | |
120 | [STIH407_ETH1_POWERDOWN] = STIH407_PDN_ETH(0, 2), | |
121 | }; | |
122 | ||
123 | /* Reset Generator control 0/1 */ | |
124 | #define SYSCFG_5128 0x200 | |
125 | #define SYSCFG_5131 0x20c | |
126 | #define SYSCFG_5132 0x210 | |
127 | ||
128 | #define LPM_SYSCFG_1 0x4 /* Softreset IRB & SBC UART */ | |
129 | ||
aef5b738 | 130 | static struct syscfg_reset_channel_data stih407_softresets[] = { |
584861ff PC |
131 | [STIH407_ETH1_SOFTRESET] = STIH407_SRST_SBC(SYSCFG_4002, 4), |
132 | [STIH407_MMC1_SOFTRESET] = STIH407_SRST_CORE(SYSCFG_5132, 3), | |
133 | [STIH407_USB2_PORT0_SOFTRESET] = STIH407_SRST_CORE(SYSCFG_5132, 28), | |
134 | [STIH407_USB2_PORT1_SOFTRESET] = STIH407_SRST_CORE(SYSCFG_5132, 29), | |
135 | [STIH407_PICOPHY_SOFTRESET] = STIH407_SRST_CORE(SYSCFG_5132, 30), | |
136 | [STIH407_IRB_SOFTRESET] = STIH407_SRST_LPM(LPM_SYSCFG_1, 6), | |
137 | [STIH407_PCIE0_SOFTRESET] = STIH407_SRST_CORE(SYSCFG_5132, 6), | |
138 | [STIH407_PCIE1_SOFTRESET] = STIH407_SRST_CORE(SYSCFG_5132, 15), | |
139 | [STIH407_SATA0_SOFTRESET] = STIH407_SRST_CORE(SYSCFG_5132, 7), | |
140 | [STIH407_SATA1_SOFTRESET] = STIH407_SRST_CORE(SYSCFG_5132, 16), | |
141 | [STIH407_MIPHY0_SOFTRESET] = STIH407_SRST_CORE(SYSCFG_5132, 4), | |
142 | [STIH407_MIPHY1_SOFTRESET] = STIH407_SRST_CORE(SYSCFG_5132, 13), | |
143 | [STIH407_MIPHY2_SOFTRESET] = STIH407_SRST_CORE(SYSCFG_5132, 22), | |
144 | [STIH407_SATA0_PWR_SOFTRESET] = STIH407_SRST_CORE(SYSCFG_5132, 5), | |
145 | [STIH407_SATA1_PWR_SOFTRESET] = STIH407_SRST_CORE(SYSCFG_5132, 14), | |
146 | [STIH407_DELTA_SOFTRESET] = STIH407_SRST_CORE(SYSCFG_5131, 3), | |
147 | [STIH407_BLITTER_SOFTRESET] = STIH407_SRST_CORE(SYSCFG_5131, 10), | |
148 | [STIH407_HDTVOUT_SOFTRESET] = STIH407_SRST_CORE(SYSCFG_5131, 11), | |
149 | [STIH407_HDQVDP_SOFTRESET] = STIH407_SRST_CORE(SYSCFG_5131, 12), | |
150 | [STIH407_VDP_AUX_SOFTRESET] = STIH407_SRST_CORE(SYSCFG_5131, 14), | |
151 | [STIH407_COMPO_SOFTRESET] = STIH407_SRST_CORE(SYSCFG_5131, 15), | |
152 | [STIH407_HDMI_TX_PHY_SOFTRESET] = STIH407_SRST_CORE(SYSCFG_5131, 21), | |
153 | [STIH407_JPEG_DEC_SOFTRESET] = STIH407_SRST_CORE(SYSCFG_5131, 23), | |
154 | [STIH407_VP8_DEC_SOFTRESET] = STIH407_SRST_CORE(SYSCFG_5131, 24), | |
155 | [STIH407_GPU_SOFTRESET] = STIH407_SRST_CORE(SYSCFG_5131, 30), | |
156 | [STIH407_HVA_SOFTRESET] = STIH407_SRST_CORE(SYSCFG_5132, 0), | |
157 | [STIH407_ERAM_HVA_SOFTRESET] = STIH407_SRST_CORE(SYSCFG_5132, 1), | |
158 | [STIH407_LPM_SOFTRESET] = STIH407_SRST_SBC(SYSCFG_4002, 2), | |
159 | [STIH407_KEYSCAN_SOFTRESET] = STIH407_SRST_LPM(LPM_SYSCFG_1, 8), | |
160 | [STIH407_ST231_AUD_SOFTRESET] = STIH407_SRST_CORE(SYSCFG_5131, 26), | |
161 | [STIH407_ST231_DMU_SOFTRESET] = STIH407_SRST_CORE(SYSCFG_5131, 27), | |
162 | [STIH407_ST231_GP0_SOFTRESET] = STIH407_SRST_CORE(SYSCFG_5131, 28), | |
163 | [STIH407_ST231_GP1_SOFTRESET] = STIH407_SRST_CORE(SYSCFG_5128, 2), | |
164 | }; | |
165 | ||
166 | /* PicoPHY reset/control */ | |
167 | #define SYSCFG_5061 0x0f4 | |
168 | ||
aef5b738 | 169 | static struct syscfg_reset_channel_data stih407_picophyresets[] = { |
584861ff PC |
170 | [STIH407_PICOPHY0_RESET] = STIH407_SRST_CORE(SYSCFG_5061, 5), |
171 | [STIH407_PICOPHY1_RESET] = STIH407_SRST_CORE(SYSCFG_5061, 6), | |
172 | [STIH407_PICOPHY2_RESET] = STIH407_SRST_CORE(SYSCFG_5061, 7), | |
173 | }; | |
174 | ||
175 | static const struct | |
176 | syscfg_reset_controller_data stih407_powerdown_controller = { | |
177 | .wait_for_ack = true, | |
178 | .nr_channels = ARRAY_SIZE(stih407_powerdowns), | |
179 | .channels = stih407_powerdowns, | |
180 | }; | |
181 | ||
182 | static const struct | |
183 | syscfg_reset_controller_data stih407_softreset_controller = { | |
184 | .wait_for_ack = false, | |
185 | .active_low = true, | |
186 | .nr_channels = ARRAY_SIZE(stih407_softresets), | |
187 | .channels = stih407_softresets, | |
188 | }; | |
189 | ||
190 | static const struct | |
191 | syscfg_reset_controller_data stih407_picophyreset_controller = { | |
192 | .wait_for_ack = false, | |
193 | .nr_channels = ARRAY_SIZE(stih407_picophyresets), | |
194 | .channels = stih407_picophyresets, | |
195 | }; | |
196 | ||
197 | phys_addr_t sti_reset_get_regmap(const char *compatible) | |
198 | { | |
199 | struct udevice *syscon; | |
200 | struct regmap *regmap; | |
201 | int node, ret; | |
202 | ||
203 | node = fdt_node_offset_by_compatible(gd->fdt_blob, -1, | |
204 | compatible); | |
205 | if (node < 0) { | |
9b643e31 | 206 | pr_err("unable to find %s node\n", compatible); |
584861ff PC |
207 | return node; |
208 | } | |
209 | ||
210 | ret = uclass_get_device_by_of_offset(UCLASS_SYSCON, node, &syscon); | |
211 | if (ret) { | |
9b643e31 | 212 | pr_err("%s: uclass_get_device_by_of_offset failed: %d\n", |
584861ff PC |
213 | __func__, ret); |
214 | return ret; | |
215 | } | |
216 | ||
217 | regmap = syscon_get_regmap(syscon); | |
218 | if (!regmap) { | |
9b643e31 | 219 | pr_err("unable to get regmap for %s\n", syscon->name); |
584861ff PC |
220 | return -ENODEV; |
221 | } | |
222 | ||
8c1de5e0 | 223 | return regmap->ranges[0].start; |
584861ff PC |
224 | } |
225 | ||
226 | static int sti_reset_program_hw(struct reset_ctl *reset_ctl, int assert) | |
227 | { | |
228 | struct udevice *dev = reset_ctl->dev; | |
229 | struct syscfg_reset_controller_data *reset_desc = | |
230 | (struct syscfg_reset_controller_data *)(dev->driver_data); | |
aef5b738 | 231 | struct syscfg_reset_channel_data *ch; |
584861ff PC |
232 | phys_addr_t base; |
233 | u32 ctrl_val = reset_desc->active_low ? !assert : !!assert; | |
234 | void __iomem *reg; | |
235 | ||
236 | /* check if reset id is inside available range */ | |
237 | if (reset_ctl->id >= reset_desc->nr_channels) | |
238 | return -EINVAL; | |
239 | ||
240 | /* get reset sysconf register base address */ | |
241 | base = sti_reset_get_regmap(reset_desc->channels[reset_ctl->id].compatible); | |
242 | ||
aef5b738 PC |
243 | ch = &reset_desc->channels[reset_ctl->id]; |
244 | ||
245 | /* check the deassert counter to assert reset when it reaches 0 */ | |
246 | if (!assert) { | |
247 | ch->deassert_cnt++; | |
248 | if (ch->deassert_cnt > 1) | |
249 | return 0; | |
250 | } else { | |
251 | if (ch->deassert_cnt > 0) { | |
252 | ch->deassert_cnt--; | |
253 | if (ch->deassert_cnt > 0) | |
254 | return 0; | |
255 | } else | |
9b643e31 | 256 | pr_err("Reset balancing error: reset_ctl=%p dev=%p id=%lu\n", |
aef5b738 PC |
257 | reset_ctl, reset_ctl->dev, reset_ctl->id); |
258 | } | |
259 | ||
260 | reg = (void __iomem *)base + ch->reset_offset; | |
584861ff PC |
261 | |
262 | if (ctrl_val) | |
aef5b738 | 263 | generic_set_bit(ch->reset_bit, reg); |
584861ff | 264 | else |
aef5b738 | 265 | generic_clear_bit(ch->reset_bit, reg); |
584861ff PC |
266 | |
267 | if (!reset_desc->wait_for_ack) | |
268 | return 0; | |
269 | ||
aef5b738 | 270 | reg = (void __iomem *)base + ch->ack_offset; |
48263504 ÁFR |
271 | if (wait_for_bit_le32(reg, BIT(ch->ack_bit), ctrl_val, |
272 | 1000, false)) { | |
9b643e31 | 273 | pr_err("Stuck on waiting ack reset_ctl=%p dev=%p id=%lu\n", |
584861ff PC |
274 | reset_ctl, reset_ctl->dev, reset_ctl->id); |
275 | ||
276 | return -ETIMEDOUT; | |
277 | } | |
278 | ||
279 | return 0; | |
280 | } | |
281 | ||
282 | static int sti_reset_request(struct reset_ctl *reset_ctl) | |
283 | { | |
284 | return 0; | |
285 | } | |
286 | ||
287 | static int sti_reset_free(struct reset_ctl *reset_ctl) | |
288 | { | |
289 | return 0; | |
290 | } | |
291 | ||
292 | static int sti_reset_assert(struct reset_ctl *reset_ctl) | |
293 | { | |
294 | return sti_reset_program_hw(reset_ctl, true); | |
295 | } | |
296 | ||
297 | static int sti_reset_deassert(struct reset_ctl *reset_ctl) | |
298 | { | |
299 | return sti_reset_program_hw(reset_ctl, false); | |
300 | } | |
301 | ||
302 | struct reset_ops sti_reset_ops = { | |
303 | .request = sti_reset_request, | |
94474b25 | 304 | .rfree = sti_reset_free, |
584861ff PC |
305 | .rst_assert = sti_reset_assert, |
306 | .rst_deassert = sti_reset_deassert, | |
307 | }; | |
308 | ||
309 | static int sti_reset_probe(struct udevice *dev) | |
310 | { | |
311 | struct sti_reset *priv = dev_get_priv(dev); | |
312 | ||
313 | priv->data = (void *)dev_get_driver_data(dev); | |
314 | ||
315 | return 0; | |
316 | } | |
317 | ||
318 | static const struct udevice_id sti_reset_ids[] = { | |
319 | { | |
320 | .compatible = "st,stih407-picophyreset", | |
321 | .data = (ulong)&stih407_picophyreset_controller, | |
322 | }, | |
323 | { | |
324 | .compatible = "st,stih407-powerdown", | |
325 | .data = (ulong)&stih407_powerdown_controller, | |
326 | }, | |
327 | { | |
328 | .compatible = "st,stih407-softreset", | |
329 | .data = (ulong)&stih407_softreset_controller, | |
330 | }, | |
331 | { } | |
332 | }; | |
333 | ||
334 | U_BOOT_DRIVER(sti_reset) = { | |
335 | .name = "sti_reset", | |
336 | .id = UCLASS_RESET, | |
337 | .of_match = sti_reset_ids, | |
338 | .probe = sti_reset_probe, | |
339 | .priv_auto_alloc_size = sizeof(struct sti_reset), | |
340 | .ops = &sti_reset_ops, | |
341 | }; |