Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ OR BSD-3-Clause |
| 2 | /* |
| 3 | * Copyright (C) 2018, STMicroelectronics - All Rights Reserved |
| 4 | * Author: Christophe Kerello <christophe.kerello@st.com> |
| 5 | */ |
| 6 | |
| 7 | #include <common.h> |
| 8 | #include <dm.h> |
| 9 | #include <errno.h> |
| 10 | #include <power/pmic.h> |
| 11 | #include <power/regulator.h> |
Patrick Delaunay | d46c22b | 2019-02-04 11:26:16 +0100 | [diff] [blame] | 12 | #include <power/stpmic1.h> |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 13 | |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 14 | struct stpmic1_range { |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 15 | int min_uv; |
| 16 | int min_sel; |
| 17 | int max_sel; |
| 18 | int step; |
| 19 | }; |
| 20 | |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 21 | struct stpmic1_output { |
| 22 | const struct stpmic1_range *ranges; |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 23 | int nbranges; |
| 24 | }; |
| 25 | |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 26 | #define STPMIC1_MODE(_id, _val, _name) { \ |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 27 | .id = _id, \ |
| 28 | .register_value = _val, \ |
| 29 | .name = _name, \ |
| 30 | } |
| 31 | |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 32 | #define STPMIC1_RANGE(_min_uv, _min_sel, _max_sel, _step) { \ |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 33 | .min_uv = _min_uv, \ |
| 34 | .min_sel = _min_sel, \ |
| 35 | .max_sel = _max_sel, \ |
| 36 | .step = _step, \ |
| 37 | } |
| 38 | |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 39 | #define STPMIC1_OUTPUT(_ranges, _nbranges) { \ |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 40 | .ranges = _ranges, \ |
| 41 | .nbranges = _nbranges, \ |
| 42 | } |
| 43 | |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 44 | static int stpmic1_output_find_uv(int sel, |
| 45 | const struct stpmic1_output *output) |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 46 | { |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 47 | const struct stpmic1_range *range; |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 48 | int i; |
| 49 | |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 50 | for (i = 0, range = output->ranges; |
| 51 | i < output->nbranges; i++, range++) { |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 52 | if (sel >= range->min_sel && sel <= range->max_sel) |
| 53 | return range->min_uv + |
| 54 | (sel - range->min_sel) * range->step; |
| 55 | } |
| 56 | |
| 57 | return -EINVAL; |
| 58 | } |
| 59 | |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 60 | static int stpmic1_output_find_sel(int uv, |
| 61 | const struct stpmic1_output *output) |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 62 | { |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 63 | const struct stpmic1_range *range; |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 64 | int i; |
| 65 | |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 66 | for (i = 0, range = output->ranges; |
| 67 | i < output->nbranges; i++, range++) { |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 68 | if (uv == range->min_uv && !range->step) |
| 69 | return range->min_sel; |
| 70 | |
| 71 | if (uv >= range->min_uv && |
| 72 | uv <= range->min_uv + |
| 73 | (range->max_sel - range->min_sel) * range->step) |
| 74 | return range->min_sel + |
| 75 | (uv - range->min_uv) / range->step; |
| 76 | } |
| 77 | |
| 78 | return -EINVAL; |
| 79 | } |
| 80 | |
| 81 | /* |
| 82 | * BUCK regulators |
| 83 | */ |
| 84 | |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 85 | static const struct stpmic1_range buck1_ranges[] = { |
| 86 | STPMIC1_RANGE(725000, 0, 4, 0), |
| 87 | STPMIC1_RANGE(725000, 5, 36, 25000), |
| 88 | STPMIC1_RANGE(1500000, 37, 63, 0), |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 89 | }; |
| 90 | |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 91 | static const struct stpmic1_range buck2_ranges[] = { |
| 92 | STPMIC1_RANGE(1000000, 0, 17, 0), |
| 93 | STPMIC1_RANGE(1050000, 18, 19, 0), |
| 94 | STPMIC1_RANGE(1100000, 20, 21, 0), |
| 95 | STPMIC1_RANGE(1150000, 22, 23, 0), |
| 96 | STPMIC1_RANGE(1200000, 24, 25, 0), |
| 97 | STPMIC1_RANGE(1250000, 26, 27, 0), |
| 98 | STPMIC1_RANGE(1300000, 28, 29, 0), |
| 99 | STPMIC1_RANGE(1350000, 30, 31, 0), |
| 100 | STPMIC1_RANGE(1400000, 32, 33, 0), |
| 101 | STPMIC1_RANGE(1450000, 34, 35, 0), |
| 102 | STPMIC1_RANGE(1500000, 36, 63, 0), |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 103 | }; |
| 104 | |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 105 | static const struct stpmic1_range buck3_ranges[] = { |
| 106 | STPMIC1_RANGE(1000000, 0, 19, 0), |
| 107 | STPMIC1_RANGE(1100000, 20, 23, 0), |
| 108 | STPMIC1_RANGE(1200000, 24, 27, 0), |
| 109 | STPMIC1_RANGE(1300000, 28, 31, 0), |
| 110 | STPMIC1_RANGE(1400000, 32, 35, 0), |
| 111 | STPMIC1_RANGE(1500000, 36, 55, 100000), |
| 112 | STPMIC1_RANGE(3400000, 56, 63, 0), |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 113 | }; |
| 114 | |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 115 | static const struct stpmic1_range buck4_ranges[] = { |
| 116 | STPMIC1_RANGE(600000, 0, 27, 25000), |
| 117 | STPMIC1_RANGE(1300000, 28, 29, 0), |
| 118 | STPMIC1_RANGE(1350000, 30, 31, 0), |
| 119 | STPMIC1_RANGE(1400000, 32, 33, 0), |
| 120 | STPMIC1_RANGE(1450000, 34, 35, 0), |
| 121 | STPMIC1_RANGE(1500000, 36, 60, 100000), |
| 122 | STPMIC1_RANGE(3900000, 61, 63, 0), |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 123 | }; |
| 124 | |
| 125 | /* BUCK: 1,2,3,4 - voltage ranges */ |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 126 | static const struct stpmic1_output buck_voltage_range[] = { |
| 127 | STPMIC1_OUTPUT(buck1_ranges, ARRAY_SIZE(buck1_ranges)), |
| 128 | STPMIC1_OUTPUT(buck2_ranges, ARRAY_SIZE(buck2_ranges)), |
| 129 | STPMIC1_OUTPUT(buck3_ranges, ARRAY_SIZE(buck3_ranges)), |
| 130 | STPMIC1_OUTPUT(buck4_ranges, ARRAY_SIZE(buck4_ranges)), |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 131 | }; |
| 132 | |
| 133 | /* BUCK modes */ |
| 134 | static const struct dm_regulator_mode buck_modes[] = { |
Patrick Delaunay | db4ff0d | 2019-02-04 11:26:18 +0100 | [diff] [blame] | 135 | STPMIC1_MODE(STPMIC1_PREG_MODE_HP, STPMIC1_PREG_MODE_HP, "HP"), |
| 136 | STPMIC1_MODE(STPMIC1_PREG_MODE_LP, STPMIC1_PREG_MODE_LP, "LP"), |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 137 | }; |
| 138 | |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 139 | static int stpmic1_buck_get_uv(struct udevice *dev, int buck) |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 140 | { |
| 141 | int sel; |
| 142 | |
Patrick Delaunay | db4ff0d | 2019-02-04 11:26:18 +0100 | [diff] [blame] | 143 | sel = pmic_reg_read(dev, STPMIC1_BUCKX_MAIN_CR(buck)); |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 144 | if (sel < 0) |
| 145 | return sel; |
| 146 | |
Patrick Delaunay | db4ff0d | 2019-02-04 11:26:18 +0100 | [diff] [blame] | 147 | sel &= STPMIC1_BUCK_VOUT_MASK; |
| 148 | sel >>= STPMIC1_BUCK_VOUT_SHIFT; |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 149 | |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 150 | return stpmic1_output_find_uv(sel, &buck_voltage_range[buck]); |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 151 | } |
| 152 | |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 153 | static int stpmic1_buck_get_value(struct udevice *dev) |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 154 | { |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 155 | return stpmic1_buck_get_uv(dev->parent, dev->driver_data - 1); |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 156 | } |
| 157 | |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 158 | static int stpmic1_buck_set_value(struct udevice *dev, int uv) |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 159 | { |
| 160 | int sel, buck = dev->driver_data - 1; |
| 161 | |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 162 | sel = stpmic1_output_find_sel(uv, &buck_voltage_range[buck]); |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 163 | if (sel < 0) |
| 164 | return sel; |
| 165 | |
| 166 | return pmic_clrsetbits(dev->parent, |
Patrick Delaunay | db4ff0d | 2019-02-04 11:26:18 +0100 | [diff] [blame] | 167 | STPMIC1_BUCKX_MAIN_CR(buck), |
| 168 | STPMIC1_BUCK_VOUT_MASK, |
| 169 | sel << STPMIC1_BUCK_VOUT_SHIFT); |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 170 | } |
| 171 | |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 172 | static int stpmic1_buck_get_enable(struct udevice *dev) |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 173 | { |
| 174 | int ret; |
| 175 | |
| 176 | ret = pmic_reg_read(dev->parent, |
Patrick Delaunay | db4ff0d | 2019-02-04 11:26:18 +0100 | [diff] [blame] | 177 | STPMIC1_BUCKX_MAIN_CR(dev->driver_data - 1)); |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 178 | if (ret < 0) |
| 179 | return false; |
| 180 | |
Patrick Delaunay | db4ff0d | 2019-02-04 11:26:18 +0100 | [diff] [blame] | 181 | return ret & STPMIC1_BUCK_ENA ? true : false; |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 182 | } |
| 183 | |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 184 | static int stpmic1_buck_set_enable(struct udevice *dev, bool enable) |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 185 | { |
| 186 | struct dm_regulator_uclass_platdata *uc_pdata; |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 187 | int delay = enable ? STPMIC1_DEFAULT_START_UP_DELAY_MS : |
| 188 | STPMIC1_DEFAULT_STOP_DELAY_MS; |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 189 | int ret, uv; |
| 190 | |
| 191 | /* if regulator is already in the wanted state, nothing to do */ |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 192 | if (stpmic1_buck_get_enable(dev) == enable) |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 193 | return 0; |
| 194 | |
| 195 | if (enable) { |
| 196 | uc_pdata = dev_get_uclass_platdata(dev); |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 197 | uv = stpmic1_buck_get_value(dev); |
| 198 | if (uv < uc_pdata->min_uV || uv > uc_pdata->max_uV) |
| 199 | stpmic1_buck_set_value(dev, uc_pdata->min_uV); |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 200 | } |
| 201 | |
| 202 | ret = pmic_clrsetbits(dev->parent, |
Patrick Delaunay | db4ff0d | 2019-02-04 11:26:18 +0100 | [diff] [blame] | 203 | STPMIC1_BUCKX_MAIN_CR(dev->driver_data - 1), |
| 204 | STPMIC1_BUCK_ENA, enable ? STPMIC1_BUCK_ENA : 0); |
Christophe Kerello | 844f9bf | 2018-06-27 11:59:47 +0200 | [diff] [blame] | 205 | mdelay(delay); |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 206 | |
| 207 | return ret; |
| 208 | } |
| 209 | |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 210 | static int stpmic1_buck_get_mode(struct udevice *dev) |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 211 | { |
| 212 | int ret; |
| 213 | |
| 214 | ret = pmic_reg_read(dev->parent, |
Patrick Delaunay | db4ff0d | 2019-02-04 11:26:18 +0100 | [diff] [blame] | 215 | STPMIC1_BUCKX_MAIN_CR(dev->driver_data - 1)); |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 216 | if (ret < 0) |
| 217 | return ret; |
| 218 | |
Patrick Delaunay | db4ff0d | 2019-02-04 11:26:18 +0100 | [diff] [blame] | 219 | return ret & STPMIC1_BUCK_PREG_MODE ? STPMIC1_PREG_MODE_LP : |
| 220 | STPMIC1_PREG_MODE_HP; |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 221 | } |
| 222 | |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 223 | static int stpmic1_buck_set_mode(struct udevice *dev, int mode) |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 224 | { |
| 225 | return pmic_clrsetbits(dev->parent, |
Patrick Delaunay | db4ff0d | 2019-02-04 11:26:18 +0100 | [diff] [blame] | 226 | STPMIC1_BUCKX_MAIN_CR(dev->driver_data - 1), |
| 227 | STPMIC1_BUCK_PREG_MODE, |
| 228 | mode ? STPMIC1_BUCK_PREG_MODE : 0); |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 229 | } |
| 230 | |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 231 | static int stpmic1_buck_probe(struct udevice *dev) |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 232 | { |
| 233 | struct dm_regulator_uclass_platdata *uc_pdata; |
| 234 | |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 235 | if (!dev->driver_data || dev->driver_data > STPMIC1_MAX_BUCK) |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 236 | return -EINVAL; |
| 237 | |
| 238 | uc_pdata = dev_get_uclass_platdata(dev); |
| 239 | |
| 240 | uc_pdata->type = REGULATOR_TYPE_BUCK; |
| 241 | uc_pdata->mode = (struct dm_regulator_mode *)buck_modes; |
| 242 | uc_pdata->mode_count = ARRAY_SIZE(buck_modes); |
| 243 | |
| 244 | return 0; |
| 245 | } |
| 246 | |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 247 | static const struct dm_regulator_ops stpmic1_buck_ops = { |
| 248 | .get_value = stpmic1_buck_get_value, |
| 249 | .set_value = stpmic1_buck_set_value, |
| 250 | .get_enable = stpmic1_buck_get_enable, |
| 251 | .set_enable = stpmic1_buck_set_enable, |
| 252 | .get_mode = stpmic1_buck_get_mode, |
| 253 | .set_mode = stpmic1_buck_set_mode, |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 254 | }; |
| 255 | |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 256 | U_BOOT_DRIVER(stpmic1_buck) = { |
| 257 | .name = "stpmic1_buck", |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 258 | .id = UCLASS_REGULATOR, |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 259 | .ops = &stpmic1_buck_ops, |
| 260 | .probe = stpmic1_buck_probe, |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 261 | }; |
| 262 | |
| 263 | /* |
| 264 | * LDO regulators |
| 265 | */ |
| 266 | |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 267 | static const struct stpmic1_range ldo12_ranges[] = { |
| 268 | STPMIC1_RANGE(1700000, 0, 7, 0), |
| 269 | STPMIC1_RANGE(1700000, 8, 24, 100000), |
| 270 | STPMIC1_RANGE(3300000, 25, 31, 0), |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 271 | }; |
| 272 | |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 273 | static const struct stpmic1_range ldo3_ranges[] = { |
| 274 | STPMIC1_RANGE(1700000, 0, 7, 0), |
| 275 | STPMIC1_RANGE(1700000, 8, 24, 100000), |
| 276 | STPMIC1_RANGE(3300000, 25, 30, 0), |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 277 | /* Sel 31 is special case when LDO3 is in mode sync_source (BUCK2/2) */ |
| 278 | }; |
| 279 | |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 280 | static const struct stpmic1_range ldo5_ranges[] = { |
| 281 | STPMIC1_RANGE(1700000, 0, 7, 0), |
| 282 | STPMIC1_RANGE(1700000, 8, 30, 100000), |
| 283 | STPMIC1_RANGE(3900000, 31, 31, 0), |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 284 | }; |
| 285 | |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 286 | static const struct stpmic1_range ldo6_ranges[] = { |
| 287 | STPMIC1_RANGE(900000, 0, 24, 100000), |
| 288 | STPMIC1_RANGE(3300000, 25, 31, 0), |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 289 | }; |
| 290 | |
| 291 | /* LDO: 1,2,3,4,5,6 - voltage ranges */ |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 292 | static const struct stpmic1_output ldo_voltage_range[] = { |
| 293 | STPMIC1_OUTPUT(ldo12_ranges, ARRAY_SIZE(ldo12_ranges)), |
| 294 | STPMIC1_OUTPUT(ldo12_ranges, ARRAY_SIZE(ldo12_ranges)), |
| 295 | STPMIC1_OUTPUT(ldo3_ranges, ARRAY_SIZE(ldo3_ranges)), |
| 296 | STPMIC1_OUTPUT(NULL, 0), |
| 297 | STPMIC1_OUTPUT(ldo5_ranges, ARRAY_SIZE(ldo5_ranges)), |
| 298 | STPMIC1_OUTPUT(ldo6_ranges, ARRAY_SIZE(ldo6_ranges)), |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 299 | }; |
| 300 | |
| 301 | /* LDO modes */ |
| 302 | static const struct dm_regulator_mode ldo_modes[] = { |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 303 | STPMIC1_MODE(STPMIC1_LDO_MODE_NORMAL, |
| 304 | STPMIC1_LDO_MODE_NORMAL, "NORMAL"), |
| 305 | STPMIC1_MODE(STPMIC1_LDO_MODE_BYPASS, |
| 306 | STPMIC1_LDO_MODE_BYPASS, "BYPASS"), |
| 307 | STPMIC1_MODE(STPMIC1_LDO_MODE_SINK_SOURCE, |
| 308 | STPMIC1_LDO_MODE_SINK_SOURCE, "SINK SOURCE"), |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 309 | }; |
| 310 | |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 311 | static int stpmic1_ldo_get_value(struct udevice *dev) |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 312 | { |
| 313 | int sel, ldo = dev->driver_data - 1; |
| 314 | |
Patrick Delaunay | db4ff0d | 2019-02-04 11:26:18 +0100 | [diff] [blame] | 315 | sel = pmic_reg_read(dev->parent, STPMIC1_LDOX_MAIN_CR(ldo)); |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 316 | if (sel < 0) |
| 317 | return sel; |
| 318 | |
| 319 | /* ldo4 => 3,3V */ |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 320 | if (ldo == STPMIC1_LDO4) |
| 321 | return STPMIC1_LDO4_UV; |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 322 | |
Patrick Delaunay | db4ff0d | 2019-02-04 11:26:18 +0100 | [diff] [blame] | 323 | sel &= STPMIC1_LDO12356_VOUT_MASK; |
| 324 | sel >>= STPMIC1_LDO12356_VOUT_SHIFT; |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 325 | |
| 326 | /* ldo3, sel = 31 => BUCK2/2 */ |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 327 | if (ldo == STPMIC1_LDO3 && sel == STPMIC1_LDO3_DDR_SEL) |
| 328 | return stpmic1_buck_get_uv(dev->parent, STPMIC1_BUCK2) / 2; |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 329 | |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 330 | return stpmic1_output_find_uv(sel, &ldo_voltage_range[ldo]); |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 331 | } |
| 332 | |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 333 | static int stpmic1_ldo_set_value(struct udevice *dev, int uv) |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 334 | { |
| 335 | int sel, ldo = dev->driver_data - 1; |
| 336 | |
| 337 | /* ldo4 => not possible */ |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 338 | if (ldo == STPMIC1_LDO4) |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 339 | return -EINVAL; |
| 340 | |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 341 | sel = stpmic1_output_find_sel(uv, &ldo_voltage_range[ldo]); |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 342 | if (sel < 0) |
| 343 | return sel; |
| 344 | |
| 345 | return pmic_clrsetbits(dev->parent, |
Patrick Delaunay | db4ff0d | 2019-02-04 11:26:18 +0100 | [diff] [blame] | 346 | STPMIC1_LDOX_MAIN_CR(ldo), |
| 347 | STPMIC1_LDO12356_VOUT_MASK, |
| 348 | sel << STPMIC1_LDO12356_VOUT_SHIFT); |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 349 | } |
| 350 | |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 351 | static int stpmic1_ldo_get_enable(struct udevice *dev) |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 352 | { |
| 353 | int ret; |
| 354 | |
| 355 | ret = pmic_reg_read(dev->parent, |
Patrick Delaunay | db4ff0d | 2019-02-04 11:26:18 +0100 | [diff] [blame] | 356 | STPMIC1_LDOX_MAIN_CR(dev->driver_data - 1)); |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 357 | if (ret < 0) |
| 358 | return false; |
| 359 | |
Patrick Delaunay | db4ff0d | 2019-02-04 11:26:18 +0100 | [diff] [blame] | 360 | return ret & STPMIC1_LDO_ENA ? true : false; |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 361 | } |
| 362 | |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 363 | static int stpmic1_ldo_set_enable(struct udevice *dev, bool enable) |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 364 | { |
| 365 | struct dm_regulator_uclass_platdata *uc_pdata; |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 366 | int delay = enable ? STPMIC1_DEFAULT_START_UP_DELAY_MS : |
| 367 | STPMIC1_DEFAULT_STOP_DELAY_MS; |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 368 | int ret, uv; |
| 369 | |
| 370 | /* if regulator is already in the wanted state, nothing to do */ |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 371 | if (stpmic1_ldo_get_enable(dev) == enable) |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 372 | return 0; |
| 373 | |
| 374 | if (enable) { |
| 375 | uc_pdata = dev_get_uclass_platdata(dev); |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 376 | uv = stpmic1_ldo_get_value(dev); |
| 377 | if (uv < uc_pdata->min_uV || uv > uc_pdata->max_uV) |
| 378 | stpmic1_ldo_set_value(dev, uc_pdata->min_uV); |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 379 | } |
| 380 | |
| 381 | ret = pmic_clrsetbits(dev->parent, |
Patrick Delaunay | db4ff0d | 2019-02-04 11:26:18 +0100 | [diff] [blame] | 382 | STPMIC1_LDOX_MAIN_CR(dev->driver_data - 1), |
| 383 | STPMIC1_LDO_ENA, enable ? STPMIC1_LDO_ENA : 0); |
Christophe Kerello | 844f9bf | 2018-06-27 11:59:47 +0200 | [diff] [blame] | 384 | mdelay(delay); |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 385 | |
| 386 | return ret; |
| 387 | } |
| 388 | |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 389 | static int stpmic1_ldo_get_mode(struct udevice *dev) |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 390 | { |
| 391 | int ret, ldo = dev->driver_data - 1; |
| 392 | |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 393 | if (ldo != STPMIC1_LDO3) |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 394 | return -EINVAL; |
| 395 | |
Patrick Delaunay | db4ff0d | 2019-02-04 11:26:18 +0100 | [diff] [blame] | 396 | ret = pmic_reg_read(dev->parent, STPMIC1_LDOX_MAIN_CR(ldo)); |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 397 | if (ret < 0) |
| 398 | return ret; |
| 399 | |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 400 | if (ret & STPMIC1_LDO3_MODE) |
| 401 | return STPMIC1_LDO_MODE_BYPASS; |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 402 | |
Patrick Delaunay | db4ff0d | 2019-02-04 11:26:18 +0100 | [diff] [blame] | 403 | ret &= STPMIC1_LDO12356_VOUT_MASK; |
| 404 | ret >>= STPMIC1_LDO12356_VOUT_SHIFT; |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 405 | |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 406 | return ret == STPMIC1_LDO3_DDR_SEL ? STPMIC1_LDO_MODE_SINK_SOURCE : |
| 407 | STPMIC1_LDO_MODE_NORMAL; |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 408 | } |
| 409 | |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 410 | static int stpmic1_ldo_set_mode(struct udevice *dev, int mode) |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 411 | { |
| 412 | int ret, ldo = dev->driver_data - 1; |
| 413 | |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 414 | if (ldo != STPMIC1_LDO3) |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 415 | return -EINVAL; |
| 416 | |
Patrick Delaunay | db4ff0d | 2019-02-04 11:26:18 +0100 | [diff] [blame] | 417 | ret = pmic_reg_read(dev->parent, STPMIC1_LDOX_MAIN_CR(ldo)); |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 418 | if (ret < 0) |
| 419 | return ret; |
| 420 | |
| 421 | switch (mode) { |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 422 | case STPMIC1_LDO_MODE_SINK_SOURCE: |
Patrick Delaunay | db4ff0d | 2019-02-04 11:26:18 +0100 | [diff] [blame] | 423 | ret &= ~STPMIC1_LDO12356_VOUT_MASK; |
| 424 | ret |= STPMIC1_LDO3_DDR_SEL << STPMIC1_LDO12356_VOUT_SHIFT; |
Patrick Delaunay | 92be683 | 2019-06-21 15:26:53 +0200 | [diff] [blame] | 425 | /* fallthrough */ |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 426 | case STPMIC1_LDO_MODE_NORMAL: |
| 427 | ret &= ~STPMIC1_LDO3_MODE; |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 428 | break; |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 429 | case STPMIC1_LDO_MODE_BYPASS: |
| 430 | ret |= STPMIC1_LDO3_MODE; |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 431 | break; |
| 432 | } |
| 433 | |
Patrick Delaunay | db4ff0d | 2019-02-04 11:26:18 +0100 | [diff] [blame] | 434 | return pmic_reg_write(dev->parent, STPMIC1_LDOX_MAIN_CR(ldo), ret); |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 435 | } |
| 436 | |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 437 | static int stpmic1_ldo_probe(struct udevice *dev) |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 438 | { |
| 439 | struct dm_regulator_uclass_platdata *uc_pdata; |
| 440 | |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 441 | if (!dev->driver_data || dev->driver_data > STPMIC1_MAX_LDO) |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 442 | return -EINVAL; |
| 443 | |
| 444 | uc_pdata = dev_get_uclass_platdata(dev); |
| 445 | |
| 446 | uc_pdata->type = REGULATOR_TYPE_LDO; |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 447 | if (dev->driver_data - 1 == STPMIC1_LDO3) { |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 448 | uc_pdata->mode = (struct dm_regulator_mode *)ldo_modes; |
| 449 | uc_pdata->mode_count = ARRAY_SIZE(ldo_modes); |
| 450 | } else { |
| 451 | uc_pdata->mode_count = 0; |
| 452 | } |
| 453 | |
| 454 | return 0; |
| 455 | } |
| 456 | |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 457 | static const struct dm_regulator_ops stpmic1_ldo_ops = { |
| 458 | .get_value = stpmic1_ldo_get_value, |
| 459 | .set_value = stpmic1_ldo_set_value, |
| 460 | .get_enable = stpmic1_ldo_get_enable, |
| 461 | .set_enable = stpmic1_ldo_set_enable, |
| 462 | .get_mode = stpmic1_ldo_get_mode, |
| 463 | .set_mode = stpmic1_ldo_set_mode, |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 464 | }; |
| 465 | |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 466 | U_BOOT_DRIVER(stpmic1_ldo) = { |
| 467 | .name = "stpmic1_ldo", |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 468 | .id = UCLASS_REGULATOR, |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 469 | .ops = &stpmic1_ldo_ops, |
| 470 | .probe = stpmic1_ldo_probe, |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 471 | }; |
| 472 | |
| 473 | /* |
| 474 | * VREF DDR regulator |
| 475 | */ |
| 476 | |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 477 | static int stpmic1_vref_ddr_get_value(struct udevice *dev) |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 478 | { |
| 479 | /* BUCK2/2 */ |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 480 | return stpmic1_buck_get_uv(dev->parent, STPMIC1_BUCK2) / 2; |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 481 | } |
| 482 | |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 483 | static int stpmic1_vref_ddr_get_enable(struct udevice *dev) |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 484 | { |
| 485 | int ret; |
| 486 | |
Patrick Delaunay | db4ff0d | 2019-02-04 11:26:18 +0100 | [diff] [blame] | 487 | ret = pmic_reg_read(dev->parent, STPMIC1_REFDDR_MAIN_CR); |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 488 | if (ret < 0) |
| 489 | return false; |
| 490 | |
Patrick Delaunay | db4ff0d | 2019-02-04 11:26:18 +0100 | [diff] [blame] | 491 | return ret & STPMIC1_VREF_ENA ? true : false; |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 492 | } |
| 493 | |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 494 | static int stpmic1_vref_ddr_set_enable(struct udevice *dev, bool enable) |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 495 | { |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 496 | int delay = enable ? STPMIC1_DEFAULT_START_UP_DELAY_MS : |
| 497 | STPMIC1_DEFAULT_STOP_DELAY_MS; |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 498 | int ret; |
| 499 | |
| 500 | /* if regulator is already in the wanted state, nothing to do */ |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 501 | if (stpmic1_vref_ddr_get_enable(dev) == enable) |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 502 | return 0; |
| 503 | |
Patrick Delaunay | db4ff0d | 2019-02-04 11:26:18 +0100 | [diff] [blame] | 504 | ret = pmic_clrsetbits(dev->parent, STPMIC1_REFDDR_MAIN_CR, |
| 505 | STPMIC1_VREF_ENA, enable ? STPMIC1_VREF_ENA : 0); |
Christophe Kerello | 844f9bf | 2018-06-27 11:59:47 +0200 | [diff] [blame] | 506 | mdelay(delay); |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 507 | |
| 508 | return ret; |
| 509 | } |
| 510 | |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 511 | static int stpmic1_vref_ddr_probe(struct udevice *dev) |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 512 | { |
| 513 | struct dm_regulator_uclass_platdata *uc_pdata; |
| 514 | |
| 515 | uc_pdata = dev_get_uclass_platdata(dev); |
| 516 | |
| 517 | uc_pdata->type = REGULATOR_TYPE_FIXED; |
| 518 | uc_pdata->mode_count = 0; |
| 519 | |
| 520 | return 0; |
| 521 | } |
| 522 | |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 523 | static const struct dm_regulator_ops stpmic1_vref_ddr_ops = { |
| 524 | .get_value = stpmic1_vref_ddr_get_value, |
| 525 | .get_enable = stpmic1_vref_ddr_get_enable, |
| 526 | .set_enable = stpmic1_vref_ddr_set_enable, |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 527 | }; |
| 528 | |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 529 | U_BOOT_DRIVER(stpmic1_vref_ddr) = { |
| 530 | .name = "stpmic1_vref_ddr", |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 531 | .id = UCLASS_REGULATOR, |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 532 | .ops = &stpmic1_vref_ddr_ops, |
| 533 | .probe = stpmic1_vref_ddr_probe, |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 534 | }; |
| 535 | |
| 536 | /* |
| 537 | * BOOST regulator |
| 538 | */ |
| 539 | |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 540 | static int stpmic1_boost_get_enable(struct udevice *dev) |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 541 | { |
| 542 | int ret; |
| 543 | |
Patrick Delaunay | db4ff0d | 2019-02-04 11:26:18 +0100 | [diff] [blame] | 544 | ret = pmic_reg_read(dev->parent, STPMIC1_BST_SW_CR); |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 545 | if (ret < 0) |
| 546 | return false; |
| 547 | |
Patrick Delaunay | db4ff0d | 2019-02-04 11:26:18 +0100 | [diff] [blame] | 548 | return ret & STPMIC1_BST_ON ? true : false; |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 549 | } |
| 550 | |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 551 | static int stpmic1_boost_set_enable(struct udevice *dev, bool enable) |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 552 | { |
| 553 | int ret; |
| 554 | |
Patrick Delaunay | db4ff0d | 2019-02-04 11:26:18 +0100 | [diff] [blame] | 555 | ret = pmic_reg_read(dev->parent, STPMIC1_BST_SW_CR); |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 556 | if (ret < 0) |
| 557 | return ret; |
| 558 | |
Patrick Delaunay | db4ff0d | 2019-02-04 11:26:18 +0100 | [diff] [blame] | 559 | if (!enable && ret & STPMIC1_PWR_SW_ON) |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 560 | return -EINVAL; |
| 561 | |
| 562 | /* if regulator is already in the wanted state, nothing to do */ |
Patrick Delaunay | db4ff0d | 2019-02-04 11:26:18 +0100 | [diff] [blame] | 563 | if (!!(ret & STPMIC1_BST_ON) == enable) |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 564 | return 0; |
| 565 | |
Patrick Delaunay | db4ff0d | 2019-02-04 11:26:18 +0100 | [diff] [blame] | 566 | ret = pmic_clrsetbits(dev->parent, STPMIC1_BST_SW_CR, |
| 567 | STPMIC1_BST_ON, |
| 568 | enable ? STPMIC1_BST_ON : 0); |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 569 | if (enable) |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 570 | mdelay(STPMIC1_USB_BOOST_START_UP_DELAY_MS); |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 571 | |
| 572 | return ret; |
| 573 | } |
| 574 | |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 575 | static int stpmic1_boost_probe(struct udevice *dev) |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 576 | { |
| 577 | struct dm_regulator_uclass_platdata *uc_pdata; |
| 578 | |
| 579 | uc_pdata = dev_get_uclass_platdata(dev); |
| 580 | |
| 581 | uc_pdata->type = REGULATOR_TYPE_FIXED; |
| 582 | uc_pdata->mode_count = 0; |
| 583 | |
| 584 | return 0; |
| 585 | } |
| 586 | |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 587 | static const struct dm_regulator_ops stpmic1_boost_ops = { |
| 588 | .get_enable = stpmic1_boost_get_enable, |
| 589 | .set_enable = stpmic1_boost_set_enable, |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 590 | }; |
| 591 | |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 592 | U_BOOT_DRIVER(stpmic1_boost) = { |
| 593 | .name = "stpmic1_boost", |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 594 | .id = UCLASS_REGULATOR, |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 595 | .ops = &stpmic1_boost_ops, |
| 596 | .probe = stpmic1_boost_probe, |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 597 | }; |
| 598 | |
| 599 | /* |
| 600 | * USB power switch |
| 601 | */ |
| 602 | |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 603 | static int stpmic1_pwr_sw_get_enable(struct udevice *dev) |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 604 | { |
| 605 | uint mask = 1 << dev->driver_data; |
| 606 | int ret; |
| 607 | |
Patrick Delaunay | db4ff0d | 2019-02-04 11:26:18 +0100 | [diff] [blame] | 608 | ret = pmic_reg_read(dev->parent, STPMIC1_BST_SW_CR); |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 609 | if (ret < 0) |
| 610 | return false; |
| 611 | |
| 612 | return ret & mask ? true : false; |
| 613 | } |
| 614 | |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 615 | static int stpmic1_pwr_sw_set_enable(struct udevice *dev, bool enable) |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 616 | { |
| 617 | uint mask = 1 << dev->driver_data; |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 618 | int delay = enable ? STPMIC1_DEFAULT_START_UP_DELAY_MS : |
| 619 | STPMIC1_DEFAULT_STOP_DELAY_MS; |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 620 | int ret; |
| 621 | |
Patrick Delaunay | db4ff0d | 2019-02-04 11:26:18 +0100 | [diff] [blame] | 622 | ret = pmic_reg_read(dev->parent, STPMIC1_BST_SW_CR); |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 623 | if (ret < 0) |
| 624 | return ret; |
| 625 | |
| 626 | /* if regulator is already in the wanted state, nothing to do */ |
| 627 | if (!!(ret & mask) == enable) |
| 628 | return 0; |
| 629 | |
| 630 | /* Boost management */ |
Patrick Delaunay | db4ff0d | 2019-02-04 11:26:18 +0100 | [diff] [blame] | 631 | if (enable && !(ret & STPMIC1_BST_ON)) { |
| 632 | pmic_clrsetbits(dev->parent, STPMIC1_BST_SW_CR, |
| 633 | STPMIC1_BST_ON, STPMIC1_BST_ON); |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 634 | mdelay(STPMIC1_USB_BOOST_START_UP_DELAY_MS); |
Patrick Delaunay | db4ff0d | 2019-02-04 11:26:18 +0100 | [diff] [blame] | 635 | } else if (!enable && ret & STPMIC1_BST_ON && |
| 636 | (ret & STPMIC1_PWR_SW_ON) != STPMIC1_PWR_SW_ON) { |
| 637 | pmic_clrsetbits(dev->parent, STPMIC1_BST_SW_CR, |
| 638 | STPMIC1_BST_ON, 0); |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 639 | } |
| 640 | |
Patrick Delaunay | db4ff0d | 2019-02-04 11:26:18 +0100 | [diff] [blame] | 641 | ret = pmic_clrsetbits(dev->parent, STPMIC1_BST_SW_CR, |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 642 | mask, enable ? mask : 0); |
Christophe Kerello | 844f9bf | 2018-06-27 11:59:47 +0200 | [diff] [blame] | 643 | mdelay(delay); |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 644 | |
| 645 | return ret; |
| 646 | } |
| 647 | |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 648 | static int stpmic1_pwr_sw_probe(struct udevice *dev) |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 649 | { |
| 650 | struct dm_regulator_uclass_platdata *uc_pdata; |
| 651 | |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 652 | if (!dev->driver_data || dev->driver_data > STPMIC1_MAX_PWR_SW) |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 653 | return -EINVAL; |
| 654 | |
| 655 | uc_pdata = dev_get_uclass_platdata(dev); |
| 656 | |
| 657 | uc_pdata->type = REGULATOR_TYPE_FIXED; |
| 658 | uc_pdata->mode_count = 0; |
| 659 | |
| 660 | return 0; |
| 661 | } |
| 662 | |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 663 | static const struct dm_regulator_ops stpmic1_pwr_sw_ops = { |
| 664 | .get_enable = stpmic1_pwr_sw_get_enable, |
| 665 | .set_enable = stpmic1_pwr_sw_set_enable, |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 666 | }; |
| 667 | |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 668 | U_BOOT_DRIVER(stpmic1_pwr_sw) = { |
| 669 | .name = "stpmic1_pwr_sw", |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 670 | .id = UCLASS_REGULATOR, |
Patrick Delaunay | 42f01aa | 2019-02-04 11:26:17 +0100 | [diff] [blame] | 671 | .ops = &stpmic1_pwr_sw_ops, |
| 672 | .probe = stpmic1_pwr_sw_probe, |
Christophe Kerello | 069f0b6 | 2018-04-26 17:13:09 +0200 | [diff] [blame] | 673 | }; |