1 /*- 2 * Copyright (c) 2009 Oleksandr Tymoshenko <gonzo@freebsd.org> 3 * All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright 9 * notice, this list of conditions and the following disclaimer. 10 * 2. Redistributions in binary form must reproduce the above copyright 11 * notice, this list of conditions and the following disclaimer in the 12 * documentation and/or other materials provided with the distribution. 13 * 14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 17 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 24 * SUCH DAMAGE. 25 */ 26 27 #include <sys/cdefs.h> 28 __FBSDID("$FreeBSD$"); 29 30 #include <sys/param.h> 31 #include <sys/systm.h> 32 #include <sys/bus.h> 33 #include <sys/gpio.h> 34 #include <sys/intr.h> 35 #include <sys/kernel.h> 36 #include <sys/malloc.h> 37 #include <sys/module.h> 38 39 #include <dev/gpio/gpiobusvar.h> 40 41 #include "gpiobus_if.h" 42 43 #undef GPIOBUS_DEBUG 44 #ifdef GPIOBUS_DEBUG 45 #define dprintf printf 46 #else 47 #define dprintf(x, arg...) 48 #endif 49 50 static void gpiobus_print_pins(struct gpiobus_ivar *, char *, size_t); 51 static int gpiobus_parse_pins(struct gpiobus_softc *, device_t, int); 52 static int gpiobus_probe(device_t); 53 static int gpiobus_attach(device_t); 54 static int gpiobus_detach(device_t); 55 static int gpiobus_suspend(device_t); 56 static int gpiobus_resume(device_t); 57 static void gpiobus_probe_nomatch(device_t, device_t); 58 static int gpiobus_print_child(device_t, device_t); 59 static int gpiobus_child_location_str(device_t, device_t, char *, size_t); 60 static int gpiobus_child_pnpinfo_str(device_t, device_t, char *, size_t); 61 static device_t gpiobus_add_child(device_t, u_int, const char *, int); 62 static void gpiobus_hinted_child(device_t, const char *, int); 63 64 /* 65 * GPIOBUS interface 66 */ 67 static int gpiobus_acquire_bus(device_t, device_t, int); 68 static void gpiobus_release_bus(device_t, device_t); 69 static int gpiobus_pin_setflags(device_t, device_t, uint32_t, uint32_t); 70 static int gpiobus_pin_getflags(device_t, device_t, uint32_t, uint32_t*); 71 static int gpiobus_pin_getcaps(device_t, device_t, uint32_t, uint32_t*); 72 static int gpiobus_pin_set(device_t, device_t, uint32_t, unsigned int); 73 static int gpiobus_pin_get(device_t, device_t, uint32_t, unsigned int*); 74 static int gpiobus_pin_toggle(device_t, device_t, uint32_t); 75 76 /* 77 * XXX -> Move me to better place - gpio_subr.c? 78 * Also, this function must be changed when interrupt configuration 79 * data will be moved into struct resource. 80 */ 81 #ifdef INTRNG 82 static void 83 gpio_destruct_map_data(struct intr_map_data *map_data) 84 { 85 86 KASSERT(map_data->type == INTR_MAP_DATA_GPIO, 87 ("%s: bad map_data type %d", __func__, map_data->type)); 88 89 free(map_data, M_DEVBUF); 90 } 91 92 struct resource * 93 gpio_alloc_intr_resource(device_t consumer_dev, int *rid, u_int alloc_flags, 94 gpio_pin_t pin, uint32_t intr_mode) 95 { 96 int rv; 97 u_int irq; 98 struct intr_map_data_gpio *gpio_data; 99 struct resource *res; 100 101 gpio_data = malloc(sizeof(*gpio_data), M_DEVBUF, M_WAITOK | M_ZERO); 102 gpio_data->hdr.type = INTR_MAP_DATA_GPIO; 103 gpio_data->hdr.destruct = gpio_destruct_map_data; 104 gpio_data->gpio_pin_num = pin->pin; 105 gpio_data->gpio_pin_flags = pin->flags; 106 gpio_data->gpio_intr_mode = intr_mode; 107 108 rv = intr_map_irq(pin->dev, 0, (struct intr_map_data *)gpio_data, 109 &irq); 110 if (rv != 0) { 111 gpio_destruct_map_data((struct intr_map_data *)gpio_data); 112 return (NULL); 113 } 114 115 res = bus_alloc_resource(consumer_dev, SYS_RES_IRQ, rid, irq, irq, 1, 116 alloc_flags); 117 if (res == NULL) { 118 gpio_destruct_map_data((struct intr_map_data *)gpio_data); 119 return (NULL); 120 } 121 rman_set_virtual(res, gpio_data); 122 return (res); 123 } 124 #else 125 struct resource * 126 gpio_alloc_intr_resource(device_t consumer_dev, int *rid, u_int alloc_flags, 127 gpio_pin_t pin, uint32_t intr_mode) 128 { 129 130 return (NULL); 131 } 132 #endif 133 134 int 135 gpio_check_flags(uint32_t caps, uint32_t flags) 136 { 137 138 /* Check for unwanted flags. */ 139 if ((flags & caps) == 0 || (flags & caps) != flags) 140 return (EINVAL); 141 /* Cannot mix input/output together. */ 142 if (flags & GPIO_PIN_INPUT && flags & GPIO_PIN_OUTPUT) 143 return (EINVAL); 144 /* Cannot mix pull-up/pull-down together. */ 145 if (flags & GPIO_PIN_PULLUP && flags & GPIO_PIN_PULLDOWN) 146 return (EINVAL); 147 148 return (0); 149 } 150 151 static void 152 gpiobus_print_pins(struct gpiobus_ivar *devi, char *buf, size_t buflen) 153 { 154 char tmp[128]; 155 int i, range_start, range_stop, need_coma; 156 157 if (devi->npins == 0) 158 return; 159 160 need_coma = 0; 161 range_start = range_stop = devi->pins[0]; 162 for (i = 1; i < devi->npins; i++) { 163 if (devi->pins[i] != (range_stop + 1)) { 164 if (need_coma) 165 strlcat(buf, ",", buflen); 166 memset(tmp, 0, sizeof(tmp)); 167 if (range_start != range_stop) 168 snprintf(tmp, sizeof(tmp) - 1, "%d-%d", 169 range_start, range_stop); 170 else 171 snprintf(tmp, sizeof(tmp) - 1, "%d", 172 range_start); 173 strlcat(buf, tmp, buflen); 174 175 range_start = range_stop = devi->pins[i]; 176 need_coma = 1; 177 } 178 else 179 range_stop++; 180 } 181 182 if (need_coma) 183 strlcat(buf, ",", buflen); 184 memset(tmp, 0, sizeof(tmp)); 185 if (range_start != range_stop) 186 snprintf(tmp, sizeof(tmp) - 1, "%d-%d", 187 range_start, range_stop); 188 else 189 snprintf(tmp, sizeof(tmp) - 1, "%d", 190 range_start); 191 strlcat(buf, tmp, buflen); 192 } 193 194 device_t 195 gpiobus_attach_bus(device_t dev) 196 { 197 device_t busdev; 198 199 busdev = device_add_child(dev, "gpiobus", -1); 200 if (busdev == NULL) 201 return (NULL); 202 if (device_add_child(dev, "gpioc", -1) == NULL) { 203 device_delete_child(dev, busdev); 204 return (NULL); 205 } 206 #ifdef FDT 207 ofw_gpiobus_register_provider(dev); 208 #endif 209 bus_generic_attach(dev); 210 211 return (busdev); 212 } 213 214 int 215 gpiobus_detach_bus(device_t dev) 216 { 217 int err; 218 219 #ifdef FDT 220 ofw_gpiobus_unregister_provider(dev); 221 #endif 222 err = bus_generic_detach(dev); 223 if (err != 0) 224 return (err); 225 226 return (device_delete_children(dev)); 227 } 228 229 int 230 gpiobus_init_softc(device_t dev) 231 { 232 struct gpiobus_softc *sc; 233 234 sc = GPIOBUS_SOFTC(dev); 235 sc->sc_busdev = dev; 236 sc->sc_dev = device_get_parent(dev); 237 sc->sc_intr_rman.rm_type = RMAN_ARRAY; 238 sc->sc_intr_rman.rm_descr = "GPIO Interrupts"; 239 if (rman_init(&sc->sc_intr_rman) != 0 || 240 rman_manage_region(&sc->sc_intr_rman, 0, ~0) != 0) 241 panic("%s: failed to set up rman.", __func__); 242 243 if (GPIO_PIN_MAX(sc->sc_dev, &sc->sc_npins) != 0) 244 return (ENXIO); 245 246 KASSERT(sc->sc_npins >= 0, ("GPIO device with no pins")); 247 248 /* Pins = GPIO_PIN_MAX() + 1 */ 249 sc->sc_npins++; 250 251 sc->sc_pins = malloc(sizeof(*sc->sc_pins) * sc->sc_npins, M_DEVBUF, 252 M_NOWAIT | M_ZERO); 253 if (sc->sc_pins == NULL) 254 return (ENOMEM); 255 256 /* Initialize the bus lock. */ 257 GPIOBUS_LOCK_INIT(sc); 258 259 return (0); 260 } 261 262 int 263 gpiobus_alloc_ivars(struct gpiobus_ivar *devi) 264 { 265 266 /* Allocate pins and flags memory. */ 267 devi->pins = malloc(sizeof(uint32_t) * devi->npins, M_DEVBUF, 268 M_NOWAIT | M_ZERO); 269 if (devi->pins == NULL) 270 return (ENOMEM); 271 devi->flags = malloc(sizeof(uint32_t) * devi->npins, M_DEVBUF, 272 M_NOWAIT | M_ZERO); 273 if (devi->flags == NULL) { 274 free(devi->pins, M_DEVBUF); 275 return (ENOMEM); 276 } 277 278 return (0); 279 } 280 281 void 282 gpiobus_free_ivars(struct gpiobus_ivar *devi) 283 { 284 285 if (devi->flags) { 286 free(devi->flags, M_DEVBUF); 287 devi->flags = NULL; 288 } 289 if (devi->pins) { 290 free(devi->pins, M_DEVBUF); 291 devi->pins = NULL; 292 } 293 } 294 295 int 296 gpiobus_acquire_pin(device_t bus, uint32_t pin) 297 { 298 struct gpiobus_softc *sc; 299 300 sc = device_get_softc(bus); 301 /* Consistency check. */ 302 if (pin >= sc->sc_npins) { 303 device_printf(bus, 304 "invalid pin %d, max: %d\n", pin, sc->sc_npins - 1); 305 return (-1); 306 } 307 /* Mark pin as mapped and give warning if it's already mapped. */ 308 if (sc->sc_pins[pin].mapped) { 309 device_printf(bus, "warning: pin %d is already mapped\n", pin); 310 return (-1); 311 } 312 sc->sc_pins[pin].mapped = 1; 313 314 return (0); 315 } 316 317 /* Release mapped pin */ 318 int 319 gpiobus_release_pin(device_t bus, uint32_t pin) 320 { 321 struct gpiobus_softc *sc; 322 323 sc = device_get_softc(bus); 324 /* Consistency check. */ 325 if (pin >= sc->sc_npins) { 326 device_printf(bus, 327 "gpiobus_acquire_pin: invalid pin %d, max=%d\n", 328 pin, sc->sc_npins - 1); 329 return (-1); 330 } 331 332 if (!sc->sc_pins[pin].mapped) { 333 device_printf(bus, "gpiobus_acquire_pin: pin %d is not mapped\n", pin); 334 return (-1); 335 } 336 sc->sc_pins[pin].mapped = 0; 337 338 return (0); 339 } 340 341 static int 342 gpiobus_parse_pins(struct gpiobus_softc *sc, device_t child, int mask) 343 { 344 struct gpiobus_ivar *devi = GPIOBUS_IVAR(child); 345 int i, npins; 346 347 npins = 0; 348 for (i = 0; i < 32; i++) { 349 if (mask & (1 << i)) 350 npins++; 351 } 352 if (npins == 0) { 353 device_printf(child, "empty pin mask\n"); 354 return (EINVAL); 355 } 356 devi->npins = npins; 357 if (gpiobus_alloc_ivars(devi) != 0) { 358 device_printf(child, "cannot allocate device ivars\n"); 359 return (EINVAL); 360 } 361 npins = 0; 362 for (i = 0; i < 32; i++) { 363 if ((mask & (1 << i)) == 0) 364 continue; 365 /* Reserve the GPIO pin. */ 366 if (gpiobus_acquire_pin(sc->sc_busdev, i) != 0) { 367 gpiobus_free_ivars(devi); 368 return (EINVAL); 369 } 370 devi->pins[npins++] = i; 371 /* Use the child name as pin name. */ 372 GPIOBUS_PIN_SETNAME(sc->sc_busdev, i, 373 device_get_nameunit(child)); 374 } 375 376 return (0); 377 } 378 379 static int 380 gpiobus_probe(device_t dev) 381 { 382 device_set_desc(dev, "GPIO bus"); 383 384 return (BUS_PROBE_GENERIC); 385 } 386 387 static int 388 gpiobus_attach(device_t dev) 389 { 390 int err; 391 392 err = gpiobus_init_softc(dev); 393 if (err != 0) 394 return (err); 395 396 /* 397 * Get parent's pins and mark them as unmapped 398 */ 399 bus_generic_probe(dev); 400 bus_enumerate_hinted_children(dev); 401 402 return (bus_generic_attach(dev)); 403 } 404 405 /* 406 * Since this is not a self-enumerating bus, and since we always add 407 * children in attach, we have to always delete children here. 408 */ 409 static int 410 gpiobus_detach(device_t dev) 411 { 412 struct gpiobus_softc *sc; 413 struct gpiobus_ivar *devi; 414 device_t *devlist; 415 int i, err, ndevs; 416 417 sc = GPIOBUS_SOFTC(dev); 418 KASSERT(mtx_initialized(&sc->sc_mtx), 419 ("gpiobus mutex not initialized")); 420 GPIOBUS_LOCK_DESTROY(sc); 421 422 if ((err = bus_generic_detach(dev)) != 0) 423 return (err); 424 425 if ((err = device_get_children(dev, &devlist, &ndevs)) != 0) 426 return (err); 427 for (i = 0; i < ndevs; i++) { 428 devi = GPIOBUS_IVAR(devlist[i]); 429 gpiobus_free_ivars(devi); 430 resource_list_free(&devi->rl); 431 free(devi, M_DEVBUF); 432 device_delete_child(dev, devlist[i]); 433 } 434 free(devlist, M_TEMP); 435 rman_fini(&sc->sc_intr_rman); 436 if (sc->sc_pins) { 437 for (i = 0; i < sc->sc_npins; i++) { 438 if (sc->sc_pins[i].name != NULL) 439 free(sc->sc_pins[i].name, M_DEVBUF); 440 sc->sc_pins[i].name = NULL; 441 } 442 free(sc->sc_pins, M_DEVBUF); 443 sc->sc_pins = NULL; 444 } 445 446 return (0); 447 } 448 449 static int 450 gpiobus_suspend(device_t dev) 451 { 452 453 return (bus_generic_suspend(dev)); 454 } 455 456 static int 457 gpiobus_resume(device_t dev) 458 { 459 460 return (bus_generic_resume(dev)); 461 } 462 463 static void 464 gpiobus_probe_nomatch(device_t dev, device_t child) 465 { 466 char pins[128]; 467 struct gpiobus_ivar *devi; 468 469 devi = GPIOBUS_IVAR(child); 470 memset(pins, 0, sizeof(pins)); 471 gpiobus_print_pins(devi, pins, sizeof(pins)); 472 if (devi->npins > 1) 473 device_printf(dev, "<unknown device> at pins %s", pins); 474 else 475 device_printf(dev, "<unknown device> at pin %s", pins); 476 resource_list_print_type(&devi->rl, "irq", SYS_RES_IRQ, "%jd"); 477 printf("\n"); 478 } 479 480 static int 481 gpiobus_print_child(device_t dev, device_t child) 482 { 483 char pins[128]; 484 int retval = 0; 485 struct gpiobus_ivar *devi; 486 487 devi = GPIOBUS_IVAR(child); 488 memset(pins, 0, sizeof(pins)); 489 retval += bus_print_child_header(dev, child); 490 if (devi->npins > 0) { 491 if (devi->npins > 1) 492 retval += printf(" at pins "); 493 else 494 retval += printf(" at pin "); 495 gpiobus_print_pins(devi, pins, sizeof(pins)); 496 retval += printf("%s", pins); 497 } 498 resource_list_print_type(&devi->rl, "irq", SYS_RES_IRQ, "%jd"); 499 retval += bus_print_child_footer(dev, child); 500 501 return (retval); 502 } 503 504 static int 505 gpiobus_child_location_str(device_t bus, device_t child, char *buf, 506 size_t buflen) 507 { 508 struct gpiobus_ivar *devi; 509 510 devi = GPIOBUS_IVAR(child); 511 if (devi->npins > 1) 512 strlcpy(buf, "pins=", buflen); 513 else 514 strlcpy(buf, "pin=", buflen); 515 gpiobus_print_pins(devi, buf, buflen); 516 517 return (0); 518 } 519 520 static int 521 gpiobus_child_pnpinfo_str(device_t bus, device_t child, char *buf, 522 size_t buflen) 523 { 524 525 *buf = '\0'; 526 return (0); 527 } 528 529 static device_t 530 gpiobus_add_child(device_t dev, u_int order, const char *name, int unit) 531 { 532 device_t child; 533 struct gpiobus_ivar *devi; 534 535 child = device_add_child_ordered(dev, order, name, unit); 536 if (child == NULL) 537 return (child); 538 devi = malloc(sizeof(struct gpiobus_ivar), M_DEVBUF, M_NOWAIT | M_ZERO); 539 if (devi == NULL) { 540 device_delete_child(dev, child); 541 return (NULL); 542 } 543 resource_list_init(&devi->rl); 544 device_set_ivars(child, devi); 545 546 return (child); 547 } 548 549 static void 550 gpiobus_hinted_child(device_t bus, const char *dname, int dunit) 551 { 552 struct gpiobus_softc *sc = GPIOBUS_SOFTC(bus); 553 struct gpiobus_ivar *devi; 554 device_t child; 555 int irq, pins; 556 557 child = BUS_ADD_CHILD(bus, 0, dname, dunit); 558 devi = GPIOBUS_IVAR(child); 559 resource_int_value(dname, dunit, "pins", &pins); 560 if (gpiobus_parse_pins(sc, child, pins)) { 561 resource_list_free(&devi->rl); 562 free(devi, M_DEVBUF); 563 device_delete_child(bus, child); 564 } 565 if (resource_int_value(dname, dunit, "irq", &irq) == 0) { 566 if (bus_set_resource(child, SYS_RES_IRQ, 0, irq, 1) != 0) 567 device_printf(bus, 568 "warning: bus_set_resource() failed\n"); 569 } 570 } 571 572 static int 573 gpiobus_set_resource(device_t dev, device_t child, int type, int rid, 574 rman_res_t start, rman_res_t count) 575 { 576 struct gpiobus_ivar *devi; 577 struct resource_list_entry *rle; 578 579 dprintf("%s: entry (%p, %p, %d, %d, %p, %ld)\n", 580 __func__, dev, child, type, rid, (void *)(intptr_t)start, count); 581 devi = GPIOBUS_IVAR(child); 582 rle = resource_list_add(&devi->rl, type, rid, start, 583 start + count - 1, count); 584 if (rle == NULL) 585 return (ENXIO); 586 587 return (0); 588 } 589 590 static struct resource * 591 gpiobus_alloc_resource(device_t bus, device_t child, int type, int *rid, 592 rman_res_t start, rman_res_t end, rman_res_t count, u_int flags) 593 { 594 struct gpiobus_softc *sc; 595 struct resource *rv; 596 struct resource_list *rl; 597 struct resource_list_entry *rle; 598 int isdefault; 599 600 if (type != SYS_RES_IRQ) 601 return (NULL); 602 isdefault = (RMAN_IS_DEFAULT_RANGE(start, end) && count == 1); 603 rle = NULL; 604 if (isdefault) { 605 rl = BUS_GET_RESOURCE_LIST(bus, child); 606 if (rl == NULL) 607 return (NULL); 608 rle = resource_list_find(rl, type, *rid); 609 if (rle == NULL) 610 return (NULL); 611 if (rle->res != NULL) 612 panic("%s: resource entry is busy", __func__); 613 start = rle->start; 614 count = rle->count; 615 end = rle->end; 616 } 617 sc = device_get_softc(bus); 618 rv = rman_reserve_resource(&sc->sc_intr_rman, start, end, count, flags, 619 child); 620 if (rv == NULL) 621 return (NULL); 622 rman_set_rid(rv, *rid); 623 if ((flags & RF_ACTIVE) != 0 && 624 bus_activate_resource(child, type, *rid, rv) != 0) { 625 rman_release_resource(rv); 626 return (NULL); 627 } 628 629 return (rv); 630 } 631 632 static int 633 gpiobus_release_resource(device_t bus __unused, device_t child, int type, 634 int rid, struct resource *r) 635 { 636 int error; 637 638 if (rman_get_flags(r) & RF_ACTIVE) { 639 error = bus_deactivate_resource(child, type, rid, r); 640 if (error) 641 return (error); 642 } 643 644 return (rman_release_resource(r)); 645 } 646 647 static struct resource_list * 648 gpiobus_get_resource_list(device_t bus __unused, device_t child) 649 { 650 struct gpiobus_ivar *ivar; 651 652 ivar = GPIOBUS_IVAR(child); 653 654 return (&ivar->rl); 655 } 656 657 static int 658 gpiobus_acquire_bus(device_t busdev, device_t child, int how) 659 { 660 struct gpiobus_softc *sc; 661 662 sc = device_get_softc(busdev); 663 GPIOBUS_ASSERT_UNLOCKED(sc); 664 GPIOBUS_LOCK(sc); 665 if (sc->sc_owner != NULL) { 666 if (sc->sc_owner == child) 667 panic("%s: %s still owns the bus.", 668 device_get_nameunit(busdev), 669 device_get_nameunit(child)); 670 if (how == GPIOBUS_DONTWAIT) { 671 GPIOBUS_UNLOCK(sc); 672 return (EWOULDBLOCK); 673 } 674 while (sc->sc_owner != NULL) 675 mtx_sleep(sc, &sc->sc_mtx, 0, "gpiobuswait", 0); 676 } 677 sc->sc_owner = child; 678 GPIOBUS_UNLOCK(sc); 679 680 return (0); 681 } 682 683 static void 684 gpiobus_release_bus(device_t busdev, device_t child) 685 { 686 struct gpiobus_softc *sc; 687 688 sc = device_get_softc(busdev); 689 GPIOBUS_ASSERT_UNLOCKED(sc); 690 GPIOBUS_LOCK(sc); 691 if (sc->sc_owner == NULL) 692 panic("%s: %s releasing unowned bus.", 693 device_get_nameunit(busdev), 694 device_get_nameunit(child)); 695 if (sc->sc_owner != child) 696 panic("%s: %s trying to release bus owned by %s", 697 device_get_nameunit(busdev), 698 device_get_nameunit(child), 699 device_get_nameunit(sc->sc_owner)); 700 sc->sc_owner = NULL; 701 wakeup(sc); 702 GPIOBUS_UNLOCK(sc); 703 } 704 705 static int 706 gpiobus_pin_setflags(device_t dev, device_t child, uint32_t pin, 707 uint32_t flags) 708 { 709 struct gpiobus_softc *sc = GPIOBUS_SOFTC(dev); 710 struct gpiobus_ivar *devi = GPIOBUS_IVAR(child); 711 uint32_t caps; 712 713 if (pin >= devi->npins) 714 return (EINVAL); 715 if (GPIO_PIN_GETCAPS(sc->sc_dev, devi->pins[pin], &caps) != 0) 716 return (EINVAL); 717 if (gpio_check_flags(caps, flags) != 0) 718 return (EINVAL); 719 720 return (GPIO_PIN_SETFLAGS(sc->sc_dev, devi->pins[pin], flags)); 721 } 722 723 static int 724 gpiobus_pin_getflags(device_t dev, device_t child, uint32_t pin, 725 uint32_t *flags) 726 { 727 struct gpiobus_softc *sc = GPIOBUS_SOFTC(dev); 728 struct gpiobus_ivar *devi = GPIOBUS_IVAR(child); 729 730 if (pin >= devi->npins) 731 return (EINVAL); 732 733 return GPIO_PIN_GETFLAGS(sc->sc_dev, devi->pins[pin], flags); 734 } 735 736 static int 737 gpiobus_pin_getcaps(device_t dev, device_t child, uint32_t pin, 738 uint32_t *caps) 739 { 740 struct gpiobus_softc *sc = GPIOBUS_SOFTC(dev); 741 struct gpiobus_ivar *devi = GPIOBUS_IVAR(child); 742 743 if (pin >= devi->npins) 744 return (EINVAL); 745 746 return GPIO_PIN_GETCAPS(sc->sc_dev, devi->pins[pin], caps); 747 } 748 749 static int 750 gpiobus_pin_set(device_t dev, device_t child, uint32_t pin, 751 unsigned int value) 752 { 753 struct gpiobus_softc *sc = GPIOBUS_SOFTC(dev); 754 struct gpiobus_ivar *devi = GPIOBUS_IVAR(child); 755 756 if (pin >= devi->npins) 757 return (EINVAL); 758 759 return GPIO_PIN_SET(sc->sc_dev, devi->pins[pin], value); 760 } 761 762 static int 763 gpiobus_pin_get(device_t dev, device_t child, uint32_t pin, 764 unsigned int *value) 765 { 766 struct gpiobus_softc *sc = GPIOBUS_SOFTC(dev); 767 struct gpiobus_ivar *devi = GPIOBUS_IVAR(child); 768 769 if (pin >= devi->npins) 770 return (EINVAL); 771 772 return GPIO_PIN_GET(sc->sc_dev, devi->pins[pin], value); 773 } 774 775 static int 776 gpiobus_pin_toggle(device_t dev, device_t child, uint32_t pin) 777 { 778 struct gpiobus_softc *sc = GPIOBUS_SOFTC(dev); 779 struct gpiobus_ivar *devi = GPIOBUS_IVAR(child); 780 781 if (pin >= devi->npins) 782 return (EINVAL); 783 784 return GPIO_PIN_TOGGLE(sc->sc_dev, devi->pins[pin]); 785 } 786 787 static int 788 gpiobus_pin_getname(device_t dev, uint32_t pin, char *name) 789 { 790 struct gpiobus_softc *sc; 791 792 sc = GPIOBUS_SOFTC(dev); 793 if (pin > sc->sc_npins) 794 return (EINVAL); 795 /* Did we have a name for this pin ? */ 796 if (sc->sc_pins[pin].name != NULL) { 797 memcpy(name, sc->sc_pins[pin].name, GPIOMAXNAME); 798 return (0); 799 } 800 801 /* Return the default pin name. */ 802 return (GPIO_PIN_GETNAME(device_get_parent(dev), pin, name)); 803 } 804 805 static int 806 gpiobus_pin_setname(device_t dev, uint32_t pin, const char *name) 807 { 808 struct gpiobus_softc *sc; 809 810 sc = GPIOBUS_SOFTC(dev); 811 if (pin > sc->sc_npins) 812 return (EINVAL); 813 if (name == NULL) 814 return (EINVAL); 815 /* Save the pin name. */ 816 if (sc->sc_pins[pin].name == NULL) 817 sc->sc_pins[pin].name = malloc(GPIOMAXNAME, M_DEVBUF, 818 M_WAITOK | M_ZERO); 819 strlcpy(sc->sc_pins[pin].name, name, GPIOMAXNAME); 820 821 return (0); 822 } 823 824 static device_method_t gpiobus_methods[] = { 825 /* Device interface */ 826 DEVMETHOD(device_probe, gpiobus_probe), 827 DEVMETHOD(device_attach, gpiobus_attach), 828 DEVMETHOD(device_detach, gpiobus_detach), 829 DEVMETHOD(device_shutdown, bus_generic_shutdown), 830 DEVMETHOD(device_suspend, gpiobus_suspend), 831 DEVMETHOD(device_resume, gpiobus_resume), 832 833 /* Bus interface */ 834 DEVMETHOD(bus_setup_intr, bus_generic_setup_intr), 835 DEVMETHOD(bus_config_intr, bus_generic_config_intr), 836 DEVMETHOD(bus_teardown_intr, bus_generic_teardown_intr), 837 DEVMETHOD(bus_set_resource, gpiobus_set_resource), 838 DEVMETHOD(bus_alloc_resource, gpiobus_alloc_resource), 839 DEVMETHOD(bus_release_resource, gpiobus_release_resource), 840 DEVMETHOD(bus_activate_resource, bus_generic_activate_resource), 841 DEVMETHOD(bus_deactivate_resource, bus_generic_deactivate_resource), 842 DEVMETHOD(bus_get_resource_list, gpiobus_get_resource_list), 843 DEVMETHOD(bus_add_child, gpiobus_add_child), 844 DEVMETHOD(bus_probe_nomatch, gpiobus_probe_nomatch), 845 DEVMETHOD(bus_print_child, gpiobus_print_child), 846 DEVMETHOD(bus_child_pnpinfo_str, gpiobus_child_pnpinfo_str), 847 DEVMETHOD(bus_child_location_str, gpiobus_child_location_str), 848 DEVMETHOD(bus_hinted_child, gpiobus_hinted_child), 849 850 /* GPIO protocol */ 851 DEVMETHOD(gpiobus_acquire_bus, gpiobus_acquire_bus), 852 DEVMETHOD(gpiobus_release_bus, gpiobus_release_bus), 853 DEVMETHOD(gpiobus_pin_getflags, gpiobus_pin_getflags), 854 DEVMETHOD(gpiobus_pin_getcaps, gpiobus_pin_getcaps), 855 DEVMETHOD(gpiobus_pin_setflags, gpiobus_pin_setflags), 856 DEVMETHOD(gpiobus_pin_get, gpiobus_pin_get), 857 DEVMETHOD(gpiobus_pin_set, gpiobus_pin_set), 858 DEVMETHOD(gpiobus_pin_toggle, gpiobus_pin_toggle), 859 DEVMETHOD(gpiobus_pin_getname, gpiobus_pin_getname), 860 DEVMETHOD(gpiobus_pin_setname, gpiobus_pin_setname), 861 862 DEVMETHOD_END 863 }; 864 865 driver_t gpiobus_driver = { 866 "gpiobus", 867 gpiobus_methods, 868 sizeof(struct gpiobus_softc) 869 }; 870 871 devclass_t gpiobus_devclass; 872 873 DRIVER_MODULE(gpiobus, gpio, gpiobus_driver, gpiobus_devclass, 0, 0); 874 MODULE_VERSION(gpiobus, 1); 875