Stefan Reinauer has uploaded this change for review. ( https://review.coreboot.org/c/em100/+/46925 )
Change subject: Add enter/exit 4-byte and quad io mode commands ......................................................................
Add enter/exit 4-byte and quad io mode commands
Signed-off-by: Alexander Amelkin a.amelkin@yadro.com Change-Id: I1f022b4f9803d5e9657484349541776fe8a746cf --- M trace.c 1 file changed, 4 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/em100 refs/changes/25/46925/1
diff --git a/trace.c b/trace.c index 5e98acb..448a469 100644 --- a/trace.c +++ b/trace.c @@ -124,6 +124,10 @@ {"read JEDEC ID", 0x9f, 0, 0}, {"chip erase", 0xc7, 0, 0}, {"sector erase", 0xd8, 1, 0}, + {"enter 4-byte address mode", 0xb7, 0, 0}, + {"exit 4-byte address mode", 0xe9, 0, 0}, + {"enter quad i/o mode", 0x35, 0, 0}, + {"exit quat i/o mode", 0xf5, 0, 0},
{"unknown command", 0xff, 0, 0} };
Hello build bot (Jenkins), Martin Roth,
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/c/em100/+/46925
to look at the new patch set (#2).
Change subject: Add enter/exit 4-byte and quad io mode commands ......................................................................
Add enter/exit 4-byte and quad io mode commands
Signed-off-by: Alexander Amelkin a.amelkin@yadro.com Change-Id: I1f022b4f9803d5e9657484349541776fe8a746cf --- M trace.c 1 file changed, 4 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/em100 refs/changes/25/46925/2
Martin Roth has posted comments on this change. ( https://review.coreboot.org/c/em100/+/46925 )
Change subject: Add enter/exit 4-byte and quad io mode commands ......................................................................
Patch Set 2: Code-Review+2
Angel Pons has posted comments on this change. ( https://review.coreboot.org/c/em100/+/46925 )
Change subject: Add enter/exit 4-byte and quad io mode commands ......................................................................
Patch Set 2: Code-Review+2
Stefan Reinauer has submitted this change. ( https://review.coreboot.org/c/em100/+/46925 )
Change subject: Add enter/exit 4-byte and quad io mode commands ......................................................................
Add enter/exit 4-byte and quad io mode commands
Signed-off-by: Alexander Amelkin a.amelkin@yadro.com Change-Id: I1f022b4f9803d5e9657484349541776fe8a746cf Reviewed-on: https://review.coreboot.org/c/em100/+/46925 Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Martin Roth martinroth@google.com Reviewed-by: Angel Pons th3fanbus@gmail.com --- M trace.c 1 file changed, 4 insertions(+), 0 deletions(-)
Approvals: build bot (Jenkins): Verified Martin Roth: Looks good to me, approved Angel Pons: Looks good to me, approved
diff --git a/trace.c b/trace.c index 5e98acb..0c6cdfd 100644 --- a/trace.c +++ b/trace.c @@ -124,6 +124,10 @@ {"read JEDEC ID", 0x9f, 0, 0}, {"chip erase", 0xc7, 0, 0}, {"sector erase", 0xd8, 1, 0}, + {"enter 4-byte address mode", 0xb7, 0, 0}, + {"exit 4-byte address mode", 0xe9, 0, 0}, + {"enter quad i/o mode", 0x35, 0, 0}, + {"exit quad i/o mode", 0xf5, 0, 0},
{"unknown command", 0xff, 0, 0} };