blob: f7b82f9c1e213053c53aaab321fb0e9f558b8b73 [file] [log] [blame]
Tomasz Figaa4a18d22012-12-11 13:58:43 +09001/*
2 * Copyright (c) 2012 Samsung Electronics.
3 *
4 * EXYNOS - SMC Call
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
10
11#ifndef __ASM_ARCH_EXYNOS_SMC_H
12#define __ASM_ARCH_EXYNOS_SMC_H
13
14#define SMC_CMD_INIT (-1)
15#define SMC_CMD_INFO (-2)
16/* For Power Management */
17#define SMC_CMD_SLEEP (-3)
18#define SMC_CMD_CPU1BOOT (-4)
19#define SMC_CMD_CPU0AFTR (-5)
20/* For CP15 Access */
21#define SMC_CMD_C15RESUME (-11)
22/* For L2 Cache Access */
23#define SMC_CMD_L2X0CTRL (-21)
24#define SMC_CMD_L2X0SETUP1 (-22)
25#define SMC_CMD_L2X0SETUP2 (-23)
26#define SMC_CMD_L2X0INVALL (-24)
27#define SMC_CMD_L2X0DEBUG (-25)
28
Tomasz Figa2b9d9c32014-09-24 01:24:39 +090029#ifndef __ASSEMBLY__
30
Tomasz Figaa4a18d22012-12-11 13:58:43 +090031extern void exynos_smc(u32 cmd, u32 arg1, u32 arg2, u32 arg3);
32
Tomasz Figa2b9d9c32014-09-24 01:24:39 +090033#endif /* __ASSEMBLY__ */
34
Tomasz Figaa4a18d22012-12-11 13:58:43 +090035#endif