spi: modify set_cs_timing parameter
This patch modified set_cs_timing parameter, no need pass in spi_delay to set_cs_timing callback. By the way, we modified the mediatek and tegra114 spi driver to fix build err. In mediatek spi driver, We have support set absolute time not clk_count, and call this function in prepare_message not user's API. Signed-off-by: Mason Zhang <Mason.Zhang@mediatek.com> Link: https://lore.kernel.org/r/20210804133746.6742-1-Mason.Zhang@mediatek.com Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
8c33ebfeeb
commit
04e6bb0d6b
3 changed files with 66 additions and 52 deletions
|
@ -208,6 +208,65 @@ static void mtk_spi_reset(struct mtk_spi *mdata)
|
||||||
writel(reg_val, mdata->base + SPI_CMD_REG);
|
writel(reg_val, mdata->base + SPI_CMD_REG);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static int mtk_spi_set_hw_cs_timing(struct spi_device *spi)
|
||||||
|
{
|
||||||
|
struct mtk_spi *mdata = spi_master_get_devdata(spi->master);
|
||||||
|
struct spi_delay *cs_setup = &spi->cs_setup;
|
||||||
|
struct spi_delay *cs_hold = &spi->cs_hold;
|
||||||
|
struct spi_delay *cs_inactive = &spi->cs_inactive;
|
||||||
|
u16 setup, hold, inactive;
|
||||||
|
u32 reg_val;
|
||||||
|
int delay;
|
||||||
|
|
||||||
|
delay = spi_delay_to_ns(cs_setup, NULL);
|
||||||
|
if (delay < 0)
|
||||||
|
return delay;
|
||||||
|
setup = (delay * DIV_ROUND_UP(mdata->spi_clk_hz, 1000000)) / 1000;
|
||||||
|
|
||||||
|
delay = spi_delay_to_ns(cs_hold, NULL);
|
||||||
|
if (delay < 0)
|
||||||
|
return delay;
|
||||||
|
hold = (delay * DIV_ROUND_UP(mdata->spi_clk_hz, 1000000)) / 1000;
|
||||||
|
|
||||||
|
delay = spi_delay_to_ns(cs_inactive, NULL);
|
||||||
|
if (delay < 0)
|
||||||
|
return delay;
|
||||||
|
inactive = (delay * DIV_ROUND_UP(mdata->spi_clk_hz, 1000000)) / 1000;
|
||||||
|
|
||||||
|
setup = setup ? setup : 1;
|
||||||
|
hold = hold ? hold : 1;
|
||||||
|
inactive = inactive ? inactive : 1;
|
||||||
|
|
||||||
|
reg_val = readl(mdata->base + SPI_CFG0_REG);
|
||||||
|
if (mdata->dev_comp->enhance_timing) {
|
||||||
|
hold = min(hold, 0xffff);
|
||||||
|
setup = min(setup, 0xffff);
|
||||||
|
reg_val &= ~(0xffff << SPI_ADJUST_CFG0_CS_HOLD_OFFSET);
|
||||||
|
reg_val |= (((hold - 1) & 0xffff)
|
||||||
|
<< SPI_ADJUST_CFG0_CS_HOLD_OFFSET);
|
||||||
|
reg_val &= ~(0xffff << SPI_ADJUST_CFG0_CS_SETUP_OFFSET);
|
||||||
|
reg_val |= (((setup - 1) & 0xffff)
|
||||||
|
<< SPI_ADJUST_CFG0_CS_SETUP_OFFSET);
|
||||||
|
} else {
|
||||||
|
hold = min(hold, 0xff);
|
||||||
|
setup = min(setup, 0xff);
|
||||||
|
reg_val &= ~(0xff << SPI_CFG0_CS_HOLD_OFFSET);
|
||||||
|
reg_val |= (((hold - 1) & 0xff) << SPI_CFG0_CS_HOLD_OFFSET);
|
||||||
|
reg_val &= ~(0xff << SPI_CFG0_CS_SETUP_OFFSET);
|
||||||
|
reg_val |= (((setup - 1) & 0xff)
|
||||||
|
<< SPI_CFG0_CS_SETUP_OFFSET);
|
||||||
|
}
|
||||||
|
writel(reg_val, mdata->base + SPI_CFG0_REG);
|
||||||
|
|
||||||
|
inactive = min(inactive, 0xff);
|
||||||
|
reg_val = readl(mdata->base + SPI_CFG1_REG);
|
||||||
|
reg_val &= ~SPI_CFG1_CS_IDLE_MASK;
|
||||||
|
reg_val |= (((inactive - 1) & 0xff) << SPI_CFG1_CS_IDLE_OFFSET);
|
||||||
|
writel(reg_val, mdata->base + SPI_CFG1_REG);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
static int mtk_spi_prepare_message(struct spi_master *master,
|
static int mtk_spi_prepare_message(struct spi_master *master,
|
||||||
struct spi_message *msg)
|
struct spi_message *msg)
|
||||||
{
|
{
|
||||||
|
@ -284,6 +343,8 @@ static int mtk_spi_prepare_message(struct spi_master *master,
|
||||||
<< SPI_CFG1_GET_TICK_DLY_OFFSET);
|
<< SPI_CFG1_GET_TICK_DLY_OFFSET);
|
||||||
writel(reg_val, mdata->base + SPI_CFG1_REG);
|
writel(reg_val, mdata->base + SPI_CFG1_REG);
|
||||||
|
|
||||||
|
/* set hw cs timing */
|
||||||
|
mtk_spi_set_hw_cs_timing(spi);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -528,52 +589,6 @@ static bool mtk_spi_can_dma(struct spi_master *master,
|
||||||
(unsigned long)xfer->rx_buf % 4 == 0);
|
(unsigned long)xfer->rx_buf % 4 == 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int mtk_spi_set_hw_cs_timing(struct spi_device *spi,
|
|
||||||
struct spi_delay *setup,
|
|
||||||
struct spi_delay *hold,
|
|
||||||
struct spi_delay *inactive)
|
|
||||||
{
|
|
||||||
struct mtk_spi *mdata = spi_master_get_devdata(spi->master);
|
|
||||||
u16 setup_dly, hold_dly, inactive_dly;
|
|
||||||
u32 reg_val;
|
|
||||||
|
|
||||||
if ((setup && setup->unit != SPI_DELAY_UNIT_SCK) ||
|
|
||||||
(hold && hold->unit != SPI_DELAY_UNIT_SCK) ||
|
|
||||||
(inactive && inactive->unit != SPI_DELAY_UNIT_SCK)) {
|
|
||||||
dev_err(&spi->dev,
|
|
||||||
"Invalid delay unit, should be SPI_DELAY_UNIT_SCK\n");
|
|
||||||
return -EINVAL;
|
|
||||||
}
|
|
||||||
|
|
||||||
setup_dly = setup ? setup->value : 1;
|
|
||||||
hold_dly = hold ? hold->value : 1;
|
|
||||||
inactive_dly = inactive ? inactive->value : 1;
|
|
||||||
|
|
||||||
reg_val = readl(mdata->base + SPI_CFG0_REG);
|
|
||||||
if (mdata->dev_comp->enhance_timing) {
|
|
||||||
reg_val &= ~(0xffff << SPI_ADJUST_CFG0_CS_HOLD_OFFSET);
|
|
||||||
reg_val |= (((hold_dly - 1) & 0xffff)
|
|
||||||
<< SPI_ADJUST_CFG0_CS_HOLD_OFFSET);
|
|
||||||
reg_val &= ~(0xffff << SPI_ADJUST_CFG0_CS_SETUP_OFFSET);
|
|
||||||
reg_val |= (((setup_dly - 1) & 0xffff)
|
|
||||||
<< SPI_ADJUST_CFG0_CS_SETUP_OFFSET);
|
|
||||||
} else {
|
|
||||||
reg_val &= ~(0xff << SPI_CFG0_CS_HOLD_OFFSET);
|
|
||||||
reg_val |= (((hold_dly - 1) & 0xff) << SPI_CFG0_CS_HOLD_OFFSET);
|
|
||||||
reg_val &= ~(0xff << SPI_CFG0_CS_SETUP_OFFSET);
|
|
||||||
reg_val |= (((setup_dly - 1) & 0xff)
|
|
||||||
<< SPI_CFG0_CS_SETUP_OFFSET);
|
|
||||||
}
|
|
||||||
writel(reg_val, mdata->base + SPI_CFG0_REG);
|
|
||||||
|
|
||||||
reg_val = readl(mdata->base + SPI_CFG1_REG);
|
|
||||||
reg_val &= ~SPI_CFG1_CS_IDLE_MASK;
|
|
||||||
reg_val |= (((inactive_dly - 1) & 0xff) << SPI_CFG1_CS_IDLE_OFFSET);
|
|
||||||
writel(reg_val, mdata->base + SPI_CFG1_REG);
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
static int mtk_spi_setup(struct spi_device *spi)
|
static int mtk_spi_setup(struct spi_device *spi)
|
||||||
{
|
{
|
||||||
struct mtk_spi *mdata = spi_master_get_devdata(spi->master);
|
struct mtk_spi *mdata = spi_master_get_devdata(spi->master);
|
||||||
|
|
|
@ -717,12 +717,12 @@ static void tegra_spi_deinit_dma_param(struct tegra_spi_data *tspi,
|
||||||
dma_release_channel(dma_chan);
|
dma_release_channel(dma_chan);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int tegra_spi_set_hw_cs_timing(struct spi_device *spi,
|
static int tegra_spi_set_hw_cs_timing(struct spi_device *spi)
|
||||||
struct spi_delay *setup,
|
|
||||||
struct spi_delay *hold,
|
|
||||||
struct spi_delay *inactive)
|
|
||||||
{
|
{
|
||||||
struct tegra_spi_data *tspi = spi_master_get_devdata(spi->master);
|
struct tegra_spi_data *tspi = spi_master_get_devdata(spi->master);
|
||||||
|
struct spi_delay *setup = &spi->cs_setup;
|
||||||
|
struct spi_delay *hold = &spi->cs_hold;
|
||||||
|
struct spi_delay *inactive = &spi->cs_inactive;
|
||||||
u8 setup_dly, hold_dly, inactive_dly;
|
u8 setup_dly, hold_dly, inactive_dly;
|
||||||
u32 setup_hold;
|
u32 setup_hold;
|
||||||
u32 spi_cs_timing;
|
u32 spi_cs_timing;
|
||||||
|
|
|
@ -554,8 +554,7 @@ struct spi_controller {
|
||||||
* to configure specific CS timing through spi_set_cs_timing() after
|
* to configure specific CS timing through spi_set_cs_timing() after
|
||||||
* spi_setup().
|
* spi_setup().
|
||||||
*/
|
*/
|
||||||
int (*set_cs_timing)(struct spi_device *spi, struct spi_delay *setup,
|
int (*set_cs_timing)(struct spi_device *spi);
|
||||||
struct spi_delay *hold, struct spi_delay *inactive);
|
|
||||||
|
|
||||||
/* bidirectional bulk transfers
|
/* bidirectional bulk transfers
|
||||||
*
|
*
|
||||||
|
|
Loading…
Add table
Reference in a new issue