/* * ACPI support for platform bus type. * * Copyright (C) 2012, Intel Corporation * Authors: Mika Westerberg * Mathias Nyman * Rafael J. Wysocki * * 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 #include #include #include #include #include #include "internal.h" ACPI_MODULE_NAME("platform"); /* * 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" }, { "BCM43241" }, { "BCM2E1A" }, { "BCM2E3A" }, { "BCM4752" }, { "BCM47521" }, { "BCM47531" }, { "RTL8723" }, { "OBDA8723" }, /* Telepĥony */ { "MCD0001", 0 }, /* SSP devices */ { "SSPM0000", 0 }, { "SSPC0000", 0 }, { "SSPB0000", 0 }, { "SSPX0000", 0 }, /* Baytrail Audio devices */ { "HAD0F28", 0 }, { "LPE0F28", 0 }, { "80860F28", 0 }, { "LPE0F281", 0 }, { "AMCR0F28", 0 }, { "TIMC0F28", 0 }, { "DMA0F28", 0 }, { "ADMA0F28", 0 }, { "VIB8601", 0 }, { "BYTEC001", 0 }, { "INT0002", 0 }, /* Cherrytrail Audio device*/ { "808622A8", 0 }, { "ADMA22A8", 0 }, { "AMCR22A8", 0 }, { "TIMC22A8", 0 }, { "HAD022A8", 0 }, { "VIBR22A8", 0 }, { } }; static int acpi_dev_gpio(struct acpi_resource *ares, void *data) { int *count = data; if (ares->type == ACPI_RESOURCE_TYPE_GPIO) return (*count)++; return 1; } static int acpi_dev_resource_gpio(struct acpi_device *adev) { int count = 0; int ret; struct list_head resource_list; if (!adev->handle) return count; INIT_LIST_HEAD(&resource_list); ret = acpi_dev_get_resources(adev, &resource_list, acpi_dev_gpio, &count); if (ret < 0) goto end; acpi_dev_free_resource_list(&resource_list); end: return count; } /** * acpi_create_platform_device - Create platform device for ACPI device node * @adev: ACPI device node to create a platform device for. * @id: ACPI device ID used to match @adev. * * 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. * * Name of the platform device will be the same as @adev's. */ int acpi_create_platform_device(struct acpi_device *adev, const struct acpi_device_id *id) { struct platform_device *pdev = NULL; struct acpi_device *acpi_parent; struct platform_device_info pdevinfo; struct resource_list_entry *rentry; struct list_head resource_list; struct resource *resources = NULL; int count; /* If the ACPI node already has a physical device attached, skip it. */ if (adev->physical_node_count) return 0; INIT_LIST_HEAD(&resource_list); count = acpi_dev_get_resources(adev, &resource_list, NULL, NULL); if (count <= 0) { if (!acpi_dev_resource_gpio(adev)) return 0; else goto create_dev; } 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; acpi_dev_free_resource_list(&resource_list); create_dev: memset(&pdevinfo, 0, sizeof(pdevinfo)); /* * 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. */ pdevinfo.parent = NULL; 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); pdevinfo.parent = entry->dev; } mutex_unlock(&acpi_parent->physical_node_lock); } 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); 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)); } kfree(resources); 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); }