1 /* SPDX-License-Identifier: MIT */ 2 /* 3 * Copyright © 2022 Intel Corporation 4 */ 5 6 #ifndef _XE_GT_MCR_H_ 7 #define _XE_GT_MCR_H_ 8 9 #include "regs/xe_reg_defs.h" 10 11 struct drm_printer; 12 struct xe_gt; 13 14 void xe_gt_mcr_init(struct xe_gt *gt); 15 16 void xe_gt_mcr_set_implicit_defaults(struct xe_gt *gt); 17 18 u32 xe_gt_mcr_unicast_read(struct xe_gt *gt, struct xe_reg_mcr mcr_reg, 19 int group, int instance); 20 u32 xe_gt_mcr_unicast_read_any(struct xe_gt *gt, struct xe_reg_mcr mcr_reg); 21 22 void xe_gt_mcr_unicast_write(struct xe_gt *gt, struct xe_reg_mcr mcr_reg, 23 u32 value, int group, int instance); 24 void xe_gt_mcr_multicast_write(struct xe_gt *gt, struct xe_reg_mcr mcr_reg, 25 u32 value); 26 27 void xe_gt_mcr_steering_dump(struct xe_gt *gt, struct drm_printer *p); 28 29 #endif /* _XE_GT_MCR_H_ */ 30