mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-07-07 04:37:05 +08:00

These patches were generated from: https://github.com/raspberrypi/linux/commits/rpi-6.12.y With the following command: git format-patch -N v6.12.27..HEAD (HEAD -> 8d3206ee456a5ecdf9ddbfd8e5e231e4f0cd716e) Exceptions: - (def)configs patches - github workflows patches - applied & reverted patches - readme patches - wireless patches Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
54 lines
1.5 KiB
Diff
54 lines
1.5 KiB
Diff
From 073abe0df99a4db87fd8c1eeb38d2aaf85fb1a13 Mon Sep 17 00:00:00 2001
|
|
From: popcornmix <popcornmix@gmail.com>
|
|
Date: Fri, 25 Aug 2017 19:18:13 +0100
|
|
Subject: [PATCH] cache: export clean and invalidate
|
|
|
|
hack: cache: Fix linker error
|
|
---
|
|
arch/arm/mm/cache-v6.S | 4 ++--
|
|
arch/arm/mm/cache-v7.S | 6 ++++--
|
|
2 files changed, 6 insertions(+), 4 deletions(-)
|
|
|
|
--- a/arch/arm/mm/cache-v6.S
|
|
+++ b/arch/arm/mm/cache-v6.S
|
|
@@ -206,7 +206,7 @@ SYM_FUNC_END(v6_flush_kern_dcache_area)
|
|
* - start - virtual start address of region
|
|
* - end - virtual end address of region
|
|
*/
|
|
-v6_dma_inv_range:
|
|
+ENTRY(v6_dma_inv_range)
|
|
tst r0, #D_CACHE_LINE_SIZE - 1
|
|
bic r0, r0, #D_CACHE_LINE_SIZE - 1
|
|
#ifdef HARVARD_CACHE
|
|
@@ -239,7 +239,7 @@ v6_dma_inv_range:
|
|
* - start - virtual start address of region
|
|
* - end - virtual end address of region
|
|
*/
|
|
-v6_dma_clean_range:
|
|
+ENTRY(v6_dma_clean_range)
|
|
bic r0, r0, #D_CACHE_LINE_SIZE - 1
|
|
1:
|
|
#ifdef HARVARD_CACHE
|
|
--- a/arch/arm/mm/cache-v7.S
|
|
+++ b/arch/arm/mm/cache-v7.S
|
|
@@ -364,7 +364,8 @@ SYM_FUNC_END(v7_flush_kern_dcache_area)
|
|
* - start - virtual start address of region
|
|
* - end - virtual end address of region
|
|
*/
|
|
-v7_dma_inv_range:
|
|
+ENTRY(b15_dma_inv_range)
|
|
+ENTRY(v7_dma_inv_range)
|
|
dcache_line_size r2, r3
|
|
sub r3, r2, #1
|
|
tst r0, r3
|
|
@@ -394,7 +395,8 @@ ENDPROC(v7_dma_inv_range)
|
|
* - start - virtual start address of region
|
|
* - end - virtual end address of region
|
|
*/
|
|
-v7_dma_clean_range:
|
|
+ENTRY(b15_dma_clean_range)
|
|
+ENTRY(v7_dma_clean_range)
|
|
dcache_line_size r2, r3
|
|
sub r3, r2, #1
|
|
bic r0, r0, r3
|