Rob Herring | be6a98d | 2012-10-12 12:45:34 -0500 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2012 Calxeda, Inc. |
| 3 | * |
Daniel Lezcano | a8e39c3 | 2013-04-26 11:05:44 +0000 | [diff] [blame] | 4 | * Based on arch/arm/plat-mxc/cpuidle.c: #v3.7 |
Rob Herring | be6a98d | 2012-10-12 12:45:34 -0500 | [diff] [blame] | 5 | * Copyright 2012 Freescale Semiconductor, Inc. |
| 6 | * Copyright 2012 Linaro Ltd. |
| 7 | * |
| 8 | * This program is free software; you can redistribute it and/or modify it |
| 9 | * under the terms and conditions of the GNU General Public License, |
| 10 | * version 2, as published by the Free Software Foundation. |
| 11 | * |
| 12 | * This program is distributed in the hope it will be useful, but WITHOUT |
| 13 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| 14 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for |
| 15 | * more details. |
| 16 | * |
| 17 | * You should have received a copy of the GNU General Public License along with |
| 18 | * this program. If not, see <http://www.gnu.org/licenses/>. |
Daniel Lezcano | a8e39c3 | 2013-04-26 11:05:44 +0000 | [diff] [blame] | 19 | * |
| 20 | * Maintainer: Rob Herring <rob.herring@calxeda.com> |
Rob Herring | be6a98d | 2012-10-12 12:45:34 -0500 | [diff] [blame] | 21 | */ |
| 22 | |
| 23 | #include <linux/cpuidle.h> |
Rob Herring | 34a5eeb | 2013-02-26 16:16:53 -0600 | [diff] [blame] | 24 | #include <linux/cpu_pm.h> |
Rob Herring | be6a98d | 2012-10-12 12:45:34 -0500 | [diff] [blame] | 25 | #include <linux/init.h> |
Rob Herring | a410146 | 2013-02-26 16:05:46 -0600 | [diff] [blame] | 26 | #include <linux/mm.h> |
Daniel Lezcano | 60a66e3 | 2013-09-27 12:47:45 +0200 | [diff] [blame] | 27 | #include <linux/platform_device.h> |
Mark Rutland | be12039 | 2015-07-31 15:46:19 +0100 | [diff] [blame] | 28 | #include <linux/psci.h> |
| 29 | |
Rob Herring | be6a98d | 2012-10-12 12:45:34 -0500 | [diff] [blame] | 30 | #include <asm/cpuidle.h> |
Rob Herring | be6a98d | 2012-10-12 12:45:34 -0500 | [diff] [blame] | 31 | #include <asm/suspend.h> |
Mark Rutland | be12039 | 2015-07-31 15:46:19 +0100 | [diff] [blame] | 32 | |
| 33 | #include <uapi/linux/psci.h> |
| 34 | |
| 35 | #define CALXEDA_IDLE_PARAM \ |
| 36 | ((0 << PSCI_0_2_POWER_STATE_ID_SHIFT) | \ |
| 37 | (0 << PSCI_0_2_POWER_STATE_AFFL_SHIFT) | \ |
| 38 | (PSCI_POWER_STATE_TYPE_POWER_DOWN << PSCI_0_2_POWER_STATE_TYPE_SHIFT)) |
Rob Herring | be6a98d | 2012-10-12 12:45:34 -0500 | [diff] [blame] | 39 | |
| 40 | static int calxeda_idle_finish(unsigned long val) |
| 41 | { |
Mark Rutland | be12039 | 2015-07-31 15:46:19 +0100 | [diff] [blame] | 42 | return psci_ops.cpu_suspend(CALXEDA_IDLE_PARAM, __pa(cpu_resume)); |
Rob Herring | be6a98d | 2012-10-12 12:45:34 -0500 | [diff] [blame] | 43 | } |
| 44 | |
| 45 | static int calxeda_pwrdown_idle(struct cpuidle_device *dev, |
| 46 | struct cpuidle_driver *drv, |
| 47 | int index) |
| 48 | { |
Rob Herring | 34a5eeb | 2013-02-26 16:16:53 -0600 | [diff] [blame] | 49 | cpu_pm_enter(); |
Rob Herring | be6a98d | 2012-10-12 12:45:34 -0500 | [diff] [blame] | 50 | cpu_suspend(0, calxeda_idle_finish); |
Rob Herring | 34a5eeb | 2013-02-26 16:16:53 -0600 | [diff] [blame] | 51 | cpu_pm_exit(); |
| 52 | |
Rob Herring | be6a98d | 2012-10-12 12:45:34 -0500 | [diff] [blame] | 53 | return index; |
| 54 | } |
| 55 | |
Rob Herring | be6a98d | 2012-10-12 12:45:34 -0500 | [diff] [blame] | 56 | static struct cpuidle_driver calxeda_idle_driver = { |
| 57 | .name = "calxeda_idle", |
Rob Herring | be6a98d | 2012-10-12 12:45:34 -0500 | [diff] [blame] | 58 | .states = { |
| 59 | ARM_CPUIDLE_WFI_STATE, |
| 60 | { |
| 61 | .name = "PG", |
| 62 | .desc = "Power Gate", |
Rob Herring | be6a98d | 2012-10-12 12:45:34 -0500 | [diff] [blame] | 63 | .exit_latency = 30, |
| 64 | .power_usage = 50, |
| 65 | .target_residency = 200, |
| 66 | .enter = calxeda_pwrdown_idle, |
| 67 | }, |
| 68 | }, |
| 69 | .state_count = 2, |
| 70 | }; |
| 71 | |
Andre Przywara | 5781532 | 2013-12-13 21:49:19 +0100 | [diff] [blame] | 72 | static int calxeda_cpuidle_probe(struct platform_device *pdev) |
Rob Herring | be6a98d | 2012-10-12 12:45:34 -0500 | [diff] [blame] | 73 | { |
Daniel Lezcano | 0b210d9 | 2013-04-23 08:54:42 +0000 | [diff] [blame] | 74 | return cpuidle_register(&calxeda_idle_driver, NULL); |
Rob Herring | be6a98d | 2012-10-12 12:45:34 -0500 | [diff] [blame] | 75 | } |
Daniel Lezcano | 60a66e3 | 2013-09-27 12:47:45 +0200 | [diff] [blame] | 76 | |
| 77 | static struct platform_driver calxeda_cpuidle_plat_driver = { |
| 78 | .driver = { |
| 79 | .name = "cpuidle-calxeda", |
Daniel Lezcano | 60a66e3 | 2013-09-27 12:47:45 +0200 | [diff] [blame] | 80 | }, |
| 81 | .probe = calxeda_cpuidle_probe, |
| 82 | }; |
Paul Gortmaker | 090d1cf | 2015-05-01 20:10:57 -0400 | [diff] [blame] | 83 | builtin_platform_driver(calxeda_cpuidle_plat_driver); |