standby.S (be509729356b7433f73df2b9a966674a437fbbc1) | standby.S (a09e64fbc0094e3073dbb09c3b4bfe4ab669244b) |
---|---|
1/* 2 * PXA27x standby mode 3 * 4 * Author: David Burrage 5 * 6 * 2005 (c) MontaVista Software, Inc. This file is licensed under 7 * the terms of the GNU General Public License version 2. This program 8 * is licensed "as is" without any warranty of any kind, whether express 9 * or implied. 10 */ 11 12#include <linux/linkage.h> 13#include <asm/assembler.h> | 1/* 2 * PXA27x standby mode 3 * 4 * Author: David Burrage 5 * 6 * 2005 (c) MontaVista Software, Inc. This file is licensed under 7 * the terms of the GNU General Public License version 2. This program 8 * is licensed "as is" without any warranty of any kind, whether express 9 * or implied. 10 */ 11 12#include <linux/linkage.h> 13#include <asm/assembler.h> |
14#include <asm/arch/hardware.h> | 14#include <mach/hardware.h> |
15 | 15 |
16#include <asm/arch/pxa-regs.h> 17#include <asm/arch/pxa2xx-regs.h> | 16#include <mach/pxa-regs.h> 17#include <mach/pxa2xx-regs.h> |
18 19 .text 20 21#ifdef CONFIG_PXA27x 22ENTRY(pxa_cpu_standby) 23 ldr r0, =PSSR 24 mov r1, #(PSSR_PH | PSSR_STS) 25 mov r2, #PWRMODE_STANDBY --- 90 unchanged lines hidden --- | 18 19 .text 20 21#ifdef CONFIG_PXA27x 22ENTRY(pxa_cpu_standby) 23 ldr r0, =PSSR 24 mov r1, #(PSSR_PH | PSSR_STS) 25 mov r2, #PWRMODE_STANDBY --- 90 unchanged lines hidden --- |