diff options
author | Josh Blum <josh@joshknows.com> | 2010-08-04 11:11:06 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2010-08-04 11:11:06 -0700 |
commit | fe622fb28654e6a578395d7b688e7c1958d373be (patch) | |
tree | c4cad6eb4c77895ddbc7bf8b297f4c115e6c52f7 /firmware/microblaze/lib/spi.h | |
parent | ee32fa2290f8b6abe83f1b8b33aff922f9d1e24c (diff) | |
parent | 4240d5a2a1b705fe8ed5c3a1d1deef24be00d444 (diff) | |
download | uhd-fe622fb28654e6a578395d7b688e7c1958d373be.tar.gz uhd-fe622fb28654e6a578395d7b688e7c1958d373be.tar.bz2 uhd-fe622fb28654e6a578395d7b688e7c1958d373be.zip |
Merge branch 'fw_reorg'
Diffstat (limited to 'firmware/microblaze/lib/spi.h')
-rw-r--r-- | firmware/microblaze/lib/spi.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/firmware/microblaze/lib/spi.h b/firmware/microblaze/lib/spi.h index f5b69b270..01e4d26fd 100644 --- a/firmware/microblaze/lib/spi.h +++ b/firmware/microblaze/lib/spi.h @@ -48,5 +48,23 @@ void spi_wait(void); uint32_t spi_transact(bool readback, int slave, uint32_t data, int length, uint32_t flags); +// ---------------------------------------------------------------- +// Routines that manipulate the FLASH SPI BUS +// ---------------------------------------------------------------- + +/*! + * \brief One time call to initialize SPI + */ +void spif_init(void); + +/*! + * \brief Wait for last SPI transaction to complete. + * Unless you need to know it completed, it's not necessary to call this. + */ +void spif_wait(void); + +uint32_t +spif_transact(bool readback_, int slave, uint32_t data, int length, uint32_t flags); + #endif /* INCLUDED_SPI_H */ |