Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0-only */
0002 /*
0003  * Freescale DSPI controller driver
0004  *
0005  * Copyright (c) 2017 Angelo Dureghello <angelo@sysam.it>
0006  */
0007 
0008 #ifndef SPI_FSL_DSPI_HEADER_H
0009 #define SPI_FSL_DSPI_HEADER_H
0010 
0011 /**
0012  * struct fsl_dspi_platform_data - platform data for the Freescale DSPI driver
0013  * @bus_num: board specific identifier for this DSPI driver.
0014  * @cs_num: number of chip selects supported by this DSPI driver.
0015  */
0016 struct fsl_dspi_platform_data {
0017     u32 cs_num;
0018     u32 bus_num;
0019     u32 sck_cs_delay;
0020     u32 cs_sck_delay;
0021 };
0022 
0023 #endif /* SPI_FSL_DSPI_HEADER_H */