summaryrefslogtreecommitdiffstats
path: root/arch/arm/cpu/armv7/s5pc1xx/cache.S
diff options
context:
space:
mode:
authorTom Rini <trini@ti.com>2014-10-10 20:59:28 -0400
committerTom Rini <trini@ti.com>2014-10-10 20:59:28 -0400
commite89d623f099c44b0b166ccf46bce2e6a0b99c984 (patch)
treeda7fb5d7260b477a976519e580264ba1f86a866b /arch/arm/cpu/armv7/s5pc1xx/cache.S
parented8271d11c5c7a31eb49f787fa25eece6b82bb9e (diff)
parent3d420cbd355a5f09e4f113eb10579a264a8ef138 (diff)
downloadu-boot-e89d623f099c44b0b166ccf46bce2e6a0b99c984.tar.gz
u-boot-e89d623f099c44b0b166ccf46bce2e6a0b99c984.tar.xz
u-boot-e89d623f099c44b0b166ccf46bce2e6a0b99c984.zip
Merge branch 'master' of git://git.denx.de/u-boot-arm
Diffstat (limited to 'arch/arm/cpu/armv7/s5pc1xx/cache.S')
-rw-r--r--arch/arm/cpu/armv7/s5pc1xx/cache.S30
1 files changed, 0 insertions, 30 deletions
diff --git a/arch/arm/cpu/armv7/s5pc1xx/cache.S b/arch/arm/cpu/armv7/s5pc1xx/cache.S
deleted file mode 100644
index 3089592eb1..0000000000
--- a/arch/arm/cpu/armv7/s5pc1xx/cache.S
+++ /dev/null
@@ -1,30 +0,0 @@
-/*
- * Copyright (C) 2009 Samsung Electronics
- * Minkyu Kang <mk7.kang@samsung.com>
- *
- * based on arch/arm/cpu/armv7/omap3/cache.S
- *
- * SPDX-License-Identifier: GPL-2.0+
- */
-
-.align 5
-
-#include <linux/linkage.h>
-
-#ifndef CONFIG_SYS_L2CACHE_OFF
-ENTRY(v7_outer_cache_enable)
- push {r0, r1, r2, lr}
- mrc 15, 0, r3, cr1, cr0, 1
- orr r3, r3, #2
- mcr 15, 0, r3, cr1, cr0, 1
- pop {r1, r2, r3, pc}
-ENDPROC(v7_outer_cache_enable)
-
-ENTRY(v7_outer_cache_disable)
- push {r0, r1, r2, lr}
- mrc 15, 0, r3, cr1, cr0, 1
- bic r3, r3, #2
- mcr 15, 0, r3, cr1, cr0, 1
- pop {r1, r2, r3, pc}
-ENDPROC(v7_outer_cache_disable)
-#endif