blob: bc48f53f4c55cf810c53e7c81551a98731a98011 [file] [log] [blame]
wdenkedc48b62002-09-08 17:56:50 +00001/*
2 * (C) Copyright 2002
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
wdenkedc48b62002-09-08 17:56:50 +00006 */
7
8/* for now: just dummy functions to satisfy the linker */
9
wdenkf8062712005-01-09 23:16:25 +000010#include <common.h>
Thierry Redingc97d9742014-12-09 22:25:22 -070011#include <malloc.h>
wdenkf8062712005-01-09 23:16:25 +000012
Jeroen Hofsteed7460772014-06-23 22:07:04 +020013__weak void flush_cache(unsigned long start, unsigned long size)
wdenkedc48b62002-09-08 17:56:50 +000014{
Masahiro Yamadaa8b4c8c2014-11-06 14:59:37 +090015#if defined(CONFIG_CPU_ARM1136)
wdenkf8062712005-01-09 23:16:25 +000016
Albert ARIBAUD7a6fd042014-04-15 16:13:47 +020017#if !defined(CONFIG_SYS_ICACHE_OFF)
18 asm("mcr p15, 0, r1, c7, c5, 0"); /* invalidate I cache */
wdenkf8062712005-01-09 23:16:25 +000019#endif
Albert ARIBAUD7a6fd042014-04-15 16:13:47 +020020
21#if !defined(CONFIG_SYS_DCACHE_OFF)
22 asm("mcr p15, 0, r1, c7, c14, 0"); /* Clean+invalidate D cache */
23#endif
24
Masahiro Yamadaa8b4c8c2014-11-06 14:59:37 +090025#endif /* CONFIG_CPU_ARM1136 */
Albert ARIBAUD7a6fd042014-04-15 16:13:47 +020026
Masahiro Yamada4fb5d072014-11-06 14:59:36 +090027#ifdef CONFIG_CPU_ARM926EJS
Heiko Schocherb642d832014-11-18 09:41:56 +010028#if !(defined(CONFIG_SYS_ICACHE_OFF) && defined(CONFIG_SYS_DCACHE_OFF))
Heiko Schocher54433092010-09-17 13:10:30 +020029 /* 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 Schocherb642d832014-11-18 09:41:56 +010033#endif
Masahiro Yamada4fb5d072014-11-06 14:59:36 +090034#endif /* CONFIG_CPU_ARM926EJS */
wdenkedc48b62002-09-08 17:56:50 +000035 return;
36}
Aneesh V3bda3772011-06-16 23:30:50 +000037
38/*
39 * Default implementation:
40 * do a range flush for the entire range
41 */
Jeroen Hofsteed7460772014-06-23 22:07:04 +020042__weak void flush_dcache_all(void)
Aneesh V3bda3772011-06-16 23:30:50 +000043{
44 flush_cache(0, ~0);
45}
Aneesh Vfffbb972011-08-16 04:33:05 +000046
47/*
48 * Default implementation of enable_caches()
49 * Real implementation should be in platform code
50 */
Jeroen Hofsteed7460772014-06-23 22:07:04 +020051__weak void enable_caches(void)
Aneesh Vfffbb972011-08-16 04:33:05 +000052{
53 puts("WARNING: Caches not enabled\n");
54}
Thierry Redingc97d9742014-12-09 22:25:22 -070055
Wu, Joshaaa35452015-07-27 11:40:16 +080056__weak void invalidate_dcache_range(unsigned long start, unsigned long stop)
57{
58 /* An empty stub, real implementation should be in platform code */
59}
60__weak void flush_dcache_range(unsigned long start, unsigned long stop)
61{
62 /* An empty stub, real implementation should be in platform code */
63}
64
Thierry Redingc97d9742014-12-09 22:25:22 -070065#ifdef CONFIG_SYS_NONCACHED_MEMORY
66/*
67 * Reserve one MMU section worth of address space below the malloc() area that
68 * will be mapped uncached.
69 */
70static unsigned long noncached_start;
71static unsigned long noncached_end;
72static unsigned long noncached_next;
73
74void noncached_init(void)
75{
76 phys_addr_t start, end;
77 size_t size;
78
79 end = ALIGN(mem_malloc_start, MMU_SECTION_SIZE) - MMU_SECTION_SIZE;
80 size = ALIGN(CONFIG_SYS_NONCACHED_MEMORY, MMU_SECTION_SIZE);
81 start = end - size;
82
83 debug("mapping memory %pa-%pa non-cached\n", &start, &end);
84
85 noncached_start = start;
86 noncached_end = end;
87 noncached_next = start;
88
89#ifndef CONFIG_SYS_DCACHE_OFF
90 mmu_set_region_dcache_behaviour(noncached_start, size, DCACHE_OFF);
91#endif
92}
93
94phys_addr_t noncached_alloc(size_t size, size_t align)
95{
96 phys_addr_t next = ALIGN(noncached_next, align);
97
98 if (next >= noncached_end || (noncached_end - next) < size)
99 return 0;
100
101 debug("allocated %zu bytes of uncached memory @%pa\n", size, &next);
102 noncached_next = next + size;
103
104 return next;
105}
106#endif /* CONFIG_SYS_NONCACHED_MEMORY */