]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
arch/x86/platform/atom: Move pmc_atom to drivers/platform/x86
authorIrina Tirdea <irina.tirdea@intel.com>
Mon, 23 Jan 2017 18:07:43 +0000 (12:07 -0600)
committerStephen Boyd <sboyd@codeaurora.org>
Fri, 27 Jan 2017 00:21:27 +0000 (16:21 -0800)
The pmc_atom driver does not contain any architecture specific
code. It only enables the SoC Power Management Controller driver
for BayTrail and CherryTrail platforms.

Move the pmc_atom driver from arch/x86/platform/atom to
drivers/platform/x86. Also clean-up and reorder include files by
alphabetical order in pmc_atom.h

Signed-off-by: Irina Tirdea <irina.tirdea@intel.com>
Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Acked-by: Thomas Gleixner <tglx@linutronix.de>
Acked-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
arch/x86/Kconfig
arch/x86/platform/atom/Makefile
drivers/acpi/acpi_lpss.c
drivers/platform/x86/Kconfig
drivers/platform/x86/Makefile
drivers/platform/x86/pmc_atom.c [moved from arch/x86/platform/atom/pmc_atom.c with 99% similarity]
include/linux/platform_data/x86/pmc_atom.h [moved from arch/x86/include/asm/pmc_atom.h with 100% similarity]

index e487493bbd47f0f84caed99f6c952bf6b3062413..7b4f1789f3869d79cc76c0a449a04d729aadff17 100644 (file)
@@ -2789,10 +2789,6 @@ config X86_DMA_REMAP
        bool
        depends on STA2X11
 
-config PMC_ATOM
-       def_bool y
-        depends on PCI
-
 source "net/Kconfig"
 
 source "drivers/Kconfig"
index 40983f5b0858355e42a28d4ed5552aa086e859b6..57be88fa34bb7f1f3d3f0d36ff9800393a89eb8d 100644 (file)
@@ -1,2 +1 @@
-obj-$(CONFIG_PMC_ATOM)         += pmc_atom.o
 obj-$(CONFIG_PUNIT_ATOM_DEBUG) += punit_atom_debug.o
index 8ea836c046f8be056623f109fedb6494d23dc586..90d112a3063a4a9fb247a08433b5bf13360a3696 100644 (file)
@@ -18,6 +18,7 @@
 #include <linux/mutex.h>
 #include <linux/platform_device.h>
 #include <linux/platform_data/clk-lpss.h>
+#include <linux/platform_data/x86/pmc_atom.h>
 #include <linux/pm_domain.h>
 #include <linux/pm_runtime.h>
 #include <linux/delay.h>
@@ -31,7 +32,6 @@ ACPI_MODULE_NAME("acpi_lpss");
 #include <asm/cpu_device_id.h>
 #include <asm/intel-family.h>
 #include <asm/iosf_mbi.h>
-#include <asm/pmc_atom.h>
 
 #define LPSS_ADDR(desc) ((unsigned long)&desc)
 
index 5fe8be089b8b2dc51ced608e0790c7ce05b8dd18..659b33fc2e1806f515752ce4cecfa4d57eb0c069 100644 (file)
@@ -1077,3 +1077,7 @@ config MLX_CPLD_PLATFORM
          cables and fans on the wide range Mellanox IB and Ethernet systems.
 
 endif # X86_PLATFORM_DEVICES
+
+config PMC_ATOM
+       def_bool y
+       depends on PCI
index d4111f0f8a78fdbcc7a10ef5e236bdda1cdffc15..49ee7ef283bba5e0617406505ce87632b8e5f4de 100644 (file)
@@ -74,5 +74,6 @@ obj-$(CONFIG_INTEL_TELEMETRY) += intel_telemetry_core.o \
                                   intel_telemetry_pltdrv.o \
                                   intel_telemetry_debugfs.o
 obj-$(CONFIG_INTEL_PMC_CORE)    += intel_pmc_core.o
+obj-$(CONFIG_PMC_ATOM)         += pmc_atom.o
 obj-$(CONFIG_MLX_PLATFORM)     += mlx-platform.o
 obj-$(CONFIG_MLX_CPLD_PLATFORM)        += mlxcpld-hotplug.o
similarity index 99%
rename from arch/x86/platform/atom/pmc_atom.c
rename to drivers/platform/x86/pmc_atom.c
index 964ff4fc61f9bd3494f2422e94743bd2d1658b8a..e1dfb1b3632f89f368f2728344643b805b9c5ea0 100644 (file)
 
 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
 
+#include <linux/debugfs.h>
+#include <linux/device.h>
 #include <linux/init.h>
+#include <linux/io.h>
+#include <linux/platform_data/x86/pmc_atom.h>
 #include <linux/pci.h>
-#include <linux/device.h>
-#include <linux/debugfs.h>
 #include <linux/seq_file.h>
-#include <linux/io.h>
-
-#include <asm/pmc_atom.h>
 
 struct pmc_bit_map {
        const char *name;