Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Jean-Christophe PLAGNIOL-VILLARD | b3acb6c | 2009-04-05 13:06:31 +0200 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2002 |
| 4 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
Jean-Christophe PLAGNIOL-VILLARD | b3acb6c | 2009-04-05 13:06:31 +0200 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #include <common.h> |
Simon Glass | 9edefc2 | 2019-11-14 12:57:37 -0700 | [diff] [blame] | 8 | #include <cpu_func.h> |
Jean-Christophe PLAGNIOL-VILLARD | b3acb6c | 2009-04-05 13:06:31 +0200 | [diff] [blame] | 9 | #include <asm/system.h> |
R Sricharan | 96fdbec | 2013-03-04 20:04:44 +0000 | [diff] [blame] | 10 | #include <asm/cache.h> |
| 11 | #include <linux/compiler.h> |
Lokesh Vutla | a43d46a | 2018-04-26 18:21:31 +0530 | [diff] [blame] | 12 | #include <asm/armv7_mpu.h> |
Jean-Christophe PLAGNIOL-VILLARD | b3acb6c | 2009-04-05 13:06:31 +0200 | [diff] [blame] | 13 | |
Trevor Woerner | 1001502 | 2019-05-03 09:41:00 -0400 | [diff] [blame] | 14 | #if !(CONFIG_IS_ENABLED(SYS_ICACHE_OFF) && CONFIG_IS_ENABLED(SYS_DCACHE_OFF)) |
Heiko Schocher | 880eff5 | 2010-09-17 13:10:29 +0200 | [diff] [blame] | 15 | |
Heiko Schocher | 880eff5 | 2010-09-17 13:10:29 +0200 | [diff] [blame] | 16 | DECLARE_GLOBAL_DATA_PTR; |
| 17 | |
Lokesh Vutla | a43d46a | 2018-04-26 18:21:31 +0530 | [diff] [blame] | 18 | #ifdef CONFIG_SYS_ARM_MMU |
Jeroen Hofstee | fcfddfd | 2014-06-23 22:07:04 +0200 | [diff] [blame] | 19 | __weak void arm_init_before_mmu(void) |
Aneesh V | c2dd0d4 | 2011-06-16 23:30:49 +0000 | [diff] [blame] | 20 | { |
| 21 | } |
Aneesh V | c2dd0d4 | 2011-06-16 23:30:49 +0000 | [diff] [blame] | 22 | |
R Sricharan | de63ac2 | 2013-03-04 20:04:45 +0000 | [diff] [blame] | 23 | __weak void arm_init_domains(void) |
| 24 | { |
| 25 | } |
| 26 | |
Simon Glass | 0dde7f5 | 2012-10-17 13:24:53 +0000 | [diff] [blame] | 27 | void set_section_dcache(int section, enum dcache_option option) |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 28 | { |
Alexander Graf | d990f5c | 2016-03-16 15:41:21 +0100 | [diff] [blame] | 29 | #ifdef CONFIG_ARMV7_LPAE |
| 30 | u64 *page_table = (u64 *)gd->arch.tlb_addr; |
| 31 | /* Need to set the access flag to not fault */ |
| 32 | u64 value = TTB_SECT_AP | TTB_SECT_AF; |
| 33 | #else |
Simon Glass | 34fd5d2 | 2012-12-13 20:48:39 +0000 | [diff] [blame] | 34 | u32 *page_table = (u32 *)gd->arch.tlb_addr; |
Alexander Graf | d990f5c | 2016-03-16 15:41:21 +0100 | [diff] [blame] | 35 | u32 value = TTB_SECT_AP; |
| 36 | #endif |
Simon Glass | 0dde7f5 | 2012-10-17 13:24:53 +0000 | [diff] [blame] | 37 | |
Alexander Graf | d990f5c | 2016-03-16 15:41:21 +0100 | [diff] [blame] | 38 | /* Add the page offset */ |
| 39 | value |= ((u32)section << MMU_SECTION_SHIFT); |
| 40 | |
| 41 | /* Add caching bits */ |
Simon Glass | 0dde7f5 | 2012-10-17 13:24:53 +0000 | [diff] [blame] | 42 | value |= option; |
Alexander Graf | d990f5c | 2016-03-16 15:41:21 +0100 | [diff] [blame] | 43 | |
| 44 | /* Set PTE */ |
Simon Glass | 0dde7f5 | 2012-10-17 13:24:53 +0000 | [diff] [blame] | 45 | page_table[section] = value; |
| 46 | } |
| 47 | |
Jeroen Hofstee | fcfddfd | 2014-06-23 22:07:04 +0200 | [diff] [blame] | 48 | __weak void mmu_page_table_flush(unsigned long start, unsigned long stop) |
Simon Glass | 0dde7f5 | 2012-10-17 13:24:53 +0000 | [diff] [blame] | 49 | { |
| 50 | debug("%s: Warning: not implemented\n", __func__); |
| 51 | } |
| 52 | |
Thierry Reding | 25026fa | 2014-08-26 17:34:21 +0200 | [diff] [blame] | 53 | void mmu_set_region_dcache_behaviour(phys_addr_t start, size_t size, |
Simon Glass | 0dde7f5 | 2012-10-17 13:24:53 +0000 | [diff] [blame] | 54 | enum dcache_option option) |
| 55 | { |
Stefan Agner | c5b3cab | 2016-08-14 21:33:00 -0700 | [diff] [blame] | 56 | #ifdef CONFIG_ARMV7_LPAE |
| 57 | u64 *page_table = (u64 *)gd->arch.tlb_addr; |
| 58 | #else |
Simon Glass | 34fd5d2 | 2012-12-13 20:48:39 +0000 | [diff] [blame] | 59 | u32 *page_table = (u32 *)gd->arch.tlb_addr; |
Stefan Agner | c5b3cab | 2016-08-14 21:33:00 -0700 | [diff] [blame] | 60 | #endif |
Stefan Agner | 8f894a4 | 2016-08-14 21:33:01 -0700 | [diff] [blame] | 61 | unsigned long startpt, stoppt; |
Thierry Reding | 25026fa | 2014-08-26 17:34:21 +0200 | [diff] [blame] | 62 | unsigned long upto, end; |
Simon Glass | 0dde7f5 | 2012-10-17 13:24:53 +0000 | [diff] [blame] | 63 | |
| 64 | end = ALIGN(start + size, MMU_SECTION_SIZE) >> MMU_SECTION_SHIFT; |
| 65 | start = start >> MMU_SECTION_SHIFT; |
Keerthy | 06d43c8 | 2016-10-29 15:19:10 +0530 | [diff] [blame] | 66 | #ifdef CONFIG_ARMV7_LPAE |
| 67 | debug("%s: start=%pa, size=%zu, option=%llx\n", __func__, &start, size, |
| 68 | option); |
| 69 | #else |
Keerthy | 2b373cb | 2016-10-29 15:19:09 +0530 | [diff] [blame] | 70 | debug("%s: start=%pa, size=%zu, option=0x%x\n", __func__, &start, size, |
Simon Glass | 0dde7f5 | 2012-10-17 13:24:53 +0000 | [diff] [blame] | 71 | option); |
Keerthy | 06d43c8 | 2016-10-29 15:19:10 +0530 | [diff] [blame] | 72 | #endif |
Simon Glass | 0dde7f5 | 2012-10-17 13:24:53 +0000 | [diff] [blame] | 73 | for (upto = start; upto < end; upto++) |
| 74 | set_section_dcache(upto, option); |
Stefan Agner | 8f894a4 | 2016-08-14 21:33:01 -0700 | [diff] [blame] | 75 | |
| 76 | /* |
| 77 | * Make sure range is cache line aligned |
| 78 | * Only CPU maintains page tables, hence it is safe to always |
| 79 | * flush complete cache lines... |
| 80 | */ |
| 81 | |
| 82 | startpt = (unsigned long)&page_table[start]; |
| 83 | startpt &= ~(CONFIG_SYS_CACHELINE_SIZE - 1); |
| 84 | stoppt = (unsigned long)&page_table[end]; |
| 85 | stoppt = ALIGN(stoppt, CONFIG_SYS_CACHELINE_SIZE); |
| 86 | mmu_page_table_flush(startpt, stoppt); |
Simon Glass | 0dde7f5 | 2012-10-17 13:24:53 +0000 | [diff] [blame] | 87 | } |
| 88 | |
R Sricharan | 96fdbec | 2013-03-04 20:04:44 +0000 | [diff] [blame] | 89 | __weak void dram_bank_mmu_setup(int bank) |
Simon Glass | 0dde7f5 | 2012-10-17 13:24:53 +0000 | [diff] [blame] | 90 | { |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 91 | bd_t *bd = gd->bd; |
| 92 | int i; |
| 93 | |
Patrick Delaunay | c8ec1e3 | 2020-04-24 20:20:15 +0200 | [diff] [blame^] | 94 | /* bd->bi_dram is available only after relocation */ |
| 95 | if ((gd->flags & GD_FLG_RELOC) == 0) |
| 96 | return; |
| 97 | |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 98 | debug("%s: bank: %d\n", __func__, bank); |
Alexander Graf | d990f5c | 2016-03-16 15:41:21 +0100 | [diff] [blame] | 99 | for (i = bd->bi_dram[bank].start >> MMU_SECTION_SHIFT; |
| 100 | i < (bd->bi_dram[bank].start >> MMU_SECTION_SHIFT) + |
| 101 | (bd->bi_dram[bank].size >> MMU_SECTION_SHIFT); |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 102 | i++) { |
Simon Glass | 0dde7f5 | 2012-10-17 13:24:53 +0000 | [diff] [blame] | 103 | #if defined(CONFIG_SYS_ARM_CACHE_WRITETHROUGH) |
| 104 | set_section_dcache(i, DCACHE_WRITETHROUGH); |
Marek Vasut | ff7e970 | 2014-09-15 02:44:36 +0200 | [diff] [blame] | 105 | #elif defined(CONFIG_SYS_ARM_CACHE_WRITEALLOC) |
| 106 | set_section_dcache(i, DCACHE_WRITEALLOC); |
Simon Glass | 0dde7f5 | 2012-10-17 13:24:53 +0000 | [diff] [blame] | 107 | #else |
| 108 | set_section_dcache(i, DCACHE_WRITEBACK); |
| 109 | #endif |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 110 | } |
| 111 | } |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 112 | |
| 113 | /* to activate the MMU we need to set up virtual memory: use 1M areas */ |
Heiko Schocher | 880eff5 | 2010-09-17 13:10:29 +0200 | [diff] [blame] | 114 | static inline void mmu_setup(void) |
| 115 | { |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 116 | int i; |
Heiko Schocher | 880eff5 | 2010-09-17 13:10:29 +0200 | [diff] [blame] | 117 | u32 reg; |
| 118 | |
Aneesh V | c2dd0d4 | 2011-06-16 23:30:49 +0000 | [diff] [blame] | 119 | arm_init_before_mmu(); |
Heiko Schocher | 880eff5 | 2010-09-17 13:10:29 +0200 | [diff] [blame] | 120 | /* Set up an identity-mapping for all 4GB, rw for everyone */ |
Alexander Graf | d990f5c | 2016-03-16 15:41:21 +0100 | [diff] [blame] | 121 | for (i = 0; i < ((4096ULL * 1024 * 1024) >> MMU_SECTION_SHIFT); i++) |
Simon Glass | 0dde7f5 | 2012-10-17 13:24:53 +0000 | [diff] [blame] | 122 | set_section_dcache(i, DCACHE_OFF); |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 123 | |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 124 | for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) { |
| 125 | dram_bank_mmu_setup(i); |
| 126 | } |
Heiko Schocher | 880eff5 | 2010-09-17 13:10:29 +0200 | [diff] [blame] | 127 | |
Simon Glass | 10d602a | 2017-05-31 17:57:13 -0600 | [diff] [blame] | 128 | #if defined(CONFIG_ARMV7_LPAE) && __LINUX_ARM_ARCH__ != 4 |
Alexander Graf | d990f5c | 2016-03-16 15:41:21 +0100 | [diff] [blame] | 129 | /* Set up 4 PTE entries pointing to our 4 1GB page tables */ |
| 130 | for (i = 0; i < 4; i++) { |
| 131 | u64 *page_table = (u64 *)(gd->arch.tlb_addr + (4096 * 4)); |
| 132 | u64 tpt = gd->arch.tlb_addr + (4096 * i); |
| 133 | page_table[i] = tpt | TTB_PAGETABLE; |
| 134 | } |
| 135 | |
| 136 | reg = TTBCR_EAE; |
| 137 | #if defined(CONFIG_SYS_ARM_CACHE_WRITETHROUGH) |
| 138 | reg |= TTBCR_ORGN0_WT | TTBCR_IRGN0_WT; |
| 139 | #elif defined(CONFIG_SYS_ARM_CACHE_WRITEALLOC) |
| 140 | reg |= TTBCR_ORGN0_WBWA | TTBCR_IRGN0_WBWA; |
| 141 | #else |
| 142 | reg |= TTBCR_ORGN0_WBNWA | TTBCR_IRGN0_WBNWA; |
| 143 | #endif |
| 144 | |
| 145 | if (is_hyp()) { |
Simon Glass | 579dfca | 2017-05-31 17:57:12 -0600 | [diff] [blame] | 146 | /* Set HTCR to enable LPAE */ |
Alexander Graf | d990f5c | 2016-03-16 15:41:21 +0100 | [diff] [blame] | 147 | asm volatile("mcr p15, 4, %0, c2, c0, 2" |
| 148 | : : "r" (reg) : "memory"); |
| 149 | /* Set HTTBR0 */ |
| 150 | asm volatile("mcrr p15, 4, %0, %1, c2" |
| 151 | : |
| 152 | : "r"(gd->arch.tlb_addr + (4096 * 4)), "r"(0) |
| 153 | : "memory"); |
| 154 | /* Set HMAIR */ |
| 155 | asm volatile("mcr p15, 4, %0, c10, c2, 0" |
| 156 | : : "r" (MEMORY_ATTRIBUTES) : "memory"); |
| 157 | } else { |
| 158 | /* Set TTBCR to enable LPAE */ |
| 159 | asm volatile("mcr p15, 0, %0, c2, c0, 2" |
| 160 | : : "r" (reg) : "memory"); |
| 161 | /* Set 64-bit TTBR0 */ |
| 162 | asm volatile("mcrr p15, 0, %0, %1, c2" |
| 163 | : |
| 164 | : "r"(gd->arch.tlb_addr + (4096 * 4)), "r"(0) |
| 165 | : "memory"); |
| 166 | /* Set MAIR */ |
| 167 | asm volatile("mcr p15, 0, %0, c10, c2, 0" |
| 168 | : : "r" (MEMORY_ATTRIBUTES) : "memory"); |
| 169 | } |
Lokesh Vutla | acf1500 | 2018-04-26 18:21:26 +0530 | [diff] [blame] | 170 | #elif defined(CONFIG_CPU_V7A) |
Simon Glass | 50a4886 | 2017-05-31 17:57:14 -0600 | [diff] [blame] | 171 | if (is_hyp()) { |
| 172 | /* Set HTCR to disable LPAE */ |
| 173 | asm volatile("mcr p15, 4, %0, c2, c0, 2" |
| 174 | : : "r" (0) : "memory"); |
| 175 | } else { |
| 176 | /* Set TTBCR to disable LPAE */ |
| 177 | asm volatile("mcr p15, 0, %0, c2, c0, 2" |
| 178 | : : "r" (0) : "memory"); |
| 179 | } |
Bryan Brinsko | 97840b5 | 2015-03-24 11:25:12 -0500 | [diff] [blame] | 180 | /* Set TTBR0 */ |
| 181 | reg = gd->arch.tlb_addr & TTBR0_BASE_ADDR_MASK; |
| 182 | #if defined(CONFIG_SYS_ARM_CACHE_WRITETHROUGH) |
| 183 | reg |= TTBR0_RGN_WT | TTBR0_IRGN_WT; |
| 184 | #elif defined(CONFIG_SYS_ARM_CACHE_WRITEALLOC) |
| 185 | reg |= TTBR0_RGN_WBWA | TTBR0_IRGN_WBWA; |
| 186 | #else |
| 187 | reg |= TTBR0_RGN_WB | TTBR0_IRGN_WB; |
| 188 | #endif |
| 189 | asm volatile("mcr p15, 0, %0, c2, c0, 0" |
| 190 | : : "r" (reg) : "memory"); |
| 191 | #else |
Heiko Schocher | 880eff5 | 2010-09-17 13:10:29 +0200 | [diff] [blame] | 192 | /* Copy the page table address to cp15 */ |
| 193 | asm volatile("mcr p15, 0, %0, c2, c0, 0" |
Simon Glass | 34fd5d2 | 2012-12-13 20:48:39 +0000 | [diff] [blame] | 194 | : : "r" (gd->arch.tlb_addr) : "memory"); |
Bryan Brinsko | 97840b5 | 2015-03-24 11:25:12 -0500 | [diff] [blame] | 195 | #endif |
Heiko Schocher | 880eff5 | 2010-09-17 13:10:29 +0200 | [diff] [blame] | 196 | /* Set the access control to all-supervisor */ |
| 197 | asm volatile("mcr p15, 0, %0, c3, c0, 0" |
| 198 | : : "r" (~0)); |
R Sricharan | de63ac2 | 2013-03-04 20:04:45 +0000 | [diff] [blame] | 199 | |
| 200 | arm_init_domains(); |
| 201 | |
Heiko Schocher | 880eff5 | 2010-09-17 13:10:29 +0200 | [diff] [blame] | 202 | /* and enable the mmu */ |
| 203 | reg = get_cr(); /* get control reg. */ |
Heiko Schocher | 880eff5 | 2010-09-17 13:10:29 +0200 | [diff] [blame] | 204 | set_cr(reg | CR_M); |
Jean-Christophe PLAGNIOL-VILLARD | b3acb6c | 2009-04-05 13:06:31 +0200 | [diff] [blame] | 205 | } |
| 206 | |
Aneesh V | e05f007 | 2011-06-16 23:30:50 +0000 | [diff] [blame] | 207 | static int mmu_enabled(void) |
| 208 | { |
| 209 | return get_cr() & CR_M; |
| 210 | } |
Lokesh Vutla | a43d46a | 2018-04-26 18:21:31 +0530 | [diff] [blame] | 211 | #endif /* CONFIG_SYS_ARM_MMU */ |
Aneesh V | e05f007 | 2011-06-16 23:30:50 +0000 | [diff] [blame] | 212 | |
Jean-Christophe PLAGNIOL-VILLARD | b3acb6c | 2009-04-05 13:06:31 +0200 | [diff] [blame] | 213 | /* cache_bit must be either CR_I or CR_C */ |
| 214 | static void cache_enable(uint32_t cache_bit) |
| 215 | { |
| 216 | uint32_t reg; |
| 217 | |
Lokesh Vutla | a43d46a | 2018-04-26 18:21:31 +0530 | [diff] [blame] | 218 | /* The data cache is not active unless the mmu/mpu is enabled too */ |
| 219 | #ifdef CONFIG_SYS_ARM_MMU |
Aneesh V | e05f007 | 2011-06-16 23:30:50 +0000 | [diff] [blame] | 220 | if ((cache_bit == CR_C) && !mmu_enabled()) |
Heiko Schocher | 880eff5 | 2010-09-17 13:10:29 +0200 | [diff] [blame] | 221 | mmu_setup(); |
Lokesh Vutla | a43d46a | 2018-04-26 18:21:31 +0530 | [diff] [blame] | 222 | #elif defined(CONFIG_SYS_ARM_MPU) |
| 223 | if ((cache_bit == CR_C) && !mpu_enabled()) { |
| 224 | printf("Consider enabling MPU before enabling caches\n"); |
| 225 | return; |
| 226 | } |
| 227 | #endif |
Jean-Christophe PLAGNIOL-VILLARD | b3acb6c | 2009-04-05 13:06:31 +0200 | [diff] [blame] | 228 | reg = get_cr(); /* get control reg. */ |
Jean-Christophe PLAGNIOL-VILLARD | b3acb6c | 2009-04-05 13:06:31 +0200 | [diff] [blame] | 229 | set_cr(reg | cache_bit); |
| 230 | } |
| 231 | |
| 232 | /* cache_bit must be either CR_I or CR_C */ |
| 233 | static void cache_disable(uint32_t cache_bit) |
| 234 | { |
| 235 | uint32_t reg; |
| 236 | |
SRICHARAN R | d702b08 | 2012-05-16 23:52:54 +0000 | [diff] [blame] | 237 | reg = get_cr(); |
SRICHARAN R | d702b08 | 2012-05-16 23:52:54 +0000 | [diff] [blame] | 238 | |
Heiko Schocher | 880eff5 | 2010-09-17 13:10:29 +0200 | [diff] [blame] | 239 | if (cache_bit == CR_C) { |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 240 | /* if cache isn;t enabled no need to disable */ |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 241 | if ((reg & CR_C) != CR_C) |
| 242 | return; |
Lokesh Vutla | 7a540ee | 2019-10-30 15:55:41 +0530 | [diff] [blame] | 243 | #ifdef CONFIG_SYS_ARM_MMU |
Heiko Schocher | 880eff5 | 2010-09-17 13:10:29 +0200 | [diff] [blame] | 244 | /* if disabling data cache, disable mmu too */ |
| 245 | cache_bit |= CR_M; |
Lokesh Vutla | 7a540ee | 2019-10-30 15:55:41 +0530 | [diff] [blame] | 246 | #endif |
Heiko Schocher | 880eff5 | 2010-09-17 13:10:29 +0200 | [diff] [blame] | 247 | } |
Arun Mankuzhi | 44df5e8 | 2012-11-30 13:01:14 +0000 | [diff] [blame] | 248 | reg = get_cr(); |
Lothar Waßmann | 53d4ed7 | 2017-06-08 09:48:41 +0200 | [diff] [blame] | 249 | |
Lokesh Vutla | 7a540ee | 2019-10-30 15:55:41 +0530 | [diff] [blame] | 250 | #ifdef CONFIG_SYS_ARM_MMU |
Arun Mankuzhi | 44df5e8 | 2012-11-30 13:01:14 +0000 | [diff] [blame] | 251 | if (cache_bit == (CR_C | CR_M)) |
Lokesh Vutla | 7a540ee | 2019-10-30 15:55:41 +0530 | [diff] [blame] | 252 | #elif defined(CONFIG_SYS_ARM_MPU) |
| 253 | if (cache_bit == CR_C) |
| 254 | #endif |
Arun Mankuzhi | 44df5e8 | 2012-11-30 13:01:14 +0000 | [diff] [blame] | 255 | flush_dcache_all(); |
Jean-Christophe PLAGNIOL-VILLARD | b3acb6c | 2009-04-05 13:06:31 +0200 | [diff] [blame] | 256 | set_cr(reg & ~cache_bit); |
| 257 | } |
| 258 | #endif |
| 259 | |
Trevor Woerner | 1001502 | 2019-05-03 09:41:00 -0400 | [diff] [blame] | 260 | #if CONFIG_IS_ENABLED(SYS_ICACHE_OFF) |
Simon Glass | 6cc915b | 2019-11-14 12:57:36 -0700 | [diff] [blame] | 261 | void icache_enable(void) |
Jean-Christophe PLAGNIOL-VILLARD | b3acb6c | 2009-04-05 13:06:31 +0200 | [diff] [blame] | 262 | { |
| 263 | return; |
| 264 | } |
| 265 | |
Simon Glass | 6cc915b | 2019-11-14 12:57:36 -0700 | [diff] [blame] | 266 | void icache_disable(void) |
Jean-Christophe PLAGNIOL-VILLARD | b3acb6c | 2009-04-05 13:06:31 +0200 | [diff] [blame] | 267 | { |
| 268 | return; |
| 269 | } |
| 270 | |
Simon Glass | 6cc915b | 2019-11-14 12:57:36 -0700 | [diff] [blame] | 271 | int icache_status(void) |
Jean-Christophe PLAGNIOL-VILLARD | b3acb6c | 2009-04-05 13:06:31 +0200 | [diff] [blame] | 272 | { |
| 273 | return 0; /* always off */ |
| 274 | } |
| 275 | #else |
| 276 | void icache_enable(void) |
| 277 | { |
| 278 | cache_enable(CR_I); |
| 279 | } |
| 280 | |
| 281 | void icache_disable(void) |
| 282 | { |
| 283 | cache_disable(CR_I); |
| 284 | } |
| 285 | |
| 286 | int icache_status(void) |
| 287 | { |
| 288 | return (get_cr() & CR_I) != 0; |
| 289 | } |
| 290 | #endif |
| 291 | |
Trevor Woerner | 1001502 | 2019-05-03 09:41:00 -0400 | [diff] [blame] | 292 | #if CONFIG_IS_ENABLED(SYS_DCACHE_OFF) |
Simon Glass | 6cc915b | 2019-11-14 12:57:36 -0700 | [diff] [blame] | 293 | void dcache_enable(void) |
Jean-Christophe PLAGNIOL-VILLARD | b3acb6c | 2009-04-05 13:06:31 +0200 | [diff] [blame] | 294 | { |
| 295 | return; |
| 296 | } |
| 297 | |
Simon Glass | 6cc915b | 2019-11-14 12:57:36 -0700 | [diff] [blame] | 298 | void dcache_disable(void) |
Jean-Christophe PLAGNIOL-VILLARD | b3acb6c | 2009-04-05 13:06:31 +0200 | [diff] [blame] | 299 | { |
| 300 | return; |
| 301 | } |
| 302 | |
Simon Glass | 6cc915b | 2019-11-14 12:57:36 -0700 | [diff] [blame] | 303 | int dcache_status(void) |
Jean-Christophe PLAGNIOL-VILLARD | b3acb6c | 2009-04-05 13:06:31 +0200 | [diff] [blame] | 304 | { |
| 305 | return 0; /* always off */ |
| 306 | } |
| 307 | #else |
| 308 | void dcache_enable(void) |
| 309 | { |
| 310 | cache_enable(CR_C); |
| 311 | } |
| 312 | |
| 313 | void dcache_disable(void) |
| 314 | { |
| 315 | cache_disable(CR_C); |
| 316 | } |
| 317 | |
| 318 | int dcache_status(void) |
| 319 | { |
| 320 | return (get_cr() & CR_C) != 0; |
| 321 | } |
| 322 | #endif |