aboutsummaryrefslogtreecommitdiffstats
path: root/dummyflasher.c
diff options
context:
space:
mode:
authorEdward O'Callaghan <quasisec@google.com>2021-05-25 20:47:02 +1000
committerEdward O'Callaghan <quasisec@chromium.org>2021-05-27 02:35:25 +0000
commit52c0275c706e71b11c497e86a1974855043362c3 (patch)
treeac24b3b2eceab4c78292cdad6ee2872c3ed3e2a8 /dummyflasher.c
parente3707bbf497d4d845477f1b84ece51e8ab117ffc (diff)
downloadflashrom-52c0275c706e71b11c497e86a1974855043362c3.tar.gz
flashrom-52c0275c706e71b11c497e86a1974855043362c3.tar.bz2
flashrom-52c0275c706e71b11c497e86a1974855043362c3.zip
dummyflasher.c: Inline data fetch for spi workers
The spi callbacks do not need par logic to fetch the data field. Instead of going though get_data_from_context() just fetch 'data' directly out of mst.spi. This leads us towards a path of removing dummy_buses_supported from global state. BUG=none BRANCH=none TEST=`./flashrom -r /tmp/fwupdater.apnSQQ -p dummy:emulate=VARIABLE_SIZE,image=test_update.sh.tmp.emu,size=8388608` Change-Id: I63b8d8861df75f52f241f09614146990fdfe59ed Signed-off-by: Edward O'Callaghan <quasisec@google.com> Reviewed-on: https://review.coreboot.org/c/flashrom/+/54906 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Sam McNally <sammc@google.com> Reviewed-by: Anastasia Klimchuk <aklm@chromium.org>
Diffstat (limited to 'dummyflasher.c')
-rw-r--r--dummyflasher.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/dummyflasher.c b/dummyflasher.c
index 4661f3d3..587fc61a 100644
--- a/dummyflasher.c
+++ b/dummyflasher.c
@@ -129,7 +129,7 @@ void dummy_unmap(void *virt_addr, size_t len)
static int dummy_spi_write_256(struct flashctx *flash, const uint8_t *buf, unsigned int start, unsigned int len)
{
- struct emu_data *emu_data = get_data_from_context(flash);
+ struct emu_data *emu_data = flash->mst->spi.data;
return spi_write_chunked(flash, buf, start, len,
emu_data->spi_write_256_chunksize);
}
@@ -570,7 +570,7 @@ static int dummy_spi_send_command(const struct flashctx *flash, unsigned int wri
unsigned char *readarr)
{
unsigned int i;
- struct emu_data *emu_data = get_data_from_context(flash);
+ struct emu_data *emu_data = flash->mst->spi.data;
if (!emu_data) {
msg_perr("No data in flash context!\n");
return 1;