blob: 621d1752176a9175c75a78ddba18680cbc305965 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +08002/*
3 * Chromium OS cros_ec driver
4 *
5 * Copyright (c) 2012 The Chromium OS Authors.
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +08006 */
7
8/*
Simon Glassece28862014-02-27 13:26:07 -07009 * This is the interface to the Chrome OS EC. It provides keyboard functions,
10 * power control and battery management. Quite a few other functions are
11 * provided to enable the EC software to be updated, talk to the EC's I2C bus
12 * and store a small amount of data in a memory which persists while the EC
13 * is not reset.
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +080014 */
15
Simon Glassa77024d2018-11-06 15:21:19 -070016#define LOG_CATEGORY UCLASS_CROS_EC
17
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +080018#include <common.h>
19#include <command.h>
Simon Glass44569b52014-10-13 23:42:14 -060020#include <dm.h>
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +080021#include <i2c.h>
22#include <cros_ec.h>
23#include <fdtdec.h>
Simon Glass0f2af882020-05-10 11:40:05 -060024#include <log.h>
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +080025#include <malloc.h>
26#include <spi.h>
Simon Glassdbd79542020-05-10 11:40:11 -060027#include <linux/delay.h>
Masahiro Yamada56a931c2016-09-21 11:28:55 +090028#include <linux/errno.h>
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +080029#include <asm/io.h>
30#include <asm-generic/gpio.h>
Simon Glass44569b52014-10-13 23:42:14 -060031#include <dm/device-internal.h>
Simon Glassb35e6d62017-05-18 20:09:23 -060032#include <dm/of_extra.h>
Simon Glass44569b52014-10-13 23:42:14 -060033#include <dm/uclass-internal.h>
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +080034
35#ifdef DEBUG_TRACE
36#define debug_trace(fmt, b...) debug(fmt, #b)
37#else
38#define debug_trace(fmt, b...)
39#endif
40
41enum {
42 /* Timeout waiting for a flash erase command to complete */
43 CROS_EC_CMD_TIMEOUT_MS = 5000,
44 /* Timeout waiting for a synchronous hash to be recomputed */
45 CROS_EC_CMD_HASH_TIMEOUT_MS = 2000,
Simon Glassebee5332021-01-16 14:52:23 -070046
47 /* Wait 10 ms between attempts to check if EC's hash is ready */
48 CROS_EC_HASH_CHECK_DELAY_MS = 10,
49
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +080050};
51
Simon Glass153f2522018-11-06 15:21:22 -070052#define INVALID_HCMD 0xFF
53
54/*
55 * Map UHEPI masks to non UHEPI commands in order to support old EC FW
56 * which does not support UHEPI command.
57 */
58static const struct {
59 u8 set_cmd;
60 u8 clear_cmd;
61 u8 get_cmd;
62} event_map[] = {
63 [EC_HOST_EVENT_MAIN] = {
64 INVALID_HCMD, EC_CMD_HOST_EVENT_CLEAR,
65 INVALID_HCMD,
66 },
67 [EC_HOST_EVENT_B] = {
68 INVALID_HCMD, EC_CMD_HOST_EVENT_CLEAR_B,
69 EC_CMD_HOST_EVENT_GET_B,
70 },
71 [EC_HOST_EVENT_SCI_MASK] = {
72 EC_CMD_HOST_EVENT_SET_SCI_MASK, INVALID_HCMD,
73 EC_CMD_HOST_EVENT_GET_SCI_MASK,
74 },
75 [EC_HOST_EVENT_SMI_MASK] = {
76 EC_CMD_HOST_EVENT_SET_SMI_MASK, INVALID_HCMD,
77 EC_CMD_HOST_EVENT_GET_SMI_MASK,
78 },
79 [EC_HOST_EVENT_ALWAYS_REPORT_MASK] = {
80 INVALID_HCMD, INVALID_HCMD, INVALID_HCMD,
81 },
82 [EC_HOST_EVENT_ACTIVE_WAKE_MASK] = {
83 EC_CMD_HOST_EVENT_SET_WAKE_MASK, INVALID_HCMD,
84 EC_CMD_HOST_EVENT_GET_WAKE_MASK,
85 },
86 [EC_HOST_EVENT_LAZY_WAKE_MASK_S0IX] = {
87 EC_CMD_HOST_EVENT_SET_WAKE_MASK, INVALID_HCMD,
88 EC_CMD_HOST_EVENT_GET_WAKE_MASK,
89 },
90 [EC_HOST_EVENT_LAZY_WAKE_MASK_S3] = {
91 EC_CMD_HOST_EVENT_SET_WAKE_MASK, INVALID_HCMD,
92 EC_CMD_HOST_EVENT_GET_WAKE_MASK,
93 },
94 [EC_HOST_EVENT_LAZY_WAKE_MASK_S5] = {
95 EC_CMD_HOST_EVENT_SET_WAKE_MASK, INVALID_HCMD,
96 EC_CMD_HOST_EVENT_GET_WAKE_MASK,
97 },
98};
99
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +0800100void cros_ec_dump_data(const char *name, int cmd, const uint8_t *data, int len)
101{
102#ifdef DEBUG
103 int i;
104
105 printf("%s: ", name);
106 if (cmd != -1)
107 printf("cmd=%#x: ", cmd);
108 for (i = 0; i < len; i++)
109 printf("%02x ", data[i]);
110 printf("\n");
111#endif
112}
113
114/*
115 * Calculate a simple 8-bit checksum of a data block
116 *
117 * @param data Data block to checksum
118 * @param size Size of data block in bytes
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100119 * Return: checksum value (0 to 255)
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +0800120 */
121int cros_ec_calc_checksum(const uint8_t *data, int size)
122{
123 int csum, i;
124
125 for (i = csum = 0; i < size; i++)
126 csum += data[i];
127 return csum & 0xff;
128}
129
Simon Glass13c7c5b2014-02-27 13:26:09 -0700130/**
131 * Create a request packet for protocol version 3.
132 *
133 * The packet is stored in the device's internal output buffer.
134 *
135 * @param dev CROS-EC device
136 * @param cmd Command to send (EC_CMD_...)
137 * @param cmd_version Version of command to send (EC_VER_...)
138 * @param dout Output data (may be NULL If dout_len=0)
139 * @param dout_len Size of output data in bytes
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100140 * Return: packet size in bytes, or <0 if error.
Simon Glass13c7c5b2014-02-27 13:26:09 -0700141 */
Simon Glassbed43522018-10-01 12:22:22 -0600142static int create_proto3_request(struct cros_ec_dev *cdev,
Simon Glass13c7c5b2014-02-27 13:26:09 -0700143 int cmd, int cmd_version,
144 const void *dout, int dout_len)
145{
Simon Glassbed43522018-10-01 12:22:22 -0600146 struct ec_host_request *rq = (struct ec_host_request *)cdev->dout;
Simon Glass13c7c5b2014-02-27 13:26:09 -0700147 int out_bytes = dout_len + sizeof(*rq);
148
149 /* Fail if output size is too big */
Simon Glassbed43522018-10-01 12:22:22 -0600150 if (out_bytes > (int)sizeof(cdev->dout)) {
Simon Glass13c7c5b2014-02-27 13:26:09 -0700151 debug("%s: Cannot send %d bytes\n", __func__, dout_len);
152 return -EC_RES_REQUEST_TRUNCATED;
153 }
154
155 /* Fill in request packet */
156 rq->struct_version = EC_HOST_REQUEST_VERSION;
157 rq->checksum = 0;
158 rq->command = cmd;
159 rq->command_version = cmd_version;
160 rq->reserved = 0;
161 rq->data_len = dout_len;
162
163 /* Copy data after header */
164 memcpy(rq + 1, dout, dout_len);
165
166 /* Write checksum field so the entire packet sums to 0 */
Simon Glassbed43522018-10-01 12:22:22 -0600167 rq->checksum = (uint8_t)(-cros_ec_calc_checksum(cdev->dout, out_bytes));
Simon Glass13c7c5b2014-02-27 13:26:09 -0700168
Simon Glassbed43522018-10-01 12:22:22 -0600169 cros_ec_dump_data("out", cmd, cdev->dout, out_bytes);
Simon Glass13c7c5b2014-02-27 13:26:09 -0700170
171 /* Return size of request packet */
172 return out_bytes;
173}
174
175/**
176 * Prepare the device to receive a protocol version 3 response.
177 *
178 * @param dev CROS-EC device
179 * @param din_len Maximum size of response in bytes
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100180 * Return: maximum expected number of bytes in response, or <0 if error.
Simon Glass13c7c5b2014-02-27 13:26:09 -0700181 */
Simon Glassbed43522018-10-01 12:22:22 -0600182static int prepare_proto3_response_buffer(struct cros_ec_dev *cdev, int din_len)
Simon Glass13c7c5b2014-02-27 13:26:09 -0700183{
184 int in_bytes = din_len + sizeof(struct ec_host_response);
185
186 /* Fail if input size is too big */
Simon Glassbed43522018-10-01 12:22:22 -0600187 if (in_bytes > (int)sizeof(cdev->din)) {
Simon Glass13c7c5b2014-02-27 13:26:09 -0700188 debug("%s: Cannot receive %d bytes\n", __func__, din_len);
189 return -EC_RES_RESPONSE_TOO_BIG;
190 }
191
192 /* Return expected size of response packet */
193 return in_bytes;
194}
195
196/**
197 * Handle a protocol version 3 response packet.
198 *
199 * The packet must already be stored in the device's internal input buffer.
200 *
201 * @param dev CROS-EC device
202 * @param dinp Returns pointer to response data
203 * @param din_len Maximum size of response in bytes
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100204 * Return: number of bytes of response data, or <0 if error. Note that error
Simon Glassd3d9c062015-01-25 08:27:17 -0700205 * codes can be from errno.h or -ve EC_RES_INVALID_CHECKSUM values (and they
206 * overlap!)
Simon Glass13c7c5b2014-02-27 13:26:09 -0700207 */
208static int handle_proto3_response(struct cros_ec_dev *dev,
209 uint8_t **dinp, int din_len)
210{
211 struct ec_host_response *rs = (struct ec_host_response *)dev->din;
212 int in_bytes;
213 int csum;
214
215 cros_ec_dump_data("in-header", -1, dev->din, sizeof(*rs));
216
217 /* Check input data */
218 if (rs->struct_version != EC_HOST_RESPONSE_VERSION) {
219 debug("%s: EC response version mismatch\n", __func__);
220 return -EC_RES_INVALID_RESPONSE;
221 }
222
223 if (rs->reserved) {
224 debug("%s: EC response reserved != 0\n", __func__);
225 return -EC_RES_INVALID_RESPONSE;
226 }
227
228 if (rs->data_len > din_len) {
229 debug("%s: EC returned too much data\n", __func__);
230 return -EC_RES_RESPONSE_TOO_BIG;
231 }
232
233 cros_ec_dump_data("in-data", -1, dev->din + sizeof(*rs), rs->data_len);
234
235 /* Update in_bytes to actual data size */
236 in_bytes = sizeof(*rs) + rs->data_len;
237
238 /* Verify checksum */
239 csum = cros_ec_calc_checksum(dev->din, in_bytes);
240 if (csum) {
241 debug("%s: EC response checksum invalid: 0x%02x\n", __func__,
242 csum);
243 return -EC_RES_INVALID_CHECKSUM;
244 }
245
246 /* Return error result, if any */
247 if (rs->result)
248 return -(int)rs->result;
249
250 /* If we're still here, set response data pointer and return length */
251 *dinp = (uint8_t *)(rs + 1);
252
253 return rs->data_len;
254}
255
Simon Glassbed43522018-10-01 12:22:22 -0600256static int send_command_proto3(struct cros_ec_dev *cdev,
Simon Glass13c7c5b2014-02-27 13:26:09 -0700257 int cmd, int cmd_version,
258 const void *dout, int dout_len,
259 uint8_t **dinp, int din_len)
260{
Simon Glass44569b52014-10-13 23:42:14 -0600261 struct dm_cros_ec_ops *ops;
Simon Glass13c7c5b2014-02-27 13:26:09 -0700262 int out_bytes, in_bytes;
263 int rv;
264
265 /* Create request packet */
Simon Glassbed43522018-10-01 12:22:22 -0600266 out_bytes = create_proto3_request(cdev, cmd, cmd_version,
Simon Glass13c7c5b2014-02-27 13:26:09 -0700267 dout, dout_len);
268 if (out_bytes < 0)
269 return out_bytes;
270
271 /* Prepare response buffer */
Simon Glassbed43522018-10-01 12:22:22 -0600272 in_bytes = prepare_proto3_response_buffer(cdev, din_len);
Simon Glass13c7c5b2014-02-27 13:26:09 -0700273 if (in_bytes < 0)
274 return in_bytes;
275
Simon Glassbed43522018-10-01 12:22:22 -0600276 ops = dm_cros_ec_get_ops(cdev->dev);
277 rv = ops->packet ? ops->packet(cdev->dev, out_bytes, in_bytes) :
278 -ENOSYS;
Simon Glass13c7c5b2014-02-27 13:26:09 -0700279 if (rv < 0)
280 return rv;
281
282 /* Process the response */
Simon Glassbed43522018-10-01 12:22:22 -0600283 return handle_proto3_response(cdev, dinp, din_len);
Simon Glass13c7c5b2014-02-27 13:26:09 -0700284}
285
Simon Glass3a239512018-11-06 15:21:18 -0700286static int send_command(struct cros_ec_dev *dev, uint cmd, int cmd_version,
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +0800287 const void *dout, int dout_len,
288 uint8_t **dinp, int din_len)
289{
Simon Glass44569b52014-10-13 23:42:14 -0600290 struct dm_cros_ec_ops *ops;
Simon Glass13c7c5b2014-02-27 13:26:09 -0700291 int ret = -1;
292
293 /* Handle protocol version 3 support */
294 if (dev->protocol_version == 3) {
295 return send_command_proto3(dev, cmd, cmd_version,
296 dout, dout_len, dinp, din_len);
297 }
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +0800298
Simon Glass44569b52014-10-13 23:42:14 -0600299 ops = dm_cros_ec_get_ops(dev->dev);
300 ret = ops->command(dev->dev, cmd, cmd_version,
301 (const uint8_t *)dout, dout_len, dinp, din_len);
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +0800302
303 return ret;
304}
305
306/**
307 * Send a command to the CROS-EC device and return the reply.
308 *
309 * The device's internal input/output buffers are used.
310 *
311 * @param dev CROS-EC device
312 * @param cmd Command to send (EC_CMD_...)
313 * @param cmd_version Version of command to send (EC_VER_...)
314 * @param dout Output data (may be NULL If dout_len=0)
315 * @param dout_len Size of output data in bytes
316 * @param dinp Response data (may be NULL If din_len=0).
317 * If not NULL, it will be updated to point to the data
318 * and will always be double word aligned (64-bits)
319 * @param din_len Maximum size of response in bytes
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100320 * Return: number of bytes in response, or -ve on error
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +0800321 */
Michael Auchter4eaae8e2019-12-09 20:27:31 +0000322static int ec_command_inptr(struct udevice *dev, uint cmd,
Simon Glass699c9ca2018-10-01 12:22:08 -0600323 int cmd_version, const void *dout, int dout_len,
324 uint8_t **dinp, int din_len)
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +0800325{
Simon Glassbed43522018-10-01 12:22:22 -0600326 struct cros_ec_dev *cdev = dev_get_uclass_priv(dev);
Simon Glass19cc2952014-02-27 13:26:11 -0700327 uint8_t *din = NULL;
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +0800328 int len;
329
Simon Glassbed43522018-10-01 12:22:22 -0600330 len = send_command(cdev, cmd, cmd_version, dout, dout_len, &din,
331 din_len);
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +0800332
333 /* If the command doesn't complete, wait a while */
334 if (len == -EC_RES_IN_PROGRESS) {
Simon Glass19cc2952014-02-27 13:26:11 -0700335 struct ec_response_get_comms_status *resp = NULL;
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +0800336 ulong start;
337
338 /* Wait for command to complete */
339 start = get_timer(0);
340 do {
341 int ret;
342
343 mdelay(50); /* Insert some reasonable delay */
Simon Glassbed43522018-10-01 12:22:22 -0600344 ret = send_command(cdev, EC_CMD_GET_COMMS_STATUS, 0,
345 NULL, 0,
346 (uint8_t **)&resp, sizeof(*resp));
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +0800347 if (ret < 0)
348 return ret;
349
350 if (get_timer(start) > CROS_EC_CMD_TIMEOUT_MS) {
351 debug("%s: Command %#02x timeout\n",
352 __func__, cmd);
353 return -EC_RES_TIMEOUT;
354 }
355 } while (resp->flags & EC_COMMS_STATUS_PROCESSING);
356
357 /* OK it completed, so read the status response */
358 /* not sure why it was 0 for the last argument */
Simon Glassbed43522018-10-01 12:22:22 -0600359 len = send_command(cdev, EC_CMD_RESEND_RESPONSE, 0, NULL, 0,
360 &din, din_len);
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +0800361 }
362
Simon Glass0b8e8ce2017-05-18 20:09:22 -0600363 debug("%s: len=%d, din=%p\n", __func__, len, din);
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +0800364 if (dinp) {
365 /* If we have any data to return, it must be 64bit-aligned */
366 assert(len <= 0 || !((uintptr_t)din & 7));
367 *dinp = din;
368 }
369
370 return len;
371}
372
373/**
374 * Send a command to the CROS-EC device and return the reply.
375 *
376 * The device's internal input/output buffers are used.
377 *
378 * @param dev CROS-EC device
379 * @param cmd Command to send (EC_CMD_...)
380 * @param cmd_version Version of command to send (EC_VER_...)
381 * @param dout Output data (may be NULL If dout_len=0)
382 * @param dout_len Size of output data in bytes
383 * @param din Response data (may be NULL If din_len=0).
384 * It not NULL, it is a place for ec_command() to copy the
385 * data to.
386 * @param din_len Maximum size of response in bytes
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100387 * Return: number of bytes in response, or -ve on error
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +0800388 */
Simon Glass3a239512018-11-06 15:21:18 -0700389static int ec_command(struct udevice *dev, uint cmd, int cmd_version,
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +0800390 const void *dout, int dout_len,
391 void *din, int din_len)
392{
393 uint8_t *in_buffer;
394 int len;
395
396 assert((din_len == 0) || din);
397 len = ec_command_inptr(dev, cmd, cmd_version, dout, dout_len,
Simon Glassbed43522018-10-01 12:22:22 -0600398 &in_buffer, din_len);
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +0800399 if (len > 0) {
400 /*
401 * If we were asked to put it somewhere, do so, otherwise just
402 * disregard the result.
403 */
404 if (din && in_buffer) {
405 assert(len <= din_len);
Simon Glasscd3a63e2021-01-16 14:52:24 -0700406 if (len > din_len)
407 return -ENOSPC;
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +0800408 memmove(din, in_buffer, len);
409 }
410 }
411 return len;
412}
413
Simon Glassfb726402015-10-18 21:17:14 -0600414int cros_ec_scan_keyboard(struct udevice *dev, struct mbkp_keyscan *scan)
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +0800415{
Wolfgang Denk62fb2b42021-09-27 17:42:39 +0200416 if (ec_command(dev, EC_CMD_MKBP_STATE, 0, NULL, 0, scan,
Simon Glass19cc2952014-02-27 13:26:11 -0700417 sizeof(scan->data)) != sizeof(scan->data))
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +0800418 return -1;
419
420 return 0;
421}
422
Alper Nebi Yasak1ce07292020-10-30 20:25:20 +0300423int cros_ec_get_next_event(struct udevice *dev,
424 struct ec_response_get_next_event *event)
425{
426 int ret;
427
428 ret = ec_command(dev, EC_CMD_GET_NEXT_EVENT, 0, NULL, 0,
429 event, sizeof(*event));
430 if (ret < 0)
431 return ret;
432 else if (ret != sizeof(*event))
433 return -EC_RES_INVALID_RESPONSE;
434
435 return 0;
436}
437
Simon Glassbed43522018-10-01 12:22:22 -0600438int cros_ec_read_id(struct udevice *dev, char *id, int maxlen)
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +0800439{
440 struct ec_response_get_version *r;
Simon Glassa77024d2018-11-06 15:21:19 -0700441 int ret;
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +0800442
Simon Glassa77024d2018-11-06 15:21:19 -0700443 ret = ec_command_inptr(dev, EC_CMD_GET_VERSION, 0, NULL, 0,
444 (uint8_t **)&r, sizeof(*r));
445 if (ret != sizeof(*r)) {
Simon Glass48d268f2018-11-23 21:29:36 -0700446 log_err("Got rc %d, expected %u\n", ret, (uint)sizeof(*r));
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +0800447 return -1;
Simon Glassa77024d2018-11-06 15:21:19 -0700448 }
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +0800449
Simon Glass19cc2952014-02-27 13:26:11 -0700450 if (maxlen > (int)sizeof(r->version_string_ro))
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +0800451 maxlen = sizeof(r->version_string_ro);
452
453 switch (r->current_image) {
454 case EC_IMAGE_RO:
455 memcpy(id, r->version_string_ro, maxlen);
456 break;
457 case EC_IMAGE_RW:
458 memcpy(id, r->version_string_rw, maxlen);
459 break;
460 default:
Simon Glassa77024d2018-11-06 15:21:19 -0700461 log_err("Invalid EC image %d\n", r->current_image);
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +0800462 return -1;
463 }
464
465 id[maxlen - 1] = '\0';
466 return 0;
467}
468
Simon Glassbed43522018-10-01 12:22:22 -0600469int cros_ec_read_version(struct udevice *dev,
470 struct ec_response_get_version **versionp)
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +0800471{
472 if (ec_command_inptr(dev, EC_CMD_GET_VERSION, 0, NULL, 0,
473 (uint8_t **)versionp, sizeof(**versionp))
Simon Glass19cc2952014-02-27 13:26:11 -0700474 != sizeof(**versionp))
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +0800475 return -1;
476
477 return 0;
478}
479
Simon Glassbed43522018-10-01 12:22:22 -0600480int cros_ec_read_build_info(struct udevice *dev, char **strp)
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +0800481{
482 if (ec_command_inptr(dev, EC_CMD_GET_BUILD_INFO, 0, NULL, 0,
Simon Glassece28862014-02-27 13:26:07 -0700483 (uint8_t **)strp, EC_PROTO2_MAX_PARAM_SIZE) < 0)
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +0800484 return -1;
485
486 return 0;
487}
488
Simon Glassbed43522018-10-01 12:22:22 -0600489int cros_ec_read_current_image(struct udevice *dev,
Simon Glass699c9ca2018-10-01 12:22:08 -0600490 enum ec_current_image *image)
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +0800491{
492 struct ec_response_get_version *r;
493
494 if (ec_command_inptr(dev, EC_CMD_GET_VERSION, 0, NULL, 0,
Simon Glass19cc2952014-02-27 13:26:11 -0700495 (uint8_t **)&r, sizeof(*r)) != sizeof(*r))
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +0800496 return -1;
497
498 *image = r->current_image;
499 return 0;
500}
501
Simon Glassbed43522018-10-01 12:22:22 -0600502static int cros_ec_wait_on_hash_done(struct udevice *dev,
Simon Glass97208d92020-11-09 07:14:43 -0700503 struct ec_params_vboot_hash *p,
Simon Glass699c9ca2018-10-01 12:22:08 -0600504 struct ec_response_vboot_hash *hash)
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +0800505{
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +0800506 ulong start;
507
508 start = get_timer(0);
509 while (hash->status == EC_VBOOT_HASH_STATUS_BUSY) {
Simon Glassebee5332021-01-16 14:52:23 -0700510 mdelay(CROS_EC_HASH_CHECK_DELAY_MS);
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +0800511
Simon Glass97208d92020-11-09 07:14:43 -0700512 p->cmd = EC_VBOOT_HASH_GET;
Simon Glassebee5332021-01-16 14:52:23 -0700513
Simon Glass97208d92020-11-09 07:14:43 -0700514 if (ec_command(dev, EC_CMD_VBOOT_HASH, 0, p, sizeof(*p), hash,
515 sizeof(*hash)) < 0)
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +0800516 return -1;
517
518 if (get_timer(start) > CROS_EC_CMD_HASH_TIMEOUT_MS) {
519 debug("%s: EC_VBOOT_HASH_GET timeout\n", __func__);
520 return -EC_RES_TIMEOUT;
521 }
522 }
523 return 0;
524}
525
Simon Glass94564902018-10-01 12:22:38 -0600526int cros_ec_read_hash(struct udevice *dev, uint hash_offset,
527 struct ec_response_vboot_hash *hash)
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +0800528{
529 struct ec_params_vboot_hash p;
530 int rv;
531
532 p.cmd = EC_VBOOT_HASH_GET;
Simon Glass94564902018-10-01 12:22:38 -0600533 p.offset = hash_offset;
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +0800534 if (ec_command(dev, EC_CMD_VBOOT_HASH, 0, &p, sizeof(p),
535 hash, sizeof(*hash)) < 0)
536 return -1;
537
538 /* If the EC is busy calculating the hash, fidget until it's done. */
Simon Glass97208d92020-11-09 07:14:43 -0700539 rv = cros_ec_wait_on_hash_done(dev, &p, hash);
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +0800540 if (rv)
541 return rv;
542
543 /* If the hash is valid, we're done. Otherwise, we have to kick it off
544 * again and wait for it to complete. Note that we explicitly assume
545 * that hashing zero bytes is always wrong, even though that would
546 * produce a valid hash value. */
547 if (hash->status == EC_VBOOT_HASH_STATUS_DONE && hash->size)
548 return 0;
549
550 debug("%s: No valid hash (status=%d size=%d). Compute one...\n",
551 __func__, hash->status, hash->size);
552
Simon Glassece28862014-02-27 13:26:07 -0700553 p.cmd = EC_VBOOT_HASH_START;
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +0800554 p.hash_type = EC_VBOOT_HASH_TYPE_SHA256;
555 p.nonce_size = 0;
Simon Glass94564902018-10-01 12:22:38 -0600556 p.offset = hash_offset;
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +0800557
558 if (ec_command(dev, EC_CMD_VBOOT_HASH, 0, &p, sizeof(p),
559 hash, sizeof(*hash)) < 0)
560 return -1;
561
Simon Glass97208d92020-11-09 07:14:43 -0700562 rv = cros_ec_wait_on_hash_done(dev, &p, hash);
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +0800563 if (rv)
564 return rv;
Simon Glass97208d92020-11-09 07:14:43 -0700565 if (hash->status != EC_VBOOT_HASH_STATUS_DONE) {
566 log_err("Hash did not complete, status=%d\n", hash->status);
567 return -EIO;
568 }
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +0800569
570 debug("%s: hash done\n", __func__);
571
572 return 0;
573}
574
Simon Glassbed43522018-10-01 12:22:22 -0600575static int cros_ec_invalidate_hash(struct udevice *dev)
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +0800576{
577 struct ec_params_vboot_hash p;
578 struct ec_response_vboot_hash *hash;
579
580 /* We don't have an explict command for the EC to discard its current
581 * hash value, so we'll just tell it to calculate one that we know is
582 * wrong (we claim that hashing zero bytes is always invalid).
583 */
584 p.cmd = EC_VBOOT_HASH_RECALC;
585 p.hash_type = EC_VBOOT_HASH_TYPE_SHA256;
586 p.nonce_size = 0;
587 p.offset = 0;
588 p.size = 0;
589
590 debug("%s:\n", __func__);
591
592 if (ec_command_inptr(dev, EC_CMD_VBOOT_HASH, 0, &p, sizeof(p),
593 (uint8_t **)&hash, sizeof(*hash)) < 0)
594 return -1;
595
596 /* No need to wait for it to finish */
597 return 0;
598}
599
Simon Glass9b306e52021-01-16 14:52:22 -0700600int cros_ec_hello(struct udevice *dev, uint *handshakep)
601{
602 struct ec_params_hello req;
603 struct ec_response_hello *resp;
604
605 req.in_data = 0x12345678;
606 if (ec_command_inptr(dev, EC_CMD_HELLO, 0, &req, sizeof(req),
607 (uint8_t **)&resp, sizeof(*resp)) < 0)
608 return -EIO;
609 if (resp->out_data != req.in_data + 0x01020304) {
610 printf("Received invalid handshake %x\n", resp->out_data);
611 if (handshakep)
612 *handshakep = req.in_data;
613 return -ENOTSYNC;
614 }
615
616 return 0;
617}
618
Simon Glassbed43522018-10-01 12:22:22 -0600619int cros_ec_reboot(struct udevice *dev, enum ec_reboot_cmd cmd, uint8_t flags)
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +0800620{
621 struct ec_params_reboot_ec p;
622
623 p.cmd = cmd;
624 p.flags = flags;
625
626 if (ec_command_inptr(dev, EC_CMD_REBOOT_EC, 0, &p, sizeof(p), NULL, 0)
627 < 0)
628 return -1;
629
630 if (!(flags & EC_REBOOT_FLAG_ON_AP_SHUTDOWN)) {
Simon Glassebee5332021-01-16 14:52:23 -0700631 ulong start;
632
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +0800633 /*
634 * EC reboot will take place immediately so delay to allow it
635 * to complete. Note that some reboot types (EC_REBOOT_COLD)
636 * will reboot the AP as well, in which case we won't actually
637 * get to this point.
638 */
Simon Glassebee5332021-01-16 14:52:23 -0700639 mdelay(50);
640 start = get_timer(0);
641 while (cros_ec_hello(dev, NULL)) {
642 if (get_timer(start) > 3000) {
643 log_err("EC did not return from reboot\n");
644 return -ETIMEDOUT;
645 }
646 mdelay(5);
647 }
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +0800648 }
649
650 return 0;
651}
652
Simon Glassfb726402015-10-18 21:17:14 -0600653int cros_ec_interrupt_pending(struct udevice *dev)
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +0800654{
Simon Glassfb726402015-10-18 21:17:14 -0600655 struct cros_ec_dev *cdev = dev_get_uclass_priv(dev);
656
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +0800657 /* no interrupt support : always poll */
Simon Glassfb726402015-10-18 21:17:14 -0600658 if (!dm_gpio_is_valid(&cdev->ec_int))
Simon Glass19cc2952014-02-27 13:26:11 -0700659 return -ENOENT;
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +0800660
Simon Glassfb726402015-10-18 21:17:14 -0600661 return dm_gpio_get_value(&cdev->ec_int);
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +0800662}
663
Simon Glassbed43522018-10-01 12:22:22 -0600664int cros_ec_info(struct udevice *dev, struct ec_response_mkbp_info *info)
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +0800665{
Simon Glassece28862014-02-27 13:26:07 -0700666 if (ec_command(dev, EC_CMD_MKBP_INFO, 0, NULL, 0, info,
Simon Glass19cc2952014-02-27 13:26:11 -0700667 sizeof(*info)) != sizeof(*info))
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +0800668 return -1;
669
670 return 0;
671}
672
Simon Glass153f2522018-11-06 15:21:22 -0700673int cros_ec_get_event_mask(struct udevice *dev, uint type, uint32_t *mask)
674{
675 struct ec_response_host_event_mask rsp;
676 int ret;
677
678 ret = ec_command(dev, type, 0, NULL, 0, &rsp, sizeof(rsp));
679 if (ret < 0)
680 return ret;
681 else if (ret != sizeof(rsp))
682 return -EINVAL;
683
684 *mask = rsp.mask;
685
686 return 0;
687}
688
689int cros_ec_set_event_mask(struct udevice *dev, uint type, uint32_t mask)
690{
691 struct ec_params_host_event_mask req;
692 int ret;
693
694 req.mask = mask;
695
696 ret = ec_command(dev, type, 0, &req, sizeof(req), NULL, 0);
697 if (ret < 0)
698 return ret;
699
700 return 0;
701}
702
Simon Glassbed43522018-10-01 12:22:22 -0600703int cros_ec_get_host_events(struct udevice *dev, uint32_t *events_ptr)
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +0800704{
705 struct ec_response_host_event_mask *resp;
706
707 /*
708 * Use the B copy of the event flags, because the main copy is already
709 * used by ACPI/SMI.
710 */
711 if (ec_command_inptr(dev, EC_CMD_HOST_EVENT_GET_B, 0, NULL, 0,
Simon Glass19cc2952014-02-27 13:26:11 -0700712 (uint8_t **)&resp, sizeof(*resp)) < (int)sizeof(*resp))
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +0800713 return -1;
714
715 if (resp->mask & EC_HOST_EVENT_MASK(EC_HOST_EVENT_INVALID))
716 return -1;
717
718 *events_ptr = resp->mask;
719 return 0;
720}
721
Simon Glassbed43522018-10-01 12:22:22 -0600722int cros_ec_clear_host_events(struct udevice *dev, uint32_t events)
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +0800723{
724 struct ec_params_host_event_mask params;
725
726 params.mask = events;
727
728 /*
729 * Use the B copy of the event flags, so it affects the data returned
730 * by cros_ec_get_host_events().
731 */
732 if (ec_command_inptr(dev, EC_CMD_HOST_EVENT_CLEAR_B, 0,
733 &params, sizeof(params), NULL, 0) < 0)
734 return -1;
735
736 return 0;
737}
738
Simon Glassbed43522018-10-01 12:22:22 -0600739int cros_ec_flash_protect(struct udevice *dev, uint32_t set_mask,
740 uint32_t set_flags,
Simon Glass699c9ca2018-10-01 12:22:08 -0600741 struct ec_response_flash_protect *resp)
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +0800742{
743 struct ec_params_flash_protect params;
744
745 params.mask = set_mask;
746 params.flags = set_flags;
747
748 if (ec_command(dev, EC_CMD_FLASH_PROTECT, EC_VER_FLASH_PROTECT,
749 &params, sizeof(params),
Simon Glass19cc2952014-02-27 13:26:11 -0700750 resp, sizeof(*resp)) != sizeof(*resp))
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +0800751 return -1;
752
753 return 0;
754}
755
Simon Glassbed43522018-10-01 12:22:22 -0600756static int cros_ec_check_version(struct udevice *dev)
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +0800757{
Simon Glassbed43522018-10-01 12:22:22 -0600758 struct cros_ec_dev *cdev = dev_get_uclass_priv(dev);
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +0800759 struct ec_params_hello req;
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +0800760
Simon Glass23fb1562015-03-26 09:29:30 -0600761 struct dm_cros_ec_ops *ops;
762 int ret;
763
Simon Glassbed43522018-10-01 12:22:22 -0600764 ops = dm_cros_ec_get_ops(dev);
Simon Glass23fb1562015-03-26 09:29:30 -0600765 if (ops->check_version) {
Simon Glassbed43522018-10-01 12:22:22 -0600766 ret = ops->check_version(dev);
Simon Glass23fb1562015-03-26 09:29:30 -0600767 if (ret)
768 return ret;
769 }
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +0800770
771 /*
772 * TODO(sjg@chromium.org).
773 * There is a strange oddity here with the EC. We could just ignore
774 * the response, i.e. pass the last two parameters as NULL and 0.
775 * In this case we won't read back very many bytes from the EC.
776 * On the I2C bus the EC gets upset about this and will try to send
777 * the bytes anyway. This means that we will have to wait for that
778 * to complete before continuing with a new EC command.
779 *
780 * This problem is probably unique to the I2C bus.
781 *
782 * So for now, just read all the data anyway.
783 */
Randall Spanglerf03e9702014-02-27 13:26:08 -0700784
Randall Spanglerce3ebb92014-02-27 13:26:10 -0700785 /* Try sending a version 3 packet */
Simon Glassbed43522018-10-01 12:22:22 -0600786 cdev->protocol_version = 3;
Simon Glass73c1ecf2014-11-11 18:06:30 -0700787 req.in_data = 0;
Simon Glass9b306e52021-01-16 14:52:22 -0700788 ret = cros_ec_hello(dev, NULL);
789 if (!ret || ret == -ENOTSYNC)
Randall Spanglerce3ebb92014-02-27 13:26:10 -0700790 return 0;
Randall Spanglerce3ebb92014-02-27 13:26:10 -0700791
Randall Spanglerf03e9702014-02-27 13:26:08 -0700792 /* Try sending a version 2 packet */
Simon Glassbed43522018-10-01 12:22:22 -0600793 cdev->protocol_version = 2;
Simon Glass9b306e52021-01-16 14:52:22 -0700794 ret = cros_ec_hello(dev, NULL);
795 if (!ret || ret == -ENOTSYNC)
Randall Spanglerf03e9702014-02-27 13:26:08 -0700796 return 0;
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +0800797
Randall Spanglerf03e9702014-02-27 13:26:08 -0700798 /*
799 * Fail if we're still here, since the EC doesn't understand any
800 * protcol version we speak. Version 1 interface without command
801 * version is no longer supported, and we don't know about any new
802 * protocol versions.
803 */
Simon Glassbed43522018-10-01 12:22:22 -0600804 cdev->protocol_version = 0;
Randall Spanglerf03e9702014-02-27 13:26:08 -0700805 printf("%s: ERROR: old EC interface not supported\n", __func__);
806 return -1;
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +0800807}
808
Simon Glassbed43522018-10-01 12:22:22 -0600809int cros_ec_test(struct udevice *dev)
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +0800810{
Simon Glass9b306e52021-01-16 14:52:22 -0700811 uint out_data;
812 int ret;
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +0800813
Simon Glass9b306e52021-01-16 14:52:22 -0700814 ret = cros_ec_hello(dev, &out_data);
815 if (ret == -ENOTSYNC) {
816 printf("Received invalid handshake %x\n", out_data);
817 return ret;
818 } else if (ret) {
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +0800819 printf("ec_command_inptr() returned error\n");
Simon Glass9b306e52021-01-16 14:52:22 -0700820 return ret;
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +0800821 }
822
823 return 0;
824}
825
Simon Glassbed43522018-10-01 12:22:22 -0600826int cros_ec_flash_offset(struct udevice *dev, enum ec_flash_region region,
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +0800827 uint32_t *offset, uint32_t *size)
828{
829 struct ec_params_flash_region_info p;
830 struct ec_response_flash_region_info *r;
831 int ret;
832
833 p.region = region;
834 ret = ec_command_inptr(dev, EC_CMD_FLASH_REGION_INFO,
835 EC_VER_FLASH_REGION_INFO,
836 &p, sizeof(p), (uint8_t **)&r, sizeof(*r));
837 if (ret != sizeof(*r))
838 return -1;
839
840 if (offset)
841 *offset = r->offset;
842 if (size)
843 *size = r->size;
844
845 return 0;
846}
847
Simon Glassbed43522018-10-01 12:22:22 -0600848int cros_ec_flash_erase(struct udevice *dev, uint32_t offset, uint32_t size)
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +0800849{
850 struct ec_params_flash_erase p;
851
852 p.offset = offset;
853 p.size = size;
854 return ec_command_inptr(dev, EC_CMD_FLASH_ERASE, 0, &p, sizeof(p),
855 NULL, 0);
856}
857
858/**
859 * Write a single block to the flash
860 *
861 * Write a block of data to the EC flash. The size must not exceed the flash
862 * write block size which you can obtain from cros_ec_flash_write_burst_size().
863 *
864 * The offset starts at 0. You can obtain the region information from
865 * cros_ec_flash_offset() to find out where to write for a particular region.
866 *
867 * Attempting to write to the region where the EC is currently running from
868 * will result in an error.
869 *
870 * @param dev CROS-EC device
871 * @param data Pointer to data buffer to write
872 * @param offset Offset within flash to write to.
873 * @param size Number of bytes to write
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100874 * Return: 0 if ok, -1 on error
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +0800875 */
Simon Glassbed43522018-10-01 12:22:22 -0600876static int cros_ec_flash_write_block(struct udevice *dev, const uint8_t *data,
877 uint32_t offset, uint32_t size)
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +0800878{
Moritz Fischere597bc72016-09-12 12:57:52 -0700879 struct ec_params_flash_write *p;
880 int ret;
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +0800881
Moritz Fischere597bc72016-09-12 12:57:52 -0700882 p = malloc(sizeof(*p) + size);
883 if (!p)
884 return -ENOMEM;
885
886 p->offset = offset;
887 p->size = size;
888 assert(data && p->size <= EC_FLASH_WRITE_VER0_SIZE);
889 memcpy(p + 1, data, p->size);
890
891 ret = ec_command_inptr(dev, EC_CMD_FLASH_WRITE, 0,
892 p, sizeof(*p) + size, NULL, 0) >= 0 ? 0 : -1;
893
894 free(p);
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +0800895
Moritz Fischere597bc72016-09-12 12:57:52 -0700896 return ret;
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +0800897}
898
899/**
900 * Return optimal flash write burst size
901 */
Simon Glassbed43522018-10-01 12:22:22 -0600902static int cros_ec_flash_write_burst_size(struct udevice *dev)
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +0800903{
Simon Glassece28862014-02-27 13:26:07 -0700904 return EC_FLASH_WRITE_VER0_SIZE;
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +0800905}
906
907/**
908 * Check if a block of data is erased (all 0xff)
909 *
910 * This function is useful when dealing with flash, for checking whether a
911 * data block is erased and thus does not need to be programmed.
912 *
913 * @param data Pointer to data to check (must be word-aligned)
914 * @param size Number of bytes to check (must be word-aligned)
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100915 * Return: 0 if erased, non-zero if any word is not erased
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +0800916 */
917static int cros_ec_data_is_erased(const uint32_t *data, int size)
918{
919 assert(!(size & 3));
920 size /= sizeof(uint32_t);
921 for (; size > 0; size -= 4, data++)
922 if (*data != -1U)
923 return 0;
924
925 return 1;
926}
927
Moritz Fischerde5bc892016-09-13 14:44:48 -0700928/**
929 * Read back flash parameters
930 *
931 * This function reads back parameters of the flash as reported by the EC
932 *
933 * @param dev Pointer to device
934 * @param info Pointer to output flash info struct
935 */
Simon Glassbed43522018-10-01 12:22:22 -0600936int cros_ec_read_flashinfo(struct udevice *dev,
Simon Glass699c9ca2018-10-01 12:22:08 -0600937 struct ec_response_flash_info *info)
Moritz Fischerde5bc892016-09-13 14:44:48 -0700938{
939 int ret;
940
941 ret = ec_command(dev, EC_CMD_FLASH_INFO, 0,
942 NULL, 0, info, sizeof(*info));
943 if (ret < 0)
944 return ret;
945
946 return ret < sizeof(*info) ? -1 : 0;
947}
948
Simon Glassbed43522018-10-01 12:22:22 -0600949int cros_ec_flash_write(struct udevice *dev, const uint8_t *data,
Simon Glass699c9ca2018-10-01 12:22:08 -0600950 uint32_t offset, uint32_t size)
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +0800951{
Simon Glassbed43522018-10-01 12:22:22 -0600952 struct cros_ec_dev *cdev = dev_get_uclass_priv(dev);
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +0800953 uint32_t burst = cros_ec_flash_write_burst_size(dev);
954 uint32_t end, off;
955 int ret;
956
Simon Glass411661d2018-11-06 15:21:20 -0700957 if (!burst)
958 return -EINVAL;
959
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +0800960 /*
961 * TODO: round up to the nearest multiple of write size. Can get away
962 * without that on link right now because its write size is 4 bytes.
963 */
964 end = offset + size;
965 for (off = offset; off < end; off += burst, data += burst) {
966 uint32_t todo;
967
968 /* If the data is empty, there is no point in programming it */
969 todo = min(end - off, burst);
Simon Glassbed43522018-10-01 12:22:22 -0600970 if (cdev->optimise_flash_write &&
Simon Glass699c9ca2018-10-01 12:22:08 -0600971 cros_ec_data_is_erased((uint32_t *)data, todo))
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +0800972 continue;
973
974 ret = cros_ec_flash_write_block(dev, data, off, todo);
975 if (ret)
976 return ret;
977 }
978
979 return 0;
980}
981
982/**
Simon Glass153f2522018-11-06 15:21:22 -0700983 * Run verification on a slot
984 *
985 * @param me CrosEc instance
986 * @param region Region to run verification on
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100987 * Return: 0 if success or not applicable. Non-zero if verification failed.
Simon Glass153f2522018-11-06 15:21:22 -0700988 */
989int cros_ec_efs_verify(struct udevice *dev, enum ec_flash_region region)
990{
991 struct ec_params_efs_verify p;
992 int rv;
993
994 log_info("EFS: EC is verifying updated image...\n");
995 p.region = region;
996
997 rv = ec_command(dev, EC_CMD_EFS_VERIFY, 0, &p, sizeof(p), NULL, 0);
998 if (rv >= 0) {
999 log_info("EFS: Verification success\n");
1000 return 0;
1001 }
1002 if (rv == -EC_RES_INVALID_COMMAND) {
1003 log_info("EFS: EC doesn't support EFS_VERIFY command\n");
1004 return 0;
1005 }
1006 log_info("EFS: Verification failed\n");
1007
1008 return rv;
1009}
1010
1011/**
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +08001012 * Read a single block from the flash
1013 *
1014 * Read a block of data from the EC flash. The size must not exceed the flash
1015 * write block size which you can obtain from cros_ec_flash_write_burst_size().
1016 *
1017 * The offset starts at 0. You can obtain the region information from
1018 * cros_ec_flash_offset() to find out where to read for a particular region.
1019 *
1020 * @param dev CROS-EC device
1021 * @param data Pointer to data buffer to read into
1022 * @param offset Offset within flash to read from
1023 * @param size Number of bytes to read
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +01001024 * Return: 0 if ok, -1 on error
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +08001025 */
Simon Glassbed43522018-10-01 12:22:22 -06001026static int cros_ec_flash_read_block(struct udevice *dev, uint8_t *data,
Simon Glass699c9ca2018-10-01 12:22:08 -06001027 uint32_t offset, uint32_t size)
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +08001028{
1029 struct ec_params_flash_read p;
1030
1031 p.offset = offset;
1032 p.size = size;
1033
1034 return ec_command(dev, EC_CMD_FLASH_READ, 0,
1035 &p, sizeof(p), data, size) >= 0 ? 0 : -1;
1036}
1037
Simon Glassbed43522018-10-01 12:22:22 -06001038int cros_ec_flash_read(struct udevice *dev, uint8_t *data, uint32_t offset,
Simon Glass699c9ca2018-10-01 12:22:08 -06001039 uint32_t size)
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +08001040{
1041 uint32_t burst = cros_ec_flash_write_burst_size(dev);
1042 uint32_t end, off;
1043 int ret;
1044
1045 end = offset + size;
1046 for (off = offset; off < end; off += burst, data += burst) {
1047 ret = cros_ec_flash_read_block(dev, data, off,
1048 min(end - off, burst));
1049 if (ret)
1050 return ret;
1051 }
1052
1053 return 0;
1054}
1055
Simon Glassbed43522018-10-01 12:22:22 -06001056int cros_ec_flash_update_rw(struct udevice *dev, const uint8_t *image,
Simon Glass699c9ca2018-10-01 12:22:08 -06001057 int image_size)
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +08001058{
1059 uint32_t rw_offset, rw_size;
1060 int ret;
1061
Simon Glass2c1e5502018-10-01 12:22:36 -06001062 if (cros_ec_flash_offset(dev, EC_FLASH_REGION_ACTIVE, &rw_offset,
1063 &rw_size))
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +08001064 return -1;
Simon Glass19cc2952014-02-27 13:26:11 -07001065 if (image_size > (int)rw_size)
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +08001066 return -1;
1067
1068 /* Invalidate the existing hash, just in case the AP reboots
1069 * unexpectedly during the update. If that happened, the EC RW firmware
1070 * would be invalid, but the EC would still have the original hash.
1071 */
1072 ret = cros_ec_invalidate_hash(dev);
1073 if (ret)
1074 return ret;
1075
1076 /*
1077 * Erase the entire RW section, so that the EC doesn't see any garbage
1078 * past the new image if it's smaller than the current image.
1079 *
1080 * TODO: could optimize this to erase just the current image, since
1081 * presumably everything past that is 0xff's. But would still need to
1082 * round up to the nearest multiple of erase size.
1083 */
1084 ret = cros_ec_flash_erase(dev, rw_offset, rw_size);
1085 if (ret)
1086 return ret;
1087
1088 /* Write the image */
1089 ret = cros_ec_flash_write(dev, image, rw_offset, image_size);
1090 if (ret)
1091 return ret;
1092
1093 return 0;
1094}
1095
Simon Glass33909b52021-01-16 14:52:25 -07001096int cros_ec_get_sku_id(struct udevice *dev)
1097{
1098 struct ec_sku_id_info *r;
1099 int ret;
1100
1101 ret = ec_command_inptr(dev, EC_CMD_GET_SKU_ID, 0, NULL, 0,
1102 (uint8_t **)&r, sizeof(*r));
1103 if (ret != sizeof(*r))
1104 return -ret;
1105
1106 return r->sku_id;
1107}
1108
Simon Glassbed43522018-10-01 12:22:22 -06001109int cros_ec_read_nvdata(struct udevice *dev, uint8_t *block, int size)
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +08001110{
1111 struct ec_params_vbnvcontext p;
1112 int len;
1113
Simon Glass153f2522018-11-06 15:21:22 -07001114 if (size != EC_VBNV_BLOCK_SIZE && size != EC_VBNV_BLOCK_SIZE_V2)
Simon Glassbed43522018-10-01 12:22:22 -06001115 return -EINVAL;
1116
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +08001117 p.op = EC_VBNV_CONTEXT_OP_READ;
1118
1119 len = ec_command(dev, EC_CMD_VBNV_CONTEXT, EC_VER_VBNV_CONTEXT,
Simon Glass153f2522018-11-06 15:21:22 -07001120 &p, sizeof(uint32_t) + size, block, size);
1121 if (len != size) {
1122 log_err("Expected %d bytes, got %d\n", size, len);
Simon Glassbed43522018-10-01 12:22:22 -06001123 return -EIO;
Simon Glass153f2522018-11-06 15:21:22 -07001124 }
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +08001125
1126 return 0;
1127}
1128
Simon Glassbed43522018-10-01 12:22:22 -06001129int cros_ec_write_nvdata(struct udevice *dev, const uint8_t *block, int size)
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +08001130{
1131 struct ec_params_vbnvcontext p;
1132 int len;
1133
Simon Glass153f2522018-11-06 15:21:22 -07001134 if (size != EC_VBNV_BLOCK_SIZE && size != EC_VBNV_BLOCK_SIZE_V2)
Simon Glassbed43522018-10-01 12:22:22 -06001135 return -EINVAL;
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +08001136 p.op = EC_VBNV_CONTEXT_OP_WRITE;
Simon Glass153f2522018-11-06 15:21:22 -07001137 memcpy(p.block, block, size);
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +08001138
1139 len = ec_command_inptr(dev, EC_CMD_VBNV_CONTEXT, EC_VER_VBNV_CONTEXT,
Simon Glass153f2522018-11-06 15:21:22 -07001140 &p, sizeof(uint32_t) + size, NULL, 0);
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +08001141 if (len < 0)
1142 return -1;
1143
Simon Glass153f2522018-11-06 15:21:22 -07001144 return 0;
1145}
1146
1147int cros_ec_battery_cutoff(struct udevice *dev, uint8_t flags)
1148{
1149 struct ec_params_battery_cutoff p;
1150 int len;
1151
1152 p.flags = flags;
1153 len = ec_command(dev, EC_CMD_BATTERY_CUT_OFF, 1, &p, sizeof(p),
1154 NULL, 0);
1155
1156 if (len < 0)
1157 return -1;
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +08001158 return 0;
1159}
1160
Alper Nebi Yasak2b8031f2020-10-22 23:49:27 +03001161int cros_ec_set_pwm_duty(struct udevice *dev, uint8_t index, uint16_t duty)
1162{
1163 struct ec_params_pwm_set_duty p;
1164 int ret;
1165
1166 p.duty = duty;
1167 p.pwm_type = EC_PWM_TYPE_GENERIC;
1168 p.index = index;
1169
1170 ret = ec_command(dev, EC_CMD_PWM_SET_DUTY, 0, &p, sizeof(p),
1171 NULL, 0);
1172 if (ret < 0)
1173 return ret;
1174
1175 return 0;
1176}
1177
Simon Glasseb2cc512015-08-03 08:19:24 -06001178int cros_ec_set_ldo(struct udevice *dev, uint8_t index, uint8_t state)
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +08001179{
1180 struct ec_params_ldo_set params;
1181
1182 params.index = index;
1183 params.state = state;
1184
Simon Glassbed43522018-10-01 12:22:22 -06001185 if (ec_command_inptr(dev, EC_CMD_LDO_SET, 0, &params, sizeof(params),
Simon Glasseb2cc512015-08-03 08:19:24 -06001186 NULL, 0))
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +08001187 return -1;
1188
1189 return 0;
1190}
1191
Simon Glasseb2cc512015-08-03 08:19:24 -06001192int cros_ec_get_ldo(struct udevice *dev, uint8_t index, uint8_t *state)
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +08001193{
1194 struct ec_params_ldo_get params;
1195 struct ec_response_ldo_get *resp;
1196
1197 params.index = index;
1198
Simon Glassbed43522018-10-01 12:22:22 -06001199 if (ec_command_inptr(dev, EC_CMD_LDO_GET, 0, &params, sizeof(params),
Simon Glasseb2cc512015-08-03 08:19:24 -06001200 (uint8_t **)&resp, sizeof(*resp)) !=
1201 sizeof(*resp))
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +08001202 return -1;
1203
1204 *state = resp->state;
1205
1206 return 0;
1207}
1208
Simon Glass44569b52014-10-13 23:42:14 -06001209int cros_ec_register(struct udevice *dev)
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +08001210{
Simon Glassde0977b2015-03-05 12:25:20 -07001211 struct cros_ec_dev *cdev = dev_get_uclass_priv(dev);
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +08001212 char id[MSG_BYTES];
Simon Glass44569b52014-10-13 23:42:14 -06001213
1214 cdev->dev = dev;
Simon Glass0d7cc472015-01-05 20:05:32 -07001215 gpio_request_by_name(dev, "ec-interrupt", 0, &cdev->ec_int,
1216 GPIOD_IS_IN);
Simon Glassb35e6d62017-05-18 20:09:23 -06001217 cdev->optimise_flash_write = dev_read_bool(dev, "optimise-flash-write");
Simon Glass44569b52014-10-13 23:42:14 -06001218
Simon Glassbed43522018-10-01 12:22:22 -06001219 if (cros_ec_check_version(dev)) {
Simon Glass44569b52014-10-13 23:42:14 -06001220 debug("%s: Could not detect CROS-EC version\n", __func__);
1221 return -CROS_EC_ERR_CHECK_VERSION;
1222 }
1223
Simon Glassbed43522018-10-01 12:22:22 -06001224 if (cros_ec_read_id(dev, id, sizeof(id))) {
Simon Glass44569b52014-10-13 23:42:14 -06001225 debug("%s: Could not read KBC ID\n", __func__);
1226 return -CROS_EC_ERR_READ_ID;
1227 }
1228
1229 /* Remember this device for use by the cros_ec command */
Simon Glass46e17332015-02-17 15:29:36 -07001230 debug("Google Chrome EC v%d CROS-EC driver ready, id '%s'\n",
1231 cdev->protocol_version, id);
Simon Glass44569b52014-10-13 23:42:14 -06001232
1233 return 0;
1234}
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +08001235
Simon Glassb35e6d62017-05-18 20:09:23 -06001236int cros_ec_decode_ec_flash(struct udevice *dev, struct fdt_cros_ec *config)
Simon Glass3c59abc2014-02-27 13:26:03 -07001237{
Simon Glassb35e6d62017-05-18 20:09:23 -06001238 ofnode flash_node, node;
Simon Glass3c59abc2014-02-27 13:26:03 -07001239
Simon Glassb35e6d62017-05-18 20:09:23 -06001240 flash_node = dev_read_subnode(dev, "flash");
1241 if (!ofnode_valid(flash_node)) {
Simon Glass3c59abc2014-02-27 13:26:03 -07001242 debug("Failed to find flash node\n");
1243 return -1;
1244 }
1245
Simon Glass4b580932018-06-11 13:07:17 -06001246 if (ofnode_read_fmap_entry(flash_node, &config->flash)) {
Simon Glassb35e6d62017-05-18 20:09:23 -06001247 debug("Failed to decode flash node in chrome-ec\n");
Simon Glass3c59abc2014-02-27 13:26:03 -07001248 return -1;
1249 }
1250
Simon Glassb35e6d62017-05-18 20:09:23 -06001251 config->flash_erase_value = ofnode_read_s32_default(flash_node,
1252 "erase-value", -1);
Simon Glass28529762017-08-05 15:45:54 -06001253 ofnode_for_each_subnode(node, flash_node) {
Simon Glassb35e6d62017-05-18 20:09:23 -06001254 const char *name = ofnode_get_name(node);
Simon Glass3c59abc2014-02-27 13:26:03 -07001255 enum ec_flash_region region;
1256
1257 if (0 == strcmp(name, "ro")) {
1258 region = EC_FLASH_REGION_RO;
1259 } else if (0 == strcmp(name, "rw")) {
Simon Glass2c1e5502018-10-01 12:22:36 -06001260 region = EC_FLASH_REGION_ACTIVE;
Simon Glass3c59abc2014-02-27 13:26:03 -07001261 } else if (0 == strcmp(name, "wp-ro")) {
1262 region = EC_FLASH_REGION_WP_RO;
1263 } else {
1264 debug("Unknown EC flash region name '%s'\n", name);
1265 return -1;
1266 }
1267
Simon Glass4b580932018-06-11 13:07:17 -06001268 if (ofnode_read_fmap_entry(node, &config->region[region])) {
Simon Glass3c59abc2014-02-27 13:26:03 -07001269 debug("Failed to decode flash region in chrome-ec'\n");
1270 return -1;
1271 }
1272 }
1273
1274 return 0;
1275}
1276
Moritz Fischer6cddc602016-09-27 15:42:07 -07001277int cros_ec_i2c_tunnel(struct udevice *dev, int port, struct i2c_msg *in,
1278 int nmsgs)
Simon Glass9ad07af2015-08-03 08:19:23 -06001279{
Simon Glass9ad07af2015-08-03 08:19:23 -06001280 union {
1281 struct ec_params_i2c_passthru p;
1282 uint8_t outbuf[EC_PROTO2_MAX_PARAM_SIZE];
1283 } params;
1284 union {
1285 struct ec_response_i2c_passthru r;
1286 uint8_t inbuf[EC_PROTO2_MAX_PARAM_SIZE];
1287 } response;
1288 struct ec_params_i2c_passthru *p = &params.p;
1289 struct ec_response_i2c_passthru *r = &response.r;
1290 struct ec_params_i2c_passthru_msg *msg;
1291 uint8_t *pdata, *read_ptr = NULL;
1292 int read_len;
1293 int size;
1294 int rv;
1295 int i;
1296
Moritz Fischer6cddc602016-09-27 15:42:07 -07001297 p->port = port;
Simon Glass9ad07af2015-08-03 08:19:23 -06001298
1299 p->num_msgs = nmsgs;
1300 size = sizeof(*p) + p->num_msgs * sizeof(*msg);
1301
1302 /* Create a message to write the register address and optional data */
1303 pdata = (uint8_t *)p + size;
1304
1305 read_len = 0;
1306 for (i = 0, msg = p->msg; i < nmsgs; i++, msg++, in++) {
1307 bool is_read = in->flags & I2C_M_RD;
1308
1309 msg->addr_flags = in->addr;
1310 msg->len = in->len;
1311 if (is_read) {
1312 msg->addr_flags |= EC_I2C_FLAG_READ;
1313 read_len += in->len;
1314 read_ptr = in->buf;
1315 if (sizeof(*r) + read_len > sizeof(response)) {
1316 puts("Read length too big for buffer\n");
1317 return -1;
1318 }
1319 } else {
1320 if (pdata - (uint8_t *)p + in->len > sizeof(params)) {
1321 puts("Params too large for buffer\n");
1322 return -1;
1323 }
1324 memcpy(pdata, in->buf, in->len);
1325 pdata += in->len;
1326 }
1327 }
1328
Simon Glassbed43522018-10-01 12:22:22 -06001329 rv = ec_command(dev, EC_CMD_I2C_PASSTHRU, 0, p, pdata - (uint8_t *)p,
Simon Glass9ad07af2015-08-03 08:19:23 -06001330 r, sizeof(*r) + read_len);
1331 if (rv < 0)
1332 return rv;
1333
1334 /* Parse response */
1335 if (r->i2c_status & EC_I2C_STATUS_ERROR) {
1336 printf("Transfer failed with status=0x%x\n", r->i2c_status);
1337 return -1;
1338 }
1339
1340 if (rv < sizeof(*r) + read_len) {
1341 puts("Truncated read response\n");
1342 return -1;
1343 }
1344
1345 /* We only support a single read message for each transfer */
1346 if (read_len)
1347 memcpy(read_ptr, r->data, read_len);
1348
Simon Glass153f2522018-11-06 15:21:22 -07001349 return 0;
1350}
1351
Simon Glass959e1ce2021-01-16 14:52:26 -07001352int cros_ec_get_features(struct udevice *dev, u64 *featuresp)
Simon Glass153f2522018-11-06 15:21:22 -07001353{
1354 struct ec_response_get_features r;
1355 int rv;
1356
Simon Glass959e1ce2021-01-16 14:52:26 -07001357 rv = ec_command(dev, EC_CMD_GET_FEATURES, 0, NULL, 0, &r, sizeof(r));
1358 if (rv != sizeof(r))
1359 return -EIO;
1360 *featuresp = r.flags[0] | (u64)r.flags[1] << 32;
1361
1362 return 0;
1363}
1364
1365int cros_ec_check_feature(struct udevice *dev, uint feature)
1366{
1367 struct ec_response_get_features r;
1368 int rv;
1369
1370 rv = ec_command(dev, EC_CMD_GET_FEATURES, 0, NULL, 0, &r, sizeof(r));
1371 if (rv != sizeof(r))
1372 return -EIO;
Simon Glass153f2522018-11-06 15:21:22 -07001373
1374 if (feature >= 8 * sizeof(r.flags))
Simon Glass959e1ce2021-01-16 14:52:26 -07001375 return -EINVAL;
Simon Glass153f2522018-11-06 15:21:22 -07001376
Simon Glass959e1ce2021-01-16 14:52:26 -07001377 return r.flags[feature / 32] & EC_FEATURE_MASK_0(feature) ? true :
1378 false;
Simon Glass153f2522018-11-06 15:21:22 -07001379}
1380
1381/*
1382 * Query the EC for specified mask indicating enabled events.
1383 * The EC maintains separate event masks for SMI, SCI and WAKE.
1384 */
1385static int cros_ec_uhepi_cmd(struct udevice *dev, uint mask, uint action,
1386 uint64_t *value)
1387{
1388 int ret;
1389 struct ec_params_host_event req;
1390 struct ec_response_host_event rsp;
1391
1392 req.action = action;
1393 req.mask_type = mask;
1394 if (action != EC_HOST_EVENT_GET)
1395 req.value = *value;
1396 else
1397 *value = 0;
1398 ret = ec_command(dev, EC_CMD_HOST_EVENT, 0, &req, sizeof(req), &rsp,
1399 sizeof(rsp));
1400
1401 if (action != EC_HOST_EVENT_GET)
1402 return ret;
1403 if (ret == 0)
1404 *value = rsp.value;
1405
1406 return ret;
1407}
1408
1409static int cros_ec_handle_non_uhepi_cmd(struct udevice *dev, uint hcmd,
1410 uint action, uint64_t *value)
1411{
1412 int ret = -1;
1413 struct ec_params_host_event_mask req;
1414 struct ec_response_host_event_mask rsp;
1415
1416 if (hcmd == INVALID_HCMD)
1417 return ret;
1418
1419 if (action != EC_HOST_EVENT_GET)
1420 req.mask = (uint32_t)*value;
1421 else
1422 *value = 0;
1423
1424 ret = ec_command(dev, hcmd, 0, &req, sizeof(req), &rsp, sizeof(rsp));
1425 if (action != EC_HOST_EVENT_GET)
1426 return ret;
1427 if (ret == 0)
1428 *value = rsp.mask;
1429
1430 return ret;
1431}
1432
1433bool cros_ec_is_uhepi_supported(struct udevice *dev)
1434{
1435#define UHEPI_SUPPORTED 1
1436#define UHEPI_NOT_SUPPORTED 2
1437 static int uhepi_support;
1438
1439 if (!uhepi_support) {
1440 uhepi_support = cros_ec_check_feature(dev,
1441 EC_FEATURE_UNIFIED_WAKE_MASKS) > 0 ? UHEPI_SUPPORTED :
1442 UHEPI_NOT_SUPPORTED;
1443 log_debug("Chrome EC: UHEPI %s\n",
1444 uhepi_support == UHEPI_SUPPORTED ? "supported" :
1445 "not supported");
1446 }
1447 return uhepi_support == UHEPI_SUPPORTED;
1448}
1449
1450static int cros_ec_get_mask(struct udevice *dev, uint type)
1451{
1452 u64 value = 0;
1453
1454 if (cros_ec_is_uhepi_supported(dev)) {
1455 cros_ec_uhepi_cmd(dev, type, EC_HOST_EVENT_GET, &value);
1456 } else {
1457 assert(type < ARRAY_SIZE(event_map));
1458 cros_ec_handle_non_uhepi_cmd(dev, event_map[type].get_cmd,
1459 EC_HOST_EVENT_GET, &value);
1460 }
1461 return value;
1462}
1463
1464static int cros_ec_clear_mask(struct udevice *dev, uint type, u64 mask)
1465{
1466 if (cros_ec_is_uhepi_supported(dev))
1467 return cros_ec_uhepi_cmd(dev, type, EC_HOST_EVENT_CLEAR, &mask);
1468
1469 assert(type < ARRAY_SIZE(event_map));
1470
1471 return cros_ec_handle_non_uhepi_cmd(dev, event_map[type].clear_cmd,
1472 EC_HOST_EVENT_CLEAR, &mask);
1473}
1474
1475uint64_t cros_ec_get_events_b(struct udevice *dev)
1476{
1477 return cros_ec_get_mask(dev, EC_HOST_EVENT_B);
1478}
1479
1480int cros_ec_clear_events_b(struct udevice *dev, uint64_t mask)
1481{
1482 log_debug("Chrome EC: clear events_b mask to 0x%016llx\n", mask);
1483
1484 return cros_ec_clear_mask(dev, EC_HOST_EVENT_B, mask);
1485}
1486
1487int cros_ec_read_limit_power(struct udevice *dev, int *limit_powerp)
1488{
1489 struct ec_params_charge_state p;
1490 struct ec_response_charge_state r;
1491 int ret;
1492
1493 p.cmd = CHARGE_STATE_CMD_GET_PARAM;
1494 p.get_param.param = CS_PARAM_LIMIT_POWER;
1495 ret = ec_command(dev, EC_CMD_CHARGE_STATE, 0, &p, sizeof(p),
1496 &r, sizeof(r));
1497
1498 /*
1499 * If our EC doesn't support the LIMIT_POWER parameter, assume that
1500 * LIMIT_POWER is not requested.
1501 */
1502 if (ret == -EC_RES_INVALID_PARAM || ret == -EC_RES_INVALID_COMMAND) {
1503 log_warning("PARAM_LIMIT_POWER not supported by EC\n");
1504 return -ENOSYS;
1505 }
1506
1507 if (ret != sizeof(r.get_param))
1508 return -EINVAL;
1509
1510 *limit_powerp = r.get_param.value;
1511 return 0;
1512}
1513
1514int cros_ec_config_powerbtn(struct udevice *dev, uint32_t flags)
1515{
1516 struct ec_params_config_power_button params;
1517 int ret;
1518
1519 params.flags = flags;
1520 ret = ec_command(dev, EC_CMD_CONFIG_POWER_BUTTON, 0,
1521 &params, sizeof(params), NULL, 0);
1522 if (ret < 0)
1523 return ret;
1524
1525 return 0;
1526}
1527
1528int cros_ec_get_lid_shutdown_mask(struct udevice *dev)
1529{
1530 u32 mask;
1531 int ret;
1532
1533 ret = cros_ec_get_event_mask(dev, EC_CMD_HOST_EVENT_GET_SMI_MASK,
1534 &mask);
1535 if (ret < 0)
1536 return ret;
1537
1538 return !!(mask & EC_HOST_EVENT_MASK(EC_HOST_EVENT_LID_CLOSED));
1539}
1540
1541int cros_ec_set_lid_shutdown_mask(struct udevice *dev, int enable)
1542{
1543 u32 mask;
1544 int ret;
1545
1546 ret = cros_ec_get_event_mask(dev, EC_CMD_HOST_EVENT_GET_SMI_MASK,
1547 &mask);
1548 if (ret < 0)
1549 return ret;
1550
Simon Glass48d268f2018-11-23 21:29:36 -07001551 /* Set lid close event state in the EC SMI event mask */
Simon Glass153f2522018-11-06 15:21:22 -07001552 if (enable)
1553 mask |= EC_HOST_EVENT_MASK(EC_HOST_EVENT_LID_CLOSED);
1554 else
1555 mask &= ~EC_HOST_EVENT_MASK(EC_HOST_EVENT_LID_CLOSED);
1556
1557 ret = cros_ec_set_event_mask(dev, EC_CMD_HOST_EVENT_SET_SMI_MASK, mask);
1558 if (ret < 0)
1559 return ret;
1560
1561 printf("EC: %sabled lid close event\n", enable ? "en" : "dis");
Simon Glass9ad07af2015-08-03 08:19:23 -06001562 return 0;
1563}
1564
Simon Glass333e3a92021-01-16 14:52:31 -07001565int cros_ec_vstore_supported(struct udevice *dev)
1566{
1567 return cros_ec_check_feature(dev, EC_FEATURE_VSTORE);
1568}
1569
1570int cros_ec_vstore_info(struct udevice *dev, u32 *lockedp)
1571{
1572 struct ec_response_vstore_info *resp;
1573
1574 if (ec_command_inptr(dev, EC_CMD_VSTORE_INFO, 0, NULL, 0,
1575 (uint8_t **)&resp, sizeof(*resp)) != sizeof(*resp))
1576 return -EIO;
1577
1578 if (lockedp)
1579 *lockedp = resp->slot_locked;
1580
1581 return resp->slot_count;
1582}
1583
1584/*
1585 * cros_ec_vstore_read - Read data from EC vstore slot
1586 *
1587 * @slot: vstore slot to read from
1588 * @data: buffer to store read data, must be EC_VSTORE_SLOT_SIZE bytes
1589 */
1590int cros_ec_vstore_read(struct udevice *dev, int slot, uint8_t *data)
1591{
1592 struct ec_params_vstore_read req;
1593 struct ec_response_vstore_read *resp;
1594
1595 req.slot = slot;
1596 if (ec_command_inptr(dev, EC_CMD_VSTORE_READ, 0, &req, sizeof(req),
1597 (uint8_t **)&resp, sizeof(*resp)) != sizeof(*resp))
1598 return -EIO;
1599
1600 if (!data || req.slot >= EC_VSTORE_SLOT_MAX)
1601 return -EINVAL;
1602
1603 memcpy(data, resp->data, sizeof(resp->data));
1604
1605 return 0;
1606}
1607
1608/*
1609 * cros_ec_vstore_write - Save data into EC vstore slot
1610 *
1611 * @slot: vstore slot to write into
1612 * @data: data to write
1613 * @size: size of data in bytes
1614 *
1615 * Maximum size of data is EC_VSTORE_SLOT_SIZE. It is the callers
1616 * responsibility to check the number of implemented slots by
1617 * querying the vstore info.
1618 */
1619int cros_ec_vstore_write(struct udevice *dev, int slot, const uint8_t *data,
1620 size_t size)
1621{
1622 struct ec_params_vstore_write req;
1623
1624 if (slot >= EC_VSTORE_SLOT_MAX || size > EC_VSTORE_SLOT_SIZE)
1625 return -EINVAL;
1626
1627 req.slot = slot;
1628 memcpy(req.data, data, size);
1629
1630 if (ec_command(dev, EC_CMD_VSTORE_WRITE, 0, &req, sizeof(req), NULL, 0))
1631 return -EIO;
1632
1633 return 0;
1634}
1635
Simon Glass9d702522021-01-16 14:52:28 -07001636int cros_ec_get_switches(struct udevice *dev)
1637{
1638 struct dm_cros_ec_ops *ops;
1639 int ret;
1640
1641 ops = dm_cros_ec_get_ops(dev);
1642 if (!ops->get_switches)
1643 return -ENOSYS;
1644
1645 ret = ops->get_switches(dev);
1646 if (ret < 0)
1647 return log_msg_ret("get", ret);
1648
1649 return ret;
1650}
1651
Simon Glasscbb191b2021-07-05 16:32:49 -06001652int cros_ec_read_batt_charge(struct udevice *dev, uint *chargep)
1653{
1654 struct ec_params_charge_state req;
1655 struct ec_response_charge_state resp;
1656 int ret;
1657
1658 req.cmd = CHARGE_STATE_CMD_GET_STATE;
1659 ret = ec_command(dev, EC_CMD_CHARGE_STATE, 0, &req, sizeof(req),
1660 &resp, sizeof(resp));
1661 if (ret)
1662 return log_msg_ret("read", ret);
1663
1664 *chargep = resp.get_state.batt_state_of_charge;
1665
1666 return 0;
1667}
1668
Simon Glass44569b52014-10-13 23:42:14 -06001669UCLASS_DRIVER(cros_ec) = {
1670 .id = UCLASS_CROS_EC,
Simon Glassf18ca782019-05-02 10:52:11 -06001671 .name = "cros-ec",
Simon Glass8a2b47f2020-12-03 16:55:17 -07001672 .per_device_auto = sizeof(struct cros_ec_dev),
Simon Glass92882652021-08-07 07:24:04 -06001673#if CONFIG_IS_ENABLED(OF_REAL)
Simon Glass18230342016-07-05 17:10:10 -06001674 .post_bind = dm_scan_fdt_dev,
Simon Glass692f38d2021-01-16 14:52:30 -07001675#endif
Simon Glass134022a2018-11-06 15:21:21 -07001676 .flags = DM_UC_FLAG_ALLOC_PRIV_DMA,
Simon Glass44569b52014-10-13 23:42:14 -06001677};