1 // SPDX-License-Identifier: MIT
3 * Copyright © 2022 Intel Corporation
6 #include <linux/math64.h>
8 #include "xe_gt_clock.h"
10 #include "regs/xe_gt_regs.h"
11 #include "regs/xe_regs.h"
12 #include "xe_assert.h"
13 #include "xe_device.h"
15 #include "xe_macros.h"
18 static u32 read_reference_ts_freq(struct xe_gt *gt)
20 u32 ts_override = xe_mmio_read32(>->mmio, TIMESTAMP_OVERRIDE);
21 u32 base_freq, frac_freq;
23 base_freq = REG_FIELD_GET(TIMESTAMP_OVERRIDE_US_COUNTER_DIVIDER_MASK,
27 frac_freq = REG_FIELD_GET(TIMESTAMP_OVERRIDE_US_COUNTER_DENOMINATOR_MASK,
29 frac_freq = 1000000 / (frac_freq + 1);
31 return base_freq + frac_freq;
34 static u32 get_crystal_clock_freq(u32 rpm_config_reg)
36 const u32 f19_2_mhz = 19200000;
37 const u32 f24_mhz = 24000000;
38 const u32 f25_mhz = 25000000;
39 const u32 f38_4_mhz = 38400000;
40 u32 crystal_clock = REG_FIELD_GET(RPM_CONFIG0_CRYSTAL_CLOCK_FREQ_MASK,
43 switch (crystal_clock) {
44 case RPM_CONFIG0_CRYSTAL_CLOCK_FREQ_24_MHZ:
46 case RPM_CONFIG0_CRYSTAL_CLOCK_FREQ_19_2_MHZ:
48 case RPM_CONFIG0_CRYSTAL_CLOCK_FREQ_38_4_MHZ:
50 case RPM_CONFIG0_CRYSTAL_CLOCK_FREQ_25_MHZ:
53 XE_WARN_ON("NOT_POSSIBLE");
58 int xe_gt_clock_init(struct xe_gt *gt)
60 u32 ctc_reg = xe_mmio_read32(>->mmio, CTC_MODE);
63 /* Assuming gen11+ so assert this assumption is correct */
64 xe_gt_assert(gt, GRAPHICS_VER(gt_to_xe(gt)) >= 11);
66 if (ctc_reg & CTC_SOURCE_DIVIDE_LOGIC) {
67 freq = read_reference_ts_freq(gt);
69 u32 c0 = xe_mmio_read32(>->mmio, RPM_CONFIG0);
71 freq = get_crystal_clock_freq(c0);
74 * Now figure out how the command stream's timestamp
75 * register increments from this frequency (it might
76 * increment only every few clock cycle).
78 freq >>= 3 - REG_FIELD_GET(RPM_CONFIG0_CTC_SHIFT_PARAMETER_MASK, c0);
81 gt->info.reference_clock = freq;
85 static u64 div_u64_roundup(u64 n, u32 d)
87 return div_u64(n + d - 1, d);
91 * xe_gt_clock_interval_to_ms - Convert sampled GT clock ticks to msec
94 * @count: count of GT clock ticks
96 * Returns: time in msec
98 u64 xe_gt_clock_interval_to_ms(struct xe_gt *gt, u64 count)
100 return div_u64_roundup(count * MSEC_PER_SEC, gt->info.reference_clock);