1 /* linux/drivers/spi/spi_nuc900.c
3 * Copyright (c) 2009 Nuvoton technology.
4 * Wan ZongShun <mcuos.com@gmail.com>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
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 memset(hw, 0, sizeof(struct nuc900_spi));
365 hw->master = spi_master_get(master);
366 hw->pdata = pdev->dev.platform_data;
367 hw->dev = &pdev->dev;
369 if (hw->pdata == NULL) {
370 dev_err(&pdev->dev, "No platform data supplied\n");
375 platform_set_drvdata(pdev, hw);
376 init_completion(&hw->done);
378 master->mode_bits = SPI_MODE_0;
379 master->num_chipselect = hw->pdata->num_cs;
380 master->bus_num = hw->pdata->bus_num;
381 hw->bitbang.master = hw->master;
382 hw->bitbang.setup_transfer = nuc900_spi_setupxfer;
383 hw->bitbang.chipselect = nuc900_spi_chipsel;
384 hw->bitbang.txrx_bufs = nuc900_spi_txrx;
385 hw->bitbang.master->setup = nuc900_spi_setup;
387 hw->res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
388 if (hw->res == NULL) {
389 dev_err(&pdev->dev, "Cannot get IORESOURCE_MEM\n");
394 hw->ioarea = request_mem_region(hw->res->start,
395 resource_size(hw->res), pdev->name);
397 if (hw->ioarea == NULL) {
398 dev_err(&pdev->dev, "Cannot reserve region\n");
403 hw->regs = ioremap(hw->res->start, resource_size(hw->res));
404 if (hw->regs == NULL) {
405 dev_err(&pdev->dev, "Cannot map IO\n");
410 hw->irq = platform_get_irq(pdev, 0);
412 dev_err(&pdev->dev, "No IRQ specified\n");
417 err = request_irq(hw->irq, nuc900_spi_irq, 0, pdev->name, hw);
419 dev_err(&pdev->dev, "Cannot claim IRQ\n");
423 hw->clk = clk_get(&pdev->dev, "spi");
424 if (IS_ERR(hw->clk)) {
425 dev_err(&pdev->dev, "No clock for device\n");
426 err = PTR_ERR(hw->clk);
430 mfp_set_groupg(&pdev->dev);
433 err = spi_bitbang_start(&hw->bitbang);
435 dev_err(&pdev->dev, "Failed to register SPI master\n");
442 clk_disable(hw->clk);
445 free_irq(hw->irq, hw);
449 release_mem_region(hw->res->start, resource_size(hw->res));
452 spi_master_put(hw->master);;
458 static int __devexit nuc900_spi_remove(struct platform_device *dev)
460 struct nuc900_spi *hw = platform_get_drvdata(dev);
462 free_irq(hw->irq, hw);
464 platform_set_drvdata(dev, NULL);
466 spi_unregister_master(hw->master);
468 clk_disable(hw->clk);
473 release_mem_region(hw->res->start, resource_size(hw->res));
476 spi_master_put(hw->master);
480 static struct platform_driver nuc900_spi_driver = {
481 .probe = nuc900_spi_probe,
482 .remove = __devexit_p(nuc900_spi_remove),
484 .name = "nuc900-spi",
485 .owner = THIS_MODULE,
489 static int __init nuc900_spi_init(void)
491 return platform_driver_register(&nuc900_spi_driver);
494 static void __exit nuc900_spi_exit(void)
496 platform_driver_unregister(&nuc900_spi_driver);
499 module_init(nuc900_spi_init);
500 module_exit(nuc900_spi_exit);
502 MODULE_AUTHOR("Wan ZongShun <mcuos.com@gmail.com>");
503 MODULE_DESCRIPTION("nuc900 spi driver!");
504 MODULE_LICENSE("GPL");
505 MODULE_ALIAS("platform:nuc900-spi");