
so the new SPI interface has this API: - void spi_init(void); - int spi_setup(int cs, unsigned int max_hz, unsigned int mode); - int spi_xfer(int cs, int bitlen, uchar *dout, uchar *din); - int spi_cs_is_valid(int cs); - void spi_cs_activate(int cs); - void spi_cs_deactivate(int cs);
there isnt a function to pair up with spi_setup() ? for example, the normal communication flow with a SPI flash: - spi_setup - turn on SPI - spi_cs_activate - assert CS - spi_xfer - - op code (read/write/erase) - address - actual block data - spi_cs_deactivate - deassert CS - ??? - turn off SPI you dont want to have the deactivate func to turn off SPI in case you need to toggle the CS during communication ... some SPI peripherals have undefined (floating) behavior with pins when it is actually turned off which is bad mojo ...
also, what's the deal with spi_xfer() taking a length in # of bits ? is it realistic to transmit anything less tan 8 bits ? the Linux kernel driver does not support this, so it cant be a big need ... -mike