1 /* 2 * platform.c - platform 'pseudo' bus for legacy devices 3 * 4 * Copyright (c) 2002-3 Patrick Mochel 5 * Copyright (c) 2002-3 Open Source Development Labs 6 * 7 * This file is released under the GPLv2 8 * 9 * Please see Documentation/driver-model/platform.txt for more 10 * information. 11 */ 12 13 #include <linux/platform_device.h> 14 #include <linux/module.h> 15 #include <linux/init.h> 16 #include <linux/dma-mapping.h> 17 #include <linux/bootmem.h> 18 #include <linux/err.h> 19 #include <linux/slab.h> 20 21 #include "base.h" 22 23 #define to_platform_driver(drv) (container_of((drv), struct platform_driver, driver)) 24 25 struct device platform_bus = { 26 .bus_id = "platform", 27 }; 28 EXPORT_SYMBOL_GPL(platform_bus); 29 30 /** 31 * platform_get_resource - get a resource for a device 32 * @dev: platform device 33 * @type: resource type 34 * @num: resource index 35 */ 36 struct resource * 37 platform_get_resource(struct platform_device *dev, unsigned int type, 38 unsigned int num) 39 { 40 int i; 41 42 for (i = 0; i < dev->num_resources; i++) { 43 struct resource *r = &dev->resource[i]; 44 45 if ((r->flags & (IORESOURCE_IO|IORESOURCE_MEM| 46 IORESOURCE_IRQ|IORESOURCE_DMA)) 47 == type) 48 if (num-- == 0) 49 return r; 50 } 51 return NULL; 52 } 53 EXPORT_SYMBOL_GPL(platform_get_resource); 54 55 /** 56 * platform_get_irq - get an IRQ for a device 57 * @dev: platform device 58 * @num: IRQ number index 59 */ 60 int platform_get_irq(struct platform_device *dev, unsigned int num) 61 { 62 struct resource *r = platform_get_resource(dev, IORESOURCE_IRQ, num); 63 64 return r ? r->start : -ENXIO; 65 } 66 EXPORT_SYMBOL_GPL(platform_get_irq); 67 68 /** 69 * platform_get_resource_byname - get a resource for a device by name 70 * @dev: platform device 71 * @type: resource type 72 * @name: resource name 73 */ 74 struct resource * 75 platform_get_resource_byname(struct platform_device *dev, unsigned int type, 76 char *name) 77 { 78 int i; 79 80 for (i = 0; i < dev->num_resources; i++) { 81 struct resource *r = &dev->resource[i]; 82 83 if ((r->flags & (IORESOURCE_IO|IORESOURCE_MEM| 84 IORESOURCE_IRQ|IORESOURCE_DMA)) == type) 85 if (!strcmp(r->name, name)) 86 return r; 87 } 88 return NULL; 89 } 90 EXPORT_SYMBOL_GPL(platform_get_resource_byname); 91 92 /** 93 * platform_get_irq - get an IRQ for a device 94 * @dev: platform device 95 * @name: IRQ name 96 */ 97 int platform_get_irq_byname(struct platform_device *dev, char *name) 98 { 99 struct resource *r = platform_get_resource_byname(dev, IORESOURCE_IRQ, name); 100 101 return r ? r->start : -ENXIO; 102 } 103 EXPORT_SYMBOL_GPL(platform_get_irq_byname); 104 105 /** 106 * platform_add_devices - add a numbers of platform devices 107 * @devs: array of platform devices to add 108 * @num: number of platform devices in array 109 */ 110 int platform_add_devices(struct platform_device **devs, int num) 111 { 112 int i, ret = 0; 113 114 for (i = 0; i < num; i++) { 115 ret = platform_device_register(devs[i]); 116 if (ret) { 117 while (--i >= 0) 118 platform_device_unregister(devs[i]); 119 break; 120 } 121 } 122 123 return ret; 124 } 125 EXPORT_SYMBOL_GPL(platform_add_devices); 126 127 struct platform_object { 128 struct platform_device pdev; 129 char name[1]; 130 }; 131 132 /** 133 * platform_device_put 134 * @pdev: platform device to free 135 * 136 * Free all memory associated with a platform device. This function 137 * must _only_ be externally called in error cases. All other usage 138 * is a bug. 139 */ 140 void platform_device_put(struct platform_device *pdev) 141 { 142 if (pdev) 143 put_device(&pdev->dev); 144 } 145 EXPORT_SYMBOL_GPL(platform_device_put); 146 147 static void platform_device_release(struct device *dev) 148 { 149 struct platform_object *pa = container_of(dev, struct platform_object, pdev.dev); 150 151 kfree(pa->pdev.dev.platform_data); 152 kfree(pa->pdev.resource); 153 kfree(pa); 154 } 155 156 /** 157 * platform_device_alloc 158 * @name: base name of the device we're adding 159 * @id: instance id 160 * 161 * Create a platform device object which can have other objects attached 162 * to it, and which will have attached objects freed when it is released. 163 */ 164 struct platform_device *platform_device_alloc(const char *name, unsigned int id) 165 { 166 struct platform_object *pa; 167 168 pa = kzalloc(sizeof(struct platform_object) + strlen(name), GFP_KERNEL); 169 if (pa) { 170 strcpy(pa->name, name); 171 pa->pdev.name = pa->name; 172 pa->pdev.id = id; 173 device_initialize(&pa->pdev.dev); 174 pa->pdev.dev.release = platform_device_release; 175 } 176 177 return pa ? &pa->pdev : NULL; 178 } 179 EXPORT_SYMBOL_GPL(platform_device_alloc); 180 181 /** 182 * platform_device_add_resources 183 * @pdev: platform device allocated by platform_device_alloc to add resources to 184 * @res: set of resources that needs to be allocated for the device 185 * @num: number of resources 186 * 187 * Add a copy of the resources to the platform device. The memory 188 * associated with the resources will be freed when the platform 189 * device is released. 190 */ 191 int platform_device_add_resources(struct platform_device *pdev, struct resource *res, unsigned int num) 192 { 193 struct resource *r; 194 195 r = kmalloc(sizeof(struct resource) * num, GFP_KERNEL); 196 if (r) { 197 memcpy(r, res, sizeof(struct resource) * num); 198 pdev->resource = r; 199 pdev->num_resources = num; 200 } 201 return r ? 0 : -ENOMEM; 202 } 203 EXPORT_SYMBOL_GPL(platform_device_add_resources); 204 205 /** 206 * platform_device_add_data 207 * @pdev: platform device allocated by platform_device_alloc to add resources to 208 * @data: platform specific data for this platform device 209 * @size: size of platform specific data 210 * 211 * Add a copy of platform specific data to the platform device's platform_data 212 * pointer. The memory associated with the platform data will be freed 213 * when the platform device is released. 214 */ 215 int platform_device_add_data(struct platform_device *pdev, const void *data, size_t size) 216 { 217 void *d; 218 219 d = kmalloc(size, GFP_KERNEL); 220 if (d) { 221 memcpy(d, data, size); 222 pdev->dev.platform_data = d; 223 } 224 return d ? 0 : -ENOMEM; 225 } 226 EXPORT_SYMBOL_GPL(platform_device_add_data); 227 228 /** 229 * platform_device_add - add a platform device to device hierarchy 230 * @pdev: platform device we're adding 231 * 232 * This is part 2 of platform_device_register(), though may be called 233 * separately _iff_ pdev was allocated by platform_device_alloc(). 234 */ 235 int platform_device_add(struct platform_device *pdev) 236 { 237 int i, ret = 0; 238 239 if (!pdev) 240 return -EINVAL; 241 242 if (!pdev->dev.parent) 243 pdev->dev.parent = &platform_bus; 244 245 pdev->dev.bus = &platform_bus_type; 246 247 if (pdev->id != -1) 248 snprintf(pdev->dev.bus_id, BUS_ID_SIZE, "%s.%u", pdev->name, pdev->id); 249 else 250 strlcpy(pdev->dev.bus_id, pdev->name, BUS_ID_SIZE); 251 252 for (i = 0; i < pdev->num_resources; i++) { 253 struct resource *p, *r = &pdev->resource[i]; 254 255 if (r->name == NULL) 256 r->name = pdev->dev.bus_id; 257 258 p = r->parent; 259 if (!p) { 260 if (r->flags & IORESOURCE_MEM) 261 p = &iomem_resource; 262 else if (r->flags & IORESOURCE_IO) 263 p = &ioport_resource; 264 } 265 266 if (p && insert_resource(p, r)) { 267 printk(KERN_ERR 268 "%s: failed to claim resource %d\n", 269 pdev->dev.bus_id, i); 270 ret = -EBUSY; 271 goto failed; 272 } 273 } 274 275 pr_debug("Registering platform device '%s'. Parent at %s\n", 276 pdev->dev.bus_id, pdev->dev.parent->bus_id); 277 278 ret = device_add(&pdev->dev); 279 if (ret == 0) 280 return ret; 281 282 failed: 283 while (--i >= 0) 284 if (pdev->resource[i].flags & (IORESOURCE_MEM|IORESOURCE_IO)) 285 release_resource(&pdev->resource[i]); 286 return ret; 287 } 288 EXPORT_SYMBOL_GPL(platform_device_add); 289 290 /** 291 * platform_device_del - remove a platform-level device 292 * @pdev: platform device we're removing 293 * 294 * Note that this function will also release all memory- and port-based 295 * resources owned by the device (@dev->resource). This function 296 * must _only_ be externally called in error cases. All other usage 297 * is a bug. 298 */ 299 void platform_device_del(struct platform_device *pdev) 300 { 301 int i; 302 303 if (pdev) { 304 device_del(&pdev->dev); 305 306 for (i = 0; i < pdev->num_resources; i++) { 307 struct resource *r = &pdev->resource[i]; 308 if (r->flags & (IORESOURCE_MEM|IORESOURCE_IO)) 309 release_resource(r); 310 } 311 } 312 } 313 EXPORT_SYMBOL_GPL(platform_device_del); 314 315 /** 316 * platform_device_register - add a platform-level device 317 * @pdev: platform device we're adding 318 * 319 */ 320 int platform_device_register(struct platform_device * pdev) 321 { 322 device_initialize(&pdev->dev); 323 return platform_device_add(pdev); 324 } 325 EXPORT_SYMBOL_GPL(platform_device_register); 326 327 /** 328 * platform_device_unregister - unregister a platform-level device 329 * @pdev: platform device we're unregistering 330 * 331 * Unregistration is done in 2 steps. First we release all resources 332 * and remove it from the subsystem, then we drop reference count by 333 * calling platform_device_put(). 334 */ 335 void platform_device_unregister(struct platform_device * pdev) 336 { 337 platform_device_del(pdev); 338 platform_device_put(pdev); 339 } 340 EXPORT_SYMBOL_GPL(platform_device_unregister); 341 342 /** 343 * platform_device_register_simple 344 * @name: base name of the device we're adding 345 * @id: instance id 346 * @res: set of resources that needs to be allocated for the device 347 * @num: number of resources 348 * 349 * This function creates a simple platform device that requires minimal 350 * resource and memory management. Canned release function freeing 351 * memory allocated for the device allows drivers using such devices 352 * to be unloaded iwithout waiting for the last reference to the device 353 * to be dropped. 354 */ 355 struct platform_device *platform_device_register_simple(char *name, unsigned int id, 356 struct resource *res, unsigned int num) 357 { 358 struct platform_device *pdev; 359 int retval; 360 361 pdev = platform_device_alloc(name, id); 362 if (!pdev) { 363 retval = -ENOMEM; 364 goto error; 365 } 366 367 if (num) { 368 retval = platform_device_add_resources(pdev, res, num); 369 if (retval) 370 goto error; 371 } 372 373 retval = platform_device_add(pdev); 374 if (retval) 375 goto error; 376 377 return pdev; 378 379 error: 380 platform_device_put(pdev); 381 return ERR_PTR(retval); 382 } 383 EXPORT_SYMBOL_GPL(platform_device_register_simple); 384 385 static int platform_drv_probe(struct device *_dev) 386 { 387 struct platform_driver *drv = to_platform_driver(_dev->driver); 388 struct platform_device *dev = to_platform_device(_dev); 389 390 return drv->probe(dev); 391 } 392 393 static int platform_drv_probe_fail(struct device *_dev) 394 { 395 return -ENXIO; 396 } 397 398 static int platform_drv_remove(struct device *_dev) 399 { 400 struct platform_driver *drv = to_platform_driver(_dev->driver); 401 struct platform_device *dev = to_platform_device(_dev); 402 403 return drv->remove(dev); 404 } 405 406 static void platform_drv_shutdown(struct device *_dev) 407 { 408 struct platform_driver *drv = to_platform_driver(_dev->driver); 409 struct platform_device *dev = to_platform_device(_dev); 410 411 drv->shutdown(dev); 412 } 413 414 static int platform_drv_suspend(struct device *_dev, pm_message_t state) 415 { 416 struct platform_driver *drv = to_platform_driver(_dev->driver); 417 struct platform_device *dev = to_platform_device(_dev); 418 419 return drv->suspend(dev, state); 420 } 421 422 static int platform_drv_resume(struct device *_dev) 423 { 424 struct platform_driver *drv = to_platform_driver(_dev->driver); 425 struct platform_device *dev = to_platform_device(_dev); 426 427 return drv->resume(dev); 428 } 429 430 /** 431 * platform_driver_register 432 * @drv: platform driver structure 433 */ 434 int platform_driver_register(struct platform_driver *drv) 435 { 436 drv->driver.bus = &platform_bus_type; 437 if (drv->probe) 438 drv->driver.probe = platform_drv_probe; 439 if (drv->remove) 440 drv->driver.remove = platform_drv_remove; 441 if (drv->shutdown) 442 drv->driver.shutdown = platform_drv_shutdown; 443 if (drv->suspend) 444 drv->driver.suspend = platform_drv_suspend; 445 if (drv->resume) 446 drv->driver.resume = platform_drv_resume; 447 return driver_register(&drv->driver); 448 } 449 EXPORT_SYMBOL_GPL(platform_driver_register); 450 451 /** 452 * platform_driver_unregister 453 * @drv: platform driver structure 454 */ 455 void platform_driver_unregister(struct platform_driver *drv) 456 { 457 driver_unregister(&drv->driver); 458 } 459 EXPORT_SYMBOL_GPL(platform_driver_unregister); 460 461 /** 462 * platform_driver_probe - register driver for non-hotpluggable device 463 * @drv: platform driver structure 464 * @probe: the driver probe routine, probably from an __init section 465 * 466 * Use this instead of platform_driver_register() when you know the device 467 * is not hotpluggable and has already been registered, and you want to 468 * remove its run-once probe() infrastructure from memory after the driver 469 * has bound to the device. 470 * 471 * One typical use for this would be with drivers for controllers integrated 472 * into system-on-chip processors, where the controller devices have been 473 * configured as part of board setup. 474 * 475 * Returns zero if the driver registered and bound to a device, else returns 476 * a negative error code and with the driver not registered. 477 */ 478 int __init_or_module platform_driver_probe(struct platform_driver *drv, 479 int (*probe)(struct platform_device *)) 480 { 481 int retval, code; 482 483 /* temporary section violation during probe() */ 484 drv->probe = probe; 485 retval = code = platform_driver_register(drv); 486 487 /* Fixup that section violation, being paranoid about code scanning 488 * the list of drivers in order to probe new devices. Check to see 489 * if the probe was successful, and make sure any forced probes of 490 * new devices fail. 491 */ 492 spin_lock(&platform_bus_type.klist_drivers.k_lock); 493 drv->probe = NULL; 494 if (code == 0 && list_empty(&drv->driver.klist_devices.k_list)) 495 retval = -ENODEV; 496 drv->driver.probe = platform_drv_probe_fail; 497 spin_unlock(&platform_bus_type.klist_drivers.k_lock); 498 499 if (code != retval) 500 platform_driver_unregister(drv); 501 return retval; 502 } 503 EXPORT_SYMBOL_GPL(platform_driver_probe); 504 505 /* modalias support enables more hands-off userspace setup: 506 * (a) environment variable lets new-style hotplug events work once system is 507 * fully running: "modprobe $MODALIAS" 508 * (b) sysfs attribute lets new-style coldplug recover from hotplug events 509 * mishandled before system is fully running: "modprobe $(cat modalias)" 510 */ 511 static ssize_t 512 modalias_show(struct device *dev, struct device_attribute *a, char *buf) 513 { 514 struct platform_device *pdev = to_platform_device(dev); 515 int len = snprintf(buf, PAGE_SIZE, "%s\n", pdev->name); 516 517 return (len >= PAGE_SIZE) ? (PAGE_SIZE - 1) : len; 518 } 519 520 static struct device_attribute platform_dev_attrs[] = { 521 __ATTR_RO(modalias), 522 __ATTR_NULL, 523 }; 524 525 static int platform_uevent(struct device *dev, char **envp, int num_envp, 526 char *buffer, int buffer_size) 527 { 528 struct platform_device *pdev = to_platform_device(dev); 529 530 envp[0] = buffer; 531 snprintf(buffer, buffer_size, "MODALIAS=%s", pdev->name); 532 return 0; 533 } 534 535 536 /** 537 * platform_match - bind platform device to platform driver. 538 * @dev: device. 539 * @drv: driver. 540 * 541 * Platform device IDs are assumed to be encoded like this: 542 * "<name><instance>", where <name> is a short description of the 543 * type of device, like "pci" or "floppy", and <instance> is the 544 * enumerated instance of the device, like '0' or '42'. 545 * Driver IDs are simply "<name>". 546 * So, extract the <name> from the platform_device structure, 547 * and compare it against the name of the driver. Return whether 548 * they match or not. 549 */ 550 551 static int platform_match(struct device * dev, struct device_driver * drv) 552 { 553 struct platform_device *pdev = container_of(dev, struct platform_device, dev); 554 555 return (strncmp(pdev->name, drv->name, BUS_ID_SIZE) == 0); 556 } 557 558 static int platform_suspend(struct device *dev, pm_message_t mesg) 559 { 560 int ret = 0; 561 562 if (dev->driver && dev->driver->suspend) 563 ret = dev->driver->suspend(dev, mesg); 564 565 return ret; 566 } 567 568 static int platform_suspend_late(struct device *dev, pm_message_t mesg) 569 { 570 struct platform_driver *drv = to_platform_driver(dev->driver); 571 struct platform_device *pdev = container_of(dev, struct platform_device, dev); 572 int ret = 0; 573 574 if (dev->driver && drv->suspend_late) 575 ret = drv->suspend_late(pdev, mesg); 576 577 return ret; 578 } 579 580 static int platform_resume_early(struct device *dev) 581 { 582 struct platform_driver *drv = to_platform_driver(dev->driver); 583 struct platform_device *pdev = container_of(dev, struct platform_device, dev); 584 int ret = 0; 585 586 if (dev->driver && drv->resume_early) 587 ret = drv->resume_early(pdev); 588 589 return ret; 590 } 591 592 static int platform_resume(struct device * dev) 593 { 594 int ret = 0; 595 596 if (dev->driver && dev->driver->resume) 597 ret = dev->driver->resume(dev); 598 599 return ret; 600 } 601 602 struct bus_type platform_bus_type = { 603 .name = "platform", 604 .dev_attrs = platform_dev_attrs, 605 .match = platform_match, 606 .uevent = platform_uevent, 607 .suspend = platform_suspend, 608 .suspend_late = platform_suspend_late, 609 .resume_early = platform_resume_early, 610 .resume = platform_resume, 611 }; 612 EXPORT_SYMBOL_GPL(platform_bus_type); 613 614 int __init platform_bus_init(void) 615 { 616 int error; 617 618 error = device_register(&platform_bus); 619 if (error) 620 return error; 621 error = bus_register(&platform_bus_type); 622 if (error) 623 device_unregister(&platform_bus); 624 return error; 625 } 626 627 #ifndef ARCH_HAS_DMA_GET_REQUIRED_MASK 628 u64 dma_get_required_mask(struct device *dev) 629 { 630 u32 low_totalram = ((max_pfn - 1) << PAGE_SHIFT); 631 u32 high_totalram = ((max_pfn - 1) >> (32 - PAGE_SHIFT)); 632 u64 mask; 633 634 if (!high_totalram) { 635 /* convert to mask just covering totalram */ 636 low_totalram = (1 << (fls(low_totalram) - 1)); 637 low_totalram += low_totalram - 1; 638 mask = low_totalram; 639 } else { 640 high_totalram = (1 << (fls(high_totalram) - 1)); 641 high_totalram += high_totalram - 1; 642 mask = (((u64)high_totalram) << 32) + 0xffffffff; 643 } 644 return mask & *dev->dma_mask; 645 } 646 EXPORT_SYMBOL_GPL(dma_get_required_mask); 647 #endif 648