zte's code,first commit

Change-Id: I9a04da59e459a9bc0d67f101f700d9d7dc8d681b
diff --git a/boot/common/src/uboot/include/ssp.h b/boot/common/src/uboot/include/ssp.h
new file mode 100644
index 0000000..a8414d9
--- /dev/null
+++ b/boot/common/src/uboot/include/ssp.h
@@ -0,0 +1,22 @@
+

+

+//

+

+

+typedef enum _E_SspDevNum

+{

+	SSP_DEV_0 = 0,

+	SSP_DEV_1 = 1,

+	SSP_DEV_NUM

+}E_SspDevNum;

+

+

+

+void* ssp_open(u8 num);

+

+void ssp_close(void* handler);

+

+int ssp_transfer(void* handler, u8* buf, u32 length);

+

+

+