2 * Copyright (c) 2009 Nuvoton technology.
3 * Wan ZongShun <mcuos.com@gmail.com>
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.
11 #include <linux/module.h>
12 #include <linux/init.h>
13 #include <linux/spinlock.h>
14 #include <linux/workqueue.h>
15 #include <linux/interrupt.h>
16 #include <linux/delay.h>
17 #include <linux/errno.h>
18 #include <linux/err.h>
19 #include <linux/clk.h>
20 #include <linux/device.h>
21 #include <linux/platform_device.h>
22 #include <linux/gpio.h>
24 #include <linux/slab.h>
26 #include <linux/spi/spi.h>
27 #include <linux/spi/spi_bitbang.h>
29 #include <mach/nuc900_spi.h>
31 /* usi registers offset */
38 /* usi register bit */
39 #define ENINT (0x01 << 17)
40 #define ENFLG (0x01 << 16)
41 #define TXNUM (0x03 << 8)
42 #define TXNEG (0x01 << 2)
43 #define RXNEG (0x01 << 1)
44 #define LSB (0x01 << 10)
45 #define SELECTLEV (0x01 << 2)
46 #define SELECTPOL (0x01 << 31)
47 #define SELECTSLAVE 0x01
51 struct spi_bitbang bitbang;
52 struct completion done;
57 const unsigned char *tx;
60 struct resource *ioarea;
61 struct spi_master *master;
62 struct spi_device *curdev;
64 struct nuc900_spi_info *pdata;
69 static inline struct nuc900_spi *to_hw(struct spi_device *sdev)
71 return spi_master_get_devdata(sdev->master);
74 static void nuc900_slave_select(struct spi_device *spi, unsigned int ssr)
76 struct nuc900_spi *hw = to_hw(spi);
78 unsigned int cs = spi->mode & SPI_CS_HIGH ? 1 : 0;
79 unsigned int cpol = spi->mode & SPI_CPOL ? 1 : 0;
82 spin_lock_irqsave(&hw->lock, flags);
84 val = __raw_readl(hw->regs + USI_SSR);
96 __raw_writel(val, hw->regs + USI_SSR);
98 val = __raw_readl(hw->regs + USI_CNT);
105 __raw_writel(val, hw->regs + USI_CNT);
107 spin_unlock_irqrestore(&hw->lock, flags);
110 static void nuc900_spi_chipsel(struct spi_device *spi, int value)
113 case BITBANG_CS_INACTIVE:
114 nuc900_slave_select(spi, 0);
117 case BITBANG_CS_ACTIVE:
118 nuc900_slave_select(spi, 1);
123 static void nuc900_spi_setup_txnum(struct nuc900_spi *hw,
129 spin_lock_irqsave(&hw->lock, flags);
131 val = __raw_readl(hw->regs + USI_CNT);
136 val |= txnum << 0x08;
138 __raw_writel(val, hw->regs + USI_CNT);
140 spin_unlock_irqrestore(&hw->lock, flags);
144 static void nuc900_spi_setup_txbitlen(struct nuc900_spi *hw,
145 unsigned int txbitlen)
150 spin_lock_irqsave(&hw->lock, flags);
152 val = __raw_readl(hw->regs + USI_CNT);
154 val |= (txbitlen << 0x03);
156 __raw_writel(val, hw->regs + USI_CNT);
158 spin_unlock_irqrestore(&hw->lock, flags);
161 static void nuc900_spi_gobusy(struct nuc900_spi *hw)
166 spin_lock_irqsave(&hw->lock, flags);
168 val = __raw_readl(hw->regs + USI_CNT);
172 __raw_writel(val, hw->regs + USI_CNT);
174 spin_unlock_irqrestore(&hw->lock, flags);
177 static int nuc900_spi_setupxfer(struct spi_device *spi,
178 struct spi_transfer *t)
183 static int nuc900_spi_setup(struct spi_device *spi)
188 static inline unsigned int hw_txbyte(struct nuc900_spi *hw, int count)
190 return hw->tx ? hw->tx[count] : 0;
193 static int nuc900_spi_txrx(struct spi_device *spi, struct spi_transfer *t)
195 struct nuc900_spi *hw = to_hw(spi);
202 __raw_writel(hw_txbyte(hw, 0x0), hw->regs + USI_TX0);
204 nuc900_spi_gobusy(hw);
206 wait_for_completion(&hw->done);
211 static irqreturn_t nuc900_spi_irq(int irq, void *dev)
213 struct nuc900_spi *hw = dev;
215 unsigned int count = hw->count;
217 status = __raw_readl(hw->regs + USI_CNT);
218 __raw_writel(status, hw->regs + USI_CNT);
220 if (status & ENFLG) {
224 hw->rx[count] = __raw_readl(hw->regs + USI_RX0);
227 if (count < hw->len) {
228 __raw_writel(hw_txbyte(hw, count), hw->regs + USI_TX0);
229 nuc900_spi_gobusy(hw);
241 static void nuc900_tx_edge(struct nuc900_spi *hw, unsigned int edge)
246 spin_lock_irqsave(&hw->lock, flags);
248 val = __raw_readl(hw->regs + USI_CNT);
254 __raw_writel(val, hw->regs + USI_CNT);
256 spin_unlock_irqrestore(&hw->lock, flags);
259 static void nuc900_rx_edge(struct nuc900_spi *hw, unsigned int edge)
264 spin_lock_irqsave(&hw->lock, flags);
266 val = __raw_readl(hw->regs + USI_CNT);
272 __raw_writel(val, hw->regs + USI_CNT);
274 spin_unlock_irqrestore(&hw->lock, flags);
277 static void nuc900_send_first(struct nuc900_spi *hw, unsigned int lsb)
282 spin_lock_irqsave(&hw->lock, flags);
284 val = __raw_readl(hw->regs + USI_CNT);
290 __raw_writel(val, hw->regs + USI_CNT);
292 spin_unlock_irqrestore(&hw->lock, flags);
295 static void nuc900_set_sleep(struct nuc900_spi *hw, unsigned int sleep)
300 spin_lock_irqsave(&hw->lock, flags);
302 val = __raw_readl(hw->regs + USI_CNT);
305 val |= (sleep << 12);
307 val &= ~(0x0f << 12);
308 __raw_writel(val, hw->regs + USI_CNT);
310 spin_unlock_irqrestore(&hw->lock, flags);
313 static void nuc900_enable_int(struct nuc900_spi *hw)
318 spin_lock_irqsave(&hw->lock, flags);
320 val = __raw_readl(hw->regs + USI_CNT);
324 __raw_writel(val, hw->regs + USI_CNT);
326 spin_unlock_irqrestore(&hw->lock, flags);
329 static void nuc900_set_divider(struct nuc900_spi *hw)
331 __raw_writel(hw->pdata->divider, hw->regs + USI_DIV);
334 static void nuc900_init_spi(struct nuc900_spi *hw)
337 spin_lock_init(&hw->lock);
339 nuc900_tx_edge(hw, hw->pdata->txneg);
340 nuc900_rx_edge(hw, hw->pdata->rxneg);
341 nuc900_send_first(hw, hw->pdata->lsb);
342 nuc900_set_sleep(hw, hw->pdata->sleep);
343 nuc900_spi_setup_txbitlen(hw, hw->pdata->txbitlen);
344 nuc900_spi_setup_txnum(hw, hw->pdata->txnum);
345 nuc900_set_divider(hw);
346 nuc900_enable_int(hw);
349 static int __devinit nuc900_spi_probe(struct platform_device *pdev)
351 struct nuc900_spi *hw;
352 struct spi_master *master;
355 master = spi_alloc_master(&pdev->dev, sizeof(struct nuc900_spi));
356 if (master == NULL) {
357 dev_err(&pdev->dev, "No memory for spi_master\n");
362 hw = spi_master_get_devdata(master);
363 hw->master = spi_master_get(master);
364 hw->pdata = pdev->dev.platform_data;
365 hw->dev = &pdev->dev;
367 if (hw->pdata == NULL) {
368 dev_err(&pdev->dev, "No platform data supplied\n");
373 platform_set_drvdata(pdev, hw);
374 init_completion(&hw->done);
376 master->mode_bits = SPI_MODE_0;
377 master->num_chipselect = hw->pdata->num_cs;
378 master->bus_num = hw->pdata->bus_num;
379 hw->bitbang.master = hw->master;
380 hw->bitbang.setup_transfer = nuc900_spi_setupxfer;
381 hw->bitbang.chipselect = nuc900_spi_chipsel;
382 hw->bitbang.txrx_bufs = nuc900_spi_txrx;
383 hw->bitbang.master->setup = nuc900_spi_setup;
385 hw->res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
386 if (hw->res == NULL) {
387 dev_err(&pdev->dev, "Cannot get IORESOURCE_MEM\n");
392 hw->ioarea = request_mem_region(hw->res->start,
393 resource_size(hw->res), pdev->name);
395 if (hw->ioarea == NULL) {
396 dev_err(&pdev->dev, "Cannot reserve region\n");
401 hw->regs = ioremap(hw->res->start, resource_size(hw->res));
402 if (hw->regs == NULL) {
403 dev_err(&pdev->dev, "Cannot map IO\n");
408 hw->irq = platform_get_irq(pdev, 0);
410 dev_err(&pdev->dev, "No IRQ specified\n");
415 err = request_irq(hw->irq, nuc900_spi_irq, 0, pdev->name, hw);
417 dev_err(&pdev->dev, "Cannot claim IRQ\n");
421 hw->clk = clk_get(&pdev->dev, "spi");
422 if (IS_ERR(hw->clk)) {
423 dev_err(&pdev->dev, "No clock for device\n");
424 err = PTR_ERR(hw->clk);
428 mfp_set_groupg(&pdev->dev, NULL);
431 err = spi_bitbang_start(&hw->bitbang);
433 dev_err(&pdev->dev, "Failed to register SPI master\n");
440 clk_disable(hw->clk);
443 free_irq(hw->irq, hw);
447 release_mem_region(hw->res->start, resource_size(hw->res));
450 spi_master_put(hw->master);
456 static int __devexit nuc900_spi_remove(struct platform_device *dev)
458 struct nuc900_spi *hw = platform_get_drvdata(dev);
460 free_irq(hw->irq, hw);
462 platform_set_drvdata(dev, NULL);
464 spi_bitbang_stop(&hw->bitbang);
466 clk_disable(hw->clk);
471 release_mem_region(hw->res->start, resource_size(hw->res));
474 spi_master_put(hw->master);
478 static struct platform_driver nuc900_spi_driver = {
479 .probe = nuc900_spi_probe,
480 .remove = __devexit_p(nuc900_spi_remove),
482 .name = "nuc900-spi",
483 .owner = THIS_MODULE,
486 module_platform_driver(nuc900_spi_driver);
488 MODULE_AUTHOR("Wan ZongShun <mcuos.com@gmail.com>");
489 MODULE_DESCRIPTION("nuc900 spi driver!");
490 MODULE_LICENSE("GPL");
491 MODULE_ALIAS("platform:nuc900-spi");