| /* |
| * This file is part of the flashrom project. |
| * |
| * Copyright (C) 2012 Google Inc. |
| * |
| * Redistribution and use in source and binary forms, with or without |
| * modification, are permitted provided that the following conditions |
| * are met: |
| * |
| * Redistributions of source code must retain the above copyright |
| * notice, this list of conditions and the following disclaimer. |
| * |
| * Redistributions in binary form must reproduce the above copyright |
| * notice, this list of conditions and the following disclaimer in the |
| * documentation and/or other materials provided with the distribution. |
| * |
| * Neither the name of Google or the names of contributors or |
| * licensors may be used to endorse or promote products derived from this |
| * software without specific prior written permission. |
| * |
| * This software is provided "AS IS," without a warranty of any kind. |
| * ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, |
| * INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A |
| * PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE HEREBY EXCLUDED. |
| * GOOGLE INC AND ITS LICENSORS SHALL NOT BE LIABLE |
| * FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING |
| * OR DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL |
| * GOOGLE OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, |
| * OR FOR DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR |
| * PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY OF |
| * LIABILITY, ARISING OUT OF THE USE OF OR INABILITY TO USE THIS SOFTWARE, |
| * EVEN IF GOOGLE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. |
| */ |
| |
| #include <errno.h> |
| #include <fcntl.h> |
| #include <inttypes.h> |
| #include <stdio.h> |
| #include <stdlib.h> |
| #include <string.h> |
| #include <unistd.h> |
| |
| #include <sys/ioctl.h> |
| #include <sys/stat.h> |
| #include <sys/types.h> |
| |
| #include "cros_ec_dev.h" |
| #include "file.h" |
| #include "flash.h" |
| #include "cros_ec_commands.h" |
| #include "cros_ec.h" |
| #include "programmer.h" |
| |
| #define CROS_EC_DEV_SUFFIX "/dev/cros_" |
| #define CROS_EC_DEV_NAME CROS_EC_DEV_SUFFIX "XX" |
| #define CROS_EC_COMMAND_RETRIES 50 |
| |
| int cros_ec_fd; /* File descriptor for kernel device */ |
| |
| /** |
| * Wait for a command to complete, then return the response |
| * |
| * This is called when we get an EAGAIN response from the EC. We need to |
| * send EC_CMD_GET_COMMS_STATUS commands until the EC indicates it is |
| * finished the command that we originally sent. |
| * |
| * returns 0 if command is successful, <0 to indicate timeout or error |
| */ |
| static int command_wait_for_response(void) |
| { |
| struct ec_response_get_comms_status status; |
| struct cros_ec_command cmd; |
| int ret; |
| int i; |
| |
| cmd.version = 0; |
| cmd.command = EC_CMD_GET_COMMS_STATUS; |
| cmd.outdata = NULL; |
| cmd.outsize = 0; |
| cmd.indata = (uint8_t *)&status; |
| cmd.insize = sizeof(status); |
| |
| /* FIXME: magic delay until we fix the underlying problem (probably in |
| the kernel driver) */ |
| usleep(10 * 1000); |
| for (i = 1; i <= CROS_EC_COMMAND_RETRIES; i++) { |
| ret = ioctl(cros_ec_fd, CROS_EC_DEV_IOCXCMD, &cmd, sizeof(cmd)); |
| if (ret < 0) { |
| msg_perr("%s(): CrOS EC command failed: %d, errno=%d\n", |
| __func__, ret, errno); |
| ret = -EC_RES_ERROR; |
| break; |
| } |
| |
| if (cmd.result) { |
| msg_perr("%s(): CrOS EC command failed: result=%d\n", |
| __func__, cmd.result); |
| ret = -cmd.result; |
| break; |
| } |
| |
| if (!(status.flags & EC_COMMS_STATUS_PROCESSING)) { |
| ret = -EC_RES_SUCCESS; |
| break; |
| } |
| |
| usleep(1000); |
| } |
| |
| return ret; |
| } |
| |
| /* |
| * cros_ec_command_dev - Issue command to CROS_EC device |
| * |
| * @command: command code |
| * @outdata: data to send to EC |
| * @outsize: number of bytes in outbound payload |
| * @indata: (unallocated) buffer to store data received from EC |
| * @insize: number of bytes in inbound payload |
| * |
| * This uses the kernel Chrome OS EC driver to communicate with the EC. |
| * |
| * The outdata and indata buffers contain payload data (if any); command |
| * and response codes as well as checksum data are handled transparently by |
| * this function. |
| * |
| * Returns >=0 for success, or negative if other error. |
| */ |
| static int cros_ec_command_dev(int command, int version, |
| const void *outdata, int outsize, |
| void *indata, int insize) |
| { |
| struct cros_ec_command cmd; |
| int ret; |
| |
| cmd.version = version; |
| cmd.command = command; |
| cmd.outdata = outdata; |
| cmd.outsize = outsize; |
| cmd.indata = indata; |
| cmd.insize = insize; |
| ret = ioctl(cros_ec_fd, CROS_EC_DEV_IOCXCMD, &cmd, sizeof(cmd)); |
| if (ret < 0 && errno == EAGAIN) { |
| ret = command_wait_for_response(); |
| cmd.result = 0; |
| } |
| if (ret < 0) { |
| msg_perr("%s(): Command 0x%02x failed: %d, errno=%d\n", |
| __func__, command, ret, errno); |
| return -EC_RES_ERROR; |
| } |
| if (cmd.result) { |
| msg_perr("%s(): Command 0x%02x returned result: %d\n", |
| __func__, command, cmd.result); |
| return -cmd.result; |
| } |
| |
| return ret; |
| } |
| |
| static struct cros_ec_priv cros_ec_dev_priv = { |
| .detected = 0, |
| .ec_command = cros_ec_command_dev, |
| .dev = "ec", |
| }; |
| |
| static struct opaque_programmer opaque_programmer_cros_ec_dev = { |
| .max_data_read = 128, |
| .max_data_write = 128, |
| .probe = cros_ec_probe_size, |
| .read = cros_ec_read, |
| .write = cros_ec_write, |
| .erase = cros_ec_block_erase, |
| .data = &cros_ec_dev_priv, |
| }; |
| |
| static int cros_ec_dev_shutdown(void *data) |
| { |
| close(cros_ec_fd); |
| return 0; |
| } |
| |
| int cros_ec_probe_dev(void) |
| { |
| char dev_name[strlen(CROS_EC_DEV_NAME)]; |
| |
| if (alias && alias->type != ALIAS_EC) |
| return 1; |
| |
| if (cros_ec_parse_param(&cros_ec_dev_priv)) |
| return 1; |
| |
| strcpy(dev_name, CROS_EC_DEV_SUFFIX); |
| strcat(dev_name, cros_ec_dev_priv.dev); |
| |
| msg_pdbg("%s: probing for CROS_EC at %s\n", __func__, dev_name); |
| cros_ec_fd = open(dev_name, O_RDWR); |
| if (cros_ec_fd < 0) |
| return cros_ec_fd; |
| |
| if (cros_ec_test(&cros_ec_dev_priv)) |
| return 1; |
| |
| cros_ec_set_max_size(&cros_ec_dev_priv, &opaque_programmer_cros_ec_dev); |
| |
| msg_pdbg("CROS_EC detected at %s\n", dev_name); |
| register_opaque_programmer(&opaque_programmer_cros_ec_dev); |
| register_shutdown(cros_ec_dev_shutdown, NULL); |
| cros_ec_dev_priv.detected = 1; |
| |
| return 0; |
| } |