blob: f08312b10d0417198cac4fdadae4199d488e4421 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * BRIEF MODULE DESCRIPTION
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +04003 * Au1xx0 Power Management routines.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +04005 * Copyright 2001, 2008 MontaVista Software Inc.
6 * Author: MontaVista Software, Inc. <source@mvista.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
8 * Some of the routines are right out of init/main.c, whose
9 * copyrights apply here.
10 *
11 * This program is free software; you can redistribute it and/or modify it
12 * under the terms of the GNU General Public License as published by the
13 * Free Software Foundation; either version 2 of the License, or (at your
14 * option) any later version.
15 *
16 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
17 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
18 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
19 * NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
22 * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
23 * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 *
27 * You should have received a copy of the GNU General Public License along
28 * with this program; if not, write to the Free Software Foundation, Inc.,
29 * 675 Mass Ave, Cambridge, MA 02139, USA.
30 */
Sergei Shtylyovce28f942008-04-23 22:43:55 +040031
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/init.h>
33#include <linux/pm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <linux/sysctl.h>
Pete Popov3ce86ee2005-07-19 07:05:36 +000035#include <linux/jiffies.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <asm/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <asm/mach-au1x00/au1000.h>
39
40#ifdef CONFIG_PM
41
42#define DEBUG 1
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +040043#ifdef DEBUG
44#define DPRINTK(fmt, args...) printk(KERN_DEBUG "%s: " fmt, __func__, ## args)
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#else
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +040046#define DPRINTK(fmt, args...)
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#endif
48
Linus Torvalds1da177e2005-04-16 15:20:36 -070049extern unsigned long save_local_and_disable(int controller);
50extern void restore_local_and_enable(int controller, unsigned long mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Linus Torvalds1da177e2005-04-16 15:20:36 -070052static DEFINE_SPINLOCK(pm_lock);
53
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +040054/*
55 * We need to save/restore a bunch of core registers that are
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 * either volatile or reset to some state across a processor sleep.
57 * If reading a register doesn't provide a proper result for a
58 * later restore, we have to provide a function for loading that
59 * register and save a copy.
60 *
61 * We only have to save/restore registers that aren't otherwise
62 * done as part of a driver pm_* function.
63 */
Manuel Lauss564365b2008-12-21 09:26:25 +010064static unsigned int sleep_uart0_inten;
65static unsigned int sleep_uart0_fifoctl;
66static unsigned int sleep_uart0_linectl;
67static unsigned int sleep_uart0_clkdiv;
68static unsigned int sleep_uart0_enable;
69static unsigned int sleep_usb[2];
70static unsigned int sleep_sys_clocks[5];
71static unsigned int sleep_sys_pinfunc;
72static unsigned int sleep_static_memctlr[4][3];
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +040074/*
75 * Define this to cause the value you write to /proc/sys/pm/sleep to
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 * set the TOY timer for the amount of time you want to sleep.
77 * This is done mainly for testing, but may be useful in other cases.
78 * The value is number of 32KHz ticks to sleep.
79 */
80#define SLEEP_TEST_TIMEOUT 1
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +040081#ifdef SLEEP_TEST_TIMEOUT
82static int sleep_ticks;
Manuel Lauss0c694de2008-12-21 09:26:23 +010083static void wakeup_counter0_set(int ticks)
84{
85 au_writel(au_readl(SYS_TOYREAD) + ticks, SYS_TOYMATCH2);
86 au_sync();
87}
Linus Torvalds1da177e2005-04-16 15:20:36 -070088#endif
89
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +040090static void save_core_regs(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070091{
92 extern void save_au1xxx_intctl(void);
93 extern void pm_eth0_shutdown(void);
94
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +040095 /*
96 * Do the serial ports.....these really should be a pm_*
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 * registered function by the driver......but of course the
98 * standard serial driver doesn't understand our Au1xxx
99 * unique registers.
100 */
101 sleep_uart0_inten = au_readl(UART0_ADDR + UART_IER);
102 sleep_uart0_fifoctl = au_readl(UART0_ADDR + UART_FCR);
103 sleep_uart0_linectl = au_readl(UART0_ADDR + UART_LCR);
104 sleep_uart0_clkdiv = au_readl(UART0_ADDR + UART_CLK);
105 sleep_uart0_enable = au_readl(UART0_ADDR + UART_MOD_CNTRL);
Manuel Lauss564365b2008-12-21 09:26:25 +0100106 au_sync();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
Manuel Lauss564365b2008-12-21 09:26:25 +0100108#ifndef CONFIG_SOC_AU1200
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400109 /* Shutdown USB host/device. */
Manuel Lauss564365b2008-12-21 09:26:25 +0100110 sleep_usb[0] = au_readl(USB_HOST_CONFIG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400112 /* There appears to be some undocumented reset register.... */
Manuel Lauss564365b2008-12-21 09:26:25 +0100113 au_writel(0, 0xb0100004);
114 au_sync();
115 au_writel(0, USB_HOST_CONFIG);
116 au_sync();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
Manuel Lauss564365b2008-12-21 09:26:25 +0100118 sleep_usb[1] = au_readl(USBD_ENABLE);
119 au_writel(0, USBD_ENABLE);
120 au_sync();
121
122#else /* AU1200 */
123
124 /* enable access to OTG mmio so we can save OTG CAP/MUX.
125 * FIXME: write an OTG driver and move this stuff there!
126 */
127 au_writel(au_readl(USB_MSR_BASE + 4) | (1 << 6), USB_MSR_BASE + 4);
128 au_sync();
129 sleep_usb[0] = au_readl(0xb4020020); /* OTG_CAP */
130 sleep_usb[1] = au_readl(0xb4020024); /* OTG_MUX */
131#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400133 /* Save interrupt controller state. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 save_au1xxx_intctl();
135
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400136 /* Clocks and PLLs. */
Manuel Lauss564365b2008-12-21 09:26:25 +0100137 sleep_sys_clocks[0] = au_readl(SYS_FREQCTRL0);
138 sleep_sys_clocks[1] = au_readl(SYS_FREQCTRL1);
139 sleep_sys_clocks[2] = au_readl(SYS_CLKSRC);
140 sleep_sys_clocks[3] = au_readl(SYS_CPUPLL);
141 sleep_sys_clocks[4] = au_readl(SYS_AUXPLL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
Manuel Lauss564365b2008-12-21 09:26:25 +0100143 /* pin mux config */
144 sleep_sys_pinfunc = au_readl(SYS_PINFUNC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400146 /* Save the static memory controller configuration. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 sleep_static_memctlr[0][0] = au_readl(MEM_STCFG0);
148 sleep_static_memctlr[0][1] = au_readl(MEM_STTIME0);
149 sleep_static_memctlr[0][2] = au_readl(MEM_STADDR0);
150 sleep_static_memctlr[1][0] = au_readl(MEM_STCFG1);
151 sleep_static_memctlr[1][1] = au_readl(MEM_STTIME1);
152 sleep_static_memctlr[1][2] = au_readl(MEM_STADDR1);
153 sleep_static_memctlr[2][0] = au_readl(MEM_STCFG2);
154 sleep_static_memctlr[2][1] = au_readl(MEM_STTIME2);
155 sleep_static_memctlr[2][2] = au_readl(MEM_STADDR2);
156 sleep_static_memctlr[3][0] = au_readl(MEM_STCFG3);
157 sleep_static_memctlr[3][1] = au_readl(MEM_STTIME3);
158 sleep_static_memctlr[3][2] = au_readl(MEM_STADDR3);
159}
160
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400161static void restore_core_regs(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162{
Manuel Lauss564365b2008-12-21 09:26:25 +0100163 /* restore clock configuration. Writing CPUPLL last will
164 * stall a bit and stabilize other clocks (unless this is
165 * one of those Au1000 with a write-only PLL, where we dont
166 * have a valid value)
167 */
168 au_writel(sleep_sys_clocks[0], SYS_FREQCTRL0);
169 au_writel(sleep_sys_clocks[1], SYS_FREQCTRL1);
170 au_writel(sleep_sys_clocks[2], SYS_CLKSRC);
171 au_writel(sleep_sys_clocks[4], SYS_AUXPLL);
172 if (!au1xxx_cpu_has_pll_wo())
173 au_writel(sleep_sys_clocks[3], SYS_CPUPLL);
174 au_sync();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
Manuel Lauss564365b2008-12-21 09:26:25 +0100176 au_writel(sleep_sys_pinfunc, SYS_PINFUNC);
177 au_sync();
178
179#ifndef CONFIG_SOC_AU1200
180 au_writel(sleep_usb[0], USB_HOST_CONFIG);
181 au_writel(sleep_usb[1], USBD_ENABLE);
182 au_sync();
183#else
184 /* enable accces to OTG memory */
185 au_writel(au_readl(USB_MSR_BASE + 4) | (1 << 6), USB_MSR_BASE + 4);
186 au_sync();
187
188 /* restore OTG caps and port mux. */
189 au_writel(sleep_usb[0], 0xb4020020 + 0); /* OTG_CAP */
190 au_sync();
191 au_writel(sleep_usb[1], 0xb4020020 + 4); /* OTG_MUX */
192 au_sync();
193#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400195 /* Restore the static memory controller configuration. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 au_writel(sleep_static_memctlr[0][0], MEM_STCFG0);
197 au_writel(sleep_static_memctlr[0][1], MEM_STTIME0);
198 au_writel(sleep_static_memctlr[0][2], MEM_STADDR0);
199 au_writel(sleep_static_memctlr[1][0], MEM_STCFG1);
200 au_writel(sleep_static_memctlr[1][1], MEM_STTIME1);
201 au_writel(sleep_static_memctlr[1][2], MEM_STADDR1);
202 au_writel(sleep_static_memctlr[2][0], MEM_STCFG2);
203 au_writel(sleep_static_memctlr[2][1], MEM_STTIME2);
204 au_writel(sleep_static_memctlr[2][2], MEM_STADDR2);
205 au_writel(sleep_static_memctlr[3][0], MEM_STCFG3);
206 au_writel(sleep_static_memctlr[3][1], MEM_STTIME3);
207 au_writel(sleep_static_memctlr[3][2], MEM_STADDR3);
208
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400209 /*
210 * Enable the UART if it was enabled before sleep.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 * I guess I should define module control bits........
212 */
213 if (sleep_uart0_enable & 0x02) {
214 au_writel(0, UART0_ADDR + UART_MOD_CNTRL); au_sync();
215 au_writel(1, UART0_ADDR + UART_MOD_CNTRL); au_sync();
216 au_writel(3, UART0_ADDR + UART_MOD_CNTRL); au_sync();
217 au_writel(sleep_uart0_inten, UART0_ADDR + UART_IER); au_sync();
218 au_writel(sleep_uart0_fifoctl, UART0_ADDR + UART_FCR); au_sync();
219 au_writel(sleep_uart0_linectl, UART0_ADDR + UART_LCR); au_sync();
220 au_writel(sleep_uart0_clkdiv, UART0_ADDR + UART_CLK); au_sync();
221 }
222
223 restore_au1xxx_intctl();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224}
225
226unsigned long suspend_mode;
227
228void wakeup_from_suspend(void)
229{
230 suspend_mode = 0;
231}
232
Manuel Lauss564365b2008-12-21 09:26:25 +0100233void au_sleep(void)
234{
235 save_core_regs();
236 au1xxx_save_and_sleep();
237 restore_core_regs();
238}
239
240static int pm_do_sleep(ctl_table *ctl, int write, struct file *file,
241 void __user *buffer, size_t *len, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242{
243 unsigned long wakeup, flags;
Manuel Lauss564365b2008-12-21 09:26:25 +0100244 int ret;
245#ifdef SLEEP_TEST_TIMEOUT
246#define TMPBUFLEN2 16
247 char buf[TMPBUFLEN2], *p;
248#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
Ralf Baechle21a151d2007-10-11 23:46:15 +0100250 spin_lock_irqsave(&pm_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
Manuel Lauss564365b2008-12-21 09:26:25 +0100252 if (!write) {
253 *len = 0;
254 ret = 0;
255 goto out_unlock;
256 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
Manuel Lauss564365b2008-12-21 09:26:25 +0100258#ifdef SLEEP_TEST_TIMEOUT
259 if (*len > TMPBUFLEN2 - 1) {
260 ret = -EFAULT;
261 goto out_unlock;
262 }
263 if (copy_from_user(buf, buffer, *len)) {
264 return -EFAULT;
265 goto out_unlock;
266 }
267 buf[*len] = 0;
268 p = buf;
269 sleep_ticks = simple_strtoul(p, &p, 0);
270 wakeup_counter0_set(sleep_ticks);
271#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400273 /**
274 ** The code below is all system dependent and we should probably
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 ** have a function call out of here to set this up. You need
276 ** to configure the GPIO or timer interrupts that will bring
277 ** you out of sleep.
278 ** For testing, the TOY counter wakeup is useful.
279 **/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280#if 0
281 au_writel(au_readl(SYS_PINSTATERD) & ~(1 << 11), SYS_PINSTATERD);
282
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400283 /* GPIO 6 can cause a wake up event */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 wakeup = au_readl(SYS_WAKEMSK);
285 wakeup &= ~(1 << 8); /* turn off match20 wakeup */
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400286 wakeup |= 1 << 6; /* turn on GPIO 6 wakeup */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287#else
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400288 /* For testing, allow match20 to wake us up. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 wakeup = 1 << 8; /* turn on match20 wakeup */
290 wakeup = 0;
291#endif
292 au_writel(1, SYS_WAKESRC); /* clear cause */
293 au_sync();
294 au_writel(wakeup, SYS_WAKEMSK);
295 au_sync();
296
Manuel Lauss564365b2008-12-21 09:26:25 +0100297 au_sleep();
298 ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
Manuel Lauss564365b2008-12-21 09:26:25 +0100300out_unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 spin_unlock_irqrestore(&pm_lock, flags);
Manuel Lauss564365b2008-12-21 09:26:25 +0100302 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303}
304
Manuel Lauss564365b2008-12-21 09:26:25 +0100305#if !defined(CONFIG_SOC_AU1200) && !defined(CONFIG_SOC_AU1550)
306
307/*
308 * This is right out of init/main.c
309 */
310
311/*
312 * This is the number of bits of precision for the loops_per_jiffy.
313 * Each bit takes on average 1.5/HZ seconds. This (like the original)
314 * is a little better than 1%.
315 */
316#define LPS_PREC 8
317
318static void au1000_calibrate_delay(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319{
Manuel Lauss564365b2008-12-21 09:26:25 +0100320 unsigned long ticks, loopbit;
321 int lps_precision = LPS_PREC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
Manuel Lauss564365b2008-12-21 09:26:25 +0100323 loops_per_jiffy = 1 << 12;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
Manuel Lauss564365b2008-12-21 09:26:25 +0100325 while (loops_per_jiffy <<= 1) {
326 /* Wait for "start of" clock tick */
327 ticks = jiffies;
328 while (ticks == jiffies)
329 /* nothing */ ;
330 /* Go ... */
331 ticks = jiffies;
332 __delay(loops_per_jiffy);
333 ticks = jiffies - ticks;
334 if (ticks)
335 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 }
Manuel Lauss564365b2008-12-21 09:26:25 +0100337
338 /*
339 * Do a binary approximation to get loops_per_jiffy set to be equal
340 * one clock (up to lps_precision bits)
341 */
342 loops_per_jiffy >>= 1;
343 loopbit = loops_per_jiffy;
344 while (lps_precision-- && (loopbit >>= 1)) {
345 loops_per_jiffy |= loopbit;
346 ticks = jiffies;
347 while (ticks == jiffies);
348 ticks = jiffies;
349 __delay(loops_per_jiffy);
350 if (jiffies != ticks) /* longer than 1 tick */
351 loops_per_jiffy &= ~loopbit;
352 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353}
354
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400355static int pm_do_freq(ctl_table *ctl, int write, struct file *file,
356 void __user *buffer, size_t *len, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357{
358 int retval = 0, i;
359 unsigned long val, pll;
360#define TMPBUFLEN 64
361#define MAX_CPU_FREQ 396
362 char buf[TMPBUFLEN], *p;
363 unsigned long flags, intc0_mask, intc1_mask;
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400364 unsigned long old_baud_base, old_cpu_freq, old_clk, old_refresh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 unsigned long new_baud_base, new_cpu_freq, new_clk, new_refresh;
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400366 unsigned long baud_rate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
368 spin_lock_irqsave(&pm_lock, flags);
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400369 if (!write)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 *len = 0;
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400371 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 /* Parse the new frequency */
373 if (*len > TMPBUFLEN - 1) {
374 spin_unlock_irqrestore(&pm_lock, flags);
375 return -EFAULT;
376 }
377 if (copy_from_user(buf, buffer, *len)) {
378 spin_unlock_irqrestore(&pm_lock, flags);
379 return -EFAULT;
380 }
381 buf[*len] = 0;
382 p = buf;
383 val = simple_strtoul(p, &p, 0);
384 if (val > MAX_CPU_FREQ) {
385 spin_unlock_irqrestore(&pm_lock, flags);
386 return -EFAULT;
387 }
388
389 pll = val / 12;
390 if ((pll > 33) || (pll < 7)) { /* 396 MHz max, 84 MHz min */
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400391 /* Revisit this for higher speed CPUs */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 spin_unlock_irqrestore(&pm_lock, flags);
393 return -EFAULT;
394 }
395
396 old_baud_base = get_au1x00_uart_baud_base();
397 old_cpu_freq = get_au1x00_speed();
398
399 new_cpu_freq = pll * 12 * 1000000;
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400400 new_baud_base = (new_cpu_freq / (2 * ((int)(au_readl(SYS_POWERCTRL)
401 & 0x03) + 2) * 16));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 set_au1x00_speed(new_cpu_freq);
403 set_au1x00_uart_baud_base(new_baud_base);
404
405 old_refresh = au_readl(MEM_SDREFCFG) & 0x1ffffff;
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400406 new_refresh = ((old_refresh * new_cpu_freq) / old_cpu_freq) |
407 (au_readl(MEM_SDREFCFG) & ~0x1ffffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
409 au_writel(pll, SYS_CPUPLL);
410 au_sync_delay(1);
411 au_writel(new_refresh, MEM_SDREFCFG);
412 au_sync_delay(1);
413
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400414 for (i = 0; i < 4; i++)
415 if (au_readl(UART_BASE + UART_MOD_CNTRL +
416 i * 0x00100000) == 3) {
417 old_clk = au_readl(UART_BASE + UART_CLK +
418 i * 0x00100000);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 baud_rate = old_baud_base / old_clk;
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400420 /*
421 * We won't get an exact baud rate and the error
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 * could be significant enough that our new
423 * calculation will result in a clock that will
424 * give us a baud rate that's too far off from
425 * what we really want.
426 */
427 if (baud_rate > 100000)
428 baud_rate = 115200;
429 else if (baud_rate > 50000)
430 baud_rate = 57600;
431 else if (baud_rate > 30000)
432 baud_rate = 38400;
433 else if (baud_rate > 17000)
434 baud_rate = 19200;
435 else
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400436 baud_rate = 9600;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 new_clk = new_baud_base / baud_rate;
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400438 au_writel(new_clk, UART_BASE + UART_CLK +
439 i * 0x00100000);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 au_sync_delay(10);
441 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 }
443
Ralf Baechlec30db242007-10-17 15:36:53 +0100444 /*
445 * We don't want _any_ interrupts other than match20. Otherwise our
446 * au1000_calibrate_delay() calculation will be off, potentially a lot.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 */
448 intc0_mask = save_local_and_disable(0);
449 intc1_mask = save_local_and_disable(1);
Manuel Lauss785e3262008-12-21 09:26:17 +0100450 val = 1 << (AU1000_TOY_MATCH2_INT - AU1000_INTC0_INT_BASE);
451 au_writel(val, IC0_MASKSET); /* unmask */
452 au_writel(val, IC0_WAKESET); /* enable wake-from-sleep */
453 au_sync();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 spin_unlock_irqrestore(&pm_lock, flags);
Pete Popov3ce86ee2005-07-19 07:05:36 +0000455 au1000_calibrate_delay();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 restore_local_and_enable(0, intc0_mask);
457 restore_local_and_enable(1, intc1_mask);
Ralf Baechlec30db242007-10-17 15:36:53 +0100458
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 return retval;
460}
Manuel Lauss564365b2008-12-21 09:26:25 +0100461#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462
463static struct ctl_table pm_table[] = {
Eric W. Biederman7ed744d2007-02-14 00:33:43 -0800464 {
Eric W. Biederman7ed744d2007-02-14 00:33:43 -0800465 .ctl_name = CTL_UNNUMBERED,
466 .procname = "sleep",
467 .data = NULL,
468 .maxlen = 0,
469 .mode = 0600,
470 .proc_handler = &pm_do_sleep
471 },
Manuel Lauss564365b2008-12-21 09:26:25 +0100472#if !defined(CONFIG_SOC_AU1200) && !defined(CONFIG_SOC_AU1550)
Eric W. Biederman7ed744d2007-02-14 00:33:43 -0800473 {
474 .ctl_name = CTL_UNNUMBERED,
475 .procname = "freq",
476 .data = NULL,
477 .maxlen = 0,
478 .mode = 0600,
479 .proc_handler = &pm_do_freq
480 },
Manuel Lauss564365b2008-12-21 09:26:25 +0100481#endif
Eric W. Biederman7ed744d2007-02-14 00:33:43 -0800482 {}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483};
484
485static struct ctl_table pm_dir_table[] = {
Eric W. Biederman7ed744d2007-02-14 00:33:43 -0800486 {
487 .ctl_name = CTL_UNNUMBERED,
488 .procname = "pm",
489 .mode = 0555,
490 .child = pm_table
491 },
492 {}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493};
494
495/*
496 * Initialize power interface
497 */
498static int __init pm_init(void)
499{
Manuel Lauss0c694de2008-12-21 09:26:23 +0100500 /* init TOY to tick at 1Hz. No need to wait for access bits
501 * since there's plenty of time between here and the first
502 * suspend cycle.
503 */
504 if (au_readl(SYS_TOYTRIM) != 32767) {
505 au_writel(32767, SYS_TOYTRIM);
506 au_sync();
507 }
508
Eric W. Biederman0b4d4142007-02-14 00:34:09 -0800509 register_sysctl_table(pm_dir_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 return 0;
511}
512
513__initcall(pm_init);
514
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400515#endif /* CONFIG_PM */