toolchain: bump Codescape IMG MIPS version to 2016.05-06
[buildroot-gz.git] / package / ti-gfx / Config.in
blob6ec2f23117014c7ea216f932b76bec889ed7eb4e
1 config BR2_PACKAGE_TI_GFX
2         bool "ti-gfx"
3         depends on BR2_LINUX_KERNEL && BR2_TOOLCHAIN_USES_GLIBC && BR2_arm
4         select BR2_HOSTARCH_NEEDS_IA32_LIBS
5         select BR2_PACKAGE_HAS_LIBEGL
6         select BR2_PACKAGE_HAS_LIBGLES
7         select BR2_PACKAGE_HAS_POWERVR
8         select BR2_PACKAGE_FBSET if !BR2_PACKAGE_BUSYBOX # Runtime dependency only
9         select BR2_LINUX_NEEDS_MODULES # not using kernel-module infra
10         help
11           Graphics libraries for TI boards using SGX acceleration.
13           Supports OMAP35xx, DM37xx/AM37xx, DM816x, DM814x, AM335x and
14           AM43xx.
16           For newer CPUs or kernels use the ti-sgx-{km,um} packages.
18           http://downloads.ti.com/dsps/dsps_public_sw/gfxsdk/
20 if BR2_PACKAGE_TI_GFX
22 config BR2_PACKAGE_PROVIDES_LIBEGL
23         default "ti-gfx"
25 config BR2_PACKAGE_PROVIDES_LIBGLES
26         default "ti-gfx"
28 config BR2_PACKAGE_PROVIDES_POWERVR
29         default "ti-gfx"
31 config BR2_PACKAGE_TI_GFX_DEBUG
32         bool "enable debug support"
33         help
34           Turns on debugging in the kernel module, install libraries built with
35           debugging enabled, installs various tests and installs esrev script.
37 config BR2_PACKAGE_TI_GFX_DEMOS
38         bool "install demos"
39         default y
40         help
41           Install the OGLES2ChameleonMan and OGLES2MagicLantern demos
43 config BR2_PACKAGE_TI_GFX_EGLIMAGE
44         bool "install eglimage version of libraries"
45         help
46           Installs OpenGL libaries which support the eglimage api.
48 choice
49         prompt "Target"
50         default BR2_PACKAGE_TI_GFX_ES3
51         help
52           Select the SOC for which you would like to install drivers. Please use the
53           chart at
54           http://processors.wiki.ti.com/index.php/OMAP35x_Graphics_SDK_Getting_Started_Guide
56 config BR2_PACKAGE_TI_GFX_ES3
57         bool "es3.x (OMAP35xx, AM35xx Rev 3.1+)"
58         help
59           OMAP35xx, AM35xx Rev 3.1+
61 config BR2_PACKAGE_TI_GFX_ES5
62         bool "es5.x (AM37xx, DM37xx)"
63         help
64           AM37xx, DM37xx
66 config BR2_PACKAGE_TI_GFX_ES6
67         bool "es6.x (AM387x, DMA814x, AM389x, DM816x)"
68         help
69           AM387x, DM814x, AM389x, DM816x
71 config BR2_PACKAGE_TI_GFX_ES8
72         bool "es8.x (AM335x)"
73         help
74           AM335x
76 endchoice
78 endif
80 comment "ti-gfx needs a glibc toolchain and a Linux kernel to be built"
81         depends on BR2_arm
82         depends on !(BR2_LINUX_KERNEL && BR2_TOOLCHAIN_USES_GLIBC)