diff options
author | Tom Rini <trini@konsulko.com> | 2021-08-11 08:31:56 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-08-11 08:31:56 -0400 |
commit | a25277122dad99837b78cd3b3ae6b8214df88c26 (patch) | |
tree | 679029a27b4ee0428b0b33d91896149243219bd4 /include | |
parent | 4dc1a5c248ecbd06269a7854dd06c57e9a52f19c (diff) | |
parent | d248627f9d4218688e7430bc714405a23885abfa (diff) | |
download | u-boot-a25277122dad99837b78cd3b3ae6b8214df88c26.tar.gz |
Merge https://source.denx.de/u-boot/custodians/u-boot-cfi-flashWIP/11Aug2021
- Some CFI flash related fixups (Kconfig & header) (Bin)
- Enable CFI flash support on the QEMU RISC-V virt machine. (Bin)
Diffstat (limited to 'include')
-rw-r--r-- | include/configs/qemu-riscv.h | 2 | ||||
-rw-r--r-- | include/flash.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/configs/qemu-riscv.h b/include/configs/qemu-riscv.h index 5291de83f8d..bbeea96e271 100644 --- a/include/configs/qemu-riscv.h +++ b/include/configs/qemu-riscv.h @@ -29,6 +29,8 @@ #define CONFIG_STANDALONE_LOAD_ADDR 0x80200000 +#define CONFIG_SYS_MAX_FLASH_BANKS 2 + #define RISCV_MMODE_TIMERBASE 0x2000000 #define RISCV_MMODE_TIMER_FREQ 1000000 diff --git a/include/flash.h b/include/flash.h index 42b18a60475..f3959f50120 100644 --- a/include/flash.h +++ b/include/flash.h @@ -21,7 +21,6 @@ typedef struct { ulong flash_id; /* combined device & manufacturer code */ ulong start[CONFIG_SYS_MAX_FLASH_SECT]; /* virtual sector start address */ uchar protect[CONFIG_SYS_MAX_FLASH_SECT]; /* sector protection status */ -#ifdef CONFIG_SYS_FLASH_CFI uchar portwidth; /* the width of the port */ uchar chipwidth; /* the width of the chip */ uchar chip_lsb; /* extra Least Significant Bit in the */ @@ -45,7 +44,6 @@ typedef struct { ulong addr_unlock2; /* unlock address 2 for AMD flash roms */ uchar sr_supported; /* status register supported */ const char *name; /* human-readable name */ -#endif #ifdef CONFIG_DM_MTD struct mtd_info *mtd; #endif |