blob: d73c3786c8819c97766da314f819bc7741e4411d [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 */
12#ifndef __MACH_SCM_H
13#define __MACH_SCM_H
14
Kumar Gala3d9b4482015-02-04 15:46:04 -060015#define SCM_FLAG_COLDBOOT_CPU1 0x01
16#define SCM_FLAG_COLDBOOT_CPU2 0x08
17#define SCM_FLAG_COLDBOOT_CPU3 0x20
18#define SCM_FLAG_WARMBOOT_CPU0 0x04
19#define SCM_FLAG_WARMBOOT_CPU1 0x02
20#define SCM_FLAG_WARMBOOT_CPU2 0x10
21#define SCM_FLAG_WARMBOOT_CPU3 0x40
22
23extern int scm_set_boot_addr(u32 addr, int flags);
24
Stephen Boyd2a1eb582010-08-27 10:01:23 -070025#define SCM_VERSION(major, minor) (((major) << 16) | ((minor) & 0xFF))
26
27extern u32 scm_get_version(void);
28
29#endif