acpi_platform.c 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. /*
  2. * ACPI support for platform bus type.
  3. *
  4. * Copyright (C) 2012, Intel Corporation
  5. * Authors: Mika Westerberg <mika.westerberg@linux.intel.com>
  6. * Mathias Nyman <mathias.nyman@linux.intel.com>
  7. * Rafael J. Wysocki <rafael.j.wysocki@intel.com>
  8. *
  9. * This program is free software; you can redistribute it and/or modify
  10. * it under the terms of the GNU General Public License version 2 as
  11. * published by the Free Software Foundation.
  12. */
  13. #include <linux/acpi.h>
  14. #include <linux/device.h>
  15. #include <linux/err.h>
  16. #include <linux/kernel.h>
  17. #include <linux/module.h>
  18. #include <linux/dma-mapping.h>
  19. #include <linux/pci.h>
  20. #include <linux/platform_device.h>
  21. #include "internal.h"
  22. ACPI_MODULE_NAME("platform");
  23. static const struct acpi_device_id forbidden_id_list[] = {
  24. {"PNP0000", 0}, /* PIC */
  25. {"PNP0100", 0}, /* Timer */
  26. {"PNP0200", 0}, /* AT DMA Controller */
  27. {"ACPI0009", 0}, /* IOxAPIC */
  28. {"ACPI000A", 0}, /* IOAPIC */
  29. {"", 0},
  30. };
  31. static void acpi_platform_fill_resource(struct acpi_device *adev,
  32. const struct resource *src, struct resource *dest)
  33. {
  34. struct device *parent;
  35. *dest = *src;
  36. /*
  37. * If the device has parent we need to take its resources into
  38. * account as well because this device might consume part of those.
  39. */
  40. parent = acpi_get_first_physical_node(adev->parent);
  41. if (parent && dev_is_pci(parent))
  42. dest->parent = pci_find_resource(to_pci_dev(parent), dest);
  43. }
  44. /**
  45. * acpi_create_platform_device - Create platform device for ACPI device node
  46. * @adev: ACPI device node to create a platform device for.
  47. * @properties: Optional collection of build-in properties.
  48. *
  49. * Check if the given @adev can be represented as a platform device and, if
  50. * that's the case, create and register a platform device, populate its common
  51. * resources and returns a pointer to it. Otherwise, return %NULL.
  52. *
  53. * Name of the platform device will be the same as @adev's.
  54. */
  55. struct platform_device *acpi_create_platform_device(struct acpi_device *adev,
  56. struct property_entry *properties)
  57. {
  58. struct platform_device *pdev = NULL;
  59. struct platform_device_info pdevinfo;
  60. struct resource_entry *rentry;
  61. struct list_head resource_list;
  62. struct resource *resources = NULL;
  63. int count;
  64. /* If the ACPI node already has a physical device attached, skip it. */
  65. if (adev->physical_node_count)
  66. return NULL;
  67. if (!acpi_match_device_ids(adev, forbidden_id_list))
  68. return ERR_PTR(-EINVAL);
  69. INIT_LIST_HEAD(&resource_list);
  70. count = acpi_dev_get_resources(adev, &resource_list, NULL, NULL);
  71. if (count < 0) {
  72. return NULL;
  73. } else if (count > 0) {
  74. resources = kzalloc(count * sizeof(struct resource),
  75. GFP_KERNEL);
  76. if (!resources) {
  77. dev_err(&adev->dev, "No memory for resources\n");
  78. acpi_dev_free_resource_list(&resource_list);
  79. return ERR_PTR(-ENOMEM);
  80. }
  81. count = 0;
  82. list_for_each_entry(rentry, &resource_list, node)
  83. acpi_platform_fill_resource(adev, rentry->res,
  84. &resources[count++]);
  85. acpi_dev_free_resource_list(&resource_list);
  86. }
  87. memset(&pdevinfo, 0, sizeof(pdevinfo));
  88. /*
  89. * If the ACPI node has a parent and that parent has a physical device
  90. * attached to it, that physical device should be the parent of the
  91. * platform device we are about to create.
  92. */
  93. pdevinfo.parent = adev->parent ?
  94. acpi_get_first_physical_node(adev->parent) : NULL;
  95. pdevinfo.name = dev_name(&adev->dev);
  96. pdevinfo.id = -1;
  97. pdevinfo.res = resources;
  98. pdevinfo.num_res = count;
  99. pdevinfo.fwnode = acpi_fwnode_handle(adev);
  100. pdevinfo.properties = properties;
  101. if (acpi_dma_supported(adev))
  102. pdevinfo.dma_mask = DMA_BIT_MASK(32);
  103. else
  104. pdevinfo.dma_mask = 0;
  105. pdev = platform_device_register_full(&pdevinfo);
  106. if (IS_ERR(pdev))
  107. dev_err(&adev->dev, "platform device creation failed: %ld\n",
  108. PTR_ERR(pdev));
  109. else
  110. dev_dbg(&adev->dev, "created platform device %s\n",
  111. dev_name(&pdev->dev));
  112. kfree(resources);
  113. return pdev;
  114. }
  115. EXPORT_SYMBOL_GPL(acpi_create_platform_device);