123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359 |
- /*
- * This file is part of the flashrom project.
- *
- * Copyright 2014, Google Inc.
- * All rights reserved.
- *
- * 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 Inc. nor the names of its
- * contributors may be used to endorse or promote products derived from
- * this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- * Alternatively, this software may be distributed under the terms of the
- * GNU General Public License ("GPL") version 2 as published by the Free
- * Software Foundation.
- */
- /*
- * This SPI flash programming interface is designed to talk to a Chromium OS
- * device over a Raiden USB connection. The USB connection is routed to a
- * microcontroller running an image compiled from:
- *
- * https://chromium.googlesource.com/chromiumos/platform/ec
- *
- * The protocol for the USB-SPI bridge is documented in the following file in
- * that respository:
- *
- * chip/stm32/usb_spi.c
- */
- #include "check.h"
- #include "programmer.h"
- #include "spi.h"
- #include "usb_device.h"
- #include <libusb.h>
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
- #define GOOGLE_VID 0x18D1
- #define GOOGLE_RAIDEN_SPI_SUBCLASS 0x51
- #define GOOGLE_RAIDEN_SPI_PROTOCOL 0x01
- enum raiden_debug_spi_request {
- RAIDEN_DEBUG_SPI_REQ_ENABLE = 0x0000,
- RAIDEN_DEBUG_SPI_REQ_DISABLE = 0x0001,
- RAIDEN_DEBUG_SPI_REQ_ENABLE_AP = 0x0002,
- RAIDEN_DEBUG_SPI_REQ_ENABLE_EC = 0x0003,
- };
- #define PACKET_HEADER_SIZE 2
- #define MAX_PACKET_SIZE 64
- /*
- * This timeout is so large because the Raiden SPI timeout is 800ms.
- */
- #define TRANSFER_TIMEOUT_MS 1000
- struct usb_device *device = NULL;
- uint8_t in_endpoint = 0;
- uint8_t out_endpoint = 0;
- static int send_command(const struct flashctx *flash,
- unsigned int write_count,
- unsigned int read_count,
- const unsigned char *write_buffer,
- unsigned char *read_buffer)
- {
- uint8_t buffer[MAX_PACKET_SIZE];
- int transferred;
- if (write_count > MAX_PACKET_SIZE - PACKET_HEADER_SIZE) {
- msg_perr("Raiden: invalid write_count of %d\n", write_count);
- return SPI_INVALID_LENGTH;
- }
- if (read_count > MAX_PACKET_SIZE - PACKET_HEADER_SIZE) {
- msg_perr("Raiden: invalid read_count of %d\n", read_count);
- return SPI_INVALID_LENGTH;
- }
- buffer[0] = write_count;
- buffer[1] = read_count;
- memcpy(buffer + PACKET_HEADER_SIZE, write_buffer, write_count);
- CHECK(LIBUSB(libusb_bulk_transfer(device->handle,
- out_endpoint,
- buffer,
- write_count + PACKET_HEADER_SIZE,
- &transferred,
- TRANSFER_TIMEOUT_MS)),
- "Raiden: OUT transfer failed\n"
- " write_count = %d\n"
- " read_count = %d\n",
- write_count,
- read_count);
- if (transferred != write_count + PACKET_HEADER_SIZE) {
- msg_perr("Raiden: Write failure (wrote %d, expected %d)\n",
- transferred, write_count + PACKET_HEADER_SIZE);
- return 0x10001;
- }
- CHECK(LIBUSB(libusb_bulk_transfer(device->handle,
- in_endpoint,
- buffer,
- read_count + PACKET_HEADER_SIZE,
- &transferred,
- TRANSFER_TIMEOUT_MS)),
- "Raiden: IN transfer failed\n"
- " write_count = %d\n"
- " read_count = %d\n",
- write_count,
- read_count);
- if (transferred != read_count + PACKET_HEADER_SIZE) {
- msg_perr("Raiden: Read failure (read %d, expected %d)\n",
- transferred, read_count + PACKET_HEADER_SIZE);
- return 0x10002;
- }
- memcpy(read_buffer, buffer + PACKET_HEADER_SIZE, read_count);
- return buffer[0] | (buffer[1] << 8);
- }
- /*
- * Unfortunately there doesn't seem to be a way to specify the maximum number
- * of bytes that your SPI device can read/write, these values are the maximum
- * data chunk size that flashrom will package up with an additional four bytes
- * of command for the flash device, resulting in a 62 byte packet, that we then
- * add two bytes to in either direction, making our way up to the 64 byte
- * maximum USB packet size for the device.
- *
- * The largest command that flashrom generates is the byte program command, so
- * we use that command header maximum size here. The definition of
- * JEDEC_BYTE_PROGRAM_OUTSIZE includes enough space for a single byte of data
- * to write, so we add one byte of space back.
- */
- #define MAX_DATA_SIZE (MAX_PACKET_SIZE - \
- PACKET_HEADER_SIZE - \
- JEDEC_BYTE_PROGRAM_OUTSIZE + \
- 1)
- static const struct spi_programmer spi_programmer_raiden_debug = {
- .type = SPI_CONTROLLER_RAIDEN_DEBUG,
- .max_data_read = MAX_DATA_SIZE,
- .max_data_write = MAX_DATA_SIZE,
- .command = send_command,
- .multicommand = default_spi_send_multicommand,
- .read = default_spi_read,
- .write_256 = default_spi_write_256,
- };
- static int match_endpoint(struct libusb_endpoint_descriptor const *descriptor,
- enum libusb_endpoint_direction direction)
- {
- return (((descriptor->bEndpointAddress & LIBUSB_ENDPOINT_DIR_MASK) ==
- direction) &&
- ((descriptor->bmAttributes & LIBUSB_TRANSFER_TYPE_MASK) ==
- LIBUSB_TRANSFER_TYPE_BULK));
- }
- static int find_endpoints(void)
- {
- int i;
- int in_count = 0;
- int out_count = 0;
- for (i = 0; i < device->interface_descriptor->bNumEndpoints; i++) {
- struct libusb_endpoint_descriptor const *endpoint =
- &device->interface_descriptor->endpoint[i];
- if (match_endpoint(endpoint, LIBUSB_ENDPOINT_IN)) {
- in_count++;
- in_endpoint = endpoint->bEndpointAddress;
- } else if (match_endpoint(endpoint, LIBUSB_ENDPOINT_OUT)) {
- out_count++;
- out_endpoint = endpoint->bEndpointAddress;
- }
- }
- if (in_count != 1 || out_count != 1) {
- msg_perr("Raiden: Failed to find one IN and one OUT endpoint\n"
- " found %d IN and %d OUT endpoints\n",
- in_count,
- out_count);
- return 1;
- }
- msg_pdbg("Raiden: Found IN endpoint = 0x%02x\n", in_endpoint);
- msg_pdbg("Raiden: Found OUT endpoint = 0x%02x\n", out_endpoint);
- return 0;
- }
- static int shutdown(void * data)
- {
- CHECK(LIBUSB(libusb_control_transfer(
- device->handle,
- LIBUSB_ENDPOINT_OUT |
- LIBUSB_REQUEST_TYPE_VENDOR |
- LIBUSB_RECIPIENT_INTERFACE,
- RAIDEN_DEBUG_SPI_REQ_DISABLE,
- 0,
- device->interface_descriptor->bInterfaceNumber,
- NULL,
- 0,
- TRANSFER_TIMEOUT_MS)),
- "Raiden: Failed to disable SPI bridge\n");
- usb_device_free(device);
- device = NULL;
- libusb_exit(NULL);
- return 0;
- }
- int raiden_debug_spi_init(void)
- {
- struct usb_match match;
- int request_enable = RAIDEN_DEBUG_SPI_REQ_ENABLE;
- char *target_str = extract_programmer_param("target");
- char *serial = extract_programmer_param("serial");
- struct usb_device *current;
- int found = 0;
- if (target_str) {
- if (!strcasecmp(target_str, "ap"))
- request_enable = RAIDEN_DEBUG_SPI_REQ_ENABLE_AP;
- else if (!strcasecmp(target_str, "ec"))
- request_enable = RAIDEN_DEBUG_SPI_REQ_ENABLE_EC;
- else {
- msg_perr("Invalid target: %s\n", target_str);
- free(target_str);
- return 1;
- }
- }
- free(target_str);
- usb_match_init(&match);
- usb_match_value_default(&match.vid, GOOGLE_VID);
- usb_match_value_default(&match.class, LIBUSB_CLASS_VENDOR_SPEC);
- usb_match_value_default(&match.subclass, GOOGLE_RAIDEN_SPI_SUBCLASS);
- usb_match_value_default(&match.protocol, GOOGLE_RAIDEN_SPI_PROTOCOL);
- CHECK(LIBUSB(libusb_init(NULL)), "Raiden: libusb_init failed\n");
- CHECK(usb_device_find(&match, ¤t),
- "Raiden: Failed to find devices\n");
- while (current) {
- device = current;
- if (find_endpoints()) {
- msg_pdbg("Raiden: Failed to find valid endpoints on device");
- usb_device_show(" ", current);
- goto loop_end;
- }
- if (usb_device_claim(device)) {
- msg_pdbg("Raiden: Failed to claim USB device");
- usb_device_show(" ", current);
- goto loop_end;
- }
- if (!serial) {
- found = 1;
- goto loop_end;
- } else {
- unsigned char dev_serial[32];
- struct libusb_device_descriptor descriptor;
- int rc;
- memset(dev_serial, 0, sizeof(dev_serial));
- if (libusb_get_device_descriptor(device->device, &descriptor)) {
- msg_pdbg("USB: Failed to get device descriptor.\n");
- goto loop_end;
- }
- rc = libusb_get_string_descriptor_ascii(device->handle,
- descriptor.iSerialNumber,
- dev_serial,
- sizeof(dev_serial));
- if (rc < 0) {
- LIBUSB(rc);
- } else {
- if (strcmp(serial, (char *)dev_serial)) {
- msg_pdbg("Raiden: Serial number %s did not match device", serial);
- usb_device_show(" ", current);
- } else {
- msg_pinfo("Raiden: Serial number %s matched device", serial);
- usb_device_show(" ", current);
- found = 1;
- }
- }
- }
- loop_end:
- if (found)
- break;
- else
- current = usb_device_free(current);
- }
- if (!device || !found) {
- msg_perr("Raiden: No usable device found.\n");
- return 1;
- }
- /* free devices we don't care about */
- current = current->next;
- while (current)
- current = usb_device_free(current);
- CHECK(LIBUSB(libusb_control_transfer(
- device->handle,
- LIBUSB_ENDPOINT_OUT |
- LIBUSB_REQUEST_TYPE_VENDOR |
- LIBUSB_RECIPIENT_INTERFACE,
- request_enable,
- 0,
- device->interface_descriptor->bInterfaceNumber,
- NULL,
- 0,
- TRANSFER_TIMEOUT_MS)),
- "Raiden: Failed to enable SPI bridge\n");
- register_spi_programmer(&spi_programmer_raiden_debug);
- register_shutdown(shutdown, NULL);
- return 0;
- }
|