-
Notifications
You must be signed in to change notification settings - Fork 7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
drivers: Flash: Add SPI NAND Flash driver support
Add SPI NAND Flash driver support Signed-off-by: Daniel Zhang <[email protected]>
- Loading branch information
1 parent
9211abc
commit 9d94e4c
Showing
15 changed files
with
1,954 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# Copyright (c) 2022 Macronix International Co., Ltd. | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
menuconfig SPI_NAND | ||
bool "SPI NAND Flash" | ||
select FLASH_HAS_DRIVER_ENABLED | ||
select FLASH_HAS_PAGE_LAYOUT | ||
depends on SPI | ||
|
||
if SPI_NAND | ||
|
||
config SPI_NAND_INIT_PRIORITY | ||
int | ||
default 80 | ||
help | ||
Device driver initialization priority. | ||
Device is connected to SPI bus, it has to | ||
be initialized after SPI driver. | ||
|
||
config SPI_NAND_CS_WAIT_DELAY | ||
int "Delay time in us" | ||
default 0 | ||
help | ||
This is the wait delay (in us) to allow for CS switching to take effect | ||
|
||
config SPI_NAND_IDLE_IN_DPD | ||
bool "Use Deep Power-Down mode when flash is not being accessed." | ||
help | ||
Where supported deep power-down mode can reduce current draw | ||
to as little as 0.1% of standby current. However it takes | ||
some milliseconds to enter and exit from this mode. | ||
|
||
Select this option for applications where device power | ||
management is not enabled, the flash remains inactive for | ||
long periods, and when used the impact of waiting for mode | ||
enter and exit delays is acceptable. | ||
|
||
endif # SPI_NAND |
Oops, something went wrong.