aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2017-05-10 14:20:09 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2017-05-10 14:20:09 -0400
commita2d9214c730f54ff72c2940bcd7f22d1fccb26ec (patch)
treea50a1187ebba2c345213f27b4372939a3f39987b
parentde4d195308ad589626571dbe5789cebf9695a204 (diff)
parent414d06ace9cca3725b6c2072e1951e1e03807f63 (diff)
Merge tag 'armsoc-tee' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc
Pull TEE driver infrastructure and OP-TEE drivers from Arnd Bergmann: "This introduces a generic TEE framework in the kernel, to handle trusted environemtns (security coprocessor or software implementations such as OP-TEE/TrustZone). I'm sending it separately from the other arm-soc driver changes to give it a little more visibility, once the subsystem is merged, we will likely keep this in the armâ‚‹soc drivers branch or have the maintainers submit pull requests directly, depending on the patch volume. I have reviewed earlier versions in the past, and have reviewed the latest version in person during Linaro Connect BUD17. Here is my overall assessment of the subsystem: - There is clearly demand for this, both for the generic infrastructure and the specific OP-TEE implementation. - The code has gone through a large number of reviews, and the review comments have all been addressed, but the reviews were not coming up with serious issues any more and nobody volunteered to vouch for the quality. - The user space ioctl interface is sufficient to work with the OP-TEE driver, and it should in principle work with other TEE implementations that follow the GlobalPlatform[1] standards, but it might need to be extended in minor ways depending on specific requirements of future TEE implementations - The main downside of the API to me is how the user space is tied to the TEE implementation in hardware or firmware, but uses a generic way to communicate with it. This seems to be an inherent problem with what it is trying to do, and I could not come up with any better solution than what is implemented here. For a detailed history of the patch series, see https://lkml.org/lkml/2017/3/10/1277" * tag 'armsoc-tee' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc: arm64: dt: hikey: Add optee node Documentation: tee subsystem and op-tee driver tee: add OP-TEE driver tee: generic TEE subsystem dt/bindings: add bindings for optee
-rw-r--r--Documentation/00-INDEX2
-rw-r--r--Documentation/devicetree/bindings/arm/firmware/linaro,optee-tz.txt31
-rw-r--r--Documentation/devicetree/bindings/vendor-prefixes.txt1
-rw-r--r--Documentation/ioctl/ioctl-number.txt1
-rw-r--r--Documentation/tee.txt118
-rw-r--r--MAINTAINERS13
-rw-r--r--arch/arm64/boot/dts/hisilicon/hi6220-hikey.dts7
-rw-r--r--drivers/Kconfig2
-rw-r--r--drivers/Makefile1
-rw-r--r--drivers/tee/Kconfig18
-rw-r--r--drivers/tee/Makefile5
-rw-r--r--drivers/tee/optee/Kconfig7
-rw-r--r--drivers/tee/optee/Makefile5
-rw-r--r--drivers/tee/optee/call.c444
-rw-r--r--drivers/tee/optee/core.c622
-rw-r--r--drivers/tee/optee/optee_msg.h418
-rw-r--r--drivers/tee/optee/optee_private.h183
-rw-r--r--drivers/tee/optee/optee_smc.h450
-rw-r--r--drivers/tee/optee/rpc.c396
-rw-r--r--drivers/tee/optee/supp.c273
-rw-r--r--drivers/tee/tee_core.c893
-rw-r--r--drivers/tee/tee_private.h129
-rw-r--r--drivers/tee/tee_shm.c358
-rw-r--r--drivers/tee/tee_shm_pool.c156
-rw-r--r--include/linux/tee_drv.h277
-rw-r--r--include/uapi/linux/tee.h346
26 files changed, 5156 insertions, 0 deletions
diff --git a/Documentation/00-INDEX b/Documentation/00-INDEX
index 793acf999e9e..ed3e5e949fce 100644
--- a/Documentation/00-INDEX
+++ b/Documentation/00-INDEX
@@ -412,6 +412,8 @@ sysctl/
412 - directory with info on the /proc/sys/* files. 412 - directory with info on the /proc/sys/* files.
413target/ 413target/
414 - directory with info on generating TCM v4 fabric .ko modules 414 - directory with info on generating TCM v4 fabric .ko modules
415tee.txt
416 - info on the TEE subsystem and drivers
415this_cpu_ops.txt 417this_cpu_ops.txt
416 - List rationale behind and the way to use this_cpu operations. 418 - List rationale behind and the way to use this_cpu operations.
417thermal/ 419thermal/
diff --git a/Documentation/devicetree/bindings/arm/firmware/linaro,optee-tz.txt b/Documentation/devicetree/bindings/arm/firmware/linaro,optee-tz.txt
new file mode 100644
index 000000000000..d38834c67dff
--- /dev/null
+++ b/Documentation/devicetree/bindings/arm/firmware/linaro,optee-tz.txt
@@ -0,0 +1,31 @@
1OP-TEE Device Tree Bindings
2
3OP-TEE is a piece of software using hardware features to provide a Trusted
4Execution Environment. The security can be provided with ARM TrustZone, but
5also by virtualization or a separate chip.
6
7We're using "linaro" as the first part of the compatible property for
8the reference implementation maintained by Linaro.
9
10* OP-TEE based on ARM TrustZone required properties:
11
12- compatible : should contain "linaro,optee-tz"
13
14- method : The method of calling the OP-TEE Trusted OS. Permitted
15 values are:
16
17 "smc" : SMC #0, with the register assignments specified
18 in drivers/tee/optee/optee_smc.h
19
20 "hvc" : HVC #0, with the register assignments specified
21 in drivers/tee/optee/optee_smc.h
22
23
24
25Example:
26 firmware {
27 optee {
28 compatible = "linaro,optee-tz";
29 method = "smc";
30 };
31 };
diff --git a/Documentation/devicetree/bindings/vendor-prefixes.txt b/Documentation/devicetree/bindings/vendor-prefixes.txt
index f9fe94535b46..12e27844bb7b 100644
--- a/Documentation/devicetree/bindings/vendor-prefixes.txt
+++ b/Documentation/devicetree/bindings/vendor-prefixes.txt
@@ -173,6 +173,7 @@ lego LEGO Systems A/S
173lenovo Lenovo Group Ltd. 173lenovo Lenovo Group Ltd.
174lg LG Corporation 174lg LG Corporation
175licheepi Lichee Pi 175licheepi Lichee Pi
176linaro Linaro Limited
176linux Linux-specific binding 177linux Linux-specific binding
177lltc Linear Technology Corporation 178lltc Linear Technology Corporation
178lsi LSI Corp. (LSI Logic) 179lsi LSI Corp. (LSI Logic)
diff --git a/Documentation/ioctl/ioctl-number.txt b/Documentation/ioctl/ioctl-number.txt
index eccb675a2852..1e9fcb4d0ec8 100644
--- a/Documentation/ioctl/ioctl-number.txt
+++ b/Documentation/ioctl/ioctl-number.txt
@@ -309,6 +309,7 @@ Code Seq#(hex) Include File Comments
3090xA3 80-8F Port ACL in development: 3090xA3 80-8F Port ACL in development:
310 <mailto:tlewis@mindspring.com> 310 <mailto:tlewis@mindspring.com>
3110xA3 90-9F linux/dtlk.h 3110xA3 90-9F linux/dtlk.h
3120xA4 00-1F uapi/linux/tee.h Generic TEE subsystem
3120xAA 00-3F linux/uapi/linux/userfaultfd.h 3130xAA 00-3F linux/uapi/linux/userfaultfd.h
3130xAB 00-1F linux/nbd.h 3140xAB 00-1F linux/nbd.h
3140xAC 00-1F linux/raw.h 3150xAC 00-1F linux/raw.h
diff --git a/Documentation/tee.txt b/Documentation/tee.txt
new file mode 100644
index 000000000000..718599357596
--- /dev/null
+++ b/Documentation/tee.txt
@@ -0,0 +1,118 @@
1TEE subsystem
2This document describes the TEE subsystem in Linux.
3
4A TEE (Trusted Execution Environment) is a trusted OS running in some
5secure environment, for example, TrustZone on ARM CPUs, or a separate
6secure co-processor etc. A TEE driver handles the details needed to
7communicate with the TEE.
8
9This subsystem deals with:
10
11- Registration of TEE drivers
12
13- Managing shared memory between Linux and the TEE
14
15- Providing a generic API to the TEE
16
17The TEE interface
18=================
19
20include/uapi/linux/tee.h defines the generic interface to a TEE.
21
22User space (the client) connects to the driver by opening /dev/tee[0-9]* or
23/dev/teepriv[0-9]*.
24
25- TEE_IOC_SHM_ALLOC allocates shared memory and returns a file descriptor
26 which user space can mmap. When user space doesn't need the file
27 descriptor any more, it should be closed. When shared memory isn't needed
28 any longer it should be unmapped with munmap() to allow the reuse of
29 memory.
30
31- TEE_IOC_VERSION lets user space know which TEE this driver handles and
32 the its capabilities.
33
34- TEE_IOC_OPEN_SESSION opens a new session to a Trusted Application.
35
36- TEE_IOC_INVOKE invokes a function in a Trusted Application.
37
38- TEE_IOC_CANCEL may cancel an ongoing TEE_IOC_OPEN_SESSION or TEE_IOC_INVOKE.
39
40- TEE_IOC_CLOSE_SESSION closes a session to a Trusted Application.
41
42There are two classes of clients, normal clients and supplicants. The latter is
43a helper process for the TEE to access resources in Linux, for example file
44system access. A normal client opens /dev/tee[0-9]* and a supplicant opens
45/dev/teepriv[0-9].
46
47Much of the communication between clients and the TEE is opaque to the
48driver. The main job for the driver is to receive requests from the
49clients, forward them to the TEE and send back the results. In the case of
50supplicants the communication goes in the other direction, the TEE sends
51requests to the supplicant which then sends back the result.
52
53OP-TEE driver
54=============
55
56The OP-TEE driver handles OP-TEE [1] based TEEs. Currently it is only the ARM
57TrustZone based OP-TEE solution that is supported.
58
59Lowest level of communication with OP-TEE builds on ARM SMC Calling
60Convention (SMCCC) [2], which is the foundation for OP-TEE's SMC interface
61[3] used internally by the driver. Stacked on top of that is OP-TEE Message
62Protocol [4].
63
64OP-TEE SMC interface provides the basic functions required by SMCCC and some
65additional functions specific for OP-TEE. The most interesting functions are:
66
67- OPTEE_SMC_FUNCID_CALLS_UID (part of SMCCC) returns the version information
68 which is then returned by TEE_IOC_VERSION
69
70- OPTEE_SMC_CALL_GET_OS_UUID returns the particular OP-TEE implementation, used
71 to tell, for instance, a TrustZone OP-TEE apart from an OP-TEE running on a
72 separate secure co-processor.
73
74- OPTEE_SMC_CALL_WITH_ARG drives the OP-TEE message protocol
75
76- OPTEE_SMC_GET_SHM_CONFIG lets the driver and OP-TEE agree on which memory
77 range to used for shared memory between Linux and OP-TEE.
78
79The GlobalPlatform TEE Client API [5] is implemented on top of the generic
80TEE API.
81
82Picture of the relationship between the different components in the
83OP-TEE architecture.