wdenk | edc48b6 | 2002-09-08 17:56:50 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2002 |
| 3 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 4 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 5 | * SPDX-License-Identifier: GPL-2.0+ |
wdenk | edc48b6 | 2002-09-08 17:56:50 +0000 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | /* for now: just dummy functions to satisfy the linker */ |
| 9 | |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 10 | #include <common.h> |
Thierry Reding | 1dfdd9b | 2014-12-09 22:25:22 -0700 | [diff] [blame] | 11 | #include <malloc.h> |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 12 | |
Jeroen Hofstee | fcfddfd | 2014-06-23 22:07:04 +0200 | [diff] [blame] | 13 | __weak void flush_cache(unsigned long start, unsigned long size) |
wdenk | edc48b6 | 2002-09-08 17:56:50 +0000 | [diff] [blame] | 14 | { |
Masahiro Yamada | 3fd968e | 2014-11-06 14:59:37 +0900 | [diff] [blame] | 15 | #if defined(CONFIG_CPU_ARM1136) |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 16 | |
Albert ARIBAUD | b4ee149 | 2014-04-15 16:13:47 +0200 | [diff] [blame] | 17 | #if !defined(CONFIG_SYS_ICACHE_OFF) |
| 18 | asm("mcr p15, 0, r1, c7, c5, 0"); /* invalidate I cache */ |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 19 | #endif |
Albert ARIBAUD | b4ee149 | 2014-04-15 16:13:47 +0200 | [diff] [blame] | 20 | |
| 21 | #if !defined(CONFIG_SYS_DCACHE_OFF) |
| 22 | asm("mcr p15, 0, r1, c7, c14, 0"); /* Clean+invalidate D cache */ |
| 23 | #endif |
| 24 | |
Masahiro Yamada | 3fd968e | 2014-11-06 14:59:37 +0900 | [diff] [blame] | 25 | #endif /* CONFIG_CPU_ARM1136 */ |
Albert ARIBAUD | b4ee149 | 2014-04-15 16:13:47 +0200 | [diff] [blame] | 26 | |
Masahiro Yamada | 5d7b131 | 2014-11-06 14:59:36 +0900 | [diff] [blame] | 27 | #ifdef CONFIG_CPU_ARM926EJS |
Heiko Schocher | 99197a9 | 2014-11-18 09:41:56 +0100 | [diff] [blame] | 28 | #if !(defined(CONFIG_SYS_ICACHE_OFF) && defined(CONFIG_SYS_DCACHE_OFF)) |
Heiko Schocher | c3330e9 | 2010-09-17 13:10:30 +0200 | [diff] [blame] | 29 | /* test and clean, page 2-23 of arm926ejs manual */ |
| 30 | asm("0: mrc p15, 0, r15, c7, c10, 3\n\t" "bne 0b\n" : : : "memory"); |
| 31 | /* disable write buffer as well (page 2-22) */ |
| 32 | asm("mcr p15, 0, %0, c7, c10, 4" : : "r" (0)); |
Heiko Schocher | 99197a9 | 2014-11-18 09:41:56 +0100 | [diff] [blame] | 33 | #endif |
Masahiro Yamada | 5d7b131 | 2014-11-06 14:59:36 +0900 | [diff] [blame] | 34 | #endif /* CONFIG_CPU_ARM926EJS */ |
wdenk | edc48b6 | 2002-09-08 17:56:50 +0000 | [diff] [blame] | 35 | return; |
| 36 | } |
Aneesh V | e05f007 | 2011-06-16 23:30:50 +0000 | [diff] [blame] | 37 | |
| 38 | /* |
| 39 | * Default implementation: |
| 40 | * do a range flush for the entire range |
| 41 | */ |
Jeroen Hofstee | fcfddfd | 2014-06-23 22:07:04 +0200 | [diff] [blame] | 42 | __weak void flush_dcache_all(void) |
Aneesh V | e05f007 | 2011-06-16 23:30:50 +0000 | [diff] [blame] | 43 | { |
| 44 | flush_cache(0, ~0); |
| 45 | } |
Aneesh V | cba4b18 | 2011-08-16 04:33:05 +0000 | [diff] [blame] | 46 | |
| 47 | /* |
| 48 | * Default implementation of enable_caches() |
| 49 | * Real implementation should be in platform code |
| 50 | */ |
Jeroen Hofstee | fcfddfd | 2014-06-23 22:07:04 +0200 | [diff] [blame] | 51 | __weak void enable_caches(void) |
Aneesh V | cba4b18 | 2011-08-16 04:33:05 +0000 | [diff] [blame] | 52 | { |
| 53 | puts("WARNING: Caches not enabled\n"); |
| 54 | } |
Thierry Reding | 1dfdd9b | 2014-12-09 22:25:22 -0700 | [diff] [blame] | 55 | |
| 56 | #ifdef CONFIG_SYS_NONCACHED_MEMORY |
| 57 | /* |
| 58 | * Reserve one MMU section worth of address space below the malloc() area that |
| 59 | * will be mapped uncached. |
| 60 | */ |
| 61 | static unsigned long noncached_start; |
| 62 | static unsigned long noncached_end; |
| 63 | static unsigned long noncached_next; |
| 64 | |
| 65 | void noncached_init(void) |
| 66 | { |
| 67 | phys_addr_t start, end; |
| 68 | size_t size; |
| 69 | |
| 70 | end = ALIGN(mem_malloc_start, MMU_SECTION_SIZE) - MMU_SECTION_SIZE; |
| 71 | size = ALIGN(CONFIG_SYS_NONCACHED_MEMORY, MMU_SECTION_SIZE); |
| 72 | start = end - size; |
| 73 | |
| 74 | debug("mapping memory %pa-%pa non-cached\n", &start, &end); |
| 75 | |
| 76 | noncached_start = start; |
| 77 | noncached_end = end; |
| 78 | noncached_next = start; |
| 79 | |
| 80 | #ifndef CONFIG_SYS_DCACHE_OFF |
| 81 | mmu_set_region_dcache_behaviour(noncached_start, size, DCACHE_OFF); |
| 82 | #endif |
| 83 | } |
| 84 | |
| 85 | phys_addr_t noncached_alloc(size_t size, size_t align) |
| 86 | { |
| 87 | phys_addr_t next = ALIGN(noncached_next, align); |
| 88 | |
| 89 | if (next >= noncached_end || (noncached_end - next) < size) |
| 90 | return 0; |
| 91 | |
| 92 | debug("allocated %zu bytes of uncached memory @%pa\n", size, &next); |
| 93 | noncached_next = next + size; |
| 94 | |
| 95 | return next; |
| 96 | } |
| 97 | #endif /* CONFIG_SYS_NONCACHED_MEMORY */ |