blob: 16e30de650b02a7bdbada7b00be5d8eb7e0deaff [file] [log] [blame]
Grant Likelyca632f52011-06-06 01:16:30 -06001/*
Wan ZongShun30eaed02009-12-01 14:29:20 +00002 * Copyright (c) 2009 Nuvoton technology.
3 * Wan ZongShun <mcuos.com@gmail.com>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
8 *
Grant Likelyca632f52011-06-06 01:16:30 -06009 */
Wan ZongShun30eaed02009-12-01 14:29:20 +000010
Axel Lin00d29522011-11-24 11:10:51 +080011#include <linux/module.h>
Wan ZongShun30eaed02009-12-01 14:29:20 +000012#include <linux/spinlock.h>
13#include <linux/workqueue.h>
14#include <linux/interrupt.h>
15#include <linux/delay.h>
16#include <linux/errno.h>
17#include <linux/err.h>
18#include <linux/clk.h>
19#include <linux/device.h>
20#include <linux/platform_device.h>
21#include <linux/gpio.h>
22#include <linux/io.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090023#include <linux/slab.h>
Wan ZongShun30eaed02009-12-01 14:29:20 +000024
25#include <linux/spi/spi.h>
26#include <linux/spi/spi_bitbang.h>
27
Arnd Bergmann54ecf4f2012-08-24 15:18:36 +020028#include <linux/platform_data/spi-nuc900.h>
Wan ZongShun30eaed02009-12-01 14:29:20 +000029
30/* usi registers offset */
31#define USI_CNT 0x00
32#define USI_DIV 0x04
33#define USI_SSR 0x08
34#define USI_RX0 0x10
35#define USI_TX0 0x10
36
37/* usi register bit */
38#define ENINT (0x01 << 17)
39#define ENFLG (0x01 << 16)
Axel Linfb534f12014-03-21 13:24:14 +080040#define SLEEP (0x0f << 12)
Wan ZongShun30eaed02009-12-01 14:29:20 +000041#define TXNUM (0x03 << 8)
Axel Linfb534f12014-03-21 13:24:14 +080042#define TXBITLEN (0x1f << 3)
Wan ZongShun30eaed02009-12-01 14:29:20 +000043#define TXNEG (0x01 << 2)
44#define RXNEG (0x01 << 1)
45#define LSB (0x01 << 10)
46#define SELECTLEV (0x01 << 2)
47#define SELECTPOL (0x01 << 31)
48#define SELECTSLAVE 0x01
49#define GOBUSY 0x01
50
51struct nuc900_spi {
52 struct spi_bitbang bitbang;
53 struct completion done;
54 void __iomem *regs;
55 int irq;
56 int len;
57 int count;
58 const unsigned char *tx;
59 unsigned char *rx;
60 struct clk *clk;
Wan ZongShun30eaed02009-12-01 14:29:20 +000061 struct spi_master *master;
Wan ZongShun30eaed02009-12-01 14:29:20 +000062 struct nuc900_spi_info *pdata;
63 spinlock_t lock;
Wan ZongShun30eaed02009-12-01 14:29:20 +000064};
65
66static inline struct nuc900_spi *to_hw(struct spi_device *sdev)
67{
68 return spi_master_get_devdata(sdev->master);
69}
70
71static void nuc900_slave_select(struct spi_device *spi, unsigned int ssr)
72{
73 struct nuc900_spi *hw = to_hw(spi);
74 unsigned int val;
75 unsigned int cs = spi->mode & SPI_CS_HIGH ? 1 : 0;
76 unsigned int cpol = spi->mode & SPI_CPOL ? 1 : 0;
77 unsigned long flags;
78
79 spin_lock_irqsave(&hw->lock, flags);
80
81 val = __raw_readl(hw->regs + USI_SSR);
82
83 if (!cs)
84 val &= ~SELECTLEV;
85 else
86 val |= SELECTLEV;
87
88 if (!ssr)
89 val &= ~SELECTSLAVE;
90 else
91 val |= SELECTSLAVE;
92
93 __raw_writel(val, hw->regs + USI_SSR);
94
95 val = __raw_readl(hw->regs + USI_CNT);
96
97 if (!cpol)
98 val &= ~SELECTPOL;
99 else
100 val |= SELECTPOL;
101
102 __raw_writel(val, hw->regs + USI_CNT);
103
104 spin_unlock_irqrestore(&hw->lock, flags);
105}
106
107static void nuc900_spi_chipsel(struct spi_device *spi, int value)
108{
109 switch (value) {
110 case BITBANG_CS_INACTIVE:
111 nuc900_slave_select(spi, 0);
112 break;
113
114 case BITBANG_CS_ACTIVE:
115 nuc900_slave_select(spi, 1);
116 break;
117 }
118}
119
Axel Linfb534f12014-03-21 13:24:14 +0800120static void nuc900_spi_setup_txnum(struct nuc900_spi *hw, unsigned int txnum)
Wan ZongShun30eaed02009-12-01 14:29:20 +0000121{
122 unsigned int val;
123 unsigned long flags;
124
125 spin_lock_irqsave(&hw->lock, flags);
126
Axel Linfb534f12014-03-21 13:24:14 +0800127 val = __raw_readl(hw->regs + USI_CNT) & ~TXNUM;
Wan ZongShun30eaed02009-12-01 14:29:20 +0000128
Axel Linfb534f12014-03-21 13:24:14 +0800129 if (txnum)
Wan ZongShun30eaed02009-12-01 14:29:20 +0000130 val |= txnum << 0x08;
131
132 __raw_writel(val, hw->regs + USI_CNT);
133
134 spin_unlock_irqrestore(&hw->lock, flags);
135
136}
137
138static void nuc900_spi_setup_txbitlen(struct nuc900_spi *hw,
139 unsigned int txbitlen)
140{
141 unsigned int val;
142 unsigned long flags;
143
144 spin_lock_irqsave(&hw->lock, flags);
145
Axel Linfb534f12014-03-21 13:24:14 +0800146 val = __raw_readl(hw->regs + USI_CNT) & ~TXBITLEN;
Wan ZongShun30eaed02009-12-01 14:29:20 +0000147
148 val |= (txbitlen << 0x03);
149
150 __raw_writel(val, hw->regs + USI_CNT);
151
152 spin_unlock_irqrestore(&hw->lock, flags);
153}
154
155static void nuc900_spi_gobusy(struct nuc900_spi *hw)
156{
157 unsigned int val;
158 unsigned long flags;
159
160 spin_lock_irqsave(&hw->lock, flags);
161
162 val = __raw_readl(hw->regs + USI_CNT);
163
164 val |= GOBUSY;
165
166 __raw_writel(val, hw->regs + USI_CNT);
167
168 spin_unlock_irqrestore(&hw->lock, flags);
169}
170
Wan ZongShun30eaed02009-12-01 14:29:20 +0000171static inline unsigned int hw_txbyte(struct nuc900_spi *hw, int count)
172{
173 return hw->tx ? hw->tx[count] : 0;
174}
175
176static int nuc900_spi_txrx(struct spi_device *spi, struct spi_transfer *t)
177{
178 struct nuc900_spi *hw = to_hw(spi);
179
180 hw->tx = t->tx_buf;
181 hw->rx = t->rx_buf;
182 hw->len = t->len;
183 hw->count = 0;
184
185 __raw_writel(hw_txbyte(hw, 0x0), hw->regs + USI_TX0);
186
187 nuc900_spi_gobusy(hw);
188
189 wait_for_completion(&hw->done);
190
191 return hw->count;
192}
193
194static irqreturn_t nuc900_spi_irq(int irq, void *dev)
195{
196 struct nuc900_spi *hw = dev;
197 unsigned int status;
198 unsigned int count = hw->count;
199
200 status = __raw_readl(hw->regs + USI_CNT);
201 __raw_writel(status, hw->regs + USI_CNT);
202
203 if (status & ENFLG) {
204 hw->count++;
205
206 if (hw->rx)
207 hw->rx[count] = __raw_readl(hw->regs + USI_RX0);
208 count++;
209
210 if (count < hw->len) {
211 __raw_writel(hw_txbyte(hw, count), hw->regs + USI_TX0);
212 nuc900_spi_gobusy(hw);
213 } else {
214 complete(&hw->done);
215 }
216
217 return IRQ_HANDLED;
218 }
219
220 complete(&hw->done);
221 return IRQ_HANDLED;
222}
223
224static void nuc900_tx_edge(struct nuc900_spi *hw, unsigned int edge)
225{
226 unsigned int val;
227 unsigned long flags;
228
229 spin_lock_irqsave(&hw->lock, flags);
230
231 val = __raw_readl(hw->regs + USI_CNT);
232
233 if (edge)
234 val |= TXNEG;
235 else
236 val &= ~TXNEG;
237 __raw_writel(val, hw->regs + USI_CNT);
238
239 spin_unlock_irqrestore(&hw->lock, flags);
240}
241
242static void nuc900_rx_edge(struct nuc900_spi *hw, unsigned int edge)
243{
244 unsigned int val;
245 unsigned long flags;
246
247 spin_lock_irqsave(&hw->lock, flags);
248
249 val = __raw_readl(hw->regs + USI_CNT);
250
251 if (edge)
252 val |= RXNEG;
253 else
254 val &= ~RXNEG;
255 __raw_writel(val, hw->regs + USI_CNT);
256
257 spin_unlock_irqrestore(&hw->lock, flags);
258}
259
260static void nuc900_send_first(struct nuc900_spi *hw, unsigned int lsb)
261{
262 unsigned int val;
263 unsigned long flags;
264
265 spin_lock_irqsave(&hw->lock, flags);
266
267 val = __raw_readl(hw->regs + USI_CNT);
268
269 if (lsb)
270 val |= LSB;
271 else
272 val &= ~LSB;
273 __raw_writel(val, hw->regs + USI_CNT);
274
275 spin_unlock_irqrestore(&hw->lock, flags);
276}
277
278static void nuc900_set_sleep(struct nuc900_spi *hw, unsigned int sleep)
279{
280 unsigned int val;
281 unsigned long flags;
282
283 spin_lock_irqsave(&hw->lock, flags);
284
Axel Linfb534f12014-03-21 13:24:14 +0800285 val = __raw_readl(hw->regs + USI_CNT) & ~SLEEP;
Wan ZongShun30eaed02009-12-01 14:29:20 +0000286
287 if (sleep)
288 val |= (sleep << 12);
Axel Linfb534f12014-03-21 13:24:14 +0800289
Wan ZongShun30eaed02009-12-01 14:29:20 +0000290 __raw_writel(val, hw->regs + USI_CNT);
291
292 spin_unlock_irqrestore(&hw->lock, flags);
293}
294
295static void nuc900_enable_int(struct nuc900_spi *hw)
296{
297 unsigned int val;
298 unsigned long flags;
299
300 spin_lock_irqsave(&hw->lock, flags);
301
302 val = __raw_readl(hw->regs + USI_CNT);
303
304 val |= ENINT;
305
306 __raw_writel(val, hw->regs + USI_CNT);
307
308 spin_unlock_irqrestore(&hw->lock, flags);
309}
310
311static void nuc900_set_divider(struct nuc900_spi *hw)
312{
313 __raw_writel(hw->pdata->divider, hw->regs + USI_DIV);
314}
315
316static void nuc900_init_spi(struct nuc900_spi *hw)
317{
318 clk_enable(hw->clk);
319 spin_lock_init(&hw->lock);
320
321 nuc900_tx_edge(hw, hw->pdata->txneg);
322 nuc900_rx_edge(hw, hw->pdata->rxneg);
323 nuc900_send_first(hw, hw->pdata->lsb);
324 nuc900_set_sleep(hw, hw->pdata->sleep);
325 nuc900_spi_setup_txbitlen(hw, hw->pdata->txbitlen);
326 nuc900_spi_setup_txnum(hw, hw->pdata->txnum);
327 nuc900_set_divider(hw);
328 nuc900_enable_int(hw);
329}
330
Grant Likelyfd4a3192012-12-07 16:57:14 +0000331static int nuc900_spi_probe(struct platform_device *pdev)
Wan ZongShun30eaed02009-12-01 14:29:20 +0000332{
333 struct nuc900_spi *hw;
334 struct spi_master *master;
Axel Lin8120ff82014-02-08 11:15:57 +0800335 struct resource *res;
Wan ZongShun30eaed02009-12-01 14:29:20 +0000336 int err = 0;
337
338 master = spi_alloc_master(&pdev->dev, sizeof(struct nuc900_spi));
339 if (master == NULL) {
340 dev_err(&pdev->dev, "No memory for spi_master\n");
Jingoo Han75194592013-12-09 19:18:18 +0900341 return -ENOMEM;
Wan ZongShun30eaed02009-12-01 14:29:20 +0000342 }
343
344 hw = spi_master_get_devdata(master);
Axel Lin94c69f72013-09-10 15:43:41 +0800345 hw->master = master;
Jingoo Han8074cf02013-07-30 16:58:59 +0900346 hw->pdata = dev_get_platdata(&pdev->dev);
Wan ZongShun30eaed02009-12-01 14:29:20 +0000347
348 if (hw->pdata == NULL) {
349 dev_err(&pdev->dev, "No platform data supplied\n");
350 err = -ENOENT;
351 goto err_pdata;
352 }
353
354 platform_set_drvdata(pdev, hw);
355 init_completion(&hw->done);
356
Axel Lin044d0bb2013-08-15 14:11:21 +0800357 master->mode_bits = SPI_CPOL | SPI_CPHA | SPI_CS_HIGH;
Axel Linf7db1582014-01-20 23:22:07 +0800358 if (hw->pdata->lsb)
359 master->mode_bits |= SPI_LSB_FIRST;
Wan ZongShun30eaed02009-12-01 14:29:20 +0000360 master->num_chipselect = hw->pdata->num_cs;
361 master->bus_num = hw->pdata->bus_num;
362 hw->bitbang.master = hw->master;
Wan ZongShun30eaed02009-12-01 14:29:20 +0000363 hw->bitbang.chipselect = nuc900_spi_chipsel;
364 hw->bitbang.txrx_bufs = nuc900_spi_txrx;
Wan ZongShun30eaed02009-12-01 14:29:20 +0000365
Axel Lin8120ff82014-02-08 11:15:57 +0800366 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
367 hw->regs = devm_ioremap_resource(&pdev->dev, res);
Jingoo Han75194592013-12-09 19:18:18 +0900368 if (IS_ERR(hw->regs)) {
369 err = PTR_ERR(hw->regs);
Wan ZongShun30eaed02009-12-01 14:29:20 +0000370 goto err_pdata;
371 }
372
Wan ZongShun30eaed02009-12-01 14:29:20 +0000373 hw->irq = platform_get_irq(pdev, 0);
374 if (hw->irq < 0) {
375 dev_err(&pdev->dev, "No IRQ specified\n");
376 err = -ENOENT;
Jingoo Han75194592013-12-09 19:18:18 +0900377 goto err_pdata;
Wan ZongShun30eaed02009-12-01 14:29:20 +0000378 }
379
Jingoo Han75194592013-12-09 19:18:18 +0900380 err = devm_request_irq(&pdev->dev, hw->irq, nuc900_spi_irq, 0,
381 pdev->name, hw);
Wan ZongShun30eaed02009-12-01 14:29:20 +0000382 if (err) {
383 dev_err(&pdev->dev, "Cannot claim IRQ\n");
Jingoo Han75194592013-12-09 19:18:18 +0900384 goto err_pdata;
Wan ZongShun30eaed02009-12-01 14:29:20 +0000385 }
386
Jingoo Han75194592013-12-09 19:18:18 +0900387 hw->clk = devm_clk_get(&pdev->dev, "spi");
Wan ZongShun30eaed02009-12-01 14:29:20 +0000388 if (IS_ERR(hw->clk)) {
389 dev_err(&pdev->dev, "No clock for device\n");
390 err = PTR_ERR(hw->clk);
Jingoo Han75194592013-12-09 19:18:18 +0900391 goto err_pdata;
Wan ZongShun30eaed02009-12-01 14:29:20 +0000392 }
393
Axel Lin97371fa2011-11-25 00:23:28 +0100394 mfp_set_groupg(&pdev->dev, NULL);
Wan ZongShun30eaed02009-12-01 14:29:20 +0000395 nuc900_init_spi(hw);
396
397 err = spi_bitbang_start(&hw->bitbang);
398 if (err) {
399 dev_err(&pdev->dev, "Failed to register SPI master\n");
400 goto err_register;
401 }
402
403 return 0;
404
405err_register:
406 clk_disable(hw->clk);
Wan ZongShun30eaed02009-12-01 14:29:20 +0000407err_pdata:
Joe Perchesbc3f67a2010-11-14 19:04:47 -0800408 spi_master_put(hw->master);
Wan ZongShun30eaed02009-12-01 14:29:20 +0000409 return err;
410}
411
Grant Likelyfd4a3192012-12-07 16:57:14 +0000412static int nuc900_spi_remove(struct platform_device *dev)
Wan ZongShun30eaed02009-12-01 14:29:20 +0000413{
414 struct nuc900_spi *hw = platform_get_drvdata(dev);
415
Axel Lin708a7e42011-05-15 07:33:28 +0800416 spi_bitbang_stop(&hw->bitbang);
Wan ZongShun30eaed02009-12-01 14:29:20 +0000417 clk_disable(hw->clk);
Wan ZongShun30eaed02009-12-01 14:29:20 +0000418 spi_master_put(hw->master);
419 return 0;
420}
421
422static struct platform_driver nuc900_spi_driver = {
423 .probe = nuc900_spi_probe,
Grant Likelyfd4a3192012-12-07 16:57:14 +0000424 .remove = nuc900_spi_remove,
Wan ZongShun30eaed02009-12-01 14:29:20 +0000425 .driver = {
426 .name = "nuc900-spi",
427 .owner = THIS_MODULE,
428 },
429};
Grant Likely940ab882011-10-05 11:29:49 -0600430module_platform_driver(nuc900_spi_driver);
Wan ZongShun30eaed02009-12-01 14:29:20 +0000431
432MODULE_AUTHOR("Wan ZongShun <mcuos.com@gmail.com>");
433MODULE_DESCRIPTION("nuc900 spi driver!");
434MODULE_LICENSE("GPL");
435MODULE_ALIAS("platform:nuc900-spi");