2 * Toshiba TC6393XB SoC support
4 * Copyright(c) 2005-2006 Chris Humbert
5 * Copyright(c) 2005 Dirk Opfer
6 * Copyright(c) 2005 Ian Molton <spyro@f2s.com>
7 * Copyright(c) 2007 Dmitry Baryshkov
9 * Based on code written by Sharp/Lineo for 2.4 kernels
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License version 2 as
14 * published by the Free Software Foundation.
17 #include <linux/kernel.h>
18 #include <linux/module.h>
20 #include <linux/irq.h>
21 #include <linux/platform_device.h>
22 #include <linux/clk.h>
23 #include <linux/err.h>
24 #include <linux/mfd/core.h>
25 #include <linux/mfd/tmio.h>
26 #include <linux/mfd/tc6393xb.h>
27 #include <linux/gpio.h>
29 #define SCR_REVID 0x08 /* b Revision ID */
30 #define SCR_ISR 0x50 /* b Interrupt Status */
31 #define SCR_IMR 0x52 /* b Interrupt Mask */
32 #define SCR_IRR 0x54 /* b Interrupt Routing */
33 #define SCR_GPER 0x60 /* w GP Enable */
34 #define SCR_GPI_SR(i) (0x64 + (i)) /* b3 GPI Status */
35 #define SCR_GPI_IMR(i) (0x68 + (i)) /* b3 GPI INT Mask */
36 #define SCR_GPI_EDER(i) (0x6c + (i)) /* b3 GPI Edge Detect Enable */
37 #define SCR_GPI_LIR(i) (0x70 + (i)) /* b3 GPI Level Invert */
38 #define SCR_GPO_DSR(i) (0x78 + (i)) /* b3 GPO Data Set */
39 #define SCR_GPO_DOECR(i) (0x7c + (i)) /* b3 GPO Data OE Control */
40 #define SCR_GP_IARCR(i) (0x80 + (i)) /* b3 GP Internal Active Register Control */
41 #define SCR_GP_IARLCR(i) (0x84 + (i)) /* b3 GP INTERNAL Active Register Level Control */
42 #define SCR_GPI_BCR(i) (0x88 + (i)) /* b3 GPI Buffer Control */
43 #define SCR_GPA_IARCR 0x8c /* w GPa Internal Active Register Control */
44 #define SCR_GPA_IARLCR 0x90 /* w GPa Internal Active Register Level Control */
45 #define SCR_GPA_BCR 0x94 /* w GPa Buffer Control */
46 #define SCR_CCR 0x98 /* w Clock Control */
47 #define SCR_PLL2CR 0x9a /* w PLL2 Control */
48 #define SCR_PLL1CR 0x9c /* l PLL1 Control */
49 #define SCR_DIARCR 0xa0 /* b Device Internal Active Register Control */
50 #define SCR_DBOCR 0xa1 /* b Device Buffer Off Control */
51 #define SCR_FER 0xe0 /* b Function Enable */
52 #define SCR_MCR 0xe4 /* w Mode Control */
53 #define SCR_CONFIG 0xfc /* b Configuration Control */
54 #define SCR_DEBUG 0xff /* b Debug */
56 #define SCR_CCR_CK32K BIT(0)
57 #define SCR_CCR_USBCK BIT(1)
58 #define SCR_CCR_UNK1 BIT(4)
59 #define SCR_CCR_MCLK_MASK (7 << 8)
60 #define SCR_CCR_MCLK_OFF (0 << 8)
61 #define SCR_CCR_MCLK_12 (1 << 8)
62 #define SCR_CCR_MCLK_24 (2 << 8)
63 #define SCR_CCR_MCLK_48 (3 << 8)
64 #define SCR_CCR_HCLK_MASK (3 << 12)
65 #define SCR_CCR_HCLK_24 (0 << 12)
66 #define SCR_CCR_HCLK_48 (1 << 12)
68 #define SCR_FER_USBEN BIT(0) /* USB host enable */
69 #define SCR_FER_LCDCVEN BIT(1) /* polysilicon TFT enable */
70 #define SCR_FER_SLCDEN BIT(2) /* SLCD enable */
72 #define SCR_MCR_RDY_MASK (3 << 0)
73 #define SCR_MCR_RDY_OPENDRAIN (0 << 0)
74 #define SCR_MCR_RDY_TRISTATE (1 << 0)
75 #define SCR_MCR_RDY_PUSHPULL (2 << 0)
76 #define SCR_MCR_RDY_UNK BIT(2)
77 #define SCR_MCR_RDY_EN BIT(3)
78 #define SCR_MCR_INT_MASK (3 << 4)
79 #define SCR_MCR_INT_OPENDRAIN (0 << 4)
80 #define SCR_MCR_INT_TRISTATE (1 << 4)
81 #define SCR_MCR_INT_PUSHPULL (2 << 4)
82 #define SCR_MCR_INT_UNK BIT(6)
83 #define SCR_MCR_INT_EN BIT(7)
84 /* bits 8 - 16 are unknown */
86 #define TC_GPIO_BIT(i) (1 << (i & 0x7))
88 /*--------------------------------------------------------------------------*/
93 struct gpio_chip gpio;
95 struct clk *clk; /* 3,6 Mhz */
97 spinlock_t lock; /* protects RMW cycles */
107 struct resource rscr;
108 struct resource *iomem;
118 /*--------------------------------------------------------------------------*/
120 static int tc6393xb_nand_enable(struct platform_device *nand)
122 struct platform_device *dev = to_platform_device(nand->dev.parent);
123 struct tc6393xb *tc6393xb = platform_get_drvdata(dev);
126 spin_lock_irqsave(&tc6393xb->lock, flags);
129 dev_dbg(&dev->dev, "SMD buffer on\n");
130 tmio_iowrite8(0xff, tc6393xb->scr + SCR_GPI_BCR(1));
132 spin_unlock_irqrestore(&tc6393xb->lock, flags);
137 static struct resource __devinitdata tc6393xb_nand_resources[] = {
141 .flags = IORESOURCE_MEM,
146 .flags = IORESOURCE_MEM,
149 .start = IRQ_TC6393_NAND,
150 .end = IRQ_TC6393_NAND,
151 .flags = IORESOURCE_IRQ,
155 static struct resource __devinitdata tc6393xb_mmc_resources[] = {
159 .flags = IORESOURCE_MEM,
164 .flags = IORESOURCE_MEM,
167 .start = IRQ_TC6393_MMC,
168 .end = IRQ_TC6393_MMC,
169 .flags = IORESOURCE_IRQ,
173 static struct mfd_cell __devinitdata tc6393xb_cells[] = {
174 [TC6393XB_CELL_NAND] = {
176 .enable = tc6393xb_nand_enable,
177 .num_resources = ARRAY_SIZE(tc6393xb_nand_resources),
178 .resources = tc6393xb_nand_resources,
180 [TC6393XB_CELL_MMC] = {
182 .num_resources = ARRAY_SIZE(tc6393xb_mmc_resources),
183 .resources = tc6393xb_mmc_resources,
187 /*--------------------------------------------------------------------------*/
189 static int tc6393xb_gpio_get(struct gpio_chip *chip,
192 struct tc6393xb *tc6393xb = container_of(chip, struct tc6393xb, gpio);
194 /* XXX: does dsr also represent inputs? */
195 return tmio_ioread8(tc6393xb->scr + SCR_GPO_DSR(offset / 8))
196 & TC_GPIO_BIT(offset);
199 static void __tc6393xb_gpio_set(struct gpio_chip *chip,
200 unsigned offset, int value)
202 struct tc6393xb *tc6393xb = container_of(chip, struct tc6393xb, gpio);
205 dsr = tmio_ioread8(tc6393xb->scr + SCR_GPO_DSR(offset / 8));
207 dsr |= TC_GPIO_BIT(offset);
209 dsr &= ~TC_GPIO_BIT(offset);
211 tmio_iowrite8(dsr, tc6393xb->scr + SCR_GPO_DSR(offset / 8));
214 static void tc6393xb_gpio_set(struct gpio_chip *chip,
215 unsigned offset, int value)
217 struct tc6393xb *tc6393xb = container_of(chip, struct tc6393xb, gpio);
220 spin_lock_irqsave(&tc6393xb->lock, flags);
222 __tc6393xb_gpio_set(chip, offset, value);
224 spin_unlock_irqrestore(&tc6393xb->lock, flags);
227 static int tc6393xb_gpio_direction_input(struct gpio_chip *chip,
230 struct tc6393xb *tc6393xb = container_of(chip, struct tc6393xb, gpio);
234 spin_lock_irqsave(&tc6393xb->lock, flags);
236 doecr = tmio_ioread8(tc6393xb->scr + SCR_GPO_DOECR(offset / 8));
237 doecr &= ~TC_GPIO_BIT(offset);
238 tmio_iowrite8(doecr, tc6393xb->scr + SCR_GPO_DOECR(offset / 8));
240 spin_unlock_irqrestore(&tc6393xb->lock, flags);
245 static int tc6393xb_gpio_direction_output(struct gpio_chip *chip,
246 unsigned offset, int value)
248 struct tc6393xb *tc6393xb = container_of(chip, struct tc6393xb, gpio);
252 spin_lock_irqsave(&tc6393xb->lock, flags);
254 __tc6393xb_gpio_set(chip, offset, value);
256 doecr = tmio_ioread8(tc6393xb->scr + SCR_GPO_DOECR(offset / 8));
257 doecr |= TC_GPIO_BIT(offset);
258 tmio_iowrite8(doecr, tc6393xb->scr + SCR_GPO_DOECR(offset / 8));
260 spin_unlock_irqrestore(&tc6393xb->lock, flags);
265 static int tc6393xb_register_gpio(struct tc6393xb *tc6393xb, int gpio_base)
267 tc6393xb->gpio.label = "tc6393xb";
268 tc6393xb->gpio.base = gpio_base;
269 tc6393xb->gpio.ngpio = 16;
270 tc6393xb->gpio.set = tc6393xb_gpio_set;
271 tc6393xb->gpio.get = tc6393xb_gpio_get;
272 tc6393xb->gpio.direction_input = tc6393xb_gpio_direction_input;
273 tc6393xb->gpio.direction_output = tc6393xb_gpio_direction_output;
275 return gpiochip_add(&tc6393xb->gpio);
278 /*--------------------------------------------------------------------------*/
281 tc6393xb_irq(unsigned int irq, struct irq_desc *desc)
283 struct tc6393xb *tc6393xb = get_irq_data(irq);
285 unsigned int i, irq_base;
287 irq_base = tc6393xb->irq_base;
289 while ((isr = tmio_ioread8(tc6393xb->scr + SCR_ISR) &
290 ~tmio_ioread8(tc6393xb->scr + SCR_IMR)))
291 for (i = 0; i < TC6393XB_NR_IRQS; i++) {
293 generic_handle_irq(irq_base + i);
297 static void tc6393xb_irq_ack(unsigned int irq)
301 static void tc6393xb_irq_mask(unsigned int irq)
303 struct tc6393xb *tc6393xb = get_irq_chip_data(irq);
307 spin_lock_irqsave(&tc6393xb->lock, flags);
308 imr = tmio_ioread8(tc6393xb->scr + SCR_IMR);
309 imr |= 1 << (irq - tc6393xb->irq_base);
310 tmio_iowrite8(imr, tc6393xb->scr + SCR_IMR);
311 spin_unlock_irqrestore(&tc6393xb->lock, flags);
314 static void tc6393xb_irq_unmask(unsigned int irq)
316 struct tc6393xb *tc6393xb = get_irq_chip_data(irq);
320 spin_lock_irqsave(&tc6393xb->lock, flags);
321 imr = tmio_ioread8(tc6393xb->scr + SCR_IMR);
322 imr &= ~(1 << (irq - tc6393xb->irq_base));
323 tmio_iowrite8(imr, tc6393xb->scr + SCR_IMR);
324 spin_unlock_irqrestore(&tc6393xb->lock, flags);
327 static struct irq_chip tc6393xb_chip = {
329 .ack = tc6393xb_irq_ack,
330 .mask = tc6393xb_irq_mask,
331 .unmask = tc6393xb_irq_unmask,
334 static void tc6393xb_attach_irq(struct platform_device *dev)
336 struct tc6393xb *tc6393xb = platform_get_drvdata(dev);
337 unsigned int irq, irq_base;
339 irq_base = tc6393xb->irq_base;
341 for (irq = irq_base; irq < irq_base + TC6393XB_NR_IRQS; irq++) {
342 set_irq_chip(irq, &tc6393xb_chip);
343 set_irq_chip_data(irq, tc6393xb);
344 set_irq_handler(irq, handle_edge_irq);
345 set_irq_flags(irq, IRQF_VALID | IRQF_PROBE);
348 set_irq_type(tc6393xb->irq, IRQ_TYPE_EDGE_FALLING);
349 set_irq_data(tc6393xb->irq, tc6393xb);
350 set_irq_chained_handler(tc6393xb->irq, tc6393xb_irq);
353 static void tc6393xb_detach_irq(struct platform_device *dev)
355 struct tc6393xb *tc6393xb = platform_get_drvdata(dev);
356 unsigned int irq, irq_base;
358 set_irq_chained_handler(tc6393xb->irq, NULL);
359 set_irq_data(tc6393xb->irq, NULL);
361 irq_base = tc6393xb->irq_base;
363 for (irq = irq_base; irq < irq_base + TC6393XB_NR_IRQS; irq++) {
364 set_irq_flags(irq, 0);
365 set_irq_chip(irq, NULL);
366 set_irq_chip_data(irq, NULL);
370 /*--------------------------------------------------------------------------*/
372 static int tc6393xb_hw_init(struct platform_device *dev)
374 struct tc6393xb_platform_data *tcpd = dev->dev.platform_data;
375 struct tc6393xb *tc6393xb = platform_get_drvdata(dev);
378 iowrite8(tc6393xb->suspend_state.fer, tc6393xb->scr + SCR_FER);
379 iowrite16(tcpd->scr_pll2cr, tc6393xb->scr + SCR_PLL2CR);
380 iowrite16(tc6393xb->suspend_state.ccr, tc6393xb->scr + SCR_CCR);
381 iowrite16(SCR_MCR_RDY_OPENDRAIN | SCR_MCR_RDY_UNK | SCR_MCR_RDY_EN |
382 SCR_MCR_INT_OPENDRAIN | SCR_MCR_INT_UNK | SCR_MCR_INT_EN |
383 BIT(15), tc6393xb->scr + SCR_MCR);
384 iowrite16(tcpd->scr_gper, tc6393xb->scr + SCR_GPER);
385 iowrite8(0, tc6393xb->scr + SCR_IRR);
386 iowrite8(0xbf, tc6393xb->scr + SCR_IMR);
388 for (i = 0; i < 3; i++) {
389 iowrite8(tc6393xb->suspend_state.gpo_dsr[i],
390 tc6393xb->scr + SCR_GPO_DSR(i));
391 iowrite8(tc6393xb->suspend_state.gpo_doecr[i],
392 tc6393xb->scr + SCR_GPO_DOECR(i));
393 iowrite8(tc6393xb->suspend_state.gpi_bcr[i],
394 tc6393xb->scr + SCR_GPI_BCR(i));
400 static int __devinit tc6393xb_probe(struct platform_device *dev)
402 struct tc6393xb_platform_data *tcpd = dev->dev.platform_data;
403 struct tc6393xb *tc6393xb;
404 struct resource *iomem, *rscr;
408 iomem = platform_get_resource(dev, IORESOURCE_MEM, 0);
412 tc6393xb = kzalloc(sizeof *tc6393xb, GFP_KERNEL);
418 spin_lock_init(&tc6393xb->lock);
420 platform_set_drvdata(dev, tc6393xb);
422 ret = platform_get_irq(dev, 0);
428 tc6393xb->iomem = iomem;
429 tc6393xb->irq_base = tcpd->irq_base;
431 tc6393xb->clk = clk_get(&dev->dev, "CLK_CK3P6MI");
432 if (IS_ERR(tc6393xb->clk)) {
433 ret = PTR_ERR(tc6393xb->clk);
437 rscr = &tc6393xb->rscr;
438 rscr->name = "tc6393xb-core";
439 rscr->start = iomem->start;
440 rscr->end = iomem->start + 0xff;
441 rscr->flags = IORESOURCE_MEM;
443 ret = request_resource(iomem, rscr);
445 goto err_request_scr;
447 tc6393xb->scr = ioremap(rscr->start, rscr->end - rscr->start + 1);
448 if (!tc6393xb->scr) {
453 ret = clk_enable(tc6393xb->clk);
457 ret = tcpd->enable(dev);
461 tc6393xb->suspend_state.fer = 0;
463 for (i = 0; i < 3; i++) {
464 tc6393xb->suspend_state.gpo_dsr[i] =
465 (tcpd->scr_gpo_dsr >> (8 * i)) & 0xff;
466 tc6393xb->suspend_state.gpo_doecr[i] =
467 (tcpd->scr_gpo_doecr >> (8 * i)) & 0xff;
470 tc6393xb->suspend_state.ccr = SCR_CCR_UNK1 |
473 ret = tc6393xb_hw_init(dev);
477 printk(KERN_INFO "Toshiba tc6393xb revision %d at 0x%08lx, irq %d\n",
478 tmio_ioread8(tc6393xb->scr + SCR_REVID),
479 (unsigned long) iomem->start, tc6393xb->irq);
481 tc6393xb->gpio.base = -1;
483 if (tcpd->gpio_base >= 0) {
484 ret = tc6393xb_register_gpio(tc6393xb, tcpd->gpio_base);
489 tc6393xb_attach_irq(dev);
491 tc6393xb_cells[TC6393XB_CELL_NAND].driver_data = tcpd->nand_data;
492 tc6393xb_cells[TC6393XB_CELL_NAND].platform_data =
493 &tc6393xb_cells[TC6393XB_CELL_NAND];
494 tc6393xb_cells[TC6393XB_CELL_NAND].data_size =
495 sizeof(tc6393xb_cells[TC6393XB_CELL_NAND]);
496 tc6393xb_cells[TC6393XB_CELL_MMC].platform_data =
497 &tc6393xb_cells[TC6393XB_CELL_MMC];
498 tc6393xb_cells[TC6393XB_CELL_MMC].data_size =
499 sizeof(tc6393xb_cells[TC6393XB_CELL_MMC]);
502 ret = mfd_add_devices(&dev->dev, dev->id,
503 tc6393xb_cells, ARRAY_SIZE(tc6393xb_cells),
504 iomem, tcpd->irq_base);
509 tc6393xb_detach_irq(dev);
512 if (tc6393xb->gpio.base != -1)
513 temp = gpiochip_remove(&tc6393xb->gpio);
517 clk_disable(tc6393xb->clk);
519 iounmap(tc6393xb->scr);
521 release_resource(&tc6393xb->rscr);
523 clk_put(tc6393xb->clk);
531 static int __devexit tc6393xb_remove(struct platform_device *dev)
533 struct tc6393xb_platform_data *tcpd = dev->dev.platform_data;
534 struct tc6393xb *tc6393xb = platform_get_drvdata(dev);
537 mfd_remove_devices(&dev->dev);
538 tc6393xb_detach_irq(dev);
540 if (tc6393xb->gpio.base != -1) {
541 ret = gpiochip_remove(&tc6393xb->gpio);
543 dev_err(&dev->dev, "Can't remove gpio chip: %d\n", ret);
548 ret = tcpd->disable(dev);
549 clk_disable(tc6393xb->clk);
550 iounmap(tc6393xb->scr);
551 release_resource(&tc6393xb->rscr);
552 platform_set_drvdata(dev, NULL);
553 clk_put(tc6393xb->clk);
560 static int tc6393xb_suspend(struct platform_device *dev, pm_message_t state)
562 struct tc6393xb_platform_data *tcpd = dev->dev.platform_data;
563 struct tc6393xb *tc6393xb = platform_get_drvdata(dev);
566 tc6393xb->suspend_state.ccr = ioread16(tc6393xb->scr + SCR_CCR);
567 tc6393xb->suspend_state.fer = ioread8(tc6393xb->scr + SCR_FER);
569 for (i = 0; i < 3; i++) {
570 tc6393xb->suspend_state.gpo_dsr[i] =
571 ioread8(tc6393xb->scr + SCR_GPO_DSR(i));
572 tc6393xb->suspend_state.gpo_doecr[i] =
573 ioread8(tc6393xb->scr + SCR_GPO_DOECR(i));
574 tc6393xb->suspend_state.gpi_bcr[i] =
575 ioread8(tc6393xb->scr + SCR_GPI_BCR(i));
577 ret = tcpd->suspend(dev);
578 clk_disable(tc6393xb->clk);
583 static int tc6393xb_resume(struct platform_device *dev)
585 struct tc6393xb_platform_data *tcpd = dev->dev.platform_data;
586 struct tc6393xb *tc6393xb = platform_get_drvdata(dev);
589 clk_enable(tc6393xb->clk);
591 ret = tcpd->resume(dev);
596 return tc6393xb_hw_init(dev);
599 #define tc6393xb_suspend NULL
600 #define tc6393xb_resume NULL
603 static struct platform_driver tc6393xb_driver = {
604 .probe = tc6393xb_probe,
605 .remove = __devexit_p(tc6393xb_remove),
606 .suspend = tc6393xb_suspend,
607 .resume = tc6393xb_resume,
611 .owner = THIS_MODULE,
615 static int __init tc6393xb_init(void)
617 return platform_driver_register(&tc6393xb_driver);
620 static void __exit tc6393xb_exit(void)
622 platform_driver_unregister(&tc6393xb_driver);
625 subsys_initcall(tc6393xb_init);
626 module_exit(tc6393xb_exit);
628 MODULE_LICENSE("GPL v2");
629 MODULE_AUTHOR("Ian Molton, Dmitry Baryshkov and Dirk Opfer");
630 MODULE_DESCRIPTION("tc6393xb Toshiba Mobile IO Controller");
631 MODULE_ALIAS("platform:tc6393xb");