Thomas Gleixner | d2912cb | 2019-06-04 10:11:33 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
Chris Zhong | aa66cc6 | 2014-09-28 10:28:53 +0800 | [diff] [blame] | 2 | /* |
| 3 | * Regulator driver for PWM Regulators |
| 4 | * |
| 5 | * Copyright (C) 2014 - STMicroelectronics Inc. |
| 6 | * |
| 7 | * Author: Lee Jones <lee.jones@linaro.org> |
Chris Zhong | aa66cc6 | 2014-09-28 10:28:53 +0800 | [diff] [blame] | 8 | */ |
| 9 | |
| 10 | #include <linux/module.h> |
| 11 | #include <linux/init.h> |
| 12 | #include <linux/err.h> |
| 13 | #include <linux/regulator/driver.h> |
| 14 | #include <linux/regulator/machine.h> |
| 15 | #include <linux/regulator/of_regulator.h> |
| 16 | #include <linux/of.h> |
| 17 | #include <linux/of_device.h> |
| 18 | #include <linux/pwm.h> |
Alexandre Courbot | 27bfa88 | 2016-06-23 16:39:44 +0900 | [diff] [blame] | 19 | #include <linux/gpio/consumer.h> |
Chris Zhong | aa66cc6 | 2014-09-28 10:28:53 +0800 | [diff] [blame] | 20 | |
Boris Brezillon | ea398e2 | 2016-06-14 11:13:21 +0200 | [diff] [blame] | 21 | struct pwm_continuous_reg_data { |
| 22 | unsigned int min_uV_dutycycle; |
| 23 | unsigned int max_uV_dutycycle; |
| 24 | unsigned int dutycycle_unit; |
| 25 | }; |
| 26 | |
Chris Zhong | aa66cc6 | 2014-09-28 10:28:53 +0800 | [diff] [blame] | 27 | struct pwm_regulator_data { |
Lee Jones | 4773be1 | 2015-07-07 16:06:51 +0100 | [diff] [blame] | 28 | /* Shared */ |
Chris Zhong | aa66cc6 | 2014-09-28 10:28:53 +0800 | [diff] [blame] | 29 | struct pwm_device *pwm; |
Lee Jones | 4773be1 | 2015-07-07 16:06:51 +0100 | [diff] [blame] | 30 | |
| 31 | /* Voltage table */ |
| 32 | struct pwm_voltages *duty_cycle_table; |
Laxman Dewangan | f907a0a | 2016-03-08 16:23:22 +0530 | [diff] [blame] | 33 | |
Boris Brezillon | ea398e2 | 2016-06-14 11:13:21 +0200 | [diff] [blame] | 34 | /* Continuous mode info */ |
| 35 | struct pwm_continuous_reg_data continuous; |
| 36 | |
Laxman Dewangan | f907a0a | 2016-03-08 16:23:22 +0530 | [diff] [blame] | 37 | /* regulator descriptor */ |
| 38 | struct regulator_desc desc; |
| 39 | |
Chris Zhong | aa66cc6 | 2014-09-28 10:28:53 +0800 | [diff] [blame] | 40 | int state; |
Lee Jones | 4773be1 | 2015-07-07 16:06:51 +0100 | [diff] [blame] | 41 | |
Alexandre Courbot | 27bfa88 | 2016-06-23 16:39:44 +0900 | [diff] [blame] | 42 | /* Enable GPIO */ |
| 43 | struct gpio_desc *enb_gpio; |
Chris Zhong | aa66cc6 | 2014-09-28 10:28:53 +0800 | [diff] [blame] | 44 | }; |
| 45 | |
| 46 | struct pwm_voltages { |
| 47 | unsigned int uV; |
| 48 | unsigned int dutycycle; |
| 49 | }; |
| 50 | |
Lee Jones | 4773be1 | 2015-07-07 16:06:51 +0100 | [diff] [blame] | 51 | /** |
| 52 | * Voltage table call-backs |
| 53 | */ |
Boris Brezillon | 8724899 | 2016-06-14 11:13:19 +0200 | [diff] [blame] | 54 | static void pwm_regulator_init_state(struct regulator_dev *rdev) |
| 55 | { |
| 56 | struct pwm_regulator_data *drvdata = rdev_get_drvdata(rdev); |
| 57 | struct pwm_state pwm_state; |
| 58 | unsigned int dutycycle; |
| 59 | int i; |
| 60 | |
| 61 | pwm_get_state(drvdata->pwm, &pwm_state); |
| 62 | dutycycle = pwm_get_relative_duty_cycle(&pwm_state, 100); |
| 63 | |
| 64 | for (i = 0; i < rdev->desc->n_voltages; i++) { |
| 65 | if (dutycycle == drvdata->duty_cycle_table[i].dutycycle) { |
| 66 | drvdata->state = i; |
| 67 | return; |
| 68 | } |
| 69 | } |
| 70 | } |
| 71 | |
Lee Jones | ab101e3 | 2015-06-05 19:42:47 +0100 | [diff] [blame] | 72 | static int pwm_regulator_get_voltage_sel(struct regulator_dev *rdev) |
Chris Zhong | aa66cc6 | 2014-09-28 10:28:53 +0800 | [diff] [blame] | 73 | { |
Lee Jones | ab101e3 | 2015-06-05 19:42:47 +0100 | [diff] [blame] | 74 | struct pwm_regulator_data *drvdata = rdev_get_drvdata(rdev); |
Chris Zhong | aa66cc6 | 2014-09-28 10:28:53 +0800 | [diff] [blame] | 75 | |
Boris Brezillon | 8724899 | 2016-06-14 11:13:19 +0200 | [diff] [blame] | 76 | if (drvdata->state < 0) |
| 77 | pwm_regulator_init_state(rdev); |
| 78 | |
Chris Zhong | aa66cc6 | 2014-09-28 10:28:53 +0800 | [diff] [blame] | 79 | return drvdata->state; |
| 80 | } |
| 81 | |
Lee Jones | ab101e3 | 2015-06-05 19:42:47 +0100 | [diff] [blame] | 82 | static int pwm_regulator_set_voltage_sel(struct regulator_dev *rdev, |
Chris Zhong | aa66cc6 | 2014-09-28 10:28:53 +0800 | [diff] [blame] | 83 | unsigned selector) |
| 84 | { |
Lee Jones | ab101e3 | 2015-06-05 19:42:47 +0100 | [diff] [blame] | 85 | struct pwm_regulator_data *drvdata = rdev_get_drvdata(rdev); |
Boris Brezillon | 3f4eb39 | 2016-06-14 11:13:18 +0200 | [diff] [blame] | 86 | struct pwm_state pstate; |
Chris Zhong | aa66cc6 | 2014-09-28 10:28:53 +0800 | [diff] [blame] | 87 | int ret; |
| 88 | |
Boris Brezillon | 3f4eb39 | 2016-06-14 11:13:18 +0200 | [diff] [blame] | 89 | pwm_init_state(drvdata->pwm, &pstate); |
| 90 | pwm_set_relative_duty_cycle(&pstate, |
| 91 | drvdata->duty_cycle_table[selector].dutycycle, 100); |
Chris Zhong | aa66cc6 | 2014-09-28 10:28:53 +0800 | [diff] [blame] | 92 | |
Boris Brezillon | 3f4eb39 | 2016-06-14 11:13:18 +0200 | [diff] [blame] | 93 | ret = pwm_apply_state(drvdata->pwm, &pstate); |
Chris Zhong | aa66cc6 | 2014-09-28 10:28:53 +0800 | [diff] [blame] | 94 | if (ret) { |
Laxman Dewangan | 5bf59bd | 2016-03-14 18:20:13 +0530 | [diff] [blame] | 95 | dev_err(&rdev->dev, "Failed to configure PWM: %d\n", ret); |
Chris Zhong | aa66cc6 | 2014-09-28 10:28:53 +0800 | [diff] [blame] | 96 | return ret; |
| 97 | } |
| 98 | |
| 99 | drvdata->state = selector; |
| 100 | |
Chris Zhong | aa66cc6 | 2014-09-28 10:28:53 +0800 | [diff] [blame] | 101 | return 0; |
| 102 | } |
| 103 | |
Lee Jones | ab101e3 | 2015-06-05 19:42:47 +0100 | [diff] [blame] | 104 | static int pwm_regulator_list_voltage(struct regulator_dev *rdev, |
Chris Zhong | aa66cc6 | 2014-09-28 10:28:53 +0800 | [diff] [blame] | 105 | unsigned selector) |
| 106 | { |
Lee Jones | ab101e3 | 2015-06-05 19:42:47 +0100 | [diff] [blame] | 107 | struct pwm_regulator_data *drvdata = rdev_get_drvdata(rdev); |
Chris Zhong | aa66cc6 | 2014-09-28 10:28:53 +0800 | [diff] [blame] | 108 | |
Lee Jones | ab101e3 | 2015-06-05 19:42:47 +0100 | [diff] [blame] | 109 | if (selector >= rdev->desc->n_voltages) |
Chris Zhong | aa66cc6 | 2014-09-28 10:28:53 +0800 | [diff] [blame] | 110 | return -EINVAL; |
| 111 | |
| 112 | return drvdata->duty_cycle_table[selector].uV; |
| 113 | } |
Lee Jones | 4773be1 | 2015-07-07 16:06:51 +0100 | [diff] [blame] | 114 | |
Boris Brezillon | 1de7d80 | 2015-09-21 11:33:28 +0200 | [diff] [blame] | 115 | static int pwm_regulator_enable(struct regulator_dev *dev) |
| 116 | { |
| 117 | struct pwm_regulator_data *drvdata = rdev_get_drvdata(dev); |
| 118 | |
Fabio Estevam | a4aae5a | 2017-07-23 23:10:48 -0300 | [diff] [blame] | 119 | gpiod_set_value_cansleep(drvdata->enb_gpio, 1); |
Alexandre Courbot | 27bfa88 | 2016-06-23 16:39:44 +0900 | [diff] [blame] | 120 | |
Boris Brezillon | 1de7d80 | 2015-09-21 11:33:28 +0200 | [diff] [blame] | 121 | return pwm_enable(drvdata->pwm); |
| 122 | } |
| 123 | |
| 124 | static int pwm_regulator_disable(struct regulator_dev *dev) |
| 125 | { |
| 126 | struct pwm_regulator_data *drvdata = rdev_get_drvdata(dev); |
| 127 | |
| 128 | pwm_disable(drvdata->pwm); |
| 129 | |
Fabio Estevam | a4aae5a | 2017-07-23 23:10:48 -0300 | [diff] [blame] | 130 | gpiod_set_value_cansleep(drvdata->enb_gpio, 0); |
Alexandre Courbot | 27bfa88 | 2016-06-23 16:39:44 +0900 | [diff] [blame] | 131 | |
Boris Brezillon | 1de7d80 | 2015-09-21 11:33:28 +0200 | [diff] [blame] | 132 | return 0; |
| 133 | } |
| 134 | |
| 135 | static int pwm_regulator_is_enabled(struct regulator_dev *dev) |
| 136 | { |
| 137 | struct pwm_regulator_data *drvdata = rdev_get_drvdata(dev); |
| 138 | |
Alexandre Courbot | 27bfa88 | 2016-06-23 16:39:44 +0900 | [diff] [blame] | 139 | if (drvdata->enb_gpio && !gpiod_get_value_cansleep(drvdata->enb_gpio)) |
| 140 | return false; |
| 141 | |
Boris Brezillon | 1de7d80 | 2015-09-21 11:33:28 +0200 | [diff] [blame] | 142 | return pwm_is_enabled(drvdata->pwm); |
| 143 | } |
| 144 | |
Lee Jones | 4773be1 | 2015-07-07 16:06:51 +0100 | [diff] [blame] | 145 | static int pwm_regulator_get_voltage(struct regulator_dev *rdev) |
| 146 | { |
| 147 | struct pwm_regulator_data *drvdata = rdev_get_drvdata(rdev); |
Boris Brezillon | ea398e2 | 2016-06-14 11:13:21 +0200 | [diff] [blame] | 148 | unsigned int min_uV_duty = drvdata->continuous.min_uV_dutycycle; |
| 149 | unsigned int max_uV_duty = drvdata->continuous.max_uV_dutycycle; |
| 150 | unsigned int duty_unit = drvdata->continuous.dutycycle_unit; |
Boris Brezillon | d9070fd | 2016-06-14 11:13:20 +0200 | [diff] [blame] | 151 | int min_uV = rdev->constraints->min_uV; |
Boris Brezillon | ea398e2 | 2016-06-14 11:13:21 +0200 | [diff] [blame] | 152 | int max_uV = rdev->constraints->max_uV; |
| 153 | int diff_uV = max_uV - min_uV; |
Boris Brezillon | d9070fd | 2016-06-14 11:13:20 +0200 | [diff] [blame] | 154 | struct pwm_state pstate; |
Boris Brezillon | ea398e2 | 2016-06-14 11:13:21 +0200 | [diff] [blame] | 155 | unsigned int diff_duty; |
| 156 | unsigned int voltage; |
Lee Jones | 4773be1 | 2015-07-07 16:06:51 +0100 | [diff] [blame] | 157 | |
Boris Brezillon | d9070fd | 2016-06-14 11:13:20 +0200 | [diff] [blame] | 158 | pwm_get_state(drvdata->pwm, &pstate); |
| 159 | |
Boris Brezillon | ea398e2 | 2016-06-14 11:13:21 +0200 | [diff] [blame] | 160 | voltage = pwm_get_relative_duty_cycle(&pstate, duty_unit); |
| 161 | |
| 162 | /* |
| 163 | * The dutycycle for min_uV might be greater than the one for max_uV. |
| 164 | * This is happening when the user needs an inversed polarity, but the |
| 165 | * PWM device does not support inversing it in hardware. |
| 166 | */ |
| 167 | if (max_uV_duty < min_uV_duty) { |
| 168 | voltage = min_uV_duty - voltage; |
| 169 | diff_duty = min_uV_duty - max_uV_duty; |
| 170 | } else { |
| 171 | voltage = voltage - min_uV_duty; |
| 172 | diff_duty = max_uV_duty - min_uV_duty; |
| 173 | } |
| 174 | |
| 175 | voltage = DIV_ROUND_CLOSEST_ULL((u64)voltage * diff_uV, diff_duty); |
| 176 | |
| 177 | return voltage + min_uV; |
Lee Jones | 4773be1 | 2015-07-07 16:06:51 +0100 | [diff] [blame] | 178 | } |
| 179 | |
| 180 | static int pwm_regulator_set_voltage(struct regulator_dev *rdev, |
Boris Brezillon | ea398e2 | 2016-06-14 11:13:21 +0200 | [diff] [blame] | 181 | int req_min_uV, int req_max_uV, |
| 182 | unsigned int *selector) |
Lee Jones | 4773be1 | 2015-07-07 16:06:51 +0100 | [diff] [blame] | 183 | { |
| 184 | struct pwm_regulator_data *drvdata = rdev_get_drvdata(rdev); |
Boris Brezillon | ea398e2 | 2016-06-14 11:13:21 +0200 | [diff] [blame] | 185 | unsigned int min_uV_duty = drvdata->continuous.min_uV_dutycycle; |
| 186 | unsigned int max_uV_duty = drvdata->continuous.max_uV_dutycycle; |
| 187 | unsigned int duty_unit = drvdata->continuous.dutycycle_unit; |
Boris Brezillon | ea398e2 | 2016-06-14 11:13:21 +0200 | [diff] [blame] | 188 | int min_uV = rdev->constraints->min_uV; |
| 189 | int max_uV = rdev->constraints->max_uV; |
| 190 | int diff_uV = max_uV - min_uV; |
Boris Brezillon | 3f4eb39 | 2016-06-14 11:13:18 +0200 | [diff] [blame] | 191 | struct pwm_state pstate; |
Boris Brezillon | ea398e2 | 2016-06-14 11:13:21 +0200 | [diff] [blame] | 192 | unsigned int diff_duty; |
| 193 | unsigned int dutycycle; |
Lee Jones | 4773be1 | 2015-07-07 16:06:51 +0100 | [diff] [blame] | 194 | int ret; |
| 195 | |
Boris Brezillon | 3f4eb39 | 2016-06-14 11:13:18 +0200 | [diff] [blame] | 196 | pwm_init_state(drvdata->pwm, &pstate); |
Lee Jones | 4773be1 | 2015-07-07 16:06:51 +0100 | [diff] [blame] | 197 | |
Boris Brezillon | ea398e2 | 2016-06-14 11:13:21 +0200 | [diff] [blame] | 198 | /* |
| 199 | * The dutycycle for min_uV might be greater than the one for max_uV. |
| 200 | * This is happening when the user needs an inversed polarity, but the |
| 201 | * PWM device does not support inversing it in hardware. |
| 202 | */ |
| 203 | if (max_uV_duty < min_uV_duty) |
| 204 | diff_duty = min_uV_duty - max_uV_duty; |
| 205 | else |
| 206 | diff_duty = max_uV_duty - min_uV_duty; |
| 207 | |
| 208 | dutycycle = DIV_ROUND_CLOSEST_ULL((u64)(req_min_uV - min_uV) * |
| 209 | diff_duty, |
| 210 | diff_uV); |
| 211 | |
| 212 | if (max_uV_duty < min_uV_duty) |
| 213 | dutycycle = min_uV_duty - dutycycle; |
| 214 | else |
| 215 | dutycycle = min_uV_duty + dutycycle; |
| 216 | |
| 217 | pwm_set_relative_duty_cycle(&pstate, dutycycle, duty_unit); |
Laxman Dewangan | fd786fb0 | 2016-04-05 15:09:48 +0530 | [diff] [blame] | 218 | |
Boris Brezillon | 3f4eb39 | 2016-06-14 11:13:18 +0200 | [diff] [blame] | 219 | ret = pwm_apply_state(drvdata->pwm, &pstate); |
Lee Jones | 4773be1 | 2015-07-07 16:06:51 +0100 | [diff] [blame] | 220 | if (ret) { |
Laxman Dewangan | 5bf59bd | 2016-03-14 18:20:13 +0530 | [diff] [blame] | 221 | dev_err(&rdev->dev, "Failed to configure PWM: %d\n", ret); |
Lee Jones | 4773be1 | 2015-07-07 16:06:51 +0100 | [diff] [blame] | 222 | return ret; |
| 223 | } |
| 224 | |
Lee Jones | 4773be1 | 2015-07-07 16:06:51 +0100 | [diff] [blame] | 225 | return 0; |
| 226 | } |
| 227 | |
Axel Lin | 638aef7 | 2019-01-12 12:30:13 +0800 | [diff] [blame] | 228 | static const struct regulator_ops pwm_regulator_voltage_table_ops = { |
Chris Zhong | aa66cc6 | 2014-09-28 10:28:53 +0800 | [diff] [blame] | 229 | .set_voltage_sel = pwm_regulator_set_voltage_sel, |
| 230 | .get_voltage_sel = pwm_regulator_get_voltage_sel, |
| 231 | .list_voltage = pwm_regulator_list_voltage, |
| 232 | .map_voltage = regulator_map_voltage_iterate, |
Boris Brezillon | 1de7d80 | 2015-09-21 11:33:28 +0200 | [diff] [blame] | 233 | .enable = pwm_regulator_enable, |
| 234 | .disable = pwm_regulator_disable, |
| 235 | .is_enabled = pwm_regulator_is_enabled, |
Chris Zhong | aa66cc6 | 2014-09-28 10:28:53 +0800 | [diff] [blame] | 236 | }; |
| 237 | |
Axel Lin | 638aef7 | 2019-01-12 12:30:13 +0800 | [diff] [blame] | 238 | static const struct regulator_ops pwm_regulator_voltage_continuous_ops = { |
Lee Jones | 4773be1 | 2015-07-07 16:06:51 +0100 | [diff] [blame] | 239 | .get_voltage = pwm_regulator_get_voltage, |
| 240 | .set_voltage = pwm_regulator_set_voltage, |
Boris Brezillon | 1de7d80 | 2015-09-21 11:33:28 +0200 | [diff] [blame] | 241 | .enable = pwm_regulator_enable, |
| 242 | .disable = pwm_regulator_disable, |
| 243 | .is_enabled = pwm_regulator_is_enabled, |
Lee Jones | 4773be1 | 2015-07-07 16:06:51 +0100 | [diff] [blame] | 244 | }; |
| 245 | |
Axel Lin | 638aef7 | 2019-01-12 12:30:13 +0800 | [diff] [blame] | 246 | static const struct regulator_desc pwm_regulator_desc = { |
Chris Zhong | aa66cc6 | 2014-09-28 10:28:53 +0800 | [diff] [blame] | 247 | .name = "pwm-regulator", |
Chris Zhong | aa66cc6 | 2014-09-28 10:28:53 +0800 | [diff] [blame] | 248 | .type = REGULATOR_VOLTAGE, |
| 249 | .owner = THIS_MODULE, |
| 250 | .supply_name = "pwm", |
| 251 | }; |
| 252 | |
Lee Jones | f9178da | 2015-07-06 09:58:29 +0100 | [diff] [blame] | 253 | static int pwm_regulator_init_table(struct platform_device *pdev, |
| 254 | struct pwm_regulator_data *drvdata) |
| 255 | { |
| 256 | struct device_node *np = pdev->dev.of_node; |
| 257 | struct pwm_voltages *duty_cycle_table; |
Lee Jones | 60cb65e | 2015-07-10 08:45:36 +0100 | [diff] [blame] | 258 | unsigned int length = 0; |
Lee Jones | f9178da | 2015-07-06 09:58:29 +0100 | [diff] [blame] | 259 | int ret; |
| 260 | |
| 261 | of_find_property(np, "voltage-table", &length); |
| 262 | |
| 263 | if ((length < sizeof(*duty_cycle_table)) || |
| 264 | (length % sizeof(*duty_cycle_table))) { |
Laxman Dewangan | 5bf59bd | 2016-03-14 18:20:13 +0530 | [diff] [blame] | 265 | dev_err(&pdev->dev, "voltage-table length(%d) is invalid\n", |
Lee Jones | f9178da | 2015-07-06 09:58:29 +0100 | [diff] [blame] | 266 | length); |
| 267 | return -EINVAL; |
| 268 | } |
| 269 | |
| 270 | duty_cycle_table = devm_kzalloc(&pdev->dev, length, GFP_KERNEL); |
| 271 | if (!duty_cycle_table) |
| 272 | return -ENOMEM; |
| 273 | |
| 274 | ret = of_property_read_u32_array(np, "voltage-table", |
| 275 | (u32 *)duty_cycle_table, |
| 276 | length / sizeof(u32)); |
| 277 | if (ret) { |
Laxman Dewangan | 5bf59bd | 2016-03-14 18:20:13 +0530 | [diff] [blame] | 278 | dev_err(&pdev->dev, "Failed to read voltage-table: %d\n", ret); |
Lee Jones | f9178da | 2015-07-06 09:58:29 +0100 | [diff] [blame] | 279 | return ret; |
| 280 | } |
| 281 | |
Boris Brezillon | 8724899 | 2016-06-14 11:13:19 +0200 | [diff] [blame] | 282 | drvdata->state = -EINVAL; |
Lee Jones | f9178da | 2015-07-06 09:58:29 +0100 | [diff] [blame] | 283 | drvdata->duty_cycle_table = duty_cycle_table; |
Axel Lin | 638aef7 | 2019-01-12 12:30:13 +0800 | [diff] [blame] | 284 | drvdata->desc.ops = &pwm_regulator_voltage_table_ops; |
Laxman Dewangan | f907a0a | 2016-03-08 16:23:22 +0530 | [diff] [blame] | 285 | drvdata->desc.n_voltages = length / sizeof(*duty_cycle_table); |
Lee Jones | f9178da | 2015-07-06 09:58:29 +0100 | [diff] [blame] | 286 | |
| 287 | return 0; |
| 288 | } |
| 289 | |
Lee Jones | 4773be1 | 2015-07-07 16:06:51 +0100 | [diff] [blame] | 290 | static int pwm_regulator_init_continuous(struct platform_device *pdev, |
| 291 | struct pwm_regulator_data *drvdata) |
| 292 | { |
Boris Brezillon | ea398e2 | 2016-06-14 11:13:21 +0200 | [diff] [blame] | 293 | u32 dutycycle_range[2] = { 0, 100 }; |
| 294 | u32 dutycycle_unit = 100; |
| 295 | |
Axel Lin | 638aef7 | 2019-01-12 12:30:13 +0800 | [diff] [blame] | 296 | drvdata->desc.ops = &pwm_regulator_voltage_continuous_ops; |
Laxman Dewangan | f907a0a | 2016-03-08 16:23:22 +0530 | [diff] [blame] | 297 | drvdata->desc.continuous_voltage_range = true; |
Lee Jones | 4773be1 | 2015-07-07 16:06:51 +0100 | [diff] [blame] | 298 | |
Boris Brezillon | ea398e2 | 2016-06-14 11:13:21 +0200 | [diff] [blame] | 299 | of_property_read_u32_array(pdev->dev.of_node, |
| 300 | "pwm-dutycycle-range", |
| 301 | dutycycle_range, 2); |
| 302 | of_property_read_u32(pdev->dev.of_node, "pwm-dutycycle-unit", |
| 303 | &dutycycle_unit); |
| 304 | |
| 305 | if (dutycycle_range[0] > dutycycle_unit || |
| 306 | dutycycle_range[1] > dutycycle_unit) |
| 307 | return -EINVAL; |
| 308 | |
| 309 | drvdata->continuous.dutycycle_unit = dutycycle_unit; |
| 310 | drvdata->continuous.min_uV_dutycycle = dutycycle_range[0]; |
| 311 | drvdata->continuous.max_uV_dutycycle = dutycycle_range[1]; |
| 312 | |
Lee Jones | 4773be1 | 2015-07-07 16:06:51 +0100 | [diff] [blame] | 313 | return 0; |
| 314 | } |
| 315 | |
Chris Zhong | aa66cc6 | 2014-09-28 10:28:53 +0800 | [diff] [blame] | 316 | static int pwm_regulator_probe(struct platform_device *pdev) |
| 317 | { |
Lee Jones | 5ad2cb1 | 2015-07-07 16:06:53 +0100 | [diff] [blame] | 318 | const struct regulator_init_data *init_data; |
Chris Zhong | aa66cc6 | 2014-09-28 10:28:53 +0800 | [diff] [blame] | 319 | struct pwm_regulator_data *drvdata; |
Chris Zhong | aa66cc6 | 2014-09-28 10:28:53 +0800 | [diff] [blame] | 320 | struct regulator_dev *regulator; |
| 321 | struct regulator_config config = { }; |
| 322 | struct device_node *np = pdev->dev.of_node; |
Alexandre Courbot | 27bfa88 | 2016-06-23 16:39:44 +0900 | [diff] [blame] | 323 | enum gpiod_flags gpio_flags; |
Lee Jones | f9178da | 2015-07-06 09:58:29 +0100 | [diff] [blame] | 324 | int ret; |
Chris Zhong | aa66cc6 | 2014-09-28 10:28:53 +0800 | [diff] [blame] | 325 | |
| 326 | if (!np) { |
| 327 | dev_err(&pdev->dev, "Device Tree node missing\n"); |
| 328 | return -EINVAL; |
| 329 | } |
| 330 | |
| 331 | drvdata = devm_kzalloc(&pdev->dev, sizeof(*drvdata), GFP_KERNEL); |
| 332 | if (!drvdata) |
| 333 | return -ENOMEM; |
| 334 | |
Laxman Dewangan | f907a0a | 2016-03-08 16:23:22 +0530 | [diff] [blame] | 335 | memcpy(&drvdata->desc, &pwm_regulator_desc, sizeof(drvdata->desc)); |
| 336 | |
Lee Jones | 4773be1 | 2015-07-07 16:06:51 +0100 | [diff] [blame] | 337 | if (of_find_property(np, "voltage-table", NULL)) |
Lee Jones | f9178da | 2015-07-06 09:58:29 +0100 | [diff] [blame] | 338 | ret = pwm_regulator_init_table(pdev, drvdata); |
Lee Jones | 4773be1 | 2015-07-07 16:06:51 +0100 | [diff] [blame] | 339 | else |
| 340 | ret = pwm_regulator_init_continuous(pdev, drvdata); |
| 341 | if (ret) |
| 342 | return ret; |
Chris Zhong | aa66cc6 | 2014-09-28 10:28:53 +0800 | [diff] [blame] | 343 | |
Lee Jones | 5ad2cb1 | 2015-07-07 16:06:53 +0100 | [diff] [blame] | 344 | init_data = of_get_regulator_init_data(&pdev->dev, np, |
Laxman Dewangan | f907a0a | 2016-03-08 16:23:22 +0530 | [diff] [blame] | 345 | &drvdata->desc); |
Lee Jones | 5ad2cb1 | 2015-07-07 16:06:53 +0100 | [diff] [blame] | 346 | if (!init_data) |
Chris Zhong | aa66cc6 | 2014-09-28 10:28:53 +0800 | [diff] [blame] | 347 | return -ENOMEM; |
| 348 | |
| 349 | config.of_node = np; |
| 350 | config.dev = &pdev->dev; |
| 351 | config.driver_data = drvdata; |
Lee Jones | 5ad2cb1 | 2015-07-07 16:06:53 +0100 | [diff] [blame] | 352 | config.init_data = init_data; |
Chris Zhong | aa66cc6 | 2014-09-28 10:28:53 +0800 | [diff] [blame] | 353 | |
| 354 | drvdata->pwm = devm_pwm_get(&pdev->dev, NULL); |
| 355 | if (IS_ERR(drvdata->pwm)) { |
Laxman Dewangan | 5bf59bd | 2016-03-14 18:20:13 +0530 | [diff] [blame] | 356 | ret = PTR_ERR(drvdata->pwm); |
Jon Hunter | 0cd71b9 | 2020-03-02 14:14:28 +0000 | [diff] [blame] | 357 | if (ret == -EPROBE_DEFER) |
| 358 | dev_dbg(&pdev->dev, |
| 359 | "Failed to get PWM, deferring probe\n"); |
| 360 | else |
| 361 | dev_err(&pdev->dev, "Failed to get PWM: %d\n", ret); |
Laxman Dewangan | 5bf59bd | 2016-03-14 18:20:13 +0530 | [diff] [blame] | 362 | return ret; |
Chris Zhong | aa66cc6 | 2014-09-28 10:28:53 +0800 | [diff] [blame] | 363 | } |
| 364 | |
Alexandre Courbot | 27bfa88 | 2016-06-23 16:39:44 +0900 | [diff] [blame] | 365 | if (init_data->constraints.boot_on || init_data->constraints.always_on) |
| 366 | gpio_flags = GPIOD_OUT_HIGH; |
| 367 | else |
| 368 | gpio_flags = GPIOD_OUT_LOW; |
| 369 | drvdata->enb_gpio = devm_gpiod_get_optional(&pdev->dev, "enable", |
| 370 | gpio_flags); |
| 371 | if (IS_ERR(drvdata->enb_gpio)) { |
| 372 | ret = PTR_ERR(drvdata->enb_gpio); |
| 373 | dev_err(&pdev->dev, "Failed to get enable GPIO: %d\n", ret); |
| 374 | return ret; |
| 375 | } |
| 376 | |
Boris Brezillon | fd4f99c | 2016-06-14 11:13:17 +0200 | [diff] [blame] | 377 | ret = pwm_adjust_config(drvdata->pwm); |
| 378 | if (ret) |
| 379 | return ret; |
Boris Brezillon | 8c12ad8 | 2016-04-14 21:17:27 +0200 | [diff] [blame] | 380 | |
Chris Zhong | aa66cc6 | 2014-09-28 10:28:53 +0800 | [diff] [blame] | 381 | regulator = devm_regulator_register(&pdev->dev, |
Laxman Dewangan | f907a0a | 2016-03-08 16:23:22 +0530 | [diff] [blame] | 382 | &drvdata->desc, &config); |
Chris Zhong | aa66cc6 | 2014-09-28 10:28:53 +0800 | [diff] [blame] | 383 | if (IS_ERR(regulator)) { |
Laxman Dewangan | 5bf59bd | 2016-03-14 18:20:13 +0530 | [diff] [blame] | 384 | ret = PTR_ERR(regulator); |
| 385 | dev_err(&pdev->dev, "Failed to register regulator %s: %d\n", |
| 386 | drvdata->desc.name, ret); |
| 387 | return ret; |
Chris Zhong | aa66cc6 | 2014-09-28 10:28:53 +0800 | [diff] [blame] | 388 | } |
| 389 | |
| 390 | return 0; |
| 391 | } |
| 392 | |
| 393 | static const struct of_device_id pwm_of_match[] = { |
| 394 | { .compatible = "pwm-regulator" }, |
| 395 | { }, |
| 396 | }; |
| 397 | MODULE_DEVICE_TABLE(of, pwm_of_match); |
| 398 | |
| 399 | static struct platform_driver pwm_regulator_driver = { |
| 400 | .driver = { |
| 401 | .name = "pwm-regulator", |
Chris Zhong | aa66cc6 | 2014-09-28 10:28:53 +0800 | [diff] [blame] | 402 | .of_match_table = of_match_ptr(pwm_of_match), |
| 403 | }, |
| 404 | .probe = pwm_regulator_probe, |
| 405 | }; |
| 406 | |
| 407 | module_platform_driver(pwm_regulator_driver); |
| 408 | |
| 409 | MODULE_LICENSE("GPL"); |
| 410 | MODULE_AUTHOR("Lee Jones <lee.jones@linaro.org>"); |
| 411 | MODULE_DESCRIPTION("PWM Regulator Driver"); |
| 412 | MODULE_ALIAS("platform:pwm-regulator"); |