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} };