Edward O'Callaghan submitted this change.

View Change

Approvals: build bot (Jenkins): Verified Edward O'Callaghan: Looks good to me, approved
mstarddc_spi.c: Refactor singleton states into reentrant pattern

Move global singleton states into a struct and store within
the spi_master data field for the life-time of the driver.

This is one of the steps on the way to move spi_master data
memory management behind the initialisation API, for more
context see other patches under the same topic "register_master_api".

BUG=b:185191942
TEST=builds

Change-Id: Ia0e5f6879bfbfac591a40119ee3e0942a5cbc4b9
Signed-off-by: Anastasia Klimchuk <aklm@chromium.org>
Reviewed-on: https://review.coreboot.org/c/flashrom/+/54033
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Edward O'Callaghan <quasisec@chromium.org>
---
M mstarddc_spi.c
1 file changed, 38 insertions(+), 14 deletions(-)

diff --git a/mstarddc_spi.c b/mstarddc_spi.c
index 32b77cd..da9f152 100644
--- a/mstarddc_spi.c
+++ b/mstarddc_spi.c
@@ -31,9 +31,11 @@
#include "programmer.h"
#include "spi.h"

-static int mstarddc_fd;
-static int mstarddc_addr;
-static int mstarddc_doreset = 1;
+struct mstarddc_spi_data {
+ int mstarddc_fd;
+ int mstarddc_addr;
+ int mstarddc_doreset;
+};

// MSTAR DDC Commands
#define MSTARDDC_SPI_WRITE 0x10
@@ -44,10 +46,12 @@
/* Returns 0 upon success, a negative number upon errors. */
static int mstarddc_spi_shutdown(void *data)
{
+ struct mstarddc_spi_data *mstarddc_data = data;
+
// Reset, disables ISP mode
- if (mstarddc_doreset == 1) {
+ if (mstarddc_data->mstarddc_doreset == 1) {
uint8_t cmd = MSTARDDC_SPI_RESET;
- if (write(mstarddc_fd, &cmd, 1) < 0) {
+ if (write(mstarddc_data->mstarddc_fd, &cmd, 1) < 0) {
msg_perr("Error sending reset command: errno %d.\n",
errno);
return -1;
@@ -58,10 +62,12 @@
"or an error occurred.\n");
}

- if (close(mstarddc_fd) < 0) {
+ if (close(mstarddc_data->mstarddc_fd) < 0) {
msg_perr("Error closing device: errno %d.\n", errno);
return -1;
}
+
+ free(data);
return 0;
}

@@ -72,6 +78,7 @@
const unsigned char *writearr,
unsigned char *readarr)
{
+ struct mstarddc_spi_data *mstarddc_data = flash->mst->spi.data;
int ret = 0;
uint8_t *cmd = malloc((writecnt + 1) * sizeof(uint8_t));
if (cmd == NULL) {
@@ -82,7 +89,7 @@
if (!ret && writecnt) {
cmd[0] = MSTARDDC_SPI_WRITE;
memcpy(cmd + 1, writearr, writecnt);
- if (write(mstarddc_fd, cmd, writecnt + 1) < 0) {
+ if (write(mstarddc_data->mstarddc_fd, cmd, writecnt + 1) < 0) {
msg_perr("Error sending write command: errno %d.\n",
errno);
ret = -1;
@@ -96,16 +103,16 @@
cmd[0] = MSTARDDC_SPI_READ;
i2c_data.nmsgs = 2;
i2c_data.msgs = msg;
- i2c_data.msgs[0].addr = mstarddc_addr;
+ i2c_data.msgs[0].addr = mstarddc_data->mstarddc_addr;
i2c_data.msgs[0].len = 1;
i2c_data.msgs[0].flags = 0;
i2c_data.msgs[0].buf = cmd;
- i2c_data.msgs[1].addr = mstarddc_addr;
+ i2c_data.msgs[1].addr = mstarddc_data->mstarddc_addr;
i2c_data.msgs[1].len = readcnt;
i2c_data.msgs[1].flags = I2C_M_RD;
i2c_data.msgs[1].buf = readarr;

- if (ioctl(mstarddc_fd, I2C_RDWR, &i2c_data) < 0) {
+ if (ioctl(mstarddc_data->mstarddc_fd, I2C_RDWR, &i2c_data) < 0) {
msg_perr("Error sending read command: errno %d.\n",
errno);
ret = -1;
@@ -114,7 +121,7 @@

if (!ret && (writecnt || readcnt)) {
cmd[0] = MSTARDDC_SPI_END;
- if (write(mstarddc_fd, cmd, 1) < 0) {
+ if (write(mstarddc_data->mstarddc_fd, cmd, 1) < 0) {
msg_perr("Error sending end command: errno %d.\n",
errno);
ret = -1;
@@ -124,7 +131,7 @@
/* Do not reset if something went wrong, as it might prevent from
* retrying flashing. */
if (ret != 0)
- mstarddc_doreset = 0;
+ mstarddc_data->mstarddc_doreset = 0;

if (cmd)
free(cmd);
@@ -146,6 +153,10 @@
int mstarddc_spi_init(void)
{
int ret = 0;
+ int mstarddc_fd = -1;
+ int mstarddc_addr;
+ int mstarddc_doreset = 1;
+ struct mstarddc_spi_data *mstarddc_data;

// Get device, address from command-line
char *i2c_device = extract_programmer_param("dev");
@@ -217,13 +228,26 @@
goto out;
}
}
+
+ mstarddc_data = calloc(1, sizeof(*mstarddc_data));
+ if (!mstarddc_data) {
+ msg_perr("Unable to allocate space for SPI master data\n");
+ ret = -1;
+ goto out;
+ }
+ mstarddc_data->mstarddc_fd = mstarddc_fd;
+ mstarddc_data->mstarddc_addr = mstarddc_addr;
+ mstarddc_data->mstarddc_doreset = mstarddc_doreset;
+
// Register shutdown function
- register_shutdown(mstarddc_spi_shutdown, NULL);
+ register_shutdown(mstarddc_spi_shutdown, mstarddc_data);

// Register programmer
- register_spi_master(&spi_master_mstarddc, NULL);
+ register_spi_master(&spi_master_mstarddc, mstarddc_data);
out:
free(i2c_device);
+ if (ret && (mstarddc_fd >= 0))
+ close(mstarddc_fd);
return ret;
}


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

Gerrit-Project: flashrom
Gerrit-Branch: master
Gerrit-Change-Id: Ia0e5f6879bfbfac591a40119ee3e0942a5cbc4b9
Gerrit-Change-Number: 54033
Gerrit-PatchSet: 3
Gerrit-Owner: Anastasia Klimchuk <aklm@chromium.org>
Gerrit-Reviewer: Angel Pons <th3fanbus@gmail.com>
Gerrit-Reviewer: Edward O'Callaghan <quasisec@chromium.org>
Gerrit-Reviewer: Nico Huber <nico.h@gmx.de>
Gerrit-Reviewer: build bot (Jenkins) <no-reply@coreboot.org>
Gerrit-CC: Paul Menzel <paulepanter@mailbox.org>
Gerrit-MessageType: merged