2014-06-11 04:50:28 +02:00
|
|
|
comment "fmlib needs a Linux kernel to be built"
|
2024-03-06 12:37:24 +01:00
|
|
|
depends on BR2_powerpc_e500mc || BR2_powerpc_e6500 || BR2_aarch64
|
2014-06-11 04:50:28 +02:00
|
|
|
depends on !BR2_LINUX_KERNEL
|
|
|
|
|
|
|
|
config BR2_PACKAGE_FMLIB
|
|
|
|
bool "fmlib"
|
2024-03-06 12:37:24 +01:00
|
|
|
depends on BR2_powerpc_e500mc || BR2_powerpc_e6500 || BR2_aarch64
|
2014-06-11 04:50:28 +02:00
|
|
|
depends on BR2_LINUX_KERNEL
|
|
|
|
help
|
2017-07-31 15:53:42 +02:00
|
|
|
The Frame Manager library provides Freescale PowerPC platforms
|
|
|
|
an API on top of the Frame Manager driver ioctl calls, that
|
|
|
|
provides a user space application with a simple way to
|
|
|
|
configure driver parameters and PCD (parse - classify -
|
|
|
|
distribute) rules.
|
2014-06-11 04:50:28 +02:00
|
|
|
|
2022-12-29 20:47:05 +01:00
|
|
|
https://github.com/nxp-qoriq/fmlib
|
2016-05-18 15:41:26 +02:00
|
|
|
|
|
|
|
if BR2_PACKAGE_FMLIB
|
|
|
|
choice
|
|
|
|
prompt "QorIQ Target Family"
|
|
|
|
help
|
|
|
|
Select the family of QorIQ processor.
|
|
|
|
|
|
|
|
config BR2_FMLIB_QORIQ_FAMILY_P4080
|
|
|
|
bool "p40xx"
|
|
|
|
depends on BR2_powerpc_e500mc
|
|
|
|
|
|
|
|
config BR2_FMLIB_QORIQ_FAMILY_T4240
|
|
|
|
bool "t42xx"
|
|
|
|
depends on BR2_powerpc_e500mc
|
|
|
|
|
|
|
|
config BR2_FMLIB_QORIQ_FAMILY_T2080
|
|
|
|
bool "t208x"
|
|
|
|
depends on BR2_powerpc_e6500
|
|
|
|
|
2024-03-06 12:37:24 +01:00
|
|
|
config BR2_FMLIB_QORIQ_FAMILY_ARM
|
|
|
|
bool "arm"
|
|
|
|
depends on BR2_aarch64
|
|
|
|
|
2016-05-18 15:41:26 +02:00
|
|
|
endchoice
|
|
|
|
|
|
|
|
config BR2_PACKAGE_FMLIB_ARCHTYPE
|
|
|
|
string
|
2022-12-27 20:53:39 +01:00
|
|
|
default "ppce500mc" if BR2_powerpc_e500mc
|
2016-05-18 15:41:26 +02:00
|
|
|
default "ppc64e6500" if BR2_powerpc_e6500 && BR2_powerpc64
|
|
|
|
default "ppc32e6500" if BR2_powerpc_e6500 && BR2_powerpc
|
2024-03-06 12:37:24 +01:00
|
|
|
default "arm" if BR2_aarch64
|
2016-05-18 15:41:26 +02:00
|
|
|
|
|
|
|
config BR2_PACKAGE_FMLIB_PLATFORM
|
|
|
|
string
|
|
|
|
default "P4080" if BR2_FMLIB_QORIQ_FAMILY_P4080
|
|
|
|
default "T4240" if BR2_FMLIB_QORIQ_FAMILY_T4240
|
|
|
|
default "FMAN_V3H" if BR2_FMLIB_QORIQ_FAMILY_T2080
|
2024-03-06 12:37:24 +01:00
|
|
|
default "arm" if BR2_aarch64
|
2016-05-18 15:41:26 +02:00
|
|
|
|
|
|
|
endif
|