projects
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6bbe036
)
m25p80: Add support for n25q512ax3
author
Cédric Le Goater
<clg@kaod.org>
Tue, 1 Sep 2020 12:21:50 +0000
(14:21 +0200)
committer
Cédric Le Goater
<clg@kaod.org>
Tue, 1 Sep 2020 12:21:50 +0000
(14:21 +0200)
Datasheet available here :
https://www.micron.com/-/media/client/global/Documents/Products/Data%20Sheet/NOR%20Flash/Serial%20NOR/N25Q/n25q_512mb_1ce_3v_65nm.pdf
Reviewed-by: Joel Stanley <joel@jms.id.au>
Message-Id: <
20200819100956
.
2216690
-4-clg@kaod.org>
Signed-off-by: Cédric Le Goater <clg@kaod.org>
hw/block/m25p80.c
patch
|
blob
|
history
diff --git
a/hw/block/m25p80.c
b/hw/block/m25p80.c
index 605ff55c67568230e63b36462bcdac2b2ca8f357..62ba6aaf01cfdac38c68152ce53b81653a66de46 100644
(file)
--- a/
hw/block/m25p80.c
+++ b/
hw/block/m25p80.c
@@
-237,6
+237,7
@@
static const FlashPartInfo known_devices[] = {
{ INFO("n25q128", 0x20ba18, 0, 64 << 10, 256, 0) },
{ INFO("n25q256a", 0x20ba19, 0, 64 << 10, 512, ER_4K) },
{ INFO("n25q512a", 0x20ba20, 0, 64 << 10, 1024, ER_4K) },
+ { INFO("n25q512ax3", 0x20ba20, 0x1000, 64 << 10, 1024, ER_4K) },
{ INFO_STACKED("n25q00", 0x20ba21, 0x1000, 64 << 10, 2048, ER_4K, 4) },
{ INFO_STACKED("n25q00a", 0x20bb21, 0x1000, 64 << 10, 2048, ER_4K, 4) },
{ INFO_STACKED("mt25ql01g", 0x20ba21, 0x1040, 64 << 10, 2048, ER_4K, 2) },