Hello,
I am trying to use spi0 & spi1 ports simultanously.
I tried several configurations of the relevant tasks but it seems that probing is done only once.
I would appreciate if you can guide me how to configure 2 spi, and wether the driver does support dual spi's.
Thank you,
Ran
static struct spi_board_info da850_evm_spi1_info[] __initconst = {
{
.modalias = "spi_davinci",
.max_speed_hz = 25 * 1000 * 1000,
.bus_num = 1,
.chip_select = 0,
.mode = SPI_MODE_0,
},
{
.modalias = "spi_davinci",
.max_speed_hz = 25 * 1000 * 1000,
.bus_num = 2,
.chip_select = 0,
.mode = SPI_MODE_0,
},
};