blob: d75582d1aa5560c657a98a419ac89c31047f0965 [file] [log] [blame]
Daniel Drakebf1ebf02010-10-10 10:40:32 +01001/*
Daniel Drakea3128582011-06-25 17:34:10 +01002 * Support for power management features of the OLPC XO-1 laptop
Daniel Drakebf1ebf02010-10-10 10:40:32 +01003 *
Andres Salomon419cdc52010-11-29 15:45:06 -08004 * Copyright (C) 2010 Andres Salomon <dilinger@queued.net>
Daniel Drakebf1ebf02010-10-10 10:40:32 +01005 * Copyright (C) 2010 One Laptop per Child
6 * Copyright (C) 2006 Red Hat, Inc.
7 * Copyright (C) 2006 Advanced Micro Devices, Inc.
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 */
14
Daniel Drake7a0d4fc2011-06-25 17:34:09 +010015#include <linux/cs5535.h>
Daniel Drakebf1ebf02010-10-10 10:40:32 +010016#include <linux/platform_device.h>
Paul Gortmaker69c60c82011-05-26 12:22:53 -040017#include <linux/export.h>
Daniel Drakebf1ebf02010-10-10 10:40:32 +010018#include <linux/pm.h>
Andres Salomon1310e6d2011-02-17 19:07:36 -080019#include <linux/mfd/core.h>
Daniel Drake97c4cb72011-06-25 17:34:11 +010020#include <linux/suspend.h>
Andres Salomon3bf94282012-07-11 01:16:29 -070021#include <linux/olpc-ec.h>
Daniel Drakebf1ebf02010-10-10 10:40:32 +010022
23#include <asm/io.h>
24#include <asm/olpc.h>
25
Daniel Drakea3128582011-06-25 17:34:10 +010026#define DRV_NAME "olpc-xo1-pm"
Daniel Drakebf1ebf02010-10-10 10:40:32 +010027
Daniel Drakebf1ebf02010-10-10 10:40:32 +010028static unsigned long acpi_base;
29static unsigned long pms_base;
30
Daniel Drake97c4cb72011-06-25 17:34:11 +010031static u16 wakeup_mask = CS5536_PM_PWRBTN;
32
33static struct {
34 unsigned long address;
35 unsigned short segment;
36} ofw_bios_entry = { 0xF0000 + PAGE_OFFSET, __KERNEL_CS };
37
38/* Set bits in the wakeup mask */
39void olpc_xo1_pm_wakeup_set(u16 value)
40{
41 wakeup_mask |= value;
42}
43EXPORT_SYMBOL_GPL(olpc_xo1_pm_wakeup_set);
44
45/* Clear bits in the wakeup mask */
46void olpc_xo1_pm_wakeup_clear(u16 value)
47{
48 wakeup_mask &= ~value;
49}
50EXPORT_SYMBOL_GPL(olpc_xo1_pm_wakeup_clear);
51
52static int xo1_power_state_enter(suspend_state_t pm_state)
53{
54 unsigned long saved_sci_mask;
Daniel Drake97c4cb72011-06-25 17:34:11 +010055
56 /* Only STR is supported */
57 if (pm_state != PM_SUSPEND_MEM)
58 return -EINVAL;
59
Daniel Drake97c4cb72011-06-25 17:34:11 +010060 /*
61 * Save SCI mask (this gets lost since PM1_EN is used as a mask for
62 * wakeup events, which is not necessarily the same event set)
63 */
64 saved_sci_mask = inl(acpi_base + CS5536_PM1_STS);
65 saved_sci_mask &= 0xffff0000;
66
67 /* Save CPU state */
68 do_olpc_suspend_lowlevel();
69
70 /* Resume path starts here */
71
72 /* Restore SCI mask (using dword access to CS5536_PM1_EN) */
73 outl(saved_sci_mask, acpi_base + CS5536_PM1_STS);
74
Daniel Drake97c4cb72011-06-25 17:34:11 +010075 return 0;
76}
77
78asmlinkage int xo1_do_sleep(u8 sleep_state)
79{
80 void *pgd_addr = __va(read_cr3());
81
82 /* Program wakeup mask (using dword access to CS5536_PM1_EN) */
83 outl(wakeup_mask << 16, acpi_base + CS5536_PM1_STS);
84
85 __asm__("movl %0,%%eax" : : "r" (pgd_addr));
86 __asm__("call *(%%edi); cld"
87 : : "D" (&ofw_bios_entry));
88 __asm__("movb $0x34, %al\n\t"
89 "outb %al, $0x70\n\t"
90 "movb $0x30, %al\n\t"
91 "outb %al, $0x71\n\t");
92 return 0;
93}
94
Daniel Drakebf1ebf02010-10-10 10:40:32 +010095static void xo1_power_off(void)
96{
97 printk(KERN_INFO "OLPC XO-1 power off sequence...\n");
98
99 /* Enable all of these controls with 0 delay */
Daniel Drake7a0d4fc2011-06-25 17:34:09 +0100100 outl(0x40000000, pms_base + CS5536_PM_SCLK);
101 outl(0x40000000, pms_base + CS5536_PM_IN_SLPCTL);
102 outl(0x40000000, pms_base + CS5536_PM_WKXD);
103 outl(0x40000000, pms_base + CS5536_PM_WKD);
Daniel Drakebf1ebf02010-10-10 10:40:32 +0100104
105 /* Clear status bits (possibly unnecessary) */
Daniel Drake7a0d4fc2011-06-25 17:34:09 +0100106 outl(0x0002ffff, pms_base + CS5536_PM_SSC);
107 outl(0xffffffff, acpi_base + CS5536_PM_GPE0_STS);
Daniel Drakebf1ebf02010-10-10 10:40:32 +0100108
109 /* Write SLP_EN bit to start the machinery */
Daniel Drake7a0d4fc2011-06-25 17:34:09 +0100110 outl(0x00002000, acpi_base + CS5536_PM1_CNT);
Daniel Drakebf1ebf02010-10-10 10:40:32 +0100111}
112
Daniel Drake97c4cb72011-06-25 17:34:11 +0100113static int xo1_power_state_valid(suspend_state_t pm_state)
114{
115 /* suspend-to-RAM only */
116 return pm_state == PM_SUSPEND_MEM;
117}
118
119static const struct platform_suspend_ops xo1_suspend_ops = {
120 .valid = xo1_power_state_valid,
121 .enter = xo1_power_state_enter,
122};
123
Daniel Drakea3128582011-06-25 17:34:10 +0100124static int __devinit xo1_pm_probe(struct platform_device *pdev)
Daniel Drakebf1ebf02010-10-10 10:40:32 +0100125{
Andres Salomon419cdc52010-11-29 15:45:06 -0800126 struct resource *res;
Andres Salomon1310e6d2011-02-17 19:07:36 -0800127 int err;
Daniel Drakebf1ebf02010-10-10 10:40:32 +0100128
Andres Salomon419cdc52010-11-29 15:45:06 -0800129 /* don't run on non-XOs */
130 if (!machine_is_olpc())
Daniel Drakebf1ebf02010-10-10 10:40:32 +0100131 return -ENODEV;
132
Andres Salomonf77289a2011-03-03 09:51:58 -0800133 err = mfd_cell_enable(pdev);
Andres Salomon1310e6d2011-02-17 19:07:36 -0800134 if (err)
135 return err;
136
Andres Salomon419cdc52010-11-29 15:45:06 -0800137 res = platform_get_resource(pdev, IORESOURCE_IO, 0);
138 if (!res) {
139 dev_err(&pdev->dev, "can't fetch device resource info\n");
140 return -EIO;
141 }
Daniel Drakeadfa4bd2011-03-22 13:50:39 -0700142 if (strcmp(pdev->name, "cs5535-pms") == 0)
Andres Salomon419cdc52010-11-29 15:45:06 -0800143 pms_base = res->start;
Daniel Drakeadfa4bd2011-03-22 13:50:39 -0700144 else if (strcmp(pdev->name, "olpc-xo1-pm-acpi") == 0)
Andres Salomon419cdc52010-11-29 15:45:06 -0800145 acpi_base = res->start;
146
147 /* If we have both addresses, we can override the poweroff hook */
148 if (pms_base && acpi_base) {
Daniel Drake97c4cb72011-06-25 17:34:11 +0100149 suspend_set_ops(&xo1_suspend_ops);
Andres Salomon419cdc52010-11-29 15:45:06 -0800150 pm_power_off = xo1_power_off;
151 printk(KERN_INFO "OLPC XO-1 support registered\n");
152 }
153
Daniel Drakebf1ebf02010-10-10 10:40:32 +0100154 return 0;
155}
156
Daniel Drakea3128582011-06-25 17:34:10 +0100157static int __devexit xo1_pm_remove(struct platform_device *pdev)
Daniel Drakebf1ebf02010-10-10 10:40:32 +0100158{
Andres Salomonf77289a2011-03-03 09:51:58 -0800159 mfd_cell_disable(pdev);
Andres Salomon419cdc52010-11-29 15:45:06 -0800160
Daniel Drakeadfa4bd2011-03-22 13:50:39 -0700161 if (strcmp(pdev->name, "cs5535-pms") == 0)
Andres Salomon419cdc52010-11-29 15:45:06 -0800162 pms_base = 0;
Daniel Drakeadfa4bd2011-03-22 13:50:39 -0700163 else if (strcmp(pdev->name, "olpc-xo1-pm-acpi") == 0)
Andres Salomon419cdc52010-11-29 15:45:06 -0800164 acpi_base = 0;
165
Daniel Drakebf1ebf02010-10-10 10:40:32 +0100166 pm_power_off = NULL;
167 return 0;
168}
169
Daniel Drakea3128582011-06-25 17:34:10 +0100170static struct platform_driver cs5535_pms_driver = {
Daniel Drakebf1ebf02010-10-10 10:40:32 +0100171 .driver = {
Daniel Drakeadfa4bd2011-03-22 13:50:39 -0700172 .name = "cs5535-pms",
Andres Salomon419cdc52010-11-29 15:45:06 -0800173 .owner = THIS_MODULE,
174 },
Daniel Drakea3128582011-06-25 17:34:10 +0100175 .probe = xo1_pm_probe,
176 .remove = __devexit_p(xo1_pm_remove),
Andres Salomon419cdc52010-11-29 15:45:06 -0800177};
178
Daniel Drakea3128582011-06-25 17:34:10 +0100179static struct platform_driver cs5535_acpi_driver = {
Andres Salomon419cdc52010-11-29 15:45:06 -0800180 .driver = {
Daniel Drakeadfa4bd2011-03-22 13:50:39 -0700181 .name = "olpc-xo1-pm-acpi",
Daniel Drakebf1ebf02010-10-10 10:40:32 +0100182 .owner = THIS_MODULE,
183 },
Daniel Drakea3128582011-06-25 17:34:10 +0100184 .probe = xo1_pm_probe,
185 .remove = __devexit_p(xo1_pm_remove),
Daniel Drakebf1ebf02010-10-10 10:40:32 +0100186};
187
Daniel Drakea3128582011-06-25 17:34:10 +0100188static int __init xo1_pm_init(void)
Daniel Drakebf1ebf02010-10-10 10:40:32 +0100189{
Andres Salomon419cdc52010-11-29 15:45:06 -0800190 int r;
191
Daniel Drakea3128582011-06-25 17:34:10 +0100192 r = platform_driver_register(&cs5535_pms_driver);
Andres Salomon419cdc52010-11-29 15:45:06 -0800193 if (r)
194 return r;
195
Daniel Drakea3128582011-06-25 17:34:10 +0100196 r = platform_driver_register(&cs5535_acpi_driver);
Andres Salomon419cdc52010-11-29 15:45:06 -0800197 if (r)
Daniel Drakea3128582011-06-25 17:34:10 +0100198 platform_driver_unregister(&cs5535_pms_driver);
Andres Salomon419cdc52010-11-29 15:45:06 -0800199
200 return r;
Daniel Drakebf1ebf02010-10-10 10:40:32 +0100201}
Daniel Drakea3128582011-06-25 17:34:10 +0100202arch_initcall(xo1_pm_init);