aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSachin Kamat <sachin.kamat@linaro.org>2014-03-20 12:52:56 -0400
committerKukjin Kim <kgene.kim@samsung.com>2014-03-20 13:00:09 -0400
commit7ed30015007c32c006783526dc54a2a88bd5e13b (patch)
treed78a3801d356829d7840c285c4645953b89563ed
parent8b3e8bbd132279be544a6f4dc22c22d244c98c23 (diff)
ARM: EXYNOS: Add support to reserve memory for MFC-v7
Reserve memory for MFC-v7 IP. Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org> Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
-rw-r--r--arch/arm/mach-exynos/mach-exynos5-dt.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/arch/arm/mach-exynos/mach-exynos5-dt.c b/arch/arm/mach-exynos/mach-exynos5-dt.c
index 9586439b2d0e..9a8a798d2ad0 100644
--- a/arch/arm/mach-exynos/mach-exynos5-dt.c
+++ b/arch/arm/mach-exynos/mach-exynos5-dt.c
@@ -59,7 +59,15 @@ static char const *exynos5_dt_compat[] __initdata = {
59static void __init exynos5_reserve(void) 59static void __init exynos5_reserve(void)
60{ 60{
61#ifdef CONFIG_S5P_DEV_MFC 61#ifdef CONFIG_S5P_DEV_MFC
62 of_scan_flat_dt(s5p_fdt_alloc_mfc_mem, "samsung,mfc-v6"); 62 int i;
63 char *mfc_mem[] = {
64 "samsung,mfc-v6",
65 "samsung,mfc-v7",
66 };
67
68 for (i = 0; i < ARRAY_SIZE(mfc_mem); i++)
69 if (of_scan_flat_dt(s5p_fdt_alloc_mfc_mem, mfc_mem[i]))
70 break;
63#endif 71#endif
64} 72}
65 73