[T106][ZXW-22]7520V3SCV2.01.01.02P42U09_VEC_V0.8_AP_VEC origin source commit

Change-Id: Ic6e05d89ecd62fc34f82b23dcf306c93764aec4b
diff --git a/boot/common/src/uboot/drivers/misc/debug.c b/boot/common/src/uboot/drivers/misc/debug.c
new file mode 100644
index 0000000..611a603
--- /dev/null
+++ b/boot/common/src/uboot/drivers/misc/debug.c
@@ -0,0 +1,16 @@
+/*  
+ * (C) Copyright 2016, ZIXC Corporation.
+ *
+ */
+
+#include <common.h>
+#include <asm/io.h>    
+#include <asm/arch/hardware.h>
+
+#if DEBUG
+void show_boot_progress(int val)
+{
+    printf("show_boot_progress(%d)\n", val);
+}
+
+#endif