• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

arch/arm/25-Apr-2025-389230

examples/u-boot/25-Apr-2025-266158

include/trusty/25-Apr-2025-2,163568

LICENSED25-Apr-20251 KiB2117

README.mdD25-Apr-20251.1 KiB3120

avb.cD25-Apr-20257 KiB231155

hwbcc.cD25-Apr-20255.4 KiB189137

ipc.cD25-Apr-20258.4 KiB295214

ipc_dev.cD25-Apr-202514.9 KiB517364

keymaster.cD25-Apr-202515.6 KiB470355

keymaster_serializable.cD25-Apr-20254.1 KiB11375

libtipc.cD25-Apr-20253.2 KiB10055

rpmb_proxy.cD25-Apr-20259.6 KiB325189

secretkeeper.cD25-Apr-20254.1 KiB13295

trusty_dev_common.cD25-Apr-202512.7 KiB391274

util.cD25-Apr-20251.4 KiB4114

README.md

1# Queueless Trusty IPC
2
3ql-tipc is a portable client library that implements Trusty queueless IPC.
4It is intended to enable Trusty IPC in bootloader environments.
5
6## Code organization
7
8### IPC components
9
10- libtipc - Functions to be called by library user
11- ipc - IPC library
12- ipc_dev - Helper functions for sending requests to the secure OS
13- rpmb_proxy - Handles RPMB requests from secure storage service
14- avb - Sends requests to the Android Verified Boot service
15
16### Misc
17
18- examples/ - Implementations of bootloader-specific code.
19- arch/$ARCH/ - Architecture dependent implementation of Trusty device
20   (see trusty_dev.h). Implements SMCs on ARM for example.
21
22## Portability Notes
23
24The suggested approach to porting ql-tipc is to copy all header and C files
25into the bootloader and integrate as needed. RPMB storage operations and
26functions defined in trusty/sysdeps.h require system dependent implementations.
27
28If the TIPC_ENABLE_DEBUG preprocessor symbol is set, the code will include
29debug information and run-time checks. Production builds should not use this.
30
31