1 // SPDX-License-Identifier: GPL-2.0
3 * Expose a PWM controlled by the ChromeOS EC to the host processor.
5 * Copyright (C) 2016 Google, Inc.
8 #include <linux/module.h>
9 #include <linux/platform_data/cros_ec_commands.h>
10 #include <linux/platform_data/cros_ec_proto.h>
11 #include <linux/platform_device.h>
12 #include <linux/pwm.h>
13 #include <linux/slab.h>
15 #include <dt-bindings/mfd/cros_ec.h>
18 * struct cros_ec_pwm_device - Driver data for EC PWM
21 * @ec: Pointer to EC device
22 * @chip: PWM controller chip
23 * @use_pwm_type: Use PWM types instead of generic channels
25 struct cros_ec_pwm_device {
27 struct cros_ec_device *ec;
33 * struct cros_ec_pwm - per-PWM driver data
34 * @duty_cycle: cached duty cycle
40 static inline struct cros_ec_pwm_device *pwm_to_cros_ec_pwm(struct pwm_chip *c)
42 return container_of(c, struct cros_ec_pwm_device, chip);
45 static int cros_ec_pwm_request(struct pwm_chip *chip, struct pwm_device *pwm)
47 struct cros_ec_pwm *channel;
49 channel = kzalloc(sizeof(*channel), GFP_KERNEL);
53 pwm_set_chip_data(pwm, channel);
58 static void cros_ec_pwm_free(struct pwm_chip *chip, struct pwm_device *pwm)
60 struct cros_ec_pwm *channel = pwm_get_chip_data(pwm);
65 static int cros_ec_dt_type_to_pwm_type(u8 dt_index, u8 *pwm_type)
68 case CROS_EC_PWM_DT_KB_LIGHT:
69 *pwm_type = EC_PWM_TYPE_KB_LIGHT;
71 case CROS_EC_PWM_DT_DISPLAY_LIGHT:
72 *pwm_type = EC_PWM_TYPE_DISPLAY_LIGHT;
79 static int cros_ec_pwm_set_duty(struct cros_ec_pwm_device *ec_pwm, u8 index,
82 struct cros_ec_device *ec = ec_pwm->ec;
84 struct cros_ec_command msg;
85 struct ec_params_pwm_set_duty params;
87 struct ec_params_pwm_set_duty *params = &buf.params;
88 struct cros_ec_command *msg = &buf.msg;
91 memset(&buf, 0, sizeof(buf));
94 msg->command = EC_CMD_PWM_SET_DUTY;
96 msg->outsize = sizeof(*params);
100 if (ec_pwm->use_pwm_type) {
101 ret = cros_ec_dt_type_to_pwm_type(index, ¶ms->pwm_type);
103 dev_err(ec->dev, "Invalid PWM type index: %d\n", index);
108 params->pwm_type = EC_PWM_TYPE_GENERIC;
109 params->index = index;
112 return cros_ec_cmd_xfer_status(ec, msg);
115 static int cros_ec_pwm_get_duty(struct cros_ec_pwm_device *ec_pwm, u8 index)
117 struct cros_ec_device *ec = ec_pwm->ec;
119 struct cros_ec_command msg;
121 struct ec_params_pwm_get_duty params;
122 struct ec_response_pwm_get_duty resp;
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;
130 memset(&buf, 0, sizeof(buf));
133 msg->command = EC_CMD_PWM_GET_DUTY;
134 msg->insize = sizeof(*resp);
135 msg->outsize = sizeof(*params);
137 if (ec_pwm->use_pwm_type) {
138 ret = cros_ec_dt_type_to_pwm_type(index, ¶ms->pwm_type);
140 dev_err(ec->dev, "Invalid PWM type index: %d\n", index);
145 params->pwm_type = EC_PWM_TYPE_GENERIC;
146 params->index = index;
149 ret = cros_ec_cmd_xfer_status(ec, msg);
156 static int cros_ec_pwm_apply(struct pwm_chip *chip, struct pwm_device *pwm,
157 const struct pwm_state *state)
159 struct cros_ec_pwm_device *ec_pwm = pwm_to_cros_ec_pwm(chip);
160 struct cros_ec_pwm *channel = pwm_get_chip_data(pwm);
164 /* The EC won't let us change the period */
165 if (state->period != EC_PWM_MAX_DUTY)
168 if (state->polarity != PWM_POLARITY_NORMAL)
172 * EC doesn't separate the concept of duty cycle and enabled, but
173 * kernel does. Translate.
175 duty_cycle = state->enabled ? state->duty_cycle : 0;
177 ret = cros_ec_pwm_set_duty(ec_pwm, pwm->hwpwm, duty_cycle);
181 channel->duty_cycle = state->duty_cycle;
186 static int cros_ec_pwm_get_state(struct pwm_chip *chip, struct pwm_device *pwm,
187 struct pwm_state *state)
189 struct cros_ec_pwm_device *ec_pwm = pwm_to_cros_ec_pwm(chip);
190 struct cros_ec_pwm *channel = pwm_get_chip_data(pwm);
193 ret = cros_ec_pwm_get_duty(ec_pwm, pwm->hwpwm);
195 dev_err(chip->dev, "error getting initial duty: %d\n", ret);
199 state->enabled = (ret > 0);
200 state->period = EC_PWM_MAX_DUTY;
201 state->polarity = PWM_POLARITY_NORMAL;
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.
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.
212 if (ret == 0 && channel->duty_cycle > 0)
213 state->duty_cycle = channel->duty_cycle;
215 state->duty_cycle = ret;
220 static struct pwm_device *
221 cros_ec_pwm_xlate(struct pwm_chip *pc, const struct of_phandle_args *args)
223 struct pwm_device *pwm;
225 if (args->args[0] >= pc->npwm)
226 return ERR_PTR(-EINVAL);
228 pwm = pwm_request_from_chip(pc, args->args[0], NULL);
232 /* The EC won't let us change the period */
233 pwm->args.period = EC_PWM_MAX_DUTY;
238 static const struct pwm_ops cros_ec_pwm_ops = {
239 .request = cros_ec_pwm_request,
240 .free = cros_ec_pwm_free,
241 .get_state = cros_ec_pwm_get_state,
242 .apply = cros_ec_pwm_apply,
243 .owner = THIS_MODULE,
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.
251 static int cros_ec_num_pwms(struct cros_ec_pwm_device *ec_pwm)
255 /* The index field is only 8 bits */
256 for (i = 0; i <= U8_MAX; i++) {
257 ret = cros_ec_pwm_get_duty(ec_pwm, i);
259 * We look for SUCCESS, INVALID_COMMAND, or INVALID_PARAM
260 * responses; everything else is treated as an error.
261 * The EC error codes map to -EOPNOTSUPP and -EINVAL,
262 * so check for those.
265 case -EOPNOTSUPP: /* invalid command */
267 case -EINVAL: /* invalid parameter */
279 static int cros_ec_pwm_probe(struct platform_device *pdev)
281 struct cros_ec_device *ec = dev_get_drvdata(pdev->dev.parent);
282 struct device *dev = &pdev->dev;
283 struct device_node *np = pdev->dev.of_node;
284 struct cros_ec_pwm_device *ec_pwm;
285 struct pwm_chip *chip;
289 dev_err(dev, "no parent EC device\n");
293 ec_pwm = devm_kzalloc(dev, sizeof(*ec_pwm), GFP_KERNEL);
296 chip = &ec_pwm->chip;
299 if (of_device_is_compatible(np, "google,cros-ec-pwm-type"))
300 ec_pwm->use_pwm_type = true;
304 chip->ops = &cros_ec_pwm_ops;
305 chip->of_xlate = cros_ec_pwm_xlate;
306 chip->of_pwm_n_cells = 1;
308 if (ec_pwm->use_pwm_type) {
309 chip->npwm = CROS_EC_PWM_DT_COUNT;
311 ret = cros_ec_num_pwms(ec_pwm);
313 dev_err(dev, "Couldn't find PWMs: %d\n", ret);
319 dev_dbg(dev, "Probed %u PWMs\n", chip->npwm);
321 ret = pwmchip_add(chip);
323 dev_err(dev, "cannot register PWM: %d\n", ret);
327 platform_set_drvdata(pdev, ec_pwm);
332 static int cros_ec_pwm_remove(struct platform_device *dev)
334 struct cros_ec_pwm_device *ec_pwm = platform_get_drvdata(dev);
335 struct pwm_chip *chip = &ec_pwm->chip;
337 pwmchip_remove(chip);
343 static const struct of_device_id cros_ec_pwm_of_match[] = {
344 { .compatible = "google,cros-ec-pwm" },
345 { .compatible = "google,cros-ec-pwm-type" },
348 MODULE_DEVICE_TABLE(of, cros_ec_pwm_of_match);
351 static struct platform_driver cros_ec_pwm_driver = {
352 .probe = cros_ec_pwm_probe,
353 .remove = cros_ec_pwm_remove,
355 .name = "cros-ec-pwm",
356 .of_match_table = of_match_ptr(cros_ec_pwm_of_match),
359 module_platform_driver(cros_ec_pwm_driver);
361 MODULE_ALIAS("platform:cros-ec-pwm");
362 MODULE_DESCRIPTION("ChromeOS EC PWM driver");
363 MODULE_LICENSE("GPL v2");