Magnus Damm | 0af4817 | 2011-04-29 02:36:07 +0900 | [diff] [blame] | 1 | /* |
| 2 | * CPUIdle support code for SH-Mobile ARM |
| 3 | * |
| 4 | * Copyright (C) 2011 Magnus Damm |
| 5 | * |
| 6 | * This file is subject to the terms and conditions of the GNU General Public |
| 7 | * License. See the file "COPYING" in the main directory of this archive |
| 8 | * for more details. |
| 9 | */ |
| 10 | |
| 11 | #include <linux/pm.h> |
| 12 | #include <linux/cpuidle.h> |
| 13 | #include <linux/suspend.h> |
| 14 | #include <linux/module.h> |
| 15 | #include <linux/err.h> |
Robert Lee | ee807dd | 2012-03-20 15:22:48 -0500 | [diff] [blame] | 16 | #include <asm/cpuidle.h> |
Magnus Damm | 0af4817 | 2011-04-29 02:36:07 +0900 | [diff] [blame] | 17 | #include <asm/io.h> |
| 18 | |
| 19 | static void shmobile_enter_wfi(void) |
| 20 | { |
| 21 | cpu_do_idle(); |
| 22 | } |
| 23 | |
| 24 | void (*shmobile_cpuidle_modes[CPUIDLE_STATE_MAX])(void) = { |
| 25 | shmobile_enter_wfi, /* regular sleep mode */ |
| 26 | }; |
| 27 | |
| 28 | static int shmobile_cpuidle_enter(struct cpuidle_device *dev, |
Magnus Damm | b73b5c4 | 2011-11-11 14:01:30 +0900 | [diff] [blame] | 29 | struct cpuidle_driver *drv, |
| 30 | int index) |
Magnus Damm | 0af4817 | 2011-04-29 02:36:07 +0900 | [diff] [blame] | 31 | { |
Magnus Damm | b73b5c4 | 2011-11-11 14:01:30 +0900 | [diff] [blame] | 32 | shmobile_cpuidle_modes[index](); |
Magnus Damm | 0af4817 | 2011-04-29 02:36:07 +0900 | [diff] [blame] | 33 | |
Magnus Damm | b73b5c4 | 2011-11-11 14:01:30 +0900 | [diff] [blame] | 34 | return index; |
Magnus Damm | 0af4817 | 2011-04-29 02:36:07 +0900 | [diff] [blame] | 35 | } |
| 36 | |
| 37 | static struct cpuidle_device shmobile_cpuidle_dev; |
| 38 | static struct cpuidle_driver shmobile_cpuidle_driver = { |
Robert Lee | ee807dd | 2012-03-20 15:22:48 -0500 | [diff] [blame] | 39 | .name = "shmobile_cpuidle", |
| 40 | .owner = THIS_MODULE, |
| 41 | .en_core_tk_irqen = 1, |
| 42 | .states[0] = ARM_CPUIDLE_WFI_STATE, |
| 43 | .safe_state_index = 0, /* C1 */ |
| 44 | .state_count = 1, |
Magnus Damm | 0af4817 | 2011-04-29 02:36:07 +0900 | [diff] [blame] | 45 | }; |
| 46 | |
Magnus Damm | b73b5c4 | 2011-11-11 14:01:30 +0900 | [diff] [blame] | 47 | void (*shmobile_cpuidle_setup)(struct cpuidle_driver *drv); |
Magnus Damm | 0af4817 | 2011-04-29 02:36:07 +0900 | [diff] [blame] | 48 | |
| 49 | static int shmobile_cpuidle_init(void) |
| 50 | { |
| 51 | struct cpuidle_device *dev = &shmobile_cpuidle_dev; |
Magnus Damm | b73b5c4 | 2011-11-11 14:01:30 +0900 | [diff] [blame] | 52 | struct cpuidle_driver *drv = &shmobile_cpuidle_driver; |
Magnus Damm | 0af4817 | 2011-04-29 02:36:07 +0900 | [diff] [blame] | 53 | int i; |
| 54 | |
Magnus Damm | b73b5c4 | 2011-11-11 14:01:30 +0900 | [diff] [blame] | 55 | for (i = 0; i < CPUIDLE_STATE_MAX; i++) |
| 56 | drv->states[i].enter = shmobile_cpuidle_enter; |
Magnus Damm | 0af4817 | 2011-04-29 02:36:07 +0900 | [diff] [blame] | 57 | |
| 58 | if (shmobile_cpuidle_setup) |
Magnus Damm | b73b5c4 | 2011-11-11 14:01:30 +0900 | [diff] [blame] | 59 | shmobile_cpuidle_setup(drv); |
Magnus Damm | 0af4817 | 2011-04-29 02:36:07 +0900 | [diff] [blame] | 60 | |
Magnus Damm | b73b5c4 | 2011-11-11 14:01:30 +0900 | [diff] [blame] | 61 | cpuidle_register_driver(drv); |
| 62 | |
| 63 | dev->state_count = drv->state_count; |
Magnus Damm | 0af4817 | 2011-04-29 02:36:07 +0900 | [diff] [blame] | 64 | cpuidle_register_device(dev); |
| 65 | |
| 66 | return 0; |
| 67 | } |
| 68 | late_initcall(shmobile_cpuidle_init); |