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