From: Maxim Uvarov <maxim.uvarov@linaro.org>
To: qemu-devel@nongnu.org
Subject: Re: [PATCHv2] add optee dts entry for secure machine
Date: Thu, 30 Apr 2020 00:22:30 +0300 [thread overview]
Message-ID: <CAD8XO3aLFWYf=VM9seb86pvExZboh3Jfgqw08FEj+LLtOZFf7w@mail.gmail.com> (raw)
In-Reply-To: <20200422130724.3581-1-maxim.uvarov@linaro.org>
Kindly ping to merge this patch.
For more detail. This patch creates a dtb entry to load the optee
driver which is needed for secure boot (atf+optee+uboot+linux). Kernel
part is already there:
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/drivers/tee/optee/core.c?h=v5.7-rc3#n705
.compatible = "linaro,optee-tz"
Thank you,
Maxim.
On Wed, 22 Apr 2020 at 16:07, Maxim Uvarov <maxim.uvarov@linaro.org> wrote:
>
> Add optee compatible string for dtb to force linux
> to boot optee module.
>
> Signed-off-by: Maxim Uvarov <maxim.uvarov@linaro.org>
> ---
> v2: added method.
> hw/arm/virt.c | 18 ++++++++++++++++++
> 1 file changed, 18 insertions(+)
>
> diff --git a/hw/arm/virt.c b/hw/arm/virt.c
> index 656b008..c937a82 100644
> --- a/hw/arm/virt.c
> +++ b/hw/arm/virt.c
> @@ -1335,6 +1335,23 @@ static void create_platform_bus(VirtMachineState *vms)
> sysbus_mmio_get_region(s, 0));
> }
>
> +static void create_secure_tee(VirtMachineState *vms)
> +{
> + char *firmware;
> + char *optee;
> +
> + firmware = g_strdup_printf("/firmware");
> + qemu_fdt_add_subnode(vms->fdt, firmware);
> +
> + optee = g_strdup_printf("/firmware/optee");
> + qemu_fdt_add_subnode(vms->fdt, optee);
> + qemu_fdt_setprop_string(vms->fdt, optee, "compatible", "linaro,optee-tz");
> + qemu_fdt_setprop_string(vms->fdt, optee, "method", "smc");
> +
> + g_free(optee);
> + g_free(firmware);
> +}
> +
> static void create_secure_ram(VirtMachineState *vms,
> MemoryRegion *secure_sysmem)
> {
> @@ -1720,6 +1737,7 @@ static void machvirt_init(MachineState *machine)
> if (vms->secure) {
> create_secure_ram(vms, secure_sysmem);
> create_uart(vms, VIRT_SECURE_UART, secure_sysmem, serial_hd(1));
> + create_secure_tee(vms);
> }
>
> vms->highmem_ecam &= vms->highmem && (!firmware_loaded || aarch64);
> --
> 2.17.1
>
prev parent reply other threads:[~2020-04-29 21:29 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-04-22 13:07 [PATCHv2] add optee dts entry for secure machine Maxim Uvarov
2020-04-29 21:22 ` Maxim Uvarov [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to='CAD8XO3aLFWYf=VM9seb86pvExZboh3Jfgqw08FEj+LLtOZFf7w@mail.gmail.com' \
--to=maxim.uvarov@linaro.org \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).