mirror of
https://review.coreboot.org/flashrom.git
synced 2025-04-27 07:02:34 +02:00
ich_descriptors.c Invert the meaning of 'dual_output' bit
In the Flash Component description register (FLCOMP) bit 30 reports the capability of using dual output for fast read operation on the flash component. According to various SPI Programming Guides (checked for Panther Point, Lewisburg C620, Apollo Lake and Elkhart Lake) the dual output is enabled when this bit is set and disabled if not. Currently the logic displays it the other way around when parsing the descriptor. This patch changes this so now if bit 30 in FLCOMP is not set, dual read support for fast read operation is shown as disabled. Change-Id: If6282ac8326ab0b92e9c70c09dba0299bf0deb6f Signed-off-by: Werner Zeh <werner.zeh@siemens.com> Reviewed-on: https://review.coreboot.org/c/flashrom/+/61362 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
This commit is contained in:
parent
6080d488dd
commit
ff4c624d94
@ -380,7 +380,7 @@ void prettyprint_ich_descriptor_component(enum ich_chipset cs, const struct ich_
|
||||
pprint_freq(cs, desc->component.modes.freq_fastread));
|
||||
if (cs > CHIPSET_6_SERIES_COUGAR_POINT)
|
||||
msg_pdbg2("Dual Output Fast Read Support: %sabled\n",
|
||||
desc->component.modes.dual_output ? "dis" : "en");
|
||||
desc->component.modes.dual_output ? "en" : "dis");
|
||||
|
||||
int has_forbidden_opcode = 0;
|
||||
if (desc->component.FLILL != 0) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user