[U-Boot] [PATCH 08/10] rockchip: evb-rk3229: add fit source file for itb

Simon Glass sjg at chromium.org
Mon Sep 11 06:17:36 UTC 2017


On 5 September 2017 at 20:14, Kever Yang <kever.yang at rock-chips.com> wrote:
> We package U-Boot and OP-TEE into one itb file for SPL,
> so that we can support OP-TEE in SPL.
>
> Signed-off-by: Kever Yang <kever.yang at rock-chips.com>
> ---
>
>  board/rockchip/evb_rk3229/fit_spl_optee.its | 48 +++++++++++++++++++++++++++++
>  1 file changed, 48 insertions(+)
>  create mode 100644 board/rockchip/evb_rk3229/fit_spl_optee.its
>
> diff --git a/board/rockchip/evb_rk3229/fit_spl_optee.its b/board/rockchip/evb_rk3229/fit_spl_optee.its
> new file mode 100644
> index 0000000..ed93d44
> --- /dev/null
> +++ b/board/rockchip/evb_rk3229/fit_spl_optee.its
> @@ -0,0 +1,48 @@
> +/*
> + * Copyright (C) 2017 Rockchip Electronic Co.,Ltd
> + *
> + * Simple U-boot fit source file containing U-Boot, dtb and optee

U-Boot

otherwise:

Reviewed-by: Simon Glass <sjg at chromium.org>


> + */
> +
> +/dts-v1/;
> +
> +/ {
> +       description = "Simple image with OP-TEE support";
> +       #address-cells = <1>;
> +
> +       images {
> +               uboot at 1 {
> +                       description = "U-Boot";
> +                       data = /incbin/("../../../u-boot-nodtb.bin");
> +                       type = "standalone";
> +                       arch = "arm";
> +                       compression = "none";
> +                       load = <0x61000000>;
> +               };
> +               optee at 1 {
> +                       description = "ARM Trusted Firmware";
> +                       data = /incbin/("../../../tee.bin");
> +                       type = "firmware";
> +                       arch = "arm";
> +                       compression = "none";
> +                       load = <0x68400000>;
> +                       entry = <0x68400000>;
> +               };
> +               fdt at 1 {
> +                       description = "rk3229 dtb";
> +                       data = /incbin/("../../../u-boot.dtb");
> +                       type = "flat_dt";
> +                       compression = "none";
> +               };
> +       };
> +
> +       configurations {
> +               default = "conf at 1";
> +               conf at 1 {
> +                       description = "RK3399 evb";
> +                       firmware = "uboot at 1";
> +                       loadables = "optee at 1";
> +                       fdt = "fdt at 1";
> +               };
> +       };
> +};
> --
> 1.9.1
>


More information about the U-Boot mailing list