Config.in 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. comment "xilinx-embeddedsw needs a bare metal toolchain for tuple microblazeel-buildroot-elf"
  2. depends on BR2_TOOLCHAIN_BARE_METAL_BUILDROOT_ARCH != "microblazeel-buildroot-elf"
  3. depends on BR2_TOOLCHAIN_BARE_METAL_BUILDROOT
  4. menuconfig BR2_TARGET_XILINX_EMBEDDEDSW
  5. bool "xilinx-embeddedsw"
  6. depends on BR2_TOOLCHAIN_BARE_METAL_BUILDROOT
  7. help
  8. Build boot firmware applications from source for Xilinx
  9. boards. Users can mix and match applications to be built
  10. by xilinx-embeddedsw and applications to be copied by
  11. xilinx-prebuilt. If a xilinx-embeddedsw application is
  12. selected, it will be built and installed from the Xilinx
  13. embeddedsw repo, and it will not be copied from the
  14. xilinx-prebuilt repo.
  15. Applications can be found on the Xilinx embeddedsw repo:
  16. https://github.com/Xilinx/embeddedsw/tree/master/lib/sw_apps
  17. if BR2_TARGET_XILINX_EMBEDDEDSW
  18. config BR2_TARGET_XILINX_EMBEDDEDSW_VERSION
  19. string "xilinx-embeddedsw version"
  20. default "xilinx_v2025.1"
  21. help
  22. Release version of Xilinx/embeddedsw.
  23. Must be xilinx_v2023.1 or newer.
  24. config BR2_TARGET_XILINX_EMBEDDEDSW_VERSAL_PLM
  25. bool "versal plm"
  26. depends on BR2_cortex_a72
  27. help
  28. Build versal plm application from Xilinx/embeddedsw repo.
  29. If selected, the xilinx-prebuilt package will not install
  30. the plm.elf since it will come from the xilinx-embeddedsw
  31. package.
  32. https://github.com/Xilinx/embeddedsw/tree/master/lib/sw_apps/versal_plm
  33. config BR2_TARGET_XILINX_EMBEDDEDSW_VERSAL_PSMFW
  34. bool "versal psmfw"
  35. depends on BR2_cortex_a72
  36. help
  37. Build versal psmfw application from Xilinx/embeddedsw repo.
  38. If selected, the xilinx-prebuilt package will not install
  39. the psmfw.elf since it will come from the xilinx-embeddedsw
  40. package.
  41. https://github.com/Xilinx/embeddedsw/tree/master/lib/sw_apps/versal_psmfw
  42. config BR2_TARGET_XILINX_EMBEDDEDSW_ZYNQMP_PMUFW
  43. bool "zynqmp pmufw"
  44. depends on BR2_cortex_a53
  45. help
  46. Build zynqmp pmufw application from Xilinx/embeddedsw repo.
  47. If selected, the xilinx-prebuilt package will not install
  48. the pmufw.elf since it will come from the xilinx-embeddedsw
  49. package.
  50. https://github.com/Xilinx/embeddedsw/tree/master/lib/sw_apps/zynqmp_pmufw
  51. config BR2_TARGET_XILINX_EMBEDDEDSW_ZYNQMP_PMUFW_USER_CFLAGS
  52. string "xilinx-embeddedsw optional zynqmp_pmufw user cflags"
  53. depends on BR2_TARGET_XILINX_EMBEDDEDSW_ZYNQMP_PMUFW
  54. help
  55. Add optional cflags when building xilinx zynqmp_pmufw.
  56. Example cflag options can be found here:
  57. https://github.com/Xilinx/embeddedsw/blob/master/lib/sw_apps/zynqmp_pmufw/src/xpfw_config.h
  58. endif # BR2_TARGET_XILINX_EMBEDDEDSW