Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Patrice Chotard | 584861f | 2017-03-22 10:54:03 +0100 | [diff] [blame] | 2 | /* |
Patrice Chotard | fb48bc4 | 2017-10-23 09:53:57 +0200 | [diff] [blame] | 3 | * Copyright (C) 2017, STMicroelectronics - All Rights Reserved |
Patrice Chotard | 0f8106f | 2020-12-02 18:47:30 +0100 | [diff] [blame] | 4 | * Author(s): Patrice Chotard, <patrice.chotard@foss.st.com> for STMicroelectronics. |
Patrice Chotard | 584861f | 2017-03-22 10:54:03 +0100 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #include <common.h> |
| 8 | #include <errno.h> |
Simon Glass | f7ae49f | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 9 | #include <log.h> |
Simon Glass | 336d461 | 2020-02-03 07:36:16 -0700 | [diff] [blame] | 10 | #include <malloc.h> |
Patrice Chotard | 584861f | 2017-03-22 10:54:03 +0100 | [diff] [blame] | 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> |
Simon Glass | cd93d62 | 2020-05-10 11:40:13 -0600 | [diff] [blame] | 17 | #include <linux/bitops.h> |
Patrice Chotard | 584861f | 2017-03-22 10:54:03 +0100 | [diff] [blame] | 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. |
Patrice Chotard | aef5b73 | 2017-05-18 09:58:00 +0200 | [diff] [blame] | 35 | * @deassert_cnt: incremented when reset is deasserted, reset can only be |
| 36 | * asserted when equal to 0 |
Patrice Chotard | 584861f | 2017-03-22 10:54:03 +0100 | [diff] [blame] | 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; |
Patrice Chotard | aef5b73 | 2017-05-18 09:58:00 +0200 | [diff] [blame] | 45 | int deassert_cnt; |
Patrice Chotard | 584861f | 2017-03-22 10:54:03 +0100 | [diff] [blame] | 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; |
Patrice Chotard | aef5b73 | 2017-05-18 09:58:00 +0200 | [diff] [blame] | 62 | struct syscfg_reset_channel_data *channels; |
Patrice Chotard | 584861f | 2017-03-22 10:54:03 +0100 | [diff] [blame] | 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 | |
Patrice Chotard | aef5b73 | 2017-05-18 09:58:00 +0200 | [diff] [blame] | 110 | static struct syscfg_reset_channel_data stih407_powerdowns[] = { |
Patrice Chotard | 584861f | 2017-03-22 10:54:03 +0100 | [diff] [blame] | 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 | |
Patrice Chotard | aef5b73 | 2017-05-18 09:58:00 +0200 | [diff] [blame] | 130 | static struct syscfg_reset_channel_data stih407_softresets[] = { |
Patrice Chotard | 584861f | 2017-03-22 10:54:03 +0100 | [diff] [blame] | 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 | |
Patrice Chotard | aef5b73 | 2017-05-18 09:58:00 +0200 | [diff] [blame] | 169 | static struct syscfg_reset_channel_data stih407_picophyresets[] = { |
Patrice Chotard | 584861f | 2017-03-22 10:54:03 +0100 | [diff] [blame] | 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) { |
Masahiro Yamada | 9b643e3 | 2017-09-16 14:10:41 +0900 | [diff] [blame] | 206 | pr_err("unable to find %s node\n", compatible); |
Patrice Chotard | 584861f | 2017-03-22 10:54:03 +0100 | [diff] [blame] | 207 | return node; |
| 208 | } |
| 209 | |
| 210 | ret = uclass_get_device_by_of_offset(UCLASS_SYSCON, node, &syscon); |
| 211 | if (ret) { |
Masahiro Yamada | 9b643e3 | 2017-09-16 14:10:41 +0900 | [diff] [blame] | 212 | pr_err("%s: uclass_get_device_by_of_offset failed: %d\n", |
Patrice Chotard | 584861f | 2017-03-22 10:54:03 +0100 | [diff] [blame] | 213 | __func__, ret); |
| 214 | return ret; |
| 215 | } |
| 216 | |
| 217 | regmap = syscon_get_regmap(syscon); |
| 218 | if (!regmap) { |
Masahiro Yamada | 9b643e3 | 2017-09-16 14:10:41 +0900 | [diff] [blame] | 219 | pr_err("unable to get regmap for %s\n", syscon->name); |
Patrice Chotard | 584861f | 2017-03-22 10:54:03 +0100 | [diff] [blame] | 220 | return -ENODEV; |
| 221 | } |
| 222 | |
Masahiro Yamada | 8c1de5e | 2018-04-19 12:14:01 +0900 | [diff] [blame] | 223 | return regmap->ranges[0].start; |
Patrice Chotard | 584861f | 2017-03-22 10:54:03 +0100 | [diff] [blame] | 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); |
Patrice Chotard | aef5b73 | 2017-05-18 09:58:00 +0200 | [diff] [blame] | 231 | struct syscfg_reset_channel_data *ch; |
Patrice Chotard | 584861f | 2017-03-22 10:54:03 +0100 | [diff] [blame] | 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 | |
Patrice Chotard | aef5b73 | 2017-05-18 09:58:00 +0200 | [diff] [blame] | 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 |
Masahiro Yamada | 9b643e3 | 2017-09-16 14:10:41 +0900 | [diff] [blame] | 256 | pr_err("Reset balancing error: reset_ctl=%p dev=%p id=%lu\n", |
Patrice Chotard | aef5b73 | 2017-05-18 09:58:00 +0200 | [diff] [blame] | 257 | reset_ctl, reset_ctl->dev, reset_ctl->id); |
| 258 | } |
| 259 | |
| 260 | reg = (void __iomem *)base + ch->reset_offset; |
Patrice Chotard | 584861f | 2017-03-22 10:54:03 +0100 | [diff] [blame] | 261 | |
| 262 | if (ctrl_val) |
Patrice Chotard | aef5b73 | 2017-05-18 09:58:00 +0200 | [diff] [blame] | 263 | generic_set_bit(ch->reset_bit, reg); |
Patrice Chotard | 584861f | 2017-03-22 10:54:03 +0100 | [diff] [blame] | 264 | else |
Patrice Chotard | aef5b73 | 2017-05-18 09:58:00 +0200 | [diff] [blame] | 265 | generic_clear_bit(ch->reset_bit, reg); |
Patrice Chotard | 584861f | 2017-03-22 10:54:03 +0100 | [diff] [blame] | 266 | |
| 267 | if (!reset_desc->wait_for_ack) |
| 268 | return 0; |
| 269 | |
Patrice Chotard | aef5b73 | 2017-05-18 09:58:00 +0200 | [diff] [blame] | 270 | reg = (void __iomem *)base + ch->ack_offset; |
Álvaro Fernández Rojas | 4826350 | 2018-01-23 17:14:55 +0100 | [diff] [blame] | 271 | if (wait_for_bit_le32(reg, BIT(ch->ack_bit), ctrl_val, |
| 272 | 1000, false)) { |
Masahiro Yamada | 9b643e3 | 2017-09-16 14:10:41 +0900 | [diff] [blame] | 273 | pr_err("Stuck on waiting ack reset_ctl=%p dev=%p id=%lu\n", |
Patrice Chotard | 584861f | 2017-03-22 10:54:03 +0100 | [diff] [blame] | 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, |
Simon Glass | 94474b2 | 2020-02-03 07:35:52 -0700 | [diff] [blame] | 304 | .rfree = sti_reset_free, |
Patrice Chotard | 584861f | 2017-03-22 10:54:03 +0100 | [diff] [blame] | 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, |
Simon Glass | 41575d8 | 2020-12-03 16:55:17 -0700 | [diff] [blame] | 339 | .priv_auto = sizeof(struct sti_reset), |
Patrice Chotard | 584861f | 2017-03-22 10:54:03 +0100 | [diff] [blame] | 340 | .ops = &sti_reset_ops, |
| 341 | }; |