├── .gitignore ├── Android.mk ├── Makefile ├── README.md ├── doc ├── Makefile ├── close_session_and_finalize_context.msc ├── invoke_command.msc └── open_session.msc ├── host ├── Makefile └── hello_world.c └── ta ├── Makefile ├── hello_world_ta.c ├── include └── ta_hello_world.h ├── sub.mk └── user_ta_header_defines.h /.gitignore: -------------------------------------------------------------------------------- 1 | *.png 2 | -------------------------------------------------------------------------------- /Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenswi-linaro/lcu14_optee_hello_world/HEAD/Android.mk -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenswi-linaro/lcu14_optee_hello_world/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenswi-linaro/lcu14_optee_hello_world/HEAD/README.md -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenswi-linaro/lcu14_optee_hello_world/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/close_session_and_finalize_context.msc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenswi-linaro/lcu14_optee_hello_world/HEAD/doc/close_session_and_finalize_context.msc -------------------------------------------------------------------------------- /doc/invoke_command.msc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenswi-linaro/lcu14_optee_hello_world/HEAD/doc/invoke_command.msc -------------------------------------------------------------------------------- /doc/open_session.msc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenswi-linaro/lcu14_optee_hello_world/HEAD/doc/open_session.msc -------------------------------------------------------------------------------- /host/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenswi-linaro/lcu14_optee_hello_world/HEAD/host/Makefile -------------------------------------------------------------------------------- /host/hello_world.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenswi-linaro/lcu14_optee_hello_world/HEAD/host/hello_world.c -------------------------------------------------------------------------------- /ta/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenswi-linaro/lcu14_optee_hello_world/HEAD/ta/Makefile -------------------------------------------------------------------------------- /ta/hello_world_ta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenswi-linaro/lcu14_optee_hello_world/HEAD/ta/hello_world_ta.c -------------------------------------------------------------------------------- /ta/include/ta_hello_world.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenswi-linaro/lcu14_optee_hello_world/HEAD/ta/include/ta_hello_world.h -------------------------------------------------------------------------------- /ta/sub.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenswi-linaro/lcu14_optee_hello_world/HEAD/ta/sub.mk -------------------------------------------------------------------------------- /ta/user_ta_header_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenswi-linaro/lcu14_optee_hello_world/HEAD/ta/user_ta_header_defines.h --------------------------------------------------------------------------------