Stephen Boyd | 2a1eb58 | 2010-08-27 10:01:23 -0700 | [diff] [blame] | 1 | /* Copyright (c) 2010, Code Aurora Forum. All rights reserved. |
| 2 | * |
David Brown | 3162aa2 | 2011-02-14 16:15:26 -0800 | [diff] [blame] | 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. |
Stephen Boyd | 2a1eb58 | 2010-08-27 10:01:23 -0700 | [diff] [blame] | 6 | * |
David Brown | 3162aa2 | 2011-02-14 16:15:26 -0800 | [diff] [blame] | 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. |
Stephen Boyd | 2a1eb58 | 2010-08-27 10:01:23 -0700 | [diff] [blame] | 11 | */ |
Kumar Gala | 4de4347 | 2015-02-04 16:30:46 -0600 | [diff] [blame] | 12 | #ifndef __QCOM_SCM_H |
| 13 | #define __QCOM_SCM_H |
Stephen Boyd | 2a1eb58 | 2010-08-27 10:01:23 -0700 | [diff] [blame] | 14 | |
Kumar Gala | 4de4347 | 2015-02-04 16:30:46 -0600 | [diff] [blame] | 15 | #define QCOM_SCM_FLAG_WARMBOOT_CPU0 0x04 |
| 16 | #define QCOM_SCM_FLAG_WARMBOOT_CPU1 0x02 |
| 17 | #define QCOM_SCM_FLAG_WARMBOOT_CPU2 0x10 |
| 18 | #define QCOM_SCM_FLAG_WARMBOOT_CPU3 0x40 |
Kumar Gala | 3d9b448 | 2015-02-04 15:46:04 -0600 | [diff] [blame] | 19 | |
Lina Iyer | a353e4a | 2015-03-02 16:30:28 -0700 | [diff] [blame^] | 20 | extern int qcom_scm_set_cold_boot_addr(void *entry, const cpumask_t *cpus); |
Kumar Gala | 3d9b448 | 2015-02-04 15:46:04 -0600 | [diff] [blame] | 21 | |
Kumar Gala | 4de4347 | 2015-02-04 16:30:46 -0600 | [diff] [blame] | 22 | #define QCOM_SCM_VERSION(major, minor) (((major) << 16) | ((minor) & 0xFF)) |
Stephen Boyd | 2a1eb58 | 2010-08-27 10:01:23 -0700 | [diff] [blame] | 23 | |
Kumar Gala | 4de4347 | 2015-02-04 16:30:46 -0600 | [diff] [blame] | 24 | extern u32 qcom_scm_get_version(void); |
Stephen Boyd | 2a1eb58 | 2010-08-27 10:01:23 -0700 | [diff] [blame] | 25 | |
| 26 | #endif |