├── Android.mk ├── Makefile ├── README.md ├── doc ├── Makefile ├── close_session_and_finalize_context.msc ├── invoke_command.msc └── open_session.msc ├── host ├── Makefile ├── main.c └── my_test_ca.h ├── optee_my_test_common_2.6.0.patch ├── optee_my_test_qemu_2.6.0.patch └── ta ├── Android.mk ├── Makefile ├── include ├── my_test_handle.h └── my_test_ta.h ├── my_test.c ├── my_test_handle.c ├── sub.mk └── user_ta_header_defines.h /Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuaifengyun/optee_my_test/HEAD/Android.mk -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuaifengyun/optee_my_test/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 本git中包含了OPEN-TEE中的一个简单的TA和CA的demo代码 2 | 3 | -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuaifengyun/optee_my_test/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/close_session_and_finalize_context.msc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuaifengyun/optee_my_test/HEAD/doc/close_session_and_finalize_context.msc -------------------------------------------------------------------------------- /doc/invoke_command.msc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuaifengyun/optee_my_test/HEAD/doc/invoke_command.msc -------------------------------------------------------------------------------- /doc/open_session.msc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuaifengyun/optee_my_test/HEAD/doc/open_session.msc -------------------------------------------------------------------------------- /host/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuaifengyun/optee_my_test/HEAD/host/Makefile -------------------------------------------------------------------------------- /host/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuaifengyun/optee_my_test/HEAD/host/main.c -------------------------------------------------------------------------------- /host/my_test_ca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuaifengyun/optee_my_test/HEAD/host/my_test_ca.h -------------------------------------------------------------------------------- /optee_my_test_common_2.6.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuaifengyun/optee_my_test/HEAD/optee_my_test_common_2.6.0.patch -------------------------------------------------------------------------------- /optee_my_test_qemu_2.6.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuaifengyun/optee_my_test/HEAD/optee_my_test_qemu_2.6.0.patch -------------------------------------------------------------------------------- /ta/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuaifengyun/optee_my_test/HEAD/ta/Android.mk -------------------------------------------------------------------------------- /ta/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuaifengyun/optee_my_test/HEAD/ta/Makefile -------------------------------------------------------------------------------- /ta/include/my_test_handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuaifengyun/optee_my_test/HEAD/ta/include/my_test_handle.h -------------------------------------------------------------------------------- /ta/include/my_test_ta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuaifengyun/optee_my_test/HEAD/ta/include/my_test_ta.h -------------------------------------------------------------------------------- /ta/my_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuaifengyun/optee_my_test/HEAD/ta/my_test.c -------------------------------------------------------------------------------- /ta/my_test_handle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuaifengyun/optee_my_test/HEAD/ta/my_test_handle.c -------------------------------------------------------------------------------- /ta/sub.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuaifengyun/optee_my_test/HEAD/ta/sub.mk -------------------------------------------------------------------------------- /ta/user_ta_header_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shuaifengyun/optee_my_test/HEAD/ta/user_ta_header_defines.h --------------------------------------------------------------------------------