diff options
author | Joachim Eastwood <manabian@gmail.com> | 2015-07-13 23:20:11 +0200 |
---|---|---|
committer | Olof Johansson <olof@lixom.net> | 2015-07-17 10:43:44 -0700 |
commit | 17c50b700c3b46fe85e96caa1d0fc5940cc276d4 (patch) | |
tree | 048a173c17103695044c1f999957d7bbf9f577ae /drivers/memory/Makefile | |
parent | bc0195aad0daa2ad5b0d76cce22b167bc3435590 (diff) | |
download | linux-17c50b700c3b46fe85e96caa1d0fc5940cc276d4.tar.bz2 |
memory: add ARM PL172 MultiPort Memory Controller driver
This driver makes it possible to configure the static memory
chip selects on the ARM PL172 MultiPort Memory Controller
from a set of properties in DT. Configuration of dynamic
memory is not supported and is left to the boot loader.
The intended usage is to setup timing and configuration for
static memory devices like NAND and NOR Flash before they
are probed by a driver.
Signed-off-by: Joachim Eastwood <manabian@gmail.com>
Signed-off-by: Olof Johansson <olof@lixom.net>
Diffstat (limited to 'drivers/memory/Makefile')
-rw-r--r-- | drivers/memory/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/memory/Makefile b/drivers/memory/Makefile index b670441e3cdf..1c46af501610 100644 --- a/drivers/memory/Makefile +++ b/drivers/memory/Makefile @@ -5,6 +5,7 @@ ifeq ($(CONFIG_DDR),y) obj-$(CONFIG_OF) += of_memory.o endif +obj-$(CONFIG_ARM_PL172_MPMC) += pl172.o obj-$(CONFIG_ATMEL_SDRAMC) += atmel-sdramc.o obj-$(CONFIG_TI_AEMIF) += ti-aemif.o obj-$(CONFIG_TI_EMIF) += emif.o |