3110628d89
The MSIOF controller has DTDL and SYNCDL in SITMDR1 register. So,
this patch adds new properties like the following commit:
d0fb47a523
(spi: fsl-espi: Configure FSL eSPI CSBEF and CSAFT)
Signed-off-by: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
15 lines
259 B
C
15 lines
259 B
C
#ifndef __SPI_SH_MSIOF_H__
|
|
#define __SPI_SH_MSIOF_H__
|
|
|
|
struct sh_msiof_spi_info {
|
|
int tx_fifo_override;
|
|
int rx_fifo_override;
|
|
u16 num_chipselect;
|
|
unsigned int dma_tx_id;
|
|
unsigned int dma_rx_id;
|
|
u32 dtdl;
|
|
u32 syncdl;
|
|
};
|
|
|
|
#endif /* __SPI_SH_MSIOF_H__ */
|