Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Support code for the SCOOP interface found on various Sharp PDAs |
| 3 | * |
| 4 | * Copyright (c) 2004 Richard Purdie |
| 5 | * |
| 6 | * Based on code written by Sharp/Lineo for 2.4 kernels |
| 7 | * |
| 8 | * This program is free software; you can redistribute it and/or modify |
| 9 | * it under the terms of the GNU General Public License version 2 as |
| 10 | * published by the Free Software Foundation. |
| 11 | * |
| 12 | */ |
| 13 | |
| 14 | #include <linux/device.h> |
Tim Schmielau | 4e57b68 | 2005-10-30 15:03:48 -0800 | [diff] [blame] | 15 | #include <linux/string.h> |
Tim Schmielau | de25968 | 2006-01-08 01:02:05 -0800 | [diff] [blame] | 16 | #include <linux/slab.h> |
Russell King | d052d1b | 2005-10-29 19:07:23 +0100 | [diff] [blame] | 17 | #include <linux/platform_device.h> |
Russell King | fced80c | 2008-09-06 12:10:45 +0100 | [diff] [blame] | 18 | #include <linux/io.h> |
Dmitry Baryshkov | b43a9e6 | 2008-04-10 13:36:53 +0100 | [diff] [blame] | 19 | #include <asm/gpio.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | #include <asm/hardware/scoop.h> |
| 21 | |
Richard Purdie | 7ea3bbb | 2006-04-18 23:18:53 +0100 | [diff] [blame] | 22 | /* PCMCIA to Scoop linkage |
| 23 | |
| 24 | There is no easy way to link multiple scoop devices into one |
| 25 | single entity for the pxa2xx_pcmcia device so this structure |
| 26 | is used which is setup by the platform code. |
| 27 | |
| 28 | This file is never modular so this symbol is always |
| 29 | accessile to the board support files. |
| 30 | */ |
| 31 | struct scoop_pcmcia_config *platform_scoop_config; |
| 32 | EXPORT_SYMBOL(platform_scoop_config); |
| 33 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | struct scoop_dev { |
Dmitry Baryshkov | 2f8c514 | 2008-04-09 22:43:37 +0100 | [diff] [blame] | 35 | void __iomem *base; |
Dmitry Baryshkov | b43a9e6 | 2008-04-10 13:36:53 +0100 | [diff] [blame] | 36 | struct gpio_chip gpio; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | spinlock_t scoop_lock; |
Richard Purdie | 7c39898 | 2005-10-10 10:20:06 +0100 | [diff] [blame] | 38 | unsigned short suspend_clr; |
| 39 | unsigned short suspend_set; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | u32 scoop_gpwr; |
| 41 | }; |
| 42 | |
| 43 | void reset_scoop(struct device *dev) |
| 44 | { |
| 45 | struct scoop_dev *sdev = dev_get_drvdata(dev); |
| 46 | |
H Hartley Sweeten | aa88bc0 | 2010-08-06 09:36:42 -0700 | [diff] [blame] | 47 | iowrite16(0x0100, sdev->base + SCOOP_MCR); /* 00 */ |
| 48 | iowrite16(0x0000, sdev->base + SCOOP_CDR); /* 04 */ |
| 49 | iowrite16(0x0000, sdev->base + SCOOP_CCR); /* 10 */ |
| 50 | iowrite16(0x0000, sdev->base + SCOOP_IMR); /* 18 */ |
| 51 | iowrite16(0x00FF, sdev->base + SCOOP_IRM); /* 14 */ |
| 52 | iowrite16(0x0000, sdev->base + SCOOP_ISR); /* 1C */ |
Dmitry Baryshkov | c353faa | 2008-04-09 23:05:09 +0100 | [diff] [blame] | 53 | iowrite16(0x0000, sdev->base + SCOOP_IRM); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | } |
| 55 | |
Dmitry Baryshkov | b43a9e6 | 2008-04-10 13:36:53 +0100 | [diff] [blame] | 56 | static void __scoop_gpio_set(struct scoop_dev *sdev, |
| 57 | unsigned offset, int value) |
| 58 | { |
| 59 | unsigned short gpwr; |
| 60 | |
| 61 | gpwr = ioread16(sdev->base + SCOOP_GPWR); |
| 62 | if (value) |
| 63 | gpwr |= 1 << (offset + 1); |
| 64 | else |
| 65 | gpwr &= ~(1 << (offset + 1)); |
| 66 | iowrite16(gpwr, sdev->base + SCOOP_GPWR); |
| 67 | } |
| 68 | |
| 69 | static void scoop_gpio_set(struct gpio_chip *chip, unsigned offset, int value) |
| 70 | { |
| 71 | struct scoop_dev *sdev = container_of(chip, struct scoop_dev, gpio); |
| 72 | unsigned long flags; |
| 73 | |
| 74 | spin_lock_irqsave(&sdev->scoop_lock, flags); |
| 75 | |
| 76 | __scoop_gpio_set(sdev, offset, value); |
| 77 | |
| 78 | spin_unlock_irqrestore(&sdev->scoop_lock, flags); |
| 79 | } |
| 80 | |
| 81 | static int scoop_gpio_get(struct gpio_chip *chip, unsigned offset) |
| 82 | { |
| 83 | struct scoop_dev *sdev = container_of(chip, struct scoop_dev, gpio); |
| 84 | |
André Goddard Rosa | af901ca | 2009-11-14 13:09:05 -0200 | [diff] [blame] | 85 | /* XXX: I'm unsure, but it seems so */ |
Dmitry Baryshkov | b43a9e6 | 2008-04-10 13:36:53 +0100 | [diff] [blame] | 86 | return ioread16(sdev->base + SCOOP_GPRR) & (1 << (offset + 1)); |
| 87 | } |
| 88 | |
| 89 | static int scoop_gpio_direction_input(struct gpio_chip *chip, |
| 90 | unsigned offset) |
| 91 | { |
| 92 | struct scoop_dev *sdev = container_of(chip, struct scoop_dev, gpio); |
| 93 | unsigned long flags; |
| 94 | unsigned short gpcr; |
| 95 | |
| 96 | spin_lock_irqsave(&sdev->scoop_lock, flags); |
| 97 | |
| 98 | gpcr = ioread16(sdev->base + SCOOP_GPCR); |
| 99 | gpcr &= ~(1 << (offset + 1)); |
| 100 | iowrite16(gpcr, sdev->base + SCOOP_GPCR); |
| 101 | |
| 102 | spin_unlock_irqrestore(&sdev->scoop_lock, flags); |
| 103 | |
| 104 | return 0; |
| 105 | } |
| 106 | |
| 107 | static int scoop_gpio_direction_output(struct gpio_chip *chip, |
| 108 | unsigned offset, int value) |
| 109 | { |
| 110 | struct scoop_dev *sdev = container_of(chip, struct scoop_dev, gpio); |
| 111 | unsigned long flags; |
| 112 | unsigned short gpcr; |
| 113 | |
| 114 | spin_lock_irqsave(&sdev->scoop_lock, flags); |
| 115 | |
| 116 | __scoop_gpio_set(sdev, offset, value); |
| 117 | |
| 118 | gpcr = ioread16(sdev->base + SCOOP_GPCR); |
| 119 | gpcr |= 1 << (offset + 1); |
| 120 | iowrite16(gpcr, sdev->base + SCOOP_GPCR); |
| 121 | |
| 122 | spin_unlock_irqrestore(&sdev->scoop_lock, flags); |
| 123 | |
| 124 | return 0; |
| 125 | } |
| 126 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | unsigned short read_scoop_reg(struct device *dev, unsigned short reg) |
| 128 | { |
| 129 | struct scoop_dev *sdev = dev_get_drvdata(dev); |
Dmitry Baryshkov | c353faa | 2008-04-09 23:05:09 +0100 | [diff] [blame] | 130 | return ioread16(sdev->base + reg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | } |
| 132 | |
| 133 | void write_scoop_reg(struct device *dev, unsigned short reg, unsigned short data) |
| 134 | { |
| 135 | struct scoop_dev *sdev = dev_get_drvdata(dev); |
Dmitry Baryshkov | c353faa | 2008-04-09 23:05:09 +0100 | [diff] [blame] | 136 | iowrite16(data, sdev->base + reg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | } |
| 138 | |
| 139 | EXPORT_SYMBOL(reset_scoop); |
| 140 | EXPORT_SYMBOL(read_scoop_reg); |
| 141 | EXPORT_SYMBOL(write_scoop_reg); |
| 142 | |
Stefan Schmidt | cfab57e | 2010-02-16 22:41:52 +0100 | [diff] [blame] | 143 | #ifdef CONFIG_PM |
Richard Purdie | 7c39898 | 2005-10-10 10:20:06 +0100 | [diff] [blame] | 144 | static void check_scoop_reg(struct scoop_dev *sdev) |
| 145 | { |
| 146 | unsigned short mcr; |
| 147 | |
Dmitry Baryshkov | c353faa | 2008-04-09 23:05:09 +0100 | [diff] [blame] | 148 | mcr = ioread16(sdev->base + SCOOP_MCR); |
Richard Purdie | 7c39898 | 2005-10-10 10:20:06 +0100 | [diff] [blame] | 149 | if ((mcr & 0x100) == 0) |
Dmitry Baryshkov | c353faa | 2008-04-09 23:05:09 +0100 | [diff] [blame] | 150 | iowrite16(0x0101, sdev->base + SCOOP_MCR); |
Richard Purdie | 7c39898 | 2005-10-10 10:20:06 +0100 | [diff] [blame] | 151 | } |
| 152 | |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 153 | static int scoop_suspend(struct platform_device *dev, pm_message_t state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | { |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 155 | struct scoop_dev *sdev = platform_get_drvdata(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | |
Russell King | 9480e30 | 2005-10-28 09:52:56 -0700 | [diff] [blame] | 157 | check_scoop_reg(sdev); |
Dmitry Baryshkov | c353faa | 2008-04-09 23:05:09 +0100 | [diff] [blame] | 158 | sdev->scoop_gpwr = ioread16(sdev->base + SCOOP_GPWR); |
| 159 | iowrite16((sdev->scoop_gpwr & ~sdev->suspend_clr) | sdev->suspend_set, sdev->base + SCOOP_GPWR); |
Russell King | 9480e30 | 2005-10-28 09:52:56 -0700 | [diff] [blame] | 160 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 | return 0; |
| 162 | } |
| 163 | |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 164 | static int scoop_resume(struct platform_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | { |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 166 | struct scoop_dev *sdev = platform_get_drvdata(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | |
Russell King | 9480e30 | 2005-10-28 09:52:56 -0700 | [diff] [blame] | 168 | check_scoop_reg(sdev); |
Dmitry Baryshkov | c353faa | 2008-04-09 23:05:09 +0100 | [diff] [blame] | 169 | iowrite16(sdev->scoop_gpwr, sdev->base + SCOOP_GPWR); |
Russell King | 9480e30 | 2005-10-28 09:52:56 -0700 | [diff] [blame] | 170 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | return 0; |
| 172 | } |
| 173 | #else |
| 174 | #define scoop_suspend NULL |
| 175 | #define scoop_resume NULL |
| 176 | #endif |
| 177 | |
Dmitry Baryshkov | 2f8c514 | 2008-04-09 22:43:37 +0100 | [diff] [blame] | 178 | static int __devinit scoop_probe(struct platform_device *pdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | { |
| 180 | struct scoop_dev *devptr; |
| 181 | struct scoop_config *inf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 182 | struct resource *mem = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
Dmitry Baryshkov | b43a9e6 | 2008-04-10 13:36:53 +0100 | [diff] [blame] | 183 | int ret; |
| 184 | int temp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 185 | |
| 186 | if (!mem) |
| 187 | return -EINVAL; |
| 188 | |
Russell King | d2a02b9 | 2006-03-20 19:46:41 +0000 | [diff] [blame] | 189 | devptr = kzalloc(sizeof(struct scoop_dev), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | if (!devptr) |
Russell King | d2a02b9 | 2006-03-20 19:46:41 +0000 | [diff] [blame] | 191 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 193 | spin_lock_init(&devptr->scoop_lock); |
| 194 | |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 195 | inf = pdev->dev.platform_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 | devptr->base = ioremap(mem->start, mem->end - mem->start + 1); |
| 197 | |
| 198 | if (!devptr->base) { |
Dmitry Baryshkov | b43a9e6 | 2008-04-10 13:36:53 +0100 | [diff] [blame] | 199 | ret = -ENOMEM; |
| 200 | goto err_ioremap; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | } |
| 202 | |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 203 | platform_set_drvdata(pdev, devptr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | |
Dmitry Baryshkov | 2f8c514 | 2008-04-09 22:43:37 +0100 | [diff] [blame] | 205 | printk("Sharp Scoop Device found at 0x%08x -> 0x%8p\n",(unsigned int)mem->start, devptr->base); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 | |
Dmitry Baryshkov | c353faa | 2008-04-09 23:05:09 +0100 | [diff] [blame] | 207 | iowrite16(0x0140, devptr->base + SCOOP_MCR); |
Pavel Machek | c35bf4a | 2005-11-12 20:25:25 +0000 | [diff] [blame] | 208 | reset_scoop(&pdev->dev); |
Dmitry Baryshkov | c353faa | 2008-04-09 23:05:09 +0100 | [diff] [blame] | 209 | iowrite16(0x0000, devptr->base + SCOOP_CPR); |
| 210 | iowrite16(inf->io_dir & 0xffff, devptr->base + SCOOP_GPCR); |
| 211 | iowrite16(inf->io_out & 0xffff, devptr->base + SCOOP_GPWR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | |
Richard Purdie | 7c39898 | 2005-10-10 10:20:06 +0100 | [diff] [blame] | 213 | devptr->suspend_clr = inf->suspend_clr; |
| 214 | devptr->suspend_set = inf->suspend_set; |
| 215 | |
Dmitry Baryshkov | b43a9e6 | 2008-04-10 13:36:53 +0100 | [diff] [blame] | 216 | devptr->gpio.base = -1; |
| 217 | |
| 218 | if (inf->gpio_base != 0) { |
Kay Sievers | 3f97870 | 2008-05-30 17:42:11 +0200 | [diff] [blame] | 219 | devptr->gpio.label = dev_name(&pdev->dev); |
Dmitry Baryshkov | b43a9e6 | 2008-04-10 13:36:53 +0100 | [diff] [blame] | 220 | devptr->gpio.base = inf->gpio_base; |
| 221 | devptr->gpio.ngpio = 12; /* PA11 = 0, PA12 = 1, etc. up to PA22 = 11 */ |
| 222 | devptr->gpio.set = scoop_gpio_set; |
| 223 | devptr->gpio.get = scoop_gpio_get; |
| 224 | devptr->gpio.direction_input = scoop_gpio_direction_input; |
| 225 | devptr->gpio.direction_output = scoop_gpio_direction_output; |
| 226 | |
| 227 | ret = gpiochip_add(&devptr->gpio); |
| 228 | if (ret) |
| 229 | goto err_gpio; |
| 230 | } |
| 231 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 232 | return 0; |
Dmitry Baryshkov | b43a9e6 | 2008-04-10 13:36:53 +0100 | [diff] [blame] | 233 | |
| 234 | if (devptr->gpio.base != -1) |
| 235 | temp = gpiochip_remove(&devptr->gpio); |
| 236 | err_gpio: |
| 237 | platform_set_drvdata(pdev, NULL); |
| 238 | err_ioremap: |
| 239 | iounmap(devptr->base); |
| 240 | kfree(devptr); |
| 241 | |
| 242 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 243 | } |
| 244 | |
Dmitry Baryshkov | 2f8c514 | 2008-04-09 22:43:37 +0100 | [diff] [blame] | 245 | static int __devexit scoop_remove(struct platform_device *pdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 246 | { |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 247 | struct scoop_dev *sdev = platform_get_drvdata(pdev); |
Dmitry Baryshkov | b43a9e6 | 2008-04-10 13:36:53 +0100 | [diff] [blame] | 248 | int ret; |
| 249 | |
| 250 | if (!sdev) |
| 251 | return -EINVAL; |
| 252 | |
| 253 | if (sdev->gpio.base != -1) { |
| 254 | ret = gpiochip_remove(&sdev->gpio); |
| 255 | if (ret) { |
| 256 | dev_err(&pdev->dev, "Can't remove gpio chip: %d\n", ret); |
| 257 | return ret; |
| 258 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 259 | } |
Dmitry Baryshkov | b43a9e6 | 2008-04-10 13:36:53 +0100 | [diff] [blame] | 260 | |
| 261 | platform_set_drvdata(pdev, NULL); |
| 262 | iounmap(sdev->base); |
| 263 | kfree(sdev); |
| 264 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 265 | return 0; |
| 266 | } |
| 267 | |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 268 | static struct platform_driver scoop_driver = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 269 | .probe = scoop_probe, |
Dmitry Baryshkov | 2f8c514 | 2008-04-09 22:43:37 +0100 | [diff] [blame] | 270 | .remove = __devexit_p(scoop_remove), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 271 | .suspend = scoop_suspend, |
| 272 | .resume = scoop_resume, |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 273 | .driver = { |
| 274 | .name = "sharp-scoop", |
| 275 | }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | }; |
| 277 | |
Dmitry Baryshkov | 2f8c514 | 2008-04-09 22:43:37 +0100 | [diff] [blame] | 278 | static int __init scoop_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 279 | { |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 280 | return platform_driver_register(&scoop_driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 281 | } |
| 282 | |
| 283 | subsys_initcall(scoop_init); |