Config.in 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. comment "fmlib needs a Linux kernel to be built"
  2. depends on BR2_powerpc_e500mc || BR2_powerpc_e6500 || BR2_aarch64
  3. depends on !BR2_LINUX_KERNEL
  4. config BR2_PACKAGE_FMLIB
  5. bool "fmlib"
  6. depends on BR2_powerpc_e500mc || BR2_powerpc_e6500 || BR2_aarch64
  7. depends on BR2_LINUX_KERNEL
  8. help
  9. The Frame Manager library provides Freescale PowerPC platforms
  10. an API on top of the Frame Manager driver ioctl calls, that
  11. provides a user space application with a simple way to
  12. configure driver parameters and PCD (parse - classify -
  13. distribute) rules.
  14. https://github.com/nxp-qoriq/fmlib
  15. if BR2_PACKAGE_FMLIB
  16. choice
  17. prompt "QorIQ Target Family"
  18. help
  19. Select the family of QorIQ processor.
  20. config BR2_FMLIB_QORIQ_FAMILY_P4080
  21. bool "p40xx"
  22. depends on BR2_powerpc_e500mc
  23. config BR2_FMLIB_QORIQ_FAMILY_T4240
  24. bool "t42xx"
  25. depends on BR2_powerpc_e500mc
  26. config BR2_FMLIB_QORIQ_FAMILY_T2080
  27. bool "t208x"
  28. depends on BR2_powerpc_e6500
  29. config BR2_FMLIB_QORIQ_FAMILY_ARM
  30. bool "arm"
  31. depends on BR2_aarch64
  32. endchoice
  33. config BR2_PACKAGE_FMLIB_ARCHTYPE
  34. string
  35. default "ppce500mc" if BR2_powerpc_e500mc
  36. default "ppc64e6500" if BR2_powerpc_e6500 && BR2_powerpc64
  37. default "ppc32e6500" if BR2_powerpc_e6500 && BR2_powerpc
  38. default "arm" if BR2_aarch64
  39. config BR2_PACKAGE_FMLIB_PLATFORM
  40. string
  41. default "P4080" if BR2_FMLIB_QORIQ_FAMILY_P4080
  42. default "T4240" if BR2_FMLIB_QORIQ_FAMILY_T4240
  43. default "FMAN_V3H" if BR2_FMLIB_QORIQ_FAMILY_T2080
  44. default "arm" if BR2_aarch64
  45. endif