Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 1 | /* |
| 2 | * driver/mfd/asic3.c |
| 3 | * |
| 4 | * Compaq ASIC3 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 | * Copyright 2001 Compaq Computer Corporation. |
| 11 | * Copyright 2004-2005 Phil Blundell |
Samuel Ortiz | 6f2384c | 2008-06-20 11:02:19 +0200 | [diff] [blame] | 12 | * Copyright 2007-2008 OpenedHand Ltd. |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 13 | * |
| 14 | * Authors: Phil Blundell <pb@handhelds.org>, |
| 15 | * Samuel Ortiz <sameo@openedhand.com> |
| 16 | * |
| 17 | */ |
| 18 | |
| 19 | #include <linux/version.h> |
| 20 | #include <linux/kernel.h> |
| 21 | #include <linux/irq.h> |
Samuel Ortiz | 6f2384c | 2008-06-20 11:02:19 +0200 | [diff] [blame] | 22 | #include <linux/gpio.h> |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 23 | #include <linux/io.h> |
| 24 | #include <linux/spinlock.h> |
| 25 | #include <linux/platform_device.h> |
| 26 | |
| 27 | #include <linux/mfd/asic3.h> |
| 28 | |
Samuel Ortiz | 6f2384c | 2008-06-20 11:02:19 +0200 | [diff] [blame] | 29 | struct asic3 { |
| 30 | void __iomem *mapping; |
| 31 | unsigned int bus_shift; |
| 32 | unsigned int irq_nr; |
| 33 | unsigned int irq_base; |
| 34 | spinlock_t lock; |
| 35 | u16 irq_bothedge[4]; |
| 36 | struct gpio_chip gpio; |
| 37 | struct device *dev; |
| 38 | }; |
| 39 | |
| 40 | static int asic3_gpio_get(struct gpio_chip *chip, unsigned offset); |
| 41 | |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 42 | static inline void asic3_write_register(struct asic3 *asic, |
| 43 | unsigned int reg, u32 value) |
| 44 | { |
Al Viro | b32661e | 2008-03-29 03:10:58 +0000 | [diff] [blame] | 45 | iowrite16(value, asic->mapping + |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 46 | (reg >> asic->bus_shift)); |
| 47 | } |
| 48 | |
| 49 | static inline u32 asic3_read_register(struct asic3 *asic, |
| 50 | unsigned int reg) |
| 51 | { |
Al Viro | b32661e | 2008-03-29 03:10:58 +0000 | [diff] [blame] | 52 | return ioread16(asic->mapping + |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 53 | (reg >> asic->bus_shift)); |
| 54 | } |
| 55 | |
| 56 | /* IRQs */ |
| 57 | #define MAX_ASIC_ISR_LOOPS 20 |
| 58 | #define ASIC3_GPIO_Base_INCR \ |
| 59 | (ASIC3_GPIO_B_Base - ASIC3_GPIO_A_Base) |
| 60 | |
| 61 | static void asic3_irq_flip_edge(struct asic3 *asic, |
| 62 | u32 base, int bit) |
| 63 | { |
| 64 | u16 edge; |
| 65 | unsigned long flags; |
| 66 | |
| 67 | spin_lock_irqsave(&asic->lock, flags); |
| 68 | edge = asic3_read_register(asic, |
| 69 | base + ASIC3_GPIO_EdgeTrigger); |
| 70 | edge ^= bit; |
| 71 | asic3_write_register(asic, |
| 72 | base + ASIC3_GPIO_EdgeTrigger, edge); |
| 73 | spin_unlock_irqrestore(&asic->lock, flags); |
| 74 | } |
| 75 | |
| 76 | static void asic3_irq_demux(unsigned int irq, struct irq_desc *desc) |
| 77 | { |
| 78 | int iter, i; |
| 79 | unsigned long flags; |
| 80 | struct asic3 *asic; |
| 81 | |
| 82 | desc->chip->ack(irq); |
| 83 | |
| 84 | asic = desc->handler_data; |
| 85 | |
| 86 | for (iter = 0 ; iter < MAX_ASIC_ISR_LOOPS; iter++) { |
| 87 | u32 status; |
| 88 | int bank; |
| 89 | |
| 90 | spin_lock_irqsave(&asic->lock, flags); |
| 91 | status = asic3_read_register(asic, |
| 92 | ASIC3_OFFSET(INTR, PIntStat)); |
| 93 | spin_unlock_irqrestore(&asic->lock, flags); |
| 94 | |
| 95 | /* Check all ten register bits */ |
| 96 | if ((status & 0x3ff) == 0) |
| 97 | break; |
| 98 | |
| 99 | /* Handle GPIO IRQs */ |
| 100 | for (bank = 0; bank < ASIC3_NUM_GPIO_BANKS; bank++) { |
| 101 | if (status & (1 << bank)) { |
| 102 | unsigned long base, istat; |
| 103 | |
| 104 | base = ASIC3_GPIO_A_Base |
| 105 | + bank * ASIC3_GPIO_Base_INCR; |
| 106 | |
| 107 | spin_lock_irqsave(&asic->lock, flags); |
| 108 | istat = asic3_read_register(asic, |
| 109 | base + |
| 110 | ASIC3_GPIO_IntStatus); |
| 111 | /* Clearing IntStatus */ |
| 112 | asic3_write_register(asic, |
| 113 | base + |
| 114 | ASIC3_GPIO_IntStatus, 0); |
| 115 | spin_unlock_irqrestore(&asic->lock, flags); |
| 116 | |
| 117 | for (i = 0; i < ASIC3_GPIOS_PER_BANK; i++) { |
| 118 | int bit = (1 << i); |
| 119 | unsigned int irqnr; |
| 120 | |
| 121 | if (!(istat & bit)) |
| 122 | continue; |
| 123 | |
| 124 | irqnr = asic->irq_base + |
| 125 | (ASIC3_GPIOS_PER_BANK * bank) |
| 126 | + i; |
| 127 | desc = irq_desc + irqnr; |
| 128 | desc->handle_irq(irqnr, desc); |
| 129 | if (asic->irq_bothedge[bank] & bit) |
| 130 | asic3_irq_flip_edge(asic, base, |
| 131 | bit); |
| 132 | } |
| 133 | } |
| 134 | } |
| 135 | |
| 136 | /* Handle remaining IRQs in the status register */ |
| 137 | for (i = ASIC3_NUM_GPIOS; i < ASIC3_NR_IRQS; i++) { |
| 138 | /* They start at bit 4 and go up */ |
| 139 | if (status & (1 << (i - ASIC3_NUM_GPIOS + 4))) { |
| 140 | desc = irq_desc + + i; |
| 141 | desc->handle_irq(asic->irq_base + i, |
| 142 | desc); |
| 143 | } |
| 144 | } |
| 145 | } |
| 146 | |
| 147 | if (iter >= MAX_ASIC_ISR_LOOPS) |
| 148 | printk(KERN_ERR "%s: interrupt processing overrun\n", |
Harvey Harrison | 145980a | 2008-04-30 00:54:57 -0700 | [diff] [blame] | 149 | __func__); |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 150 | } |
| 151 | |
| 152 | static inline int asic3_irq_to_bank(struct asic3 *asic, int irq) |
| 153 | { |
| 154 | int n; |
| 155 | |
| 156 | n = (irq - asic->irq_base) >> 4; |
| 157 | |
| 158 | return (n * (ASIC3_GPIO_B_Base - ASIC3_GPIO_A_Base)); |
| 159 | } |
| 160 | |
| 161 | static inline int asic3_irq_to_index(struct asic3 *asic, int irq) |
| 162 | { |
| 163 | return (irq - asic->irq_base) & 0xf; |
| 164 | } |
| 165 | |
| 166 | static void asic3_mask_gpio_irq(unsigned int irq) |
| 167 | { |
| 168 | struct asic3 *asic = get_irq_chip_data(irq); |
| 169 | u32 val, bank, index; |
| 170 | unsigned long flags; |
| 171 | |
| 172 | bank = asic3_irq_to_bank(asic, irq); |
| 173 | index = asic3_irq_to_index(asic, irq); |
| 174 | |
| 175 | spin_lock_irqsave(&asic->lock, flags); |
| 176 | val = asic3_read_register(asic, bank + ASIC3_GPIO_Mask); |
| 177 | val |= 1 << index; |
| 178 | asic3_write_register(asic, bank + ASIC3_GPIO_Mask, val); |
| 179 | spin_unlock_irqrestore(&asic->lock, flags); |
| 180 | } |
| 181 | |
| 182 | static void asic3_mask_irq(unsigned int irq) |
| 183 | { |
| 184 | struct asic3 *asic = get_irq_chip_data(irq); |
| 185 | int regval; |
| 186 | unsigned long flags; |
| 187 | |
| 188 | spin_lock_irqsave(&asic->lock, flags); |
| 189 | regval = asic3_read_register(asic, |
| 190 | ASIC3_INTR_Base + |
| 191 | ASIC3_INTR_IntMask); |
| 192 | |
| 193 | regval &= ~(ASIC3_INTMASK_MASK0 << |
| 194 | (irq - (asic->irq_base + ASIC3_NUM_GPIOS))); |
| 195 | |
| 196 | asic3_write_register(asic, |
| 197 | ASIC3_INTR_Base + |
| 198 | ASIC3_INTR_IntMask, |
| 199 | regval); |
| 200 | spin_unlock_irqrestore(&asic->lock, flags); |
| 201 | } |
| 202 | |
| 203 | static void asic3_unmask_gpio_irq(unsigned int irq) |
| 204 | { |
| 205 | struct asic3 *asic = get_irq_chip_data(irq); |
| 206 | u32 val, bank, index; |
| 207 | unsigned long flags; |
| 208 | |
| 209 | bank = asic3_irq_to_bank(asic, irq); |
| 210 | index = asic3_irq_to_index(asic, irq); |
| 211 | |
| 212 | spin_lock_irqsave(&asic->lock, flags); |
| 213 | val = asic3_read_register(asic, bank + ASIC3_GPIO_Mask); |
| 214 | val &= ~(1 << index); |
| 215 | asic3_write_register(asic, bank + ASIC3_GPIO_Mask, val); |
| 216 | spin_unlock_irqrestore(&asic->lock, flags); |
| 217 | } |
| 218 | |
| 219 | static void asic3_unmask_irq(unsigned int irq) |
| 220 | { |
| 221 | struct asic3 *asic = get_irq_chip_data(irq); |
| 222 | int regval; |
| 223 | unsigned long flags; |
| 224 | |
| 225 | spin_lock_irqsave(&asic->lock, flags); |
| 226 | regval = asic3_read_register(asic, |
| 227 | ASIC3_INTR_Base + |
| 228 | ASIC3_INTR_IntMask); |
| 229 | |
| 230 | regval |= (ASIC3_INTMASK_MASK0 << |
| 231 | (irq - (asic->irq_base + ASIC3_NUM_GPIOS))); |
| 232 | |
| 233 | asic3_write_register(asic, |
| 234 | ASIC3_INTR_Base + |
| 235 | ASIC3_INTR_IntMask, |
| 236 | regval); |
| 237 | spin_unlock_irqrestore(&asic->lock, flags); |
| 238 | } |
| 239 | |
| 240 | static int asic3_gpio_irq_type(unsigned int irq, unsigned int type) |
| 241 | { |
| 242 | struct asic3 *asic = get_irq_chip_data(irq); |
| 243 | u32 bank, index; |
| 244 | u16 trigger, level, edge, bit; |
| 245 | unsigned long flags; |
| 246 | |
| 247 | bank = asic3_irq_to_bank(asic, irq); |
| 248 | index = asic3_irq_to_index(asic, irq); |
| 249 | bit = 1<<index; |
| 250 | |
| 251 | spin_lock_irqsave(&asic->lock, flags); |
| 252 | level = asic3_read_register(asic, |
| 253 | bank + ASIC3_GPIO_LevelTrigger); |
| 254 | edge = asic3_read_register(asic, |
| 255 | bank + ASIC3_GPIO_EdgeTrigger); |
| 256 | trigger = asic3_read_register(asic, |
| 257 | bank + ASIC3_GPIO_TriggerType); |
| 258 | asic->irq_bothedge[(irq - asic->irq_base) >> 4] &= ~bit; |
| 259 | |
| 260 | if (type == IRQT_RISING) { |
| 261 | trigger |= bit; |
| 262 | edge |= bit; |
| 263 | } else if (type == IRQT_FALLING) { |
| 264 | trigger |= bit; |
| 265 | edge &= ~bit; |
| 266 | } else if (type == IRQT_BOTHEDGE) { |
| 267 | trigger |= bit; |
Samuel Ortiz | 6f2384c | 2008-06-20 11:02:19 +0200 | [diff] [blame] | 268 | if (asic3_gpio_get(&asic->gpio, irq - asic->irq_base)) |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 269 | edge &= ~bit; |
| 270 | else |
| 271 | edge |= bit; |
| 272 | asic->irq_bothedge[(irq - asic->irq_base) >> 4] |= bit; |
| 273 | } else if (type == IRQT_LOW) { |
| 274 | trigger &= ~bit; |
| 275 | level &= ~bit; |
| 276 | } else if (type == IRQT_HIGH) { |
| 277 | trigger &= ~bit; |
| 278 | level |= bit; |
| 279 | } else { |
| 280 | /* |
| 281 | * if type == IRQT_NOEDGE, we should mask interrupts, but |
| 282 | * be careful to not unmask them if mask was also called. |
| 283 | * Probably need internal state for mask. |
| 284 | */ |
| 285 | printk(KERN_NOTICE "asic3: irq type not changed.\n"); |
| 286 | } |
| 287 | asic3_write_register(asic, bank + ASIC3_GPIO_LevelTrigger, |
| 288 | level); |
| 289 | asic3_write_register(asic, bank + ASIC3_GPIO_EdgeTrigger, |
| 290 | edge); |
| 291 | asic3_write_register(asic, bank + ASIC3_GPIO_TriggerType, |
| 292 | trigger); |
| 293 | spin_unlock_irqrestore(&asic->lock, flags); |
| 294 | return 0; |
| 295 | } |
| 296 | |
| 297 | static struct irq_chip asic3_gpio_irq_chip = { |
| 298 | .name = "ASIC3-GPIO", |
| 299 | .ack = asic3_mask_gpio_irq, |
| 300 | .mask = asic3_mask_gpio_irq, |
| 301 | .unmask = asic3_unmask_gpio_irq, |
| 302 | .set_type = asic3_gpio_irq_type, |
| 303 | }; |
| 304 | |
| 305 | static struct irq_chip asic3_irq_chip = { |
| 306 | .name = "ASIC3", |
| 307 | .ack = asic3_mask_irq, |
| 308 | .mask = asic3_mask_irq, |
| 309 | .unmask = asic3_unmask_irq, |
| 310 | }; |
| 311 | |
| 312 | static int asic3_irq_probe(struct platform_device *pdev) |
| 313 | { |
| 314 | struct asic3 *asic = platform_get_drvdata(pdev); |
| 315 | unsigned long clksel = 0; |
| 316 | unsigned int irq, irq_base; |
| 317 | |
| 318 | asic->irq_nr = platform_get_irq(pdev, 0); |
| 319 | if (asic->irq_nr < 0) |
| 320 | return asic->irq_nr; |
| 321 | |
| 322 | /* turn on clock to IRQ controller */ |
| 323 | clksel |= CLOCK_SEL_CX; |
| 324 | asic3_write_register(asic, ASIC3_OFFSET(CLOCK, SEL), |
| 325 | clksel); |
| 326 | |
| 327 | irq_base = asic->irq_base; |
| 328 | |
| 329 | for (irq = irq_base; irq < irq_base + ASIC3_NR_IRQS; irq++) { |
| 330 | if (irq < asic->irq_base + ASIC3_NUM_GPIOS) |
| 331 | set_irq_chip(irq, &asic3_gpio_irq_chip); |
| 332 | else |
| 333 | set_irq_chip(irq, &asic3_irq_chip); |
| 334 | |
| 335 | set_irq_chip_data(irq, asic); |
| 336 | set_irq_handler(irq, handle_level_irq); |
| 337 | set_irq_flags(irq, IRQF_VALID | IRQF_PROBE); |
| 338 | } |
| 339 | |
| 340 | asic3_write_register(asic, ASIC3_OFFSET(INTR, IntMask), |
| 341 | ASIC3_INTMASK_GINTMASK); |
| 342 | |
| 343 | set_irq_chained_handler(asic->irq_nr, asic3_irq_demux); |
| 344 | set_irq_type(asic->irq_nr, IRQT_RISING); |
| 345 | set_irq_data(asic->irq_nr, asic); |
| 346 | |
| 347 | return 0; |
| 348 | } |
| 349 | |
| 350 | static void asic3_irq_remove(struct platform_device *pdev) |
| 351 | { |
| 352 | struct asic3 *asic = platform_get_drvdata(pdev); |
| 353 | unsigned int irq, irq_base; |
| 354 | |
| 355 | irq_base = asic->irq_base; |
| 356 | |
| 357 | for (irq = irq_base; irq < irq_base + ASIC3_NR_IRQS; irq++) { |
| 358 | set_irq_flags(irq, 0); |
| 359 | set_irq_handler(irq, NULL); |
| 360 | set_irq_chip(irq, NULL); |
| 361 | set_irq_chip_data(irq, NULL); |
| 362 | } |
| 363 | set_irq_chained_handler(asic->irq_nr, NULL); |
| 364 | } |
| 365 | |
| 366 | /* GPIOs */ |
Samuel Ortiz | 6f2384c | 2008-06-20 11:02:19 +0200 | [diff] [blame] | 367 | static int asic3_gpio_direction(struct gpio_chip *chip, |
| 368 | unsigned offset, int out) |
| 369 | { |
| 370 | u32 mask = ASIC3_GPIO_TO_MASK(offset), out_reg; |
| 371 | unsigned int gpio_base; |
| 372 | unsigned long flags; |
| 373 | struct asic3 *asic; |
| 374 | |
| 375 | asic = container_of(chip, struct asic3, gpio); |
| 376 | gpio_base = ASIC3_GPIO_TO_BASE(offset); |
| 377 | |
| 378 | if (gpio_base > ASIC3_GPIO_D_Base) { |
| 379 | printk(KERN_ERR "Invalid base (0x%x) for gpio %d\n", |
| 380 | gpio_base, offset); |
| 381 | return -EINVAL; |
| 382 | } |
| 383 | |
| 384 | spin_lock_irqsave(&asic->lock, flags); |
| 385 | |
| 386 | out_reg = asic3_read_register(asic, gpio_base + ASIC3_GPIO_Direction); |
| 387 | |
| 388 | /* Input is 0, Output is 1 */ |
| 389 | if (out) |
| 390 | out_reg |= mask; |
| 391 | else |
| 392 | out_reg &= ~mask; |
| 393 | |
| 394 | asic3_write_register(asic, gpio_base + ASIC3_GPIO_Direction, out_reg); |
| 395 | |
| 396 | spin_unlock_irqrestore(&asic->lock, flags); |
| 397 | |
| 398 | return 0; |
| 399 | |
| 400 | } |
| 401 | |
| 402 | static int asic3_gpio_direction_input(struct gpio_chip *chip, |
| 403 | unsigned offset) |
| 404 | { |
| 405 | return asic3_gpio_direction(chip, offset, 0); |
| 406 | } |
| 407 | |
| 408 | static int asic3_gpio_direction_output(struct gpio_chip *chip, |
| 409 | unsigned offset, int value) |
| 410 | { |
| 411 | return asic3_gpio_direction(chip, offset, 1); |
| 412 | } |
| 413 | |
| 414 | static int asic3_gpio_get(struct gpio_chip *chip, |
| 415 | unsigned offset) |
| 416 | { |
| 417 | unsigned int gpio_base; |
| 418 | u32 mask = ASIC3_GPIO_TO_MASK(offset); |
| 419 | struct asic3 *asic; |
| 420 | |
| 421 | asic = container_of(chip, struct asic3, gpio); |
| 422 | gpio_base = ASIC3_GPIO_TO_BASE(offset); |
| 423 | |
| 424 | if (gpio_base > ASIC3_GPIO_D_Base) { |
| 425 | printk(KERN_ERR "Invalid base (0x%x) for gpio %d\n", |
| 426 | gpio_base, offset); |
| 427 | return -EINVAL; |
| 428 | } |
| 429 | |
| 430 | return asic3_read_register(asic, gpio_base + ASIC3_GPIO_Status) & mask; |
| 431 | } |
| 432 | |
| 433 | static void asic3_gpio_set(struct gpio_chip *chip, |
| 434 | unsigned offset, int value) |
| 435 | { |
| 436 | u32 mask, out_reg; |
| 437 | unsigned int gpio_base; |
| 438 | unsigned long flags; |
| 439 | struct asic3 *asic; |
| 440 | |
| 441 | asic = container_of(chip, struct asic3, gpio); |
| 442 | gpio_base = ASIC3_GPIO_TO_BASE(offset); |
| 443 | |
| 444 | if (gpio_base > ASIC3_GPIO_D_Base) { |
| 445 | printk(KERN_ERR "Invalid base (0x%x) for gpio %d\n", |
| 446 | gpio_base, offset); |
| 447 | return; |
| 448 | } |
| 449 | |
| 450 | mask = ASIC3_GPIO_TO_MASK(offset); |
| 451 | |
| 452 | spin_lock_irqsave(&asic->lock, flags); |
| 453 | |
| 454 | out_reg = asic3_read_register(asic, gpio_base + ASIC3_GPIO_Out); |
| 455 | |
| 456 | if (value) |
| 457 | out_reg |= mask; |
| 458 | else |
| 459 | out_reg &= ~mask; |
| 460 | |
| 461 | asic3_write_register(asic, gpio_base + ASIC3_GPIO_Out, out_reg); |
| 462 | |
| 463 | spin_unlock_irqrestore(&asic->lock, flags); |
| 464 | |
| 465 | return; |
| 466 | } |
| 467 | |
Samuel Ortiz | 3b26bf1 | 2008-06-20 11:09:51 +0200 | [diff] [blame^] | 468 | static int asic3_gpio_probe(struct platform_device *pdev, |
| 469 | u16 *gpio_config, int num) |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 470 | { |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 471 | struct asic3 *asic = platform_get_drvdata(pdev); |
Samuel Ortiz | 3b26bf1 | 2008-06-20 11:09:51 +0200 | [diff] [blame^] | 472 | u16 alt_reg[ASIC3_NUM_GPIO_BANKS]; |
| 473 | u16 out_reg[ASIC3_NUM_GPIO_BANKS]; |
| 474 | u16 dir_reg[ASIC3_NUM_GPIO_BANKS]; |
| 475 | int i; |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 476 | |
Samuel Ortiz | 3b26bf1 | 2008-06-20 11:09:51 +0200 | [diff] [blame^] | 477 | memset(alt_reg, 0, ASIC3_NUM_GPIO_BANKS); |
| 478 | memset(out_reg, 0, ASIC3_NUM_GPIO_BANKS); |
| 479 | memset(dir_reg, 0, ASIC3_NUM_GPIO_BANKS); |
| 480 | |
| 481 | /* Enable all GPIOs */ |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 482 | asic3_write_register(asic, ASIC3_GPIO_OFFSET(A, Mask), 0xffff); |
| 483 | asic3_write_register(asic, ASIC3_GPIO_OFFSET(B, Mask), 0xffff); |
| 484 | asic3_write_register(asic, ASIC3_GPIO_OFFSET(C, Mask), 0xffff); |
| 485 | asic3_write_register(asic, ASIC3_GPIO_OFFSET(D, Mask), 0xffff); |
| 486 | |
Samuel Ortiz | 3b26bf1 | 2008-06-20 11:09:51 +0200 | [diff] [blame^] | 487 | for (i = 0; i < num; i++) { |
| 488 | u8 alt, pin, dir, init, bank_num, bit_num; |
| 489 | u16 config = gpio_config[i]; |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 490 | |
Samuel Ortiz | 3b26bf1 | 2008-06-20 11:09:51 +0200 | [diff] [blame^] | 491 | pin = ASIC3_CONFIG_GPIO_PIN(config); |
| 492 | alt = ASIC3_CONFIG_GPIO_ALT(config); |
| 493 | dir = ASIC3_CONFIG_GPIO_DIR(config); |
| 494 | init = ASIC3_CONFIG_GPIO_INIT(config); |
| 495 | |
| 496 | bank_num = ASIC3_GPIO_TO_BANK(pin); |
| 497 | bit_num = ASIC3_GPIO_TO_BIT(pin); |
| 498 | |
| 499 | alt_reg[bank_num] |= (alt << bit_num); |
| 500 | out_reg[bank_num] |= (init << bit_num); |
| 501 | dir_reg[bank_num] |= (dir << bit_num); |
| 502 | } |
| 503 | |
| 504 | for (i = 0; i < ASIC3_NUM_GPIO_BANKS; i++) { |
| 505 | asic3_write_register(asic, |
| 506 | ASIC3_BANK_TO_BASE(i) + |
| 507 | ASIC3_GPIO_Direction, |
| 508 | dir_reg[i]); |
| 509 | asic3_write_register(asic, |
| 510 | ASIC3_BANK_TO_BASE(i) + ASIC3_GPIO_Out, |
| 511 | out_reg[i]); |
| 512 | asic3_write_register(asic, |
| 513 | ASIC3_BANK_TO_BASE(i) + |
| 514 | ASIC3_GPIO_AltFunction, |
| 515 | alt_reg[i]); |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 516 | } |
| 517 | |
Samuel Ortiz | 6f2384c | 2008-06-20 11:02:19 +0200 | [diff] [blame] | 518 | return gpiochip_add(&asic->gpio); |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 519 | } |
| 520 | |
Samuel Ortiz | 6f2384c | 2008-06-20 11:02:19 +0200 | [diff] [blame] | 521 | static int asic3_gpio_remove(struct platform_device *pdev) |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 522 | { |
Samuel Ortiz | 6f2384c | 2008-06-20 11:02:19 +0200 | [diff] [blame] | 523 | struct asic3 *asic = platform_get_drvdata(pdev); |
| 524 | |
| 525 | return gpiochip_remove(&asic->gpio); |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 526 | } |
| 527 | |
| 528 | |
| 529 | /* Core */ |
| 530 | static int asic3_probe(struct platform_device *pdev) |
| 531 | { |
| 532 | struct asic3_platform_data *pdata = pdev->dev.platform_data; |
| 533 | struct asic3 *asic; |
| 534 | struct resource *mem; |
| 535 | unsigned long clksel; |
Samuel Ortiz | 6f2384c | 2008-06-20 11:02:19 +0200 | [diff] [blame] | 536 | int ret = 0; |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 537 | |
| 538 | asic = kzalloc(sizeof(struct asic3), GFP_KERNEL); |
Samuel Ortiz | 6f2384c | 2008-06-20 11:02:19 +0200 | [diff] [blame] | 539 | if (asic == NULL) { |
| 540 | printk(KERN_ERR "kzalloc failed\n"); |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 541 | return -ENOMEM; |
Samuel Ortiz | 6f2384c | 2008-06-20 11:02:19 +0200 | [diff] [blame] | 542 | } |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 543 | |
| 544 | spin_lock_init(&asic->lock); |
| 545 | platform_set_drvdata(pdev, asic); |
| 546 | asic->dev = &pdev->dev; |
| 547 | |
| 548 | mem = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
| 549 | if (!mem) { |
| 550 | ret = -ENOMEM; |
| 551 | printk(KERN_ERR "asic3: no MEM resource\n"); |
Samuel Ortiz | 6f2384c | 2008-06-20 11:02:19 +0200 | [diff] [blame] | 552 | goto out_free; |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 553 | } |
| 554 | |
Samuel Ortiz | 6f2384c | 2008-06-20 11:02:19 +0200 | [diff] [blame] | 555 | |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 556 | asic->mapping = ioremap(mem->start, PAGE_SIZE); |
| 557 | if (!asic->mapping) { |
| 558 | ret = -ENOMEM; |
| 559 | printk(KERN_ERR "asic3: couldn't ioremap\n"); |
Samuel Ortiz | 6f2384c | 2008-06-20 11:02:19 +0200 | [diff] [blame] | 560 | goto out_free; |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 561 | } |
| 562 | |
| 563 | asic->irq_base = pdata->irq_base; |
| 564 | |
| 565 | if (pdata && pdata->bus_shift) |
| 566 | asic->bus_shift = 2 - pdata->bus_shift; |
| 567 | else |
| 568 | asic->bus_shift = 0; |
| 569 | |
| 570 | clksel = 0; |
| 571 | asic3_write_register(asic, ASIC3_OFFSET(CLOCK, SEL), clksel); |
| 572 | |
| 573 | ret = asic3_irq_probe(pdev); |
| 574 | if (ret < 0) { |
| 575 | printk(KERN_ERR "asic3: couldn't probe IRQs\n"); |
Samuel Ortiz | 6f2384c | 2008-06-20 11:02:19 +0200 | [diff] [blame] | 576 | goto out_unmap; |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 577 | } |
Samuel Ortiz | 6f2384c | 2008-06-20 11:02:19 +0200 | [diff] [blame] | 578 | |
| 579 | asic->gpio.base = pdata->gpio_base; |
| 580 | asic->gpio.ngpio = ASIC3_NUM_GPIOS; |
| 581 | asic->gpio.get = asic3_gpio_get; |
| 582 | asic->gpio.set = asic3_gpio_set; |
| 583 | asic->gpio.direction_input = asic3_gpio_direction_input; |
| 584 | asic->gpio.direction_output = asic3_gpio_direction_output; |
| 585 | |
Samuel Ortiz | 3b26bf1 | 2008-06-20 11:09:51 +0200 | [diff] [blame^] | 586 | ret = asic3_gpio_probe(pdev, |
| 587 | pdata->gpio_config, |
| 588 | pdata->gpio_config_num); |
Samuel Ortiz | 6f2384c | 2008-06-20 11:02:19 +0200 | [diff] [blame] | 589 | if (ret < 0) { |
| 590 | printk(KERN_ERR "GPIO probe failed\n"); |
| 591 | goto out_irq; |
| 592 | } |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 593 | |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 594 | printk(KERN_INFO "ASIC3 Core driver\n"); |
| 595 | |
| 596 | return 0; |
| 597 | |
Samuel Ortiz | 6f2384c | 2008-06-20 11:02:19 +0200 | [diff] [blame] | 598 | out_irq: |
| 599 | asic3_irq_remove(pdev); |
| 600 | |
| 601 | out_unmap: |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 602 | iounmap(asic->mapping); |
Samuel Ortiz | 6f2384c | 2008-06-20 11:02:19 +0200 | [diff] [blame] | 603 | |
| 604 | out_free: |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 605 | kfree(asic); |
| 606 | |
| 607 | return ret; |
| 608 | } |
| 609 | |
| 610 | static int asic3_remove(struct platform_device *pdev) |
| 611 | { |
Samuel Ortiz | 6f2384c | 2008-06-20 11:02:19 +0200 | [diff] [blame] | 612 | int ret; |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 613 | struct asic3 *asic = platform_get_drvdata(pdev); |
| 614 | |
Samuel Ortiz | 6f2384c | 2008-06-20 11:02:19 +0200 | [diff] [blame] | 615 | ret = asic3_gpio_remove(pdev); |
| 616 | if (ret < 0) |
| 617 | return ret; |
Samuel Ortiz | fa9ff4b | 2008-02-07 00:14:49 -0800 | [diff] [blame] | 618 | asic3_irq_remove(pdev); |
| 619 | |
| 620 | asic3_write_register(asic, ASIC3_OFFSET(CLOCK, SEL), 0); |
| 621 | |
| 622 | iounmap(asic->mapping); |
| 623 | |
| 624 | kfree(asic); |
| 625 | |
| 626 | return 0; |
| 627 | } |
| 628 | |
| 629 | static void asic3_shutdown(struct platform_device *pdev) |
| 630 | { |
| 631 | } |
| 632 | |
| 633 | static struct platform_driver asic3_device_driver = { |
| 634 | .driver = { |
| 635 | .name = "asic3", |
| 636 | }, |
| 637 | .probe = asic3_probe, |
| 638 | .remove = __devexit_p(asic3_remove), |
| 639 | .shutdown = asic3_shutdown, |
| 640 | }; |
| 641 | |
| 642 | static int __init asic3_init(void) |
| 643 | { |
| 644 | int retval = 0; |
| 645 | retval = platform_driver_register(&asic3_device_driver); |
| 646 | return retval; |
| 647 | } |
| 648 | |
| 649 | subsys_initcall(asic3_init); |