diff options
author | Scott Murray <scott.murray@konsulko.com> | 2020-10-26 14:30:17 -0400 |
---|---|---|
committer | Scott Murray <scott.murray@konsulko.com> | 2020-10-26 14:30:17 -0400 |
commit | 73dcfa2bc048717f67e059225e142595acfb4872 (patch) | |
tree | 3c1be74f16a5dae81c7bfa0aa032dd5d5acea535 | |
parent | 3b14f194c16405486061a94b32878200fe1dc990 (diff) |
Update firmware documentation
Changes:
- Add missing "optee-os" to bitbake command line for building the
required firmware.
- Reorganize the firmware table to have the columns in the order
that the information is needed for the EM_W commands.
Bug-AGL: SPEC-3658
Signed-off-by: Scott Murray <scott.murray@konsulko.com>
-rw-r--r-- | meta-agl-refhw-gen3/docs/ReferenceHW_Rcar_gen3.md | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/meta-agl-refhw-gen3/docs/ReferenceHW_Rcar_gen3.md b/meta-agl-refhw-gen3/docs/ReferenceHW_Rcar_gen3.md index 92d3642..1d72c4d 100644 --- a/meta-agl-refhw-gen3/docs/ReferenceHW_Rcar_gen3.md +++ b/meta-agl-refhw-gen3/docs/ReferenceHW_Rcar_gen3.md @@ -88,7 +88,7 @@ Output the following image. ``` 7. Build the firmware: ``` - bitbake arm-trusted-firmware u-boot + bitbake arm-trusted-firmware optee-os u-boot ``` 8. Afterwards, the firmware files will be in the directory `tmp/deploy/images/agl-refhw-h3`. @@ -176,14 +176,14 @@ Output the following image. 8. Flash firmware The firmware are supposed to be stored on eMMC as following: - Name | Load address | eMMC partition | Flash address | Description + Name | eMMC partition | Flash address | Load address | Description --------------------------------------|-----------------------|-----------------------|-----------------------|----------------------------- - bootparam_sa0-4x2g.srec | H'E6320000 | 1 | H'000000 | Boot parameter - bl2-agl-refhw-h3-4x2g.srec | H'E6304000 | 1 | H'00001E | bl2 loader - cert_header_sa6-4x2g.srec | H'E6320000 | 1 | H'000180 | Certification - bl31-agl-refhw-h3-4x2g.srec | H'44000000 | 1 | H'000200 | bl3 loader - tee-agl-refhw-h3.srec | H'44100000 | 1 | H'001000 | OP-Tee - u-boot-elf-salvator-xs-4x2g.srec | H'50000000 | 2 | H'000000 | U-boot + bootparam_sa0-4x2g.srec | 1 | H'000000 | H'E6320000 | Boot parameter + bl2-agl-refhw-h3-4x2g.srec | 1 | H'00001E | H'E6304000 | bl2 loader + cert_header_sa6-4x2g.srec | 1 | H'000180 | H'E6320000 | Certification + bl31-agl-refhw-h3-4x2g.srec | 1 | H'000200 | H'44000000 | bl3 loader + tee-agl-refhw-h3.srec | 1 | H'001000 | H'44100000 | OP-Tee + u-boot-elf-salvator-xs-4x2g.srec | 2 | H'000000 | H'50000000 | U-boot You can find these firmwares in the AGL build directory $AGL_TOP/build/tmp/deploy/images/salvator-x and you can flash them by using **EM_W** command as following: |