1 // SPDX-License-Identifier: GPL-2.0
2 // Copyright (c) 2018 Nuvoton Technology corporation.
4 #include <linux/kernel.h>
5 #include <linux/bitfield.h>
6 #include <linux/bitops.h>
8 #include <linux/interrupt.h>
10 #include <linux/module.h>
11 #include <linux/platform_device.h>
12 #include <linux/spi/spi.h>
13 #include <linux/reset.h>
15 #include <asm/unaligned.h>
17 #include <linux/regmap.h>
18 #include <linux/mfd/syscon.h>
21 struct completion xfer_done;
22 struct reset_control *reset;
23 struct spi_master *master;
24 unsigned int tx_bytes;
25 unsigned int rx_bytes;
37 #define DRIVER_NAME "npcm-pspi"
39 #define NPCM_PSPI_DATA 0x00
40 #define NPCM_PSPI_CTL1 0x02
41 #define NPCM_PSPI_STAT 0x04
43 /* definitions for control and status register */
44 #define NPCM_PSPI_CTL1_SPIEN BIT(0)
45 #define NPCM_PSPI_CTL1_MOD BIT(2)
46 #define NPCM_PSPI_CTL1_EIR BIT(5)
47 #define NPCM_PSPI_CTL1_EIW BIT(6)
48 #define NPCM_PSPI_CTL1_SCM BIT(7)
49 #define NPCM_PSPI_CTL1_SCIDL BIT(8)
50 #define NPCM_PSPI_CTL1_SCDV6_0 GENMASK(15, 9)
52 #define NPCM_PSPI_STAT_BSY BIT(0)
53 #define NPCM_PSPI_STAT_RBF BIT(1)
55 /* general definitions */
56 #define NPCM_PSPI_TIMEOUT_MS 2000
57 #define NPCM_PSPI_MAX_CLK_DIVIDER 256
58 #define NPCM_PSPI_MIN_CLK_DIVIDER 4
59 #define NPCM_PSPI_DEFAULT_CLK 25000000
61 static inline unsigned int bytes_per_word(unsigned int bits)
63 return bits <= 8 ? 1 : 2;
66 static inline void npcm_pspi_irq_enable(struct npcm_pspi *priv, u16 mask)
70 val = ioread16(priv->base + NPCM_PSPI_CTL1);
72 iowrite16(val, priv->base + NPCM_PSPI_CTL1);
75 static inline void npcm_pspi_irq_disable(struct npcm_pspi *priv, u16 mask)
79 val = ioread16(priv->base + NPCM_PSPI_CTL1);
81 iowrite16(val, priv->base + NPCM_PSPI_CTL1);
84 static inline void npcm_pspi_enable(struct npcm_pspi *priv)
88 val = ioread16(priv->base + NPCM_PSPI_CTL1);
89 val |= NPCM_PSPI_CTL1_SPIEN;
90 iowrite16(val, priv->base + NPCM_PSPI_CTL1);
93 static inline void npcm_pspi_disable(struct npcm_pspi *priv)
97 val = ioread16(priv->base + NPCM_PSPI_CTL1);
98 val &= ~NPCM_PSPI_CTL1_SPIEN;
99 iowrite16(val, priv->base + NPCM_PSPI_CTL1);
102 static void npcm_pspi_set_mode(struct spi_device *spi)
104 struct npcm_pspi *priv = spi_master_get_devdata(spi->master);
108 switch (spi->mode & SPI_MODE_X_MASK) {
113 mode_val = NPCM_PSPI_CTL1_SCIDL;
116 mode_val = NPCM_PSPI_CTL1_SCM;
119 mode_val = NPCM_PSPI_CTL1_SCIDL | NPCM_PSPI_CTL1_SCM;
123 regtemp = ioread16(priv->base + NPCM_PSPI_CTL1);
124 regtemp &= ~(NPCM_PSPI_CTL1_SCM | NPCM_PSPI_CTL1_SCIDL);
125 iowrite16(regtemp | mode_val, priv->base + NPCM_PSPI_CTL1);
128 static void npcm_pspi_set_transfer_size(struct npcm_pspi *priv, int size)
132 regtemp = ioread16(NPCM_PSPI_CTL1 + priv->base);
136 regtemp &= ~NPCM_PSPI_CTL1_MOD;
139 regtemp |= NPCM_PSPI_CTL1_MOD;
143 iowrite16(regtemp, NPCM_PSPI_CTL1 + priv->base);
146 static void npcm_pspi_set_baudrate(struct npcm_pspi *priv, unsigned int speed)
151 /* the supported rates are numbers from 4 to 256. */
152 ckdiv = DIV_ROUND_CLOSEST(clk_get_rate(priv->clk), (2 * speed)) - 1;
154 regtemp = ioread16(NPCM_PSPI_CTL1 + priv->base);
155 regtemp &= ~NPCM_PSPI_CTL1_SCDV6_0;
156 iowrite16(regtemp | (ckdiv << 9), NPCM_PSPI_CTL1 + priv->base);
159 static void npcm_pspi_setup_transfer(struct spi_device *spi,
160 struct spi_transfer *t)
162 struct npcm_pspi *priv = spi_master_get_devdata(spi->master);
164 priv->tx_buf = t->tx_buf;
165 priv->rx_buf = t->rx_buf;
166 priv->tx_bytes = t->len;
167 priv->rx_bytes = t->len;
169 if (!priv->is_save_param || priv->mode != spi->mode) {
170 npcm_pspi_set_mode(spi);
171 priv->mode = spi->mode;
175 * If transfer is even length, and 8 bits per word transfer,
176 * then implement 16 bits-per-word transfer.
178 if (priv->bits_per_word == 8 && !(t->len & 0x1))
179 t->bits_per_word = 16;
181 if (!priv->is_save_param || priv->bits_per_word != t->bits_per_word) {
182 npcm_pspi_set_transfer_size(priv, t->bits_per_word);
183 priv->bits_per_word = t->bits_per_word;
186 if (!priv->is_save_param || priv->speed_hz != t->speed_hz) {
187 npcm_pspi_set_baudrate(priv, t->speed_hz);
188 priv->speed_hz = t->speed_hz;
191 if (!priv->is_save_param)
192 priv->is_save_param = true;
195 static void npcm_pspi_send(struct npcm_pspi *priv)
200 wsize = min(bytes_per_word(priv->bits_per_word), priv->tx_bytes);
201 priv->tx_bytes -= wsize;
208 val = *priv->tx_buf++;
209 iowrite8(val, NPCM_PSPI_DATA + priv->base);
212 val = *priv->tx_buf++;
213 val = *priv->tx_buf++ | (val << 8);
214 iowrite16(val, NPCM_PSPI_DATA + priv->base);
222 static void npcm_pspi_recv(struct npcm_pspi *priv)
227 rsize = min(bytes_per_word(priv->bits_per_word), priv->rx_bytes);
228 priv->rx_bytes -= rsize;
235 *priv->rx_buf++ = ioread8(priv->base + NPCM_PSPI_DATA);
238 val = ioread16(priv->base + NPCM_PSPI_DATA);
239 *priv->rx_buf++ = (val >> 8);
240 *priv->rx_buf++ = val & 0xff;
248 static int npcm_pspi_transfer_one(struct spi_master *master,
249 struct spi_device *spi,
250 struct spi_transfer *t)
252 struct npcm_pspi *priv = spi_master_get_devdata(master);
255 npcm_pspi_setup_transfer(spi, t);
256 reinit_completion(&priv->xfer_done);
257 npcm_pspi_enable(priv);
258 status = wait_for_completion_timeout(&priv->xfer_done,
260 (NPCM_PSPI_TIMEOUT_MS));
262 npcm_pspi_disable(priv);
269 static int npcm_pspi_prepare_transfer_hardware(struct spi_master *master)
271 struct npcm_pspi *priv = spi_master_get_devdata(master);
273 npcm_pspi_irq_enable(priv, NPCM_PSPI_CTL1_EIR | NPCM_PSPI_CTL1_EIW);
278 static int npcm_pspi_unprepare_transfer_hardware(struct spi_master *master)
280 struct npcm_pspi *priv = spi_master_get_devdata(master);
282 npcm_pspi_irq_disable(priv, NPCM_PSPI_CTL1_EIR | NPCM_PSPI_CTL1_EIW);
287 static void npcm_pspi_reset_hw(struct npcm_pspi *priv)
289 reset_control_assert(priv->reset);
291 reset_control_deassert(priv->reset);
294 static irqreturn_t npcm_pspi_handler(int irq, void *dev_id)
296 struct npcm_pspi *priv = dev_id;
299 stat = ioread8(priv->base + NPCM_PSPI_STAT);
301 if (!priv->tx_buf && !priv->rx_buf)
305 if (stat & NPCM_PSPI_STAT_RBF) {
306 ioread8(NPCM_PSPI_DATA + priv->base);
307 if (priv->tx_bytes == 0) {
308 npcm_pspi_disable(priv);
309 complete(&priv->xfer_done);
314 if ((stat & NPCM_PSPI_STAT_BSY) == 0)
316 npcm_pspi_send(priv);
320 if (stat & NPCM_PSPI_STAT_RBF) {
324 npcm_pspi_recv(priv);
326 if (!priv->rx_bytes) {
327 npcm_pspi_disable(priv);
328 complete(&priv->xfer_done);
333 if (((stat & NPCM_PSPI_STAT_BSY) == 0) && !priv->tx_buf)
334 iowrite8(0x0, NPCM_PSPI_DATA + priv->base);
340 static int npcm_pspi_probe(struct platform_device *pdev)
342 struct npcm_pspi *priv;
343 struct spi_master *master;
344 unsigned long clk_hz;
348 master = spi_alloc_master(&pdev->dev, sizeof(*priv));
352 platform_set_drvdata(pdev, master);
354 priv = spi_master_get_devdata(master);
355 priv->master = master;
356 priv->is_save_param = false;
358 priv->base = devm_platform_ioremap_resource(pdev, 0);
359 if (IS_ERR(priv->base)) {
360 ret = PTR_ERR(priv->base);
364 priv->clk = devm_clk_get(&pdev->dev, NULL);
365 if (IS_ERR(priv->clk)) {
366 dev_err(&pdev->dev, "failed to get clock\n");
367 ret = PTR_ERR(priv->clk);
371 ret = clk_prepare_enable(priv->clk);
375 irq = platform_get_irq(pdev, 0);
378 goto out_disable_clk;
381 priv->reset = devm_reset_control_get(&pdev->dev, NULL);
382 if (IS_ERR(priv->reset)) {
383 ret = PTR_ERR(priv->reset);
384 goto out_disable_clk;
387 /* reset SPI-HW block */
388 npcm_pspi_reset_hw(priv);
390 ret = devm_request_irq(&pdev->dev, irq, npcm_pspi_handler, 0,
393 dev_err(&pdev->dev, "failed to request IRQ\n");
394 goto out_disable_clk;
397 init_completion(&priv->xfer_done);
399 clk_hz = clk_get_rate(priv->clk);
401 master->max_speed_hz = DIV_ROUND_UP(clk_hz, NPCM_PSPI_MIN_CLK_DIVIDER);
402 master->min_speed_hz = DIV_ROUND_UP(clk_hz, NPCM_PSPI_MAX_CLK_DIVIDER);
403 master->mode_bits = SPI_CPHA | SPI_CPOL;
404 master->dev.of_node = pdev->dev.of_node;
405 master->bus_num = -1;
406 master->bits_per_word_mask = SPI_BPW_MASK(8) | SPI_BPW_MASK(16);
407 master->transfer_one = npcm_pspi_transfer_one;
408 master->prepare_transfer_hardware =
409 npcm_pspi_prepare_transfer_hardware;
410 master->unprepare_transfer_hardware =
411 npcm_pspi_unprepare_transfer_hardware;
412 master->use_gpio_descriptors = true;
414 /* set to default clock rate */
415 npcm_pspi_set_baudrate(priv, NPCM_PSPI_DEFAULT_CLK);
417 ret = devm_spi_register_master(&pdev->dev, master);
419 goto out_disable_clk;
421 pr_info("NPCM Peripheral SPI %d probed\n", master->bus_num);
426 clk_disable_unprepare(priv->clk);
429 spi_master_put(master);
433 static int npcm_pspi_remove(struct platform_device *pdev)
435 struct spi_master *master = platform_get_drvdata(pdev);
436 struct npcm_pspi *priv = spi_master_get_devdata(master);
438 npcm_pspi_reset_hw(priv);
439 clk_disable_unprepare(priv->clk);
444 static const struct of_device_id npcm_pspi_match[] = {
445 { .compatible = "nuvoton,npcm750-pspi", .data = NULL },
446 { .compatible = "nuvoton,npcm845-pspi", .data = NULL },
449 MODULE_DEVICE_TABLE(of, npcm_pspi_match);
451 static struct platform_driver npcm_pspi_driver = {
454 .of_match_table = npcm_pspi_match,
456 .probe = npcm_pspi_probe,
457 .remove = npcm_pspi_remove,
459 module_platform_driver(npcm_pspi_driver);
461 MODULE_DESCRIPTION("NPCM peripheral SPI Controller driver");
462 MODULE_AUTHOR("Tomer Maimon <tomer.maimon@nuvoton.com>");
463 MODULE_LICENSE("GPL v2");