linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL] tee subsys for v5.1
@ 2019-02-04  8:56 Jens Wiklander
  2019-02-15 16:58 ` Arnd Bergmann
  0 siblings, 1 reply; 4+ messages in thread
From: Jens Wiklander @ 2019-02-04  8:56 UTC (permalink / raw)
  To: arm-soc; +Cc: Linux Kernel Mailing List, Linux ARM

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

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [GIT PULL] tee subsys for v5.1
  2019-02-04  8:56 [GIT PULL] tee subsys for v5.1 Jens Wiklander
@ 2019-02-15 16:58 ` Arnd Bergmann
  0 siblings, 0 replies; 4+ messages in thread
From: Arnd Bergmann @ 2019-02-15 16:58 UTC (permalink / raw)
  To: Jens Wiklander; +Cc: arm-soc, Linux Kernel Mailing List, Linux ARM

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

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [GIT PULL] tee subsys for v5.1
  2019-02-28 13:12 Jens Wiklander
@ 2019-03-01 14:01 ` Arnd Bergmann
  0 siblings, 0 replies; 4+ messages in thread
From: Arnd Bergmann @ 2019-03-01 14:01 UTC (permalink / raw)
  To: Jens Wiklander; +Cc: arm-soc, Linux Kernel Mailing List, Linux ARM

On Thu, Feb 28, 2019 at 2:12 PM Jens Wiklander
<jens.wiklander@linaro.org> wrote:
>
> Hello arm-soc maintainers,
>
> Please pull these small TEE subsystem updates. The license for two .h
> files in OP-TEE driver is clarified with a dual license. The kernel
> space tee client interface is complemented with cancellation support.
>
> I've based this pull request on the last pull request I did (now in
> the drivers/tee branch) in order to avoid a conflict with "tee: add
> cancellation support to client interface".

Pulled into arm/drivers, thanks!

     Arnd

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [GIT PULL] tee subsys for v5.1
@ 2019-02-28 13:12 Jens Wiklander
  2019-03-01 14:01 ` Arnd Bergmann
  0 siblings, 1 reply; 4+ messages in thread
From: Jens Wiklander @ 2019-02-28 13:12 UTC (permalink / raw)
  To: arm-soc; +Cc: Linux Kernel Mailing List, Linux ARM

Hello arm-soc maintainers,

Please pull these small TEE subsystem updates. The license for two .h
files in OP-TEE driver is clarified with a dual license. The kernel
space tee client interface is complemented with cancellation support.

I've based this pull request on the last pull request I did (now in
the drivers/tee branch) in order to avoid a conflict with "tee: add
cancellation support to client interface".

Thanks,
Jens

The following changes since commit 5fe8b1cc6a03c46b3061e808256d39dcebd0d0f0:

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

are available in the Git repository at:

  https://git.linaro.org/people/jens.wiklander/linux-tee.git
tags/tee-misc-for-v5.1

for you to fetch changes up to 32356d309c22a9497e612ed437d66407e15935f3:

  tee: optee: update optee_msg.h and optee_smc.h to dual license
(2019-02-28 13:49:29 +0100)

----------------------------------------------------------------
OP-TEE driver
- dual license for optee_msg.h and optee_smc.h
Generic
- add cancellation support to client interface

----------------------------------------------------------------
Igor Opaniuk (1):
      tee: add cancellation support to client interface

Jerome Forissier (1):
      tee: optee: update optee_msg.h and optee_smc.h to dual license

 drivers/tee/optee/optee_msg.h | 26 ++------------------------
 drivers/tee/optee/optee_smc.h | 26 ++------------------------
 drivers/tee/tee_core.c        |  9 +++++++++
 include/linux/tee_drv.h       | 12 ++++++++++++
 4 files changed, 25 insertions(+), 48 deletions(-)

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2019-03-01 14:02 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-02-04  8:56 [GIT PULL] tee subsys for v5.1 Jens Wiklander
2019-02-15 16:58 ` Arnd Bergmann
2019-02-28 13:12 Jens Wiklander
2019-03-01 14:01 ` Arnd Bergmann

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).