blob: 847f354ebef1e0192a41384666253e59fec26172 [file] [log] [blame]
Gabor Juhos8efaef42011-01-04 21:28:22 +01001/*
2 * SPI controller driver for the Atheros AR71XX/AR724X/AR913X SoCs
3 *
4 * Copyright (C) 2009-2011 Gabor Juhos <juhosg@openwrt.org>
5 *
6 * This driver has been based on the spi-gpio.c:
7 * Copyright (C) 2006,2008 David Brownell
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
12 *
13 */
14
15#include <linux/kernel.h>
Gabor Juhos807cc4b2011-11-16 20:01:43 +010016#include <linux/module.h>
Gabor Juhos8efaef42011-01-04 21:28:22 +010017#include <linux/delay.h>
18#include <linux/spinlock.h>
Gabor Juhos8efaef42011-01-04 21:28:22 +010019#include <linux/platform_device.h>
20#include <linux/io.h>
21#include <linux/spi/spi.h>
22#include <linux/spi/spi_bitbang.h>
23#include <linux/bitops.h>
Gabor Juhos440114f2012-12-27 10:42:24 +010024#include <linux/clk.h>
25#include <linux/err.h>
Alban Bedelb172fd02019-01-16 19:55:46 +010026#include <linux/platform_data/spi-ath79.h>
Gabor Juhos8efaef42011-01-04 21:28:22 +010027
28#define DRV_NAME "ath79-spi"
29
Gabor Juhos440114f2012-12-27 10:42:24 +010030#define ATH79_SPI_RRW_DELAY_FACTOR 12000
31#define MHZ (1000 * 1000)
32
Alban Bedelb172fd02019-01-16 19:55:46 +010033#define AR71XX_SPI_REG_FS 0x00 /* Function Select */
34#define AR71XX_SPI_REG_CTRL 0x04 /* SPI Control */
35#define AR71XX_SPI_REG_IOC 0x08 /* SPI I/O Control */
36#define AR71XX_SPI_REG_RDS 0x0c /* Read Data Shift */
37
38#define AR71XX_SPI_FS_GPIO BIT(0) /* Enable GPIO mode */
39
40#define AR71XX_SPI_IOC_DO BIT(0) /* Data Out pin */
41#define AR71XX_SPI_IOC_CLK BIT(8) /* CLK pin */
42#define AR71XX_SPI_IOC_CS(n) BIT(16 + (n))
43
Gabor Juhos8efaef42011-01-04 21:28:22 +010044struct ath79_spi {
45 struct spi_bitbang bitbang;
46 u32 ioc_base;
47 u32 reg_ctrl;
48 void __iomem *base;
Gabor Juhos440114f2012-12-27 10:42:24 +010049 struct clk *clk;
Aravind Thokalada470d62017-06-27 22:01:11 +053050 unsigned int rrw_delay;
Gabor Juhos8efaef42011-01-04 21:28:22 +010051};
52
Aravind Thokalada470d62017-06-27 22:01:11 +053053static inline u32 ath79_spi_rr(struct ath79_spi *sp, unsigned int reg)
Gabor Juhos8efaef42011-01-04 21:28:22 +010054{
55 return ioread32(sp->base + reg);
56}
57
Aravind Thokalada470d62017-06-27 22:01:11 +053058static inline void ath79_spi_wr(struct ath79_spi *sp, unsigned int reg, u32 val)
Gabor Juhos8efaef42011-01-04 21:28:22 +010059{
60 iowrite32(val, sp->base + reg);
61}
62
63static inline struct ath79_spi *ath79_spidev_to_sp(struct spi_device *spi)
64{
65 return spi_master_get_devdata(spi->master);
66}
67
Aravind Thokalada470d62017-06-27 22:01:11 +053068static inline void ath79_spi_delay(struct ath79_spi *sp, unsigned int nsecs)
Gabor Juhos440114f2012-12-27 10:42:24 +010069{
70 if (nsecs > sp->rrw_delay)
71 ndelay(nsecs - sp->rrw_delay);
72}
73
Gabor Juhos8efaef42011-01-04 21:28:22 +010074static void ath79_spi_chipselect(struct spi_device *spi, int is_active)
75{
76 struct ath79_spi *sp = ath79_spidev_to_sp(spi);
77 int cs_high = (spi->mode & SPI_CS_HIGH) ? is_active : !is_active;
Alban Bedel797622d2019-01-16 19:55:45 +010078 u32 cs_bit = AR71XX_SPI_IOC_CS(spi->chip_select);
Gabor Juhos8efaef42011-01-04 21:28:22 +010079
Alban Bedel797622d2019-01-16 19:55:45 +010080 if (cs_high)
81 sp->ioc_base |= cs_bit;
82 else
83 sp->ioc_base &= ~cs_bit;
Gabor Juhos8efaef42011-01-04 21:28:22 +010084
Alban Bedel797622d2019-01-16 19:55:45 +010085 ath79_spi_wr(sp, AR71XX_SPI_REG_IOC, sp->ioc_base);
Gabor Juhos8efaef42011-01-04 21:28:22 +010086}
87
Gabor Juhosc4a31f42012-12-27 10:42:28 +010088static void ath79_spi_enable(struct ath79_spi *sp)
Gabor Juhos8efaef42011-01-04 21:28:22 +010089{
Gabor Juhos8efaef42011-01-04 21:28:22 +010090 /* enable GPIO mode */
91 ath79_spi_wr(sp, AR71XX_SPI_REG_FS, AR71XX_SPI_FS_GPIO);
92
93 /* save CTRL register */
94 sp->reg_ctrl = ath79_spi_rr(sp, AR71XX_SPI_REG_CTRL);
95 sp->ioc_base = ath79_spi_rr(sp, AR71XX_SPI_REG_IOC);
96
Alban Bedel797622d2019-01-16 19:55:45 +010097 /* clear clk and mosi in the base state */
98 sp->ioc_base &= ~(AR71XX_SPI_IOC_DO | AR71XX_SPI_IOC_CLK);
99
Gabor Juhos8efaef42011-01-04 21:28:22 +0100100 /* TODO: setup speed? */
101 ath79_spi_wr(sp, AR71XX_SPI_REG_CTRL, 0x43);
Gabor Juhosc4a31f42012-12-27 10:42:28 +0100102}
103
104static void ath79_spi_disable(struct ath79_spi *sp)
105{
106 /* restore CTRL register */
107 ath79_spi_wr(sp, AR71XX_SPI_REG_CTRL, sp->reg_ctrl);
108 /* disable GPIO mode */
109 ath79_spi_wr(sp, AR71XX_SPI_REG_FS, 0);
110}
111
Aravind Thokalada470d62017-06-27 22:01:11 +0530112static u32 ath79_spi_txrx_mode0(struct spi_device *spi, unsigned int nsecs,
Lorenzo Bianconi304d3432018-07-28 10:19:13 +0200113 u32 word, u8 bits, unsigned flags)
Gabor Juhos8efaef42011-01-04 21:28:22 +0100114{
115 struct ath79_spi *sp = ath79_spidev_to_sp(spi);
116 u32 ioc = sp->ioc_base;
117
118 /* clock starts at inactive polarity */
119 for (word <<= (32 - bits); likely(bits); bits--) {
120 u32 out;
121
122 if (word & (1 << 31))
123 out = ioc | AR71XX_SPI_IOC_DO;
124 else
125 out = ioc & ~AR71XX_SPI_IOC_DO;
126
127 /* setup MSB (to slave) on trailing edge */
128 ath79_spi_wr(sp, AR71XX_SPI_REG_IOC, out);
Gabor Juhos440114f2012-12-27 10:42:24 +0100129 ath79_spi_delay(sp, nsecs);
Gabor Juhos8efaef42011-01-04 21:28:22 +0100130 ath79_spi_wr(sp, AR71XX_SPI_REG_IOC, out | AR71XX_SPI_IOC_CLK);
Gabor Juhos440114f2012-12-27 10:42:24 +0100131 ath79_spi_delay(sp, nsecs);
Gabor Juhos72611db2012-12-27 10:42:25 +0100132 if (bits == 1)
133 ath79_spi_wr(sp, AR71XX_SPI_REG_IOC, out);
Gabor Juhos8efaef42011-01-04 21:28:22 +0100134
135 word <<= 1;
136 }
137
138 return ath79_spi_rr(sp, AR71XX_SPI_REG_RDS);
139}
140
Grant Likelyfd4a3192012-12-07 16:57:14 +0000141static int ath79_spi_probe(struct platform_device *pdev)
Gabor Juhos8efaef42011-01-04 21:28:22 +0100142{
143 struct spi_master *master;
144 struct ath79_spi *sp;
145 struct ath79_spi_platform_data *pdata;
146 struct resource *r;
Gabor Juhos440114f2012-12-27 10:42:24 +0100147 unsigned long rate;
Gabor Juhos8efaef42011-01-04 21:28:22 +0100148 int ret;
149
150 master = spi_alloc_master(&pdev->dev, sizeof(*sp));
151 if (master == NULL) {
152 dev_err(&pdev->dev, "failed to allocate spi master\n");
153 return -ENOMEM;
154 }
155
156 sp = spi_master_get_devdata(master);
Alban Bedel85f62472015-04-24 16:19:22 +0200157 master->dev.of_node = pdev->dev.of_node;
Gabor Juhos8efaef42011-01-04 21:28:22 +0100158 platform_set_drvdata(pdev, sp);
159
Jingoo Han8074cf02013-07-30 16:58:59 +0900160 pdata = dev_get_platdata(&pdev->dev);
Gabor Juhos8efaef42011-01-04 21:28:22 +0100161
Linus Walleij8db79542019-01-07 16:51:51 +0100162 master->use_gpio_descriptors = true;
Stephen Warren24778be2013-05-21 20:36:35 -0600163 master->bits_per_word_mask = SPI_BPW_RANGE_MASK(1, 32);
Alban Bedelf1b2c1c2019-01-16 19:55:47 +0100164 master->setup = spi_bitbang_setup;
165 master->cleanup = spi_bitbang_cleanup;
Gabor Juhos8efaef42011-01-04 21:28:22 +0100166 if (pdata) {
167 master->bus_num = pdata->bus_num;
168 master->num_chipselect = pdata->num_chipselect;
Gabor Juhos8efaef42011-01-04 21:28:22 +0100169 }
170
Axel Lin94c69f72013-09-10 15:43:41 +0800171 sp->bitbang.master = master;
Gabor Juhos8efaef42011-01-04 21:28:22 +0100172 sp->bitbang.chipselect = ath79_spi_chipselect;
173 sp->bitbang.txrx_word[SPI_MODE_0] = ath79_spi_txrx_mode0;
Gabor Juhos8efaef42011-01-04 21:28:22 +0100174 sp->bitbang.flags = SPI_CS_HIGH;
175
176 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Heiner Kallweitb7a2a1c2015-09-27 18:47:35 +0200177 sp->base = devm_ioremap_resource(&pdev->dev, r);
178 if (IS_ERR(sp->base)) {
179 ret = PTR_ERR(sp->base);
Gabor Juhos8efaef42011-01-04 21:28:22 +0100180 goto err_put_master;
181 }
182
Jingoo Hana6f4c8e2013-12-09 19:14:58 +0900183 sp->clk = devm_clk_get(&pdev->dev, "ahb");
Gabor Juhos440114f2012-12-27 10:42:24 +0100184 if (IS_ERR(sp->clk)) {
185 ret = PTR_ERR(sp->clk);
Jingoo Hana6f4c8e2013-12-09 19:14:58 +0900186 goto err_put_master;
Gabor Juhos440114f2012-12-27 10:42:24 +0100187 }
188
Alban Bedel3e19acd2015-04-24 16:19:23 +0200189 ret = clk_prepare_enable(sp->clk);
Gabor Juhos440114f2012-12-27 10:42:24 +0100190 if (ret)
Jingoo Hana6f4c8e2013-12-09 19:14:58 +0900191 goto err_put_master;
Gabor Juhos440114f2012-12-27 10:42:24 +0100192
193 rate = DIV_ROUND_UP(clk_get_rate(sp->clk), MHZ);
194 if (!rate) {
195 ret = -EINVAL;
196 goto err_clk_disable;
197 }
198
199 sp->rrw_delay = ATH79_SPI_RRW_DELAY_FACTOR / rate;
200 dev_dbg(&pdev->dev, "register read/write delay is %u nsecs\n",
201 sp->rrw_delay);
202
Gabor Juhosc4a31f42012-12-27 10:42:28 +0100203 ath79_spi_enable(sp);
Gabor Juhos8efaef42011-01-04 21:28:22 +0100204 ret = spi_bitbang_start(&sp->bitbang);
205 if (ret)
Gabor Juhosc4a31f42012-12-27 10:42:28 +0100206 goto err_disable;
Gabor Juhos8efaef42011-01-04 21:28:22 +0100207
208 return 0;
209
Gabor Juhosc4a31f42012-12-27 10:42:28 +0100210err_disable:
211 ath79_spi_disable(sp);
Gabor Juhos440114f2012-12-27 10:42:24 +0100212err_clk_disable:
Alban Bedel3e19acd2015-04-24 16:19:23 +0200213 clk_disable_unprepare(sp->clk);
Gabor Juhos8efaef42011-01-04 21:28:22 +0100214err_put_master:
Gabor Juhos8efaef42011-01-04 21:28:22 +0100215 spi_master_put(sp->bitbang.master);
216
217 return ret;
218}
219
Grant Likelyfd4a3192012-12-07 16:57:14 +0000220static int ath79_spi_remove(struct platform_device *pdev)
Gabor Juhos8efaef42011-01-04 21:28:22 +0100221{
222 struct ath79_spi *sp = platform_get_drvdata(pdev);
223
224 spi_bitbang_stop(&sp->bitbang);
Gabor Juhosc4a31f42012-12-27 10:42:28 +0100225 ath79_spi_disable(sp);
Alban Bedel3e19acd2015-04-24 16:19:23 +0200226 clk_disable_unprepare(sp->clk);
Gabor Juhos8efaef42011-01-04 21:28:22 +0100227 spi_master_put(sp->bitbang.master);
228
229 return 0;
230}
231
Gabor Juhos7410e842013-02-05 20:57:55 +0100232static void ath79_spi_shutdown(struct platform_device *pdev)
233{
234 ath79_spi_remove(pdev);
235}
236
Alban Bedel85f62472015-04-24 16:19:22 +0200237static const struct of_device_id ath79_spi_of_match[] = {
238 { .compatible = "qca,ar7100-spi", },
239 { },
240};
Javier Martinez Canillasd7a32392016-11-23 13:37:11 -0300241MODULE_DEVICE_TABLE(of, ath79_spi_of_match);
Alban Bedel85f62472015-04-24 16:19:22 +0200242
Gabor Juhos8efaef42011-01-04 21:28:22 +0100243static struct platform_driver ath79_spi_driver = {
244 .probe = ath79_spi_probe,
Grant Likelyfd4a3192012-12-07 16:57:14 +0000245 .remove = ath79_spi_remove,
Gabor Juhos7410e842013-02-05 20:57:55 +0100246 .shutdown = ath79_spi_shutdown,
Gabor Juhos8efaef42011-01-04 21:28:22 +0100247 .driver = {
248 .name = DRV_NAME,
Alban Bedel85f62472015-04-24 16:19:22 +0200249 .of_match_table = ath79_spi_of_match,
Gabor Juhos8efaef42011-01-04 21:28:22 +0100250 },
251};
Grant Likely940ab882011-10-05 11:29:49 -0600252module_platform_driver(ath79_spi_driver);
Gabor Juhos8efaef42011-01-04 21:28:22 +0100253
254MODULE_DESCRIPTION("SPI controller driver for Atheros AR71XX/AR724X/AR913X");
255MODULE_AUTHOR("Gabor Juhos <juhosg@openwrt.org>");
256MODULE_LICENSE("GPL v2");
257MODULE_ALIAS("platform:" DRV_NAME);