]> git.karo-electronics.de Git - karo-tx-uboot.git/blobdiff - include/common.h
arm: Allow cleanup_before_linux() without disabling caches
[karo-tx-uboot.git] / include / common.h
index ea5aeb0014aca7c58402424eab61cb09e11b103d..8f4b2ec21277d82977f59f4e50749eaa578cdfa7 100644 (file)
@@ -714,6 +714,21 @@ void       invalidate_dcache_range(unsigned long start, unsigned long stop);
 void   invalidate_dcache_all(void);
 void   invalidate_icache_all(void);
 
+enum {
+       /* Disable caches (else flush caches but leave them active) */
+       CBL_DISABLE_CACHES              = 1 << 0,
+       CBL_SHOW_BOOTSTAGE_REPORT       = 1 << 1,
+
+       CBL_ALL                         = 3,
+};
+
+/**
+ * Clean up ready for linux
+ *
+ * @param flags                Flags to control what is done
+ */
+int cleanup_before_linux_select(int flags);
+
 /* arch/$(ARCH)/lib/ticks.S */
 uint64_t get_ticks(void);
 void   wait_ticks    (unsigned long);