Merge tag 'for-6.4-rc1-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/kdave...
[linux-block.git] / drivers / gpu / drm / i915 / gt / intel_gt_mcr.h
CommitLineData
e7858254
MR
1/* SPDX-License-Identifier: MIT */
2/*
3 * Copyright © 2022 Intel Corporation
4 */
5
6#ifndef __INTEL_GT_MCR__
7#define __INTEL_GT_MCR__
8
9#include "intel_gt_types.h"
10
11void intel_gt_mcr_init(struct intel_gt *gt);
4186e218
MR
12void intel_gt_mcr_lock(struct intel_gt *gt, unsigned long *flags);
13void intel_gt_mcr_unlock(struct intel_gt *gt, unsigned long flags);
e7858254 14
3fe6c7f5 15u32 intel_gt_mcr_read(struct intel_gt *gt,
58bc2453 16 i915_mcr_reg_t reg,
3fe6c7f5 17 int group, int instance);
58bc2453
MR
18u32 intel_gt_mcr_read_any_fw(struct intel_gt *gt, i915_mcr_reg_t reg);
19u32 intel_gt_mcr_read_any(struct intel_gt *gt, i915_mcr_reg_t reg);
3fe6c7f5
MR
20
21void intel_gt_mcr_unicast_write(struct intel_gt *gt,
58bc2453 22 i915_mcr_reg_t reg, u32 value,
3fe6c7f5
MR
23 int group, int instance);
24void intel_gt_mcr_multicast_write(struct intel_gt *gt,
58bc2453 25 i915_mcr_reg_t reg, u32 value);
3fe6c7f5 26void intel_gt_mcr_multicast_write_fw(struct intel_gt *gt,
58bc2453 27 i915_mcr_reg_t reg, u32 value);
3fe6c7f5 28
58bc2453 29u32 intel_gt_mcr_multicast_rmw(struct intel_gt *gt, i915_mcr_reg_t reg,
851435ec
MR
30 u32 clear, u32 set);
31
3fe6c7f5 32void intel_gt_mcr_get_nonterminated_steering(struct intel_gt *gt,
58bc2453 33 i915_mcr_reg_t reg,
3fe6c7f5
MR
34 u8 *group, u8 *instance);
35
36void intel_gt_mcr_report_steering(struct drm_printer *p, struct intel_gt *gt,
37 bool dump_table);
e7858254 38
9a92732f
MR
39void intel_gt_mcr_get_ss_steering(struct intel_gt *gt, unsigned int dss,
40 unsigned int *group, unsigned int *instance);
41
192bb40f
MR
42int intel_gt_mcr_wait_for_reg(struct intel_gt *gt,
43 i915_mcr_reg_t reg,
44 u32 mask,
45 u32 value,
46 unsigned int fast_timeout_us,
47 unsigned int slow_timeout_ms);
3068bec8 48
9a92732f
MR
49/*
50 * Helper for for_each_ss_steering loop. On pre-Xe_HP platforms, subslice
51 * presence is determined by using the group/instance as direct lookups in the
52 * slice/subslice topology. On Xe_HP and beyond, the steering is unrelated to
53 * the topology, so we lookup the DSS ID directly in "slice 0."
54 */
55#define _HAS_SS(ss_, gt_, group_, instance_) ( \
56 GRAPHICS_VER_FULL(gt_->i915) >= IP_VER(12, 50) ? \
57 intel_sseu_has_subslice(&(gt_)->info.sseu, 0, ss_) : \
58 intel_sseu_has_subslice(&(gt_)->info.sseu, group_, instance_))
59
60/*
61 * Loop over each subslice/DSS and determine the group and instance IDs that
62 * should be used to steer MCR accesses toward this DSS.
63 */
64#define for_each_ss_steering(ss_, gt_, group_, instance_) \
65 for (ss_ = 0, intel_gt_mcr_get_ss_steering(gt_, 0, &group_, &instance_); \
66 ss_ < I915_MAX_SS_FUSE_BITS; \
67 ss_++, intel_gt_mcr_get_ss_steering(gt_, ss_, &group_, &instance_)) \
68 for_each_if(_HAS_SS(ss_, gt_, group_, instance_))
69
e7858254 70#endif /* __INTEL_GT_MCR__ */