Skip to content

Commit

Permalink
arm/imx6q: add core drivers clock, gpc, mmdc and src
Browse files Browse the repository at this point in the history
It adds a number of core drivers support for imx6q, including clock,
General Power Controller (gpc), Multi Mode DDR Controller(mmdc) and
System Reset Controller (src).

Signed-off-by: Ranjani Vaidyanathan <[email protected]>
Signed-off-by: Shawn Guo <[email protected]>
  • Loading branch information
shawnguo2 authored and arndb committed Oct 31, 2011
1 parent 1103643 commit 9fbbe68
Show file tree
Hide file tree
Showing 6 changed files with 2,263 additions and 0 deletions.
13 changes: 13 additions & 0 deletions arch/arm/mach-imx/Kconfig
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
config IMX_HAVE_DMA_V1
bool

config HAVE_IMX_GPC
bool

config HAVE_IMX_MMDC
bool

config HAVE_IMX_SRC
bool

#
# ARCH_MX31 and ARCH_MX35 are left for compatibility
# Some usages assume that having one of them implies not having (e.g.) ARCH_MX2.
Expand Down Expand Up @@ -601,6 +611,9 @@ config SOC_IMX6Q
select ARM_GIC
select CACHE_L2X0
select CPU_V7
select HAVE_IMX_GPC
select HAVE_IMX_MMDC
select HAVE_IMX_SRC
select USE_OF

help
Expand Down
4 changes: 4 additions & 0 deletions arch/arm/mach-imx/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -62,3 +62,7 @@ obj-$(CONFIG_MACH_EUKREA_MBIMXSD35_BASEBOARD) += eukrea_mbimxsd35-baseboard.o
obj-$(CONFIG_MACH_VPR200) += mach-vpr200.o

obj-$(CONFIG_DEBUG_LL) += lluart.o
obj-$(CONFIG_HAVE_IMX_GPC) += gpc.o
obj-$(CONFIG_HAVE_IMX_MMDC) += mmdc.o
obj-$(CONFIG_HAVE_IMX_SRC) += src.o
obj-$(CONFIG_SOC_IMX6Q) += clock-imx6q.o
Loading

0 comments on commit 9fbbe68

Please sign in to comment.