Add directory driver/mxc and related scripts

Related build scripts:
drivers/Kconfig
drivers/Makefile
drivers/mxc/Kconfig
drivers/mxc/Makefile

Signed-off-by: Zhou Peng <eagle.zhou@nxp.com>
This commit is contained in:
Zhou Peng 2019-01-24 11:57:10 +08:00 committed by Dong Aisheng
parent 95b1763c0a
commit 7339b6c620
4 changed files with 21 additions and 0 deletions

View File

@ -228,4 +228,5 @@ source "drivers/interconnect/Kconfig"
source "drivers/counter/Kconfig"
source "drivers/mxc/Kconfig"
endmenu

View File

@ -186,3 +186,4 @@ obj-$(CONFIG_SIOX) += siox/
obj-$(CONFIG_GNSS) += gnss/
obj-$(CONFIG_INTERCONNECT) += interconnect/
obj-$(CONFIG_COUNTER) += counter/
obj-y += mxc/

17
drivers/mxc/Kconfig Normal file
View File

@ -0,0 +1,17 @@
# drivers/mxc/Kconfig
#if ARCH_MXC || ARCH_MXC_ARM64
menu "MXC support drivers"
# drivers common to MXC and MX8 go here:
#if ARCH_MXC_ARM64
source "drivers/mxc/vpu_malone/Kconfig"
source "drivers/mxc/vpu_windsor/Kconfig"
#endif
endmenu
#endif

2
drivers/mxc/Makefile Normal file
View File

@ -0,0 +1,2 @@
obj-$(CONFIG_MXC_VPU_MALONE) += vpu_malone/
obj-$(CONFIG_MXC_VPU_WINDSOR) += vpu_windsor/