soc/intel/common/tcss: Rename TCSS_DISPLAY

This name isn't very meaningful, rename the config option to
ENABLE_TCSS_DISPLAY_DETECTION to make its meaning more obvious.

Change-Id: Ib21a3b5a37d25f93bd515f8c6e5ad39c9d2ea1c4
Signed-off-by: Tim Wawrzynczak <twawrzynczak@chromium.org>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/51771
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-by: Furquan Shaikh <furquan@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Tim Wawrzynczak 2021-03-24 09:59:51 -06:00 committed by Patrick Georgi
parent eb6ebc025e
commit 5de0897671
2 changed files with 3 additions and 3 deletions

View File

@ -3,8 +3,8 @@ config SOC_INTEL_COMMON_BLOCK_TCSS
help help
Sets up USB2/3 port mapping in TCSS MUX and sets MUX to disconnect state Sets up USB2/3 port mapping in TCSS MUX and sets MUX to disconnect state
config TCSS_DISPLAY config ENABLE_TCSS_DISPLAY_DETECTION
bool "Enable early TCSS display" bool "Enable detection of displays over USB Type-C ports with TCSS"
depends on SOC_INTEL_COMMON_BLOCK_TCSS && RUN_FSP_GOP depends on SOC_INTEL_COMMON_BLOCK_TCSS && RUN_FSP_GOP
help help
Enable displays to be detected over Type-C ports during boot. Enable displays to be detected over Type-C ports during boot.

View File

@ -320,6 +320,6 @@ void tcss_configure(void)
for (i = 0; i < num_ports; i++) for (i = 0; i < num_ports; i++)
tcss_init_mux(i, &port_map[i]); tcss_init_mux(i, &port_map[i]);
if (CONFIG(TCSS_DISPLAY)) if (CONFIG(ENABLE_TCSS_DISPLAY_DETECTION))
tcss_configure_dp_mode(port_map, num_ports); tcss_configure_dp_mode(port_map, num_ports);
} }