diff options
Diffstat (limited to 'include/cpu_func.h')
-rw-r--r-- | include/cpu_func.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/include/cpu_func.h b/include/cpu_func.h index 45e8a0a0577..dba7d102e89 100644 --- a/include/cpu_func.h +++ b/include/cpu_func.h @@ -69,6 +69,19 @@ void flush_dcache_range(unsigned long start, unsigned long stop); void invalidate_dcache_range(unsigned long start, unsigned long stop); void invalidate_dcache_all(void); void invalidate_icache_all(void); +/** + * noncached_init() - Initialize non-cached memory region + * + * Initialize non-cached memory area. This memory region will be typically + * located right below the malloc() area and mapped uncached in the MMU. + * + * It is called during the generic post-relocation init sequence. + * + * Return: 0 if OK + */ +int noncached_init(void); + +phys_addr_t noncached_alloc(size_t size, size_t align); enum { /* Disable caches (else flush caches but leave them active) */ |