diff options
author | leilk.liu@mediatek.com <leilk.liu@mediatek.com> | 2017-06-20 04:21:07 -0400 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2017-06-20 08:39:14 -0400 |
commit | b6b1f2d9cf796c3555734949b5e7a74fa2ceeb6c (patch) | |
tree | 74f8896c6998b92ce0ed37efa5388bd78d8988ef | |
parent | 7383674c9be3efc171cb2f6daaccb4c503ea4b6b (diff) |
spi: mediatek: add spi support for mt2712 IC
this patch add support for mt2712 IC.
Signed-off-by: Leilk Liu <leilk.liu@mediatek.com>
Reviewed-by: Matthias Brugger <matthias.bgg@gmail.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r-- | drivers/spi/spi-mt65xx.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/spi/spi-mt65xx.c b/drivers/spi/spi-mt65xx.c index ec7755b7a94b..86bf45667a04 100644 --- a/drivers/spi/spi-mt65xx.c +++ b/drivers/spi/spi-mt65xx.c | |||
@@ -105,6 +105,10 @@ struct mtk_spi { | |||
105 | 105 | ||
106 | static const struct mtk_spi_compatible mtk_common_compat; | 106 | static const struct mtk_spi_compatible mtk_common_compat; |
107 | 107 | ||
108 | static const struct mtk_spi_compatible mt2712_compat = { | ||
109 | .must_tx = true, | ||
110 | }; | ||
111 | |||
108 | static const struct mtk_spi_compatible mt7622_compat = { | 112 | static const struct mtk_spi_compatible mt7622_compat = { |
109 | .must_tx = true, | 113 | .must_tx = true, |
110 | .enhance_timing = true, | 114 | .enhance_timing = true, |
@@ -130,6 +134,9 @@ static const struct of_device_id mtk_spi_of_match[] = { | |||
130 | { .compatible = "mediatek,mt2701-spi", | 134 | { .compatible = "mediatek,mt2701-spi", |
131 | .data = (void *)&mtk_common_compat, | 135 | .data = (void *)&mtk_common_compat, |
132 | }, | 136 | }, |
137 | { .compatible = "mediatek,mt2712-spi", | ||
138 | .data = (void *)&mt2712_compat, | ||
139 | }, | ||
133 | { .compatible = "mediatek,mt6589-spi", | 140 | { .compatible = "mediatek,mt6589-spi", |
134 | .data = (void *)&mtk_common_compat, | 141 | .data = (void *)&mtk_common_compat, |
135 | }, | 142 | }, |