blob: 3bd87105c58bb760048f127c5e292ae9fec0362e [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 Denk1a459662013-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
wdenk8ed96042005-01-09 23:16:25 +000010#include <common.h>
Thierry Reding1dfdd9b2014-12-09 22:25:22 -070011#include <malloc.h>
wdenk8ed96042005-01-09 23:16:25 +000012
Wu, Josh633b6cc2015-07-27 11:40:17 +080013/*
14 * Flush range from all levels of d-cache/unified-cache.
15 * Affects the range [start, start + size - 1].
16 */
Jeroen Hofsteefcfddfd2014-06-23 22:07:04 +020017__weak void flush_cache(unsigned long start, unsigned long size)
wdenkedc48b62002-09-08 17:56:50 +000018{
Wu, Josh633b6cc2015-07-27 11:40:17 +080019 flush_dcache_range(start, start + size);
wdenkedc48b62002-09-08 17:56:50 +000020}
Aneesh Ve05f0072011-06-16 23:30:50 +000021
22/*
23 * Default implementation:
24 * do a range flush for the entire range
25 */
Jeroen Hofsteefcfddfd2014-06-23 22:07:04 +020026__weak void flush_dcache_all(void)
Aneesh Ve05f0072011-06-16 23:30:50 +000027{
28 flush_cache(0, ~0);
29}
Aneesh Vcba4b182011-08-16 04:33:05 +000030
31/*
32 * Default implementation of enable_caches()
33 * Real implementation should be in platform code
34 */
Jeroen Hofsteefcfddfd2014-06-23 22:07:04 +020035__weak void enable_caches(void)
Aneesh Vcba4b182011-08-16 04:33:05 +000036{
37 puts("WARNING: Caches not enabled\n");
38}
Thierry Reding1dfdd9b2014-12-09 22:25:22 -070039
Wu, Josh387871a2015-07-27 11:40:16 +080040__weak void invalidate_dcache_range(unsigned long start, unsigned long stop)
41{
42 /* An empty stub, real implementation should be in platform code */
43}
44__weak void flush_dcache_range(unsigned long start, unsigned long stop)
45{
46 /* An empty stub, real implementation should be in platform code */
47}
48
Thierry Reding1dfdd9b2014-12-09 22:25:22 -070049#ifdef CONFIG_SYS_NONCACHED_MEMORY
50/*
51 * Reserve one MMU section worth of address space below the malloc() area that
52 * will be mapped uncached.
53 */
54static unsigned long noncached_start;
55static unsigned long noncached_end;
56static unsigned long noncached_next;
57
58void noncached_init(void)
59{
60 phys_addr_t start, end;
61 size_t size;
62
63 end = ALIGN(mem_malloc_start, MMU_SECTION_SIZE) - MMU_SECTION_SIZE;
64 size = ALIGN(CONFIG_SYS_NONCACHED_MEMORY, MMU_SECTION_SIZE);
65 start = end - size;
66
67 debug("mapping memory %pa-%pa non-cached\n", &start, &end);
68
69 noncached_start = start;
70 noncached_end = end;
71 noncached_next = start;
72
73#ifndef CONFIG_SYS_DCACHE_OFF
74 mmu_set_region_dcache_behaviour(noncached_start, size, DCACHE_OFF);
75#endif
76}
77
78phys_addr_t noncached_alloc(size_t size, size_t align)
79{
80 phys_addr_t next = ALIGN(noncached_next, align);
81
82 if (next >= noncached_end || (noncached_end - next) < size)
83 return 0;
84
85 debug("allocated %zu bytes of uncached memory @%pa\n", size, &next);
86 noncached_next = next + size;
87
88 return next;
89}
90#endif /* CONFIG_SYS_NONCACHED_MEMORY */
Albert ARIBAUD62e92072015-10-23 18:06:40 +020091
92#if defined(CONFIG_SYS_THUMB_BUILD)
93void invalidate_l2_cache(void)
94{
95 unsigned int val = 0;
96
97 asm volatile("mcr p15, 1, %0, c15, c11, 0 @ invl l2 cache"
98 : : "r" (val) : "cc");
99 isb();
100}
101#endif