diff options
author | Viresh Kumar <viresh.kumar@linaro.org> | 2017-09-26 15:12:40 -0700 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2017-10-03 02:45:12 +0200 |
commit | 7813dd6fc75fb375d4caf002e7f80a826fc3153a (patch) | |
tree | 37326fb95800c931382c3abda492d207c81aef41 /drivers | |
parent | 9e66317d3c92ddaab330c125dfe9d06eee268aff (diff) | |
download | linux-7813dd6fc75fb375d4caf002e7f80a826fc3153a.tar.gz linux-7813dd6fc75fb375d4caf002e7f80a826fc3153a.tar.bz2 linux-7813dd6fc75fb375d4caf002e7f80a826fc3153a.zip |
PM / OPP: Move the OPP directory out of power/
The drivers/base/power/ directory is special and contains code related
to power management core like system suspend/resume, hibernation, etc.
It was fine to keep the OPP code inside it when we had just one file for
it, but it is growing now and already has a directory for itself.
Lets move it directly under drivers/ directory, just like cpufreq and
cpuidle.
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
Acked-by: Stephen Boyd <sboyd@codeaurora.org>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/Kconfig | 2 | ||||
-rw-r--r-- | drivers/Makefile | 1 | ||||
-rw-r--r-- | drivers/base/power/Makefile | 1 | ||||
-rw-r--r-- | drivers/opp/Kconfig | 13 | ||||
-rw-r--r-- | drivers/opp/Makefile (renamed from drivers/base/power/opp/Makefile) | 0 | ||||
-rw-r--r-- | drivers/opp/core.c (renamed from drivers/base/power/opp/core.c) | 0 | ||||
-rw-r--r-- | drivers/opp/cpu.c (renamed from drivers/base/power/opp/cpu.c) | 0 | ||||
-rw-r--r-- | drivers/opp/debugfs.c (renamed from drivers/base/power/opp/debugfs.c) | 0 | ||||
-rw-r--r-- | drivers/opp/of.c (renamed from drivers/base/power/opp/of.c) | 0 | ||||
-rw-r--r-- | drivers/opp/opp.h (renamed from drivers/base/power/opp/opp.h) | 0 |
10 files changed, 16 insertions, 1 deletions
diff --git a/drivers/Kconfig b/drivers/Kconfig index 505c676fa9c7..9e264d410c23 100644 --- a/drivers/Kconfig +++ b/drivers/Kconfig @@ -208,4 +208,6 @@ source "drivers/tee/Kconfig" source "drivers/mux/Kconfig" +source "drivers/opp/Kconfig" + endmenu diff --git a/drivers/Makefile b/drivers/Makefile index d90fdc413648..dd718a3007e9 100644 --- a/drivers/Makefile +++ b/drivers/Makefile @@ -125,6 +125,7 @@ obj-$(CONFIG_ACCESSIBILITY) += accessibility/ obj-$(CONFIG_ISDN) += isdn/ obj-$(CONFIG_EDAC) += edac/ obj-$(CONFIG_EISA) += eisa/ +obj-$(CONFIG_PM_OPP) += opp/ obj-$(CONFIG_CPU_FREQ) += cpufreq/ obj-$(CONFIG_CPU_IDLE) += cpuidle/ obj-y += mmc/ diff --git a/drivers/base/power/Makefile b/drivers/base/power/Makefile index 5998c53280f5..73a1cffc0a5f 100644 --- a/drivers/base/power/Makefile +++ b/drivers/base/power/Makefile @@ -1,7 +1,6 @@ obj-$(CONFIG_PM) += sysfs.o generic_ops.o common.o qos.o runtime.o wakeirq.o obj-$(CONFIG_PM_SLEEP) += main.o wakeup.o obj-$(CONFIG_PM_TRACE_RTC) += trace.o -obj-$(CONFIG_PM_OPP) += opp/ obj-$(CONFIG_PM_GENERIC_DOMAINS) += domain.o domain_governor.o obj-$(CONFIG_HAVE_CLK) += clock_ops.o diff --git a/drivers/opp/Kconfig b/drivers/opp/Kconfig new file mode 100644 index 000000000000..a7fbb93f302c --- /dev/null +++ b/drivers/opp/Kconfig @@ -0,0 +1,13 @@ +config PM_OPP + bool + select SRCU + ---help--- + SOCs have a standard set of tuples consisting of frequency and + voltage pairs that the device will support per voltage domain. This + is called Operating Performance Point or OPP. The actual definitions + of OPP varies over silicon within the same family of devices. + + OPP layer organizes the data internally using device pointers + representing individual voltage domains and provides SOC + implementations a ready to use framework to manage OPPs. + For more information, read <file:Documentation/power/opp.txt> diff --git a/drivers/base/power/opp/Makefile b/drivers/opp/Makefile index e70ceb406fe9..e70ceb406fe9 100644 --- a/drivers/base/power/opp/Makefile +++ b/drivers/opp/Makefile diff --git a/drivers/base/power/opp/core.c b/drivers/opp/core.c index a6de32530693..a6de32530693 100644 --- a/drivers/base/power/opp/core.c +++ b/drivers/opp/core.c diff --git a/drivers/base/power/opp/cpu.c b/drivers/opp/cpu.c index 2d87bc1adf38..2d87bc1adf38 100644 --- a/drivers/base/power/opp/cpu.c +++ b/drivers/opp/cpu.c diff --git a/drivers/base/power/opp/debugfs.c b/drivers/opp/debugfs.c index 81cf120fcf43..81cf120fcf43 100644 --- a/drivers/base/power/opp/debugfs.c +++ b/drivers/opp/debugfs.c diff --git a/drivers/base/power/opp/of.c b/drivers/opp/of.c index 0b718886479b..0b718886479b 100644 --- a/drivers/base/power/opp/of.c +++ b/drivers/opp/of.c diff --git a/drivers/base/power/opp/opp.h b/drivers/opp/opp.h index 166eef990599..166eef990599 100644 --- a/drivers/base/power/opp/opp.h +++ b/drivers/opp/opp.h |