2 * PM domain driver for Keystone2 devices
4 * Copyright 2013 Texas Instruments, Inc.
5 * Santosh Shilimkar <santosh.shillimkar@ti.com>
7 * Based on Kevins work on DAVINCI SOCs
8 * Kevin Hilman <khilman@linaro.org>
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms and conditions of the GNU General Public License,
12 * version 2, as published by the Free Software Foundation.
15 #include <linux/init.h>
16 #include <linux/pm_runtime.h>
17 #include <linux/pm_clock.h>
18 #include <linux/platform_device.h>
19 #include <linux/clk-provider.h>
23 static int keystone_pm_runtime_suspend(struct device
*dev
)
27 dev_dbg(dev
, "%s\n", __func__
);
29 ret
= pm_generic_runtime_suspend(dev
);
33 ret
= pm_clk_suspend(dev
);
35 pm_generic_runtime_resume(dev
);
42 static int keystone_pm_runtime_resume(struct device
*dev
)
44 dev_dbg(dev
, "%s\n", __func__
);
48 return pm_generic_runtime_resume(dev
);
52 static struct dev_pm_domain keystone_pm_domain
= {
54 SET_RUNTIME_PM_OPS(keystone_pm_runtime_suspend
,
55 keystone_pm_runtime_resume
, NULL
)
56 USE_PLATFORM_PM_SLEEP_OPS
60 static struct pm_clk_notifier_block platform_domain_notifier
= {
61 .pm_domain
= &keystone_pm_domain
,
64 static struct of_device_id of_keystone_table
[] = {
65 {.compatible
= "ti,keystone"},
66 { /* end of list */ },
69 int __init
keystone_pm_runtime_init(void)
71 struct device_node
*np
;
73 np
= of_find_matching_node(NULL
, of_keystone_table
);
77 pm_clk_add_notifier(&platform_bus_type
, &platform_domain_notifier
);