blob: 6bb84cffb39698d000717bcf044d0dd02f61e396 [file] [log] [blame]
Stephen Boyd2a1eb582010-08-27 10:01:23 -07001/* Copyright (c) 2010, Code Aurora Forum. All rights reserved.
2 *
David Brown3162aa22011-02-14 16:15:26 -08003 * 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 Boyd2a1eb582010-08-27 10:01:23 -07006 *
David Brown3162aa22011-02-14 16:15:26 -08007 * 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 Boyd2a1eb582010-08-27 10:01:23 -070011 */
Kumar Gala4de43472015-02-04 16:30:46 -060012#ifndef __QCOM_SCM_H
13#define __QCOM_SCM_H
Stephen Boyd2a1eb582010-08-27 10:01:23 -070014
Kumar Gala4de43472015-02-04 16:30:46 -060015#define QCOM_SCM_FLAG_COLDBOOT_CPU1 0x01
16#define QCOM_SCM_FLAG_COLDBOOT_CPU2 0x08
17#define QCOM_SCM_FLAG_COLDBOOT_CPU3 0x20
18#define QCOM_SCM_FLAG_WARMBOOT_CPU0 0x04
19#define QCOM_SCM_FLAG_WARMBOOT_CPU1 0x02
20#define QCOM_SCM_FLAG_WARMBOOT_CPU2 0x10
21#define QCOM_SCM_FLAG_WARMBOOT_CPU3 0x40
Kumar Gala3d9b4482015-02-04 15:46:04 -060022
Kumar Gala4de43472015-02-04 16:30:46 -060023extern int qcom_scm_set_boot_addr(u32 addr, int flags);
Kumar Gala3d9b4482015-02-04 15:46:04 -060024
Kumar Gala4de43472015-02-04 16:30:46 -060025#define QCOM_SCM_VERSION(major, minor) (((major) << 16) | ((minor) & 0xFF))
Stephen Boyd2a1eb582010-08-27 10:01:23 -070026
Kumar Gala4de43472015-02-04 16:30:46 -060027extern u32 qcom_scm_get_version(void);
Stephen Boyd2a1eb582010-08-27 10:01:23 -070028
29#endif