MLK-15001-11 gpu: Move ipuv3 and dpu to imx folder

IPUv3 and DPU are both i.MX display processing units.
To organize the driver code better, let's introduce the imx folder for them.
Later, we may put more drivers into this folder, e.g., the prefetch engines.

Signed-off-by: Liu Ying <victor.liu@nxp.com>
This commit is contained in:
Liu Ying
2017-04-12 16:30:34 +08:00
committed by Leonard Crestez
parent 6df3d3f6b2
commit 4ec895ea31
30 changed files with 6 additions and 4 deletions

View File

@ -3,5 +3,4 @@
# to ensure this currently.
obj-$(CONFIG_TEGRA_HOST1X) += host1x/
obj-y += drm/ vga/
obj-$(CONFIG_IMX_IPUV3_CORE) += ipu-v3/
obj-$(CONFIG_IMX_DPU_CORE) += dpu/
obj-y += imx/

2
drivers/gpu/imx/Kconfig Normal file
View File

@ -0,0 +1,2 @@
source drivers/gpu/imx/ipu-v3/Kconfig
source drivers/gpu/imx/dpu/Kconfig

2
drivers/gpu/imx/Makefile Normal file
View File

@ -0,0 +1,2 @@
obj-$(CONFIG_IMX_IPUV3_CORE) += ipu-v3/
obj-$(CONFIG_IMX_DPU_CORE) += dpu/

View File

@ -16,8 +16,7 @@ source "drivers/char/agp/Kconfig"
source "drivers/gpu/vga/Kconfig"
source "drivers/gpu/host1x/Kconfig"
source "drivers/gpu/ipu-v3/Kconfig"
source "drivers/gpu/dpu/Kconfig"
source "drivers/gpu/imx/Kconfig"
source "drivers/gpu/drm/Kconfig"