2 * Copyright (C) 2016 Google, Inc
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License version 2, as published by
6 * the Free Software Foundation.
8 * Expose a PWM controlled by the ChromeOS EC to the host processor.
11 #include <linux/module.h>
12 #include <linux/mfd/cros_ec.h>
13 #include <linux/mfd/cros_ec_commands.h>
14 #include <linux/platform_device.h>
15 #include <linux/pwm.h>
16 #include <linux/slab.h>
19 * struct cros_ec_pwm_device - Driver data for EC PWM
22 * @ec: Pointer to EC device
23 * @chip: PWM controller chip
25 struct cros_ec_pwm_device
{
27 struct cros_ec_device
*ec
;
31 static inline struct cros_ec_pwm_device
*pwm_to_cros_ec_pwm(struct pwm_chip
*c
)
33 return container_of(c
, struct cros_ec_pwm_device
, chip
);
36 static int cros_ec_pwm_set_duty(struct cros_ec_device
*ec
, u8 index
, u16 duty
)
39 struct cros_ec_command msg
;
40 struct ec_params_pwm_set_duty params
;
42 struct ec_params_pwm_set_duty
*params
= &buf
.params
;
43 struct cros_ec_command
*msg
= &buf
.msg
;
45 memset(&buf
, 0, sizeof(buf
));
48 msg
->command
= EC_CMD_PWM_SET_DUTY
;
50 msg
->outsize
= sizeof(*params
);
53 params
->pwm_type
= EC_PWM_TYPE_GENERIC
;
54 params
->index
= index
;
56 return cros_ec_cmd_xfer_status(ec
, msg
);
59 static int __cros_ec_pwm_get_duty(struct cros_ec_device
*ec
, u8 index
,
63 struct cros_ec_command msg
;
65 struct ec_params_pwm_get_duty params
;
66 struct ec_response_pwm_get_duty resp
;
69 struct ec_params_pwm_get_duty
*params
= &buf
.params
;
70 struct ec_response_pwm_get_duty
*resp
= &buf
.resp
;
71 struct cros_ec_command
*msg
= &buf
.msg
;
74 memset(&buf
, 0, sizeof(buf
));
77 msg
->command
= EC_CMD_PWM_GET_DUTY
;
78 msg
->insize
= sizeof(*resp
);
79 msg
->outsize
= sizeof(*params
);
81 params
->pwm_type
= EC_PWM_TYPE_GENERIC
;
82 params
->index
= index
;
84 ret
= cros_ec_cmd_xfer_status(ec
, msg
);
86 *result
= msg
->result
;
93 static int cros_ec_pwm_get_duty(struct cros_ec_device
*ec
, u8 index
)
95 return __cros_ec_pwm_get_duty(ec
, index
, NULL
);
98 static int cros_ec_pwm_apply(struct pwm_chip
*chip
, struct pwm_device
*pwm
,
99 struct pwm_state
*state
)
101 struct cros_ec_pwm_device
*ec_pwm
= pwm_to_cros_ec_pwm(chip
);
104 /* The EC won't let us change the period */
105 if (state
->period
!= EC_PWM_MAX_DUTY
)
109 * EC doesn't separate the concept of duty cycle and enabled, but
110 * kernel does. Translate.
112 duty_cycle
= state
->enabled
? state
->duty_cycle
: 0;
114 return cros_ec_pwm_set_duty(ec_pwm
->ec
, pwm
->hwpwm
, duty_cycle
);
117 static void cros_ec_pwm_get_state(struct pwm_chip
*chip
, struct pwm_device
*pwm
,
118 struct pwm_state
*state
)
120 struct cros_ec_pwm_device
*ec_pwm
= pwm_to_cros_ec_pwm(chip
);
123 ret
= cros_ec_pwm_get_duty(ec_pwm
->ec
, pwm
->hwpwm
);
125 dev_err(chip
->dev
, "error getting initial duty: %d\n", ret
);
129 state
->enabled
= (ret
> 0);
130 state
->period
= EC_PWM_MAX_DUTY
;
132 /* Note that "disabled" and "duty cycle == 0" are treated the same */
133 state
->duty_cycle
= ret
;
136 static struct pwm_device
*
137 cros_ec_pwm_xlate(struct pwm_chip
*pc
, const struct of_phandle_args
*args
)
139 struct pwm_device
*pwm
;
141 if (args
->args
[0] >= pc
->npwm
)
142 return ERR_PTR(-EINVAL
);
144 pwm
= pwm_request_from_chip(pc
, args
->args
[0], NULL
);
148 /* The EC won't let us change the period */
149 pwm
->args
.period
= EC_PWM_MAX_DUTY
;
154 static const struct pwm_ops cros_ec_pwm_ops
= {
155 .get_state
= cros_ec_pwm_get_state
,
156 .apply
= cros_ec_pwm_apply
,
157 .owner
= THIS_MODULE
,
160 static int cros_ec_num_pwms(struct cros_ec_device
*ec
)
164 /* The index field is only 8 bits */
165 for (i
= 0; i
<= U8_MAX
; i
++) {
168 ret
= __cros_ec_pwm_get_duty(ec
, i
, &result
);
169 /* We want to parse EC protocol errors */
170 if (ret
< 0 && !(ret
== -EPROTO
&& result
))
174 * We look for SUCCESS, INVALID_COMMAND, or INVALID_PARAM
175 * responses; everything else is treated as an error.
177 if (result
== EC_RES_INVALID_COMMAND
)
179 else if (result
== EC_RES_INVALID_PARAM
)
188 static int cros_ec_pwm_probe(struct platform_device
*pdev
)
190 struct cros_ec_device
*ec
= dev_get_drvdata(pdev
->dev
.parent
);
191 struct device
*dev
= &pdev
->dev
;
192 struct cros_ec_pwm_device
*ec_pwm
;
193 struct pwm_chip
*chip
;
197 dev_err(dev
, "no parent EC device\n");
201 ec_pwm
= devm_kzalloc(dev
, sizeof(*ec_pwm
), GFP_KERNEL
);
204 chip
= &ec_pwm
->chip
;
209 chip
->ops
= &cros_ec_pwm_ops
;
210 chip
->of_xlate
= cros_ec_pwm_xlate
;
211 chip
->of_pwm_n_cells
= 1;
213 ret
= cros_ec_num_pwms(ec
);
215 dev_err(dev
, "Couldn't find PWMs: %d\n", ret
);
219 dev_dbg(dev
, "Probed %u PWMs\n", chip
->npwm
);
221 ret
= pwmchip_add(chip
);
223 dev_err(dev
, "cannot register PWM: %d\n", ret
);
227 platform_set_drvdata(pdev
, ec_pwm
);
232 static int cros_ec_pwm_remove(struct platform_device
*dev
)
234 struct cros_ec_pwm_device
*ec_pwm
= platform_get_drvdata(dev
);
235 struct pwm_chip
*chip
= &ec_pwm
->chip
;
237 return pwmchip_remove(chip
);
241 static const struct of_device_id cros_ec_pwm_of_match
[] = {
242 { .compatible
= "google,cros-ec-pwm" },
245 MODULE_DEVICE_TABLE(of
, cros_ec_pwm_of_match
);
248 static struct platform_driver cros_ec_pwm_driver
= {
249 .probe
= cros_ec_pwm_probe
,
250 .remove
= cros_ec_pwm_remove
,
252 .name
= "cros-ec-pwm",
253 .of_match_table
= of_match_ptr(cros_ec_pwm_of_match
),
256 module_platform_driver(cros_ec_pwm_driver
);
258 MODULE_ALIAS("platform:cros-ec-pwm");
259 MODULE_DESCRIPTION("ChromeOS EC PWM driver");
260 MODULE_LICENSE("GPL v2");