mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 14:11:52 +00:00
spi: pic32: switch to use modern name
Change legacy name master to modern name host or controller. No functional changed. Signed-off-by: Yang Yingliang <yangyingliang@huawei.com> Link: https://lore.kernel.org/r/20230818093154.1183529-5-yangyingliang@huawei.com Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
cc64ab491b
commit
0273727c3b
@ -100,7 +100,7 @@ struct pic32_spi {
|
||||
int tx_irq;
|
||||
u32 fifo_n_byte; /* FIFO depth in bytes */
|
||||
struct clk *clk;
|
||||
struct spi_master *master;
|
||||
struct spi_controller *host;
|
||||
/* Current controller setting */
|
||||
u32 speed_hz; /* spi-clk rate */
|
||||
u32 mode;
|
||||
@ -224,9 +224,9 @@ static void pic32_err_stop(struct pic32_spi *pic32s, const char *msg)
|
||||
disable_irq_nosync(pic32s->tx_irq);
|
||||
|
||||
/* Show err message and abort xfer with err */
|
||||
dev_err(&pic32s->master->dev, "%s\n", msg);
|
||||
if (pic32s->master->cur_msg)
|
||||
pic32s->master->cur_msg->status = -EIO;
|
||||
dev_err(&pic32s->host->dev, "%s\n", msg);
|
||||
if (pic32s->host->cur_msg)
|
||||
pic32s->host->cur_msg->status = -EIO;
|
||||
complete(&pic32s->xfer_done);
|
||||
}
|
||||
|
||||
@ -250,7 +250,7 @@ static irqreturn_t pic32_spi_fault_irq(int irq, void *dev_id)
|
||||
return IRQ_HANDLED;
|
||||
}
|
||||
|
||||
if (!pic32s->master->cur_msg) {
|
||||
if (!pic32s->host->cur_msg) {
|
||||
pic32_err_stop(pic32s, "err_irq: no mesg");
|
||||
return IRQ_NONE;
|
||||
}
|
||||
@ -300,16 +300,16 @@ static void pic32_spi_dma_rx_notify(void *data)
|
||||
static int pic32_spi_dma_transfer(struct pic32_spi *pic32s,
|
||||
struct spi_transfer *xfer)
|
||||
{
|
||||
struct spi_master *master = pic32s->master;
|
||||
struct spi_controller *host = pic32s->host;
|
||||
struct dma_async_tx_descriptor *desc_rx;
|
||||
struct dma_async_tx_descriptor *desc_tx;
|
||||
dma_cookie_t cookie;
|
||||
int ret;
|
||||
|
||||
if (!master->dma_rx || !master->dma_tx)
|
||||
if (!host->dma_rx || !host->dma_tx)
|
||||
return -ENODEV;
|
||||
|
||||
desc_rx = dmaengine_prep_slave_sg(master->dma_rx,
|
||||
desc_rx = dmaengine_prep_slave_sg(host->dma_rx,
|
||||
xfer->rx_sg.sgl,
|
||||
xfer->rx_sg.nents,
|
||||
DMA_DEV_TO_MEM,
|
||||
@ -319,7 +319,7 @@ static int pic32_spi_dma_transfer(struct pic32_spi *pic32s,
|
||||
goto err_dma;
|
||||
}
|
||||
|
||||
desc_tx = dmaengine_prep_slave_sg(master->dma_tx,
|
||||
desc_tx = dmaengine_prep_slave_sg(host->dma_tx,
|
||||
xfer->tx_sg.sgl,
|
||||
xfer->tx_sg.nents,
|
||||
DMA_MEM_TO_DEV,
|
||||
@ -343,13 +343,13 @@ static int pic32_spi_dma_transfer(struct pic32_spi *pic32s,
|
||||
if (ret)
|
||||
goto err_dma_tx;
|
||||
|
||||
dma_async_issue_pending(master->dma_rx);
|
||||
dma_async_issue_pending(master->dma_tx);
|
||||
dma_async_issue_pending(host->dma_rx);
|
||||
dma_async_issue_pending(host->dma_tx);
|
||||
|
||||
return 0;
|
||||
|
||||
err_dma_tx:
|
||||
dmaengine_terminate_all(master->dma_rx);
|
||||
dmaengine_terminate_all(host->dma_rx);
|
||||
err_dma:
|
||||
return ret;
|
||||
}
|
||||
@ -357,7 +357,7 @@ err_dma:
|
||||
static int pic32_spi_dma_config(struct pic32_spi *pic32s, u32 dma_width)
|
||||
{
|
||||
int buf_offset = offsetof(struct pic32_spi_regs, buf);
|
||||
struct spi_master *master = pic32s->master;
|
||||
struct spi_controller *host = pic32s->host;
|
||||
struct dma_slave_config cfg;
|
||||
int ret;
|
||||
|
||||
@ -371,16 +371,16 @@ static int pic32_spi_dma_config(struct pic32_spi *pic32s, u32 dma_width)
|
||||
cfg.dst_addr_width = dma_width;
|
||||
/* tx channel */
|
||||
cfg.direction = DMA_MEM_TO_DEV;
|
||||
ret = dmaengine_slave_config(master->dma_tx, &cfg);
|
||||
ret = dmaengine_slave_config(host->dma_tx, &cfg);
|
||||
if (ret) {
|
||||
dev_err(&master->dev, "tx channel setup failed\n");
|
||||
dev_err(&host->dev, "tx channel setup failed\n");
|
||||
return ret;
|
||||
}
|
||||
/* rx channel */
|
||||
cfg.direction = DMA_DEV_TO_MEM;
|
||||
ret = dmaengine_slave_config(master->dma_rx, &cfg);
|
||||
ret = dmaengine_slave_config(host->dma_rx, &cfg);
|
||||
if (ret)
|
||||
dev_err(&master->dev, "rx channel setup failed\n");
|
||||
dev_err(&host->dev, "rx channel setup failed\n");
|
||||
|
||||
return ret;
|
||||
}
|
||||
@ -430,19 +430,19 @@ static int pic32_spi_set_word_size(struct pic32_spi *pic32s, u8 bits_per_word)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int pic32_spi_prepare_hardware(struct spi_master *master)
|
||||
static int pic32_spi_prepare_hardware(struct spi_controller *host)
|
||||
{
|
||||
struct pic32_spi *pic32s = spi_master_get_devdata(master);
|
||||
struct pic32_spi *pic32s = spi_controller_get_devdata(host);
|
||||
|
||||
pic32_spi_enable(pic32s);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int pic32_spi_prepare_message(struct spi_master *master,
|
||||
static int pic32_spi_prepare_message(struct spi_controller *host,
|
||||
struct spi_message *msg)
|
||||
{
|
||||
struct pic32_spi *pic32s = spi_master_get_devdata(master);
|
||||
struct pic32_spi *pic32s = spi_controller_get_devdata(host);
|
||||
struct spi_device *spi = msg->spi;
|
||||
u32 val;
|
||||
|
||||
@ -481,18 +481,18 @@ static int pic32_spi_prepare_message(struct spi_master *master,
|
||||
return 0;
|
||||
}
|
||||
|
||||
static bool pic32_spi_can_dma(struct spi_master *master,
|
||||
static bool pic32_spi_can_dma(struct spi_controller *host,
|
||||
struct spi_device *spi,
|
||||
struct spi_transfer *xfer)
|
||||
{
|
||||
struct pic32_spi *pic32s = spi_master_get_devdata(master);
|
||||
struct pic32_spi *pic32s = spi_controller_get_devdata(host);
|
||||
|
||||
/* skip using DMA on small size transfer to avoid overhead.*/
|
||||
return (xfer->len >= PIC32_DMA_LEN_MIN) &&
|
||||
test_bit(PIC32F_DMA_PREP, &pic32s->flags);
|
||||
}
|
||||
|
||||
static int pic32_spi_one_transfer(struct spi_master *master,
|
||||
static int pic32_spi_one_transfer(struct spi_controller *host,
|
||||
struct spi_device *spi,
|
||||
struct spi_transfer *transfer)
|
||||
{
|
||||
@ -501,7 +501,7 @@ static int pic32_spi_one_transfer(struct spi_master *master,
|
||||
unsigned long timeout;
|
||||
int ret;
|
||||
|
||||
pic32s = spi_master_get_devdata(master);
|
||||
pic32s = spi_controller_get_devdata(host);
|
||||
|
||||
/* handle transfer specific word size change */
|
||||
if (transfer->bits_per_word &&
|
||||
@ -549,8 +549,8 @@ static int pic32_spi_one_transfer(struct spi_master *master,
|
||||
if (timeout == 0) {
|
||||
dev_err(&spi->dev, "wait error/timedout\n");
|
||||
if (dma_issued) {
|
||||
dmaengine_terminate_all(master->dma_rx);
|
||||
dmaengine_terminate_all(master->dma_tx);
|
||||
dmaengine_terminate_all(host->dma_rx);
|
||||
dmaengine_terminate_all(host->dma_tx);
|
||||
}
|
||||
ret = -ETIMEDOUT;
|
||||
} else {
|
||||
@ -560,16 +560,16 @@ static int pic32_spi_one_transfer(struct spi_master *master,
|
||||
return ret;
|
||||
}
|
||||
|
||||
static int pic32_spi_unprepare_message(struct spi_master *master,
|
||||
static int pic32_spi_unprepare_message(struct spi_controller *host,
|
||||
struct spi_message *msg)
|
||||
{
|
||||
/* nothing to do */
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int pic32_spi_unprepare_hardware(struct spi_master *master)
|
||||
static int pic32_spi_unprepare_hardware(struct spi_controller *host)
|
||||
{
|
||||
struct pic32_spi *pic32s = spi_master_get_devdata(master);
|
||||
struct pic32_spi *pic32s = spi_controller_get_devdata(host);
|
||||
|
||||
pic32_spi_disable(pic32s);
|
||||
|
||||
@ -605,28 +605,28 @@ static void pic32_spi_cleanup(struct spi_device *spi)
|
||||
|
||||
static int pic32_spi_dma_prep(struct pic32_spi *pic32s, struct device *dev)
|
||||
{
|
||||
struct spi_master *master = pic32s->master;
|
||||
struct spi_controller *host = pic32s->host;
|
||||
int ret = 0;
|
||||
|
||||
master->dma_rx = dma_request_chan(dev, "spi-rx");
|
||||
if (IS_ERR(master->dma_rx)) {
|
||||
if (PTR_ERR(master->dma_rx) == -EPROBE_DEFER)
|
||||
host->dma_rx = dma_request_chan(dev, "spi-rx");
|
||||
if (IS_ERR(host->dma_rx)) {
|
||||
if (PTR_ERR(host->dma_rx) == -EPROBE_DEFER)
|
||||
ret = -EPROBE_DEFER;
|
||||
else
|
||||
dev_warn(dev, "RX channel not found.\n");
|
||||
|
||||
master->dma_rx = NULL;
|
||||
host->dma_rx = NULL;
|
||||
goto out_err;
|
||||
}
|
||||
|
||||
master->dma_tx = dma_request_chan(dev, "spi-tx");
|
||||
if (IS_ERR(master->dma_tx)) {
|
||||
if (PTR_ERR(master->dma_tx) == -EPROBE_DEFER)
|
||||
host->dma_tx = dma_request_chan(dev, "spi-tx");
|
||||
if (IS_ERR(host->dma_tx)) {
|
||||
if (PTR_ERR(host->dma_tx) == -EPROBE_DEFER)
|
||||
ret = -EPROBE_DEFER;
|
||||
else
|
||||
dev_warn(dev, "TX channel not found.\n");
|
||||
|
||||
master->dma_tx = NULL;
|
||||
host->dma_tx = NULL;
|
||||
goto out_err;
|
||||
}
|
||||
|
||||
@ -639,14 +639,14 @@ static int pic32_spi_dma_prep(struct pic32_spi *pic32s, struct device *dev)
|
||||
return 0;
|
||||
|
||||
out_err:
|
||||
if (master->dma_rx) {
|
||||
dma_release_channel(master->dma_rx);
|
||||
master->dma_rx = NULL;
|
||||
if (host->dma_rx) {
|
||||
dma_release_channel(host->dma_rx);
|
||||
host->dma_rx = NULL;
|
||||
}
|
||||
|
||||
if (master->dma_tx) {
|
||||
dma_release_channel(master->dma_tx);
|
||||
master->dma_tx = NULL;
|
||||
if (host->dma_tx) {
|
||||
dma_release_channel(host->dma_tx);
|
||||
host->dma_tx = NULL;
|
||||
}
|
||||
|
||||
return ret;
|
||||
@ -658,11 +658,11 @@ static void pic32_spi_dma_unprep(struct pic32_spi *pic32s)
|
||||
return;
|
||||
|
||||
clear_bit(PIC32F_DMA_PREP, &pic32s->flags);
|
||||
if (pic32s->master->dma_rx)
|
||||
dma_release_channel(pic32s->master->dma_rx);
|
||||
if (pic32s->host->dma_rx)
|
||||
dma_release_channel(pic32s->host->dma_rx);
|
||||
|
||||
if (pic32s->master->dma_tx)
|
||||
dma_release_channel(pic32s->master->dma_tx);
|
||||
if (pic32s->host->dma_tx)
|
||||
dma_release_channel(pic32s->host->dma_tx);
|
||||
}
|
||||
|
||||
static void pic32_spi_hw_init(struct pic32_spi *pic32s)
|
||||
@ -680,7 +680,7 @@ static void pic32_spi_hw_init(struct pic32_spi *pic32s)
|
||||
/* disable framing mode */
|
||||
ctrl &= ~CTRL_FRMEN;
|
||||
|
||||
/* enable master mode while disabled */
|
||||
/* enable host mode while disabled */
|
||||
ctrl |= CTRL_MSTEN;
|
||||
|
||||
/* set tx fifo threshold interrupt */
|
||||
@ -752,36 +752,36 @@ err_unmap_mem:
|
||||
|
||||
static int pic32_spi_probe(struct platform_device *pdev)
|
||||
{
|
||||
struct spi_master *master;
|
||||
struct spi_controller *host;
|
||||
struct pic32_spi *pic32s;
|
||||
int ret;
|
||||
|
||||
master = spi_alloc_master(&pdev->dev, sizeof(*pic32s));
|
||||
if (!master)
|
||||
host = spi_alloc_host(&pdev->dev, sizeof(*pic32s));
|
||||
if (!host)
|
||||
return -ENOMEM;
|
||||
|
||||
pic32s = spi_master_get_devdata(master);
|
||||
pic32s->master = master;
|
||||
pic32s = spi_controller_get_devdata(host);
|
||||
pic32s->host = host;
|
||||
|
||||
ret = pic32_spi_hw_probe(pdev, pic32s);
|
||||
if (ret)
|
||||
goto err_master;
|
||||
goto err_host;
|
||||
|
||||
master->dev.of_node = pdev->dev.of_node;
|
||||
master->mode_bits = SPI_MODE_3 | SPI_MODE_0 | SPI_CS_HIGH;
|
||||
master->num_chipselect = 1; /* single chip-select */
|
||||
master->max_speed_hz = clk_get_rate(pic32s->clk);
|
||||
master->setup = pic32_spi_setup;
|
||||
master->cleanup = pic32_spi_cleanup;
|
||||
master->flags = SPI_CONTROLLER_MUST_TX | SPI_CONTROLLER_MUST_RX;
|
||||
master->bits_per_word_mask = SPI_BPW_MASK(8) | SPI_BPW_MASK(16) |
|
||||
host->dev.of_node = pdev->dev.of_node;
|
||||
host->mode_bits = SPI_MODE_3 | SPI_MODE_0 | SPI_CS_HIGH;
|
||||
host->num_chipselect = 1; /* single chip-select */
|
||||
host->max_speed_hz = clk_get_rate(pic32s->clk);
|
||||
host->setup = pic32_spi_setup;
|
||||
host->cleanup = pic32_spi_cleanup;
|
||||
host->flags = SPI_CONTROLLER_MUST_TX | SPI_CONTROLLER_MUST_RX;
|
||||
host->bits_per_word_mask = SPI_BPW_MASK(8) | SPI_BPW_MASK(16) |
|
||||
SPI_BPW_MASK(32);
|
||||
master->transfer_one = pic32_spi_one_transfer;
|
||||
master->prepare_message = pic32_spi_prepare_message;
|
||||
master->unprepare_message = pic32_spi_unprepare_message;
|
||||
master->prepare_transfer_hardware = pic32_spi_prepare_hardware;
|
||||
master->unprepare_transfer_hardware = pic32_spi_unprepare_hardware;
|
||||
master->use_gpio_descriptors = true;
|
||||
host->transfer_one = pic32_spi_one_transfer;
|
||||
host->prepare_message = pic32_spi_prepare_message;
|
||||
host->unprepare_message = pic32_spi_unprepare_message;
|
||||
host->prepare_transfer_hardware = pic32_spi_prepare_hardware;
|
||||
host->unprepare_transfer_hardware = pic32_spi_unprepare_hardware;
|
||||
host->use_gpio_descriptors = true;
|
||||
|
||||
/* optional DMA support */
|
||||
ret = pic32_spi_dma_prep(pic32s, &pdev->dev);
|
||||
@ -789,7 +789,7 @@ static int pic32_spi_probe(struct platform_device *pdev)
|
||||
goto err_bailout;
|
||||
|
||||
if (test_bit(PIC32F_DMA_PREP, &pic32s->flags))
|
||||
master->can_dma = pic32_spi_can_dma;
|
||||
host->can_dma = pic32_spi_can_dma;
|
||||
|
||||
init_completion(&pic32s->xfer_done);
|
||||
pic32s->mode = -1;
|
||||
@ -824,10 +824,10 @@ static int pic32_spi_probe(struct platform_device *pdev)
|
||||
goto err_bailout;
|
||||
}
|
||||
|
||||
/* register master */
|
||||
ret = devm_spi_register_master(&pdev->dev, master);
|
||||
/* register host */
|
||||
ret = devm_spi_register_controller(&pdev->dev, host);
|
||||
if (ret) {
|
||||
dev_err(&master->dev, "failed registering spi master\n");
|
||||
dev_err(&host->dev, "failed registering spi host\n");
|
||||
goto err_bailout;
|
||||
}
|
||||
|
||||
@ -838,8 +838,8 @@ static int pic32_spi_probe(struct platform_device *pdev)
|
||||
err_bailout:
|
||||
pic32_spi_dma_unprep(pic32s);
|
||||
clk_disable_unprepare(pic32s->clk);
|
||||
err_master:
|
||||
spi_master_put(master);
|
||||
err_host:
|
||||
spi_controller_put(host);
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user