]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
Based on earlier review comments, we'll no longer try to stick all of our
authorDaniel Drake <dsd@laptop.org>
Sat, 16 Jul 2011 13:30:51 +0000 (23:30 +1000)
committerStephen Rothwell <sfr@canb.auug.org.au>
Tue, 26 Jul 2011 05:04:55 +0000 (15:04 +1000)
XO-1 goodies in a single driver.  We'll split it into a power management
driver, and an EC/SCI driver.

As a first step, rename olpc-xo1 to olpc-xo1-pm, and make it builtin
instead of modular.

Signed-off-by: Daniel Drake <dsd@laptop.org>
Acked-by: Andres Salomon <dilinger@queued.net>
Cc: Grant Likely <grant.likely@secretlab.ca>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
arch/x86/Kconfig
arch/x86/platform/olpc/Makefile
arch/x86/platform/olpc/olpc-xo1-pm.c [moved from arch/x86/platform/olpc/olpc-xo1.c with 70% similarity]

index 70672ad9d909c1dec1434fa32e11173f35b41e77..ecfaa8f88994cf536c2d235bff2d547a1aad9acd 100644 (file)
@@ -2025,11 +2025,12 @@ config OLPC
          Add support for detecting the unique features of the OLPC
          XO hardware.
 
-config OLPC_XO1
-       tristate "OLPC XO-1 support"
+config OLPC_XO1_PM
+       bool "OLPC XO-1 Power Management"
        depends on OLPC && MFD_CS5535
+       select MFD_CORE
        ---help---
-         Add support for non-essential features of the OLPC XO-1 laptop.
+         Add support for poweroff of the OLPC XO-1 laptop.
 
 config ALIX
        bool "PCEngines ALIX System Support (LED setup)"
index 81c5e2165c2416be638675f83f887e1f8f52d218..cd250387d4bb2a829e441bf140ab0e397f81904a 100644 (file)
@@ -1,2 +1,2 @@
 obj-$(CONFIG_OLPC)             += olpc.o olpc_ofw.o olpc_dt.o
-obj-$(CONFIG_OLPC_XO1)         += olpc-xo1.o
+obj-$(CONFIG_OLPC_XO1_PM)              += olpc-xo1-pm.o
similarity index 70%
rename from arch/x86/platform/olpc/olpc-xo1.c
rename to arch/x86/platform/olpc/olpc-xo1-pm.c
index a63e9488979fd23f99f4de9aa6654108582206fc..a2a59d36824dc815a391bfcea7d73fd427807594 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Support for features of the OLPC XO-1 laptop
+ * Support for power management features of the OLPC XO-1 laptop
  *
  * Copyright (C) 2010 Andres Salomon <dilinger@queued.net>
  * Copyright (C) 2010 One Laptop per Child
@@ -13,7 +13,6 @@
  */
 
 #include <linux/cs5535.h>
-#include <linux/module.h>
 #include <linux/platform_device.h>
 #include <linux/pm.h>
 #include <linux/mfd/core.h>
@@ -21,7 +20,7 @@
 #include <asm/io.h>
 #include <asm/olpc.h>
 
-#define DRV_NAME "olpc-xo1"
+#define DRV_NAME "olpc-xo1-pm"
 
 static unsigned long acpi_base;
 static unsigned long pms_base;
@@ -44,7 +43,7 @@ static void xo1_power_off(void)
        outl(0x00002000, acpi_base + CS5536_PM1_CNT);
 }
 
-static int __devinit olpc_xo1_probe(struct platform_device *pdev)
+static int __devinit xo1_pm_probe(struct platform_device *pdev)
 {
        struct resource *res;
        int err;
@@ -76,7 +75,7 @@ static int __devinit olpc_xo1_probe(struct platform_device *pdev)
        return 0;
 }
 
-static int __devexit olpc_xo1_remove(struct platform_device *pdev)
+static int __devexit xo1_pm_remove(struct platform_device *pdev)
 {
        mfd_cell_disable(pdev);
 
@@ -89,48 +88,36 @@ static int __devexit olpc_xo1_remove(struct platform_device *pdev)
        return 0;
 }
 
-static struct platform_driver cs5535_pms_drv = {
+static struct platform_driver cs5535_pms_driver = {
        .driver = {
                .name = "cs5535-pms",
                .owner = THIS_MODULE,
        },
-       .probe = olpc_xo1_probe,
-       .remove = __devexit_p(olpc_xo1_remove),
+       .probe = xo1_pm_probe,
+       .remove = __devexit_p(xo1_pm_remove),
 };
 
-static struct platform_driver cs5535_acpi_drv = {
+static struct platform_driver cs5535_acpi_driver = {
        .driver = {
                .name = "olpc-xo1-pm-acpi",
                .owner = THIS_MODULE,
        },
-       .probe = olpc_xo1_probe,
-       .remove = __devexit_p(olpc_xo1_remove),
+       .probe = xo1_pm_probe,
+       .remove = __devexit_p(xo1_pm_remove),
 };
 
-static int __init olpc_xo1_init(void)
+static int __init xo1_pm_init(void)
 {
        int r;
 
-       r = platform_driver_register(&cs5535_pms_drv);
+       r = platform_driver_register(&cs5535_pms_driver);
        if (r)
                return r;
 
-       r = platform_driver_register(&cs5535_acpi_drv);
+       r = platform_driver_register(&cs5535_acpi_driver);
        if (r)
-               platform_driver_unregister(&cs5535_pms_drv);
+               platform_driver_unregister(&cs5535_pms_driver);
 
        return r;
 }
-
-static void __exit olpc_xo1_exit(void)
-{
-       platform_driver_unregister(&cs5535_acpi_drv);
-       platform_driver_unregister(&cs5535_pms_drv);
-}
-
-MODULE_AUTHOR("Daniel Drake <dsd@laptop.org>");
-MODULE_LICENSE("GPL");
-MODULE_ALIAS("platform:cs5535-pms");
-
-module_init(olpc_xo1_init);
-module_exit(olpc_xo1_exit);
+arch_initcall(xo1_pm_init);