[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/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);
+
+
+