fvp-cortex-a57-a53.rst 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. Running on the Cortex-A57-A53 Base FVP
  2. ======================================
  3. With reset to BL1 entrypoint
  4. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  5. The following ``FVP_Base_Cortex-A57x4-A53x4`` model parameters should be used to
  6. boot Linux with 8 CPUs using the AArch64 build of TF-A.
  7. .. code:: shell
  8. <path-to>/FVP_Base_Cortex-A57x4-A53x4 \
  9. -C pctl.startup=0.0.0.0 \
  10. -C bp.secure_memory=1 \
  11. -C bp.tzc_400.diagnostics=1 \
  12. -C cache_state_modelled=1 \
  13. -C bp.secureflashloader.fname="<path-to>/<bl1-binary>" \
  14. -C bp.flashloader0.fname="<path-to>/<FIP-binary>" \
  15. --data cluster0.cpu0="<path-to>/<kernel-binary>"@0x80080000 \
  16. --data cluster0.cpu0="<path-to>/<ramdisk>"@0x84000000
  17. With reset to BL31 entrypoint
  18. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  19. The following ``FVP_Base_Cortex-A57x4-A53x4`` model parameters should be used to
  20. boot Linux with 8 CPUs using the AArch64 build of TF-A.
  21. .. code:: shell
  22. <path-to>/FVP_Base_Cortex-A57x4-A53x4 \
  23. -C pctl.startup=0.0.0.0 \
  24. -C bp.secure_memory=1 \
  25. -C bp.tzc_400.diagnostics=1 \
  26. -C cache_state_modelled=1 \
  27. -C cluster0.cpu0.RVBARADDR=0x04010000 \
  28. -C cluster0.cpu1.RVBARADDR=0x04010000 \
  29. -C cluster0.cpu2.RVBARADDR=0x04010000 \
  30. -C cluster0.cpu3.RVBARADDR=0x04010000 \
  31. -C cluster1.cpu0.RVBARADDR=0x04010000 \
  32. -C cluster1.cpu1.RVBARADDR=0x04010000 \
  33. -C cluster1.cpu2.RVBARADDR=0x04010000 \
  34. -C cluster1.cpu3.RVBARADDR=0x04010000 \
  35. --data cluster0.cpu0="<path-to>/<bl31-binary>"@0x04010000 \
  36. --data cluster0.cpu0="<path-to>/<bl32-binary>"@0xff000000 \
  37. --data cluster0.cpu0="<path-to>/<bl33-binary>"@0x88000000 \
  38. --data cluster0.cpu0="<path-to>/<fdt>"@0x82000000 \
  39. --data cluster0.cpu0="<path-to>/<kernel-binary>"@0x80080000 \
  40. --data cluster0.cpu0="<path-to>/<ramdisk>"@0x84000000
  41. --------------
  42. *Copyright (c) 2019-2024, Arm Limited. All rights reserved.*