]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
CONFIG_SYS_NONCACHED_MEMORY: Move prototypes to include/cpu_func.h for consistency
authorTom Rini <trini@konsulko.com>
Tue, 22 Oct 2024 16:31:17 +0000 (10:31 -0600)
committerTom Rini <trini@konsulko.com>
Tue, 29 Oct 2024 22:17:18 +0000 (16:17 -0600)
Currently, a number of generic cache related functions have their common
prototype declared in include/cpu_func.h. Move the current set of
noncached functions there as well to match.

Signed-off-by: Tom Rini <trini@konsulko.com>
arch/arm/include/asm/system.h
arch/mips/include/asm/system.h
include/cpu_func.h

index 9eb30c2ade88dcb869bc120a43aae8be88695bbb..52f6c9b934d7ac0d7e8af417c77ca0e5cb779195 100644 (file)
@@ -665,22 +665,6 @@ void mmu_set_region_dcache_behaviour_phys(phys_addr_t virt, phys_addr_t phys,
 void mmu_set_region_dcache_behaviour(phys_addr_t start, size_t size,
                                     enum dcache_option option);
 
-#ifdef CONFIG_SYS_NONCACHED_MEMORY
-/**
- * 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);
-#endif /* CONFIG_SYS_NONCACHED_MEMORY */
-
 #endif /* __ASSEMBLY__ */
 
 #endif
index 89a2ac209fce252eb837347a49963d2991b75079..00699c4c11a578106ddfae66248e58154183cb19 100644 (file)
@@ -286,20 +286,6 @@ static inline void instruction_hazard_barrier(void)
 /* 1MB granularity */
 #define MMU_SECTION_SHIFT      20
 #define MMU_SECTION_SIZE       (1 << MMU_SECTION_SHIFT)
-
-/**
- * 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 be accessed from KSEG1.
- *
- * 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);
 #endif /* CONFIG_SYS_NONCACHED_MEMORY */
 
 #endif /* _ASM_SYSTEM_H */
index 45e8a0a05778b27e6ac453d92222f4acc1da88e9..dba7d102e897026d78f2b91fb8f31e0f4b0a7f86 100644 (file)
@@ -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) */