Commit 8d9ae783 authored by Yang Yingliang's avatar Yang Yingliang Committed by Mark Brown

spi: sifive: switch to use modern name

Change legacy name master to modern name host or controller.

No functional changed.
Signed-off-by: default avatarYang Yingliang <yangyingliang@huawei.com>
Link: https://lore.kernel.org/r/20230818093154.1183529-23-yangyingliang@huawei.comSigned-off-by: default avatarMark Brown <broonie@kernel.org>
parent 0ec6a150
...@@ -128,9 +128,9 @@ static void sifive_spi_init(struct sifive_spi *spi) ...@@ -128,9 +128,9 @@ static void sifive_spi_init(struct sifive_spi *spi)
} }
static int static int
sifive_spi_prepare_message(struct spi_master *master, struct spi_message *msg) sifive_spi_prepare_message(struct spi_controller *host, struct spi_message *msg)
{ {
struct sifive_spi *spi = spi_master_get_devdata(master); struct sifive_spi *spi = spi_controller_get_devdata(host);
struct spi_device *device = msg->spi; struct spi_device *device = msg->spi;
/* Update the chip select polarity */ /* Update the chip select polarity */
...@@ -152,7 +152,7 @@ sifive_spi_prepare_message(struct spi_master *master, struct spi_message *msg) ...@@ -152,7 +152,7 @@ sifive_spi_prepare_message(struct spi_master *master, struct spi_message *msg)
static void sifive_spi_set_cs(struct spi_device *device, bool is_high) static void sifive_spi_set_cs(struct spi_device *device, bool is_high)
{ {
struct sifive_spi *spi = spi_master_get_devdata(device->master); struct sifive_spi *spi = spi_controller_get_devdata(device->controller);
/* Reverse polarity is handled by SCMR/CPOL. Not inverted CS. */ /* Reverse polarity is handled by SCMR/CPOL. Not inverted CS. */
if (device->mode & SPI_CS_HIGH) if (device->mode & SPI_CS_HIGH)
...@@ -252,10 +252,10 @@ static void sifive_spi_rx(struct sifive_spi *spi, u8 *rx_ptr) ...@@ -252,10 +252,10 @@ static void sifive_spi_rx(struct sifive_spi *spi, u8 *rx_ptr)
} }
static int static int
sifive_spi_transfer_one(struct spi_master *master, struct spi_device *device, sifive_spi_transfer_one(struct spi_controller *host, struct spi_device *device,
struct spi_transfer *t) struct spi_transfer *t)
{ {
struct sifive_spi *spi = spi_master_get_devdata(master); struct sifive_spi *spi = spi_controller_get_devdata(host);
int poll = sifive_spi_prep_transfer(spi, device, t); int poll = sifive_spi_prep_transfer(spi, device, t);
const u8 *tx_ptr = t->tx_buf; const u8 *tx_ptr = t->tx_buf;
u8 *rx_ptr = t->rx_buf; u8 *rx_ptr = t->rx_buf;
...@@ -294,35 +294,35 @@ static int sifive_spi_probe(struct platform_device *pdev) ...@@ -294,35 +294,35 @@ static int sifive_spi_probe(struct platform_device *pdev)
struct sifive_spi *spi; struct sifive_spi *spi;
int ret, irq, num_cs; int ret, irq, num_cs;
u32 cs_bits, max_bits_per_word; u32 cs_bits, max_bits_per_word;
struct spi_master *master; struct spi_controller *host;
master = spi_alloc_master(&pdev->dev, sizeof(struct sifive_spi)); host = spi_alloc_host(&pdev->dev, sizeof(struct sifive_spi));
if (!master) { if (!host) {
dev_err(&pdev->dev, "out of memory\n"); dev_err(&pdev->dev, "out of memory\n");
return -ENOMEM; return -ENOMEM;
} }
spi = spi_master_get_devdata(master); spi = spi_controller_get_devdata(host);
init_completion(&spi->done); init_completion(&spi->done);
platform_set_drvdata(pdev, master); platform_set_drvdata(pdev, host);
spi->regs = devm_platform_ioremap_resource(pdev, 0); spi->regs = devm_platform_ioremap_resource(pdev, 0);
if (IS_ERR(spi->regs)) { if (IS_ERR(spi->regs)) {
ret = PTR_ERR(spi->regs); ret = PTR_ERR(spi->regs);
goto put_master; goto put_host;
} }
spi->clk = devm_clk_get(&pdev->dev, NULL); spi->clk = devm_clk_get(&pdev->dev, NULL);
if (IS_ERR(spi->clk)) { if (IS_ERR(spi->clk)) {
dev_err(&pdev->dev, "Unable to find bus clock\n"); dev_err(&pdev->dev, "Unable to find bus clock\n");
ret = PTR_ERR(spi->clk); ret = PTR_ERR(spi->clk);
goto put_master; goto put_host;
} }
irq = platform_get_irq(pdev, 0); irq = platform_get_irq(pdev, 0);
if (irq < 0) { if (irq < 0) {
ret = irq; ret = irq;
goto put_master; goto put_host;
} }
/* Optional parameters */ /* Optional parameters */
...@@ -339,14 +339,14 @@ static int sifive_spi_probe(struct platform_device *pdev) ...@@ -339,14 +339,14 @@ static int sifive_spi_probe(struct platform_device *pdev)
if (!ret && max_bits_per_word < 8) { if (!ret && max_bits_per_word < 8) {
dev_err(&pdev->dev, "Only 8bit SPI words supported by the driver\n"); dev_err(&pdev->dev, "Only 8bit SPI words supported by the driver\n");
ret = -EINVAL; ret = -EINVAL;
goto put_master; goto put_host;
} }
/* Spin up the bus clock before hitting registers */ /* Spin up the bus clock before hitting registers */
ret = clk_prepare_enable(spi->clk); ret = clk_prepare_enable(spi->clk);
if (ret) { if (ret) {
dev_err(&pdev->dev, "Unable to enable bus clock\n"); dev_err(&pdev->dev, "Unable to enable bus clock\n");
goto put_master; goto put_host;
} }
/* probe the number of CS lines */ /* probe the number of CS lines */
...@@ -362,30 +362,30 @@ static int sifive_spi_probe(struct platform_device *pdev) ...@@ -362,30 +362,30 @@ static int sifive_spi_probe(struct platform_device *pdev)
num_cs = ilog2(cs_bits) + 1; num_cs = ilog2(cs_bits) + 1;
if (num_cs > SIFIVE_SPI_MAX_CS) { if (num_cs > SIFIVE_SPI_MAX_CS) {
dev_err(&pdev->dev, "Invalid number of spi slaves\n"); dev_err(&pdev->dev, "Invalid number of spi targets\n");
ret = -EINVAL; ret = -EINVAL;
goto disable_clk; goto disable_clk;
} }
/* Define our master */ /* Define our host */
master->dev.of_node = pdev->dev.of_node; host->dev.of_node = pdev->dev.of_node;
master->bus_num = pdev->id; host->bus_num = pdev->id;
master->num_chipselect = num_cs; host->num_chipselect = num_cs;
master->mode_bits = SPI_CPHA | SPI_CPOL host->mode_bits = SPI_CPHA | SPI_CPOL
| SPI_CS_HIGH | SPI_LSB_FIRST | SPI_CS_HIGH | SPI_LSB_FIRST
| SPI_TX_DUAL | SPI_TX_QUAD | SPI_TX_DUAL | SPI_TX_QUAD
| SPI_RX_DUAL | SPI_RX_QUAD; | SPI_RX_DUAL | SPI_RX_QUAD;
/* TODO: add driver support for bits_per_word < 8 /* TODO: add driver support for bits_per_word < 8
* we need to "left-align" the bits (unless SPI_LSB_FIRST) * we need to "left-align" the bits (unless SPI_LSB_FIRST)
*/ */
master->bits_per_word_mask = SPI_BPW_MASK(8); host->bits_per_word_mask = SPI_BPW_MASK(8);
master->flags = SPI_CONTROLLER_MUST_TX | SPI_CONTROLLER_GPIO_SS; host->flags = SPI_CONTROLLER_MUST_TX | SPI_CONTROLLER_GPIO_SS;
master->prepare_message = sifive_spi_prepare_message; host->prepare_message = sifive_spi_prepare_message;
master->set_cs = sifive_spi_set_cs; host->set_cs = sifive_spi_set_cs;
master->transfer_one = sifive_spi_transfer_one; host->transfer_one = sifive_spi_transfer_one;
pdev->dev.dma_mask = NULL; pdev->dev.dma_mask = NULL;
/* Configure the SPI master hardware */ /* Configure the SPI host hardware */
sifive_spi_init(spi); sifive_spi_init(spi);
/* Register for SPI Interrupt */ /* Register for SPI Interrupt */
...@@ -397,11 +397,11 @@ static int sifive_spi_probe(struct platform_device *pdev) ...@@ -397,11 +397,11 @@ static int sifive_spi_probe(struct platform_device *pdev)
} }
dev_info(&pdev->dev, "mapped; irq=%d, cs=%d\n", dev_info(&pdev->dev, "mapped; irq=%d, cs=%d\n",
irq, master->num_chipselect); irq, host->num_chipselect);
ret = devm_spi_register_master(&pdev->dev, master); ret = devm_spi_register_controller(&pdev->dev, host);
if (ret < 0) { if (ret < 0) {
dev_err(&pdev->dev, "spi_register_master failed\n"); dev_err(&pdev->dev, "spi_register_host failed\n");
goto disable_clk; goto disable_clk;
} }
...@@ -409,16 +409,16 @@ static int sifive_spi_probe(struct platform_device *pdev) ...@@ -409,16 +409,16 @@ static int sifive_spi_probe(struct platform_device *pdev)
disable_clk: disable_clk:
clk_disable_unprepare(spi->clk); clk_disable_unprepare(spi->clk);
put_master: put_host:
spi_master_put(master); spi_controller_put(host);
return ret; return ret;
} }
static void sifive_spi_remove(struct platform_device *pdev) static void sifive_spi_remove(struct platform_device *pdev)
{ {
struct spi_master *master = platform_get_drvdata(pdev); struct spi_controller *host = platform_get_drvdata(pdev);
struct sifive_spi *spi = spi_master_get_devdata(master); struct sifive_spi *spi = spi_controller_get_devdata(host);
/* Disable all the interrupts just in case */ /* Disable all the interrupts just in case */
sifive_spi_write(spi, SIFIVE_SPI_REG_IE, 0); sifive_spi_write(spi, SIFIVE_SPI_REG_IE, 0);
...@@ -427,11 +427,11 @@ static void sifive_spi_remove(struct platform_device *pdev) ...@@ -427,11 +427,11 @@ static void sifive_spi_remove(struct platform_device *pdev)
static int sifive_spi_suspend(struct device *dev) static int sifive_spi_suspend(struct device *dev)
{ {
struct spi_master *master = dev_get_drvdata(dev); struct spi_controller *host = dev_get_drvdata(dev);
struct sifive_spi *spi = spi_master_get_devdata(master); struct sifive_spi *spi = spi_controller_get_devdata(host);
int ret; int ret;
ret = spi_master_suspend(master); ret = spi_controller_suspend(host);
if (ret) if (ret)
return ret; return ret;
...@@ -445,14 +445,14 @@ static int sifive_spi_suspend(struct device *dev) ...@@ -445,14 +445,14 @@ static int sifive_spi_suspend(struct device *dev)
static int sifive_spi_resume(struct device *dev) static int sifive_spi_resume(struct device *dev)
{ {
struct spi_master *master = dev_get_drvdata(dev); struct spi_controller *host = dev_get_drvdata(dev);
struct sifive_spi *spi = spi_master_get_devdata(master); struct sifive_spi *spi = spi_controller_get_devdata(host);
int ret; int ret;
ret = clk_prepare_enable(spi->clk); ret = clk_prepare_enable(spi->clk);
if (ret) if (ret)
return ret; return ret;
ret = spi_master_resume(master); ret = spi_controller_resume(host);
if (ret) if (ret)
clk_disable_unprepare(spi->clk); clk_disable_unprepare(spi->clk);
......
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