summaryrefslogtreecommitdiffstats
path: root/programmer.h
diff options
context:
space:
mode:
authorAnastasia Klimchuk <aklm@chromium.org>2021-05-26 09:54:08 +1000
committerEdward O'Callaghan <quasisec@chromium.org>2021-06-03 05:19:37 +0000
commit5f5eaeb7fa9b8443ff3656dd55041fd59582edf4 (patch)
tree33073db96a5fc583d3f8811e7351546ec99c58ff /programmer.h
parent30815fc3706194117c633393d1ed65941a5afafd (diff)
downloadflashrom-5f5eaeb7fa9b8443ff3656dd55041fd59582edf4.tar.gz
flashrom-5f5eaeb7fa9b8443ff3656dd55041fd59582edf4.tar.bz2
flashrom-5f5eaeb7fa9b8443ff3656dd55041fd59582edf4.zip
bitbang: Extend bitbang_spi_master functions to accept spi data
This way every bitbang spi master has access to its own spi data, and can use this data in all its functions. This patch only changes the signatures of functions. BUG=b:185191942 TEST=builds Change-Id: Id5722a43ce20feeed62630ad80e14df7744f9c02 Signed-off-by: Anastasia Klimchuk <aklm@chromium.org> Reviewed-on: https://review.coreboot.org/c/flashrom/+/54991 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Edward O'Callaghan <quasisec@chromium.org>
Diffstat (limited to 'programmer.h')
-rw-r--r--programmer.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/programmer.h b/programmer.h
index 1874612dd..a0ff6bc63 100644
--- a/programmer.h
+++ b/programmer.h
@@ -182,15 +182,15 @@ int programmer_shutdown(void);
struct bitbang_spi_master {
/* Note that CS# is active low, so val=0 means the chip is active. */
- void (*set_cs) (int val);
- void (*set_sck) (int val);
- void (*set_mosi) (int val);
- int (*get_miso) (void);
- void (*request_bus) (void);
- void (*release_bus) (void);
+ void (*set_cs) (int val, void *spi_data);
+ void (*set_sck) (int val, void *spi_data);
+ void (*set_mosi) (int val, void *spi_data);
+ int (*get_miso) (void *spi_data);
+ void (*request_bus) (void *spi_data);
+ void (*release_bus) (void *spi_data);
/* optional functions to optimize xfers */
- void (*set_sck_set_mosi) (int sck, int mosi);
- int (*set_sck_get_miso) (int sck);
+ void (*set_sck_set_mosi) (int sck, int mosi, void *spi_data);
+ int (*set_sck_get_miso) (int sck, void *spi_data);
/* Length of half a clock period in usecs. */
unsigned int half_period;
};