da4fff547c
This is the Vivante kernel driver split from the kernel source code in order to make it possible to be used in any kernel source since 3.10.53. The driver source code provided by Freescale needs fixes so the community forked the code to allow faster development and easier integration of fixes from the community. This patch is based on the Yocto equivalent: https://github.com/Freescale/meta-fsl-arm/commit/32cf391 https://github.com/Freescale/meta-fsl-arm/commit/4249193 This package has been tested with the following commands: # modprobe galcore # cd /usr/share/examples/viv_samples/vdk/ # ./tutorial7 Signed-off-by: Gary Bisson <gary.bisson@boundarydevices.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
59 lines
1.8 KiB
Plaintext
59 lines
1.8 KiB
Plaintext
menuconfig BR2_PACKAGE_FREESCALE_IMX
|
|
bool "Freescale i.MX libraries"
|
|
depends on BR2_arm
|
|
help
|
|
Those packages provide hardware acceleration for GPU or VPU, hardware
|
|
optimization or some hardware tools for Freescale i.MX platforms.
|
|
|
|
if BR2_PACKAGE_FREESCALE_IMX
|
|
choice
|
|
prompt "i.MX platform"
|
|
|
|
config BR2_PACKAGE_FREESCALE_IMX_PLATFORM_IMX25_3STACK
|
|
bool "imx25-3stack"
|
|
|
|
config BR2_PACKAGE_FREESCALE_IMX_PLATFORM_IMX27ADS
|
|
bool "imx27ads"
|
|
|
|
config BR2_PACKAGE_FREESCALE_IMX_PLATFORM_IMX37_3STACK
|
|
bool "imx37-3stack"
|
|
|
|
config BR2_PACKAGE_FREESCALE_IMX_PLATFORM_IMX50
|
|
bool "imx50"
|
|
|
|
config BR2_PACKAGE_FREESCALE_IMX_PLATFORM_IMX51
|
|
bool "imx51"
|
|
|
|
config BR2_PACKAGE_FREESCALE_IMX_PLATFORM_IMX53
|
|
bool "imx53"
|
|
|
|
config BR2_PACKAGE_FREESCALE_IMX_PLATFORM_IMX6Q
|
|
bool "imx6q"
|
|
|
|
endchoice
|
|
|
|
config BR2_PACKAGE_FREESCALE_IMX_PLATFORM
|
|
string
|
|
default "IMX25_3STACK" if BR2_PACKAGE_FREESCALE_IMX_PLATFORM_IMX25_3STACK
|
|
default "IMX27ADS" if BR2_PACKAGE_FREESCALE_IMX_PLATFORM_IMX27ADS
|
|
default "IMX37_3STACK" if BR2_PACKAGE_FREESCALE_IMX_PLATFORM_IMX37_3STACK
|
|
default "IMX50" if BR2_PACKAGE_FREESCALE_IMX_PLATFORM_IMX50
|
|
default "IMX51" if BR2_PACKAGE_FREESCALE_IMX_PLATFORM_IMX51
|
|
default "IMX53" if BR2_PACKAGE_FREESCALE_IMX_PLATFORM_IMX53
|
|
default "IMX6Q" if BR2_PACKAGE_FREESCALE_IMX_PLATFORM_IMX6Q
|
|
|
|
source "package/freescale-imx/imx-kobs/Config.in"
|
|
source "package/freescale-imx/imx-lib/Config.in"
|
|
source "package/freescale-imx/imx-vpu/Config.in"
|
|
source "package/freescale-imx/firmware-imx/Config.in"
|
|
if (BR2_PACKAGE_FREESCALE_IMX_PLATFORM_IMX51 || BR2_PACKAGE_FREESCALE_IMX_PLATFORM_IMX53)
|
|
source "package/freescale-imx/gpu-amd-bin-mx51/Config.in"
|
|
source "package/freescale-imx/libz160/Config.in"
|
|
endif
|
|
if BR2_PACKAGE_FREESCALE_IMX_PLATFORM_IMX6Q
|
|
source "package/freescale-imx/imx-gpu-viv/Config.in"
|
|
source "package/freescale-imx/kernel-module-imx-gpu-viv/Config.in"
|
|
endif
|
|
|
|
endif
|