1 /*- 2 * Copyright (c) 2009, Nathan Whitehorn <nwhitehorn@FreeBSD.org> 3 * Copyright (c) 2013, Luiz Otavio O Souza <loos@FreeBSD.org> 4 * Copyright (c) 2013 The FreeBSD Foundation 5 * All rights reserved. 6 * 7 * Redistribution and use in source and binary forms, with or without 8 * modification, are permitted provided that the following conditions 9 * are met: 10 * 1. Redistributions of source code must retain the above copyright 11 * notice unmodified, this list of conditions, and the following 12 * disclaimer. 13 * 2. Redistributions in binary form must reproduce the above copyright 14 * notice, this list of conditions and the following disclaimer in the 15 * documentation and/or other materials provided with the distribution. 16 * 17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 */ 28 29 #include <sys/cdefs.h> 30 __FBSDID("$FreeBSD$"); 31 32 #include <sys/param.h> 33 #include <sys/systm.h> 34 #include <sys/bus.h> 35 #include <sys/kernel.h> 36 #include <sys/malloc.h> 37 #include <sys/module.h> 38 39 #include <dev/gpio/gpiobusvar.h> 40 #include <dev/ofw/ofw_bus.h> 41 42 #include "gpiobus_if.h" 43 44 static struct ofw_gpiobus_devinfo *ofw_gpiobus_setup_devinfo(device_t, 45 device_t, phandle_t); 46 static void ofw_gpiobus_destroy_devinfo(device_t, struct ofw_gpiobus_devinfo *); 47 static int ofw_gpiobus_parse_gpios_impl(device_t, phandle_t, char *, 48 struct gpiobus_softc *, struct gpiobus_pin **); 49 50 /* 51 * Utility functions for easier handling of OFW GPIO pins. 52 * 53 * !!! BEWARE !!! 54 * GPIOBUS uses children's IVARs, so we cannot use this interface for cross 55 * tree consumers. 56 * 57 */ 58 static int 59 gpio_pin_get_by_ofw_impl(device_t consumer, phandle_t cnode, 60 char *prop_name, int idx, gpio_pin_t *out_pin) 61 { 62 phandle_t xref; 63 pcell_t *cells; 64 device_t busdev; 65 struct gpiobus_pin pin; 66 int ncells, rv; 67 68 KASSERT(consumer != NULL && cnode > 0, 69 ("both consumer and cnode required")); 70 71 rv = ofw_bus_parse_xref_list_alloc(cnode, prop_name, "#gpio-cells", 72 idx, &xref, &ncells, &cells); 73 if (rv != 0) 74 return (rv); 75 76 /* Translate provider to device. */ 77 pin.dev = OF_device_from_xref(xref); 78 if (pin.dev == NULL) { 79 OF_prop_free(cells); 80 return (ENODEV); 81 } 82 83 /* Test if GPIO bus already exist. */ 84 busdev = GPIO_GET_BUS(pin.dev); 85 if (busdev == NULL) { 86 OF_prop_free(cells); 87 return (ENODEV); 88 } 89 90 /* Map GPIO pin. */ 91 rv = gpio_map_gpios(pin.dev, cnode, OF_node_from_xref(xref), ncells, 92 cells, &pin.pin, &pin.flags); 93 OF_prop_free(cells); 94 if (rv != 0) 95 return (ENXIO); 96 97 /* Reserve GPIO pin. */ 98 rv = gpiobus_map_pin(busdev, pin.pin); 99 if (rv != 0) 100 return (EBUSY); 101 102 *out_pin = malloc(sizeof(struct gpiobus_pin), M_DEVBUF, 103 M_WAITOK | M_ZERO); 104 **out_pin = pin; 105 return (0); 106 } 107 108 int 109 gpio_pin_get_by_ofw_idx(device_t consumer, phandle_t node, 110 int idx, gpio_pin_t *pin) 111 { 112 113 return (gpio_pin_get_by_ofw_impl(consumer, node, "gpios", idx, pin)); 114 } 115 116 int 117 gpio_pin_get_by_ofw_property(device_t consumer, phandle_t node, 118 char *name, gpio_pin_t *pin) 119 { 120 121 return (gpio_pin_get_by_ofw_impl(consumer, node, name, 0, pin)); 122 } 123 124 int 125 gpio_pin_get_by_ofw_name(device_t consumer, phandle_t node, 126 char *name, gpio_pin_t *pin) 127 { 128 int rv, idx; 129 130 KASSERT(consumer != NULL && node > 0, 131 ("both consumer and node required")); 132 133 rv = ofw_bus_find_string_index(node, "gpio-names", name, &idx); 134 if (rv != 0) 135 return (rv); 136 return (gpio_pin_get_by_ofw_idx(consumer, node, idx, pin)); 137 } 138 139 void 140 gpio_pin_release(gpio_pin_t gpio) 141 { 142 device_t busdev; 143 144 if (gpio == NULL) 145 return; 146 147 KASSERT(gpio->dev != NULL, ("invalid pin state")); 148 149 busdev = GPIO_GET_BUS(gpio->dev); 150 if (busdev != NULL) 151 gpiobus_release_pin(busdev, gpio->pin); 152 153 /* XXXX Unreserve pin. */ 154 free(gpio, M_DEVBUF); 155 } 156 157 int 158 gpio_pin_is_active(gpio_pin_t pin, bool *active) 159 { 160 int rv; 161 uint32_t tmp; 162 163 KASSERT(pin != NULL, ("GPIO pin is NULL.")); 164 KASSERT(pin->dev != NULL, ("GPIO pin device is NULL.")); 165 rv = GPIO_PIN_GET(pin->dev, pin->pin, &tmp); 166 if (rv != 0) { 167 return (rv); 168 } 169 170 *active = tmp != 0; 171 if (pin->flags & GPIO_ACTIVE_LOW) 172 *active = !(*active); 173 return (0); 174 } 175 176 int 177 gpio_pin_set_active(gpio_pin_t pin, bool active) 178 { 179 int rv; 180 uint32_t tmp; 181 182 if (pin->flags & GPIO_ACTIVE_LOW) 183 tmp = active ? 0 : 1; 184 else 185 tmp = active ? 1 : 0; 186 187 KASSERT(pin != NULL, ("GPIO pin is NULL.")); 188 KASSERT(pin->dev != NULL, ("GPIO pin device is NULL.")); 189 rv = GPIO_PIN_SET(pin->dev, pin->pin, tmp); 190 return (rv); 191 } 192 193 int 194 gpio_pin_setflags(gpio_pin_t pin, uint32_t flags) 195 { 196 int rv; 197 198 KASSERT(pin != NULL, ("GPIO pin is NULL.")); 199 KASSERT(pin->dev != NULL, ("GPIO pin device is NULL.")); 200 201 rv = GPIO_PIN_SETFLAGS(pin->dev, pin->pin, flags); 202 return (rv); 203 } 204 205 /* 206 * OFW_GPIOBUS driver. 207 */ 208 device_t 209 ofw_gpiobus_add_fdt_child(device_t bus, const char *drvname, phandle_t child) 210 { 211 device_t childdev; 212 int i; 213 struct gpiobus_ivar *devi; 214 struct ofw_gpiobus_devinfo *dinfo; 215 216 /* 217 * Check to see if we already have a child for @p child, and if so 218 * return it. 219 */ 220 childdev = ofw_bus_find_child_device_by_phandle(bus, child); 221 if (childdev != NULL) 222 return (childdev); 223 224 /* 225 * Set up the GPIO child and OFW bus layer devinfo and add it to bus. 226 */ 227 childdev = device_add_child(bus, drvname, -1); 228 if (childdev == NULL) 229 return (NULL); 230 dinfo = ofw_gpiobus_setup_devinfo(bus, childdev, child); 231 if (dinfo == NULL) { 232 device_delete_child(bus, childdev); 233 return (NULL); 234 } 235 if (device_probe_and_attach(childdev) != 0) { 236 ofw_gpiobus_destroy_devinfo(bus, dinfo); 237 device_delete_child(bus, childdev); 238 return (NULL); 239 } 240 /* Use the child name as pin name. */ 241 devi = &dinfo->opd_dinfo; 242 for (i = 0; i < devi->npins; i++) 243 GPIOBUS_PIN_SETNAME(bus, devi->pins[i], 244 device_get_nameunit(childdev)); 245 246 return (childdev); 247 } 248 249 int 250 ofw_gpiobus_parse_gpios(device_t consumer, char *pname, 251 struct gpiobus_pin **pins) 252 { 253 254 return (ofw_gpiobus_parse_gpios_impl(consumer, 255 ofw_bus_get_node(consumer), pname, NULL, pins)); 256 } 257 258 void 259 ofw_gpiobus_register_provider(device_t provider) 260 { 261 phandle_t node; 262 263 node = ofw_bus_get_node(provider); 264 OF_device_register_xref(OF_xref_from_node(node), provider); 265 } 266 267 void 268 ofw_gpiobus_unregister_provider(device_t provider) 269 { 270 phandle_t node; 271 272 node = ofw_bus_get_node(provider); 273 OF_device_register_xref(OF_xref_from_node(node), NULL); 274 } 275 276 static struct ofw_gpiobus_devinfo * 277 ofw_gpiobus_setup_devinfo(device_t bus, device_t child, phandle_t node) 278 { 279 int i, npins; 280 struct gpiobus_ivar *devi; 281 struct gpiobus_pin *pins; 282 struct gpiobus_softc *sc; 283 struct ofw_gpiobus_devinfo *dinfo; 284 285 sc = device_get_softc(bus); 286 dinfo = malloc(sizeof(*dinfo), M_DEVBUF, M_NOWAIT | M_ZERO); 287 if (dinfo == NULL) 288 return (NULL); 289 if (ofw_bus_gen_setup_devinfo(&dinfo->opd_obdinfo, node) != 0) { 290 free(dinfo, M_DEVBUF); 291 return (NULL); 292 } 293 /* Parse the gpios property for the child. */ 294 npins = ofw_gpiobus_parse_gpios_impl(child, node, "gpios", sc, &pins); 295 if (npins <= 0) { 296 ofw_bus_gen_destroy_devinfo(&dinfo->opd_obdinfo); 297 free(dinfo, M_DEVBUF); 298 return (NULL); 299 } 300 /* Initialize the irq resource list. */ 301 resource_list_init(&dinfo->opd_dinfo.rl); 302 /* Allocate the child ivars and copy the parsed pin data. */ 303 devi = &dinfo->opd_dinfo; 304 devi->npins = (uint32_t)npins; 305 if (gpiobus_alloc_ivars(devi) != 0) { 306 free(pins, M_DEVBUF); 307 ofw_gpiobus_destroy_devinfo(bus, dinfo); 308 return (NULL); 309 } 310 for (i = 0; i < devi->npins; i++) { 311 devi->flags[i] = pins[i].flags; 312 devi->pins[i] = pins[i].pin; 313 } 314 free(pins, M_DEVBUF); 315 /* Parse the interrupt resources. */ 316 if (ofw_bus_intr_to_rl(bus, node, &dinfo->opd_dinfo.rl, NULL) != 0) { 317 ofw_gpiobus_destroy_devinfo(bus, dinfo); 318 return (NULL); 319 } 320 device_set_ivars(child, dinfo); 321 322 return (dinfo); 323 } 324 325 static void 326 ofw_gpiobus_destroy_devinfo(device_t bus, struct ofw_gpiobus_devinfo *dinfo) 327 { 328 int i; 329 struct gpiobus_ivar *devi; 330 struct gpiobus_softc *sc; 331 332 sc = device_get_softc(bus); 333 devi = &dinfo->opd_dinfo; 334 for (i = 0; i < devi->npins; i++) { 335 if (devi->pins[i] > sc->sc_npins) 336 continue; 337 sc->sc_pins[devi->pins[i]].mapped = 0; 338 } 339 gpiobus_free_ivars(devi); 340 resource_list_free(&dinfo->opd_dinfo.rl); 341 ofw_bus_gen_destroy_devinfo(&dinfo->opd_obdinfo); 342 free(dinfo, M_DEVBUF); 343 } 344 345 static int 346 ofw_gpiobus_parse_gpios_impl(device_t consumer, phandle_t cnode, char *pname, 347 struct gpiobus_softc *bussc, struct gpiobus_pin **pins) 348 { 349 int gpiocells, i, j, ncells, npins; 350 pcell_t *gpios; 351 phandle_t gpio; 352 353 ncells = OF_getencprop_alloc(cnode, pname, sizeof(*gpios), 354 (void **)&gpios); 355 if (ncells == -1) { 356 device_printf(consumer, 357 "Warning: No %s specified in fdt data; " 358 "device may not function.\n", pname); 359 return (-1); 360 } 361 /* 362 * The gpio-specifier is controller independent, the first pcell has 363 * the reference to the GPIO controller phandler. 364 * Count the number of encoded gpio-specifiers on the first pass. 365 */ 366 i = 0; 367 npins = 0; 368 while (i < ncells) { 369 /* Allow NULL specifiers. */ 370 if (gpios[i] == 0) { 371 npins++; 372 i++; 373 continue; 374 } 375 gpio = OF_node_from_xref(gpios[i]); 376 /* If we have bussc, ignore devices from other gpios. */ 377 if (bussc != NULL) 378 if (ofw_bus_get_node(bussc->sc_dev) != gpio) 379 return (0); 380 /* 381 * Check for gpio-controller property and read the #gpio-cells 382 * for this GPIO controller. 383 */ 384 if (!OF_hasprop(gpio, "gpio-controller") || 385 OF_getencprop(gpio, "#gpio-cells", &gpiocells, 386 sizeof(gpiocells)) < 0) { 387 device_printf(consumer, 388 "gpio reference is not a gpio-controller.\n"); 389 OF_prop_free(gpios); 390 return (-1); 391 } 392 if (ncells - i < gpiocells + 1) { 393 device_printf(consumer, 394 "%s cells doesn't match #gpio-cells.\n", pname); 395 return (-1); 396 } 397 npins++; 398 i += gpiocells + 1; 399 } 400 if (npins == 0 || pins == NULL) { 401 if (npins == 0) 402 device_printf(consumer, "no pin specified in %s.\n", 403 pname); 404 OF_prop_free(gpios); 405 return (npins); 406 } 407 *pins = malloc(sizeof(struct gpiobus_pin) * npins, M_DEVBUF, 408 M_NOWAIT | M_ZERO); 409 if (*pins == NULL) { 410 OF_prop_free(gpios); 411 return (-1); 412 } 413 /* Decode the gpio specifier on the second pass. */ 414 i = 0; 415 j = 0; 416 while (i < ncells) { 417 /* Allow NULL specifiers. */ 418 if (gpios[i] == 0) { 419 j++; 420 i++; 421 continue; 422 } 423 gpio = OF_node_from_xref(gpios[i]); 424 /* Read gpio-cells property for this GPIO controller. */ 425 if (OF_getencprop(gpio, "#gpio-cells", &gpiocells, 426 sizeof(gpiocells)) < 0) { 427 device_printf(consumer, 428 "gpio does not have the #gpio-cells property.\n"); 429 goto fail; 430 } 431 /* Return the device reference for the GPIO controller. */ 432 (*pins)[j].dev = OF_device_from_xref(gpios[i]); 433 if ((*pins)[j].dev == NULL) { 434 device_printf(consumer, 435 "no device registered for the gpio controller.\n"); 436 goto fail; 437 } 438 /* 439 * If the gpiobus softc is NULL we use the GPIO_GET_BUS() to 440 * retrieve it. The GPIO_GET_BUS() method is only valid after 441 * the child is probed and attached. 442 */ 443 if (bussc == NULL) { 444 if (GPIO_GET_BUS((*pins)[j].dev) == NULL) { 445 device_printf(consumer, 446 "no gpiobus reference for %s.\n", 447 device_get_nameunit((*pins)[j].dev)); 448 goto fail; 449 } 450 bussc = device_get_softc(GPIO_GET_BUS((*pins)[j].dev)); 451 } 452 /* Get the GPIO pin number and flags. */ 453 if (gpio_map_gpios((*pins)[j].dev, cnode, gpio, gpiocells, 454 &gpios[i + 1], &(*pins)[j].pin, &(*pins)[j].flags) != 0) { 455 device_printf(consumer, 456 "cannot map the gpios specifier.\n"); 457 goto fail; 458 } 459 /* Reserve the GPIO pin. */ 460 if (gpiobus_map_pin(bussc->sc_busdev, (*pins)[j].pin) != 0) 461 goto fail; 462 j++; 463 i += gpiocells + 1; 464 } 465 OF_prop_free(gpios); 466 467 return (npins); 468 469 fail: 470 OF_prop_free(gpios); 471 free(*pins, M_DEVBUF); 472 return (-1); 473 } 474 475 static int 476 ofw_gpiobus_probe(device_t dev) 477 { 478 479 if (ofw_bus_get_node(dev) == -1) 480 return (ENXIO); 481 device_set_desc(dev, "OFW GPIO bus"); 482 483 return (0); 484 } 485 486 static int 487 ofw_gpiobus_attach(device_t dev) 488 { 489 int err; 490 phandle_t child; 491 492 err = gpiobus_init_softc(dev); 493 if (err != 0) 494 return (err); 495 bus_generic_probe(dev); 496 bus_enumerate_hinted_children(dev); 497 /* 498 * Attach the children represented in the device tree. 499 */ 500 for (child = OF_child(ofw_bus_get_node(dev)); child != 0; 501 child = OF_peer(child)) { 502 if (!OF_hasprop(child, "gpios")) 503 continue; 504 if (ofw_gpiobus_add_fdt_child(dev, NULL, child) == NULL) 505 continue; 506 } 507 508 return (bus_generic_attach(dev)); 509 } 510 511 static device_t 512 ofw_gpiobus_add_child(device_t dev, u_int order, const char *name, int unit) 513 { 514 device_t child; 515 struct ofw_gpiobus_devinfo *devi; 516 517 child = device_add_child_ordered(dev, order, name, unit); 518 if (child == NULL) 519 return (child); 520 devi = malloc(sizeof(struct ofw_gpiobus_devinfo), M_DEVBUF, 521 M_NOWAIT | M_ZERO); 522 if (devi == NULL) { 523 device_delete_child(dev, child); 524 return (0); 525 } 526 527 /* 528 * NULL all the OFW-related parts of the ivars for non-OFW 529 * children. 530 */ 531 devi->opd_obdinfo.obd_node = -1; 532 devi->opd_obdinfo.obd_name = NULL; 533 devi->opd_obdinfo.obd_compat = NULL; 534 devi->opd_obdinfo.obd_type = NULL; 535 devi->opd_obdinfo.obd_model = NULL; 536 537 device_set_ivars(child, devi); 538 539 return (child); 540 } 541 542 static const struct ofw_bus_devinfo * 543 ofw_gpiobus_get_devinfo(device_t bus, device_t dev) 544 { 545 struct ofw_gpiobus_devinfo *dinfo; 546 547 dinfo = device_get_ivars(dev); 548 549 return (&dinfo->opd_obdinfo); 550 } 551 552 static device_method_t ofw_gpiobus_methods[] = { 553 /* Device interface */ 554 DEVMETHOD(device_probe, ofw_gpiobus_probe), 555 DEVMETHOD(device_attach, ofw_gpiobus_attach), 556 557 /* Bus interface */ 558 DEVMETHOD(bus_child_pnpinfo_str, ofw_bus_gen_child_pnpinfo_str), 559 DEVMETHOD(bus_add_child, ofw_gpiobus_add_child), 560 561 /* ofw_bus interface */ 562 DEVMETHOD(ofw_bus_get_devinfo, ofw_gpiobus_get_devinfo), 563 DEVMETHOD(ofw_bus_get_compat, ofw_bus_gen_get_compat), 564 DEVMETHOD(ofw_bus_get_model, ofw_bus_gen_get_model), 565 DEVMETHOD(ofw_bus_get_name, ofw_bus_gen_get_name), 566 DEVMETHOD(ofw_bus_get_node, ofw_bus_gen_get_node), 567 DEVMETHOD(ofw_bus_get_type, ofw_bus_gen_get_type), 568 569 DEVMETHOD_END 570 }; 571 572 devclass_t ofwgpiobus_devclass; 573 574 DEFINE_CLASS_1(gpiobus, ofw_gpiobus_driver, ofw_gpiobus_methods, 575 sizeof(struct gpiobus_softc), gpiobus_driver); 576 EARLY_DRIVER_MODULE(ofw_gpiobus, gpio, ofw_gpiobus_driver, ofwgpiobus_devclass, 577 0, 0, BUS_PASS_BUS); 578 MODULE_VERSION(ofw_gpiobus, 1); 579 MODULE_DEPEND(ofw_gpiobus, gpiobus, 1, 1, 1); 580