Edward O'Callaghan submitted this change.

View Change

Approvals: build bot (Jenkins): Verified Edward O'Callaghan: Looks good to me, approved
raiden_debug_spi.c: Add transfer context states

Add context states to handle the read and write buffers as transmit
and receive states. These are used to keep track of the number of
bytes transmitted and received allowing future support of multi-packet
messages in the v2 protocol and easier integration with a unified USB
packet context.

BUG=b:139058552
BRANCH=none
TEST=Manual testing of ServoMicro and Flashrom when performing
reads, writes, and verification of the EC firmware on Nami.
TEST=Builds

Signed-off-by: Brian J. Nemec <bnemec@chromium.com>
Change-Id: Ic6eea82ffc604ec56278f7aaa0deafe0cf75973c
Reviewed-on: https://review.coreboot.org/c/flashrom/+/41608
Reviewed-by: Edward O'Callaghan <quasisec@chromium.org>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
---
M raiden_debug_spi.c
1 file changed, 67 insertions(+), 32 deletions(-)

diff --git a/raiden_debug_spi.c b/raiden_debug_spi.c
index b43fc91..d6474ec 100644
--- a/raiden_debug_spi.c
+++ b/raiden_debug_spi.c
@@ -203,6 +203,24 @@
uint8_t data[PAYLOAD_SIZE_V1];
} __attribute__((packed));

+struct usb_spi_transmit_ctx {
+ /* Buffer we are reading data from. */
+ const uint8_t *buffer;
+ /* Number of bytes in the transfer. */
+ size_t transmit_size;
+ /* Number of bytes transferred. */
+ size_t transmit_index;
+};
+
+struct usb_spi_receive_ctx {
+ /* Buffer we are writing data into. */
+ uint8_t *buffer;
+ /* Number of bytes in the transfer. */
+ size_t receive_size;
+ /* Number of bytes transferred. */
+ size_t receive_index;
+};
+
/*
* This function will return true when an error code can potentially recover
* if we attempt to write SPI data to the device or read from it. We know
@@ -241,13 +259,16 @@
* a USB SPI transfer. Write and read counts and payloads to write from
* the write_buffer are transmitted to the device.
*
+ * @param flash Flash context storing SPI capabilities and USB device
+ * information.
+ * @param write Write context of data to transmit and write payload.
+ * @param read Read context of data to receive and read buffer.
+ *
* @returns Returns status code with 0 on success.
*/
static int write_command_v1(const struct flashctx *flash,
- unsigned int write_count,
- unsigned int read_count,
- const unsigned char *write_buffer,
- unsigned char *read_buffer)
+ struct usb_spi_transmit_ctx *write,
+ struct usb_spi_receive_ctx *read)
{

int transferred;
@@ -255,28 +276,28 @@
struct usb_spi_command_v1 command_packet;
const struct raiden_debug_spi_data * ctx_data = get_raiden_data_from_context(flash);

- command_packet.write_count = write_count;
- command_packet.read_count = read_count;
+ command_packet.write_count = write->transmit_size;
+ command_packet.read_count = read->receive_size;

- memcpy(command_packet.data, write_buffer, write_count);
+ memcpy(command_packet.data, write->buffer, write->transmit_size);

ret = LIBUSB(libusb_bulk_transfer(ctx_data->dev->handle,
ctx_data->out_ep,
(void*)&command_packet,
- write_count + PACKET_HEADER_SIZE,
+ write->transmit_size + PACKET_HEADER_SIZE,
&transferred,
TRANSFER_TIMEOUT_MS));
if (ret != 0) {
msg_perr("Raiden: OUT transfer failed\n"
- " write_count = %d\n"
- " read_count = %d\n",
- write_count, read_count);
+ " write_count = %zu\n"
+ " read_count = %zu\n",
+ write->transmit_size, read->receive_size);
return ret;
}

- if ((unsigned) transferred != write_count + PACKET_HEADER_SIZE) {
- msg_perr("Raiden: Write failure (wrote %d, expected %d)\n",
- transferred, write_count + PACKET_HEADER_SIZE);
+ if ((unsigned) transferred != write->transmit_size + PACKET_HEADER_SIZE) {
+ msg_perr("Raiden: Write failure (wrote %d, expected %zu)\n",
+ transferred, write->transmit_size + PACKET_HEADER_SIZE);
return 0x10001;
}

@@ -288,13 +309,16 @@
* transfer. Status codes from the transfer and any read payload are copied
* to the read_buffer.
*
+ * @param flash Flash context storing SPI capabilities and USB device
+ * information.
+ * @param write Write context of data to transmit and write payload.
+ * @param read Read context of data to receive and read buffer.
+ *
* @returns Returns status code with 0 on success.
*/
static int read_response_v1(const struct flashctx *flash,
- unsigned int write_count,
- unsigned int read_count,
- const unsigned char *write_buffer,
- unsigned char *read_buffer)
+ struct usb_spi_transmit_ctx *write,
+ struct usb_spi_receive_ctx *read)
{
int transferred;
int ret;
@@ -304,24 +328,24 @@
ret = LIBUSB(libusb_bulk_transfer(ctx_data->dev->handle,
ctx_data->in_ep,
(void*)&response_packet,
- read_count + PACKET_HEADER_SIZE,
+ read->receive_size + PACKET_HEADER_SIZE,
&transferred,
TRANSFER_TIMEOUT_MS));
if (ret != 0) {
msg_perr("Raiden: IN transfer failed\n"
- " write_count = %d\n"
- " read_count = %d\n",
- write_count, read_count);
+ " write_count = %zu\n"
+ " read_count = %zu\n",
+ write->transmit_size, read->receive_size);
return ret;
}

- if ((unsigned) transferred != read_count + PACKET_HEADER_SIZE) {
- msg_perr("Raiden: Read failure (read %d, expected %d)\n",
- transferred, read_count + PACKET_HEADER_SIZE);
+ if ((unsigned) transferred != read->receive_size + PACKET_HEADER_SIZE) {
+ msg_perr("Raiden: Read failure (read %d, expected %zu)\n",
+ transferred, read->receive_size + PACKET_HEADER_SIZE);
return 0x10002;
}

- memcpy(read_buffer, response_packet.data, read_count);
+ memcpy(read->buffer, response_packet.data, read->receive_size);

return response_packet.status_code;
}
@@ -348,6 +372,15 @@
{
int status = -1;

+ struct usb_spi_transmit_ctx write_ctx = {
+ .buffer = write_buffer,
+ .transmit_size = write_count
+ };
+ struct usb_spi_receive_ctx read_ctx = {
+ .buffer = read_buffer,
+ .receive_size = read_count
+ };
+
if (write_count > PAYLOAD_SIZE_V1) {
msg_perr("Raiden: Invalid write count\n"
" write count = %u\n"
@@ -367,17 +400,19 @@
for (unsigned int write_attempt = 0; write_attempt < WRITE_RETRY_ATTEMPTS;
write_attempt++) {

- status = write_command_v1(flash, write_count, read_count,
- write_buffer, read_buffer);
+
+ status = write_command_v1(flash, &write_ctx, &read_ctx);

if (status) {
/* Write operation failed. */
msg_perr("Raiden: Write command failed\n"
" write count = %u\n"
" read count = %u\n"
+ " transmitted bytes = %zu\n"
" write attempt = %u\n"
" status = 0x%05x\n",
- write_count, read_count,
+
+ write_count, read_count, write_ctx.transmit_index,
write_attempt + 1, status);
if (!retry_recovery(status)) {
/* Reattempting will not result in a recovery. */
@@ -389,18 +424,18 @@
for (unsigned int read_attempt = 0; read_attempt < READ_RETRY_ATTEMPTS;
read_attempt++) {

- status = read_response_v1(flash, write_count, read_count,
- write_buffer, read_buffer);
+ status = read_response_v1(flash, &write_ctx, &read_ctx);

if (status) {
/* Read operation failed. */
msg_perr("Raiden: Read response failed\n"
" write count = %u\n"
" read count = %u\n"
+ " received bytes = %zu\n"
" write attempt = %u\n"
" read attempt = %u\n"
" status = 0x%05x\n",
- write_count, read_count,
+ write_count, read_count, read_ctx.receive_index,
write_attempt + 1, read_attempt + 1, status);
if (!retry_recovery(status)) {
/* Reattempting will not result in a recovery. */

To view, visit change 41608. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-Project: flashrom
Gerrit-Branch: master
Gerrit-Change-Id: Ic6eea82ffc604ec56278f7aaa0deafe0cf75973c
Gerrit-Change-Number: 41608
Gerrit-PatchSet: 22
Gerrit-Owner: Brian Nemec <bnemec@google.com>
Gerrit-Reviewer: Brian Nemec <bnemec@chromium.org>
Gerrit-Reviewer: Edward O'Callaghan <quasisec@chromium.org>
Gerrit-Reviewer: build bot (Jenkins) <no-reply@coreboot.org>
Gerrit-CC: Angel Pons <th3fanbus@gmail.com>
Gerrit-CC: Paul Menzel <paulepanter@users.sourceforge.net>
Gerrit-MessageType: merged