64a14a8c1c
Introduce driver for APS6408L PSRAM, built on top of the MCUX memc driver for flexSPI. This driver supports operating the PSRAM in high speed mode (200MHz or more). Note that in order to support this PSRAM's alignment requirements, either ahb-read-addr-opt or ahb-prefetch must be set for the FlexSPI instance. Signed-off-by: Daniel DeGrasse <daniel.degrasse@nxp.com>
23 lines
532 B
Plaintext
23 lines
532 B
Plaintext
# Copyright (c) 2020-2022 NXP
|
|
# Copyright (c) 2021 Basalte bv
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
if DT_HAS_NXP_IMX_FLEXSPI_ENABLED
|
|
|
|
config MEMC_MCUX_FLEXSPI_S27KS0641
|
|
bool "MCUX FlexSPI Cypress S27KS0641 HyperRAM driver"
|
|
default y
|
|
depends on DT_HAS_NXP_IMX_FLEXSPI_S27KS0641_ENABLED
|
|
select MEMC_MCUX_FLEXSPI
|
|
|
|
config MEMC_MCUX_FLEXSPI_APS6408L
|
|
bool "MCUX FlexSPI AP Memory APS6408L pSRAM driver"
|
|
default y
|
|
depends on DT_HAS_NXP_IMX_FLEXSPI_APS6408L_ENABLED
|
|
select MEMC_MCUX_FLEXSPI
|
|
|
|
config MEMC_MCUX_FLEXSPI
|
|
bool
|
|
|
|
endif
|