We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 78e418d commit dbea79aCopy full SHA for dbea79a
drivers/gpu/drm/i915/gt/intel_gt_clock_utils.c
@@ -147,8 +147,10 @@ static u32 gen4_read_clock_frequency(struct intel_uncore *uncore)
147
* "The value in this register increments once every 16
148
* hclks." (through the “Clocking Configuration”
149
* (“CLKCFG”) MCHBAR register)
150
+ *
151
+ * Testing on actual hardware has shown there is no /16.
152
*/
- return RUNTIME_INFO(uncore->i915)->rawclk_freq * 1000 / 16;
153
+ return RUNTIME_INFO(uncore->i915)->rawclk_freq * 1000;
154
}
155
156
static u32 read_clock_frequency(struct intel_uncore *uncore)
0 commit comments