2 * Simple Power-Managed Bus Driver
4 * Copyright (C) 2014-2015 Glider bvba
6 * This file is subject to the terms and conditions of the GNU General Public
7 * License. See the file "COPYING" in the main directory of this archive
11 #include <linux/module.h>
12 #include <linux/of_platform.h>
13 #include <linux/platform_device.h>
14 #include <linux/pm_runtime.h>
17 static int simple_pm_bus_probe(struct platform_device *pdev)
19 const struct of_dev_auxdata *lookup = dev_get_platdata(&pdev->dev);
20 struct device_node *np = pdev->dev.of_node;
22 dev_dbg(&pdev->dev, "%s\n", __func__);
24 pm_runtime_enable(&pdev->dev);
27 of_platform_populate(np, NULL, lookup, &pdev->dev);
32 static int simple_pm_bus_remove(struct platform_device *pdev)
34 dev_dbg(&pdev->dev, "%s\n", __func__);
36 pm_runtime_disable(&pdev->dev);
40 static const struct of_device_id simple_pm_bus_of_match[] = {
41 { .compatible = "simple-pm-bus", },
44 MODULE_DEVICE_TABLE(of, simple_pm_bus_of_match);
46 static struct platform_driver simple_pm_bus_driver = {
47 .probe = simple_pm_bus_probe,
48 .remove = simple_pm_bus_remove,
50 .name = "simple-pm-bus",
51 .of_match_table = simple_pm_bus_of_match,
55 module_platform_driver(simple_pm_bus_driver);
57 MODULE_DESCRIPTION("Simple Power-Managed Bus Driver");
58 MODULE_AUTHOR("Geert Uytterhoeven <geert+renesas@glider.be>");
59 MODULE_LICENSE("GPL v2");