blob: 00b82ec944420cd7382270b735141d4e31f23271 [file] [log] [blame]
Magnus Dammf14c4f12010-07-27 08:14:35 +00001/*
Paul Mundtd03299e2011-11-11 15:58:50 +09002 * Runtime PM support code
Magnus Dammf14c4f12010-07-27 08:14:35 +00003 *
4 * Copyright (C) 2009-2010 Magnus Damm
5 *
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
8 * for more details.
9 */
10
11#include <linux/init.h>
12#include <linux/kernel.h>
13#include <linux/io.h>
14#include <linux/pm_runtime.h>
Rafael J. Wysocki79620412011-07-13 12:32:07 +020015#include <linux/pm_domain.h>
Rafael J. Wysockib5e8d262011-08-25 15:34:19 +020016#include <linux/pm_clock.h>
Magnus Dammf14c4f12010-07-27 08:14:35 +000017#include <linux/platform_device.h>
18#include <linux/clk.h>
19#include <linux/sh_clk.h>
20#include <linux/bitmap.h>
Rafael J. Wysocki1d2b71f2011-04-29 00:36:53 +020021#include <linux/slab.h>
Magnus Dammf14c4f12010-07-27 08:14:35 +000022
23#ifdef CONFIG_PM_RUNTIME
Rafael J. Wysocki564b9052011-06-23 01:52:55 +020024static struct dev_pm_domain default_pm_domain = {
Rafael J. Wysocki38ade3a2011-04-29 00:36:21 +020025 .ops = {
Rafael J. Wysocki3d5c3032011-07-01 22:13:44 +020026 .runtime_suspend = pm_clk_suspend,
27 .runtime_resume = pm_clk_resume,
Rafael J. Wysocki38ade3a2011-04-29 00:36:21 +020028 USE_PLATFORM_PM_SLEEP_OPS
29 },
30};
31
Rafael J. Wysocki564b9052011-06-23 01:52:55 +020032#define DEFAULT_PM_DOMAIN_PTR (&default_pm_domain)
Magnus Dammf14c4f12010-07-27 08:14:35 +000033
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +020034#else
Magnus Dammf14c4f12010-07-27 08:14:35 +000035
Rafael J. Wysocki564b9052011-06-23 01:52:55 +020036#define DEFAULT_PM_DOMAIN_PTR NULL
Magnus Dammf14c4f12010-07-27 08:14:35 +000037
38#endif /* CONFIG_PM_RUNTIME */
39
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +020040static struct pm_clk_notifier_block platform_bus_notifier = {
Rafael J. Wysocki564b9052011-06-23 01:52:55 +020041 .pm_domain = DEFAULT_PM_DOMAIN_PTR,
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +020042 .con_ids = { NULL, },
Magnus Dammf14c4f12010-07-27 08:14:35 +000043};
44
Geert Uytterhoeven3c90c552014-05-06 23:26:19 +020045static bool default_pm_on;
46
Magnus Dammf14c4f12010-07-27 08:14:35 +000047static int __init sh_pm_runtime_init(void)
48{
Geert Uytterhoeven3c90c552014-05-06 23:26:19 +020049 if (IS_ENABLED(CONFIG_ARCH_SHMOBILE_MULTI)) {
50 if (!of_machine_is_compatible("renesas,emev2") &&
51 !of_machine_is_compatible("renesas,r7s72100") &&
52 !of_machine_is_compatible("renesas,r8a73a4") &&
53 !of_machine_is_compatible("renesas,r8a7740") &&
54 !of_machine_is_compatible("renesas,r8a7778") &&
55 !of_machine_is_compatible("renesas,r8a7779") &&
56 !of_machine_is_compatible("renesas,r8a7790") &&
57 !of_machine_is_compatible("renesas,r8a7791") &&
58 !of_machine_is_compatible("renesas,sh7372") &&
59 !of_machine_is_compatible("renesas,sh73a0"))
60 return 0;
61 }
62
63 default_pm_on = true;
Rafael J. Wysocki3d5c3032011-07-01 22:13:44 +020064 pm_clk_add_notifier(&platform_bus_type, &platform_bus_notifier);
Magnus Dammf14c4f12010-07-27 08:14:35 +000065 return 0;
66}
67core_initcall(sh_pm_runtime_init);
Magnus Damm999a4d22011-07-10 10:38:34 +020068
Magnus Damm999a4d22011-07-10 10:38:34 +020069static int __init sh_pm_runtime_late_init(void)
70{
Geert Uytterhoeven3c90c552014-05-06 23:26:19 +020071 if (default_pm_on)
72 pm_genpd_poweroff_unused();
Magnus Damm999a4d22011-07-10 10:38:34 +020073 return 0;
74}
75late_initcall(sh_pm_runtime_late_init);