mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-08 10:39:08 +00:00
dm: implement a MTD uclass
Implement a Memory Technology Device (MTD) uclass. It should include most flash drivers in the future. Though no uclass ops are defined yet, the MTD ops could be used. The NAND flash driver is based on MTD. The CFI flash and SPI flash support MTD, too. It should make sense to convert them to MTD uclass. Signed-off-by: Thomas Chou <thomas@wytron.com.tw>
This commit is contained in:
parent
b375219e73
commit
d85879938d
7 changed files with 63 additions and 0 deletions
|
@ -41,6 +41,9 @@ typedef struct {
|
|||
ulong addr_unlock2; /* unlock address 2 for AMD flash roms */
|
||||
const char *name; /* human-readable name */
|
||||
#endif
|
||||
#ifdef CONFIG_MTD
|
||||
struct mtd_info *mtd;
|
||||
#endif
|
||||
} flash_info_t;
|
||||
|
||||
extern flash_info_t flash_info[]; /* info for FLASH chips */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue