|
@@ -13,6 +13,7 @@
|
|
|
|
|
|
|
|
#include <linux/acpi.h>
|
|
#include <linux/acpi.h>
|
|
|
#include <linux/device.h>
|
|
#include <linux/device.h>
|
|
|
|
|
+#include <linux/err.h>
|
|
|
#include <linux/kernel.h>
|
|
#include <linux/kernel.h>
|
|
|
#include <linux/module.h>
|
|
#include <linux/module.h>
|
|
|
#include <linux/platform_device.h>
|
|
#include <linux/platform_device.h>
|
|
@@ -21,9 +22,25 @@
|
|
|
|
|
|
|
|
ACPI_MODULE_NAME("platform");
|
|
ACPI_MODULE_NAME("platform");
|
|
|
|
|
|
|
|
|
|
+static int acpi_create_platform_clks(struct acpi_device *adev)
|
|
|
|
|
+{
|
|
|
|
|
+ static struct platform_device *pdev;
|
|
|
|
|
+
|
|
|
|
|
+ /* Create Lynxpoint LPSS clocks */
|
|
|
|
|
+ if (!pdev && !strncmp(acpi_device_hid(adev), "INT33C", 6)) {
|
|
|
|
|
+ pdev = platform_device_register_simple("clk-lpt", -1, NULL, 0);
|
|
|
|
|
+ if (IS_ERR(pdev))
|
|
|
|
|
+ return PTR_ERR(pdev);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ return 0;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
/**
|
|
/**
|
|
|
* acpi_create_platform_device - Create platform device for ACPI device node
|
|
* acpi_create_platform_device - Create platform device for ACPI device node
|
|
|
* @adev: ACPI device node to create a platform device for.
|
|
* @adev: ACPI device node to create a platform device for.
|
|
|
|
|
+ * @flags: ACPI_PLATFORM_* flags that affect the creation of the platform
|
|
|
|
|
+ * devices.
|
|
|
*
|
|
*
|
|
|
* Check if the given @adev can be represented as a platform device and, if
|
|
* 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
|
|
* that's the case, create and register a platform device, populate its common
|
|
@@ -31,7 +48,8 @@ ACPI_MODULE_NAME("platform");
|
|
|
*
|
|
*
|
|
|
* Name of the platform device will be the same as @adev's.
|
|
* Name of the platform device will be the same as @adev's.
|
|
|
*/
|
|
*/
|
|
|
-struct platform_device *acpi_create_platform_device(struct acpi_device *adev)
|
|
|
|
|
|
|
+struct platform_device *acpi_create_platform_device(struct acpi_device *adev,
|
|
|
|
|
+ unsigned long flags)
|
|
|
{
|
|
{
|
|
|
struct platform_device *pdev = NULL;
|
|
struct platform_device *pdev = NULL;
|
|
|
struct acpi_device *acpi_parent;
|
|
struct acpi_device *acpi_parent;
|
|
@@ -41,6 +59,11 @@ struct platform_device *acpi_create_platform_device(struct acpi_device *adev)
|
|
|
struct resource *resources;
|
|
struct resource *resources;
|
|
|
int count;
|
|
int count;
|
|
|
|
|
|
|
|
|
|
+ if ((flags & ACPI_PLATFORM_CLK) && acpi_create_platform_clks(adev)) {
|
|
|
|
|
+ dev_err(&adev->dev, "failed to create clocks\n");
|
|
|
|
|
+ return NULL;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
/* If the ACPI node already has a physical device attached, skip it. */
|
|
/* If the ACPI node already has a physical device attached, skip it. */
|
|
|
if (adev->physical_node_count)
|
|
if (adev->physical_node_count)
|
|
|
return NULL;
|
|
return NULL;
|