dm: dm-zoned: use __bio_add_page for adding single metadata page
[linux-block.git] / drivers / pwm / pwm-cros-ec.c
CommitLineData
4964cb52 1// SPDX-License-Identifier: GPL-2.0
1f0d3bb0 2/*
1f0d3bb0 3 * Expose a PWM controlled by the ChromeOS EC to the host processor.
4964cb52
EBS
4 *
5 * Copyright (C) 2016 Google, Inc.
1f0d3bb0
BN
6 */
7
8#include <linux/module.h>
840d9f13
EBS
9#include <linux/platform_data/cros_ec_commands.h>
10#include <linux/platform_data/cros_ec_proto.h>
1f0d3bb0
BN
11#include <linux/platform_device.h>
12#include <linux/pwm.h>
13#include <linux/slab.h>
14
3d593b6e
FB
15#include <dt-bindings/mfd/cros_ec.h>
16
1f0d3bb0
BN
17/**
18 * struct cros_ec_pwm_device - Driver data for EC PWM
19 *
20 * @dev: Device node
21 * @ec: Pointer to EC device
22 * @chip: PWM controller chip
3d593b6e 23 * @use_pwm_type: Use PWM types instead of generic channels
1f0d3bb0
BN
24 */
25struct cros_ec_pwm_device {
26 struct device *dev;
27 struct cros_ec_device *ec;
28 struct pwm_chip chip;
3d593b6e 29 bool use_pwm_type;
1f0d3bb0
BN
30};
31
1db37f95
TR
32/**
33 * struct cros_ec_pwm - per-PWM driver data
34 * @duty_cycle: cached duty cycle
35 */
36struct cros_ec_pwm {
37 u16 duty_cycle;
38};
39
1f0d3bb0
BN
40static inline struct cros_ec_pwm_device *pwm_to_cros_ec_pwm(struct pwm_chip *c)
41{
42 return container_of(c, struct cros_ec_pwm_device, chip);
43}
44
1db37f95
TR
45static int cros_ec_pwm_request(struct pwm_chip *chip, struct pwm_device *pwm)
46{
47 struct cros_ec_pwm *channel;
48
49 channel = kzalloc(sizeof(*channel), GFP_KERNEL);
50 if (!channel)
51 return -ENOMEM;
52
53 pwm_set_chip_data(pwm, channel);
54
55 return 0;
56}
57
58static void cros_ec_pwm_free(struct pwm_chip *chip, struct pwm_device *pwm)
59{
60 struct cros_ec_pwm *channel = pwm_get_chip_data(pwm);
61
62 kfree(channel);
63}
64
3d593b6e 65static int cros_ec_dt_type_to_pwm_type(u8 dt_index, u8 *pwm_type)
1f0d3bb0 66{
3d593b6e
FB
67 switch (dt_index) {
68 case CROS_EC_PWM_DT_KB_LIGHT:
69 *pwm_type = EC_PWM_TYPE_KB_LIGHT;
70 return 0;
71 case CROS_EC_PWM_DT_DISPLAY_LIGHT:
72 *pwm_type = EC_PWM_TYPE_DISPLAY_LIGHT;
73 return 0;
74 default:
75 return -EINVAL;
76 }
77}
78
79static int cros_ec_pwm_set_duty(struct cros_ec_pwm_device *ec_pwm, u8 index,
80 u16 duty)
81{
82 struct cros_ec_device *ec = ec_pwm->ec;
1f0d3bb0
BN
83 struct {
84 struct cros_ec_command msg;
85 struct ec_params_pwm_set_duty params;
065cfbbb 86 } __packed buf;
1f0d3bb0
BN
87 struct ec_params_pwm_set_duty *params = &buf.params;
88 struct cros_ec_command *msg = &buf.msg;
3d593b6e 89 int ret;
1f0d3bb0
BN
90
91 memset(&buf, 0, sizeof(buf));
92
93 msg->version = 0;
94 msg->command = EC_CMD_PWM_SET_DUTY;
95 msg->insize = 0;
96 msg->outsize = sizeof(*params);
97
98 params->duty = duty;
3d593b6e
FB
99
100 if (ec_pwm->use_pwm_type) {
101 ret = cros_ec_dt_type_to_pwm_type(index, &params->pwm_type);
102 if (ret) {
103 dev_err(ec->dev, "Invalid PWM type index: %d\n", index);
104 return ret;
105 }
106 params->index = 0;
107 } else {
108 params->pwm_type = EC_PWM_TYPE_GENERIC;
109 params->index = index;
110 }
1f0d3bb0
BN
111
112 return cros_ec_cmd_xfer_status(ec, msg);
113}
114
3d593b6e 115static int cros_ec_pwm_get_duty(struct cros_ec_pwm_device *ec_pwm, u8 index)
1f0d3bb0 116{
3d593b6e 117 struct cros_ec_device *ec = ec_pwm->ec;
1f0d3bb0
BN
118 struct {
119 struct cros_ec_command msg;
120 union {
121 struct ec_params_pwm_get_duty params;
122 struct ec_response_pwm_get_duty resp;
123 };
065cfbbb 124 } __packed buf;
1f0d3bb0
BN
125 struct ec_params_pwm_get_duty *params = &buf.params;
126 struct ec_response_pwm_get_duty *resp = &buf.resp;
127 struct cros_ec_command *msg = &buf.msg;
128 int ret;
129
130 memset(&buf, 0, sizeof(buf));
131
132 msg->version = 0;
133 msg->command = EC_CMD_PWM_GET_DUTY;
e47866a1
NV
134 msg->insize = sizeof(*resp);
135 msg->outsize = sizeof(*params);
1f0d3bb0 136
3d593b6e
FB
137 if (ec_pwm->use_pwm_type) {
138 ret = cros_ec_dt_type_to_pwm_type(index, &params->pwm_type);
139 if (ret) {
140 dev_err(ec->dev, "Invalid PWM type index: %d\n", index);
141 return ret;
142 }
143 params->index = 0;
144 } else {
145 params->pwm_type = EC_PWM_TYPE_GENERIC;
146 params->index = index;
147 }
1f0d3bb0
BN
148
149 ret = cros_ec_cmd_xfer_status(ec, msg);
1f0d3bb0
BN
150 if (ret < 0)
151 return ret;
152
153 return resp->duty;
154}
155
1f0d3bb0 156static int cros_ec_pwm_apply(struct pwm_chip *chip, struct pwm_device *pwm,
71523d18 157 const struct pwm_state *state)
1f0d3bb0
BN
158{
159 struct cros_ec_pwm_device *ec_pwm = pwm_to_cros_ec_pwm(chip);
1db37f95
TR
160 struct cros_ec_pwm *channel = pwm_get_chip_data(pwm);
161 u16 duty_cycle;
162 int ret;
1f0d3bb0
BN
163
164 /* The EC won't let us change the period */
165 if (state->period != EC_PWM_MAX_DUTY)
166 return -EINVAL;
167
9f0f6107
UKK
168 if (state->polarity != PWM_POLARITY_NORMAL)
169 return -EINVAL;
170
1f0d3bb0
BN
171 /*
172 * EC doesn't separate the concept of duty cycle and enabled, but
173 * kernel does. Translate.
174 */
175 duty_cycle = state->enabled ? state->duty_cycle : 0;
176
3d593b6e 177 ret = cros_ec_pwm_set_duty(ec_pwm, pwm->hwpwm, duty_cycle);
1db37f95
TR
178 if (ret < 0)
179 return ret;
180
181 channel->duty_cycle = state->duty_cycle;
182
183 return 0;
1f0d3bb0
BN
184}
185
6c452cff
UKK
186static int cros_ec_pwm_get_state(struct pwm_chip *chip, struct pwm_device *pwm,
187 struct pwm_state *state)
1f0d3bb0
BN
188{
189 struct cros_ec_pwm_device *ec_pwm = pwm_to_cros_ec_pwm(chip);
1db37f95 190 struct cros_ec_pwm *channel = pwm_get_chip_data(pwm);
1f0d3bb0
BN
191 int ret;
192
3d593b6e 193 ret = cros_ec_pwm_get_duty(ec_pwm, pwm->hwpwm);
1f0d3bb0
BN
194 if (ret < 0) {
195 dev_err(chip->dev, "error getting initial duty: %d\n", ret);
ee02c1cb 196 return ret;
1f0d3bb0
BN
197 }
198
199 state->enabled = (ret > 0);
200 state->period = EC_PWM_MAX_DUTY;
30006b77 201 state->polarity = PWM_POLARITY_NORMAL;
1f0d3bb0 202
1db37f95
TR
203 /*
204 * Note that "disabled" and "duty cycle == 0" are treated the same. If
205 * the cached duty cycle is not zero, used the cached duty cycle. This
206 * ensures that the configured duty cycle is kept across a disable and
207 * enable operation and avoids potentially confusing consumers.
208 *
209 * For the case of the initial hardware readout, channel->duty_cycle
210 * will be 0 and the actual duty cycle read from the EC is used.
211 */
212 if (ret == 0 && channel->duty_cycle > 0)
213 state->duty_cycle = channel->duty_cycle;
214 else
215 state->duty_cycle = ret;
6c452cff
UKK
216
217 return 0;
1f0d3bb0
BN
218}
219
220static struct pwm_device *
221cros_ec_pwm_xlate(struct pwm_chip *pc, const struct of_phandle_args *args)
222{
223 struct pwm_device *pwm;
224
225 if (args->args[0] >= pc->npwm)
226 return ERR_PTR(-EINVAL);
227
228 pwm = pwm_request_from_chip(pc, args->args[0], NULL);
229 if (IS_ERR(pwm))
230 return pwm;
231
232 /* The EC won't let us change the period */
233 pwm->args.period = EC_PWM_MAX_DUTY;
234
235 return pwm;
236}
237
238static const struct pwm_ops cros_ec_pwm_ops = {
1db37f95
TR
239 .request = cros_ec_pwm_request,
240 .free = cros_ec_pwm_free,
1f0d3bb0
BN
241 .get_state = cros_ec_pwm_get_state,
242 .apply = cros_ec_pwm_apply,
243 .owner = THIS_MODULE,
244};
245
d509f8a7
GR
246/*
247 * Determine the number of supported PWMs. The EC does not return the number
248 * of PWMs it supports directly, so we have to read the pwm duty cycle for
249 * subsequent channels until we get an error.
250 */
3d593b6e 251static int cros_ec_num_pwms(struct cros_ec_pwm_device *ec_pwm)
1f0d3bb0
BN
252{
253 int i, ret;
254
255 /* The index field is only 8 bits */
256 for (i = 0; i <= U8_MAX; i++) {
3d593b6e 257 ret = cros_ec_pwm_get_duty(ec_pwm, i);
1f0d3bb0
BN
258 /*
259 * We look for SUCCESS, INVALID_COMMAND, or INVALID_PARAM
260 * responses; everything else is treated as an error.
be020f0d
GR
261 * The EC error codes map to -EOPNOTSUPP and -EINVAL,
262 * so check for those.
1f0d3bb0 263 */
d509f8a7
GR
264 switch (ret) {
265 case -EOPNOTSUPP: /* invalid command */
1f0d3bb0 266 return -ENODEV;
d509f8a7 267 case -EINVAL: /* invalid parameter */
1f0d3bb0 268 return i;
d509f8a7
GR
269 default:
270 if (ret < 0)
271 return ret;
272 break;
273 }
1f0d3bb0
BN
274 }
275
276 return U8_MAX;
277}
278
279static int cros_ec_pwm_probe(struct platform_device *pdev)
280{
281 struct cros_ec_device *ec = dev_get_drvdata(pdev->dev.parent);
282 struct device *dev = &pdev->dev;
3d593b6e 283 struct device_node *np = pdev->dev.of_node;
1f0d3bb0
BN
284 struct cros_ec_pwm_device *ec_pwm;
285 struct pwm_chip *chip;
286 int ret;
287
288 if (!ec) {
289 dev_err(dev, "no parent EC device\n");
290 return -EINVAL;
291 }
292
293 ec_pwm = devm_kzalloc(dev, sizeof(*ec_pwm), GFP_KERNEL);
294 if (!ec_pwm)
295 return -ENOMEM;
296 chip = &ec_pwm->chip;
297 ec_pwm->ec = ec;
298
3d593b6e
FB
299 if (of_device_is_compatible(np, "google,cros-ec-pwm-type"))
300 ec_pwm->use_pwm_type = true;
301
1f0d3bb0
BN
302 /* PWM chip */
303 chip->dev = dev;
304 chip->ops = &cros_ec_pwm_ops;
305 chip->of_xlate = cros_ec_pwm_xlate;
306 chip->of_pwm_n_cells = 1;
3d593b6e
FB
307
308 if (ec_pwm->use_pwm_type) {
309 chip->npwm = CROS_EC_PWM_DT_COUNT;
310 } else {
311 ret = cros_ec_num_pwms(ec_pwm);
312 if (ret < 0) {
313 dev_err(dev, "Couldn't find PWMs: %d\n", ret);
314 return ret;
315 }
316 chip->npwm = ret;
1f0d3bb0 317 }
3d593b6e 318
1f0d3bb0
BN
319 dev_dbg(dev, "Probed %u PWMs\n", chip->npwm);
320
321 ret = pwmchip_add(chip);
322 if (ret < 0) {
323 dev_err(dev, "cannot register PWM: %d\n", ret);
324 return ret;
325 }
326
327 platform_set_drvdata(pdev, ec_pwm);
328
329 return ret;
330}
331
159a61a7 332static void cros_ec_pwm_remove(struct platform_device *dev)
1f0d3bb0
BN
333{
334 struct cros_ec_pwm_device *ec_pwm = platform_get_drvdata(dev);
335 struct pwm_chip *chip = &ec_pwm->chip;
336
a08be127 337 pwmchip_remove(chip);
1f0d3bb0
BN
338}
339
340#ifdef CONFIG_OF
341static const struct of_device_id cros_ec_pwm_of_match[] = {
342 { .compatible = "google,cros-ec-pwm" },
3d593b6e 343 { .compatible = "google,cros-ec-pwm-type" },
1f0d3bb0
BN
344 {},
345};
346MODULE_DEVICE_TABLE(of, cros_ec_pwm_of_match);
347#endif
348
349static struct platform_driver cros_ec_pwm_driver = {
350 .probe = cros_ec_pwm_probe,
159a61a7 351 .remove_new = cros_ec_pwm_remove,
1f0d3bb0
BN
352 .driver = {
353 .name = "cros-ec-pwm",
354 .of_match_table = of_match_ptr(cros_ec_pwm_of_match),
355 },
356};
357module_platform_driver(cros_ec_pwm_driver);
358
359MODULE_ALIAS("platform:cros-ec-pwm");
360MODULE_DESCRIPTION("ChromeOS EC PWM driver");
361MODULE_LICENSE("GPL v2");