diff options
| -rw-r--r-- | arch/arm/mach-at91/Makefile | 1 | ||||
| -rw-r--r-- | arch/arm/mach-at91/cpuidle.c | 94 | ||||
| -rw-r--r-- | arch/arm/mach-at91/pm.c | 62 | ||||
| -rw-r--r-- | arch/arm/mach-at91/pm.h | 67 |
4 files changed, 166 insertions, 58 deletions
diff --git a/arch/arm/mach-at91/Makefile b/arch/arm/mach-at91/Makefile index ada440aab0c5..f9e12bb3fb4e 100644 --- a/arch/arm/mach-at91/Makefile +++ b/arch/arm/mach-at91/Makefile | |||
| @@ -77,6 +77,7 @@ obj-y += leds.o | |||
| 77 | # Power Management | 77 | # Power Management |
| 78 | obj-$(CONFIG_PM) += pm.o | 78 | obj-$(CONFIG_PM) += pm.o |
| 79 | obj-$(CONFIG_AT91_SLOW_CLOCK) += pm_slowclock.o | 79 | obj-$(CONFIG_AT91_SLOW_CLOCK) += pm_slowclock.o |
| 80 | obj-$(CONFIG_CPU_IDLE) += cpuidle.o | ||
| 80 | 81 | ||
| 81 | ifeq ($(CONFIG_PM_DEBUG),y) | 82 | ifeq ($(CONFIG_PM_DEBUG),y) |
| 82 | CFLAGS_pm.o += -DDEBUG | 83 | CFLAGS_pm.o += -DDEBUG |
diff --git a/arch/arm/mach-at91/cpuidle.c b/arch/arm/mach-at91/cpuidle.c new file mode 100644 index 000000000000..1cfeac1483d6 --- /dev/null +++ b/arch/arm/mach-at91/cpuidle.c | |||
| @@ -0,0 +1,94 @@ | |||
| 1 | /* | ||
| 2 | * based on arch/arm/mach-kirkwood/cpuidle.c | ||
| 3 | * | ||
| 4 | * CPU idle support for AT91 SoC | ||
| 5 | * | ||
| 6 | * This file is licensed under the terms of the GNU General Public | ||
| 7 | * License version 2. This program is licensed "as is" without any | ||
| 8 | * warranty of any kind, whether express or implied. | ||
| 9 | * | ||
| 10 | * The cpu idle uses wait-for-interrupt and RAM self refresh in order | ||
| 11 | * to implement two idle states - | ||
| 12 | * #1 wait-for-interrupt | ||
| 13 | * #2 wait-for-interrupt and RAM self refresh | ||
| 14 | */ | ||
| 15 | |||
| 16 | #include <linux/kernel.h> | ||
| 17 | #include <linux/init.h> | ||
| 18 | #include <linux/platform_device.h> | ||
| 19 | #include <linux/cpuidle.h> | ||
| 20 | #include <asm/proc-fns.h> | ||
| 21 | #include <linux/io.h> | ||
| 22 | |||
| 23 | #include "pm.h" | ||
| 24 | |||
| 25 | #define AT91_MAX_STATES 2 | ||
| 26 | |||
| 27 | static DEFINE_PER_CPU(struct cpuidle_device, at91_cpuidle_device); | ||
| 28 | |||
| 29 | static struct cpuidle_driver at91_idle_driver = { | ||
| 30 | .name = "at91_idle", | ||
| 31 | .owner = THIS_MODULE, | ||
| 32 | }; | ||
| 33 | |||
| 34 | /* Actual code that puts the SoC in different idle states */ | ||
| 35 | static int at91_enter_idle(struct cpuidle_device *dev, | ||
| 36 | struct cpuidle_state *state) | ||
| 37 | { | ||
| 38 | struct timeval before, after; | ||
| 39 | int idle_time; | ||
| 40 | u32 saved_lpr; | ||
| 41 | |||
| 42 | local_irq_disable(); | ||
| 43 | do_gettimeofday(&before); | ||
| 44 | if (state == &dev->states[0]) | ||
| 45 | /* Wait for interrupt state */ | ||
| 46 | cpu_do_idle(); | ||
| 47 | else if (state == &dev->states[1]) { | ||
| 48 | asm("b 1f; .align 5; 1:"); | ||
| 49 | asm("mcr p15, 0, r0, c7, c10, 4"); /* drain write buffer */ | ||
| 50 | saved_lpr = sdram_selfrefresh_enable(); | ||
| 51 | cpu_do_idle(); | ||
| 52 | sdram_selfrefresh_disable(saved_lpr); | ||
| 53 | } | ||
| 54 | do_gettimeofday(&after); | ||
| 55 | local_irq_enable(); | ||
| 56 | idle_time = (after.tv_sec - before.tv_sec) * USEC_PER_SEC + | ||
| 57 | (after.tv_usec - before.tv_usec); | ||
| 58 | return idle_time; | ||
| 59 | } | ||
| 60 | |||
| 61 | /* Initialize CPU idle by registering the idle states */ | ||
| 62 | static int at91_init_cpuidle(void) | ||
| 63 | { | ||
| 64 | struct cpuidle_device *device; | ||
| 65 | |||
| 66 | cpuidle_register_driver(&at91_idle_driver); | ||
| 67 | |||
| 68 | device = &per_cpu(at91_cpuidle_device, smp_processor_id()); | ||
| 69 | device->state_count = AT91_MAX_STATES; | ||
| 70 | |||
| 71 | /* Wait for interrupt state */ | ||
| 72 | device->states[0].enter = at91_enter_idle; | ||
| 73 | device->states[0].exit_latency = 1; | ||
| 74 | device->states[0].target_residency = 10000; | ||
| 75 | device->states[0].flags = CPUIDLE_FLAG_TIME_VALID; | ||
| 76 | strcpy(device->states[0].name, "WFI"); | ||
| 77 | strcpy(device->states[0].desc, "Wait for interrupt"); | ||
| 78 | |||
| 79 | /* Wait for interrupt and RAM self refresh state */ | ||
| 80 | device->states[1].enter = at91_enter_idle; | ||
| 81 | device->states[1].exit_latency = 10; | ||
| 82 | device->states[1].target_residency = 10000; | ||
| 83 | device->states[1].flags = CPUIDLE_FLAG_TIME_VALID; | ||
| 84 | strcpy(device->states[1].name, "RAM_SR"); | ||
| 85 | strcpy(device->states[1].desc, "WFI and RAM Self Refresh"); | ||
| 86 | |||
| 87 | if (cpuidle_register_device(device)) { | ||
| 88 | printk(KERN_ERR "at91_init_cpuidle: Failed registering\n"); | ||
| 89 | return -EIO; | ||
| 90 | } | ||
| 91 | return 0; | ||
| 92 | } | ||
| 93 | |||
| 94 | device_initcall(at91_init_cpuidle); | ||
diff --git a/arch/arm/mach-at91/pm.c b/arch/arm/mach-at91/pm.c index 4028724d490d..615668986480 100644 --- a/arch/arm/mach-at91/pm.c +++ b/arch/arm/mach-at91/pm.c | |||
| @@ -29,62 +29,7 @@ | |||
| 29 | #include <mach/cpu.h> | 29 | #include <mach/cpu.h> |
| 30 | 30 | ||
| 31 | #include "generic.h" | 31 | #include "generic.h" |
| 32 | 32 | #include "pm.h" | |
| 33 | #ifdef CONFIG_ARCH_AT91RM9200 | ||
| 34 | #include <mach/at91rm9200_mc.h> | ||
| 35 | |||
| 36 | /* | ||
| 37 | * The AT91RM9200 goes into self-refresh mode with this command, and will | ||
| 38 | * terminate self-refresh automatically on the next SDRAM access. | ||
| 39 | */ | ||
| 40 | #define sdram_selfrefresh_enable() at91_sys_write(AT91_SDRAMC_SRR, 1) | ||
| 41 | #define sdram_selfrefresh_disable() do {} while (0) | ||
| 42 | |||
| 43 | #elif defined(CONFIG_ARCH_AT91CAP9) | ||
| 44 | #include <mach/at91cap9_ddrsdr.h> | ||
| 45 | |||
| 46 | static u32 saved_lpr; | ||
| 47 | |||
| 48 | static inline void sdram_selfrefresh_enable(void) | ||
| 49 | { | ||
| 50 | u32 lpr; | ||
| 51 | |||
| 52 | saved_lpr = at91_sys_read(AT91_DDRSDRC_LPR); | ||
| 53 | |||
| 54 | lpr = saved_lpr & ~AT91_DDRSDRC_LPCB; | ||
| 55 | at91_sys_write(AT91_DDRSDRC_LPR, lpr | AT91_DDRSDRC_LPCB_SELF_REFRESH); | ||
| 56 | } | ||
| 57 | |||
| 58 | #define sdram_selfrefresh_disable() at91_sys_write(AT91_DDRSDRC_LPR, saved_lpr) | ||
| 59 | |||
| 60 | #else | ||
| 61 | #include <mach/at91sam9_sdramc.h> | ||
| 62 | |||
| 63 | #ifdef CONFIG_ARCH_AT91SAM9263 | ||
| 64 | /* | ||
| 65 | * FIXME either or both the SDRAM controllers (EB0, EB1) might be in use; | ||
| 66 | * handle those cases both here and in the Suspend-To-RAM support. | ||
| 67 | */ | ||
| 68 | #define AT91_SDRAMC AT91_SDRAMC0 | ||
| 69 | #warning Assuming EB1 SDRAM controller is *NOT* used | ||
| 70 | #endif | ||
| 71 | |||
| 72 | static u32 saved_lpr; | ||
| 73 | |||
| 74 | static inline void sdram_selfrefresh_enable(void) | ||
| 75 | { | ||
| 76 | u32 lpr; | ||
| 77 | |||
| 78 | saved_lpr = at91_sys_read(AT91_SDRAMC_LPR); | ||
| 79 | |||
| 80 | lpr = saved_lpr & ~AT91_SDRAMC_LPCB; | ||
| 81 | at91_sys_write(AT91_SDRAMC_LPR, lpr | AT91_SDRAMC_LPCB_SELF_REFRESH); | ||
| 82 | } | ||
| 83 | |||
| 84 | #define sdram_selfrefresh_disable() at91_sys_write(AT91_SDRAMC_LPR, saved_lpr) | ||
| 85 | |||
| 86 | #endif | ||
| 87 | |||
| 88 | 33 | ||
| 89 | /* | 34 | /* |
| 90 | * Show the reason for the previous system reset. | 35 | * Show the reason for the previous system reset. |
| @@ -260,6 +205,7 @@ extern u32 at91_slow_clock_sz; | |||
| 260 | 205 | ||
| 261 | static int at91_pm_enter(suspend_state_t state) | 206 | static int at91_pm_enter(suspend_state_t state) |
| 262 | { | 207 | { |
| 208 | u32 saved_lpr; | ||
| 263 | at91_gpio_suspend(); | 209 | at91_gpio_suspend(); |
| 264 | at91_irq_suspend(); | 210 | at91_irq_suspend(); |
| 265 | 211 | ||
| @@ -315,9 +261,9 @@ static int at91_pm_enter(suspend_state_t state) | |||
| 315 | */ | 261 | */ |
| 316 | asm("b 1f; .align 5; 1:"); | 262 | asm("b 1f; .align 5; 1:"); |
| 317 | asm("mcr p15, 0, r0, c7, c10, 4"); /* drain write buffer */ | 263 | asm("mcr p15, 0, r0, c7, c10, 4"); /* drain write buffer */ |
| 318 | sdram_selfrefresh_enable(); | 264 | saved_lpr = sdram_selfrefresh_enable(); |
| 319 | asm("mcr p15, 0, r0, c7, c0, 4"); /* wait for interrupt */ | 265 | asm("mcr p15, 0, r0, c7, c0, 4"); /* wait for interrupt */ |
| 320 | sdram_selfrefresh_disable(); | 266 | sdram_selfrefresh_disable(saved_lpr); |
| 321 | break; | 267 | break; |
| 322 | 268 | ||
| 323 | case PM_SUSPEND_ON: | 269 | case PM_SUSPEND_ON: |
diff --git a/arch/arm/mach-at91/pm.h b/arch/arm/mach-at91/pm.h new file mode 100644 index 000000000000..08322c44df1a --- /dev/null +++ b/arch/arm/mach-at91/pm.h | |||
| @@ -0,0 +1,67 @@ | |||
| 1 | #ifdef CONFIG_ARCH_AT91RM9200 | ||
| 2 | #include <mach/at91rm9200_mc.h> | ||
| 3 | |||
| 4 | /* | ||
| 5 | * The AT91RM9200 goes into self-refresh mode with this command, and will | ||
| 6 | * terminate self-refresh automatically on the next SDRAM access. | ||
| 7 | * | ||
| 8 | * Self-refresh mode is exited as soon as a memory access is made, but we don't | ||
| 9 | * know for sure when that happens. However, we need to restore the low-power | ||
| 10 | * mode if it was enabled before going idle. Restoring low-power mode while | ||
| 11 | * still in self-refresh is "not recommended", but seems to work. | ||
| 12 | */ | ||
| 13 | |||
| 14 | static inline u32 sdram_selfrefresh_enable(void) | ||
| 15 | { | ||
| 16 | u32 saved_lpr = at91_sys_read(AT91_SDRAMC_LPR); | ||
| 17 | |||
| 18 | at91_sys_write(AT91_SDRAMC_LPR, 0); | ||
| 19 | at91_sys_write(AT91_SDRAMC_SRR, 1); | ||
| 20 | return saved_lpr; | ||
| 21 | } | ||
| 22 | |||
| 23 | #define sdram_selfrefresh_disable(saved_lpr) at91_sys_write(AT91_SDRAMC_LPR, saved_lpr) | ||
| 24 | |||
| 25 | #elif defined(CONFIG_ARCH_AT91CAP9) | ||
| 26 | #include <mach/at91cap9_ddrsdr.h> | ||
| 27 | |||
| 28 | |||
| 29 | static inline u32 sdram_selfrefresh_enable(void) | ||
| 30 | { | ||
| 31 | u32 saved_lpr, lpr; | ||
| 32 | |||
| 33 | saved_lpr = at91_sys_read(AT91_DDRSDRC_LPR); | ||
| 34 | |||
| 35 | lpr = saved_lpr & ~AT91_DDRSDRC_LPCB; | ||
| 36 | at91_sys_write(AT91_DDRSDRC_LPR, lpr | AT91_DDRSDRC_LPCB_SELF_REFRESH); | ||
| 37 | return saved_lpr; | ||
| 38 | } | ||
| 39 | |||
| 40 | #define sdram_selfrefresh_disable(saved_lpr) at91_sys_write(AT91_DDRSDRC_LPR, saved_lpr) | ||
| 41 | |||
| 42 | #else | ||
| 43 | #include <mach/at91sam9_sdramc.h> | ||
| 44 | |||
| 45 | #ifdef CONFIG_ARCH_AT91SAM9263 | ||
| 46 | /* | ||
| 47 | * FIXME either or both the SDRAM controllers (EB0, EB1) might be in use; | ||
| 48 | * handle those cases both here and in the Suspend-To-RAM support. | ||
| 49 | */ | ||
| 50 | #define AT91_SDRAMC AT91_SDRAMC0 | ||
| 51 | #warning Assuming EB1 SDRAM controller is *NOT* used | ||
| 52 | #endif | ||
| 53 | |||
| 54 | static inline u32 sdram_selfrefresh_enable(void) | ||
| 55 | { | ||
| 56 | u32 saved_lpr, lpr; | ||
| 57 | |||
| 58 | saved_lpr = at91_sys_read(AT91_SDRAMC_LPR); | ||
| 59 | |||
| 60 | lpr = saved_lpr & ~AT91_SDRAMC_LPCB; | ||
| 61 | at91_sys_write(AT91_SDRAMC_LPR, lpr | AT91_SDRAMC_LPCB_SELF_REFRESH); | ||
| 62 | return saved_lpr; | ||
| 63 | } | ||
| 64 | |||
| 65 | #define sdram_selfrefresh_disable(saved_lpr) at91_sys_write(AT91_SDRAMC_LPR, saved_lpr) | ||
| 66 | |||
| 67 | #endif | ||
