Chintan Pandya | 8e49274 | 2011-12-30 18:59:42 +0530 | [diff] [blame] | 1 | /* Copyright (c) 2011-2012, Code Aurora Forum. All rights reserved. |
Maheshkumar Sivasubramanian | 8ccc16e | 2011-10-25 15:59:57 -0600 | [diff] [blame] | 2 | * |
| 3 | * This program is free software; you can redistribute it and/or modify |
| 4 | * it under the terms of the GNU General Public License version 2 and |
| 5 | * only version 2 as published by the Free Software Foundation. |
| 6 | * |
| 7 | * This program is distributed in the hope that it will be useful, |
| 8 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 9 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 10 | * GNU General Public License for more details. |
| 11 | * |
| 12 | */ |
| 13 | #ifndef _ARCH_ARM_MACH_MSM_PM_BOOT_H |
| 14 | #define _ARCH_ARM_MACH_MSM_PM_BOOT_H |
| 15 | |
| 16 | enum { |
Maheshkumar Sivasubramanian | c6c5503 | 2011-10-25 16:01:32 -0600 | [diff] [blame] | 17 | MSM_PM_BOOT_CONFIG_TZ = 0, |
| 18 | MSM_PM_BOOT_CONFIG_RESET_VECTOR_PHYS = 1, |
| 19 | MSM_PM_BOOT_CONFIG_RESET_VECTOR_VIRT = 2, |
| 20 | MSM_PM_BOOT_CONFIG_REMAP_BOOT_ADDR = 3, |
| 21 | }; |
| 22 | |
| 23 | struct msm_pm_boot_platform_data { |
| 24 | int mode; |
| 25 | phys_addr_t p_addr; |
| 26 | void __iomem *v_addr; |
Maheshkumar Sivasubramanian | 8ccc16e | 2011-10-25 15:59:57 -0600 | [diff] [blame] | 27 | }; |
| 28 | |
Chintan Pandya | 1260788 | 2011-11-25 19:21:33 +0530 | [diff] [blame] | 29 | #ifdef CONFIG_PM |
Maheshkumar Sivasubramanian | c6c5503 | 2011-10-25 16:01:32 -0600 | [diff] [blame] | 30 | int __init msm_pm_boot_init(struct msm_pm_boot_platform_data *pdata); |
Chintan Pandya | 1260788 | 2011-11-25 19:21:33 +0530 | [diff] [blame] | 31 | #else |
Maheshkumar Sivasubramanian | c6c5503 | 2011-10-25 16:01:32 -0600 | [diff] [blame] | 32 | static inline int __init msm_pm_boot_init( |
Chintan Pandya | 8e49274 | 2011-12-30 18:59:42 +0530 | [diff] [blame] | 33 | struct msm_pm_boot_platform_data *pdata) |
Chintan Pandya | 1260788 | 2011-11-25 19:21:33 +0530 | [diff] [blame] | 34 | { |
| 35 | return 0; |
| 36 | } |
| 37 | #endif |
Maheshkumar Sivasubramanian | c6c5503 | 2011-10-25 16:01:32 -0600 | [diff] [blame] | 38 | |
Maheshkumar Sivasubramanian | 8ccc16e | 2011-10-25 15:59:57 -0600 | [diff] [blame] | 39 | void msm_pm_boot_config_before_pc(unsigned int cpu, unsigned long entry); |
| 40 | void msm_pm_boot_config_after_pc(unsigned int cpu); |
| 41 | |
| 42 | #endif |