* [GIT PULL] tee driver for v4.18
@ 2018-07-02 12:10 Jens Wiklander
2018-07-02 17:18 ` Olof Johansson
0 siblings, 1 reply; 3+ messages in thread
From: Jens Wiklander @ 2018-07-02 12:10 UTC (permalink / raw)
To: linux-arm-kernel
Hello arm-soc maintainers,
Please pull these small tee driver enhancements. There's a new config
option for the OP-TEE driver, OPTEE_SHM_NUM_PRIV_PAGES. Also the OP-TEE
driver reads current time with ktime_get_real_ts64() from now on.
Thanks,
Jens
The following changes since commit 29dcea88779c856c7dc92040a0c01233263101d4:
Linux 4.17 (2018-06-03 14:15:21 -0700)
are available in the Git repository at:
git://git.linaro.org/people/jens.wiklander/linux-tee.git tags/tee-drv-for-4.18
for you to fetch changes up to 3249527f19d660c5adfb2b6f4ffd4ca0506b8755:
tee: optee: making OPTEE_SHM_NUM_PRIV_PAGES configurable via Kconfig (2018-06-20 11:20:36 +0200)
----------------------------------------------------------------
Misc enhancement for tee driver subsystem
* Replaces getnstimeofday64() with ktime_get_real_ts64()
* Adds OPTEE_SHM_NUM_PRIV_PAGES to configure how many pages should be
statically reserved for driver private allocations
----------------------------------------------------------------
Arnd Bergmann (1):
tee: replace getnstimeofday64() with ktime_get_real_ts64()
Sahil Malhotra (1):
tee: optee: making OPTEE_SHM_NUM_PRIV_PAGES configurable via Kconfig
drivers/tee/optee/Kconfig | 8 ++++++++
drivers/tee/optee/core.c | 2 +-
drivers/tee/optee/rpc.c | 2 +-
3 files changed, 10 insertions(+), 2 deletions(-)
^ permalink raw reply [flat|nested] 3+ messages in thread
* [GIT PULL] tee driver for v4.18
2018-07-02 12:10 [GIT PULL] tee driver for v4.18 Jens Wiklander
@ 2018-07-02 17:18 ` Olof Johansson
2018-07-03 5:41 ` Jens Wiklander
0 siblings, 1 reply; 3+ messages in thread
From: Olof Johansson @ 2018-07-02 17:18 UTC (permalink / raw)
To: linux-arm-kernel
Hi Jens,
On Mon, Jul 2, 2018 at 5:10 AM, Jens Wiklander
<jens.wiklander@linaro.org> wrote:
> Hello arm-soc maintainers,
>
> Please pull these small tee driver enhancements. There's a new config
> option for the OP-TEE driver, OPTEE_SHM_NUM_PRIV_PAGES. Also the OP-TEE
> driver reads current time with ktime_get_real_ts64() from now on.
>
> Thanks,
> Jens
>
> The following changes since commit 29dcea88779c856c7dc92040a0c01233263101d4:
>
> Linux 4.17 (2018-06-03 14:15:21 -0700)
>
> are available in the Git repository at:
>
> git://git.linaro.org/people/jens.wiklander/linux-tee.git tags/tee-drv-for-4.18
>
> for you to fetch changes up to 3249527f19d660c5adfb2b6f4ffd4ca0506b8755:
>
> tee: optee: making OPTEE_SHM_NUM_PRIV_PAGES configurable via Kconfig (2018-06-20 11:20:36 +0200)
>
> ----------------------------------------------------------------
> Misc enhancement for tee driver subsystem
>
> * Replaces getnstimeofday64() with ktime_get_real_ts64()
> * Adds OPTEE_SHM_NUM_PRIV_PAGES to configure how many pages should be
> statically reserved for driver private allocations
>
> ----------------------------------------------------------------
> Arnd Bergmann (1):
> tee: replace getnstimeofday64() with ktime_get_real_ts64()
>
> Sahil Malhotra (1):
> tee: optee: making OPTEE_SHM_NUM_PRIV_PAGES configurable via Kconfig
This doesn't seem to be bugfixes (and not regression fixes in
particular), so I took the liberty of queuing these for 4.19 (in
next/drivers) instead of fixes for v4.18.
Let me know if this was an inaccurate assessment and I can move them over.
Thanks!
-Olof
^ permalink raw reply [flat|nested] 3+ messages in thread
* [GIT PULL] tee driver for v4.18
2018-07-02 17:18 ` Olof Johansson
@ 2018-07-03 5:41 ` Jens Wiklander
0 siblings, 0 replies; 3+ messages in thread
From: Jens Wiklander @ 2018-07-03 5:41 UTC (permalink / raw)
To: linux-arm-kernel
On Mon, Jul 2, 2018 at 7:18 PM, Olof Johansson <olof@lixom.net> wrote:
> Hi Jens,
>
>
> On Mon, Jul 2, 2018 at 5:10 AM, Jens Wiklander
> <jens.wiklander@linaro.org> wrote:
>> Hello arm-soc maintainers,
>>
>> Please pull these small tee driver enhancements. There's a new config
>> option for the OP-TEE driver, OPTEE_SHM_NUM_PRIV_PAGES. Also the OP-TEE
>> driver reads current time with ktime_get_real_ts64() from now on.
>>
>> Thanks,
>> Jens
>>
>> The following changes since commit 29dcea88779c856c7dc92040a0c01233263101d4:
>>
>> Linux 4.17 (2018-06-03 14:15:21 -0700)
>>
>> are available in the Git repository at:
>>
>> git://git.linaro.org/people/jens.wiklander/linux-tee.git tags/tee-drv-for-4.18
>>
>> for you to fetch changes up to 3249527f19d660c5adfb2b6f4ffd4ca0506b8755:
>>
>> tee: optee: making OPTEE_SHM_NUM_PRIV_PAGES configurable via Kconfig (2018-06-20 11:20:36 +0200)
>>
>> ----------------------------------------------------------------
>> Misc enhancement for tee driver subsystem
>>
>> * Replaces getnstimeofday64() with ktime_get_real_ts64()
>> * Adds OPTEE_SHM_NUM_PRIV_PAGES to configure how many pages should be
>> statically reserved for driver private allocations
>>
>> ----------------------------------------------------------------
>> Arnd Bergmann (1):
>> tee: replace getnstimeofday64() with ktime_get_real_ts64()
>>
>> Sahil Malhotra (1):
>> tee: optee: making OPTEE_SHM_NUM_PRIV_PAGES configurable via Kconfig
>
> This doesn't seem to be bugfixes (and not regression fixes in
> particular), so I took the liberty of queuing these for 4.19 (in
> next/drivers) instead of fixes for v4.18.
>
> Let me know if this was an inaccurate assessment and I can move them over.
I'm sorry, my mistake. I meant 4.19, you did the right thing.
Thanks for reading my mind correctly! :-)
/Jens
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2018-07-03 5:41 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-07-02 12:10 [GIT PULL] tee driver for v4.18 Jens Wiklander
2018-07-02 17:18 ` Olof Johansson
2018-07-03 5:41 ` Jens Wiklander
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).