blob: 9c1e6a5e3e70686feacce2d7bafe6f6468ffd7e0 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Hung-ying Tyan88364382013-05-15 18:27:28 +08002/*
3 * Chromium OS cros_ec driver
4 *
5 * Copyright (c) 2012 The Chromium OS Authors.
Hung-ying Tyan88364382013-05-15 18:27:28 +08006 */
7
8/*
Simon Glass836bb6e2014-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 Tyan88364382013-05-15 18:27:28 +080014 */
15
Simon Glassac806522018-11-06 15:21:19 -070016#define LOG_CATEGORY UCLASS_CROS_EC
17
Hung-ying Tyan88364382013-05-15 18:27:28 +080018#include <common.h>
19#include <command.h>
Simon Glass84d6cbd2014-10-13 23:42:14 -060020#include <dm.h>
Hung-ying Tyan88364382013-05-15 18:27:28 +080021#include <i2c.h>
22#include <cros_ec.h>
23#include <fdtdec.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060024#include <log.h>
Hung-ying Tyan88364382013-05-15 18:27:28 +080025#include <malloc.h>
26#include <spi.h>
Simon Glassc05ed002020-05-10 11:40:11 -060027#include <linux/delay.h>
Masahiro Yamada1221ce42016-09-21 11:28:55 +090028#include <linux/errno.h>
Hung-ying Tyan88364382013-05-15 18:27:28 +080029#include <asm/io.h>
30#include <asm-generic/gpio.h>
Simon Glass84d6cbd2014-10-13 23:42:14 -060031#include <dm/device-internal.h>
Simon Glass2ec9d172017-05-18 20:09:23 -060032#include <dm/of_extra.h>
Simon Glass84d6cbd2014-10-13 23:42:14 -060033#include <dm/uclass-internal.h>
Hung-ying Tyan88364382013-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 Glass2525e532021-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 Tyan88364382013-05-15 18:27:28 +080050};
51
Simon Glass72ef8bf2018-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 Tyan88364382013-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 Schuchardt185f8122022-01-19 18:05:50 +0100119 * Return: checksum value (0 to 255)
Hung-ying Tyan88364382013-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 Glass2d8ede52014-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 Schuchardt185f8122022-01-19 18:05:50 +0100140 * Return: packet size in bytes, or <0 if error.
Simon Glass2d8ede52014-02-27 13:26:09 -0700141 */
Simon Glass6322a7b2018-10-01 12:22:22 -0600142static int create_proto3_request(struct cros_ec_dev *cdev,
Simon Glass2d8ede52014-02-27 13:26:09 -0700143 int cmd, int cmd_version,
144 const void *dout, int dout_len)
145{
Simon Glass6322a7b2018-10-01 12:22:22 -0600146 struct ec_host_request *rq = (struct ec_host_request *)cdev->dout;
Simon Glass2d8ede52014-02-27 13:26:09 -0700147 int out_bytes = dout_len + sizeof(*rq);
148
149 /* Fail if output size is too big */
Simon Glass6322a7b2018-10-01 12:22:22 -0600150 if (out_bytes > (int)sizeof(cdev->dout)) {
Simon Glass2d8ede52014-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 Glass6322a7b2018-10-01 12:22:22 -0600167 rq->checksum = (uint8_t)(-cros_ec_calc_checksum(cdev->dout, out_bytes));
Simon Glass2d8ede52014-02-27 13:26:09 -0700168
Simon Glass6322a7b2018-10-01 12:22:22 -0600169 cros_ec_dump_data("out", cmd, cdev->dout, out_bytes);
Simon Glass2d8ede52014-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 Schuchardt185f8122022-01-19 18:05:50 +0100180 * Return: maximum expected number of bytes in response, or <0 if error.
Simon Glass2d8ede52014-02-27 13:26:09 -0700181 */
Simon Glass6322a7b2018-10-01 12:22:22 -0600182static int prepare_proto3_response_buffer(struct cros_ec_dev *cdev, int din_len)
Simon Glass2d8ede52014-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 Glass6322a7b2018-10-01 12:22:22 -0600187 if (in_bytes > (int)sizeof(cdev->din)) {
Simon Glass2d8ede52014-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 Schuchardt185f8122022-01-19 18:05:50 +0100204 * Return: number of bytes of response data, or <0 if error. Note that error
Simon Glass8bbb38b2015-01-25 08:27:17 -0700205 * codes can be from errno.h or -ve EC_RES_INVALID_CHECKSUM values (and they
206 * overlap!)
Simon Glass2d8ede52014-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 Glass6322a7b2018-10-01 12:22:22 -0600256static int send_command_proto3(struct cros_ec_dev *cdev,
Simon Glass2d8ede52014-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 Glass84d6cbd2014-10-13 23:42:14 -0600261 struct dm_cros_ec_ops *ops;
Simon Glass2d8ede52014-02-27 13:26:09 -0700262 int out_bytes, in_bytes;
263 int rv;
264
265 /* Create request packet */
Simon Glass6322a7b2018-10-01 12:22:22 -0600266 out_bytes = create_proto3_request(cdev, cmd, cmd_version,
Simon Glass2d8ede52014-02-27 13:26:09 -0700267 dout, dout_len);
268 if (out_bytes < 0)
269 return out_bytes;
270
271 /* Prepare response buffer */
Simon Glass6322a7b2018-10-01 12:22:22 -0600272 in_bytes = prepare_proto3_response_buffer(cdev, din_len);
Simon Glass2d8ede52014-02-27 13:26:09 -0700273 if (in_bytes < 0)
274 return in_bytes;
275
Simon Glass6322a7b2018-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 Glass2d8ede52014-02-27 13:26:09 -0700279 if (rv < 0)
280 return rv;
281
282 /* Process the response */
Simon Glass6322a7b2018-10-01 12:22:22 -0600283 return handle_proto3_response(cdev, dinp, din_len);
Simon Glass2d8ede52014-02-27 13:26:09 -0700284}
285
Simon Glass9fea76f2018-11-06 15:21:18 -0700286static int send_command(struct cros_ec_dev *dev, uint cmd, int cmd_version,
Hung-ying Tyan88364382013-05-15 18:27:28 +0800287 const void *dout, int dout_len,
288 uint8_t **dinp, int din_len)
289{
Simon Glass84d6cbd2014-10-13 23:42:14 -0600290 struct dm_cros_ec_ops *ops;
Simon Glass2d8ede52014-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 Tyan88364382013-05-15 18:27:28 +0800298
Simon Glass84d6cbd2014-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 Tyan88364382013-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 Schuchardt185f8122022-01-19 18:05:50 +0100320 * Return: number of bytes in response, or -ve on error
Hung-ying Tyan88364382013-05-15 18:27:28 +0800321 */
Michael Auchterb4f98b32019-12-09 20:27:31 +0000322static int ec_command_inptr(struct udevice *dev, uint cmd,
Simon Glasse6c5c942018-10-01 12:22:08 -0600323 int cmd_version, const void *dout, int dout_len,
324 uint8_t **dinp, int din_len)
Hung-ying Tyan88364382013-05-15 18:27:28 +0800325{
Simon Glass6322a7b2018-10-01 12:22:22 -0600326 struct cros_ec_dev *cdev = dev_get_uclass_priv(dev);
Simon Glass2ab83f02014-02-27 13:26:11 -0700327 uint8_t *din = NULL;
Hung-ying Tyan88364382013-05-15 18:27:28 +0800328 int len;
329
Simon Glass6322a7b2018-10-01 12:22:22 -0600330 len = send_command(cdev, cmd, cmd_version, dout, dout_len, &din,
331 din_len);
Hung-ying Tyan88364382013-05-15 18:27:28 +0800332
333 /* If the command doesn't complete, wait a while */
334 if (len == -EC_RES_IN_PROGRESS) {
Simon Glass2ab83f02014-02-27 13:26:11 -0700335 struct ec_response_get_comms_status *resp = NULL;
Hung-ying Tyan88364382013-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 Glass6322a7b2018-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 Tyan88364382013-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 Glass6322a7b2018-10-01 12:22:22 -0600359 len = send_command(cdev, EC_CMD_RESEND_RESPONSE, 0, NULL, 0,
360 &din, din_len);
Hung-ying Tyan88364382013-05-15 18:27:28 +0800361 }
362
Simon Glasse907bf22017-05-18 20:09:22 -0600363 debug("%s: len=%d, din=%p\n", __func__, len, din);
Hung-ying Tyan88364382013-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 Schuchardt185f8122022-01-19 18:05:50 +0100387 * Return: number of bytes in response, or -ve on error
Hung-ying Tyan88364382013-05-15 18:27:28 +0800388 */
Simon Glass9fea76f2018-11-06 15:21:18 -0700389static int ec_command(struct udevice *dev, uint cmd, int cmd_version,
Hung-ying Tyan88364382013-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 Glass6322a7b2018-10-01 12:22:22 -0600398 &in_buffer, din_len);
Hung-ying Tyan88364382013-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 Glass698e30f2021-01-16 14:52:24 -0700406 if (len > din_len)
407 return -ENOSPC;
Hung-ying Tyan88364382013-05-15 18:27:28 +0800408 memmove(din, in_buffer, len);
409 }
410 }
411 return len;
412}
413
Simon Glass745009c2015-10-18 21:17:14 -0600414int cros_ec_scan_keyboard(struct udevice *dev, struct mbkp_keyscan *scan)
Hung-ying Tyan88364382013-05-15 18:27:28 +0800415{
Wolfgang Denk0cf207e2021-09-27 17:42:39 +0200416 if (ec_command(dev, EC_CMD_MKBP_STATE, 0, NULL, 0, scan,
Simon Glass2ab83f02014-02-27 13:26:11 -0700417 sizeof(scan->data)) != sizeof(scan->data))
Hung-ying Tyan88364382013-05-15 18:27:28 +0800418 return -1;
419
420 return 0;
421}
422
Alper Nebi Yasak69007972020-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 Glass6322a7b2018-10-01 12:22:22 -0600438int cros_ec_read_id(struct udevice *dev, char *id, int maxlen)
Hung-ying Tyan88364382013-05-15 18:27:28 +0800439{
440 struct ec_response_get_version *r;
Simon Glassac806522018-11-06 15:21:19 -0700441 int ret;
Hung-ying Tyan88364382013-05-15 18:27:28 +0800442
Simon Glassac806522018-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 Glassa749c092018-11-23 21:29:36 -0700446 log_err("Got rc %d, expected %u\n", ret, (uint)sizeof(*r));
Hung-ying Tyan88364382013-05-15 18:27:28 +0800447 return -1;
Simon Glassac806522018-11-06 15:21:19 -0700448 }
Hung-ying Tyan88364382013-05-15 18:27:28 +0800449
Simon Glass2ab83f02014-02-27 13:26:11 -0700450 if (maxlen > (int)sizeof(r->version_string_ro))
Hung-ying Tyan88364382013-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 Glassac806522018-11-06 15:21:19 -0700461 log_err("Invalid EC image %d\n", r->current_image);
Hung-ying Tyan88364382013-05-15 18:27:28 +0800462 return -1;
463 }
464
465 id[maxlen - 1] = '\0';
466 return 0;
467}
468
Simon Glass6322a7b2018-10-01 12:22:22 -0600469int cros_ec_read_version(struct udevice *dev,
470 struct ec_response_get_version **versionp)
Hung-ying Tyan88364382013-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 Glass2ab83f02014-02-27 13:26:11 -0700474 != sizeof(**versionp))
Hung-ying Tyan88364382013-05-15 18:27:28 +0800475 return -1;
476
477 return 0;
478}
479
Simon Glass6322a7b2018-10-01 12:22:22 -0600480int cros_ec_read_build_info(struct udevice *dev, char **strp)
Hung-ying Tyan88364382013-05-15 18:27:28 +0800481{
482 if (ec_command_inptr(dev, EC_CMD_GET_BUILD_INFO, 0, NULL, 0,
Simon Glass836bb6e2014-02-27 13:26:07 -0700483 (uint8_t **)strp, EC_PROTO2_MAX_PARAM_SIZE) < 0)
Hung-ying Tyan88364382013-05-15 18:27:28 +0800484 return -1;
485
486 return 0;
487}
488
Simon Glass6322a7b2018-10-01 12:22:22 -0600489int cros_ec_read_current_image(struct udevice *dev,
Simon Glasse6c5c942018-10-01 12:22:08 -0600490 enum ec_current_image *image)
Hung-ying Tyan88364382013-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 Glass2ab83f02014-02-27 13:26:11 -0700495 (uint8_t **)&r, sizeof(*r)) != sizeof(*r))
Hung-ying Tyan88364382013-05-15 18:27:28 +0800496 return -1;
497
498 *image = r->current_image;
499 return 0;
500}
501
Simon Glass6322a7b2018-10-01 12:22:22 -0600502static int cros_ec_wait_on_hash_done(struct udevice *dev,
Simon Glassd237e9c2020-11-09 07:14:43 -0700503 struct ec_params_vboot_hash *p,
Simon Glasse6c5c942018-10-01 12:22:08 -0600504 struct ec_response_vboot_hash *hash)
Hung-ying Tyan88364382013-05-15 18:27:28 +0800505{
Hung-ying Tyan88364382013-05-15 18:27:28 +0800506 ulong start;
507
508 start = get_timer(0);
509 while (hash->status == EC_VBOOT_HASH_STATUS_BUSY) {
Simon Glass2525e532021-01-16 14:52:23 -0700510 mdelay(CROS_EC_HASH_CHECK_DELAY_MS);
Hung-ying Tyan88364382013-05-15 18:27:28 +0800511
Simon Glassd237e9c2020-11-09 07:14:43 -0700512 p->cmd = EC_VBOOT_HASH_GET;
Simon Glass2525e532021-01-16 14:52:23 -0700513
Simon Glassd237e9c2020-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 Tyan88364382013-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 Glassa12ef7e2018-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 Tyan88364382013-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 Glassa12ef7e2018-10-01 12:22:38 -0600533 p.offset = hash_offset;
Hung-ying Tyan88364382013-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 Glassd237e9c2020-11-09 07:14:43 -0700539 rv = cros_ec_wait_on_hash_done(dev, &p, hash);
Hung-ying Tyan88364382013-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 Glass836bb6e2014-02-27 13:26:07 -0700553 p.cmd = EC_VBOOT_HASH_START;
Hung-ying Tyan88364382013-05-15 18:27:28 +0800554 p.hash_type = EC_VBOOT_HASH_TYPE_SHA256;
555 p.nonce_size = 0;
Simon Glassa12ef7e2018-10-01 12:22:38 -0600556 p.offset = hash_offset;
Hung-ying Tyan88364382013-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 Glassd237e9c2020-11-09 07:14:43 -0700562 rv = cros_ec_wait_on_hash_done(dev, &p, hash);
Hung-ying Tyan88364382013-05-15 18:27:28 +0800563 if (rv)
564 return rv;
Simon Glassd237e9c2020-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 Tyan88364382013-05-15 18:27:28 +0800569
570 debug("%s: hash done\n", __func__);
571
572 return 0;
573}
574
Simon Glass6322a7b2018-10-01 12:22:22 -0600575static int cros_ec_invalidate_hash(struct udevice *dev)
Hung-ying Tyan88364382013-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 Glassd8e9a932021-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 Glass6322a7b2018-10-01 12:22:22 -0600619int cros_ec_reboot(struct udevice *dev, enum ec_reboot_cmd cmd, uint8_t flags)
Hung-ying Tyan88364382013-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 Glass2525e532021-01-16 14:52:23 -0700631 ulong start;
632
Hung-ying Tyan88364382013-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 Glass2525e532021-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 Tyan88364382013-05-15 18:27:28 +0800648 }
649
650 return 0;
651}
652
Simon Glass745009c2015-10-18 21:17:14 -0600653int cros_ec_interrupt_pending(struct udevice *dev)
Hung-ying Tyan88364382013-05-15 18:27:28 +0800654{
Simon Glass745009c2015-10-18 21:17:14 -0600655 struct cros_ec_dev *cdev = dev_get_uclass_priv(dev);
656
Hung-ying Tyan88364382013-05-15 18:27:28 +0800657 /* no interrupt support : always poll */
Simon Glass745009c2015-10-18 21:17:14 -0600658 if (!dm_gpio_is_valid(&cdev->ec_int))
Simon Glass2ab83f02014-02-27 13:26:11 -0700659 return -ENOENT;
Hung-ying Tyan88364382013-05-15 18:27:28 +0800660
Simon Glass745009c2015-10-18 21:17:14 -0600661 return dm_gpio_get_value(&cdev->ec_int);
Hung-ying Tyan88364382013-05-15 18:27:28 +0800662}
663
Simon Glass6322a7b2018-10-01 12:22:22 -0600664int cros_ec_info(struct udevice *dev, struct ec_response_mkbp_info *info)
Hung-ying Tyan88364382013-05-15 18:27:28 +0800665{
Simon Glass836bb6e2014-02-27 13:26:07 -0700666 if (ec_command(dev, EC_CMD_MKBP_INFO, 0, NULL, 0, info,
Simon Glass2ab83f02014-02-27 13:26:11 -0700667 sizeof(*info)) != sizeof(*info))
Hung-ying Tyan88364382013-05-15 18:27:28 +0800668 return -1;
669
670 return 0;
671}
672
Simon Glass72ef8bf2018-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 Glass6322a7b2018-10-01 12:22:22 -0600703int cros_ec_get_host_events(struct udevice *dev, uint32_t *events_ptr)
Hung-ying Tyan88364382013-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 Glass2ab83f02014-02-27 13:26:11 -0700712 (uint8_t **)&resp, sizeof(*resp)) < (int)sizeof(*resp))
Hung-ying Tyan88364382013-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 Glass6322a7b2018-10-01 12:22:22 -0600722int cros_ec_clear_host_events(struct udevice *dev, uint32_t events)
Hung-ying Tyan88364382013-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 Glass6322a7b2018-10-01 12:22:22 -0600739int cros_ec_flash_protect(struct udevice *dev, uint32_t set_mask,
740 uint32_t set_flags,
Simon Glasse6c5c942018-10-01 12:22:08 -0600741 struct ec_response_flash_protect *resp)
Hung-ying Tyan88364382013-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 Glass2ab83f02014-02-27 13:26:11 -0700750 resp, sizeof(*resp)) != sizeof(*resp))
Hung-ying Tyan88364382013-05-15 18:27:28 +0800751 return -1;
752
753 return 0;
754}
755
Simon Glass6322a7b2018-10-01 12:22:22 -0600756static int cros_ec_check_version(struct udevice *dev)
Hung-ying Tyan88364382013-05-15 18:27:28 +0800757{
Simon Glass6322a7b2018-10-01 12:22:22 -0600758 struct cros_ec_dev *cdev = dev_get_uclass_priv(dev);
Hung-ying Tyan88364382013-05-15 18:27:28 +0800759 struct ec_params_hello req;
Hung-ying Tyan88364382013-05-15 18:27:28 +0800760
Simon Glass72a38e02015-03-26 09:29:30 -0600761 struct dm_cros_ec_ops *ops;
762 int ret;
763
Simon Glass6322a7b2018-10-01 12:22:22 -0600764 ops = dm_cros_ec_get_ops(dev);
Simon Glass72a38e02015-03-26 09:29:30 -0600765 if (ops->check_version) {
Simon Glass6322a7b2018-10-01 12:22:22 -0600766 ret = ops->check_version(dev);
Simon Glass72a38e02015-03-26 09:29:30 -0600767 if (ret)
768 return ret;
769 }
Hung-ying Tyan88364382013-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 Spanglere8c12662014-02-27 13:26:08 -0700784
Randall Spanglera6070282014-02-27 13:26:10 -0700785 /* Try sending a version 3 packet */
Simon Glass6322a7b2018-10-01 12:22:22 -0600786 cdev->protocol_version = 3;
Simon Glassd11e8fd2014-11-11 18:06:30 -0700787 req.in_data = 0;
Simon Glassd8e9a932021-01-16 14:52:22 -0700788 ret = cros_ec_hello(dev, NULL);
789 if (!ret || ret == -ENOTSYNC)
Randall Spanglera6070282014-02-27 13:26:10 -0700790 return 0;
Randall Spanglera6070282014-02-27 13:26:10 -0700791
Randall Spanglere8c12662014-02-27 13:26:08 -0700792 /* Try sending a version 2 packet */
Simon Glass6322a7b2018-10-01 12:22:22 -0600793 cdev->protocol_version = 2;
Simon Glassd8e9a932021-01-16 14:52:22 -0700794 ret = cros_ec_hello(dev, NULL);
795 if (!ret || ret == -ENOTSYNC)
Randall Spanglere8c12662014-02-27 13:26:08 -0700796 return 0;
Hung-ying Tyan88364382013-05-15 18:27:28 +0800797
Randall Spanglere8c12662014-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 Glass6322a7b2018-10-01 12:22:22 -0600804 cdev->protocol_version = 0;
Randall Spanglere8c12662014-02-27 13:26:08 -0700805 printf("%s: ERROR: old EC interface not supported\n", __func__);
806 return -1;
Hung-ying Tyan88364382013-05-15 18:27:28 +0800807}
808
Simon Glass6322a7b2018-10-01 12:22:22 -0600809int cros_ec_test(struct udevice *dev)
Hung-ying Tyan88364382013-05-15 18:27:28 +0800810{
Simon Glassd8e9a932021-01-16 14:52:22 -0700811 uint out_data;
812 int ret;
Hung-ying Tyan88364382013-05-15 18:27:28 +0800813
Simon Glassd8e9a932021-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 Tyan88364382013-05-15 18:27:28 +0800819 printf("ec_command_inptr() returned error\n");
Simon Glassd8e9a932021-01-16 14:52:22 -0700820 return ret;
Hung-ying Tyan88364382013-05-15 18:27:28 +0800821 }
822
823 return 0;
824}
825
Simon Glass6322a7b2018-10-01 12:22:22 -0600826int cros_ec_flash_offset(struct udevice *dev, enum ec_flash_region region,
Hung-ying Tyan88364382013-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 Glass6322a7b2018-10-01 12:22:22 -0600848int cros_ec_flash_erase(struct udevice *dev, uint32_t offset, uint32_t size)
Hung-ying Tyan88364382013-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 Schuchardt185f8122022-01-19 18:05:50 +0100874 * Return: 0 if ok, -1 on error
Hung-ying Tyan88364382013-05-15 18:27:28 +0800875 */
Simon Glass6322a7b2018-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 Tyan88364382013-05-15 18:27:28 +0800878{
Moritz Fischerbae5b972016-09-12 12:57:52 -0700879 struct ec_params_flash_write *p;
880 int ret;
Hung-ying Tyan88364382013-05-15 18:27:28 +0800881
Moritz Fischerbae5b972016-09-12 12:57:52 -0700882 p = malloc(sizeof(*p) + size);
883 if (!p)
884 return -ENOMEM;
Hung-ying Tyan88364382013-05-15 18:27:28 +0800885
Moritz Fischerbae5b972016-09-12 12:57:52 -0700886 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);
895
896 return ret;
Hung-ying Tyan88364382013-05-15 18:27:28 +0800897}
898
899/**
900 * Return optimal flash write burst size
901 */
Simon Glass6322a7b2018-10-01 12:22:22 -0600902static int cros_ec_flash_write_burst_size(struct udevice *dev)
Hung-ying Tyan88364382013-05-15 18:27:28 +0800903{
Simon Glass836bb6e2014-02-27 13:26:07 -0700904 return EC_FLASH_WRITE_VER0_SIZE;
Hung-ying Tyan88364382013-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 Schuchardt185f8122022-01-19 18:05:50 +0100915 * Return: 0 if erased, non-zero if any word is not erased
Hung-ying Tyan88364382013-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 Fischer281ca882016-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 Glass6322a7b2018-10-01 12:22:22 -0600936int cros_ec_read_flashinfo(struct udevice *dev,
Simon Glasse6c5c942018-10-01 12:22:08 -0600937 struct ec_response_flash_info *info)
Moritz Fischer281ca882016-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 Glass6322a7b2018-10-01 12:22:22 -0600949int cros_ec_flash_write(struct udevice *dev, const uint8_t *data,
Simon Glasse6c5c942018-10-01 12:22:08 -0600950 uint32_t offset, uint32_t size)
Hung-ying Tyan88364382013-05-15 18:27:28 +0800951{
Simon Glass6322a7b2018-10-01 12:22:22 -0600952 struct cros_ec_dev *cdev = dev_get_uclass_priv(dev);
Hung-ying Tyan88364382013-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 Glassdc05ac02018-11-06 15:21:20 -0700957 if (!burst)
958 return -EINVAL;
959
Hung-ying Tyan88364382013-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 Glass6322a7b2018-10-01 12:22:22 -0600970 if (cdev->optimise_flash_write &&
Simon Glasse6c5c942018-10-01 12:22:08 -0600971 cros_ec_data_is_erased((uint32_t *)data, todo))
Hung-ying Tyan88364382013-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 Glass72ef8bf2018-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 Schuchardt185f8122022-01-19 18:05:50 +0100987 * Return: 0 if success or not applicable. Non-zero if verification failed.
Simon Glass72ef8bf2018-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 Tyan88364382013-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 Schuchardt185f8122022-01-19 18:05:50 +01001024 * Return: 0 if ok, -1 on error
Hung-ying Tyan88364382013-05-15 18:27:28 +08001025 */
Simon Glass6322a7b2018-10-01 12:22:22 -06001026static int cros_ec_flash_read_block(struct udevice *dev, uint8_t *data,
Simon Glasse6c5c942018-10-01 12:22:08 -06001027 uint32_t offset, uint32_t size)
Hung-ying Tyan88364382013-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 Glass6322a7b2018-10-01 12:22:22 -06001038int cros_ec_flash_read(struct udevice *dev, uint8_t *data, uint32_t offset,
Simon Glasse6c5c942018-10-01 12:22:08 -06001039 uint32_t size)
Hung-ying Tyan88364382013-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 Glass6322a7b2018-10-01 12:22:22 -06001056int cros_ec_flash_update_rw(struct udevice *dev, const uint8_t *image,
Simon Glasse6c5c942018-10-01 12:22:08 -06001057 int image_size)
Hung-ying Tyan88364382013-05-15 18:27:28 +08001058{
1059 uint32_t rw_offset, rw_size;
1060 int ret;
1061
Simon Glass6f1c0432018-10-01 12:22:36 -06001062 if (cros_ec_flash_offset(dev, EC_FLASH_REGION_ACTIVE, &rw_offset,
1063 &rw_size))
Hung-ying Tyan88364382013-05-15 18:27:28 +08001064 return -1;
Simon Glass2ab83f02014-02-27 13:26:11 -07001065 if (image_size > (int)rw_size)
Hung-ying Tyan88364382013-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 Glass7791df52021-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));
Dan Carpenterd8ac6192023-07-26 09:58:34 +03001103 if (ret != sizeof(*r)) {
1104 if (ret >= 0)
1105 ret = -EIO;
1106 return ret;
1107 }
Simon Glass7791df52021-01-16 14:52:25 -07001108
1109 return r->sku_id;
1110}
1111
Simon Glass6322a7b2018-10-01 12:22:22 -06001112int cros_ec_read_nvdata(struct udevice *dev, uint8_t *block, int size)
Hung-ying Tyan88364382013-05-15 18:27:28 +08001113{
1114 struct ec_params_vbnvcontext p;
1115 int len;
1116
Simon Glass72ef8bf2018-11-06 15:21:22 -07001117 if (size != EC_VBNV_BLOCK_SIZE && size != EC_VBNV_BLOCK_SIZE_V2)
Simon Glass6322a7b2018-10-01 12:22:22 -06001118 return -EINVAL;
1119
Hung-ying Tyan88364382013-05-15 18:27:28 +08001120 p.op = EC_VBNV_CONTEXT_OP_READ;
1121
1122 len = ec_command(dev, EC_CMD_VBNV_CONTEXT, EC_VER_VBNV_CONTEXT,
Simon Glass72ef8bf2018-11-06 15:21:22 -07001123 &p, sizeof(uint32_t) + size, block, size);
1124 if (len != size) {
1125 log_err("Expected %d bytes, got %d\n", size, len);
Simon Glass6322a7b2018-10-01 12:22:22 -06001126 return -EIO;
Simon Glass72ef8bf2018-11-06 15:21:22 -07001127 }
Hung-ying Tyan88364382013-05-15 18:27:28 +08001128
1129 return 0;
1130}
1131
Simon Glass6322a7b2018-10-01 12:22:22 -06001132int cros_ec_write_nvdata(struct udevice *dev, const uint8_t *block, int size)
Hung-ying Tyan88364382013-05-15 18:27:28 +08001133{
1134 struct ec_params_vbnvcontext p;
1135 int len;
1136
Simon Glass72ef8bf2018-11-06 15:21:22 -07001137 if (size != EC_VBNV_BLOCK_SIZE && size != EC_VBNV_BLOCK_SIZE_V2)
Simon Glass6322a7b2018-10-01 12:22:22 -06001138 return -EINVAL;
Hung-ying Tyan88364382013-05-15 18:27:28 +08001139 p.op = EC_VBNV_CONTEXT_OP_WRITE;
Simon Glass72ef8bf2018-11-06 15:21:22 -07001140 memcpy(p.block, block, size);
Hung-ying Tyan88364382013-05-15 18:27:28 +08001141
1142 len = ec_command_inptr(dev, EC_CMD_VBNV_CONTEXT, EC_VER_VBNV_CONTEXT,
Simon Glass72ef8bf2018-11-06 15:21:22 -07001143 &p, sizeof(uint32_t) + size, NULL, 0);
Hung-ying Tyan88364382013-05-15 18:27:28 +08001144 if (len < 0)
1145 return -1;
1146
1147 return 0;
1148}
1149
Simon Glass72ef8bf2018-11-06 15:21:22 -07001150int cros_ec_battery_cutoff(struct udevice *dev, uint8_t flags)
1151{
1152 struct ec_params_battery_cutoff p;
1153 int len;
1154
1155 p.flags = flags;
1156 len = ec_command(dev, EC_CMD_BATTERY_CUT_OFF, 1, &p, sizeof(p),
1157 NULL, 0);
1158
1159 if (len < 0)
1160 return -1;
1161 return 0;
1162}
1163
Alper Nebi Yasak1b9ee282020-10-22 23:49:27 +03001164int cros_ec_set_pwm_duty(struct udevice *dev, uint8_t index, uint16_t duty)
1165{
1166 struct ec_params_pwm_set_duty p;
1167 int ret;
1168
1169 p.duty = duty;
1170 p.pwm_type = EC_PWM_TYPE_GENERIC;
1171 p.index = index;
1172
1173 ret = ec_command(dev, EC_CMD_PWM_SET_DUTY, 0, &p, sizeof(p),
1174 NULL, 0);
1175 if (ret < 0)
1176 return ret;
1177
1178 return 0;
1179}
1180
Simon Glassf48eaf02015-08-03 08:19:24 -06001181int cros_ec_set_ldo(struct udevice *dev, uint8_t index, uint8_t state)
Hung-ying Tyan88364382013-05-15 18:27:28 +08001182{
1183 struct ec_params_ldo_set params;
1184
1185 params.index = index;
1186 params.state = state;
1187
Simon Glass6322a7b2018-10-01 12:22:22 -06001188 if (ec_command_inptr(dev, EC_CMD_LDO_SET, 0, &params, sizeof(params),
Simon Glassf48eaf02015-08-03 08:19:24 -06001189 NULL, 0))
Hung-ying Tyan88364382013-05-15 18:27:28 +08001190 return -1;
1191
1192 return 0;
1193}
1194
Simon Glassf48eaf02015-08-03 08:19:24 -06001195int cros_ec_get_ldo(struct udevice *dev, uint8_t index, uint8_t *state)
Hung-ying Tyan88364382013-05-15 18:27:28 +08001196{
1197 struct ec_params_ldo_get params;
1198 struct ec_response_ldo_get *resp;
1199
1200 params.index = index;
1201
Simon Glass6322a7b2018-10-01 12:22:22 -06001202 if (ec_command_inptr(dev, EC_CMD_LDO_GET, 0, &params, sizeof(params),
Simon Glassf48eaf02015-08-03 08:19:24 -06001203 (uint8_t **)&resp, sizeof(*resp)) !=
1204 sizeof(*resp))
Hung-ying Tyan88364382013-05-15 18:27:28 +08001205 return -1;
1206
1207 *state = resp->state;
1208
1209 return 0;
1210}
1211
Simon Glass84d6cbd2014-10-13 23:42:14 -06001212int cros_ec_register(struct udevice *dev)
1213{
Simon Glasse564f052015-03-05 12:25:20 -07001214 struct cros_ec_dev *cdev = dev_get_uclass_priv(dev);
Simon Glass84d6cbd2014-10-13 23:42:14 -06001215 char id[MSG_BYTES];
1216
1217 cdev->dev = dev;
Simon Glass32f8a192015-01-05 20:05:32 -07001218 gpio_request_by_name(dev, "ec-interrupt", 0, &cdev->ec_int,
1219 GPIOD_IS_IN);
Simon Glass2ec9d172017-05-18 20:09:23 -06001220 cdev->optimise_flash_write = dev_read_bool(dev, "optimise-flash-write");
Simon Glass84d6cbd2014-10-13 23:42:14 -06001221
Simon Glass6322a7b2018-10-01 12:22:22 -06001222 if (cros_ec_check_version(dev)) {
Simon Glass84d6cbd2014-10-13 23:42:14 -06001223 debug("%s: Could not detect CROS-EC version\n", __func__);
1224 return -CROS_EC_ERR_CHECK_VERSION;
1225 }
1226
Simon Glass6322a7b2018-10-01 12:22:22 -06001227 if (cros_ec_read_id(dev, id, sizeof(id))) {
Simon Glass84d6cbd2014-10-13 23:42:14 -06001228 debug("%s: Could not read KBC ID\n", __func__);
1229 return -CROS_EC_ERR_READ_ID;
1230 }
1231
1232 /* Remember this device for use by the cros_ec command */
Simon Glassc4b206d2015-02-17 15:29:36 -07001233 debug("Google Chrome EC v%d CROS-EC driver ready, id '%s'\n",
1234 cdev->protocol_version, id);
Simon Glass84d6cbd2014-10-13 23:42:14 -06001235
1236 return 0;
1237}
Hung-ying Tyan88364382013-05-15 18:27:28 +08001238
Simon Glass2ec9d172017-05-18 20:09:23 -06001239int cros_ec_decode_ec_flash(struct udevice *dev, struct fdt_cros_ec *config)
Simon Glassd7f25f32014-02-27 13:26:03 -07001240{
Simon Glass2ec9d172017-05-18 20:09:23 -06001241 ofnode flash_node, node;
Simon Glassd7f25f32014-02-27 13:26:03 -07001242
Simon Glass2ec9d172017-05-18 20:09:23 -06001243 flash_node = dev_read_subnode(dev, "flash");
1244 if (!ofnode_valid(flash_node)) {
Simon Glassd7f25f32014-02-27 13:26:03 -07001245 debug("Failed to find flash node\n");
1246 return -1;
1247 }
1248
Simon Glass5e0a7342018-06-11 13:07:17 -06001249 if (ofnode_read_fmap_entry(flash_node, &config->flash)) {
Simon Glass2ec9d172017-05-18 20:09:23 -06001250 debug("Failed to decode flash node in chrome-ec\n");
Simon Glassd7f25f32014-02-27 13:26:03 -07001251 return -1;
1252 }
1253
Simon Glass2ec9d172017-05-18 20:09:23 -06001254 config->flash_erase_value = ofnode_read_s32_default(flash_node,
1255 "erase-value", -1);
Simon Glass3991f422017-08-05 15:45:54 -06001256 ofnode_for_each_subnode(node, flash_node) {
Simon Glass2ec9d172017-05-18 20:09:23 -06001257 const char *name = ofnode_get_name(node);
Simon Glassd7f25f32014-02-27 13:26:03 -07001258 enum ec_flash_region region;
1259
1260 if (0 == strcmp(name, "ro")) {
1261 region = EC_FLASH_REGION_RO;
1262 } else if (0 == strcmp(name, "rw")) {
Simon Glass6f1c0432018-10-01 12:22:36 -06001263 region = EC_FLASH_REGION_ACTIVE;
Simon Glassd7f25f32014-02-27 13:26:03 -07001264 } else if (0 == strcmp(name, "wp-ro")) {
1265 region = EC_FLASH_REGION_WP_RO;
1266 } else {
1267 debug("Unknown EC flash region name '%s'\n", name);
1268 return -1;
1269 }
1270
Simon Glass5e0a7342018-06-11 13:07:17 -06001271 if (ofnode_read_fmap_entry(node, &config->region[region])) {
Simon Glassd7f25f32014-02-27 13:26:03 -07001272 debug("Failed to decode flash region in chrome-ec'\n");
1273 return -1;
1274 }
1275 }
1276
1277 return 0;
1278}
1279
Moritz Fischer6d1a7182016-09-27 15:42:07 -07001280int cros_ec_i2c_tunnel(struct udevice *dev, int port, struct i2c_msg *in,
1281 int nmsgs)
Simon Glasscc456bd2015-08-03 08:19:23 -06001282{
Simon Glasscc456bd2015-08-03 08:19:23 -06001283 union {
1284 struct ec_params_i2c_passthru p;
1285 uint8_t outbuf[EC_PROTO2_MAX_PARAM_SIZE];
1286 } params;
1287 union {
1288 struct ec_response_i2c_passthru r;
1289 uint8_t inbuf[EC_PROTO2_MAX_PARAM_SIZE];
1290 } response;
1291 struct ec_params_i2c_passthru *p = &params.p;
1292 struct ec_response_i2c_passthru *r = &response.r;
1293 struct ec_params_i2c_passthru_msg *msg;
1294 uint8_t *pdata, *read_ptr = NULL;
1295 int read_len;
1296 int size;
1297 int rv;
1298 int i;
1299
Moritz Fischer6d1a7182016-09-27 15:42:07 -07001300 p->port = port;
Simon Glasscc456bd2015-08-03 08:19:23 -06001301
1302 p->num_msgs = nmsgs;
1303 size = sizeof(*p) + p->num_msgs * sizeof(*msg);
1304
1305 /* Create a message to write the register address and optional data */
1306 pdata = (uint8_t *)p + size;
1307
1308 read_len = 0;
1309 for (i = 0, msg = p->msg; i < nmsgs; i++, msg++, in++) {
1310 bool is_read = in->flags & I2C_M_RD;
1311
1312 msg->addr_flags = in->addr;
1313 msg->len = in->len;
1314 if (is_read) {
1315 msg->addr_flags |= EC_I2C_FLAG_READ;
1316 read_len += in->len;
1317 read_ptr = in->buf;
1318 if (sizeof(*r) + read_len > sizeof(response)) {
1319 puts("Read length too big for buffer\n");
1320 return -1;
1321 }
1322 } else {
1323 if (pdata - (uint8_t *)p + in->len > sizeof(params)) {
1324 puts("Params too large for buffer\n");
1325 return -1;
1326 }
1327 memcpy(pdata, in->buf, in->len);
1328 pdata += in->len;
1329 }
1330 }
1331
Simon Glass6322a7b2018-10-01 12:22:22 -06001332 rv = ec_command(dev, EC_CMD_I2C_PASSTHRU, 0, p, pdata - (uint8_t *)p,
Simon Glasscc456bd2015-08-03 08:19:23 -06001333 r, sizeof(*r) + read_len);
1334 if (rv < 0)
1335 return rv;
1336
1337 /* Parse response */
1338 if (r->i2c_status & EC_I2C_STATUS_ERROR) {
1339 printf("Transfer failed with status=0x%x\n", r->i2c_status);
1340 return -1;
1341 }
1342
1343 if (rv < sizeof(*r) + read_len) {
1344 puts("Truncated read response\n");
1345 return -1;
1346 }
1347
1348 /* We only support a single read message for each transfer */
1349 if (read_len)
1350 memcpy(read_ptr, r->data, read_len);
1351
1352 return 0;
1353}
1354
Simon Glass8aec32f2021-01-16 14:52:26 -07001355int cros_ec_get_features(struct udevice *dev, u64 *featuresp)
Simon Glass72ef8bf2018-11-06 15:21:22 -07001356{
1357 struct ec_response_get_features r;
1358 int rv;
1359
Simon Glass8aec32f2021-01-16 14:52:26 -07001360 rv = ec_command(dev, EC_CMD_GET_FEATURES, 0, NULL, 0, &r, sizeof(r));
1361 if (rv != sizeof(r))
1362 return -EIO;
1363 *featuresp = r.flags[0] | (u64)r.flags[1] << 32;
1364
1365 return 0;
1366}
1367
1368int cros_ec_check_feature(struct udevice *dev, uint feature)
1369{
1370 struct ec_response_get_features r;
1371 int rv;
1372
1373 rv = ec_command(dev, EC_CMD_GET_FEATURES, 0, NULL, 0, &r, sizeof(r));
1374 if (rv != sizeof(r))
1375 return -EIO;
Simon Glass72ef8bf2018-11-06 15:21:22 -07001376
1377 if (feature >= 8 * sizeof(r.flags))
Simon Glass8aec32f2021-01-16 14:52:26 -07001378 return -EINVAL;
Simon Glass72ef8bf2018-11-06 15:21:22 -07001379
Simon Glass8aec32f2021-01-16 14:52:26 -07001380 return r.flags[feature / 32] & EC_FEATURE_MASK_0(feature) ? true :
1381 false;
Simon Glass72ef8bf2018-11-06 15:21:22 -07001382}
1383
1384/*
1385 * Query the EC for specified mask indicating enabled events.
1386 * The EC maintains separate event masks for SMI, SCI and WAKE.
1387 */
1388static int cros_ec_uhepi_cmd(struct udevice *dev, uint mask, uint action,
1389 uint64_t *value)
1390{
1391 int ret;
1392 struct ec_params_host_event req;
1393 struct ec_response_host_event rsp;
1394
1395 req.action = action;
1396 req.mask_type = mask;
1397 if (action != EC_HOST_EVENT_GET)
1398 req.value = *value;
1399 else
1400 *value = 0;
1401 ret = ec_command(dev, EC_CMD_HOST_EVENT, 0, &req, sizeof(req), &rsp,
1402 sizeof(rsp));
1403
1404 if (action != EC_HOST_EVENT_GET)
1405 return ret;
1406 if (ret == 0)
1407 *value = rsp.value;
1408
1409 return ret;
1410}
1411
1412static int cros_ec_handle_non_uhepi_cmd(struct udevice *dev, uint hcmd,
1413 uint action, uint64_t *value)
1414{
1415 int ret = -1;
1416 struct ec_params_host_event_mask req;
1417 struct ec_response_host_event_mask rsp;
1418
1419 if (hcmd == INVALID_HCMD)
1420 return ret;
1421
1422 if (action != EC_HOST_EVENT_GET)
1423 req.mask = (uint32_t)*value;
1424 else
1425 *value = 0;
1426
1427 ret = ec_command(dev, hcmd, 0, &req, sizeof(req), &rsp, sizeof(rsp));
1428 if (action != EC_HOST_EVENT_GET)
1429 return ret;
1430 if (ret == 0)
1431 *value = rsp.mask;
1432
1433 return ret;
1434}
1435
1436bool cros_ec_is_uhepi_supported(struct udevice *dev)
1437{
1438#define UHEPI_SUPPORTED 1
1439#define UHEPI_NOT_SUPPORTED 2
1440 static int uhepi_support;
1441
1442 if (!uhepi_support) {
1443 uhepi_support = cros_ec_check_feature(dev,
1444 EC_FEATURE_UNIFIED_WAKE_MASKS) > 0 ? UHEPI_SUPPORTED :
1445 UHEPI_NOT_SUPPORTED;
1446 log_debug("Chrome EC: UHEPI %s\n",
1447 uhepi_support == UHEPI_SUPPORTED ? "supported" :
1448 "not supported");
1449 }
1450 return uhepi_support == UHEPI_SUPPORTED;
1451}
1452
1453static int cros_ec_get_mask(struct udevice *dev, uint type)
1454{
1455 u64 value = 0;
1456
1457 if (cros_ec_is_uhepi_supported(dev)) {
1458 cros_ec_uhepi_cmd(dev, type, EC_HOST_EVENT_GET, &value);
1459 } else {
1460 assert(type < ARRAY_SIZE(event_map));
1461 cros_ec_handle_non_uhepi_cmd(dev, event_map[type].get_cmd,
1462 EC_HOST_EVENT_GET, &value);
1463 }
1464 return value;
1465}
1466
1467static int cros_ec_clear_mask(struct udevice *dev, uint type, u64 mask)
1468{
1469 if (cros_ec_is_uhepi_supported(dev))
1470 return cros_ec_uhepi_cmd(dev, type, EC_HOST_EVENT_CLEAR, &mask);
1471
1472 assert(type < ARRAY_SIZE(event_map));
1473
1474 return cros_ec_handle_non_uhepi_cmd(dev, event_map[type].clear_cmd,
1475 EC_HOST_EVENT_CLEAR, &mask);
1476}
1477
1478uint64_t cros_ec_get_events_b(struct udevice *dev)
1479{
1480 return cros_ec_get_mask(dev, EC_HOST_EVENT_B);
1481}
1482
1483int cros_ec_clear_events_b(struct udevice *dev, uint64_t mask)
1484{
1485 log_debug("Chrome EC: clear events_b mask to 0x%016llx\n", mask);
1486
1487 return cros_ec_clear_mask(dev, EC_HOST_EVENT_B, mask);
1488}
1489
1490int cros_ec_read_limit_power(struct udevice *dev, int *limit_powerp)
1491{
1492 struct ec_params_charge_state p;
1493 struct ec_response_charge_state r;
1494 int ret;
1495
1496 p.cmd = CHARGE_STATE_CMD_GET_PARAM;
1497 p.get_param.param = CS_PARAM_LIMIT_POWER;
1498 ret = ec_command(dev, EC_CMD_CHARGE_STATE, 0, &p, sizeof(p),
1499 &r, sizeof(r));
1500
1501 /*
1502 * If our EC doesn't support the LIMIT_POWER parameter, assume that
1503 * LIMIT_POWER is not requested.
1504 */
1505 if (ret == -EC_RES_INVALID_PARAM || ret == -EC_RES_INVALID_COMMAND) {
1506 log_warning("PARAM_LIMIT_POWER not supported by EC\n");
1507 return -ENOSYS;
1508 }
1509
1510 if (ret != sizeof(r.get_param))
1511 return -EINVAL;
1512
1513 *limit_powerp = r.get_param.value;
1514 return 0;
1515}
1516
1517int cros_ec_config_powerbtn(struct udevice *dev, uint32_t flags)
1518{
1519 struct ec_params_config_power_button params;
1520 int ret;
1521
1522 params.flags = flags;
1523 ret = ec_command(dev, EC_CMD_CONFIG_POWER_BUTTON, 0,
1524 &params, sizeof(params), NULL, 0);
1525 if (ret < 0)
1526 return ret;
1527
1528 return 0;
1529}
1530
1531int cros_ec_get_lid_shutdown_mask(struct udevice *dev)
1532{
1533 u32 mask;
1534 int ret;
1535
1536 ret = cros_ec_get_event_mask(dev, EC_CMD_HOST_EVENT_GET_SMI_MASK,
1537 &mask);
1538 if (ret < 0)
1539 return ret;
1540
1541 return !!(mask & EC_HOST_EVENT_MASK(EC_HOST_EVENT_LID_CLOSED));
1542}
1543
1544int cros_ec_set_lid_shutdown_mask(struct udevice *dev, int enable)
1545{
1546 u32 mask;
1547 int ret;
1548
1549 ret = cros_ec_get_event_mask(dev, EC_CMD_HOST_EVENT_GET_SMI_MASK,
1550 &mask);
1551 if (ret < 0)
1552 return ret;
1553
Simon Glassa749c092018-11-23 21:29:36 -07001554 /* Set lid close event state in the EC SMI event mask */
Simon Glass72ef8bf2018-11-06 15:21:22 -07001555 if (enable)
1556 mask |= EC_HOST_EVENT_MASK(EC_HOST_EVENT_LID_CLOSED);
1557 else
1558 mask &= ~EC_HOST_EVENT_MASK(EC_HOST_EVENT_LID_CLOSED);
1559
1560 ret = cros_ec_set_event_mask(dev, EC_CMD_HOST_EVENT_SET_SMI_MASK, mask);
1561 if (ret < 0)
1562 return ret;
1563
1564 printf("EC: %sabled lid close event\n", enable ? "en" : "dis");
1565 return 0;
1566}
1567
Simon Glass10f74652021-01-16 14:52:31 -07001568int cros_ec_vstore_supported(struct udevice *dev)
1569{
1570 return cros_ec_check_feature(dev, EC_FEATURE_VSTORE);
1571}
1572
1573int cros_ec_vstore_info(struct udevice *dev, u32 *lockedp)
1574{
1575 struct ec_response_vstore_info *resp;
1576
1577 if (ec_command_inptr(dev, EC_CMD_VSTORE_INFO, 0, NULL, 0,
1578 (uint8_t **)&resp, sizeof(*resp)) != sizeof(*resp))
1579 return -EIO;
1580
1581 if (lockedp)
1582 *lockedp = resp->slot_locked;
1583
1584 return resp->slot_count;
1585}
1586
1587/*
1588 * cros_ec_vstore_read - Read data from EC vstore slot
1589 *
1590 * @slot: vstore slot to read from
1591 * @data: buffer to store read data, must be EC_VSTORE_SLOT_SIZE bytes
1592 */
1593int cros_ec_vstore_read(struct udevice *dev, int slot, uint8_t *data)
1594{
1595 struct ec_params_vstore_read req;
1596 struct ec_response_vstore_read *resp;
1597
1598 req.slot = slot;
1599 if (ec_command_inptr(dev, EC_CMD_VSTORE_READ, 0, &req, sizeof(req),
1600 (uint8_t **)&resp, sizeof(*resp)) != sizeof(*resp))
1601 return -EIO;
1602
1603 if (!data || req.slot >= EC_VSTORE_SLOT_MAX)
1604 return -EINVAL;
1605
1606 memcpy(data, resp->data, sizeof(resp->data));
1607
1608 return 0;
1609}
1610
1611/*
1612 * cros_ec_vstore_write - Save data into EC vstore slot
1613 *
1614 * @slot: vstore slot to write into
1615 * @data: data to write
1616 * @size: size of data in bytes
1617 *
1618 * Maximum size of data is EC_VSTORE_SLOT_SIZE. It is the callers
1619 * responsibility to check the number of implemented slots by
1620 * querying the vstore info.
1621 */
1622int cros_ec_vstore_write(struct udevice *dev, int slot, const uint8_t *data,
1623 size_t size)
1624{
1625 struct ec_params_vstore_write req;
1626
1627 if (slot >= EC_VSTORE_SLOT_MAX || size > EC_VSTORE_SLOT_SIZE)
1628 return -EINVAL;
1629
1630 req.slot = slot;
1631 memcpy(req.data, data, size);
1632
1633 if (ec_command(dev, EC_CMD_VSTORE_WRITE, 0, &req, sizeof(req), NULL, 0))
1634 return -EIO;
1635
1636 return 0;
1637}
1638
Simon Glass3a6c9942021-01-16 14:52:28 -07001639int cros_ec_get_switches(struct udevice *dev)
1640{
1641 struct dm_cros_ec_ops *ops;
1642 int ret;
1643
1644 ops = dm_cros_ec_get_ops(dev);
1645 if (!ops->get_switches)
1646 return -ENOSYS;
1647
1648 ret = ops->get_switches(dev);
1649 if (ret < 0)
1650 return log_msg_ret("get", ret);
1651
1652 return ret;
1653}
1654
Simon Glass201efb22021-07-05 16:32:49 -06001655int cros_ec_read_batt_charge(struct udevice *dev, uint *chargep)
1656{
1657 struct ec_params_charge_state req;
1658 struct ec_response_charge_state resp;
1659 int ret;
1660
1661 req.cmd = CHARGE_STATE_CMD_GET_STATE;
1662 ret = ec_command(dev, EC_CMD_CHARGE_STATE, 0, &req, sizeof(req),
1663 &resp, sizeof(resp));
1664 if (ret)
1665 return log_msg_ret("read", ret);
1666
1667 *chargep = resp.get_state.batt_state_of_charge;
1668
1669 return 0;
1670}
1671
Simon Glass84d6cbd2014-10-13 23:42:14 -06001672UCLASS_DRIVER(cros_ec) = {
1673 .id = UCLASS_CROS_EC,
Simon Glass16f4d052019-05-02 10:52:11 -06001674 .name = "cros-ec",
Simon Glass41575d82020-12-03 16:55:17 -07001675 .per_device_auto = sizeof(struct cros_ec_dev),
Simon Glass95397382021-08-07 07:24:04 -06001676#if CONFIG_IS_ENABLED(OF_REAL)
Simon Glass91195482016-07-05 17:10:10 -06001677 .post_bind = dm_scan_fdt_dev,
Simon Glassd9ffaef2021-01-16 14:52:30 -07001678#endif
Simon Glass4bf6f2a2018-11-06 15:21:21 -07001679 .flags = DM_UC_FLAG_ALLOC_PRIV_DMA,
Simon Glass84d6cbd2014-10-13 23:42:14 -06001680};