aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2021-08-11 08:31:56 -0400
committerTom Rini <trini@konsulko.com>2021-08-11 08:31:56 -0400
commita25277122dad99837b78cd3b3ae6b8214df88c26 (patch)
tree679029a27b4ee0428b0b33d91896149243219bd4 /include
parent4dc1a5c248ecbd06269a7854dd06c57e9a52f19c (diff)
parentd248627f9d4218688e7430bc714405a23885abfa (diff)
downloadu-boot-a25277122dad99837b78cd3b3ae6b8214df88c26.zip
u-boot-a25277122dad99837b78cd3b3ae6b8214df88c26.tar.gz
u-boot-a25277122dad99837b78cd3b3ae6b8214df88c26.tar.bz2
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.h2
-rw-r--r--include/flash.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/include/configs/qemu-riscv.h b/include/configs/qemu-riscv.h
index 5291de8..bbeea96 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 42b18a6..f3959f5 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