Skip to content

Commit

Permalink
spi: mediatek: add spi support for mt2712 IC
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
leilk.liu@mediatek.com authored and Mark Brown committed Jun 20, 2017
1 parent 7383674 commit b6b1f2d
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions drivers/spi/spi-mt65xx.c
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,10 @@ struct mtk_spi {

static const struct mtk_spi_compatible mtk_common_compat;

static const struct mtk_spi_compatible mt2712_compat = {
.must_tx = true,
};

static const struct mtk_spi_compatible mt7622_compat = {
.must_tx = true,
.enhance_timing = true,
Expand All @@ -130,6 +134,9 @@ static const struct of_device_id mtk_spi_of_match[] = {
{ .compatible = "mediatek,mt2701-spi",
.data = (void *)&mtk_common_compat,
},
{ .compatible = "mediatek,mt2712-spi",
.data = (void *)&mt2712_compat,
},
{ .compatible = "mediatek,mt6589-spi",
.data = (void *)&mtk_common_compat,
},
Expand Down

0 comments on commit b6b1f2d

Please sign in to comment.