mbox series

[GIT,PULL] tee subsys for v5.1

Message ID 20190204085629.GA14098@jax.urgonet
State New
Headers show
Series [GIT,PULL] tee subsys for v5.1 | expand

Pull-request

https://git.linaro.org/people/jens.wiklander/linux-tee.git tags/tee-bus-for-5.1

Message

Jens Wiklander Feb. 4, 2019, 8:56 a.m. UTC
Hello arm-soc maintainers,

Please pull this TEE subsystem enhancement. A tee bus driver framework
is introduced in order to support an OP-TEE based RNG driver.

The last commit makes changes under drivers/char/hw_random which
also are acked by that maintainer.

This time I've relied on others to review the bus driver framework.
Please take an extra look at it if you can spare the time.

By the way, I've just renewed my PGP subkey so you may need to refresh
it in order to verify the signature.

Thanks,
Jens

The following changes since commit 49a57857aeea06ca831043acbb0fa5e0f50602fd:

  Linux 5.0-rc3 (2019-01-21 13:14:44 +1300)

are available in the Git repository at:

  https://git.linaro.org/people/jens.wiklander/linux-tee.git tags/tee-bus-for-5.1

for you to fetch changes up to 5fe8b1cc6a03c46b3061e808256d39dcebd0d0f0:

  hwrng: add OP-TEE based rng driver (2019-02-01 15:12:46 +0100)

----------------------------------------------------------------
Introduce TEE bus driver framework

- supp_nowait flag for non-blocking tee requests
- The tee bus driver framework
- OP-TEE TEE bus device enumeration support
- An OP-TEE based rng driver

----------------------------------------------------------------
Sumit Garg (4):
      tee: add supp_nowait flag in tee_context struct
      tee: add bus driver framework for TEE based devices
      tee: optee: add TEE bus device enumeration support
      hwrng: add OP-TEE based rng driver

 MAINTAINERS                        |   5 +
 drivers/char/hw_random/Kconfig     |  15 ++
 drivers/char/hw_random/Makefile    |   1 +
 drivers/char/hw_random/optee-rng.c | 298 +++++++++++++++++++++++++++++++++++++
 drivers/tee/optee/Makefile         |   1 +
 drivers/tee/optee/core.c           |   4 +
 drivers/tee/optee/device.c         | 155 +++++++++++++++++++
 drivers/tee/optee/optee_private.h  |   3 +
 drivers/tee/optee/supp.c           |  10 +-
 drivers/tee/tee_core.c             |  67 ++++++++-
 include/linux/mod_devicetable.h    |   9 ++
 include/linux/tee_drv.h            |  38 ++++-
 scripts/mod/devicetable-offsets.c  |   3 +
 scripts/mod/file2alias.c           |  19 +++
 14 files changed, 622 insertions(+), 6 deletions(-)
 create mode 100644 drivers/char/hw_random/optee-rng.c
 create mode 100644 drivers/tee/optee/device.c

Comments

Arnd Bergmann Feb. 15, 2019, 4:58 p.m. UTC | #1
On Mon, Feb 4, 2019 at 9:56 AM Jens Wiklander <jens.wiklander@linaro.org> wrote:
>
> Hello arm-soc maintainers,
>
> Please pull this TEE subsystem enhancement. A tee bus driver framework
> is introduced in order to support an OP-TEE based RNG driver.
>
> The last commit makes changes under drivers/char/hw_random which
> also are acked by that maintainer.
>

Pulled into arm/drivers, thanks!

    Arnd