mirror of
https://github.com/tiagovignatti/intel-gpu-tools.git
synced 2025-06-10 09:26:10 +00:00
intel_audio_dump: fix CTS/M value index
This patch fixes the reversed CTS/M value index when dumping the 'audio M/CTS programing enable' register. Signed-off-by: Mengdong Lin <mengdong.lin@intel.com> Reviewed-by: Haihao Xiang <haihao.xiang@intel.com> Signed-off-by: Ben Widawsky <benjamin.widawsky@intel.com>
This commit is contained in:
parent
374290e430
commit
8fe0c50871
@ -97,6 +97,11 @@ static int get_num_pipes(void)
|
||||
return num_pipes;
|
||||
}
|
||||
|
||||
static const char * const cts_m_value_index[] = {
|
||||
[0] = "CTS",
|
||||
[1] = "M",
|
||||
};
|
||||
|
||||
static const char * const pixel_clock[] = {
|
||||
[0] = "25.2 / 1.001 MHz",
|
||||
[1] = "25.2 MHz",
|
||||
@ -1408,7 +1413,8 @@ static void dump_aud_m_cts_enable(int index)
|
||||
|
||||
printf("%s CTS_programming\t\t\t%#lx\n", prefix, BITS(dword, 19, 0));
|
||||
printf("%s Enable_CTS_or_M_programming\t%lu\n", prefix, BIT(dword, 20));
|
||||
printf("%s CTS_M value Index\t\t\t%s\n", prefix, BIT(dword, 21) ? "CTS" : "M");
|
||||
printf("%s CTS_M value Index\t\t\t[0x%lx] %s\n",prefix, BIT(dword, 21),
|
||||
OPNAME(cts_m_value_index, BIT(dword, 21)));
|
||||
}
|
||||
|
||||
static void dump_aud_power_state(void)
|
||||
|
Loading…
x
Reference in New Issue
Block a user