The barebox images can simply be written to the partitions, so we can
use bbu_register_std_file_update() for updating to MMC and QSPI.

Signed-off-by: Sascha Hauer <[email protected]>
---
 arch/arm/mach-layerscape/include/mach/bbu.h | 22 +++++++++++++++++++++
 1 file changed, 22 insertions(+)
 create mode 100644 arch/arm/mach-layerscape/include/mach/bbu.h

diff --git a/arch/arm/mach-layerscape/include/mach/bbu.h 
b/arch/arm/mach-layerscape/include/mach/bbu.h
new file mode 100644
index 0000000000..1ea0cbb11f
--- /dev/null
+++ b/arch/arm/mach-layerscape/include/mach/bbu.h
@@ -0,0 +1,22 @@
+#ifndef __MACH_LAYERSCAPE_BBU_H
+#define __MACH_LAYERSCAPE_BBU_H
+
+#include <bbu.h>
+
+static inline int ls1046a_bbu_mmc_register_handler(const char *name,
+                                                  const char *devicefile,
+                                                  unsigned long flags)
+{
+       return bbu_register_std_file_update(name, flags, devicefile,
+                                           filetype_layerscape_image);
+}
+
+static inline int ls1046a_bbu_qspi_register_handler(const char *name,
+                                                   const char *devicefile,
+                                                   unsigned long flags)
+{
+       return bbu_register_std_file_update(name, flags, devicefile,
+                                           filetype_layerscape_qspi_image);
+}
+
+#endif /* __MACH_LAYERSCAPE_BBU_H */
\ No newline at end of file
-- 
2.20.1


_______________________________________________
barebox mailing list
[email protected]
http://lists.infradead.org/mailman/listinfo/barebox

Reply via email to