1a568231fSLeilk Liu /* 2a568231fSLeilk Liu * MTK SPI bus driver definitions 3a568231fSLeilk Liu * 4a568231fSLeilk Liu * Copyright (c) 2015 MediaTek Inc. 5a568231fSLeilk Liu * Author: Leilk Liu <leilk.liu@mediatek.com> 6a568231fSLeilk Liu * 7a568231fSLeilk Liu * This program is free software; you can redistribute it and/or modify 8a568231fSLeilk Liu * it under the terms of the GNU General Public License version 2 as 9a568231fSLeilk Liu * published by the Free Software Foundation. 10a568231fSLeilk Liu */ 11a568231fSLeilk Liu 12a568231fSLeilk Liu #ifndef ____LINUX_PLATFORM_DATA_SPI_MTK_H 13a568231fSLeilk Liu #define ____LINUX_PLATFORM_DATA_SPI_MTK_H 14a568231fSLeilk Liu 15a568231fSLeilk Liu /* Board specific platform_data */ 16a568231fSLeilk Liu struct mtk_chip_config { 17a568231fSLeilk Liu u32 tx_mlsb; 18a568231fSLeilk Liu u32 rx_mlsb; 19058fe49dSLeilk Liu u32 cs_pol; 20058fe49dSLeilk Liu u32 sample_sel; 21a568231fSLeilk Liu }; 22a568231fSLeilk Liu #endif 23