Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * linux/arch/arm/common/locomo.c |
| 3 | * |
| 4 | * Sharp LoCoMo support |
| 5 | * |
| 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. |
| 9 | * |
| 10 | * This file contains all generic LoCoMo support. |
| 11 | * |
| 12 | * All initialization functions provided here are intended to be called |
| 13 | * from machine specific code with proper arguments when required. |
| 14 | * |
| 15 | * Based on sa1111.c |
| 16 | */ |
| 17 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #include <linux/module.h> |
| 19 | #include <linux/init.h> |
| 20 | #include <linux/kernel.h> |
| 21 | #include <linux/delay.h> |
| 22 | #include <linux/errno.h> |
| 23 | #include <linux/ioport.h> |
Russell King | d052d1b | 2005-10-29 19:07:23 +0100 | [diff] [blame] | 24 | #include <linux/platform_device.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | #include <linux/slab.h> |
| 26 | #include <linux/spinlock.h> |
| 27 | |
| 28 | #include <asm/hardware.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | #include <asm/io.h> |
| 30 | #include <asm/irq.h> |
| 31 | #include <asm/mach/irq.h> |
| 32 | |
| 33 | #include <asm/hardware/locomo.h> |
| 34 | |
| 35 | /* M62332 output channel selection */ |
| 36 | #define M62332_EVR_CH 1 /* M62332 volume channel number */ |
| 37 | /* 0 : CH.1 , 1 : CH. 2 */ |
| 38 | /* DAC send data */ |
| 39 | #define M62332_SLAVE_ADDR 0x4e /* Slave address */ |
| 40 | #define M62332_W_BIT 0x00 /* W bit (0 only) */ |
| 41 | #define M62332_SUB_ADDR 0x00 /* Sub address */ |
| 42 | #define M62332_A_BIT 0x00 /* A bit (0 only) */ |
| 43 | |
| 44 | /* DAC setup and hold times (expressed in us) */ |
| 45 | #define DAC_BUS_FREE_TIME 5 /* 4.7 us */ |
| 46 | #define DAC_START_SETUP_TIME 5 /* 4.7 us */ |
| 47 | #define DAC_STOP_SETUP_TIME 4 /* 4.0 us */ |
| 48 | #define DAC_START_HOLD_TIME 5 /* 4.7 us */ |
| 49 | #define DAC_SCL_LOW_HOLD_TIME 5 /* 4.7 us */ |
| 50 | #define DAC_SCL_HIGH_HOLD_TIME 4 /* 4.0 us */ |
| 51 | #define DAC_DATA_SETUP_TIME 1 /* 250 ns */ |
| 52 | #define DAC_DATA_HOLD_TIME 1 /* 300 ns */ |
| 53 | #define DAC_LOW_SETUP_TIME 1 /* 300 ns */ |
| 54 | #define DAC_HIGH_SETUP_TIME 1 /* 1000 ns */ |
| 55 | |
| 56 | /* the following is the overall data for the locomo chip */ |
| 57 | struct locomo { |
| 58 | struct device *dev; |
| 59 | unsigned long phys; |
| 60 | unsigned int irq; |
| 61 | spinlock_t lock; |
Russell King | 5481536 | 2006-03-15 15:43:04 +0000 | [diff] [blame] | 62 | void __iomem *base; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | }; |
| 64 | |
| 65 | struct locomo_dev_info { |
| 66 | unsigned long offset; |
| 67 | unsigned long length; |
| 68 | unsigned int devid; |
| 69 | unsigned int irq[1]; |
| 70 | const char * name; |
| 71 | }; |
| 72 | |
| 73 | /* All the locomo devices. If offset is non-zero, the mapbase for the |
| 74 | * locomo_dev will be set to the chip base plus offset. If offset is |
| 75 | * zero, then the mapbase for the locomo_dev will be set to zero. An |
| 76 | * offset of zero means the device only uses GPIOs or other helper |
| 77 | * functions inside this file */ |
| 78 | static struct locomo_dev_info locomo_devices[] = { |
| 79 | { |
| 80 | .devid = LOCOMO_DEVID_KEYBOARD, |
| 81 | .irq = { |
| 82 | IRQ_LOCOMO_KEY, |
| 83 | }, |
| 84 | .name = "locomo-keyboard", |
| 85 | .offset = LOCOMO_KEYBOARD, |
| 86 | .length = 16, |
| 87 | }, |
| 88 | { |
| 89 | .devid = LOCOMO_DEVID_FRONTLIGHT, |
| 90 | .irq = {}, |
| 91 | .name = "locomo-frontlight", |
| 92 | .offset = LOCOMO_FRONTLIGHT, |
| 93 | .length = 8, |
| 94 | |
| 95 | }, |
| 96 | { |
| 97 | .devid = LOCOMO_DEVID_BACKLIGHT, |
| 98 | .irq = {}, |
| 99 | .name = "locomo-backlight", |
| 100 | .offset = LOCOMO_BACKLIGHT, |
| 101 | .length = 8, |
| 102 | }, |
| 103 | { |
| 104 | .devid = LOCOMO_DEVID_AUDIO, |
| 105 | .irq = {}, |
| 106 | .name = "locomo-audio", |
| 107 | .offset = LOCOMO_AUDIO, |
| 108 | .length = 4, |
| 109 | }, |
| 110 | { |
| 111 | .devid = LOCOMO_DEVID_LED, |
| 112 | .irq = {}, |
| 113 | .name = "locomo-led", |
| 114 | .offset = LOCOMO_LED, |
| 115 | .length = 8, |
| 116 | }, |
| 117 | { |
| 118 | .devid = LOCOMO_DEVID_UART, |
| 119 | .irq = {}, |
| 120 | .name = "locomo-uart", |
| 121 | .offset = 0, |
| 122 | .length = 0, |
| 123 | }, |
Dirk Opfer | a2025e7 | 2006-09-25 22:41:47 +0100 | [diff] [blame^] | 124 | { |
| 125 | .devid = LOCOMO_DEVID_SPI, |
| 126 | .irq = {}, |
| 127 | .name = "locomo-spi", |
| 128 | .offset = LOCOMO_SPI, |
| 129 | .length = 0x30, |
| 130 | }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | }; |
| 132 | |
| 133 | |
| 134 | /** LoCoMo interrupt handling stuff. |
| 135 | * NOTE: LoCoMo has a 1 to many mapping on all of its IRQs. |
| 136 | * that is, there is only one real hardware interrupt |
| 137 | * we determine which interrupt it is by reading some IO memory. |
| 138 | * We have two levels of expansion, first in the handler for the |
| 139 | * hardware interrupt we generate an interrupt |
| 140 | * IRQ_LOCOMO_*_BASE and those handlers generate more interrupts |
| 141 | * |
| 142 | * hardware irq reads LOCOMO_ICR & 0x0f00 |
| 143 | * IRQ_LOCOMO_KEY_BASE |
| 144 | * IRQ_LOCOMO_GPIO_BASE |
| 145 | * IRQ_LOCOMO_LT_BASE |
| 146 | * IRQ_LOCOMO_SPI_BASE |
| 147 | * IRQ_LOCOMO_KEY_BASE reads LOCOMO_KIC & 0x0001 |
| 148 | * IRQ_LOCOMO_KEY |
| 149 | * IRQ_LOCOMO_GPIO_BASE reads LOCOMO_GIR & LOCOMO_GPD & 0xffff |
| 150 | * IRQ_LOCOMO_GPIO[0-15] |
| 151 | * IRQ_LOCOMO_LT_BASE reads LOCOMO_LTINT & 0x0001 |
| 152 | * IRQ_LOCOMO_LT |
| 153 | * IRQ_LOCOMO_SPI_BASE reads LOCOMO_SPIIR & 0x000F |
| 154 | * IRQ_LOCOMO_SPI_RFR |
| 155 | * IRQ_LOCOMO_SPI_RFW |
| 156 | * IRQ_LOCOMO_SPI_OVRN |
| 157 | * IRQ_LOCOMO_SPI_TEND |
| 158 | */ |
| 159 | |
| 160 | #define LOCOMO_IRQ_START (IRQ_LOCOMO_KEY_BASE) |
| 161 | #define LOCOMO_IRQ_KEY_START (IRQ_LOCOMO_KEY) |
| 162 | #define LOCOMO_IRQ_GPIO_START (IRQ_LOCOMO_GPIO0) |
| 163 | #define LOCOMO_IRQ_LT_START (IRQ_LOCOMO_LT) |
| 164 | #define LOCOMO_IRQ_SPI_START (IRQ_LOCOMO_SPI_RFR) |
| 165 | |
| 166 | static void locomo_handler(unsigned int irq, struct irqdesc *desc, |
| 167 | struct pt_regs *regs) |
| 168 | { |
| 169 | int req, i; |
| 170 | struct irqdesc *d; |
Russell King | 5481536 | 2006-03-15 15:43:04 +0000 | [diff] [blame] | 171 | void __iomem *mapbase = get_irq_chipdata(irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | |
| 173 | /* Acknowledge the parent IRQ */ |
| 174 | desc->chip->ack(irq); |
| 175 | |
| 176 | /* check why this interrupt was generated */ |
| 177 | req = locomo_readl(mapbase + LOCOMO_ICR) & 0x0f00; |
| 178 | |
| 179 | if (req) { |
| 180 | /* generate the next interrupt(s) */ |
| 181 | irq = LOCOMO_IRQ_START; |
| 182 | d = irq_desc + irq; |
| 183 | for (i = 0; i <= 3; i++, d++, irq++) { |
| 184 | if (req & (0x0100 << i)) { |
Russell King | 664399e | 2005-09-04 19:45:00 +0100 | [diff] [blame] | 185 | desc_handle_irq(irq, d, regs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | } |
| 187 | |
| 188 | } |
| 189 | } |
| 190 | } |
| 191 | |
| 192 | static void locomo_ack_irq(unsigned int irq) |
| 193 | { |
| 194 | } |
| 195 | |
| 196 | static void locomo_mask_irq(unsigned int irq) |
| 197 | { |
Russell King | 5481536 | 2006-03-15 15:43:04 +0000 | [diff] [blame] | 198 | void __iomem *mapbase = get_irq_chipdata(irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | unsigned int r; |
| 200 | r = locomo_readl(mapbase + LOCOMO_ICR); |
| 201 | r &= ~(0x0010 << (irq - LOCOMO_IRQ_START)); |
| 202 | locomo_writel(r, mapbase + LOCOMO_ICR); |
| 203 | } |
| 204 | |
| 205 | static void locomo_unmask_irq(unsigned int irq) |
| 206 | { |
Russell King | 5481536 | 2006-03-15 15:43:04 +0000 | [diff] [blame] | 207 | void __iomem *mapbase = get_irq_chipdata(irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | unsigned int r; |
| 209 | r = locomo_readl(mapbase + LOCOMO_ICR); |
| 210 | r |= (0x0010 << (irq - LOCOMO_IRQ_START)); |
| 211 | locomo_writel(r, mapbase + LOCOMO_ICR); |
| 212 | } |
| 213 | |
David Brownell | 38c677c | 2006-08-01 22:26:25 +0100 | [diff] [blame] | 214 | static struct irq_chip locomo_chip = { |
| 215 | .name = "LOCOMO", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | .ack = locomo_ack_irq, |
| 217 | .mask = locomo_mask_irq, |
| 218 | .unmask = locomo_unmask_irq, |
| 219 | }; |
| 220 | |
| 221 | static void locomo_key_handler(unsigned int irq, struct irqdesc *desc, |
| 222 | struct pt_regs *regs) |
| 223 | { |
| 224 | struct irqdesc *d; |
Russell King | 5481536 | 2006-03-15 15:43:04 +0000 | [diff] [blame] | 225 | void __iomem *mapbase = get_irq_chipdata(irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | |
| 227 | if (locomo_readl(mapbase + LOCOMO_KEYBOARD + LOCOMO_KIC) & 0x0001) { |
| 228 | d = irq_desc + LOCOMO_IRQ_KEY_START; |
Russell King | 664399e | 2005-09-04 19:45:00 +0100 | [diff] [blame] | 229 | desc_handle_irq(LOCOMO_IRQ_KEY_START, d, regs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | } |
| 231 | } |
| 232 | |
| 233 | static void locomo_key_ack_irq(unsigned int irq) |
| 234 | { |
Russell King | 5481536 | 2006-03-15 15:43:04 +0000 | [diff] [blame] | 235 | void __iomem *mapbase = get_irq_chipdata(irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | unsigned int r; |
| 237 | r = locomo_readl(mapbase + LOCOMO_KEYBOARD + LOCOMO_KIC); |
| 238 | r &= ~(0x0100 << (irq - LOCOMO_IRQ_KEY_START)); |
| 239 | locomo_writel(r, mapbase + LOCOMO_KEYBOARD + LOCOMO_KIC); |
| 240 | } |
| 241 | |
| 242 | static void locomo_key_mask_irq(unsigned int irq) |
| 243 | { |
Russell King | 5481536 | 2006-03-15 15:43:04 +0000 | [diff] [blame] | 244 | void __iomem *mapbase = get_irq_chipdata(irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 245 | unsigned int r; |
| 246 | r = locomo_readl(mapbase + LOCOMO_KEYBOARD + LOCOMO_KIC); |
| 247 | r &= ~(0x0010 << (irq - LOCOMO_IRQ_KEY_START)); |
| 248 | locomo_writel(r, mapbase + LOCOMO_KEYBOARD + LOCOMO_KIC); |
| 249 | } |
| 250 | |
| 251 | static void locomo_key_unmask_irq(unsigned int irq) |
| 252 | { |
Russell King | 5481536 | 2006-03-15 15:43:04 +0000 | [diff] [blame] | 253 | void __iomem *mapbase = get_irq_chipdata(irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 254 | unsigned int r; |
| 255 | r = locomo_readl(mapbase + LOCOMO_KEYBOARD + LOCOMO_KIC); |
| 256 | r |= (0x0010 << (irq - LOCOMO_IRQ_KEY_START)); |
| 257 | locomo_writel(r, mapbase + LOCOMO_KEYBOARD + LOCOMO_KIC); |
| 258 | } |
| 259 | |
David Brownell | 38c677c | 2006-08-01 22:26:25 +0100 | [diff] [blame] | 260 | static struct irq_chip locomo_key_chip = { |
| 261 | .name = "LOCOMO-key", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 262 | .ack = locomo_key_ack_irq, |
| 263 | .mask = locomo_key_mask_irq, |
| 264 | .unmask = locomo_key_unmask_irq, |
| 265 | }; |
| 266 | |
| 267 | static void locomo_gpio_handler(unsigned int irq, struct irqdesc *desc, |
| 268 | struct pt_regs *regs) |
| 269 | { |
| 270 | int req, i; |
| 271 | struct irqdesc *d; |
Russell King | 5481536 | 2006-03-15 15:43:04 +0000 | [diff] [blame] | 272 | void __iomem *mapbase = get_irq_chipdata(irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | |
| 274 | req = locomo_readl(mapbase + LOCOMO_GIR) & |
| 275 | locomo_readl(mapbase + LOCOMO_GPD) & |
| 276 | 0xffff; |
| 277 | |
| 278 | if (req) { |
| 279 | irq = LOCOMO_IRQ_GPIO_START; |
| 280 | d = irq_desc + LOCOMO_IRQ_GPIO_START; |
| 281 | for (i = 0; i <= 15; i++, irq++, d++) { |
| 282 | if (req & (0x0001 << i)) { |
Russell King | 664399e | 2005-09-04 19:45:00 +0100 | [diff] [blame] | 283 | desc_handle_irq(irq, d, regs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 284 | } |
| 285 | } |
| 286 | } |
| 287 | } |
| 288 | |
| 289 | static void locomo_gpio_ack_irq(unsigned int irq) |
| 290 | { |
Russell King | 5481536 | 2006-03-15 15:43:04 +0000 | [diff] [blame] | 291 | void __iomem *mapbase = get_irq_chipdata(irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 292 | unsigned int r; |
| 293 | r = locomo_readl(mapbase + LOCOMO_GWE); |
| 294 | r |= (0x0001 << (irq - LOCOMO_IRQ_GPIO_START)); |
| 295 | locomo_writel(r, mapbase + LOCOMO_GWE); |
| 296 | |
| 297 | r = locomo_readl(mapbase + LOCOMO_GIS); |
| 298 | r &= ~(0x0001 << (irq - LOCOMO_IRQ_GPIO_START)); |
| 299 | locomo_writel(r, mapbase + LOCOMO_GIS); |
| 300 | |
| 301 | r = locomo_readl(mapbase + LOCOMO_GWE); |
| 302 | r &= ~(0x0001 << (irq - LOCOMO_IRQ_GPIO_START)); |
| 303 | locomo_writel(r, mapbase + LOCOMO_GWE); |
| 304 | } |
| 305 | |
| 306 | static void locomo_gpio_mask_irq(unsigned int irq) |
| 307 | { |
Russell King | 5481536 | 2006-03-15 15:43:04 +0000 | [diff] [blame] | 308 | void __iomem *mapbase = get_irq_chipdata(irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 309 | unsigned int r; |
| 310 | r = locomo_readl(mapbase + LOCOMO_GIE); |
| 311 | r &= ~(0x0001 << (irq - LOCOMO_IRQ_GPIO_START)); |
| 312 | locomo_writel(r, mapbase + LOCOMO_GIE); |
| 313 | } |
| 314 | |
| 315 | static void locomo_gpio_unmask_irq(unsigned int irq) |
| 316 | { |
Russell King | 5481536 | 2006-03-15 15:43:04 +0000 | [diff] [blame] | 317 | void __iomem *mapbase = get_irq_chipdata(irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 318 | unsigned int r; |
| 319 | r = locomo_readl(mapbase + LOCOMO_GIE); |
| 320 | r |= (0x0001 << (irq - LOCOMO_IRQ_GPIO_START)); |
| 321 | locomo_writel(r, mapbase + LOCOMO_GIE); |
| 322 | } |
| 323 | |
David Brownell | 38c677c | 2006-08-01 22:26:25 +0100 | [diff] [blame] | 324 | static struct irq_chip locomo_gpio_chip = { |
| 325 | .name = "LOCOMO-gpio", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 326 | .ack = locomo_gpio_ack_irq, |
| 327 | .mask = locomo_gpio_mask_irq, |
| 328 | .unmask = locomo_gpio_unmask_irq, |
| 329 | }; |
| 330 | |
| 331 | static void locomo_lt_handler(unsigned int irq, struct irqdesc *desc, |
| 332 | struct pt_regs *regs) |
| 333 | { |
| 334 | struct irqdesc *d; |
Russell King | 5481536 | 2006-03-15 15:43:04 +0000 | [diff] [blame] | 335 | void __iomem *mapbase = get_irq_chipdata(irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 336 | |
| 337 | if (locomo_readl(mapbase + LOCOMO_LTINT) & 0x0001) { |
| 338 | d = irq_desc + LOCOMO_IRQ_LT_START; |
Russell King | 664399e | 2005-09-04 19:45:00 +0100 | [diff] [blame] | 339 | desc_handle_irq(LOCOMO_IRQ_LT_START, d, regs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 340 | } |
| 341 | } |
| 342 | |
| 343 | static void locomo_lt_ack_irq(unsigned int irq) |
| 344 | { |
Russell King | 5481536 | 2006-03-15 15:43:04 +0000 | [diff] [blame] | 345 | void __iomem *mapbase = get_irq_chipdata(irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 346 | unsigned int r; |
| 347 | r = locomo_readl(mapbase + LOCOMO_LTINT); |
| 348 | r &= ~(0x0100 << (irq - LOCOMO_IRQ_LT_START)); |
| 349 | locomo_writel(r, mapbase + LOCOMO_LTINT); |
| 350 | } |
| 351 | |
| 352 | static void locomo_lt_mask_irq(unsigned int irq) |
| 353 | { |
Russell King | 5481536 | 2006-03-15 15:43:04 +0000 | [diff] [blame] | 354 | void __iomem *mapbase = get_irq_chipdata(irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 355 | unsigned int r; |
| 356 | r = locomo_readl(mapbase + LOCOMO_LTINT); |
| 357 | r &= ~(0x0010 << (irq - LOCOMO_IRQ_LT_START)); |
| 358 | locomo_writel(r, mapbase + LOCOMO_LTINT); |
| 359 | } |
| 360 | |
| 361 | static void locomo_lt_unmask_irq(unsigned int irq) |
| 362 | { |
Russell King | 5481536 | 2006-03-15 15:43:04 +0000 | [diff] [blame] | 363 | void __iomem *mapbase = get_irq_chipdata(irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 364 | unsigned int r; |
| 365 | r = locomo_readl(mapbase + LOCOMO_LTINT); |
| 366 | r |= (0x0010 << (irq - LOCOMO_IRQ_LT_START)); |
| 367 | locomo_writel(r, mapbase + LOCOMO_LTINT); |
| 368 | } |
| 369 | |
David Brownell | 38c677c | 2006-08-01 22:26:25 +0100 | [diff] [blame] | 370 | static struct irq_chip locomo_lt_chip = { |
| 371 | .name = "LOCOMO-lt", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 372 | .ack = locomo_lt_ack_irq, |
| 373 | .mask = locomo_lt_mask_irq, |
| 374 | .unmask = locomo_lt_unmask_irq, |
| 375 | }; |
| 376 | |
| 377 | static void locomo_spi_handler(unsigned int irq, struct irqdesc *desc, |
| 378 | struct pt_regs *regs) |
| 379 | { |
| 380 | int req, i; |
| 381 | struct irqdesc *d; |
Russell King | 5481536 | 2006-03-15 15:43:04 +0000 | [diff] [blame] | 382 | void __iomem *mapbase = get_irq_chipdata(irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 383 | |
Dirk Opfer | a2025e7 | 2006-09-25 22:41:47 +0100 | [diff] [blame^] | 384 | req = locomo_readl(mapbase + LOCOMO_SPI + LOCOMO_SPIIR) & 0x000F; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 385 | if (req) { |
| 386 | irq = LOCOMO_IRQ_SPI_START; |
| 387 | d = irq_desc + irq; |
| 388 | |
| 389 | for (i = 0; i <= 3; i++, irq++, d++) { |
| 390 | if (req & (0x0001 << i)) { |
Russell King | 664399e | 2005-09-04 19:45:00 +0100 | [diff] [blame] | 391 | desc_handle_irq(irq, d, regs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 392 | } |
| 393 | } |
| 394 | } |
| 395 | } |
| 396 | |
| 397 | static void locomo_spi_ack_irq(unsigned int irq) |
| 398 | { |
Russell King | 5481536 | 2006-03-15 15:43:04 +0000 | [diff] [blame] | 399 | void __iomem *mapbase = get_irq_chipdata(irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 400 | unsigned int r; |
Dirk Opfer | a2025e7 | 2006-09-25 22:41:47 +0100 | [diff] [blame^] | 401 | r = locomo_readl(mapbase + LOCOMO_SPI + LOCOMO_SPIWE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 402 | r |= (0x0001 << (irq - LOCOMO_IRQ_SPI_START)); |
Dirk Opfer | a2025e7 | 2006-09-25 22:41:47 +0100 | [diff] [blame^] | 403 | locomo_writel(r, mapbase + LOCOMO_SPI + LOCOMO_SPIWE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 404 | |
Dirk Opfer | a2025e7 | 2006-09-25 22:41:47 +0100 | [diff] [blame^] | 405 | r = locomo_readl(mapbase + LOCOMO_SPI + LOCOMO_SPIIS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 406 | r &= ~(0x0001 << (irq - LOCOMO_IRQ_SPI_START)); |
Dirk Opfer | a2025e7 | 2006-09-25 22:41:47 +0100 | [diff] [blame^] | 407 | locomo_writel(r, mapbase + LOCOMO_SPI + LOCOMO_SPIIS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 408 | |
Dirk Opfer | a2025e7 | 2006-09-25 22:41:47 +0100 | [diff] [blame^] | 409 | r = locomo_readl(mapbase + LOCOMO_SPI + LOCOMO_SPIWE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 410 | r &= ~(0x0001 << (irq - LOCOMO_IRQ_SPI_START)); |
Dirk Opfer | a2025e7 | 2006-09-25 22:41:47 +0100 | [diff] [blame^] | 411 | locomo_writel(r, mapbase + LOCOMO_SPI + LOCOMO_SPIWE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 412 | } |
| 413 | |
| 414 | static void locomo_spi_mask_irq(unsigned int irq) |
| 415 | { |
Russell King | 5481536 | 2006-03-15 15:43:04 +0000 | [diff] [blame] | 416 | void __iomem *mapbase = get_irq_chipdata(irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 417 | unsigned int r; |
Dirk Opfer | a2025e7 | 2006-09-25 22:41:47 +0100 | [diff] [blame^] | 418 | r = locomo_readl(mapbase + LOCOMO_SPI + LOCOMO_SPIIE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 419 | r &= ~(0x0001 << (irq - LOCOMO_IRQ_SPI_START)); |
Dirk Opfer | a2025e7 | 2006-09-25 22:41:47 +0100 | [diff] [blame^] | 420 | locomo_writel(r, mapbase + LOCOMO_SPI + LOCOMO_SPIIE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 421 | } |
| 422 | |
| 423 | static void locomo_spi_unmask_irq(unsigned int irq) |
| 424 | { |
Russell King | 5481536 | 2006-03-15 15:43:04 +0000 | [diff] [blame] | 425 | void __iomem *mapbase = get_irq_chipdata(irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 426 | unsigned int r; |
Dirk Opfer | a2025e7 | 2006-09-25 22:41:47 +0100 | [diff] [blame^] | 427 | r = locomo_readl(mapbase + LOCOMO_SPI + LOCOMO_SPIIE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 428 | r |= (0x0001 << (irq - LOCOMO_IRQ_SPI_START)); |
Dirk Opfer | a2025e7 | 2006-09-25 22:41:47 +0100 | [diff] [blame^] | 429 | locomo_writel(r, mapbase + LOCOMO_SPI + LOCOMO_SPIIE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 430 | } |
| 431 | |
David Brownell | 38c677c | 2006-08-01 22:26:25 +0100 | [diff] [blame] | 432 | static struct irq_chip locomo_spi_chip = { |
| 433 | .name = "LOCOMO-spi", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 434 | .ack = locomo_spi_ack_irq, |
| 435 | .mask = locomo_spi_mask_irq, |
| 436 | .unmask = locomo_spi_unmask_irq, |
| 437 | }; |
| 438 | |
| 439 | static void locomo_setup_irq(struct locomo *lchip) |
| 440 | { |
| 441 | int irq; |
Russell King | 5481536 | 2006-03-15 15:43:04 +0000 | [diff] [blame] | 442 | void __iomem *irqbase = lchip->base; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 443 | |
| 444 | /* |
| 445 | * Install handler for IRQ_LOCOMO_HW. |
| 446 | */ |
| 447 | set_irq_type(lchip->irq, IRQT_FALLING); |
| 448 | set_irq_chipdata(lchip->irq, irqbase); |
| 449 | set_irq_chained_handler(lchip->irq, locomo_handler); |
| 450 | |
| 451 | /* Install handlers for IRQ_LOCOMO_*_BASE */ |
| 452 | set_irq_chip(IRQ_LOCOMO_KEY_BASE, &locomo_chip); |
| 453 | set_irq_chipdata(IRQ_LOCOMO_KEY_BASE, irqbase); |
| 454 | set_irq_chained_handler(IRQ_LOCOMO_KEY_BASE, locomo_key_handler); |
| 455 | set_irq_flags(IRQ_LOCOMO_KEY_BASE, IRQF_VALID | IRQF_PROBE); |
| 456 | |
| 457 | set_irq_chip(IRQ_LOCOMO_GPIO_BASE, &locomo_chip); |
| 458 | set_irq_chipdata(IRQ_LOCOMO_GPIO_BASE, irqbase); |
| 459 | set_irq_chained_handler(IRQ_LOCOMO_GPIO_BASE, locomo_gpio_handler); |
| 460 | set_irq_flags(IRQ_LOCOMO_GPIO_BASE, IRQF_VALID | IRQF_PROBE); |
| 461 | |
| 462 | set_irq_chip(IRQ_LOCOMO_LT_BASE, &locomo_chip); |
| 463 | set_irq_chipdata(IRQ_LOCOMO_LT_BASE, irqbase); |
| 464 | set_irq_chained_handler(IRQ_LOCOMO_LT_BASE, locomo_lt_handler); |
| 465 | set_irq_flags(IRQ_LOCOMO_LT_BASE, IRQF_VALID | IRQF_PROBE); |
| 466 | |
| 467 | set_irq_chip(IRQ_LOCOMO_SPI_BASE, &locomo_chip); |
| 468 | set_irq_chipdata(IRQ_LOCOMO_SPI_BASE, irqbase); |
| 469 | set_irq_chained_handler(IRQ_LOCOMO_SPI_BASE, locomo_spi_handler); |
| 470 | set_irq_flags(IRQ_LOCOMO_SPI_BASE, IRQF_VALID | IRQF_PROBE); |
| 471 | |
| 472 | /* install handlers for IRQ_LOCOMO_KEY_BASE generated interrupts */ |
| 473 | set_irq_chip(LOCOMO_IRQ_KEY_START, &locomo_key_chip); |
| 474 | set_irq_chipdata(LOCOMO_IRQ_KEY_START, irqbase); |
| 475 | set_irq_handler(LOCOMO_IRQ_KEY_START, do_edge_IRQ); |
| 476 | set_irq_flags(LOCOMO_IRQ_KEY_START, IRQF_VALID | IRQF_PROBE); |
| 477 | |
| 478 | /* install handlers for IRQ_LOCOMO_GPIO_BASE generated interrupts */ |
| 479 | for (irq = LOCOMO_IRQ_GPIO_START; irq < LOCOMO_IRQ_GPIO_START + 16; irq++) { |
| 480 | set_irq_chip(irq, &locomo_gpio_chip); |
| 481 | set_irq_chipdata(irq, irqbase); |
| 482 | set_irq_handler(irq, do_edge_IRQ); |
| 483 | set_irq_flags(irq, IRQF_VALID | IRQF_PROBE); |
| 484 | } |
| 485 | |
| 486 | /* install handlers for IRQ_LOCOMO_LT_BASE generated interrupts */ |
| 487 | set_irq_chip(LOCOMO_IRQ_LT_START, &locomo_lt_chip); |
| 488 | set_irq_chipdata(LOCOMO_IRQ_LT_START, irqbase); |
| 489 | set_irq_handler(LOCOMO_IRQ_LT_START, do_edge_IRQ); |
| 490 | set_irq_flags(LOCOMO_IRQ_LT_START, IRQF_VALID | IRQF_PROBE); |
| 491 | |
| 492 | /* install handlers for IRQ_LOCOMO_SPI_BASE generated interrupts */ |
| 493 | for (irq = LOCOMO_IRQ_SPI_START; irq < LOCOMO_IRQ_SPI_START + 3; irq++) { |
| 494 | set_irq_chip(irq, &locomo_spi_chip); |
| 495 | set_irq_chipdata(irq, irqbase); |
| 496 | set_irq_handler(irq, do_edge_IRQ); |
| 497 | set_irq_flags(irq, IRQF_VALID | IRQF_PROBE); |
| 498 | } |
| 499 | } |
| 500 | |
| 501 | |
| 502 | static void locomo_dev_release(struct device *_dev) |
| 503 | { |
| 504 | struct locomo_dev *dev = LOCOMO_DEV(_dev); |
| 505 | |
| 506 | kfree(dev); |
| 507 | } |
| 508 | |
| 509 | static int |
| 510 | locomo_init_one_child(struct locomo *lchip, struct locomo_dev_info *info) |
| 511 | { |
| 512 | struct locomo_dev *dev; |
| 513 | int ret; |
| 514 | |
Russell King | d2a02b9 | 2006-03-20 19:46:41 +0000 | [diff] [blame] | 515 | dev = kzalloc(sizeof(struct locomo_dev), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 516 | if (!dev) { |
| 517 | ret = -ENOMEM; |
| 518 | goto out; |
| 519 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 520 | |
Pavel Machek | 7a2c302 | 2006-07-10 16:29:10 +0100 | [diff] [blame] | 521 | strncpy(dev->dev.bus_id, info->name, sizeof(dev->dev.bus_id)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 522 | /* |
| 523 | * If the parent device has a DMA mask associated with it, |
| 524 | * propagate it down to the children. |
| 525 | */ |
| 526 | if (lchip->dev->dma_mask) { |
| 527 | dev->dma_mask = *lchip->dev->dma_mask; |
| 528 | dev->dev.dma_mask = &dev->dma_mask; |
| 529 | } |
| 530 | |
| 531 | dev->devid = info->devid; |
| 532 | dev->dev.parent = lchip->dev; |
| 533 | dev->dev.bus = &locomo_bus_type; |
| 534 | dev->dev.release = locomo_dev_release; |
| 535 | dev->dev.coherent_dma_mask = lchip->dev->coherent_dma_mask; |
| 536 | |
| 537 | if (info->offset) |
| 538 | dev->mapbase = lchip->base + info->offset; |
| 539 | else |
| 540 | dev->mapbase = 0; |
| 541 | dev->length = info->length; |
| 542 | |
| 543 | memmove(dev->irq, info->irq, sizeof(dev->irq)); |
| 544 | |
| 545 | ret = device_register(&dev->dev); |
| 546 | if (ret) { |
| 547 | out: |
| 548 | kfree(dev); |
| 549 | } |
| 550 | return ret; |
| 551 | } |
| 552 | |
John Lenz | b38d950 | 2005-09-08 14:41:54 +0100 | [diff] [blame] | 553 | #ifdef CONFIG_PM |
| 554 | |
| 555 | struct locomo_save_data { |
| 556 | u16 LCM_GPO; |
| 557 | u16 LCM_SPICT; |
| 558 | u16 LCM_GPE; |
| 559 | u16 LCM_ASD; |
| 560 | u16 LCM_SPIMD; |
| 561 | }; |
| 562 | |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 563 | static int locomo_suspend(struct platform_device *dev, pm_message_t state) |
John Lenz | b38d950 | 2005-09-08 14:41:54 +0100 | [diff] [blame] | 564 | { |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 565 | struct locomo *lchip = platform_get_drvdata(dev); |
John Lenz | b38d950 | 2005-09-08 14:41:54 +0100 | [diff] [blame] | 566 | struct locomo_save_data *save; |
| 567 | unsigned long flags; |
| 568 | |
John Lenz | b38d950 | 2005-09-08 14:41:54 +0100 | [diff] [blame] | 569 | save = kmalloc(sizeof(struct locomo_save_data), GFP_KERNEL); |
| 570 | if (!save) |
| 571 | return -ENOMEM; |
| 572 | |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 573 | dev->dev.power.saved_state = (void *) save; |
John Lenz | b38d950 | 2005-09-08 14:41:54 +0100 | [diff] [blame] | 574 | |
| 575 | spin_lock_irqsave(&lchip->lock, flags); |
| 576 | |
| 577 | save->LCM_GPO = locomo_readl(lchip->base + LOCOMO_GPO); /* GPIO */ |
| 578 | locomo_writel(0x00, lchip->base + LOCOMO_GPO); |
| 579 | save->LCM_SPICT = locomo_readl(lchip->base + LOCOMO_SPICT); /* SPI */ |
| 580 | locomo_writel(0x40, lchip->base + LOCOMO_SPICT); |
| 581 | save->LCM_GPE = locomo_readl(lchip->base + LOCOMO_GPE); /* GPIO */ |
| 582 | locomo_writel(0x00, lchip->base + LOCOMO_GPE); |
| 583 | save->LCM_ASD = locomo_readl(lchip->base + LOCOMO_ASD); /* ADSTART */ |
| 584 | locomo_writel(0x00, lchip->base + LOCOMO_ASD); |
| 585 | save->LCM_SPIMD = locomo_readl(lchip->base + LOCOMO_SPIMD); /* SPI */ |
| 586 | locomo_writel(0x3C14, lchip->base + LOCOMO_SPIMD); |
| 587 | |
| 588 | locomo_writel(0x00, lchip->base + LOCOMO_PAIF); |
| 589 | locomo_writel(0x00, lchip->base + LOCOMO_DAC); |
| 590 | locomo_writel(0x00, lchip->base + LOCOMO_BACKLIGHT + LOCOMO_TC); |
| 591 | |
| 592 | if ( (locomo_readl(lchip->base + LOCOMO_LED + LOCOMO_LPT0) & 0x88) && (locomo_readl(lchip->base + LOCOMO_LED + LOCOMO_LPT1) & 0x88) ) |
| 593 | locomo_writel(0x00, lchip->base + LOCOMO_C32K); /* CLK32 off */ |
| 594 | else |
| 595 | /* 18MHz already enabled, so no wait */ |
| 596 | locomo_writel(0xc1, lchip->base + LOCOMO_C32K); /* CLK32 on */ |
| 597 | |
| 598 | locomo_writel(0x00, lchip->base + LOCOMO_TADC); /* 18MHz clock off*/ |
| 599 | locomo_writel(0x00, lchip->base + LOCOMO_AUDIO + LOCOMO_ACC); /* 22MHz/24MHz clock off */ |
| 600 | locomo_writel(0x00, lchip->base + LOCOMO_FRONTLIGHT + LOCOMO_ALS); /* FL */ |
| 601 | |
| 602 | spin_unlock_irqrestore(&lchip->lock, flags); |
| 603 | |
| 604 | return 0; |
| 605 | } |
| 606 | |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 607 | static int locomo_resume(struct platform_device *dev) |
John Lenz | b38d950 | 2005-09-08 14:41:54 +0100 | [diff] [blame] | 608 | { |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 609 | struct locomo *lchip = platform_get_drvdata(dev); |
John Lenz | b38d950 | 2005-09-08 14:41:54 +0100 | [diff] [blame] | 610 | struct locomo_save_data *save; |
| 611 | unsigned long r; |
| 612 | unsigned long flags; |
| 613 | |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 614 | save = (struct locomo_save_data *) dev->dev.power.saved_state; |
John Lenz | b38d950 | 2005-09-08 14:41:54 +0100 | [diff] [blame] | 615 | if (!save) |
| 616 | return 0; |
| 617 | |
| 618 | spin_lock_irqsave(&lchip->lock, flags); |
| 619 | |
| 620 | locomo_writel(save->LCM_GPO, lchip->base + LOCOMO_GPO); |
| 621 | locomo_writel(save->LCM_SPICT, lchip->base + LOCOMO_SPICT); |
| 622 | locomo_writel(save->LCM_GPE, lchip->base + LOCOMO_GPE); |
| 623 | locomo_writel(save->LCM_ASD, lchip->base + LOCOMO_ASD); |
| 624 | locomo_writel(save->LCM_SPIMD, lchip->base + LOCOMO_SPIMD); |
| 625 | |
| 626 | locomo_writel(0x00, lchip->base + LOCOMO_C32K); |
| 627 | locomo_writel(0x90, lchip->base + LOCOMO_TADC); |
| 628 | |
| 629 | locomo_writel(0, lchip->base + LOCOMO_KEYBOARD + LOCOMO_KSC); |
| 630 | r = locomo_readl(lchip->base + LOCOMO_KEYBOARD + LOCOMO_KIC); |
| 631 | r &= 0xFEFF; |
| 632 | locomo_writel(r, lchip->base + LOCOMO_KEYBOARD + LOCOMO_KIC); |
| 633 | locomo_writel(0x1, lchip->base + LOCOMO_KEYBOARD + LOCOMO_KCMD); |
| 634 | |
| 635 | spin_unlock_irqrestore(&lchip->lock, flags); |
John Lenz | b38d950 | 2005-09-08 14:41:54 +0100 | [diff] [blame] | 636 | kfree(save); |
| 637 | |
| 638 | return 0; |
| 639 | } |
| 640 | #endif |
| 641 | |
Pavel Machek | 4ebf2d0 | 2006-03-15 16:03:03 +0000 | [diff] [blame] | 642 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 643 | /** |
| 644 | * locomo_probe - probe for a single LoCoMo chip. |
| 645 | * @phys_addr: physical address of device. |
| 646 | * |
| 647 | * Probe for a LoCoMo chip. This must be called |
| 648 | * before any other locomo-specific code. |
| 649 | * |
| 650 | * Returns: |
| 651 | * %-ENODEV device not found. |
| 652 | * %-EBUSY physical address already marked in-use. |
| 653 | * %0 successful. |
| 654 | */ |
| 655 | static int |
| 656 | __locomo_probe(struct device *me, struct resource *mem, int irq) |
| 657 | { |
| 658 | struct locomo *lchip; |
| 659 | unsigned long r; |
| 660 | int i, ret = -ENODEV; |
| 661 | |
Russell King | d2a02b9 | 2006-03-20 19:46:41 +0000 | [diff] [blame] | 662 | lchip = kzalloc(sizeof(struct locomo), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 663 | if (!lchip) |
| 664 | return -ENOMEM; |
| 665 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 666 | spin_lock_init(&lchip->lock); |
| 667 | |
| 668 | lchip->dev = me; |
| 669 | dev_set_drvdata(lchip->dev, lchip); |
| 670 | |
| 671 | lchip->phys = mem->start; |
| 672 | lchip->irq = irq; |
| 673 | |
| 674 | /* |
| 675 | * Map the whole region. This also maps the |
| 676 | * registers for our children. |
| 677 | */ |
| 678 | lchip->base = ioremap(mem->start, PAGE_SIZE); |
| 679 | if (!lchip->base) { |
| 680 | ret = -ENOMEM; |
| 681 | goto out; |
| 682 | } |
| 683 | |
| 684 | /* locomo initialize */ |
| 685 | locomo_writel(0, lchip->base + LOCOMO_ICR); |
| 686 | /* KEYBOARD */ |
| 687 | locomo_writel(0, lchip->base + LOCOMO_KEYBOARD + LOCOMO_KIC); |
| 688 | |
| 689 | /* GPIO */ |
| 690 | locomo_writel(0, lchip->base + LOCOMO_GPO); |
| 691 | locomo_writel( (LOCOMO_GPIO(2) | LOCOMO_GPIO(3) | LOCOMO_GPIO(13) | LOCOMO_GPIO(14)) |
| 692 | , lchip->base + LOCOMO_GPE); |
| 693 | locomo_writel( (LOCOMO_GPIO(2) | LOCOMO_GPIO(3) | LOCOMO_GPIO(13) | LOCOMO_GPIO(14)) |
| 694 | , lchip->base + LOCOMO_GPD); |
| 695 | locomo_writel(0, lchip->base + LOCOMO_GIE); |
| 696 | |
Richard Purdie | e442378 | 2006-06-26 00:26:27 -0700 | [diff] [blame] | 697 | /* Frontlight */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 698 | locomo_writel(0, lchip->base + LOCOMO_FRONTLIGHT + LOCOMO_ALS); |
| 699 | locomo_writel(0, lchip->base + LOCOMO_FRONTLIGHT + LOCOMO_ALD); |
Pavel Machek | 4ebf2d0 | 2006-03-15 16:03:03 +0000 | [diff] [blame] | 700 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 701 | /* Longtime timer */ |
| 702 | locomo_writel(0, lchip->base + LOCOMO_LTINT); |
| 703 | /* SPI */ |
| 704 | locomo_writel(0, lchip->base + LOCOMO_SPIIE); |
| 705 | |
| 706 | locomo_writel(6 + 8 + 320 + 30 - 10, lchip->base + LOCOMO_ASD); |
| 707 | r = locomo_readl(lchip->base + LOCOMO_ASD); |
| 708 | r |= 0x8000; |
| 709 | locomo_writel(r, lchip->base + LOCOMO_ASD); |
| 710 | |
| 711 | locomo_writel(6 + 8 + 320 + 30 - 10 - 128 + 4, lchip->base + LOCOMO_HSD); |
| 712 | r = locomo_readl(lchip->base + LOCOMO_HSD); |
| 713 | r |= 0x8000; |
| 714 | locomo_writel(r, lchip->base + LOCOMO_HSD); |
| 715 | |
| 716 | locomo_writel(128 / 8, lchip->base + LOCOMO_HSC); |
| 717 | |
| 718 | /* XON */ |
| 719 | locomo_writel(0x80, lchip->base + LOCOMO_TADC); |
| 720 | udelay(1000); |
| 721 | /* CLK9MEN */ |
| 722 | r = locomo_readl(lchip->base + LOCOMO_TADC); |
| 723 | r |= 0x10; |
| 724 | locomo_writel(r, lchip->base + LOCOMO_TADC); |
| 725 | udelay(100); |
| 726 | |
| 727 | /* init DAC */ |
| 728 | r = locomo_readl(lchip->base + LOCOMO_DAC); |
| 729 | r |= LOCOMO_DAC_SCLOEB | LOCOMO_DAC_SDAOEB; |
| 730 | locomo_writel(r, lchip->base + LOCOMO_DAC); |
| 731 | |
| 732 | r = locomo_readl(lchip->base + LOCOMO_VER); |
| 733 | printk(KERN_INFO "LoCoMo Chip: %lu%lu\n", (r >> 8), (r & 0xff)); |
| 734 | |
| 735 | /* |
| 736 | * The interrupt controller must be initialised before any |
| 737 | * other device to ensure that the interrupts are available. |
| 738 | */ |
| 739 | if (lchip->irq != NO_IRQ) |
| 740 | locomo_setup_irq(lchip); |
| 741 | |
| 742 | for (i = 0; i < ARRAY_SIZE(locomo_devices); i++) |
| 743 | locomo_init_one_child(lchip, &locomo_devices[i]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 744 | return 0; |
| 745 | |
| 746 | out: |
| 747 | kfree(lchip); |
| 748 | return ret; |
| 749 | } |
| 750 | |
Pavel Machek | e24da5d | 2005-09-04 11:33:12 +0100 | [diff] [blame] | 751 | static int locomo_remove_child(struct device *dev, void *data) |
| 752 | { |
| 753 | device_unregister(dev); |
| 754 | return 0; |
| 755 | } |
| 756 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 757 | static void __locomo_remove(struct locomo *lchip) |
| 758 | { |
Pavel Machek | e24da5d | 2005-09-04 11:33:12 +0100 | [diff] [blame] | 759 | device_for_each_child(lchip->dev, NULL, locomo_remove_child); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 760 | |
| 761 | if (lchip->irq != NO_IRQ) { |
| 762 | set_irq_chained_handler(lchip->irq, NULL); |
| 763 | set_irq_data(lchip->irq, NULL); |
| 764 | } |
| 765 | |
| 766 | iounmap(lchip->base); |
| 767 | kfree(lchip); |
| 768 | } |
| 769 | |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 770 | static int locomo_probe(struct platform_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 771 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 772 | struct resource *mem; |
| 773 | int irq; |
| 774 | |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 775 | mem = platform_get_resource(dev, IORESOURCE_MEM, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 776 | if (!mem) |
| 777 | return -EINVAL; |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 778 | irq = platform_get_irq(dev, 0); |
David Vrabel | 4894473 | 2006-01-19 17:56:29 +0000 | [diff] [blame] | 779 | if (irq < 0) |
| 780 | return -ENXIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 781 | |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 782 | return __locomo_probe(&dev->dev, mem, irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 783 | } |
| 784 | |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 785 | static int locomo_remove(struct platform_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 786 | { |
Pavel Machek | c35bf4a | 2005-11-12 20:25:25 +0000 | [diff] [blame] | 787 | struct locomo *lchip = platform_get_drvdata(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 788 | |
| 789 | if (lchip) { |
| 790 | __locomo_remove(lchip); |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 791 | platform_set_drvdata(dev, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 792 | } |
| 793 | |
| 794 | return 0; |
| 795 | } |
| 796 | |
| 797 | /* |
| 798 | * Not sure if this should be on the system bus or not yet. |
| 799 | * We really want some way to register a system device at |
| 800 | * the per-machine level, and then have this driver pick |
| 801 | * up the registered devices. |
| 802 | */ |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 803 | static struct platform_driver locomo_device_driver = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 804 | .probe = locomo_probe, |
| 805 | .remove = locomo_remove, |
John Lenz | b38d950 | 2005-09-08 14:41:54 +0100 | [diff] [blame] | 806 | #ifdef CONFIG_PM |
| 807 | .suspend = locomo_suspend, |
| 808 | .resume = locomo_resume, |
| 809 | #endif |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 810 | .driver = { |
| 811 | .name = "locomo", |
| 812 | }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 813 | }; |
| 814 | |
| 815 | /* |
| 816 | * Get the parent device driver (us) structure |
| 817 | * from a child function device |
| 818 | */ |
| 819 | static inline struct locomo *locomo_chip_driver(struct locomo_dev *ldev) |
| 820 | { |
| 821 | return (struct locomo *)dev_get_drvdata(ldev->dev.parent); |
| 822 | } |
| 823 | |
Richard Purdie | 8d48427 | 2006-09-25 20:11:48 +0100 | [diff] [blame] | 824 | void locomo_gpio_set_dir(struct device *dev, unsigned int bits, unsigned int dir) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 825 | { |
Richard Purdie | 8d48427 | 2006-09-25 20:11:48 +0100 | [diff] [blame] | 826 | struct locomo *lchip = dev_get_drvdata(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 827 | unsigned long flags; |
| 828 | unsigned int r; |
| 829 | |
Richard Purdie | 8d48427 | 2006-09-25 20:11:48 +0100 | [diff] [blame] | 830 | if (!lchip) |
| 831 | return; |
| 832 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 833 | spin_lock_irqsave(&lchip->lock, flags); |
| 834 | |
| 835 | r = locomo_readl(lchip->base + LOCOMO_GPD); |
| 836 | r &= ~bits; |
| 837 | locomo_writel(r, lchip->base + LOCOMO_GPD); |
| 838 | |
| 839 | r = locomo_readl(lchip->base + LOCOMO_GPE); |
| 840 | if (dir) |
| 841 | r |= bits; |
| 842 | else |
| 843 | r &= ~bits; |
| 844 | locomo_writel(r, lchip->base + LOCOMO_GPE); |
| 845 | |
| 846 | spin_unlock_irqrestore(&lchip->lock, flags); |
| 847 | } |
| 848 | |
Richard Purdie | 8d48427 | 2006-09-25 20:11:48 +0100 | [diff] [blame] | 849 | int locomo_gpio_read_level(struct device *dev, unsigned int bits) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 850 | { |
Richard Purdie | 8d48427 | 2006-09-25 20:11:48 +0100 | [diff] [blame] | 851 | struct locomo *lchip = dev_get_drvdata(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 852 | unsigned long flags; |
| 853 | unsigned int ret; |
| 854 | |
Richard Purdie | 8d48427 | 2006-09-25 20:11:48 +0100 | [diff] [blame] | 855 | if (!lchip) |
| 856 | return -ENODEV; |
| 857 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 858 | spin_lock_irqsave(&lchip->lock, flags); |
| 859 | ret = locomo_readl(lchip->base + LOCOMO_GPL); |
| 860 | spin_unlock_irqrestore(&lchip->lock, flags); |
| 861 | |
| 862 | ret &= bits; |
| 863 | return ret; |
| 864 | } |
| 865 | |
Richard Purdie | 8d48427 | 2006-09-25 20:11:48 +0100 | [diff] [blame] | 866 | int locomo_gpio_read_output(struct device *dev, unsigned int bits) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 867 | { |
Richard Purdie | 8d48427 | 2006-09-25 20:11:48 +0100 | [diff] [blame] | 868 | struct locomo *lchip = dev_get_drvdata(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 869 | unsigned long flags; |
| 870 | unsigned int ret; |
| 871 | |
Richard Purdie | 8d48427 | 2006-09-25 20:11:48 +0100 | [diff] [blame] | 872 | if (!lchip) |
| 873 | return -ENODEV; |
| 874 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 875 | spin_lock_irqsave(&lchip->lock, flags); |
| 876 | ret = locomo_readl(lchip->base + LOCOMO_GPO); |
| 877 | spin_unlock_irqrestore(&lchip->lock, flags); |
| 878 | |
| 879 | ret &= bits; |
| 880 | return ret; |
| 881 | } |
| 882 | |
Richard Purdie | 8d48427 | 2006-09-25 20:11:48 +0100 | [diff] [blame] | 883 | void locomo_gpio_write(struct device *dev, unsigned int bits, unsigned int set) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 884 | { |
Richard Purdie | 8d48427 | 2006-09-25 20:11:48 +0100 | [diff] [blame] | 885 | struct locomo *lchip = dev_get_drvdata(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 886 | unsigned long flags; |
| 887 | unsigned int r; |
| 888 | |
Richard Purdie | 8d48427 | 2006-09-25 20:11:48 +0100 | [diff] [blame] | 889 | if (!lchip) |
| 890 | return; |
| 891 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 892 | spin_lock_irqsave(&lchip->lock, flags); |
| 893 | |
| 894 | r = locomo_readl(lchip->base + LOCOMO_GPO); |
| 895 | if (set) |
| 896 | r |= bits; |
| 897 | else |
| 898 | r &= ~bits; |
| 899 | locomo_writel(r, lchip->base + LOCOMO_GPO); |
| 900 | |
| 901 | spin_unlock_irqrestore(&lchip->lock, flags); |
| 902 | } |
| 903 | |
| 904 | static void locomo_m62332_sendbit(void *mapbase, int bit) |
| 905 | { |
| 906 | unsigned int r; |
| 907 | |
| 908 | r = locomo_readl(mapbase + LOCOMO_DAC); |
| 909 | r &= ~(LOCOMO_DAC_SCLOEB); |
| 910 | locomo_writel(r, mapbase + LOCOMO_DAC); |
| 911 | udelay(DAC_LOW_SETUP_TIME); /* 300 nsec */ |
| 912 | udelay(DAC_DATA_HOLD_TIME); /* 300 nsec */ |
| 913 | r = locomo_readl(mapbase + LOCOMO_DAC); |
| 914 | r &= ~(LOCOMO_DAC_SCLOEB); |
| 915 | locomo_writel(r, mapbase + LOCOMO_DAC); |
| 916 | udelay(DAC_LOW_SETUP_TIME); /* 300 nsec */ |
| 917 | udelay(DAC_SCL_LOW_HOLD_TIME); /* 4.7 usec */ |
| 918 | |
| 919 | if (bit & 1) { |
| 920 | r = locomo_readl(mapbase + LOCOMO_DAC); |
| 921 | r |= LOCOMO_DAC_SDAOEB; |
| 922 | locomo_writel(r, mapbase + LOCOMO_DAC); |
| 923 | udelay(DAC_HIGH_SETUP_TIME); /* 1000 nsec */ |
| 924 | } else { |
| 925 | r = locomo_readl(mapbase + LOCOMO_DAC); |
| 926 | r &= ~(LOCOMO_DAC_SDAOEB); |
| 927 | locomo_writel(r, mapbase + LOCOMO_DAC); |
| 928 | udelay(DAC_LOW_SETUP_TIME); /* 300 nsec */ |
| 929 | } |
| 930 | |
| 931 | udelay(DAC_DATA_SETUP_TIME); /* 250 nsec */ |
| 932 | r = locomo_readl(mapbase + LOCOMO_DAC); |
| 933 | r |= LOCOMO_DAC_SCLOEB; |
| 934 | locomo_writel(r, mapbase + LOCOMO_DAC); |
| 935 | udelay(DAC_HIGH_SETUP_TIME); /* 1000 nsec */ |
| 936 | udelay(DAC_SCL_HIGH_HOLD_TIME); /* 4.0 usec */ |
| 937 | } |
| 938 | |
| 939 | void locomo_m62332_senddata(struct locomo_dev *ldev, unsigned int dac_data, int channel) |
| 940 | { |
| 941 | struct locomo *lchip = locomo_chip_driver(ldev); |
| 942 | int i; |
| 943 | unsigned char data; |
| 944 | unsigned int r; |
| 945 | void *mapbase = lchip->base; |
| 946 | unsigned long flags; |
| 947 | |
| 948 | spin_lock_irqsave(&lchip->lock, flags); |
| 949 | |
| 950 | /* Start */ |
| 951 | udelay(DAC_BUS_FREE_TIME); /* 5.0 usec */ |
| 952 | r = locomo_readl(mapbase + LOCOMO_DAC); |
| 953 | r |= LOCOMO_DAC_SCLOEB | LOCOMO_DAC_SDAOEB; |
| 954 | locomo_writel(r, mapbase + LOCOMO_DAC); |
| 955 | udelay(DAC_HIGH_SETUP_TIME); /* 1000 nsec */ |
| 956 | udelay(DAC_SCL_HIGH_HOLD_TIME); /* 4.0 usec */ |
| 957 | r = locomo_readl(mapbase + LOCOMO_DAC); |
| 958 | r &= ~(LOCOMO_DAC_SDAOEB); |
| 959 | locomo_writel(r, mapbase + LOCOMO_DAC); |
| 960 | udelay(DAC_START_HOLD_TIME); /* 5.0 usec */ |
| 961 | udelay(DAC_DATA_HOLD_TIME); /* 300 nsec */ |
| 962 | |
| 963 | /* Send slave address and W bit (LSB is W bit) */ |
| 964 | data = (M62332_SLAVE_ADDR << 1) | M62332_W_BIT; |
| 965 | for (i = 1; i <= 8; i++) { |
| 966 | locomo_m62332_sendbit(mapbase, data >> (8 - i)); |
| 967 | } |
| 968 | |
| 969 | /* Check A bit */ |
| 970 | r = locomo_readl(mapbase + LOCOMO_DAC); |
| 971 | r &= ~(LOCOMO_DAC_SCLOEB); |
| 972 | locomo_writel(r, mapbase + LOCOMO_DAC); |
| 973 | udelay(DAC_LOW_SETUP_TIME); /* 300 nsec */ |
| 974 | udelay(DAC_SCL_LOW_HOLD_TIME); /* 4.7 usec */ |
| 975 | r = locomo_readl(mapbase + LOCOMO_DAC); |
| 976 | r &= ~(LOCOMO_DAC_SDAOEB); |
| 977 | locomo_writel(r, mapbase + LOCOMO_DAC); |
| 978 | udelay(DAC_LOW_SETUP_TIME); /* 300 nsec */ |
| 979 | r = locomo_readl(mapbase + LOCOMO_DAC); |
| 980 | r |= LOCOMO_DAC_SCLOEB; |
| 981 | locomo_writel(r, mapbase + LOCOMO_DAC); |
| 982 | udelay(DAC_HIGH_SETUP_TIME); /* 1000 nsec */ |
| 983 | udelay(DAC_SCL_HIGH_HOLD_TIME); /* 4.7 usec */ |
| 984 | if (locomo_readl(mapbase + LOCOMO_DAC) & LOCOMO_DAC_SDAOEB) { /* High is error */ |
| 985 | printk(KERN_WARNING "locomo: m62332_senddata Error 1\n"); |
| 986 | return; |
| 987 | } |
| 988 | |
| 989 | /* Send Sub address (LSB is channel select) */ |
| 990 | /* channel = 0 : ch1 select */ |
| 991 | /* = 1 : ch2 select */ |
| 992 | data = M62332_SUB_ADDR + channel; |
| 993 | for (i = 1; i <= 8; i++) { |
| 994 | locomo_m62332_sendbit(mapbase, data >> (8 - i)); |
| 995 | } |
| 996 | |
| 997 | /* Check A bit */ |
| 998 | r = locomo_readl(mapbase + LOCOMO_DAC); |
| 999 | r &= ~(LOCOMO_DAC_SCLOEB); |
| 1000 | locomo_writel(r, mapbase + LOCOMO_DAC); |
| 1001 | udelay(DAC_LOW_SETUP_TIME); /* 300 nsec */ |
| 1002 | udelay(DAC_SCL_LOW_HOLD_TIME); /* 4.7 usec */ |
| 1003 | r = locomo_readl(mapbase + LOCOMO_DAC); |
| 1004 | r &= ~(LOCOMO_DAC_SDAOEB); |
| 1005 | locomo_writel(r, mapbase + LOCOMO_DAC); |
| 1006 | udelay(DAC_LOW_SETUP_TIME); /* 300 nsec */ |
| 1007 | r = locomo_readl(mapbase + LOCOMO_DAC); |
| 1008 | r |= LOCOMO_DAC_SCLOEB; |
| 1009 | locomo_writel(r, mapbase + LOCOMO_DAC); |
| 1010 | udelay(DAC_HIGH_SETUP_TIME); /* 1000 nsec */ |
| 1011 | udelay(DAC_SCL_HIGH_HOLD_TIME); /* 4.7 usec */ |
| 1012 | if (locomo_readl(mapbase + LOCOMO_DAC) & LOCOMO_DAC_SDAOEB) { /* High is error */ |
| 1013 | printk(KERN_WARNING "locomo: m62332_senddata Error 2\n"); |
| 1014 | return; |
| 1015 | } |
| 1016 | |
| 1017 | /* Send DAC data */ |
| 1018 | for (i = 1; i <= 8; i++) { |
| 1019 | locomo_m62332_sendbit(mapbase, dac_data >> (8 - i)); |
| 1020 | } |
| 1021 | |
| 1022 | /* Check A bit */ |
| 1023 | r = locomo_readl(mapbase + LOCOMO_DAC); |
| 1024 | r &= ~(LOCOMO_DAC_SCLOEB); |
| 1025 | locomo_writel(r, mapbase + LOCOMO_DAC); |
| 1026 | udelay(DAC_LOW_SETUP_TIME); /* 300 nsec */ |
| 1027 | udelay(DAC_SCL_LOW_HOLD_TIME); /* 4.7 usec */ |
| 1028 | r = locomo_readl(mapbase + LOCOMO_DAC); |
| 1029 | r &= ~(LOCOMO_DAC_SDAOEB); |
| 1030 | locomo_writel(r, mapbase + LOCOMO_DAC); |
| 1031 | udelay(DAC_LOW_SETUP_TIME); /* 300 nsec */ |
| 1032 | r = locomo_readl(mapbase + LOCOMO_DAC); |
| 1033 | r |= LOCOMO_DAC_SCLOEB; |
| 1034 | locomo_writel(r, mapbase + LOCOMO_DAC); |
| 1035 | udelay(DAC_HIGH_SETUP_TIME); /* 1000 nsec */ |
| 1036 | udelay(DAC_SCL_HIGH_HOLD_TIME); /* 4.7 usec */ |
| 1037 | if (locomo_readl(mapbase + LOCOMO_DAC) & LOCOMO_DAC_SDAOEB) { /* High is error */ |
| 1038 | printk(KERN_WARNING "locomo: m62332_senddata Error 3\n"); |
| 1039 | return; |
| 1040 | } |
| 1041 | |
| 1042 | /* stop */ |
| 1043 | r = locomo_readl(mapbase + LOCOMO_DAC); |
| 1044 | r &= ~(LOCOMO_DAC_SCLOEB); |
| 1045 | locomo_writel(r, mapbase + LOCOMO_DAC); |
| 1046 | udelay(DAC_LOW_SETUP_TIME); /* 300 nsec */ |
| 1047 | udelay(DAC_SCL_LOW_HOLD_TIME); /* 4.7 usec */ |
| 1048 | r = locomo_readl(mapbase + LOCOMO_DAC); |
| 1049 | r |= LOCOMO_DAC_SCLOEB; |
| 1050 | locomo_writel(r, mapbase + LOCOMO_DAC); |
| 1051 | udelay(DAC_HIGH_SETUP_TIME); /* 1000 nsec */ |
| 1052 | udelay(DAC_SCL_HIGH_HOLD_TIME); /* 4 usec */ |
| 1053 | r = locomo_readl(mapbase + LOCOMO_DAC); |
| 1054 | r |= LOCOMO_DAC_SDAOEB; |
| 1055 | locomo_writel(r, mapbase + LOCOMO_DAC); |
| 1056 | udelay(DAC_HIGH_SETUP_TIME); /* 1000 nsec */ |
| 1057 | udelay(DAC_SCL_HIGH_HOLD_TIME); /* 4 usec */ |
| 1058 | |
| 1059 | r = locomo_readl(mapbase + LOCOMO_DAC); |
| 1060 | r |= LOCOMO_DAC_SCLOEB | LOCOMO_DAC_SDAOEB; |
| 1061 | locomo_writel(r, mapbase + LOCOMO_DAC); |
| 1062 | udelay(DAC_LOW_SETUP_TIME); /* 1000 nsec */ |
| 1063 | udelay(DAC_SCL_LOW_HOLD_TIME); /* 4.7 usec */ |
| 1064 | |
| 1065 | spin_unlock_irqrestore(&lchip->lock, flags); |
| 1066 | } |
| 1067 | |
| 1068 | /* |
Richard Purdie | e442378 | 2006-06-26 00:26:27 -0700 | [diff] [blame] | 1069 | * Frontlight control |
| 1070 | */ |
| 1071 | |
| 1072 | static struct locomo *locomo_chip_driver(struct locomo_dev *ldev); |
| 1073 | |
| 1074 | void locomo_frontlight_set(struct locomo_dev *dev, int duty, int vr, int bpwf) |
| 1075 | { |
| 1076 | unsigned long flags; |
| 1077 | struct locomo *lchip = locomo_chip_driver(dev); |
| 1078 | |
| 1079 | if (vr) |
Richard Purdie | 8d48427 | 2006-09-25 20:11:48 +0100 | [diff] [blame] | 1080 | locomo_gpio_write(dev->dev.parent, LOCOMO_GPIO_FL_VR, 1); |
Richard Purdie | e442378 | 2006-06-26 00:26:27 -0700 | [diff] [blame] | 1081 | else |
Richard Purdie | 8d48427 | 2006-09-25 20:11:48 +0100 | [diff] [blame] | 1082 | locomo_gpio_write(dev->dev.parent, LOCOMO_GPIO_FL_VR, 0); |
Richard Purdie | e442378 | 2006-06-26 00:26:27 -0700 | [diff] [blame] | 1083 | |
| 1084 | spin_lock_irqsave(&lchip->lock, flags); |
| 1085 | locomo_writel(bpwf, lchip->base + LOCOMO_FRONTLIGHT + LOCOMO_ALS); |
| 1086 | udelay(100); |
| 1087 | locomo_writel(duty, lchip->base + LOCOMO_FRONTLIGHT + LOCOMO_ALD); |
| 1088 | locomo_writel(bpwf | LOCOMO_ALC_EN, lchip->base + LOCOMO_FRONTLIGHT + LOCOMO_ALS); |
| 1089 | spin_unlock_irqrestore(&lchip->lock, flags); |
| 1090 | } |
| 1091 | |
| 1092 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1093 | * LoCoMo "Register Access Bus." |
| 1094 | * |
| 1095 | * We model this as a regular bus type, and hang devices directly |
| 1096 | * off this. |
| 1097 | */ |
| 1098 | static int locomo_match(struct device *_dev, struct device_driver *_drv) |
| 1099 | { |
| 1100 | struct locomo_dev *dev = LOCOMO_DEV(_dev); |
| 1101 | struct locomo_driver *drv = LOCOMO_DRV(_drv); |
| 1102 | |
| 1103 | return dev->devid == drv->devid; |
| 1104 | } |
| 1105 | |
| 1106 | static int locomo_bus_suspend(struct device *dev, pm_message_t state) |
| 1107 | { |
| 1108 | struct locomo_dev *ldev = LOCOMO_DEV(dev); |
| 1109 | struct locomo_driver *drv = LOCOMO_DRV(dev->driver); |
| 1110 | int ret = 0; |
| 1111 | |
| 1112 | if (drv && drv->suspend) |
| 1113 | ret = drv->suspend(ldev, state); |
| 1114 | return ret; |
| 1115 | } |
| 1116 | |
| 1117 | static int locomo_bus_resume(struct device *dev) |
| 1118 | { |
| 1119 | struct locomo_dev *ldev = LOCOMO_DEV(dev); |
| 1120 | struct locomo_driver *drv = LOCOMO_DRV(dev->driver); |
| 1121 | int ret = 0; |
| 1122 | |
| 1123 | if (drv && drv->resume) |
| 1124 | ret = drv->resume(ldev); |
| 1125 | return ret; |
| 1126 | } |
| 1127 | |
| 1128 | static int locomo_bus_probe(struct device *dev) |
| 1129 | { |
| 1130 | struct locomo_dev *ldev = LOCOMO_DEV(dev); |
| 1131 | struct locomo_driver *drv = LOCOMO_DRV(dev->driver); |
| 1132 | int ret = -ENODEV; |
| 1133 | |
| 1134 | if (drv->probe) |
| 1135 | ret = drv->probe(ldev); |
| 1136 | return ret; |
| 1137 | } |
| 1138 | |
| 1139 | static int locomo_bus_remove(struct device *dev) |
| 1140 | { |
| 1141 | struct locomo_dev *ldev = LOCOMO_DEV(dev); |
| 1142 | struct locomo_driver *drv = LOCOMO_DRV(dev->driver); |
| 1143 | int ret = 0; |
| 1144 | |
| 1145 | if (drv->remove) |
| 1146 | ret = drv->remove(ldev); |
| 1147 | return ret; |
| 1148 | } |
| 1149 | |
| 1150 | struct bus_type locomo_bus_type = { |
| 1151 | .name = "locomo-bus", |
| 1152 | .match = locomo_match, |
Russell King | 306955b | 2006-01-05 14:33:04 +0000 | [diff] [blame] | 1153 | .probe = locomo_bus_probe, |
| 1154 | .remove = locomo_bus_remove, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1155 | .suspend = locomo_bus_suspend, |
| 1156 | .resume = locomo_bus_resume, |
| 1157 | }; |
| 1158 | |
| 1159 | int locomo_driver_register(struct locomo_driver *driver) |
| 1160 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1161 | driver->drv.bus = &locomo_bus_type; |
| 1162 | return driver_register(&driver->drv); |
| 1163 | } |
| 1164 | |
| 1165 | void locomo_driver_unregister(struct locomo_driver *driver) |
| 1166 | { |
| 1167 | driver_unregister(&driver->drv); |
| 1168 | } |
| 1169 | |
| 1170 | static int __init locomo_init(void) |
| 1171 | { |
| 1172 | int ret = bus_register(&locomo_bus_type); |
| 1173 | if (ret == 0) |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 1174 | platform_driver_register(&locomo_device_driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1175 | return ret; |
| 1176 | } |
| 1177 | |
| 1178 | static void __exit locomo_exit(void) |
| 1179 | { |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 1180 | platform_driver_unregister(&locomo_device_driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1181 | bus_unregister(&locomo_bus_type); |
| 1182 | } |
| 1183 | |
| 1184 | module_init(locomo_init); |
| 1185 | module_exit(locomo_exit); |
| 1186 | |
| 1187 | MODULE_DESCRIPTION("Sharp LoCoMo core driver"); |
| 1188 | MODULE_LICENSE("GPL"); |
| 1189 | MODULE_AUTHOR("John Lenz <lenz@cs.wisc.edu>"); |
| 1190 | |
| 1191 | EXPORT_SYMBOL(locomo_driver_register); |
| 1192 | EXPORT_SYMBOL(locomo_driver_unregister); |
| 1193 | EXPORT_SYMBOL(locomo_gpio_set_dir); |
| 1194 | EXPORT_SYMBOL(locomo_gpio_read_level); |
| 1195 | EXPORT_SYMBOL(locomo_gpio_read_output); |
| 1196 | EXPORT_SYMBOL(locomo_gpio_write); |
| 1197 | EXPORT_SYMBOL(locomo_m62332_senddata); |