1 // SPDX-License-Identifier: MIT 2 /* 3 * Copyright © 2024 Intel Corporation 4 */ 5 6 #include "intel_display_core.h" 7 #include "intel_display_wa.h" 8 #include "xe_device.h" 9 #include "xe_wa.h" 10 11 #include <generated/xe_wa_oob.h> 12 13 bool intel_display_needs_wa_16023588340(struct intel_display *display) 14 { 15 struct xe_device *xe = to_xe_device(display->drm); 16 struct xe_gt *wa_gt = xe_root_mmio_gt(xe); 17 18 return wa_gt && XE_GT_WA(wa_gt, 16023588340); 19 } 20