2 * CLPS711X SPI bus driver
4 * Copyright (C) 2012-2016 Alexander Shiyan <shc_work@mail.ru>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
13 #include <linux/clk.h>
14 #include <linux/gpio.h>
15 #include <linux/module.h>
16 #include <linux/interrupt.h>
17 #include <linux/platform_device.h>
18 #include <linux/regmap.h>
19 #include <linux/mfd/syscon.h>
20 #include <linux/mfd/syscon/clps711x.h>
21 #include <linux/spi/spi.h>
23 #define DRIVER_NAME "clps711x-spi"
25 #define SYNCIO_FRMLEN(x) ((x) << 8)
26 #define SYNCIO_TXFRMEN (1 << 14)
28 struct spi_clps711x_data {
30 struct regmap *syscon;
39 static int spi_clps711x_setup(struct spi_device *spi)
41 if (!spi->controller_state) {
44 ret = devm_gpio_request(&spi->master->dev, spi->cs_gpio,
45 dev_name(&spi->master->dev));
49 spi->controller_state = spi;
52 /* We are expect that SPI-device is not selected */
53 gpio_direction_output(spi->cs_gpio, !(spi->mode & SPI_CS_HIGH));
58 static int spi_clps711x_prepare_message(struct spi_master *master,
59 struct spi_message *msg)
61 struct spi_clps711x_data *hw = spi_master_get_devdata(master);
62 struct spi_device *spi = msg->spi;
64 /* Setup mode for transfer */
65 return regmap_update_bits(hw->syscon, SYSCON_OFFSET, SYSCON3_ADCCKNSEN,
66 (spi->mode & SPI_CPHA) ?
67 SYSCON3_ADCCKNSEN : 0);
70 static int spi_clps711x_transfer_one(struct spi_master *master,
71 struct spi_device *spi,
72 struct spi_transfer *xfer)
74 struct spi_clps711x_data *hw = spi_master_get_devdata(master);
77 clk_set_rate(hw->spi_clk, xfer->speed_hz ? : spi->max_speed_hz);
80 hw->bpw = xfer->bits_per_word;
81 hw->tx_buf = (u8 *)xfer->tx_buf;
82 hw->rx_buf = (u8 *)xfer->rx_buf;
84 /* Initiate transfer */
85 data = hw->tx_buf ? *hw->tx_buf++ : 0;
86 writel(data | SYNCIO_FRMLEN(hw->bpw) | SYNCIO_TXFRMEN, hw->syncio);
91 static irqreturn_t spi_clps711x_isr(int irq, void *dev_id)
93 struct spi_master *master = dev_id;
94 struct spi_clps711x_data *hw = spi_master_get_devdata(master);
98 data = readb(hw->syncio);
100 *hw->rx_buf++ = data;
104 data = hw->tx_buf ? *hw->tx_buf++ : 0;
105 writel(data | SYNCIO_FRMLEN(hw->bpw) | SYNCIO_TXFRMEN,
108 spi_finalize_current_transfer(master);
113 static int spi_clps711x_probe(struct platform_device *pdev)
115 struct spi_clps711x_data *hw;
116 struct spi_master *master;
117 struct resource *res;
120 irq = platform_get_irq(pdev, 0);
124 master = spi_alloc_master(&pdev->dev, sizeof(*hw));
128 master->bus_num = -1;
129 master->mode_bits = SPI_CPHA | SPI_CS_HIGH;
130 master->bits_per_word_mask = SPI_BPW_RANGE_MASK(1, 8);
131 master->dev.of_node = pdev->dev.of_node;
132 master->setup = spi_clps711x_setup;
133 master->prepare_message = spi_clps711x_prepare_message;
134 master->transfer_one = spi_clps711x_transfer_one;
136 hw = spi_master_get_devdata(master);
138 hw->spi_clk = devm_clk_get(&pdev->dev, NULL);
139 if (IS_ERR(hw->spi_clk)) {
140 ret = PTR_ERR(hw->spi_clk);
145 syscon_regmap_lookup_by_compatible("cirrus,ep7209-syscon3");
146 if (IS_ERR(hw->syscon)) {
147 ret = PTR_ERR(hw->syscon);
151 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
152 hw->syncio = devm_ioremap_resource(&pdev->dev, res);
153 if (IS_ERR(hw->syncio)) {
154 ret = PTR_ERR(hw->syncio);
158 /* Disable extended mode due hardware problems */
159 regmap_update_bits(hw->syscon, SYSCON_OFFSET, SYSCON3_ADCCON, 0);
161 /* Clear possible pending interrupt */
164 ret = devm_request_irq(&pdev->dev, irq, spi_clps711x_isr, 0,
165 dev_name(&pdev->dev), master);
169 ret = devm_spi_register_master(&pdev->dev, master);
174 spi_master_put(master);
179 static const struct of_device_id clps711x_spi_dt_ids[] = {
180 { .compatible = "cirrus,ep7209-spi", },
183 MODULE_DEVICE_TABLE(of, clps711x_spi_dt_ids);
185 static struct platform_driver clps711x_spi_driver = {
188 .of_match_table = clps711x_spi_dt_ids,
190 .probe = spi_clps711x_probe,
192 module_platform_driver(clps711x_spi_driver);
194 MODULE_LICENSE("GPL");
195 MODULE_AUTHOR("Alexander Shiyan <shc_work@mail.ru>");
196 MODULE_DESCRIPTION("CLPS711X SPI bus driver");
197 MODULE_ALIAS("platform:" DRIVER_NAME);