Config.in 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. comment "fmlib needs a Linux kernel to be built"
  2. depends on BR2_powerpc_e500mc || BR2_powerpc_e6500
  3. depends on !BR2_LINUX_KERNEL
  4. config BR2_PACKAGE_FMLIB
  5. bool "fmlib"
  6. depends on BR2_powerpc_e500mc || BR2_powerpc_e6500
  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. http://git.freescale.com/git/cgit.cgi/ppc/sdk/fmlib.git/tree/README
  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. endchoice
  30. config BR2_PACKAGE_FMLIB_ARCHTYPE
  31. string
  32. default "e500mc" if BR2_powerpc_e500mc
  33. default "ppc64e6500" if BR2_powerpc_e6500 && BR2_powerpc64
  34. default "ppc32e6500" if BR2_powerpc_e6500 && BR2_powerpc
  35. config BR2_PACKAGE_FMLIB_PLATFORM
  36. string
  37. default "P4080" if BR2_FMLIB_QORIQ_FAMILY_P4080
  38. default "T4240" if BR2_FMLIB_QORIQ_FAMILY_T4240
  39. default "FMAN_V3H" if BR2_FMLIB_QORIQ_FAMILY_T2080
  40. endif