Commit 2c231e0a authored by luhua.xu's avatar luhua.xu Committed by Mark Brown

spi: mediatek: add spi support for mt6765 IC

This patch add spi support for mt6765 IC.
Signed-off-by: default avatarluhua.xu <luhua.xu@mediatek.com>
Link: https://lore.kernel.org/r/1568195731-3239-3-git-send-email-luhua.xu@mediatek.comSigned-off-by: default avatarMark Brown <broonie@kernel.org>
parent 7359d108
...@@ -102,6 +102,12 @@ static const struct mtk_spi_compatible mt2712_compat = { ...@@ -102,6 +102,12 @@ static const struct mtk_spi_compatible mt2712_compat = {
.must_tx = true, .must_tx = true,
}; };
static const struct mtk_spi_compatible mt6765_compat = {
.need_pad_sel = true,
.must_tx = true,
.enhance_timing = true,
};
static const struct mtk_spi_compatible mt7622_compat = { static const struct mtk_spi_compatible mt7622_compat = {
.must_tx = true, .must_tx = true,
.enhance_timing = true, .enhance_timing = true,
...@@ -137,6 +143,9 @@ static const struct of_device_id mtk_spi_of_match[] = { ...@@ -137,6 +143,9 @@ static const struct of_device_id mtk_spi_of_match[] = {
{ .compatible = "mediatek,mt6589-spi", { .compatible = "mediatek,mt6589-spi",
.data = (void *)&mtk_common_compat, .data = (void *)&mtk_common_compat,
}, },
{ .compatible = "mediatek,mt6765-spi",
.data = (void *)&mt6765_compat,
},
{ .compatible = "mediatek,mt7622-spi", { .compatible = "mediatek,mt7622-spi",
.data = (void *)&mt7622_compat, .data = (void *)&mt7622_compat,
}, },
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment