Robert Lee | 2da50e6 | 2012-05-21 17:50:28 -0500 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2012 Freescale Semiconductor, Inc. |
| 3 | * Copyright 2012 Linaro Ltd. |
| 4 | * |
| 5 | * The code contained herein is licensed under the GNU General Public |
| 6 | * License. You may obtain a copy of the GNU General Public License |
| 7 | * Version 2 or later at the following locations: |
| 8 | * |
| 9 | * http://www.opensource.org/licenses/gpl-license.html |
| 10 | * http://www.gnu.org/copyleft/gpl.html |
| 11 | */ |
| 12 | |
Robert Lee | 2da50e6 | 2012-05-21 17:50:28 -0500 | [diff] [blame] | 13 | #ifdef CONFIG_CPU_IDLE |
Daniel Lezcano | 54a4644 | 2013-04-23 08:54:45 +0000 | [diff] [blame] | 14 | extern int imx5_cpuidle_init(void); |
Shawn Guo | 12bb3440 | 2012-12-04 22:55:14 +0800 | [diff] [blame] | 15 | extern int imx6q_cpuidle_init(void); |
Anson Huang | 751f7e9 | 2014-01-09 16:03:16 +0800 | [diff] [blame] | 16 | extern int imx6sl_cpuidle_init(void); |
Anson Huang | 05136f0 | 2014-12-17 12:24:12 +0800 | [diff] [blame] | 17 | extern int imx6sx_cpuidle_init(void); |
Anson Huang | 6d45a40 | 2019-01-14 08:54:59 +0800 | [diff] [blame] | 18 | extern int imx7ulp_cpuidle_init(void); |
Robert Lee | 2da50e6 | 2012-05-21 17:50:28 -0500 | [diff] [blame] | 19 | #else |
Daniel Lezcano | 54a4644 | 2013-04-23 08:54:45 +0000 | [diff] [blame] | 20 | static inline int imx5_cpuidle_init(void) |
Robert Lee | 2da50e6 | 2012-05-21 17:50:28 -0500 | [diff] [blame] | 21 | { |
Daniel Lezcano | 54a4644 | 2013-04-23 08:54:45 +0000 | [diff] [blame] | 22 | return 0; |
Robert Lee | 2da50e6 | 2012-05-21 17:50:28 -0500 | [diff] [blame] | 23 | } |
Shawn Guo | 12bb3440 | 2012-12-04 22:55:14 +0800 | [diff] [blame] | 24 | static inline int imx6q_cpuidle_init(void) |
| 25 | { |
Daniel Lezcano | 54a4644 | 2013-04-23 08:54:45 +0000 | [diff] [blame] | 26 | return 0; |
Shawn Guo | 12bb3440 | 2012-12-04 22:55:14 +0800 | [diff] [blame] | 27 | } |
Anson Huang | 751f7e9 | 2014-01-09 16:03:16 +0800 | [diff] [blame] | 28 | static inline int imx6sl_cpuidle_init(void) |
| 29 | { |
| 30 | return 0; |
| 31 | } |
Anson Huang | 05136f0 | 2014-12-17 12:24:12 +0800 | [diff] [blame] | 32 | static inline int imx6sx_cpuidle_init(void) |
| 33 | { |
| 34 | return 0; |
| 35 | } |
Anson Huang | 6d45a40 | 2019-01-14 08:54:59 +0800 | [diff] [blame] | 36 | static inline int imx7ulp_cpuidle_init(void) |
| 37 | { |
| 38 | return 0; |
| 39 | } |
Robert Lee | 2da50e6 | 2012-05-21 17:50:28 -0500 | [diff] [blame] | 40 | #endif |