2 * SPI controller driver for the Atheros AR71XX/AR724X/AR913X SoCs
4 * Copyright (C) 2009-2011 Gabor Juhos <juhosg@openwrt.org>
6 * This driver has been based on the spi-gpio.c:
7 * Copyright (C) 2006,2008 David Brownell
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.
15 #include <linux/kernel.h>
16 #include <linux/module.h>
17 #include <linux/delay.h>
18 #include <linux/spinlock.h>
19 #include <linux/platform_device.h>
21 #include <linux/spi/spi.h>
22 #include <linux/spi/spi_bitbang.h>
23 #include <linux/bitops.h>
24 #include <linux/clk.h>
25 #include <linux/err.h>
26 #include <linux/platform_data/spi-ath79.h>
28 #define DRV_NAME "ath79-spi"
30 #define ATH79_SPI_RRW_DELAY_FACTOR 12000
31 #define MHZ (1000 * 1000)
33 #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 */
38 #define AR71XX_SPI_FS_GPIO BIT(0) /* Enable GPIO mode */
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))
45 struct spi_bitbang bitbang
;
50 unsigned int rrw_delay
;
53 static inline u32
ath79_spi_rr(struct ath79_spi
*sp
, unsigned int reg
)
55 return ioread32(sp
->base
+ reg
);
58 static inline void ath79_spi_wr(struct ath79_spi
*sp
, unsigned int reg
, u32 val
)
60 iowrite32(val
, sp
->base
+ reg
);
63 static inline struct ath79_spi
*ath79_spidev_to_sp(struct spi_device
*spi
)
65 return spi_master_get_devdata(spi
->master
);
68 static inline void ath79_spi_delay(struct ath79_spi
*sp
, unsigned int nsecs
)
70 if (nsecs
> sp
->rrw_delay
)
71 ndelay(nsecs
- sp
->rrw_delay
);
74 static void ath79_spi_chipselect(struct spi_device
*spi
, int is_active
)
76 struct ath79_spi
*sp
= ath79_spidev_to_sp(spi
);
77 int cs_high
= (spi
->mode
& SPI_CS_HIGH
) ? is_active
: !is_active
;
78 u32 cs_bit
= AR71XX_SPI_IOC_CS(spi
->chip_select
);
81 sp
->ioc_base
|= cs_bit
;
83 sp
->ioc_base
&= ~cs_bit
;
85 ath79_spi_wr(sp
, AR71XX_SPI_REG_IOC
, sp
->ioc_base
);
88 static void ath79_spi_enable(struct ath79_spi
*sp
)
90 /* enable GPIO mode */
91 ath79_spi_wr(sp
, AR71XX_SPI_REG_FS
, AR71XX_SPI_FS_GPIO
);
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
);
97 /* clear clk and mosi in the base state */
98 sp
->ioc_base
&= ~(AR71XX_SPI_IOC_DO
| AR71XX_SPI_IOC_CLK
);
100 /* TODO: setup speed? */
101 ath79_spi_wr(sp
, AR71XX_SPI_REG_CTRL
, 0x43);
104 static void ath79_spi_disable(struct ath79_spi
*sp
)
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);
112 static u32
ath79_spi_txrx_mode0(struct spi_device
*spi
, unsigned int nsecs
,
113 u32 word
, u8 bits
, unsigned flags
)
115 struct ath79_spi
*sp
= ath79_spidev_to_sp(spi
);
116 u32 ioc
= sp
->ioc_base
;
118 /* clock starts at inactive polarity */
119 for (word
<<= (32 - bits
); likely(bits
); bits
--) {
122 if (word
& (1 << 31))
123 out
= ioc
| AR71XX_SPI_IOC_DO
;
125 out
= ioc
& ~AR71XX_SPI_IOC_DO
;
127 /* setup MSB (to slave) on trailing edge */
128 ath79_spi_wr(sp
, AR71XX_SPI_REG_IOC
, out
);
129 ath79_spi_delay(sp
, nsecs
);
130 ath79_spi_wr(sp
, AR71XX_SPI_REG_IOC
, out
| AR71XX_SPI_IOC_CLK
);
131 ath79_spi_delay(sp
, nsecs
);
133 ath79_spi_wr(sp
, AR71XX_SPI_REG_IOC
, out
);
138 return ath79_spi_rr(sp
, AR71XX_SPI_REG_RDS
);
141 static int ath79_spi_probe(struct platform_device
*pdev
)
143 struct spi_master
*master
;
144 struct ath79_spi
*sp
;
145 struct ath79_spi_platform_data
*pdata
;
150 master
= spi_alloc_master(&pdev
->dev
, sizeof(*sp
));
151 if (master
== NULL
) {
152 dev_err(&pdev
->dev
, "failed to allocate spi master\n");
156 sp
= spi_master_get_devdata(master
);
157 master
->dev
.of_node
= pdev
->dev
.of_node
;
158 platform_set_drvdata(pdev
, sp
);
160 pdata
= dev_get_platdata(&pdev
->dev
);
162 master
->use_gpio_descriptors
= true;
163 master
->bits_per_word_mask
= SPI_BPW_RANGE_MASK(1, 32);
164 master
->setup
= spi_bitbang_setup
;
165 master
->cleanup
= spi_bitbang_cleanup
;
167 master
->bus_num
= pdata
->bus_num
;
168 master
->num_chipselect
= pdata
->num_chipselect
;
171 sp
->bitbang
.master
= master
;
172 sp
->bitbang
.chipselect
= ath79_spi_chipselect
;
173 sp
->bitbang
.txrx_word
[SPI_MODE_0
] = ath79_spi_txrx_mode0
;
174 sp
->bitbang
.flags
= SPI_CS_HIGH
;
176 r
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
177 sp
->base
= devm_ioremap_resource(&pdev
->dev
, r
);
178 if (IS_ERR(sp
->base
)) {
179 ret
= PTR_ERR(sp
->base
);
183 sp
->clk
= devm_clk_get(&pdev
->dev
, "ahb");
184 if (IS_ERR(sp
->clk
)) {
185 ret
= PTR_ERR(sp
->clk
);
189 ret
= clk_prepare_enable(sp
->clk
);
193 rate
= DIV_ROUND_UP(clk_get_rate(sp
->clk
), MHZ
);
196 goto err_clk_disable
;
199 sp
->rrw_delay
= ATH79_SPI_RRW_DELAY_FACTOR
/ rate
;
200 dev_dbg(&pdev
->dev
, "register read/write delay is %u nsecs\n",
203 ath79_spi_enable(sp
);
204 ret
= spi_bitbang_start(&sp
->bitbang
);
211 ath79_spi_disable(sp
);
213 clk_disable_unprepare(sp
->clk
);
215 spi_master_put(sp
->bitbang
.master
);
220 static int ath79_spi_remove(struct platform_device
*pdev
)
222 struct ath79_spi
*sp
= platform_get_drvdata(pdev
);
224 spi_bitbang_stop(&sp
->bitbang
);
225 ath79_spi_disable(sp
);
226 clk_disable_unprepare(sp
->clk
);
227 spi_master_put(sp
->bitbang
.master
);
232 static void ath79_spi_shutdown(struct platform_device
*pdev
)
234 ath79_spi_remove(pdev
);
237 static const struct of_device_id ath79_spi_of_match
[] = {
238 { .compatible
= "qca,ar7100-spi", },
241 MODULE_DEVICE_TABLE(of
, ath79_spi_of_match
);
243 static struct platform_driver ath79_spi_driver
= {
244 .probe
= ath79_spi_probe
,
245 .remove
= ath79_spi_remove
,
246 .shutdown
= ath79_spi_shutdown
,
249 .of_match_table
= ath79_spi_of_match
,
252 module_platform_driver(ath79_spi_driver
);
254 MODULE_DESCRIPTION("SPI controller driver for Atheros AR71XX/AR724X/AR913X");
255 MODULE_AUTHOR("Gabor Juhos <juhosg@openwrt.org>");
256 MODULE_LICENSE("GPL v2");
257 MODULE_ALIAS("platform:" DRV_NAME
);