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