33 lines
823 B
Plaintext
33 lines
823 B
Plaintext
# Copyright (c) 2019, Nordic Semiconductor ASA
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
menuconfig NORDIC_QSPI_NOR
|
|
bool "QSPI NOR Flash"
|
|
select FLASH_HAS_DRIVER_ENABLED
|
|
select NRFX_QSPI
|
|
depends on HAS_HW_NRF_QSPI
|
|
help
|
|
Enable support for nrfx QSPI driver with EasyDMA.
|
|
|
|
if NORDIC_QSPI_NOR
|
|
|
|
config NORDIC_QSPI_NOR_QE_BIT
|
|
int "Quad Enable bit number in Status Register"
|
|
default 6
|
|
|
|
config NORDIC_QSPI_NOR_INIT_PRIORITY
|
|
int
|
|
default 80
|
|
help
|
|
Device driver initialization priority.
|
|
|
|
config NORDIC_QSPI_NOR_FLASH_LAYOUT_PAGE_SIZE
|
|
int "Page size to use for FLASH_LAYOUT feature"
|
|
default 65536
|
|
help
|
|
When CONFIG_FLASH_PAGE_LAYOUT is used this driver will support
|
|
that API. By default the page size corresponds to the block
|
|
size (65536). Other option include the sector size (4096).
|
|
|
|
endif # NORDIC_QSPI_NOR
|