diff options
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/mach-exynos/Makefile | 5 | ||||
-rw-r--r-- | arch/arm/mach-exynos/exynos-smc.S | 22 | ||||
-rw-r--r-- | arch/arm/mach-exynos/smc.h | 31 |
3 files changed, 58 insertions, 0 deletions
diff --git a/arch/arm/mach-exynos/Makefile b/arch/arm/mach-exynos/Makefile index d2f6b362b6dd..5567bf7d04ba 100644 --- a/arch/arm/mach-exynos/Makefile +++ b/arch/arm/mach-exynos/Makefile | |||
@@ -24,6 +24,11 @@ obj-$(CONFIG_SMP) += platsmp.o headsmp.o | |||
24 | 24 | ||
25 | obj-$(CONFIG_HOTPLUG_CPU) += hotplug.o | 25 | obj-$(CONFIG_HOTPLUG_CPU) += hotplug.o |
26 | 26 | ||
27 | obj-$(CONFIG_ARCH_EXYNOS) += exynos-smc.o | ||
28 | |||
29 | plus_sec := $(call as-instr,.arch_extension sec,+sec) | ||
30 | AFLAGS_exynos-smc.o :=-Wa,-march=armv7-a$(plus_sec) | ||
31 | |||
27 | # machine support | 32 | # machine support |
28 | 33 | ||
29 | obj-$(CONFIG_MACH_SMDKC210) += mach-smdkv310.o | 34 | obj-$(CONFIG_MACH_SMDKC210) += mach-smdkv310.o |
diff --git a/arch/arm/mach-exynos/exynos-smc.S b/arch/arm/mach-exynos/exynos-smc.S new file mode 100644 index 000000000000..2e27aa3813fd --- /dev/null +++ b/arch/arm/mach-exynos/exynos-smc.S | |||
@@ -0,0 +1,22 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2012 Samsung Electronics. | ||
3 | * | ||
4 | * Copied from omap-smc.S Copyright (C) 2010 Texas Instruments, Inc. | ||
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 | #include <linux/linkage.h> | ||
12 | |||
13 | /* | ||
14 | * Function signature: void exynos_smc(u32 cmd, u32 arg1, u32 arg2, u32 arg3) | ||
15 | */ | ||
16 | |||
17 | ENTRY(exynos_smc) | ||
18 | stmfd sp!, {r4-r11, lr} | ||
19 | dsb | ||
20 | smc #0 | ||
21 | ldmfd sp!, {r4-r11, pc} | ||
22 | ENDPROC(exynos_smc) | ||
diff --git a/arch/arm/mach-exynos/smc.h b/arch/arm/mach-exynos/smc.h new file mode 100644 index 000000000000..13a1dc8ecbf2 --- /dev/null +++ b/arch/arm/mach-exynos/smc.h | |||
@@ -0,0 +1,31 @@ | |||
1 | /* | ||
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 | |||
29 | extern void exynos_smc(u32 cmd, u32 arg1, u32 arg2, u32 arg3); | ||
30 | |||
31 | #endif | ||