1 /*- 2 * Copyright (c) 2011 3 * Ben Gray <ben.r.gray@gmail.com>. 4 * All rights reserved. 5 * 6 * Redistribution and use in source and binary forms, with or without 7 * modification, are permitted provided that the following conditions 8 * are met: 9 * 1. Redistributions of source code must retain the above copyright 10 * notice, this list of conditions and the following disclaimer. 11 * 2. Redistributions in binary form must reproduce the above copyright 12 * notice, this list of conditions and the following disclaimer in the 13 * documentation and/or other materials provided with the distribution. 14 * 15 * THIS SOFTWARE IS PROVIDED BY AUTHOR AND CONTRIBUTORS ``AS IS'' AND 16 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 17 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 18 * ARE DISCLAIMED. IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE 19 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 20 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 21 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 22 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 23 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 24 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 25 * SUCH DAMAGE. 26 */ 27 28 /** 29 * Very simple GPIO (general purpose IO) driver module for TI OMAP SoC's. 30 * 31 * Currently this driver only does the basics, get a value on a pin & set a 32 * value on a pin. Hopefully over time I'll expand this to be a bit more generic 33 * and support interrupts and other various bits on the SoC can do ... in the 34 * meantime this is all you get. 35 * 36 * Beware the OMA datasheet(s) lists GPIO banks 1-6, whereas I've used 0-5 here 37 * in the code. 38 * 39 * 40 */ 41 42 #include <sys/cdefs.h> 43 __FBSDID("$FreeBSD$"); 44 45 #include <sys/param.h> 46 #include <sys/systm.h> 47 #include <sys/bus.h> 48 49 #include <sys/kernel.h> 50 #include <sys/module.h> 51 #include <sys/rman.h> 52 #include <sys/lock.h> 53 #include <sys/mutex.h> 54 #include <sys/gpio.h> 55 56 #include <machine/bus.h> 57 #include <machine/resource.h> 58 59 #include <arm/ti/ti_cpuid.h> 60 #include <arm/ti/ti_gpio.h> 61 #include <arm/ti/ti_scm.h> 62 #include <arm/ti/ti_prcm.h> 63 64 #include <dev/fdt/fdt_common.h> 65 #include <dev/ofw/openfirm.h> 66 #include <dev/ofw/ofw_bus.h> 67 #include <dev/ofw/ofw_bus_subr.h> 68 69 #include "gpio_if.h" 70 #include "ti_gpio_if.h" 71 72 #if !defined(SOC_OMAP4) && !defined(SOC_TI_AM335X) 73 #error "Unknown SoC" 74 #endif 75 76 /* Register definitions */ 77 #define TI_GPIO_REVISION 0x0000 78 #define TI_GPIO_SYSCONFIG 0x0010 79 #define TI_GPIO_IRQSTATUS_RAW_0 0x0024 80 #define TI_GPIO_IRQSTATUS_RAW_1 0x0028 81 #define TI_GPIO_IRQSTATUS_0 0x002C 82 #define TI_GPIO_IRQSTATUS_1 0x0030 83 #define TI_GPIO_IRQSTATUS_SET_0 0x0034 84 #define TI_GPIO_IRQSTATUS_SET_1 0x0038 85 #define TI_GPIO_IRQSTATUS_CLR_0 0x003C 86 #define TI_GPIO_IRQSTATUS_CLR_1 0x0040 87 #define TI_GPIO_IRQWAKEN_0 0x0044 88 #define TI_GPIO_IRQWAKEN_1 0x0048 89 #define TI_GPIO_SYSSTATUS 0x0114 90 #define TI_GPIO_IRQSTATUS1 0x0118 91 #define TI_GPIO_IRQENABLE1 0x011C 92 #define TI_GPIO_WAKEUPENABLE 0x0120 93 #define TI_GPIO_IRQSTATUS2 0x0128 94 #define TI_GPIO_IRQENABLE2 0x012C 95 #define TI_GPIO_CTRL 0x0130 96 #define TI_GPIO_OE 0x0134 97 #define TI_GPIO_DATAIN 0x0138 98 #define TI_GPIO_DATAOUT 0x013C 99 #define TI_GPIO_LEVELDETECT0 0x0140 100 #define TI_GPIO_LEVELDETECT1 0x0144 101 #define TI_GPIO_RISINGDETECT 0x0148 102 #define TI_GPIO_FALLINGDETECT 0x014C 103 #define TI_GPIO_DEBOUNCENABLE 0x0150 104 #define TI_GPIO_DEBOUNCINGTIME 0x0154 105 #define TI_GPIO_CLEARWKUPENA 0x0180 106 #define TI_GPIO_SETWKUENA 0x0184 107 #define TI_GPIO_CLEARDATAOUT 0x0190 108 #define TI_GPIO_SETDATAOUT 0x0194 109 110 /* Other SoC Specific definitions */ 111 #define OMAP4_MAX_GPIO_BANKS 6 112 #define OMAP4_FIRST_GPIO_BANK 1 113 #define OMAP4_INTR_PER_BANK 1 114 #define OMAP4_GPIO_REV 0x50600801 115 #define AM335X_MAX_GPIO_BANKS 4 116 #define AM335X_FIRST_GPIO_BANK 0 117 #define AM335X_INTR_PER_BANK 2 118 #define AM335X_GPIO_REV 0x50600801 119 #define PINS_PER_BANK 32 120 121 static u_int 122 ti_max_gpio_banks(void) 123 { 124 switch(ti_chip()) { 125 #ifdef SOC_OMAP4 126 case CHIP_OMAP_4: 127 return (OMAP4_MAX_GPIO_BANKS); 128 #endif 129 #ifdef SOC_TI_AM335X 130 case CHIP_AM335X: 131 return (AM335X_MAX_GPIO_BANKS); 132 #endif 133 } 134 return (0); 135 } 136 137 static u_int 138 ti_max_gpio_intrs(void) 139 { 140 switch(ti_chip()) { 141 #ifdef SOC_OMAP4 142 case CHIP_OMAP_4: 143 return (OMAP4_MAX_GPIO_BANKS * OMAP4_INTR_PER_BANK); 144 #endif 145 #ifdef SOC_TI_AM335X 146 case CHIP_AM335X: 147 return (AM335X_MAX_GPIO_BANKS * AM335X_INTR_PER_BANK); 148 #endif 149 } 150 return (0); 151 } 152 153 static u_int 154 ti_first_gpio_bank(void) 155 { 156 switch(ti_chip()) { 157 #ifdef SOC_OMAP4 158 case CHIP_OMAP_4: 159 return (OMAP4_FIRST_GPIO_BANK); 160 #endif 161 #ifdef SOC_TI_AM335X 162 case CHIP_AM335X: 163 return (AM335X_FIRST_GPIO_BANK); 164 #endif 165 } 166 return (0); 167 } 168 169 static uint32_t 170 ti_gpio_rev(void) 171 { 172 switch(ti_chip()) { 173 #ifdef SOC_OMAP4 174 case CHIP_OMAP_4: 175 return (OMAP4_GPIO_REV); 176 #endif 177 #ifdef SOC_TI_AM335X 178 case CHIP_AM335X: 179 return (AM335X_GPIO_REV); 180 #endif 181 } 182 return (0); 183 } 184 185 /** 186 * ti_gpio_mem_spec - Resource specification used when allocating resources 187 * ti_gpio_irq_spec - Resource specification used when allocating resources 188 * 189 * This driver module can have up to six independent memory regions, each 190 * region typically controls 32 GPIO pins. 191 * 192 * On OMAP3 and OMAP4 there is only one physical interrupt line per bank, 193 * but there are two set of registers which control the interrupt delivery 194 * to internal subsystems. The first set of registers control the 195 * interrupts delivery to the MPU and the second set control the 196 * interrupts delivery to the DSP. 197 * 198 * On AM335x there are two physical interrupt lines for each GPIO module. 199 * Each interrupt line is controlled by a set of registers. 200 */ 201 static struct resource_spec ti_gpio_mem_spec[] = { 202 { SYS_RES_MEMORY, 0, RF_ACTIVE }, 203 { SYS_RES_MEMORY, 1, RF_ACTIVE | RF_OPTIONAL }, 204 { SYS_RES_MEMORY, 2, RF_ACTIVE | RF_OPTIONAL }, 205 { SYS_RES_MEMORY, 3, RF_ACTIVE | RF_OPTIONAL }, 206 #if !defined(SOC_TI_AM335X) 207 { SYS_RES_MEMORY, 4, RF_ACTIVE | RF_OPTIONAL }, 208 { SYS_RES_MEMORY, 5, RF_ACTIVE | RF_OPTIONAL }, 209 #endif 210 { -1, 0, 0 } 211 }; 212 static struct resource_spec ti_gpio_irq_spec[] = { 213 { SYS_RES_IRQ, 0, RF_ACTIVE }, 214 { SYS_RES_IRQ, 1, RF_ACTIVE | RF_OPTIONAL }, 215 { SYS_RES_IRQ, 2, RF_ACTIVE | RF_OPTIONAL }, 216 { SYS_RES_IRQ, 3, RF_ACTIVE | RF_OPTIONAL }, 217 { SYS_RES_IRQ, 4, RF_ACTIVE | RF_OPTIONAL }, 218 { SYS_RES_IRQ, 5, RF_ACTIVE | RF_OPTIONAL }, 219 #if defined(SOC_TI_AM335X) 220 { SYS_RES_IRQ, 6, RF_ACTIVE | RF_OPTIONAL }, 221 { SYS_RES_IRQ, 7, RF_ACTIVE | RF_OPTIONAL }, 222 #endif 223 { -1, 0, 0 } 224 }; 225 226 /** 227 * Macros for driver mutex locking 228 */ 229 #define TI_GPIO_LOCK(_sc) mtx_lock(&(_sc)->sc_mtx) 230 #define TI_GPIO_UNLOCK(_sc) mtx_unlock(&(_sc)->sc_mtx) 231 #define TI_GPIO_LOCK_INIT(_sc) \ 232 mtx_init(&_sc->sc_mtx, device_get_nameunit(_sc->sc_dev), \ 233 "ti_gpio", MTX_DEF) 234 #define TI_GPIO_LOCK_DESTROY(_sc) mtx_destroy(&_sc->sc_mtx) 235 #define TI_GPIO_ASSERT_LOCKED(_sc) mtx_assert(&_sc->sc_mtx, MA_OWNED) 236 #define TI_GPIO_ASSERT_UNLOCKED(_sc) mtx_assert(&_sc->sc_mtx, MA_NOTOWNED) 237 238 /** 239 * ti_gpio_read_4 - reads a 16-bit value from one of the PADCONFS registers 240 * @sc: GPIO device context 241 * @bank: The bank to read from 242 * @off: The offset of a register from the GPIO register address range 243 * 244 * 245 * RETURNS: 246 * 32-bit value read from the register. 247 */ 248 static inline uint32_t 249 ti_gpio_read_4(struct ti_gpio_softc *sc, unsigned int bank, bus_size_t off) 250 { 251 return (bus_read_4(sc->sc_mem_res[bank], off)); 252 } 253 254 /** 255 * ti_gpio_write_4 - writes a 32-bit value to one of the PADCONFS registers 256 * @sc: GPIO device context 257 * @bank: The bank to write to 258 * @off: The offset of a register from the GPIO register address range 259 * @val: The value to write into the register 260 * 261 * RETURNS: 262 * nothing 263 */ 264 static inline void 265 ti_gpio_write_4(struct ti_gpio_softc *sc, unsigned int bank, bus_size_t off, 266 uint32_t val) 267 { 268 bus_write_4(sc->sc_mem_res[bank], off, val); 269 } 270 271 static inline void 272 ti_gpio_intr_clr(struct ti_gpio_softc *sc, unsigned int bank, uint32_t mask) 273 { 274 275 /* We clear both set of registers. */ 276 ti_gpio_write_4(sc, bank, TI_GPIO_IRQSTATUS_CLR_0, mask); 277 ti_gpio_write_4(sc, bank, TI_GPIO_IRQSTATUS_CLR_1, mask); 278 } 279 280 /** 281 * ti_gpio_pin_max - Returns the maximum number of GPIO pins 282 * @dev: gpio device handle 283 * @maxpin: pointer to a value that upon return will contain the maximum number 284 * of pins in the device. 285 * 286 * 287 * LOCKING: 288 * No locking required, returns static data. 289 * 290 * RETURNS: 291 * Returns 0 on success otherwise an error code 292 */ 293 static int 294 ti_gpio_pin_max(device_t dev, int *maxpin) 295 { 296 struct ti_gpio_softc *sc = device_get_softc(dev); 297 unsigned int i; 298 unsigned int banks = 0; 299 300 /* Calculate how many valid banks we have and then multiply that by 32 to 301 * give use the total number of pins. 302 */ 303 for (i = 0; i < ti_max_gpio_banks(); i++) { 304 if (sc->sc_mem_res[i] != NULL) 305 banks++; 306 } 307 308 *maxpin = (banks * PINS_PER_BANK) - 1; 309 310 return (0); 311 } 312 313 /** 314 * ti_gpio_pin_getcaps - Gets the capabilties of a given pin 315 * @dev: gpio device handle 316 * @pin: the number of the pin 317 * @caps: pointer to a value that upon return will contain the capabilities 318 * 319 * Currently all pins have the same capability, notably: 320 * - GPIO_PIN_INPUT 321 * - GPIO_PIN_OUTPUT 322 * - GPIO_PIN_PULLUP 323 * - GPIO_PIN_PULLDOWN 324 * 325 * LOCKING: 326 * No locking required, returns static data. 327 * 328 * RETURNS: 329 * Returns 0 on success otherwise an error code 330 */ 331 static int 332 ti_gpio_pin_getcaps(device_t dev, uint32_t pin, uint32_t *caps) 333 { 334 struct ti_gpio_softc *sc = device_get_softc(dev); 335 uint32_t bank = (pin / PINS_PER_BANK); 336 337 /* Sanity check the pin number is valid */ 338 if ((bank >= ti_max_gpio_banks()) || (sc->sc_mem_res[bank] == NULL)) 339 return (EINVAL); 340 341 *caps = (GPIO_PIN_INPUT | GPIO_PIN_OUTPUT | GPIO_PIN_PULLUP | 342 GPIO_PIN_PULLDOWN); 343 344 return (0); 345 } 346 347 /** 348 * ti_gpio_pin_getflags - Gets the current flags of a given pin 349 * @dev: gpio device handle 350 * @pin: the number of the pin 351 * @flags: upon return will contain the current flags of the pin 352 * 353 * Reads the current flags of a given pin, here we actually read the H/W 354 * registers to determine the flags, rather than storing the value in the 355 * setflags call. 356 * 357 * LOCKING: 358 * Internally locks the context 359 * 360 * RETURNS: 361 * Returns 0 on success otherwise an error code 362 */ 363 static int 364 ti_gpio_pin_getflags(device_t dev, uint32_t pin, uint32_t *flags) 365 { 366 struct ti_gpio_softc *sc = device_get_softc(dev); 367 uint32_t bank = (pin / PINS_PER_BANK); 368 369 /* Sanity check the pin number is valid */ 370 if ((bank >= ti_max_gpio_banks()) || (sc->sc_mem_res[bank] == NULL)) 371 return (EINVAL); 372 373 /* Get the current pin state */ 374 TI_GPIO_LOCK(sc); 375 TI_GPIO_GET_FLAGS(dev, pin, flags); 376 TI_GPIO_UNLOCK(sc); 377 378 return (0); 379 } 380 381 /** 382 * ti_gpio_pin_getname - Gets the name of a given pin 383 * @dev: gpio device handle 384 * @pin: the number of the pin 385 * @name: buffer to put the name in 386 * 387 * The driver simply calls the pins gpio_n, where 'n' is obviously the number 388 * of the pin. 389 * 390 * LOCKING: 391 * No locking required, returns static data. 392 * 393 * RETURNS: 394 * Returns 0 on success otherwise an error code 395 */ 396 static int 397 ti_gpio_pin_getname(device_t dev, uint32_t pin, char *name) 398 { 399 struct ti_gpio_softc *sc = device_get_softc(dev); 400 uint32_t bank = (pin / PINS_PER_BANK); 401 402 /* Sanity check the pin number is valid */ 403 if ((bank >= ti_max_gpio_banks()) || (sc->sc_mem_res[bank] == NULL)) 404 return (EINVAL); 405 406 /* Set a very simple name */ 407 snprintf(name, GPIOMAXNAME, "gpio_%u", pin); 408 name[GPIOMAXNAME - 1] = '\0'; 409 410 return (0); 411 } 412 413 /** 414 * ti_gpio_pin_setflags - Sets the flags for a given pin 415 * @dev: gpio device handle 416 * @pin: the number of the pin 417 * @flags: the flags to set 418 * 419 * The flags of the pin correspond to things like input/output mode, pull-ups, 420 * pull-downs, etc. This driver doesn't support all flags, only the following: 421 * - GPIO_PIN_INPUT 422 * - GPIO_PIN_OUTPUT 423 * - GPIO_PIN_PULLUP 424 * - GPIO_PIN_PULLDOWN 425 * 426 * LOCKING: 427 * Internally locks the context 428 * 429 * RETURNS: 430 * Returns 0 on success otherwise an error code 431 */ 432 static int 433 ti_gpio_pin_setflags(device_t dev, uint32_t pin, uint32_t flags) 434 { 435 struct ti_gpio_softc *sc = device_get_softc(dev); 436 uint32_t bank = (pin / PINS_PER_BANK); 437 uint32_t mask = (1UL << (pin % PINS_PER_BANK)); 438 uint32_t oe; 439 440 /* Sanity check the pin number is valid */ 441 if ((bank >= ti_max_gpio_banks()) || (sc->sc_mem_res[bank] == NULL)) 442 return (EINVAL); 443 444 /* Set the GPIO mode and state */ 445 TI_GPIO_LOCK(sc); 446 if (TI_GPIO_SET_FLAGS(dev, pin, flags) != 0) { 447 TI_GPIO_UNLOCK(sc); 448 return (EINVAL); 449 } 450 451 /* If configuring as an output set the "output enable" bit */ 452 oe = ti_gpio_read_4(sc, bank, TI_GPIO_OE); 453 if (flags & GPIO_PIN_INPUT) 454 oe |= mask; 455 else 456 oe &= ~mask; 457 ti_gpio_write_4(sc, bank, TI_GPIO_OE, oe); 458 TI_GPIO_UNLOCK(sc); 459 460 return (0); 461 } 462 463 /** 464 * ti_gpio_pin_set - Sets the current level on a GPIO pin 465 * @dev: gpio device handle 466 * @pin: the number of the pin 467 * @value: non-zero value will drive the pin high, otherwise the pin is 468 * driven low. 469 * 470 * 471 * LOCKING: 472 * Internally locks the context 473 * 474 * RETURNS: 475 * Returns 0 on success otherwise a error code 476 */ 477 static int 478 ti_gpio_pin_set(device_t dev, uint32_t pin, unsigned int value) 479 { 480 struct ti_gpio_softc *sc = device_get_softc(dev); 481 uint32_t bank = (pin / PINS_PER_BANK); 482 uint32_t mask = (1UL << (pin % PINS_PER_BANK)); 483 uint32_t reg; 484 485 /* Sanity check the pin number is valid */ 486 if ((bank >= ti_max_gpio_banks()) || (sc->sc_mem_res[bank] == NULL)) 487 return (EINVAL); 488 489 TI_GPIO_LOCK(sc); 490 if (value == GPIO_PIN_LOW) 491 reg = TI_GPIO_CLEARDATAOUT; 492 else 493 reg = TI_GPIO_SETDATAOUT; 494 ti_gpio_write_4(sc, bank, reg, mask); 495 TI_GPIO_UNLOCK(sc); 496 497 return (0); 498 } 499 500 /** 501 * ti_gpio_pin_get - Gets the current level on a GPIO pin 502 * @dev: gpio device handle 503 * @pin: the number of the pin 504 * @value: pointer to a value that upond return will contain the pin value 505 * 506 * The pin must be configured as an input pin beforehand, otherwise this 507 * function will fail. 508 * 509 * LOCKING: 510 * Internally locks the context 511 * 512 * RETURNS: 513 * Returns 0 on success otherwise a error code 514 */ 515 static int 516 ti_gpio_pin_get(device_t dev, uint32_t pin, unsigned int *value) 517 { 518 struct ti_gpio_softc *sc = device_get_softc(dev); 519 uint32_t bank = (pin / PINS_PER_BANK); 520 uint32_t mask = (1UL << (pin % PINS_PER_BANK)); 521 uint32_t oe, reg; 522 523 /* Sanity check the pin number is valid */ 524 if ((bank >= ti_max_gpio_banks()) || (sc->sc_mem_res[bank] == NULL)) 525 return (EINVAL); 526 527 /* 528 * Return data from output latch when set as output and from the 529 * input register otherwise. 530 */ 531 TI_GPIO_LOCK(sc); 532 oe = ti_gpio_read_4(sc, bank, TI_GPIO_OE); 533 if (oe & mask) 534 reg = TI_GPIO_DATAIN; 535 else 536 reg = TI_GPIO_DATAOUT; 537 *value = (ti_gpio_read_4(sc, bank, reg) & mask) ? 1 : 0; 538 TI_GPIO_UNLOCK(sc); 539 540 return (0); 541 } 542 543 /** 544 * ti_gpio_pin_toggle - Toggles a given GPIO pin 545 * @dev: gpio device handle 546 * @pin: the number of the pin 547 * 548 * 549 * LOCKING: 550 * Internally locks the context 551 * 552 * RETURNS: 553 * Returns 0 on success otherwise a error code 554 */ 555 static int 556 ti_gpio_pin_toggle(device_t dev, uint32_t pin) 557 { 558 struct ti_gpio_softc *sc = device_get_softc(dev); 559 uint32_t bank = (pin / PINS_PER_BANK); 560 uint32_t mask = (1UL << (pin % PINS_PER_BANK)); 561 uint32_t reg, val; 562 563 /* Sanity check the pin number is valid */ 564 if ((bank >= ti_max_gpio_banks()) || (sc->sc_mem_res[bank] == NULL)) 565 return (EINVAL); 566 567 /* Toggle the pin */ 568 TI_GPIO_LOCK(sc); 569 val = ti_gpio_read_4(sc, bank, TI_GPIO_DATAOUT); 570 if (val & mask) 571 reg = TI_GPIO_CLEARDATAOUT; 572 else 573 reg = TI_GPIO_SETDATAOUT; 574 ti_gpio_write_4(sc, bank, reg, mask); 575 TI_GPIO_UNLOCK(sc); 576 577 return (0); 578 } 579 580 /** 581 * ti_gpio_intr - ISR for all GPIO modules 582 * @arg: the soft context pointer 583 * 584 * Unsused 585 * 586 * LOCKING: 587 * Internally locks the context 588 * 589 */ 590 static void 591 ti_gpio_intr(void *arg) 592 { 593 struct ti_gpio_softc *sc = arg; 594 595 TI_GPIO_LOCK(sc); 596 /* TODO: something useful */ 597 TI_GPIO_UNLOCK(sc); 598 } 599 600 static int 601 ti_gpio_attach_intr(device_t dev) 602 { 603 int i; 604 struct ti_gpio_softc *sc; 605 606 sc = device_get_softc(dev); 607 for (i = 0; i < ti_max_gpio_intrs(); i++) { 608 if (sc->sc_irq_res[i] == NULL) 609 break; 610 611 /* 612 * Register our interrupt handler for each of the IRQ resources. 613 */ 614 if (bus_setup_intr(dev, sc->sc_irq_res[i], 615 INTR_TYPE_MISC | INTR_MPSAFE, NULL, ti_gpio_intr, sc, 616 &sc->sc_irq_hdl[i]) != 0) { 617 device_printf(dev, 618 "WARNING: unable to register interrupt handler\n"); 619 return (-1); 620 } 621 } 622 623 return (0); 624 } 625 626 static int 627 ti_gpio_detach_intr(device_t dev) 628 { 629 int i; 630 struct ti_gpio_softc *sc; 631 632 /* Teardown our interrupt handlers. */ 633 sc = device_get_softc(dev); 634 for (i = 0; i < ti_max_gpio_intrs(); i++) { 635 if (sc->sc_irq_res[i] == NULL) 636 break; 637 638 if (sc->sc_irq_hdl[i]) { 639 bus_teardown_intr(dev, sc->sc_irq_res[i], 640 sc->sc_irq_hdl[i]); 641 } 642 } 643 644 return (0); 645 } 646 647 static int 648 ti_gpio_bank_init(device_t dev, int bank) 649 { 650 int pin; 651 struct ti_gpio_softc *sc; 652 uint32_t flags, reg_oe; 653 654 sc = device_get_softc(dev); 655 656 /* Enable the interface and functional clocks for the module. */ 657 ti_prcm_clk_enable(GPIO0_CLK + ti_first_gpio_bank() + bank); 658 659 /* 660 * Read the revision number of the module. TI don't publish the 661 * actual revision numbers, so instead the values have been 662 * determined by experimentation. 663 */ 664 sc->sc_revision[bank] = ti_gpio_read_4(sc, bank, TI_GPIO_REVISION); 665 666 /* Check the revision. */ 667 if (sc->sc_revision[bank] != ti_gpio_rev()) { 668 device_printf(dev, "Warning: could not determine the revision " 669 "of %u GPIO module (revision:0x%08x)\n", 670 bank, sc->sc_revision[bank]); 671 return (EINVAL); 672 } 673 674 /* Disable interrupts for all pins. */ 675 ti_gpio_intr_clr(sc, bank, 0xffffffff); 676 677 /* Init OE register based on pads configuration. */ 678 reg_oe = 0xffffffff; 679 for (pin = 0; pin < PINS_PER_BANK; pin++) { 680 TI_GPIO_GET_FLAGS(dev, PINS_PER_BANK * bank + pin, &flags); 681 if (flags & GPIO_PIN_OUTPUT) 682 reg_oe &= ~(1UL << pin); 683 } 684 ti_gpio_write_4(sc, bank, TI_GPIO_OE, reg_oe); 685 686 return (0); 687 } 688 689 /** 690 * ti_gpio_attach - attach function for the driver 691 * @dev: gpio device handle 692 * 693 * Allocates and sets up the driver context for all GPIO banks. This function 694 * expects the memory ranges and IRQs to already be allocated to the driver. 695 * 696 * LOCKING: 697 * None 698 * 699 * RETURNS: 700 * Always returns 0 701 */ 702 static int 703 ti_gpio_attach(device_t dev) 704 { 705 struct ti_gpio_softc *sc; 706 unsigned int i; 707 int err; 708 709 sc = device_get_softc(dev); 710 sc->sc_dev = dev; 711 712 TI_GPIO_LOCK_INIT(sc); 713 714 /* There are up to 6 different GPIO register sets located in different 715 * memory areas on the chip. The memory range should have been set for 716 * the driver when it was added as a child. 717 */ 718 if (bus_alloc_resources(dev, ti_gpio_mem_spec, sc->sc_mem_res) != 0) { 719 device_printf(dev, "Error: could not allocate mem resources\n"); 720 return (ENXIO); 721 } 722 723 /* Request the IRQ resources */ 724 if (bus_alloc_resources(dev, ti_gpio_irq_spec, sc->sc_irq_res) != 0) { 725 bus_release_resources(dev, ti_gpio_mem_spec, sc->sc_mem_res); 726 device_printf(dev, "Error: could not allocate irq resources\n"); 727 return (ENXIO); 728 } 729 730 /* Setup the IRQ resources */ 731 if (ti_gpio_attach_intr(dev) != 0) { 732 ti_gpio_detach_intr(dev); 733 bus_release_resources(dev, ti_gpio_irq_spec, sc->sc_irq_res); 734 bus_release_resources(dev, ti_gpio_mem_spec, sc->sc_mem_res); 735 return (ENXIO); 736 } 737 738 /* We need to go through each block and ensure the clocks are running and 739 * the module is enabled. It might be better to do this only when the 740 * pins are configured which would result in less power used if the GPIO 741 * pins weren't used ... 742 */ 743 for (i = 0; i < ti_max_gpio_banks(); i++) { 744 if (sc->sc_mem_res[i] != NULL) { 745 /* Initialize the GPIO module. */ 746 err = ti_gpio_bank_init(dev, i); 747 if (err != 0) { 748 ti_gpio_detach_intr(dev); 749 bus_release_resources(dev, ti_gpio_irq_spec, 750 sc->sc_irq_res); 751 bus_release_resources(dev, ti_gpio_mem_spec, 752 sc->sc_mem_res); 753 return (err); 754 } 755 } 756 } 757 758 /* Finish of the probe call */ 759 device_add_child(dev, "gpioc", -1); 760 device_add_child(dev, "gpiobus", -1); 761 762 return (bus_generic_attach(dev)); 763 } 764 765 /** 766 * ti_gpio_detach - detach function for the driver 767 * @dev: scm device handle 768 * 769 * Allocates and sets up the driver context, this simply entails creating a 770 * bus mappings for the SCM register set. 771 * 772 * LOCKING: 773 * None 774 * 775 * RETURNS: 776 * Always returns 0 777 */ 778 static int 779 ti_gpio_detach(device_t dev) 780 { 781 struct ti_gpio_softc *sc = device_get_softc(dev); 782 unsigned int i; 783 784 KASSERT(mtx_initialized(&sc->sc_mtx), ("gpio mutex not initialized")); 785 786 /* Disable all interrupts */ 787 for (i = 0; i < ti_max_gpio_banks(); i++) { 788 if (sc->sc_mem_res[i] != NULL) 789 ti_gpio_intr_clr(sc, i, 0xffffffff); 790 } 791 792 bus_generic_detach(dev); 793 794 /* Release the memory and IRQ resources. */ 795 ti_gpio_detach_intr(dev); 796 bus_release_resources(dev, ti_gpio_irq_spec, sc->sc_irq_res); 797 bus_release_resources(dev, ti_gpio_mem_spec, sc->sc_mem_res); 798 799 TI_GPIO_LOCK_DESTROY(sc); 800 801 return (0); 802 } 803 804 static phandle_t 805 ti_gpio_get_node(device_t bus, device_t dev) 806 { 807 808 /* We only have one child, the GPIO bus, which needs our own node. */ 809 return (ofw_bus_get_node(bus)); 810 } 811 812 static device_method_t ti_gpio_methods[] = { 813 DEVMETHOD(device_attach, ti_gpio_attach), 814 DEVMETHOD(device_detach, ti_gpio_detach), 815 816 /* GPIO protocol */ 817 DEVMETHOD(gpio_pin_max, ti_gpio_pin_max), 818 DEVMETHOD(gpio_pin_getname, ti_gpio_pin_getname), 819 DEVMETHOD(gpio_pin_getflags, ti_gpio_pin_getflags), 820 DEVMETHOD(gpio_pin_getcaps, ti_gpio_pin_getcaps), 821 DEVMETHOD(gpio_pin_setflags, ti_gpio_pin_setflags), 822 DEVMETHOD(gpio_pin_get, ti_gpio_pin_get), 823 DEVMETHOD(gpio_pin_set, ti_gpio_pin_set), 824 DEVMETHOD(gpio_pin_toggle, ti_gpio_pin_toggle), 825 826 /* ofw_bus interface */ 827 DEVMETHOD(ofw_bus_get_node, ti_gpio_get_node), 828 829 {0, 0}, 830 }; 831 832 driver_t ti_gpio_driver = { 833 "gpio", 834 ti_gpio_methods, 835 sizeof(struct ti_gpio_softc), 836 }; 837