2 * ChromeOS EC multi-function device (I2C)
4 * Copyright (C) 2012 Google, Inc
6 * This software is licensed under the terms of the GNU General Public
7 * License version 2, as published by the Free Software Foundation, and
8 * may be copied, distributed, and modified under those terms.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
16 #include <linux/acpi.h>
17 #include <linux/delay.h>
18 #include <linux/kernel.h>
19 #include <linux/module.h>
20 #include <linux/i2c.h>
21 #include <linux/interrupt.h>
22 #include <linux/mfd/cros_ec.h>
23 #include <linux/mfd/cros_ec_commands.h>
24 #include <linux/platform_device.h>
25 #include <linux/slab.h>
28 * Request format for protocol v3
29 * byte 0 0xda (EC_COMMAND_PROTOCOL_3)
30 * byte 1-8 struct ec_host_request
31 * byte 10- response data
33 struct ec_host_request_i2c
{
34 /* Always 0xda to backward compatible with v2 struct */
35 uint8_t command_protocol
;
36 struct ec_host_request ec_request
;
41 * Response format for protocol v3
43 * byte 1 packet_length
44 * byte 2-9 struct ec_host_response
45 * byte 10- response data
47 struct ec_host_response_i2c
{
49 uint8_t packet_length
;
50 struct ec_host_response ec_response
;
53 static inline struct cros_ec_device
*to_ec_dev(struct device
*dev
)
55 struct i2c_client
*client
= to_i2c_client(dev
);
57 return i2c_get_clientdata(client
);
60 static int cros_ec_pkt_xfer_i2c(struct cros_ec_device
*ec_dev
,
61 struct cros_ec_command
*msg
)
63 struct i2c_client
*client
= ec_dev
->priv
;
70 struct i2c_msg i2c_msg
[2];
71 struct ec_host_response
*ec_response
;
72 struct ec_host_request_i2c
*ec_request_i2c
;
73 struct ec_host_response_i2c
*ec_response_i2c
;
74 int request_header_size
= sizeof(struct ec_host_request_i2c
);
75 int response_header_size
= sizeof(struct ec_host_response_i2c
);
77 i2c_msg
[0].addr
= client
->addr
;
79 i2c_msg
[1].addr
= client
->addr
;
80 i2c_msg
[1].flags
= I2C_M_RD
;
82 packet_len
= msg
->insize
+ response_header_size
;
83 BUG_ON(packet_len
> ec_dev
->din_size
);
85 i2c_msg
[1].len
= packet_len
;
86 i2c_msg
[1].buf
= (char *) in_buf
;
88 packet_len
= msg
->outsize
+ request_header_size
;
89 BUG_ON(packet_len
> ec_dev
->dout_size
);
90 out_buf
= ec_dev
->dout
;
91 i2c_msg
[0].len
= packet_len
;
92 i2c_msg
[0].buf
= (char *) out_buf
;
94 /* create request data */
95 ec_request_i2c
= (struct ec_host_request_i2c
*) out_buf
;
96 ec_request_i2c
->command_protocol
= EC_COMMAND_PROTOCOL_3
;
99 ret
= cros_ec_prepare_tx(ec_dev
, msg
);
102 /* send command to EC and read answer */
103 ret
= i2c_transfer(client
->adapter
, i2c_msg
, 2);
105 dev_dbg(ec_dev
->dev
, "i2c transfer failed: %d\n", ret
);
107 } else if (ret
!= 2) {
108 dev_err(ec_dev
->dev
, "failed to get response: %d\n", ret
);
113 ec_response_i2c
= (struct ec_host_response_i2c
*) in_buf
;
114 msg
->result
= ec_response_i2c
->result
;
115 ec_response
= &ec_response_i2c
->ec_response
;
117 switch (msg
->result
) {
120 case EC_RES_IN_PROGRESS
:
122 dev_dbg(ec_dev
->dev
, "command 0x%02x in progress\n",
127 dev_dbg(ec_dev
->dev
, "command 0x%02x returned %d\n",
128 msg
->command
, msg
->result
);
130 * When we send v3 request to v2 ec, ec won't recognize the
131 * 0xda (EC_COMMAND_PROTOCOL_3) and will return with status
132 * EC_RES_INVALID_COMMAND with zero data length.
134 * In case of invalid command for v3 protocol the data length
135 * will be at least sizeof(struct ec_host_response)
137 if (ec_response_i2c
->result
== EC_RES_INVALID_COMMAND
&&
138 ec_response_i2c
->packet_length
== 0) {
139 ret
= -EPROTONOSUPPORT
;
144 if (ec_response_i2c
->packet_length
< sizeof(struct ec_host_response
)) {
146 "response of %u bytes too short; not a full header\n",
147 ec_response_i2c
->packet_length
);
152 if (msg
->insize
< ec_response
->data_len
) {
154 "response data size is too large: expected %u, got %u\n",
156 ec_response
->data_len
);
161 /* copy response packet payload and compute checksum */
163 for (i
= 0; i
< sizeof(struct ec_host_response
); i
++)
164 sum
+= ((u8
*)ec_response
)[i
];
167 in_buf
+ response_header_size
,
168 ec_response
->data_len
);
169 for (i
= 0; i
< ec_response
->data_len
; i
++)
172 /* All bytes should sum to zero */
174 dev_err(ec_dev
->dev
, "bad packet checksum\n");
179 ret
= ec_response
->data_len
;
182 if (msg
->command
== EC_CMD_REBOOT_EC
)
183 msleep(EC_REBOOT_DELAY_MS
);
188 static int cros_ec_cmd_xfer_i2c(struct cros_ec_device
*ec_dev
,
189 struct cros_ec_command
*msg
)
191 struct i2c_client
*client
= ec_dev
->priv
;
199 struct i2c_msg i2c_msg
[2];
201 i2c_msg
[0].addr
= client
->addr
;
202 i2c_msg
[0].flags
= 0;
203 i2c_msg
[1].addr
= client
->addr
;
204 i2c_msg
[1].flags
= I2C_M_RD
;
207 * allocate larger packet (one byte for checksum, one byte for
208 * length, and one for result code)
210 packet_len
= msg
->insize
+ 3;
211 in_buf
= kzalloc(packet_len
, GFP_KERNEL
);
214 i2c_msg
[1].len
= packet_len
;
215 i2c_msg
[1].buf
= (char *)in_buf
;
218 * allocate larger packet (one byte for checksum, one for
219 * command code, one for length, and one for command version)
221 packet_len
= msg
->outsize
+ 4;
222 out_buf
= kzalloc(packet_len
, GFP_KERNEL
);
225 i2c_msg
[0].len
= packet_len
;
226 i2c_msg
[0].buf
= (char *)out_buf
;
228 out_buf
[0] = EC_CMD_VERSION0
+ msg
->version
;
229 out_buf
[1] = msg
->command
;
230 out_buf
[2] = msg
->outsize
;
232 /* copy message payload and compute checksum */
233 sum
= out_buf
[0] + out_buf
[1] + out_buf
[2];
234 for (i
= 0; i
< msg
->outsize
; i
++) {
235 out_buf
[3 + i
] = msg
->data
[i
];
236 sum
+= out_buf
[3 + i
];
238 out_buf
[3 + msg
->outsize
] = sum
;
240 /* send command to EC and read answer */
241 ret
= i2c_transfer(client
->adapter
, i2c_msg
, 2);
243 dev_err(ec_dev
->dev
, "i2c transfer failed: %d\n", ret
);
245 } else if (ret
!= 2) {
246 dev_err(ec_dev
->dev
, "failed to get response: %d\n", ret
);
251 /* check response error code */
252 msg
->result
= i2c_msg
[1].buf
[0];
253 ret
= cros_ec_check_result(ec_dev
, msg
);
258 if (len
> msg
->insize
) {
259 dev_err(ec_dev
->dev
, "packet too long (%d bytes, expected %d)",
265 /* copy response packet payload and compute checksum */
266 sum
= in_buf
[0] + in_buf
[1];
267 for (i
= 0; i
< len
; i
++) {
268 msg
->data
[i
] = in_buf
[2 + i
];
269 sum
+= in_buf
[2 + i
];
271 dev_dbg(ec_dev
->dev
, "packet: %*ph, sum = %02x\n",
272 i2c_msg
[1].len
, in_buf
, sum
);
273 if (sum
!= in_buf
[2 + len
]) {
274 dev_err(ec_dev
->dev
, "bad packet checksum\n");
283 if (msg
->command
== EC_CMD_REBOOT_EC
)
284 msleep(EC_REBOOT_DELAY_MS
);
289 static int cros_ec_i2c_probe(struct i2c_client
*client
,
290 const struct i2c_device_id
*dev_id
)
292 struct device
*dev
= &client
->dev
;
293 struct cros_ec_device
*ec_dev
= NULL
;
296 ec_dev
= devm_kzalloc(dev
, sizeof(*ec_dev
), GFP_KERNEL
);
300 i2c_set_clientdata(client
, ec_dev
);
302 ec_dev
->priv
= client
;
303 ec_dev
->irq
= client
->irq
;
304 ec_dev
->cmd_xfer
= cros_ec_cmd_xfer_i2c
;
305 ec_dev
->pkt_xfer
= cros_ec_pkt_xfer_i2c
;
306 ec_dev
->phys_name
= client
->adapter
->name
;
307 ec_dev
->din_size
= sizeof(struct ec_host_response_i2c
) +
308 sizeof(struct ec_response_get_protocol_info
);
309 ec_dev
->dout_size
= sizeof(struct ec_host_request_i2c
);
311 err
= cros_ec_register(ec_dev
);
313 dev_err(dev
, "cannot register EC\n");
320 static int cros_ec_i2c_remove(struct i2c_client
*client
)
322 struct cros_ec_device
*ec_dev
= i2c_get_clientdata(client
);
324 cros_ec_remove(ec_dev
);
329 #ifdef CONFIG_PM_SLEEP
330 static int cros_ec_i2c_suspend(struct device
*dev
)
332 struct cros_ec_device
*ec_dev
= to_ec_dev(dev
);
334 return cros_ec_suspend(ec_dev
);
337 static int cros_ec_i2c_resume(struct device
*dev
)
339 struct cros_ec_device
*ec_dev
= to_ec_dev(dev
);
341 return cros_ec_resume(ec_dev
);
345 static const struct dev_pm_ops cros_ec_i2c_pm_ops
= {
346 SET_LATE_SYSTEM_SLEEP_PM_OPS(cros_ec_i2c_suspend
, cros_ec_i2c_resume
)
350 static const struct of_device_id cros_ec_i2c_of_match
[] = {
351 { .compatible
= "google,cros-ec-i2c", },
354 MODULE_DEVICE_TABLE(of
, cros_ec_i2c_of_match
);
357 static const struct i2c_device_id cros_ec_i2c_id
[] = {
358 { "cros-ec-i2c", 0 },
361 MODULE_DEVICE_TABLE(i2c
, cros_ec_i2c_id
);
364 static const struct acpi_device_id cros_ec_i2c_acpi_id
[] = {
368 MODULE_DEVICE_TABLE(acpi
, cros_ec_i2c_acpi_id
);
371 static struct i2c_driver cros_ec_driver
= {
373 .name
= "cros-ec-i2c",
374 .acpi_match_table
= ACPI_PTR(cros_ec_i2c_acpi_id
),
375 .of_match_table
= of_match_ptr(cros_ec_i2c_of_match
),
376 .pm
= &cros_ec_i2c_pm_ops
,
378 .probe
= cros_ec_i2c_probe
,
379 .remove
= cros_ec_i2c_remove
,
380 .id_table
= cros_ec_i2c_id
,
383 module_i2c_driver(cros_ec_driver
);
385 MODULE_LICENSE("GPL");
386 MODULE_DESCRIPTION("ChromeOS EC multi function device");