mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2026-01-08 10:12:32 +01:00
Octo Memory Manager driver (OMM) manages:
- the muxing between 2 OSPI busses and 2 output ports.
There are 4 possible muxing configurations:
- direct mode (no multiplexing): OSPI1 output is on port 1 and OSPI2
output is on port 2
- OSPI1 and OSPI2 are multiplexed over the same output port 1
- swapped mode (no multiplexing), OSPI1 output is on port 2,
OSPI2 output is on port 1
- OSPI1 and OSPI2 are multiplexed over the same output port 2
- the split of the memory area shared between the 2 OSPI instances.
- chip select selection override.
- the time between 2 transactions in multiplexed mode.
- check firewall access.
Signed-off-by: Patrice Chotard <patrice.chotard@foss.st.com>
Reviewed-by: Patrick Delaunay <patrick.delaunay@foss.st.com>
9 lines
303 B
Makefile
9 lines
303 B
Makefile
|
|
obj-$(CONFIG_MEMORY) += memory-uclass.o
|
|
obj-$(CONFIG_SANDBOX_MEMORY) += memory-sandbox.o
|
|
obj-$(CONFIG_STM32_FMC2_EBI) += stm32-fmc2-ebi.o
|
|
obj-$(CONFIG_STM32_OMM) += stm32_omm.o
|
|
obj-$(CONFIG_ATMEL_EBI) += atmel_ebi.o
|
|
obj-$(CONFIG_TI_AEMIF) += ti-aemif.o ti-aemif-cs.o
|
|
obj-$(CONFIG_TI_GPMC) += ti-gpmc.o
|