mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-09 05:31:17 -04:00
drm/xe/display: Create a dummy version for vga decode
This introduces an exclusive version of vga decode for xe. Rest of the display changes will be re-used from i915. Currently it adds just a dummy implementation. VGA decode needs to be handled correctly in i915, proper implementation will be adopted once the i915 changes are finalized and merged in upstream. v2: Addressed Arun's review comments Signed-off-by: Uma Shankar <uma.shankar@intel.com> Reviewed-by: Arun R Murthy <arun.r.mruthy@intel.com> Acked-by: Jani Nikula <jani.nikula@intel.com> Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
This commit is contained in:
committed by
Rodrigo Vivi
parent
08ea5ea2e8
commit
c79802d100
@@ -152,6 +152,7 @@ xe-$(CONFIG_DRM_XE_DISPLAY) += \
|
||||
display/xe_hdcp_gsc.o \
|
||||
display/xe_plane_initial.o \
|
||||
display/xe_display_rps.o \
|
||||
display/xe_display_misc.o \
|
||||
display/intel_fbdev_fb.o \
|
||||
display/intel_fb_bo.o \
|
||||
display/ext/i915_irq.o \
|
||||
|
||||
16
drivers/gpu/drm/xe/display/xe_display_misc.c
Normal file
16
drivers/gpu/drm/xe/display/xe_display_misc.c
Normal file
@@ -0,0 +1,16 @@
|
||||
// SPDX-License-Identifier: MIT
|
||||
/*
|
||||
* Copyright © 2023 Intel Corporation
|
||||
*/
|
||||
|
||||
#include "intel_display_types.h"
|
||||
|
||||
struct pci_dev;
|
||||
|
||||
unsigned int intel_gmch_vga_set_decode(struct pci_dev *pdev, bool enable_decode);
|
||||
|
||||
unsigned int intel_gmch_vga_set_decode(struct pci_dev *pdev, bool enable_decode)
|
||||
{
|
||||
/* ToDo: Implement the actual handling of vga decode */
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user