mirror of
https://review.coreboot.org/flashrom.git
synced 2025-07-01 22:21:16 +02:00
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>
This commit is contained in:

committed by
Edward O'Callaghan

parent
30815fc370
commit
5f5eaeb7fa
12
ogp_spi.c
12
ogp_spi.c
@ -49,32 +49,32 @@ const struct dev_entry ogp_spi[] = {
|
||||
{0},
|
||||
};
|
||||
|
||||
static void ogp_request_spibus(void)
|
||||
static void ogp_request_spibus(void *spi_data)
|
||||
{
|
||||
pci_mmio_writel(1, ogp_spibar + ogp_reg_sel);
|
||||
}
|
||||
|
||||
static void ogp_release_spibus(void)
|
||||
static void ogp_release_spibus(void *spi_data)
|
||||
{
|
||||
pci_mmio_writel(0, ogp_spibar + ogp_reg_sel);
|
||||
}
|
||||
|
||||
static void ogp_bitbang_set_cs(int val)
|
||||
static void ogp_bitbang_set_cs(int val, void *spi_data)
|
||||
{
|
||||
pci_mmio_writel(val, ogp_spibar + ogp_reg__ce);
|
||||
}
|
||||
|
||||
static void ogp_bitbang_set_sck(int val)
|
||||
static void ogp_bitbang_set_sck(int val, void *spi_data)
|
||||
{
|
||||
pci_mmio_writel(val, ogp_spibar + ogp_reg_sck);
|
||||
}
|
||||
|
||||
static void ogp_bitbang_set_mosi(int val)
|
||||
static void ogp_bitbang_set_mosi(int val, void *spi_data)
|
||||
{
|
||||
pci_mmio_writel(val, ogp_spibar + ogp_reg_siso);
|
||||
}
|
||||
|
||||
static int ogp_bitbang_get_miso(void)
|
||||
static int ogp_bitbang_get_miso(void *spi_data)
|
||||
{
|
||||
uint32_t tmp;
|
||||
|
||||
|
Reference in New Issue
Block a user