diff options
| author | Roger Quadros <[email protected]> | 2022-10-20 16:30:49 +0300 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2022-10-26 15:21:12 -0400 |
| commit | 9b0b5648d6e4d89aa594022e48894e811c250d5f (patch) | |
| tree | b4ace98fe43682d20639adab97778dca140149c2 /drivers/memory/Makefile | |
| parent | 37d6d1645a33e410ca0fd9b56c03426b646df1fd (diff) | |
memory: Add TI GPMC driver
The GPMC is a unified memory controller dedicated for interfacing
with external memory devices like
- Asynchronous SRAM-like memories and ASICs
- Asynchronous, synchronous, and page mode burst NOR flash
- NAND flash
- Pseudo-SRAM devices
This driver will take care of setting up the GPMC based on
the settings specified in the Device tree and then
probe its children.
Signed-off-by: Roger Quadros <[email protected]>
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 b27f7018654..2b196d78c0b 100644 --- a/drivers/memory/Makefile +++ b/drivers/memory/Makefile @@ -3,3 +3,4 @@ obj-$(CONFIG_MEMORY) += memory-uclass.o obj-$(CONFIG_SANDBOX_MEMORY) += memory-sandbox.o obj-$(CONFIG_STM32_FMC2_EBI) += stm32-fmc2-ebi.o obj-$(CONFIG_TI_AEMIF) += ti-aemif.o +obj-$(CONFIG_TI_GPMC) += ti-gpmc.o |
