]> git.ipfire.org Git - people/ms/u-boot.git/commitdiff
arm64: Add 32bit arm compatible dcache definitions
authorAlexander Graf <agraf@suse.de>
Wed, 16 Mar 2016 14:41:20 +0000 (15:41 +0100)
committerTom Rini <trini@konsulko.com>
Sun, 27 Mar 2016 13:12:16 +0000 (09:12 -0400)
We want to be able to reuse device drivers from 32bit code, so let's add
definitions for all the dcache options that 32bit code has.

While at it, fix up the DCACHE_OFF configuration. That was setting the bits
to declare a PTE a PTE and left the MAIR index bit at 0. Drop the useless
bits and make the index explicit.

Signed-off-by: Alexander Graf <agraf@suse.de>
arch/arm/include/asm/system.h

index ac1173d18909ce8cee3da5d03c760300aa1c675b..832c1dbd1c8557676af4eedf649bbeda340ed283 100644 (file)
@@ -26,8 +26,12 @@ u64 get_page_table_size(void);
 #define MMU_SECTION_SHIFT      21
 #define MMU_SECTION_SIZE       (1 << MMU_SECTION_SHIFT)
 
+/* These constants need to be synced to the MT_ types in asm/armv8/mmu.h */
 enum dcache_option {
-       DCACHE_OFF = 0x3,
+       DCACHE_OFF = 0 << 2,
+       DCACHE_WRITETHROUGH = 3 << 2,
+       DCACHE_WRITEBACK = 4 << 2,
+       DCACHE_WRITEALLOC = 4 << 2,
 };
 
 #define isb()                          \