Config.in 2.5 KB

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