firmware: qcom: scm: Clean cold boot entry to export only the API
[linux-2.6-block.git] / include / linux / qcom_scm.h
CommitLineData
2a1eb58a
SB
1/* Copyright (c) 2010, Code Aurora Forum. All rights reserved.
2 *
3162aa2f
DB
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.
2a1eb58a 6 *
3162aa2f
DB
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.
2a1eb58a 11 */
4de43476
KG
12#ifndef __QCOM_SCM_H
13#define __QCOM_SCM_H
2a1eb58a 14
4de43476
KG
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
3d9b448b 19
a353e4a0 20extern int qcom_scm_set_cold_boot_addr(void *entry, const cpumask_t *cpus);
3d9b448b 21
4de43476 22#define QCOM_SCM_VERSION(major, minor) (((major) << 16) | ((minor) & 0xFF))
2a1eb58a 23
4de43476 24extern u32 qcom_scm_get_version(void);
2a1eb58a
SB
25
26#endif