hc
2023-12-04 f33f61bdb7ca6d5ebe7a78f9d8694b91360279ac
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
comment "fmlib needs a Linux kernel to be built"
   depends on BR2_powerpc_e500mc || BR2_powerpc_e6500
   depends on !BR2_LINUX_KERNEL
 
config BR2_PACKAGE_FMLIB
   bool "fmlib"
   depends on BR2_powerpc_e500mc || BR2_powerpc_e6500
   depends on BR2_LINUX_KERNEL
   help
     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.
 
     http://git.freescale.com/git/cgit.cgi/ppc/sdk/fmlib.git/tree/README
 
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
 
endchoice
 
config BR2_PACKAGE_FMLIB_ARCHTYPE
   string
   default "e500mc" if BR2_powerpc_e500mc
   default "ppc64e6500" if BR2_powerpc_e6500 && BR2_powerpc64
   default "ppc32e6500" if BR2_powerpc_e6500 && BR2_powerpc
 
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
 
endif