Blame view

drivers/mfd/cros_ec_i2c.c 9.19 KB
899690094   Simon Glass   mfd: Add ChromeOS...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  /*
   * ChromeOS EC multi-function device (I2C)
   *
   * Copyright (C) 2012 Google, Inc
   *
   * This software is licensed under the terms of the GNU General Public
   * License version 2, as published by the Free Software Foundation, and
   * may be copied, distributed, and modified under those terms.
   *
   * This program is distributed in the hope that it will be useful,
   * but WITHOUT ANY WARRANTY; without even the implied warranty of
   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   * GNU General Public License for more details.
   */
d36540707   Stephen Barber   mfd: cros_ec: add...
15
  #include <linux/delay.h>
899690094   Simon Glass   mfd: Add ChromeOS...
16
17
18
19
20
21
22
23
  #include <linux/kernel.h>
  #include <linux/module.h>
  #include <linux/i2c.h>
  #include <linux/interrupt.h>
  #include <linux/mfd/cros_ec.h>
  #include <linux/mfd/cros_ec_commands.h>
  #include <linux/platform_device.h>
  #include <linux/slab.h>
d36540707   Stephen Barber   mfd: cros_ec: add...
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
  /**
   * Request format for protocol v3
   * byte 0	0xda (EC_COMMAND_PROTOCOL_3)
   * byte 1-8	struct ec_host_request
   * byte 10-	response data
   */
  struct ec_host_request_i2c {
  	/* Always 0xda to backward compatible with v2 struct */
  	uint8_t  command_protocol;
  	struct ec_host_request ec_request;
  } __packed;
  
  
  /*
   * Response format for protocol v3
   * byte 0	result code
   * byte 1	packet_length
   * byte 2-9	struct ec_host_response
   * byte 10-	response data
   */
  struct ec_host_response_i2c {
  	uint8_t result;
  	uint8_t packet_length;
  	struct ec_host_response ec_response;
  } __packed;
899690094   Simon Glass   mfd: Add ChromeOS...
49
50
51
52
53
54
  static inline struct cros_ec_device *to_ec_dev(struct device *dev)
  {
  	struct i2c_client *client = to_i2c_client(dev);
  
  	return i2c_get_clientdata(client);
  }
d36540707   Stephen Barber   mfd: cros_ec: add...
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
  static int cros_ec_pkt_xfer_i2c(struct cros_ec_device *ec_dev,
  				struct cros_ec_command *msg)
  {
  	struct i2c_client *client = ec_dev->priv;
  	int ret = -ENOMEM;
  	int i;
  	int packet_len;
  	u8 *out_buf = NULL;
  	u8 *in_buf = NULL;
  	u8 sum;
  	struct i2c_msg i2c_msg[2];
  	struct ec_host_response *ec_response;
  	struct ec_host_request_i2c *ec_request_i2c;
  	struct ec_host_response_i2c *ec_response_i2c;
  	int request_header_size = sizeof(struct ec_host_request_i2c);
  	int response_header_size = sizeof(struct ec_host_response_i2c);
  
  	i2c_msg[0].addr = client->addr;
  	i2c_msg[0].flags = 0;
  	i2c_msg[1].addr = client->addr;
  	i2c_msg[1].flags = I2C_M_RD;
  
  	packet_len = msg->insize + response_header_size;
  	BUG_ON(packet_len > ec_dev->din_size);
  	in_buf = ec_dev->din;
  	i2c_msg[1].len = packet_len;
  	i2c_msg[1].buf = (char *) in_buf;
  
  	packet_len = msg->outsize + request_header_size;
  	BUG_ON(packet_len > ec_dev->dout_size);
  	out_buf = ec_dev->dout;
  	i2c_msg[0].len = packet_len;
  	i2c_msg[0].buf = (char *) out_buf;
  
  	/* create request data */
  	ec_request_i2c = (struct ec_host_request_i2c *) out_buf;
  	ec_request_i2c->command_protocol = EC_COMMAND_PROTOCOL_3;
  
  	ec_dev->dout++;
  	ret = cros_ec_prepare_tx(ec_dev, msg);
  	ec_dev->dout--;
  
  	/* send command to EC and read answer */
  	ret = i2c_transfer(client->adapter, i2c_msg, 2);
  	if (ret < 0) {
  		dev_dbg(ec_dev->dev, "i2c transfer failed: %d
  ", ret);
  		goto done;
  	} else if (ret != 2) {
  		dev_err(ec_dev->dev, "failed to get response: %d
  ", ret);
  		ret = -EIO;
  		goto done;
  	}
  
  	ec_response_i2c = (struct ec_host_response_i2c *) in_buf;
  	msg->result = ec_response_i2c->result;
  	ec_response = &ec_response_i2c->ec_response;
  
  	switch (msg->result) {
  	case EC_RES_SUCCESS:
  		break;
  	case EC_RES_IN_PROGRESS:
  		ret = -EAGAIN;
  		dev_dbg(ec_dev->dev, "command 0x%02x in progress
  ",
  			msg->command);
  		goto done;
  
  	default:
  		dev_dbg(ec_dev->dev, "command 0x%02x returned %d
  ",
  			msg->command, msg->result);
  		/*
  		 * When we send v3 request to v2 ec, ec won't recognize the
  		 * 0xda (EC_COMMAND_PROTOCOL_3) and will return with status
  		 * EC_RES_INVALID_COMMAND with zero data length.
  		 *
  		 * In case of invalid command for v3 protocol the data length
  		 * will be at least sizeof(struct ec_host_response)
  		 */
  		if (ec_response_i2c->result == EC_RES_INVALID_COMMAND &&
  		    ec_response_i2c->packet_length == 0) {
  			ret = -EPROTONOSUPPORT;
  			goto done;
  		}
  	}
  
  	if (ec_response_i2c->packet_length < sizeof(struct ec_host_response)) {
  		dev_err(ec_dev->dev,
  			"response of %u bytes too short; not a full header
  ",
  			ec_response_i2c->packet_length);
  		ret = -EBADMSG;
  		goto done;
  	}
  
  	if (msg->insize < ec_response->data_len) {
  		dev_err(ec_dev->dev,
  			"response data size is too large: expected %u, got %u
  ",
  			msg->insize,
  			ec_response->data_len);
  		ret = -EMSGSIZE;
  		goto done;
  	}
  
  	/* copy response packet payload and compute checksum */
  	sum = 0;
  	for (i = 0; i < sizeof(struct ec_host_response); i++)
  		sum += ((u8 *)ec_response)[i];
  
  	memcpy(msg->data,
  	       in_buf + response_header_size,
  	       ec_response->data_len);
  	for (i = 0; i < ec_response->data_len; i++)
  		sum += msg->data[i];
  
  	/* All bytes should sum to zero */
  	if (sum) {
  		dev_err(ec_dev->dev, "bad packet checksum
  ");
  		ret = -EBADMSG;
  		goto done;
  	}
  
  	ret = ec_response->data_len;
  
  done:
  	if (msg->command == EC_CMD_REBOOT_EC)
  		msleep(EC_REBOOT_DELAY_MS);
  
  	return ret;
  }
7e6cb5b4d   Bill Richardson   mfd: cros_ec: Twe...
189
  static int cros_ec_cmd_xfer_i2c(struct cros_ec_device *ec_dev,
5d4773e27   Bill Richardson   mfd: cros_ec: Use...
190
  				struct cros_ec_command *msg)
899690094   Simon Glass   mfd: Add ChromeOS...
191
192
193
194
  {
  	struct i2c_client *client = ec_dev->priv;
  	int ret = -ENOMEM;
  	int i;
d6c15ed2b   Doug Anderson   mfd: cros_ec: Use...
195
  	int len;
899690094   Simon Glass   mfd: Add ChromeOS...
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
  	int packet_len;
  	u8 *out_buf = NULL;
  	u8 *in_buf = NULL;
  	u8 sum;
  	struct i2c_msg i2c_msg[2];
  
  	i2c_msg[0].addr = client->addr;
  	i2c_msg[0].flags = 0;
  	i2c_msg[1].addr = client->addr;
  	i2c_msg[1].flags = I2C_M_RD;
  
  	/*
  	 * allocate larger packet (one byte for checksum, one byte for
  	 * length, and one for result code)
  	 */
5d4773e27   Bill Richardson   mfd: cros_ec: Use...
211
  	packet_len = msg->insize + 3;
899690094   Simon Glass   mfd: Add ChromeOS...
212
213
214
215
216
217
218
219
220
221
  	in_buf = kzalloc(packet_len, GFP_KERNEL);
  	if (!in_buf)
  		goto done;
  	i2c_msg[1].len = packet_len;
  	i2c_msg[1].buf = (char *)in_buf;
  
  	/*
  	 * allocate larger packet (one byte for checksum, one for
  	 * command code, one for length, and one for command version)
  	 */
5d4773e27   Bill Richardson   mfd: cros_ec: Use...
222
  	packet_len = msg->outsize + 4;
899690094   Simon Glass   mfd: Add ChromeOS...
223
224
225
226
227
228
229
  	out_buf = kzalloc(packet_len, GFP_KERNEL);
  	if (!out_buf)
  		goto done;
  	i2c_msg[0].len = packet_len;
  	i2c_msg[0].buf = (char *)out_buf;
  
  	out_buf[0] = EC_CMD_VERSION0 + msg->version;
5d4773e27   Bill Richardson   mfd: cros_ec: Use...
230
231
  	out_buf[1] = msg->command;
  	out_buf[2] = msg->outsize;
899690094   Simon Glass   mfd: Add ChromeOS...
232
233
234
  
  	/* copy message payload and compute checksum */
  	sum = out_buf[0] + out_buf[1] + out_buf[2];
5d4773e27   Bill Richardson   mfd: cros_ec: Use...
235
  	for (i = 0; i < msg->outsize; i++) {
a84117844   Javier Martinez Canillas   mfd: cros_ec: Use...
236
  		out_buf[3 + i] = msg->data[i];
899690094   Simon Glass   mfd: Add ChromeOS...
237
238
  		sum += out_buf[3 + i];
  	}
5d4773e27   Bill Richardson   mfd: cros_ec: Use...
239
  	out_buf[3 + msg->outsize] = sum;
899690094   Simon Glass   mfd: Add ChromeOS...
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
  
  	/* send command to EC and read answer */
  	ret = i2c_transfer(client->adapter, i2c_msg, 2);
  	if (ret < 0) {
  		dev_err(ec_dev->dev, "i2c transfer failed: %d
  ", ret);
  		goto done;
  	} else if (ret != 2) {
  		dev_err(ec_dev->dev, "failed to get response: %d
  ", ret);
  		ret = -EIO;
  		goto done;
  	}
  
  	/* check response error code */
6db07b633   Bill Richardson   mfd: cros_ec: Che...
255
256
257
  	msg->result = i2c_msg[1].buf[0];
  	ret = cros_ec_check_result(ec_dev, msg);
  	if (ret)
899690094   Simon Glass   mfd: Add ChromeOS...
258
  		goto done;
899690094   Simon Glass   mfd: Add ChromeOS...
259

d6c15ed2b   Doug Anderson   mfd: cros_ec: Use...
260
261
262
263
264
265
266
  	len = in_buf[1];
  	if (len > msg->insize) {
  		dev_err(ec_dev->dev, "packet too long (%d bytes, expected %d)",
  			len, msg->insize);
  		ret = -ENOSPC;
  		goto done;
  	}
899690094   Simon Glass   mfd: Add ChromeOS...
267
268
  	/* copy response packet payload and compute checksum */
  	sum = in_buf[0] + in_buf[1];
d6c15ed2b   Doug Anderson   mfd: cros_ec: Use...
269
  	for (i = 0; i < len; i++) {
a84117844   Javier Martinez Canillas   mfd: cros_ec: Use...
270
  		msg->data[i] = in_buf[2 + i];
899690094   Simon Glass   mfd: Add ChromeOS...
271
272
273
274
275
  		sum += in_buf[2 + i];
  	}
  	dev_dbg(ec_dev->dev, "packet: %*ph, sum = %02x
  ",
  		i2c_msg[1].len, in_buf, sum);
d6c15ed2b   Doug Anderson   mfd: cros_ec: Use...
276
  	if (sum != in_buf[2 + len]) {
899690094   Simon Glass   mfd: Add ChromeOS...
277
278
279
280
281
  		dev_err(ec_dev->dev, "bad packet checksum
  ");
  		ret = -EBADMSG;
  		goto done;
  	}
d6c15ed2b   Doug Anderson   mfd: cros_ec: Use...
282
  	ret = len;
d36540707   Stephen Barber   mfd: cros_ec: add...
283
  done:
899690094   Simon Glass   mfd: Add ChromeOS...
284
285
  	kfree(in_buf);
  	kfree(out_buf);
d36540707   Stephen Barber   mfd: cros_ec: add...
286
287
  	if (msg->command == EC_CMD_REBOOT_EC)
  		msleep(EC_REBOOT_DELAY_MS);
899690094   Simon Glass   mfd: Add ChromeOS...
288
289
  	return ret;
  }
192afe5e1   Thierry Reding   mfd: cros ec: i2c...
290
  static int cros_ec_i2c_probe(struct i2c_client *client,
899690094   Simon Glass   mfd: Add ChromeOS...
291
292
293
294
295
  			     const struct i2c_device_id *dev_id)
  {
  	struct device *dev = &client->dev;
  	struct cros_ec_device *ec_dev = NULL;
  	int err;
2756db6c6   Lee Jones   mfd: cros_ec_i2c:...
296
  	ec_dev = devm_kzalloc(dev, sizeof(*ec_dev), GFP_KERNEL);
899690094   Simon Glass   mfd: Add ChromeOS...
297
298
299
300
  	if (!ec_dev)
  		return -ENOMEM;
  
  	i2c_set_clientdata(client, ec_dev);
899690094   Simon Glass   mfd: Add ChromeOS...
301
302
303
  	ec_dev->dev = dev;
  	ec_dev->priv = client;
  	ec_dev->irq = client->irq;
7e6cb5b4d   Bill Richardson   mfd: cros_ec: Twe...
304
  	ec_dev->cmd_xfer = cros_ec_cmd_xfer_i2c;
d36540707   Stephen Barber   mfd: cros_ec: add...
305
  	ec_dev->pkt_xfer = cros_ec_pkt_xfer_i2c;
899690094   Simon Glass   mfd: Add ChromeOS...
306
  	ec_dev->phys_name = client->adapter->name;
d36540707   Stephen Barber   mfd: cros_ec: add...
307
  	ec_dev->din_size = sizeof(struct ec_host_response_i2c) +
2c7589af3   Stephen Barber   mfd: cros_ec: add...
308
  			   sizeof(struct ec_response_get_protocol_info);
d36540707   Stephen Barber   mfd: cros_ec: add...
309
  	ec_dev->dout_size = sizeof(struct ec_host_request_i2c);
899690094   Simon Glass   mfd: Add ChromeOS...
310
311
312
313
314
315
316
317
318
319
  
  	err = cros_ec_register(ec_dev);
  	if (err) {
  		dev_err(dev, "cannot register EC
  ");
  		return err;
  	}
  
  	return 0;
  }
192afe5e1   Thierry Reding   mfd: cros ec: i2c...
320
  static int cros_ec_i2c_remove(struct i2c_client *client)
899690094   Simon Glass   mfd: Add ChromeOS...
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
  {
  	struct cros_ec_device *ec_dev = i2c_get_clientdata(client);
  
  	cros_ec_remove(ec_dev);
  
  	return 0;
  }
  
  #ifdef CONFIG_PM_SLEEP
  static int cros_ec_i2c_suspend(struct device *dev)
  {
  	struct cros_ec_device *ec_dev = to_ec_dev(dev);
  
  	return cros_ec_suspend(ec_dev);
  }
  
  static int cros_ec_i2c_resume(struct device *dev)
  {
  	struct cros_ec_device *ec_dev = to_ec_dev(dev);
  
  	return cros_ec_resume(ec_dev);
  }
  #endif
  
  static SIMPLE_DEV_PM_OPS(cros_ec_i2c_pm_ops, cros_ec_i2c_suspend,
  			  cros_ec_i2c_resume);
385c0012d   Javier Martinez Canillas   mfd: cros_ec_i2c:...
347
348
349
350
351
  static const struct of_device_id cros_ec_i2c_of_match[] = {
  	{ .compatible = "google,cros-ec-i2c", },
  	{ /* sentinel */ },
  };
  MODULE_DEVICE_TABLE(of, cros_ec_i2c_of_match);
899690094   Simon Glass   mfd: Add ChromeOS...
352
353
354
355
356
357
358
359
360
  static const struct i2c_device_id cros_ec_i2c_id[] = {
  	{ "cros-ec-i2c", 0 },
  	{ }
  };
  MODULE_DEVICE_TABLE(i2c, cros_ec_i2c_id);
  
  static struct i2c_driver cros_ec_driver = {
  	.driver	= {
  		.name	= "cros-ec-i2c",
385c0012d   Javier Martinez Canillas   mfd: cros_ec_i2c:...
361
  		.of_match_table = of_match_ptr(cros_ec_i2c_of_match),
899690094   Simon Glass   mfd: Add ChromeOS...
362
363
  		.pm	= &cros_ec_i2c_pm_ops,
  	},
192afe5e1   Thierry Reding   mfd: cros ec: i2c...
364
365
  	.probe		= cros_ec_i2c_probe,
  	.remove		= cros_ec_i2c_remove,
899690094   Simon Glass   mfd: Add ChromeOS...
366
367
368
369
370
371
372
  	.id_table	= cros_ec_i2c_id,
  };
  
  module_i2c_driver(cros_ec_driver);
  
  MODULE_LICENSE("GPL");
  MODULE_DESCRIPTION("ChromeOS EC multi function device");