Magnus Damm | f14c4f1 | 2010-07-27 08:14:35 +0000 | [diff] [blame] | 1 | /* |
Paul Mundt | d03299e | 2011-11-11 15:58:50 +0900 | [diff] [blame] | 2 | * Runtime PM support code |
Magnus Damm | f14c4f1 | 2010-07-27 08:14:35 +0000 | [diff] [blame] | 3 | * |
| 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. Wysocki | 7962041 | 2011-07-13 12:32:07 +0200 | [diff] [blame] | 15 | #include <linux/pm_domain.h> |
Rafael J. Wysocki | b5e8d26 | 2011-08-25 15:34:19 +0200 | [diff] [blame] | 16 | #include <linux/pm_clock.h> |
Magnus Damm | f14c4f1 | 2010-07-27 08:14:35 +0000 | [diff] [blame] | 17 | #include <linux/platform_device.h> |
| 18 | #include <linux/clk.h> |
| 19 | #include <linux/sh_clk.h> |
| 20 | #include <linux/bitmap.h> |
Rafael J. Wysocki | 1d2b71f | 2011-04-29 00:36:53 +0200 | [diff] [blame] | 21 | #include <linux/slab.h> |
Magnus Damm | f14c4f1 | 2010-07-27 08:14:35 +0000 | [diff] [blame] | 22 | |
Rafael J. Wysocki | 300be5b | 2014-12-05 03:08:24 +0100 | [diff] [blame] | 23 | #ifdef CONFIG_PM |
Ben Dooks | 8255fe1 | 2014-05-22 20:00:05 +0200 | [diff] [blame] | 24 | static int sh_pm_runtime_suspend(struct device *dev) |
| 25 | { |
| 26 | int ret; |
| 27 | |
| 28 | ret = pm_generic_runtime_suspend(dev); |
| 29 | if (ret) { |
| 30 | dev_err(dev, "failed to suspend device\n"); |
| 31 | return ret; |
| 32 | } |
| 33 | |
| 34 | ret = pm_clk_suspend(dev); |
| 35 | if (ret) { |
| 36 | dev_err(dev, "failed to suspend clock\n"); |
| 37 | pm_generic_runtime_resume(dev); |
| 38 | return ret; |
| 39 | } |
| 40 | |
| 41 | return 0; |
| 42 | } |
| 43 | |
| 44 | static int sh_pm_runtime_resume(struct device *dev) |
| 45 | { |
| 46 | int ret; |
| 47 | |
| 48 | ret = pm_clk_resume(dev); |
| 49 | if (ret) { |
| 50 | dev_err(dev, "failed to resume clock\n"); |
| 51 | return ret; |
| 52 | } |
| 53 | |
| 54 | return pm_generic_runtime_resume(dev); |
| 55 | } |
| 56 | |
Rafael J. Wysocki | 564b905 | 2011-06-23 01:52:55 +0200 | [diff] [blame] | 57 | static struct dev_pm_domain default_pm_domain = { |
Rafael J. Wysocki | 38ade3a | 2011-04-29 00:36:21 +0200 | [diff] [blame] | 58 | .ops = { |
Ben Dooks | 8255fe1 | 2014-05-22 20:00:05 +0200 | [diff] [blame] | 59 | .runtime_suspend = sh_pm_runtime_suspend, |
| 60 | .runtime_resume = sh_pm_runtime_resume, |
Rafael J. Wysocki | 38ade3a | 2011-04-29 00:36:21 +0200 | [diff] [blame] | 61 | USE_PLATFORM_PM_SLEEP_OPS |
| 62 | }, |
| 63 | }; |
| 64 | |
Rafael J. Wysocki | 564b905 | 2011-06-23 01:52:55 +0200 | [diff] [blame] | 65 | #define DEFAULT_PM_DOMAIN_PTR (&default_pm_domain) |
Magnus Damm | f14c4f1 | 2010-07-27 08:14:35 +0000 | [diff] [blame] | 66 | |
Rafael J. Wysocki | 85eb8c8 | 2011-04-30 00:25:44 +0200 | [diff] [blame] | 67 | #else |
Magnus Damm | f14c4f1 | 2010-07-27 08:14:35 +0000 | [diff] [blame] | 68 | |
Rafael J. Wysocki | 564b905 | 2011-06-23 01:52:55 +0200 | [diff] [blame] | 69 | #define DEFAULT_PM_DOMAIN_PTR NULL |
Magnus Damm | f14c4f1 | 2010-07-27 08:14:35 +0000 | [diff] [blame] | 70 | |
Rafael J. Wysocki | 300be5b | 2014-12-05 03:08:24 +0100 | [diff] [blame] | 71 | #endif /* CONFIG_PM */ |
Magnus Damm | f14c4f1 | 2010-07-27 08:14:35 +0000 | [diff] [blame] | 72 | |
Rafael J. Wysocki | 85eb8c8 | 2011-04-30 00:25:44 +0200 | [diff] [blame] | 73 | static struct pm_clk_notifier_block platform_bus_notifier = { |
Rafael J. Wysocki | 564b905 | 2011-06-23 01:52:55 +0200 | [diff] [blame] | 74 | .pm_domain = DEFAULT_PM_DOMAIN_PTR, |
Rafael J. Wysocki | 85eb8c8 | 2011-04-30 00:25:44 +0200 | [diff] [blame] | 75 | .con_ids = { NULL, }, |
Magnus Damm | f14c4f1 | 2010-07-27 08:14:35 +0000 | [diff] [blame] | 76 | }; |
| 77 | |
| 78 | static int __init sh_pm_runtime_init(void) |
| 79 | { |
Geert Uytterhoeven | 3c90c55 | 2014-05-06 23:26:19 +0200 | [diff] [blame] | 80 | if (IS_ENABLED(CONFIG_ARCH_SHMOBILE_MULTI)) { |
| 81 | if (!of_machine_is_compatible("renesas,emev2") && |
| 82 | !of_machine_is_compatible("renesas,r7s72100") && |
Geert Uytterhoeven | a5cb514 | 2014-12-03 14:41:47 +0100 | [diff] [blame] | 83 | #ifndef CONFIG_PM_GENERIC_DOMAINS_OF |
Geert Uytterhoeven | 230f259 | 2015-02-17 16:43:03 +0100 | [diff] [blame] | 84 | !of_machine_is_compatible("renesas,r8a73a4") && |
Geert Uytterhoeven | 3c90c55 | 2014-05-06 23:26:19 +0200 | [diff] [blame] | 85 | !of_machine_is_compatible("renesas,r8a7740") && |
Geert Uytterhoeven | 41b4b3b | 2015-02-17 16:31:39 +0100 | [diff] [blame] | 86 | !of_machine_is_compatible("renesas,sh73a0") && |
Geert Uytterhoeven | a5cb514 | 2014-12-03 14:41:47 +0100 | [diff] [blame] | 87 | #endif |
Geert Uytterhoeven | 3c90c55 | 2014-05-06 23:26:19 +0200 | [diff] [blame] | 88 | !of_machine_is_compatible("renesas,r8a7778") && |
| 89 | !of_machine_is_compatible("renesas,r8a7779") && |
| 90 | !of_machine_is_compatible("renesas,r8a7790") && |
| 91 | !of_machine_is_compatible("renesas,r8a7791") && |
Geert Uytterhoeven | 2f35fb3 | 2014-05-27 15:45:09 +0200 | [diff] [blame] | 92 | !of_machine_is_compatible("renesas,r8a7792") && |
| 93 | !of_machine_is_compatible("renesas,r8a7793") && |
Geert Uytterhoeven | 0017052 | 2015-02-19 18:46:46 +0100 | [diff] [blame] | 94 | !of_machine_is_compatible("renesas,r8a7794")) |
Geert Uytterhoeven | 3c90c55 | 2014-05-06 23:26:19 +0200 | [diff] [blame] | 95 | return 0; |
| 96 | } |
| 97 | |
Rafael J. Wysocki | 3d5c303 | 2011-07-01 22:13:44 +0200 | [diff] [blame] | 98 | pm_clk_add_notifier(&platform_bus_type, &platform_bus_notifier); |
Magnus Damm | f14c4f1 | 2010-07-27 08:14:35 +0000 | [diff] [blame] | 99 | return 0; |
| 100 | } |
| 101 | core_initcall(sh_pm_runtime_init); |