MTK的SPI BUS驅動 spi-mt7621.c 問題,
因爲CS>0 以後,使用的是 全雙工了,可是 全雙工的驅動有問題。
CS=0 的時候,鏈接板載的SPI-FLASH,用的是 半雙工,沒問題。spa
static int mt7621_spi_transfer_one_message(struct spi_master *master,ip struct spi_message *m)ci {table struct spi_device *spi = m->spi;ast int cs = spi->chip_select;select
if (cs)static return mt7621_spi_transfer_full_duplex(master, m);tab return mt7621_spi_transfer_half_duplex(master, m);di }vi |