acpi_platform.c 3.6 KB
Newer Older
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>
16
#include <linux/err.h>
17 18 19 20
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/platform_device.h>

21 22
#include "internal.h"

23 24
ACPI_MODULE_NAME("platform");

25 26 27 28 29 30 31
/*
 * The following ACPI IDs are known to be suitable for representing as
 * platform devices.
 */
static const struct acpi_device_id acpi_platform_device_ids[] = {

	{ "PNP0D40" },
32
	{ "ACPI0003" },
33
	{ "VPC2004" },
34 35 36
	{ }
};

37 38 39
/**
 * acpi_create_platform_device - Create platform device for ACPI device node
 * @adev: ACPI device node to create a platform device for.
40
 * @id: ACPI device ID used to match @adev.
41 42 43 44 45
 *
 * 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.
 *
46
 * Name of the platform device will be the same as @adev's.
47
 */
48 49
int acpi_create_platform_device(struct acpi_device *adev,
				const struct acpi_device_id *id)
50 51 52
{
	struct platform_device *pdev = NULL;
	struct acpi_device *acpi_parent;
53
	struct platform_device_info pdevinfo;
54 55
	struct resource_list_entry *rentry;
	struct list_head resource_list;
56
	struct resource *resources = NULL;
57
	int count;
58 59 60

	/* If the ACPI node already has a physical device attached, skip it. */
	if (adev->physical_node_count)
61
		return 0;
62

63 64
	INIT_LIST_HEAD(&resource_list);
	count = acpi_dev_get_resources(adev, &resource_list, NULL, NULL);
65
	if (count < 0) {
66
		return 0;
67 68 69 70 71 72 73 74 75 76 77
	} else if (count > 0) {
		resources = kmalloc(count * sizeof(struct resource),
				    GFP_KERNEL);
		if (!resources) {
			dev_err(&adev->dev, "No memory for resources\n");
			acpi_dev_free_resource_list(&resource_list);
			return -ENOMEM;
		}
		count = 0;
		list_for_each_entry(rentry, &resource_list, node)
			resources[count++] = rentry->res;
78

79
		acpi_dev_free_resource_list(&resource_list);
80 81
	}

82
	memset(&pdevinfo, 0, sizeof(pdevinfo));
83 84 85 86 87
	/*
	 * 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.
	 */
88
	pdevinfo.parent = NULL;
89 90 91 92 93 94 95 96 97 98 99
	acpi_parent = adev->parent;
	if (acpi_parent) {
		struct acpi_device_physical_node *entry;
		struct list_head *list;

		mutex_lock(&acpi_parent->physical_node_lock);
		list = &acpi_parent->physical_node_list;
		if (!list_empty(list)) {
			entry = list_first_entry(list,
					struct acpi_device_physical_node,
					node);
100
			pdevinfo.parent = entry->dev;
101 102 103
		}
		mutex_unlock(&acpi_parent->physical_node_lock);
	}
104 105 106 107 108 109
	pdevinfo.name = dev_name(&adev->dev);
	pdevinfo.id = -1;
	pdevinfo.res = resources;
	pdevinfo.num_res = count;
	pdevinfo.acpi_node.handle = adev->handle;
	pdev = platform_device_register_full(&pdevinfo);
110 111 112 113 114 115 116 117 118
	if (IS_ERR(pdev)) {
		dev_err(&adev->dev, "platform device creation failed: %ld\n",
			PTR_ERR(pdev));
		pdev = NULL;
	} else {
		dev_dbg(&adev->dev, "created platform device %s\n",
			dev_name(&pdev->dev));
	}

119
	kfree(resources);
120 121 122 123 124 125 126 127 128 129 130
	return 1;
}

static struct acpi_scan_handler platform_handler = {
	.ids = acpi_platform_device_ids,
	.attach = acpi_create_platform_device,
};

void __init acpi_platform_init(void)
{
	acpi_scan_add_handler(&platform_handler);
131
}