Skip to content

Commit

Permalink
spi: mediatek: add SPI_LSB_FIRST support
Browse files Browse the repository at this point in the history
this patch add SPI_LSB_FIRST feature support.

Signed-off-by: Leilk Liu <leilk.liu@mediatek.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
  • Loading branch information
Leilk Liu authored and Mark Brown committed Jun 6, 2019
1 parent b0823ee commit 3e582c6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 11 deletions.
15 changes: 6 additions & 9 deletions drivers/spi/spi-mt65xx.c
Original file line number Diff line number Diff line change
Expand Up @@ -131,8 +131,6 @@ static const struct mtk_spi_compatible mt8183_compat = {
* supplies it.
*/
static const struct mtk_chip_config mtk_default_chip_info = {
.rx_mlsb = 1,
.tx_mlsb = 1,
.cs_pol = 0,
.sample_sel = 0,
};
Expand Down Expand Up @@ -203,14 +201,13 @@ static int mtk_spi_prepare_message(struct spi_master *master,
reg_val &= ~SPI_CMD_CPOL;

/* set the mlsbx and mlsbtx */
if (chip_config->tx_mlsb)
reg_val |= SPI_CMD_TXMSBF;
else
if (spi->mode & SPI_LSB_FIRST) {
reg_val &= ~SPI_CMD_TXMSBF;
if (chip_config->rx_mlsb)
reg_val |= SPI_CMD_RXMSBF;
else
reg_val &= ~SPI_CMD_RXMSBF;
} else {
reg_val |= SPI_CMD_TXMSBF;
reg_val |= SPI_CMD_RXMSBF;
}

/* set the tx/rx endian */
#ifdef __LITTLE_ENDIAN
Expand Down Expand Up @@ -607,7 +604,7 @@ static int mtk_spi_probe(struct platform_device *pdev)

master->auto_runtime_pm = true;
master->dev.of_node = pdev->dev.of_node;
master->mode_bits = SPI_CPOL | SPI_CPHA;
master->mode_bits = SPI_CPOL | SPI_CPHA | SPI_LSB_FIRST;

master->set_cs = mtk_spi_set_cs;
master->prepare_message = mtk_spi_prepare_message;
Expand Down
2 changes: 0 additions & 2 deletions include/linux/platform_data/spi-mt65xx.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@

/* Board specific platform_data */
struct mtk_chip_config {
u32 tx_mlsb;
u32 rx_mlsb;
u32 cs_pol;
u32 sample_sel;
};
Expand Down

0 comments on commit 3e582c6

Please sign in to comment.