1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (c) 2015, 2017-2018, 2022, The Linux Foundation. All rights reserved.
6 #include <linux/bitops.h>
7 #include <linux/delay.h>
9 #include <linux/export.h>
10 #include <linux/jiffies.h>
11 #include <linux/kernel.h>
12 #include <linux/ktime.h>
13 #include <linux/pm_domain.h>
14 #include <linux/regmap.h>
15 #include <linux/regulator/consumer.h>
16 #include <linux/reset-controller.h>
17 #include <linux/slab.h>
20 #define PWR_ON_MASK BIT(31)
21 #define EN_REST_WAIT_MASK GENMASK_ULL(23, 20)
22 #define EN_FEW_WAIT_MASK GENMASK_ULL(19, 16)
23 #define CLK_DIS_WAIT_MASK GENMASK_ULL(15, 12)
24 #define SW_OVERRIDE_MASK BIT(2)
25 #define HW_CONTROL_MASK BIT(1)
26 #define SW_COLLAPSE_MASK BIT(0)
27 #define GMEM_CLAMP_IO_MASK BIT(0)
28 #define GMEM_RESET_MASK BIT(4)
31 #define GDSC_POWER_UP_COMPLETE BIT(16)
32 #define GDSC_POWER_DOWN_COMPLETE BIT(15)
33 #define GDSC_RETAIN_FF_ENABLE BIT(11)
34 #define CFG_GDSCR_OFFSET 0x4
36 /* Wait 2^n CXO cycles between all states. Here, n=2 (4 cycles). */
37 #define EN_REST_WAIT_VAL 0x2
38 #define EN_FEW_WAIT_VAL 0x8
39 #define CLK_DIS_WAIT_VAL 0x2
41 /* Transition delay shifts */
42 #define EN_REST_WAIT_SHIFT 20
43 #define EN_FEW_WAIT_SHIFT 16
44 #define CLK_DIS_WAIT_SHIFT 12
46 #define RETAIN_MEM BIT(14)
47 #define RETAIN_PERIPH BIT(13)
49 #define STATUS_POLL_TIMEOUT_US 1500
50 #define TIMEOUT_US 500
52 #define domain_to_gdsc(domain) container_of(domain, struct gdsc, pd)
59 /* Returns 1 if GDSC status is status, 0 if not, and < 0 on error */
60 static int gdsc_check_status(struct gdsc *sc, enum gdsc_status status)
66 if (sc->flags & POLL_CFG_GDSCR)
67 reg = sc->gdscr + CFG_GDSCR_OFFSET;
68 else if (sc->gds_hw_ctrl)
69 reg = sc->gds_hw_ctrl;
73 ret = regmap_read(sc->regmap, reg, &val);
77 if (sc->flags & POLL_CFG_GDSCR) {
80 return !!(val & GDSC_POWER_UP_COMPLETE);
82 return !!(val & GDSC_POWER_DOWN_COMPLETE);
88 return !!(val & PWR_ON_MASK);
90 return !(val & PWR_ON_MASK);
96 static int gdsc_hwctrl(struct gdsc *sc, bool en)
98 u32 val = en ? HW_CONTROL_MASK : 0;
100 return regmap_update_bits(sc->regmap, sc->gdscr, HW_CONTROL_MASK, val);
103 static int gdsc_poll_status(struct gdsc *sc, enum gdsc_status status)
109 if (gdsc_check_status(sc, status))
111 } while (ktime_us_delta(ktime_get(), start) < STATUS_POLL_TIMEOUT_US);
113 if (gdsc_check_status(sc, status))
119 static int gdsc_update_collapse_bit(struct gdsc *sc, bool val)
124 if (sc->collapse_mask) {
125 reg = sc->collapse_ctrl;
126 mask = sc->collapse_mask;
129 mask = SW_COLLAPSE_MASK;
132 ret = regmap_update_bits(sc->regmap, reg, mask, val ? mask : 0);
139 static int gdsc_toggle_logic(struct gdsc *sc, enum gdsc_status status)
143 if (status == GDSC_ON && sc->rsupply) {
144 ret = regulator_enable(sc->rsupply);
149 ret = gdsc_update_collapse_bit(sc, status == GDSC_OFF);
151 /* If disabling votable gdscs, don't poll on status */
152 if ((sc->flags & VOTABLE) && status == GDSC_OFF) {
154 * Add a short delay here to ensure that an enable
155 * right after it was disabled does not put it in an
162 if (sc->gds_hw_ctrl) {
164 * The gds hw controller asserts/de-asserts the status bit soon
165 * after it receives a power on/off request from a master.
166 * The controller then takes around 8 xo cycles to start its
167 * internal state machine and update the status bit. During
168 * this time, the status bit does not reflect the true status
170 * Add a delay of 1 us between writing to the SW_COLLAPSE bit
171 * and polling the status bit.
176 ret = gdsc_poll_status(sc, status);
177 WARN(ret, "%s status stuck at 'o%s'", sc->pd.name, status ? "ff" : "n");
179 if (!ret && status == GDSC_OFF && sc->rsupply) {
180 ret = regulator_disable(sc->rsupply);
188 static inline int gdsc_deassert_reset(struct gdsc *sc)
192 for (i = 0; i < sc->reset_count; i++)
193 sc->rcdev->ops->deassert(sc->rcdev, sc->resets[i]);
197 static inline int gdsc_assert_reset(struct gdsc *sc)
201 for (i = 0; i < sc->reset_count; i++)
202 sc->rcdev->ops->assert(sc->rcdev, sc->resets[i]);
206 static inline void gdsc_force_mem_on(struct gdsc *sc)
209 u32 mask = RETAIN_MEM;
211 if (!(sc->flags & NO_RET_PERIPH))
212 mask |= RETAIN_PERIPH;
214 for (i = 0; i < sc->cxc_count; i++)
215 regmap_update_bits(sc->regmap, sc->cxcs[i], mask, mask);
218 static inline void gdsc_clear_mem_on(struct gdsc *sc)
221 u32 mask = RETAIN_MEM;
223 if (!(sc->flags & NO_RET_PERIPH))
224 mask |= RETAIN_PERIPH;
226 for (i = 0; i < sc->cxc_count; i++)
227 regmap_update_bits(sc->regmap, sc->cxcs[i], mask, 0);
230 static inline void gdsc_deassert_clamp_io(struct gdsc *sc)
232 regmap_update_bits(sc->regmap, sc->clamp_io_ctrl,
233 GMEM_CLAMP_IO_MASK, 0);
236 static inline void gdsc_assert_clamp_io(struct gdsc *sc)
238 regmap_update_bits(sc->regmap, sc->clamp_io_ctrl,
239 GMEM_CLAMP_IO_MASK, 1);
242 static inline void gdsc_assert_reset_aon(struct gdsc *sc)
244 regmap_update_bits(sc->regmap, sc->clamp_io_ctrl,
247 regmap_update_bits(sc->regmap, sc->clamp_io_ctrl,
251 static void gdsc_retain_ff_on(struct gdsc *sc)
253 u32 mask = GDSC_RETAIN_FF_ENABLE;
255 regmap_update_bits(sc->regmap, sc->gdscr, mask, mask);
258 static int gdsc_enable(struct generic_pm_domain *domain)
260 struct gdsc *sc = domain_to_gdsc(domain);
263 if (sc->pwrsts == PWRSTS_ON)
264 return gdsc_deassert_reset(sc);
266 if (sc->flags & SW_RESET) {
267 gdsc_assert_reset(sc);
269 gdsc_deassert_reset(sc);
272 if (sc->flags & CLAMP_IO) {
273 if (sc->flags & AON_RESET)
274 gdsc_assert_reset_aon(sc);
275 gdsc_deassert_clamp_io(sc);
278 ret = gdsc_toggle_logic(sc, GDSC_ON);
282 if (sc->pwrsts & PWRSTS_OFF)
283 gdsc_force_mem_on(sc);
286 * If clocks to this power domain were already on, they will take an
287 * additional 4 clock cycles to re-enable after the power domain is
288 * enabled. Delay to account for this. A delay is also needed to ensure
289 * clocks are not enabled within 400ns of enabling power to the
294 /* Turn on HW trigger mode if supported */
295 if (sc->flags & HW_CTRL) {
296 ret = gdsc_hwctrl(sc, true);
300 * Wait for the GDSC to go through a power down and
301 * up cycle. In case a firmware ends up polling status
302 * bits for the gdsc, it might read an 'on' status before
303 * the GDSC can finish the power cycle.
304 * We wait 1us before returning to ensure the firmware
305 * can't immediately poll the status bits.
310 if (sc->flags & RETAIN_FF_ENABLE)
311 gdsc_retain_ff_on(sc);
316 static int gdsc_disable(struct generic_pm_domain *domain)
318 struct gdsc *sc = domain_to_gdsc(domain);
321 if (sc->pwrsts == PWRSTS_ON)
322 return gdsc_assert_reset(sc);
324 /* Turn off HW trigger mode if supported */
325 if (sc->flags & HW_CTRL) {
326 ret = gdsc_hwctrl(sc, false);
330 * Wait for the GDSC to go through a power down and
331 * up cycle. In case we end up polling status
332 * bits for the gdsc before the power cycle is completed
333 * it might read an 'on' status wrongly.
337 ret = gdsc_poll_status(sc, GDSC_ON);
342 if (sc->pwrsts & PWRSTS_OFF)
343 gdsc_clear_mem_on(sc);
346 * If the GDSC supports only a Retention state, apart from ON,
347 * leave it in ON state.
348 * There is no SW control to transition the GDSC into
349 * Retention state. This happens in HW when the parent
350 * domain goes down to a Low power state
352 if (sc->pwrsts == PWRSTS_RET_ON)
355 ret = gdsc_toggle_logic(sc, GDSC_OFF);
359 if (sc->flags & CLAMP_IO)
360 gdsc_assert_clamp_io(sc);
365 static int gdsc_init(struct gdsc *sc)
371 * Disable HW trigger: collapse/restore occur based on registers writes.
372 * Disable SW override: Use hardware state-machine for sequencing.
373 * Configure wait time between states.
375 mask = HW_CONTROL_MASK | SW_OVERRIDE_MASK |
376 EN_REST_WAIT_MASK | EN_FEW_WAIT_MASK | CLK_DIS_WAIT_MASK;
378 if (!sc->en_rest_wait_val)
379 sc->en_rest_wait_val = EN_REST_WAIT_VAL;
380 if (!sc->en_few_wait_val)
381 sc->en_few_wait_val = EN_FEW_WAIT_VAL;
382 if (!sc->clk_dis_wait_val)
383 sc->clk_dis_wait_val = CLK_DIS_WAIT_VAL;
385 val = sc->en_rest_wait_val << EN_REST_WAIT_SHIFT |
386 sc->en_few_wait_val << EN_FEW_WAIT_SHIFT |
387 sc->clk_dis_wait_val << CLK_DIS_WAIT_SHIFT;
389 ret = regmap_update_bits(sc->regmap, sc->gdscr, mask, val);
393 /* Force gdsc ON if only ON state is supported */
394 if (sc->pwrsts == PWRSTS_ON) {
395 ret = gdsc_toggle_logic(sc, GDSC_ON);
400 on = gdsc_check_status(sc, GDSC_ON);
405 /* The regulator must be on, sync the kernel state */
407 ret = regulator_enable(sc->rsupply);
413 * Votable GDSCs can be ON due to Vote from other masters.
414 * If a Votable GDSC is ON, make sure we have a Vote.
416 if (sc->flags & VOTABLE) {
417 ret = gdsc_update_collapse_bit(sc, false);
419 goto err_disable_supply;
422 /* Turn on HW trigger mode if supported */
423 if (sc->flags & HW_CTRL) {
424 ret = gdsc_hwctrl(sc, true);
426 goto err_disable_supply;
430 * Make sure the retain bit is set if the GDSC is already on,
431 * otherwise we end up turning off the GDSC and destroying all
432 * the register contents that we thought we were saving.
434 if (sc->flags & RETAIN_FF_ENABLE)
435 gdsc_retain_ff_on(sc);
436 } else if (sc->flags & ALWAYS_ON) {
437 /* If ALWAYS_ON GDSCs are not ON, turn them ON */
438 gdsc_enable(&sc->pd);
442 if (on || (sc->pwrsts & PWRSTS_RET))
443 gdsc_force_mem_on(sc);
445 gdsc_clear_mem_on(sc);
447 if (sc->flags & ALWAYS_ON)
448 sc->pd.flags |= GENPD_FLAG_ALWAYS_ON;
449 if (!sc->pd.power_off)
450 sc->pd.power_off = gdsc_disable;
451 if (!sc->pd.power_on)
452 sc->pd.power_on = gdsc_enable;
454 ret = pm_genpd_init(&sc->pd, NULL, !on);
456 goto err_disable_supply;
461 if (on && sc->rsupply)
462 regulator_disable(sc->rsupply);
467 int gdsc_register(struct gdsc_desc *desc,
468 struct reset_controller_dev *rcdev, struct regmap *regmap)
471 struct genpd_onecell_data *data;
472 struct device *dev = desc->dev;
473 struct gdsc **scs = desc->scs;
474 size_t num = desc->num;
476 data = devm_kzalloc(dev, sizeof(*data), GFP_KERNEL);
480 data->domains = devm_kcalloc(dev, num, sizeof(*data->domains),
485 for (i = 0; i < num; i++) {
486 if (!scs[i] || !scs[i]->supply)
489 scs[i]->rsupply = devm_regulator_get(dev, scs[i]->supply);
490 if (IS_ERR(scs[i]->rsupply))
491 return PTR_ERR(scs[i]->rsupply);
494 data->num_domains = num;
495 for (i = 0; i < num; i++) {
498 scs[i]->regmap = regmap;
499 scs[i]->rcdev = rcdev;
500 ret = gdsc_init(scs[i]);
503 data->domains[i] = &scs[i]->pd;
507 for (i = 0; i < num; i++) {
511 pm_genpd_add_subdomain(scs[i]->parent, &scs[i]->pd);
512 else if (!IS_ERR_OR_NULL(dev->pm_domain))
513 pm_genpd_add_subdomain(pd_to_genpd(dev->pm_domain), &scs[i]->pd);
516 return of_genpd_add_provider_onecell(dev->of_node, data);
519 void gdsc_unregister(struct gdsc_desc *desc)
522 struct device *dev = desc->dev;
523 struct gdsc **scs = desc->scs;
524 size_t num = desc->num;
526 /* Remove subdomains */
527 for (i = 0; i < num; i++) {
531 pm_genpd_remove_subdomain(scs[i]->parent, &scs[i]->pd);
532 else if (!IS_ERR_OR_NULL(dev->pm_domain))
533 pm_genpd_remove_subdomain(pd_to_genpd(dev->pm_domain), &scs[i]->pd);
535 of_genpd_del_provider(dev->of_node);
539 * On SDM845+ the GPU GX domain is *almost* entirely controlled by the GMU
540 * running in the CX domain so the CPU doesn't need to know anything about the
541 * GX domain EXCEPT....
543 * Hardware constraints dictate that the GX be powered down before the CX. If
544 * the GMU crashes it could leave the GX on. In order to successfully bring back
545 * the device the CPU needs to disable the GX headswitch. There being no sane
546 * way to reach in and touch that register from deep inside the GPU driver we
547 * need to set up the infrastructure to be able to ensure that the GPU can
548 * ensure that the GX is off during this super special case. We do this by
549 * defining a GX gdsc with a dummy enable function and a "default" disable
552 * This allows us to attach with genpd_dev_pm_attach_by_name() in the GPU
553 * driver. During power up, nothing will happen from the CPU (and the GMU will
554 * power up normally but during power down this will ensure that the GX domain
555 * is *really* off - this gives us a semi standard way of doing what we need.
557 int gdsc_gx_do_nothing_enable(struct generic_pm_domain *domain)
559 /* Do nothing but give genpd the impression that we were successful */
562 EXPORT_SYMBOL_GPL(gdsc_gx_do_nothing_enable);