/* * Runtime PM support code * * Copyright (C) 2009-2010 Magnus Damm * * This file is subject to the terms and conditions of the GNU General Public * License. See the file "COPYING" in the main directory of this archive * for more details. */ #include <linux/init.h> #include <linux/kernel.h> #include <linux/io.h> #include <linux/pm_runtime.h> #include <linux/pm_domain.h> #include <linux/pm_clock.h> #include <linux/platform_device.h> #include <linux/clk.h> #include <linux/sh_clk.h> #include <linux/bitmap.h> #include <linux/slab.h> static struct dev_pm_domain default_pm_domain = { .ops = { USE_PM_CLK_RUNTIME_OPS USE_PLATFORM_PM_SLEEP_OPS }, }; static struct pm_clk_notifier_block platform_bus_notifier = { .pm_domain = &default_pm_domain, .con_ids = { NULL, }, };
static int __init sh_pm_runtime_init(void) { if (IS_ENABLED(CONFIG_OF) && IS_ENABLED(CONFIG_ARCH_SHMOBILE)) { if (!of_find_compatible_node(NULL, NULL, "renesas,cpg-mstp-clocks")) return 0; if (IS_ENABLED(CONFIG_PM_GENERIC_DOMAINS_OF) && of_find_node_with_property(NULL, "#power-domain-cells")) return 0; } pm_clk_add_notifier(&platform_bus_type, &platform_bus_notifier); return 0; }Contributors
Person | Tokens | Prop | Commits | CommitProp | |
geert uytterhoeven | geert uytterhoeven | 46 | 68.66% | 5 | 71.43% |
magnus damm | magnus damm | 20 | 29.85% | 1 | 14.29% |
rafael j. wysocki | rafael j. wysocki | 1 | 1.49% | 1 | 14.29% |
Total | 67 | 100.00% | 7 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp | |
magnus damm | magnus damm | 57 | 40.43% | 1 | 6.67% |
geert uytterhoeven | geert uytterhoeven | 46 | 32.62% | 5 | 33.33% |
rafael j. wysocki | rafael j. wysocki | 34 | 24.11% | 7 | 46.67% |
rajendra nayak | rajendra nayak | 3 | 2.13% | 1 | 6.67% |
paul mundt | paul mundt | 1 | 0.71% | 1 | 6.67% |
Total | 141 | 100.00% | 15 | 100.00% |