1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * Expose a PWM controlled by the ChromeOS EC to the host processor.
4  *
5  * Copyright (C) 2016 Google, Inc.
6  */
7 
8 #include <linux/module.h>
9 #include <linux/mfd/cros_ec.h>
10 #include <linux/mfd/cros_ec_commands.h>
11 #include <linux/platform_device.h>
12 #include <linux/pwm.h>
13 #include <linux/slab.h>
14 
15 /**
16  * struct cros_ec_pwm_device - Driver data for EC PWM
17  *
18  * @dev: Device node
19  * @ec: Pointer to EC device
20  * @chip: PWM controller chip
21  */
22 struct cros_ec_pwm_device {
23 	struct device *dev;
24 	struct cros_ec_device *ec;
25 	struct pwm_chip chip;
26 };
27 
pwm_to_cros_ec_pwm(struct pwm_chip * c)28 static inline struct cros_ec_pwm_device *pwm_to_cros_ec_pwm(struct pwm_chip *c)
29 {
30 	return container_of(c, struct cros_ec_pwm_device, chip);
31 }
32 
cros_ec_pwm_set_duty(struct cros_ec_device * ec,u8 index,u16 duty)33 static int cros_ec_pwm_set_duty(struct cros_ec_device *ec, u8 index, u16 duty)
34 {
35 	struct {
36 		struct cros_ec_command msg;
37 		struct ec_params_pwm_set_duty params;
38 	} __packed buf;
39 	struct ec_params_pwm_set_duty *params = &buf.params;
40 	struct cros_ec_command *msg = &buf.msg;
41 
42 	memset(&buf, 0, sizeof(buf));
43 
44 	msg->version = 0;
45 	msg->command = EC_CMD_PWM_SET_DUTY;
46 	msg->insize = 0;
47 	msg->outsize = sizeof(*params);
48 
49 	params->duty = duty;
50 	params->pwm_type = EC_PWM_TYPE_GENERIC;
51 	params->index = index;
52 
53 	return cros_ec_cmd_xfer_status(ec, msg);
54 }
55 
__cros_ec_pwm_get_duty(struct cros_ec_device * ec,u8 index,u32 * result)56 static int __cros_ec_pwm_get_duty(struct cros_ec_device *ec, u8 index,
57 				  u32 *result)
58 {
59 	struct {
60 		struct cros_ec_command msg;
61 		union {
62 			struct ec_params_pwm_get_duty params;
63 			struct ec_response_pwm_get_duty resp;
64 		};
65 	} __packed buf;
66 	struct ec_params_pwm_get_duty *params = &buf.params;
67 	struct ec_response_pwm_get_duty *resp = &buf.resp;
68 	struct cros_ec_command *msg = &buf.msg;
69 	int ret;
70 
71 	memset(&buf, 0, sizeof(buf));
72 
73 	msg->version = 0;
74 	msg->command = EC_CMD_PWM_GET_DUTY;
75 	msg->insize = sizeof(*resp);
76 	msg->outsize = sizeof(*params);
77 
78 	params->pwm_type = EC_PWM_TYPE_GENERIC;
79 	params->index = index;
80 
81 	ret = cros_ec_cmd_xfer_status(ec, msg);
82 	if (result)
83 		*result = msg->result;
84 	if (ret < 0)
85 		return ret;
86 
87 	return resp->duty;
88 }
89 
cros_ec_pwm_get_duty(struct cros_ec_device * ec,u8 index)90 static int cros_ec_pwm_get_duty(struct cros_ec_device *ec, u8 index)
91 {
92 	return __cros_ec_pwm_get_duty(ec, index, NULL);
93 }
94 
cros_ec_pwm_apply(struct pwm_chip * chip,struct pwm_device * pwm,struct pwm_state * state)95 static int cros_ec_pwm_apply(struct pwm_chip *chip, struct pwm_device *pwm,
96 			     struct pwm_state *state)
97 {
98 	struct cros_ec_pwm_device *ec_pwm = pwm_to_cros_ec_pwm(chip);
99 	int duty_cycle;
100 
101 	/* The EC won't let us change the period */
102 	if (state->period != EC_PWM_MAX_DUTY)
103 		return -EINVAL;
104 
105 	/*
106 	 * EC doesn't separate the concept of duty cycle and enabled, but
107 	 * kernel does. Translate.
108 	 */
109 	duty_cycle = state->enabled ? state->duty_cycle : 0;
110 
111 	return cros_ec_pwm_set_duty(ec_pwm->ec, pwm->hwpwm, duty_cycle);
112 }
113 
cros_ec_pwm_get_state(struct pwm_chip * chip,struct pwm_device * pwm,struct pwm_state * state)114 static void cros_ec_pwm_get_state(struct pwm_chip *chip, struct pwm_device *pwm,
115 				  struct pwm_state *state)
116 {
117 	struct cros_ec_pwm_device *ec_pwm = pwm_to_cros_ec_pwm(chip);
118 	int ret;
119 
120 	ret = cros_ec_pwm_get_duty(ec_pwm->ec, pwm->hwpwm);
121 	if (ret < 0) {
122 		dev_err(chip->dev, "error getting initial duty: %d\n", ret);
123 		return;
124 	}
125 
126 	state->enabled = (ret > 0);
127 	state->period = EC_PWM_MAX_DUTY;
128 	state->polarity = PWM_POLARITY_NORMAL;
129 
130 	/* Note that "disabled" and "duty cycle == 0" are treated the same */
131 	state->duty_cycle = ret;
132 }
133 
134 static struct pwm_device *
cros_ec_pwm_xlate(struct pwm_chip * pc,const struct of_phandle_args * args)135 cros_ec_pwm_xlate(struct pwm_chip *pc, const struct of_phandle_args *args)
136 {
137 	struct pwm_device *pwm;
138 
139 	if (args->args[0] >= pc->npwm)
140 		return ERR_PTR(-EINVAL);
141 
142 	pwm = pwm_request_from_chip(pc, args->args[0], NULL);
143 	if (IS_ERR(pwm))
144 		return pwm;
145 
146 	/* The EC won't let us change the period */
147 	pwm->args.period = EC_PWM_MAX_DUTY;
148 
149 	return pwm;
150 }
151 
152 static const struct pwm_ops cros_ec_pwm_ops = {
153 	.get_state	= cros_ec_pwm_get_state,
154 	.apply		= cros_ec_pwm_apply,
155 	.owner		= THIS_MODULE,
156 };
157 
cros_ec_num_pwms(struct cros_ec_device * ec)158 static int cros_ec_num_pwms(struct cros_ec_device *ec)
159 {
160 	int i, ret;
161 
162 	/* The index field is only 8 bits */
163 	for (i = 0; i <= U8_MAX; i++) {
164 		u32 result = 0;
165 
166 		ret = __cros_ec_pwm_get_duty(ec, i, &result);
167 		/* We want to parse EC protocol errors */
168 		if (ret < 0 && !(ret == -EPROTO && result))
169 			return ret;
170 
171 		/*
172 		 * We look for SUCCESS, INVALID_COMMAND, or INVALID_PARAM
173 		 * responses; everything else is treated as an error.
174 		 */
175 		if (result == EC_RES_INVALID_COMMAND)
176 			return -ENODEV;
177 		else if (result == EC_RES_INVALID_PARAM)
178 			return i;
179 		else if (result)
180 			return -EPROTO;
181 	}
182 
183 	return U8_MAX;
184 }
185 
cros_ec_pwm_probe(struct platform_device * pdev)186 static int cros_ec_pwm_probe(struct platform_device *pdev)
187 {
188 	struct cros_ec_device *ec = dev_get_drvdata(pdev->dev.parent);
189 	struct device *dev = &pdev->dev;
190 	struct cros_ec_pwm_device *ec_pwm;
191 	struct pwm_chip *chip;
192 	int ret;
193 
194 	if (!ec) {
195 		dev_err(dev, "no parent EC device\n");
196 		return -EINVAL;
197 	}
198 
199 	ec_pwm = devm_kzalloc(dev, sizeof(*ec_pwm), GFP_KERNEL);
200 	if (!ec_pwm)
201 		return -ENOMEM;
202 	chip = &ec_pwm->chip;
203 	ec_pwm->ec = ec;
204 
205 	/* PWM chip */
206 	chip->dev = dev;
207 	chip->ops = &cros_ec_pwm_ops;
208 	chip->of_xlate = cros_ec_pwm_xlate;
209 	chip->of_pwm_n_cells = 1;
210 	chip->base = -1;
211 	ret = cros_ec_num_pwms(ec);
212 	if (ret < 0) {
213 		dev_err(dev, "Couldn't find PWMs: %d\n", ret);
214 		return ret;
215 	}
216 	chip->npwm = ret;
217 	dev_dbg(dev, "Probed %u PWMs\n", chip->npwm);
218 
219 	ret = pwmchip_add(chip);
220 	if (ret < 0) {
221 		dev_err(dev, "cannot register PWM: %d\n", ret);
222 		return ret;
223 	}
224 
225 	platform_set_drvdata(pdev, ec_pwm);
226 
227 	return ret;
228 }
229 
cros_ec_pwm_remove(struct platform_device * dev)230 static int cros_ec_pwm_remove(struct platform_device *dev)
231 {
232 	struct cros_ec_pwm_device *ec_pwm = platform_get_drvdata(dev);
233 	struct pwm_chip *chip = &ec_pwm->chip;
234 
235 	return pwmchip_remove(chip);
236 }
237 
238 #ifdef CONFIG_OF
239 static const struct of_device_id cros_ec_pwm_of_match[] = {
240 	{ .compatible = "google,cros-ec-pwm" },
241 	{},
242 };
243 MODULE_DEVICE_TABLE(of, cros_ec_pwm_of_match);
244 #endif
245 
246 static struct platform_driver cros_ec_pwm_driver = {
247 	.probe = cros_ec_pwm_probe,
248 	.remove = cros_ec_pwm_remove,
249 	.driver = {
250 		.name = "cros-ec-pwm",
251 		.of_match_table = of_match_ptr(cros_ec_pwm_of_match),
252 	},
253 };
254 module_platform_driver(cros_ec_pwm_driver);
255 
256 MODULE_ALIAS("platform:cros-ec-pwm");
257 MODULE_DESCRIPTION("ChromeOS EC PWM driver");
258 MODULE_LICENSE("GPL v2");
259