mirror of
https://github.com/tiagovignatti/intel-gpu-tools.git
synced 2025-06-10 09:26:10 +00:00
tools/intel_bios_reader: fix SSC freq for VLV/CHV
VLV/CHV has a fixed 100MHz SSC reference frequency. Signed-off-by: Imre Deak <imre.deak@intel.com>
This commit is contained in:
parent
d9a25af39c
commit
1dc4884875
@ -153,7 +153,9 @@ static void dump_general_features(const struct bdb_block *block)
|
||||
printf("\tExternal VBT: %s\n", YESNO(features->download_ext_vbt));
|
||||
printf("\tEnable SSC: %s\n", YESNO(features->enable_ssc));
|
||||
if (features->enable_ssc) {
|
||||
if (HAS_PCH_SPLIT(devid))
|
||||
if (IS_VALLEYVIEW(devid) || IS_CHERRYVIEW(devid))
|
||||
printf("\tSSC frequency: 100 MHz\n");
|
||||
else if (HAS_PCH_SPLIT(devid))
|
||||
printf("\tSSC frequency: %s\n", features->ssc_freq ?
|
||||
"100 MHz" : "120 MHz");
|
||||
else
|
||||
|
Loading…
x
Reference in New Issue
Block a user