drm/xe/display: Implement display support
authorMaarten Lankhorst <maarten.lankhorst@linux.intel.com>
Thu, 17 Aug 2023 20:30:41 +0000 (16:30 -0400)
committerRodrigo Vivi <rodrigo.vivi@intel.com>
Thu, 21 Dec 2023 16:43:39 +0000 (11:43 -0500)
commit44e694958b95395bd1c41508c88c8ca141bf9bd7
tree1b3e18abe5f05a6716e6dee725a3c2c50d5db30c
parenta839e365ac88f0fa9f8c7ae92b9e7e66bbd9e4d7
drm/xe/display: Implement display support

As for display, the intent is to share the display code with the i915
driver so that there is maximum reuse there.

We do this by recompiling i915/display code twice.
Now that i915 has been adapted to support the Xe build, we can add
the xe/display support.

This initial work is a collaboration of many people and unfortunately
this squashed patch won't fully honor the proper credits.
But let's try to add a few from the squashed patches:

Co-developed-by: Matthew Brost <matthew.brost@intel.com>
Co-developed-by: Jani Nikula <jani.nikula@intel.com>
Co-developed-by: Lucas De Marchi <lucas.demarchi@intel.com>
Co-developed-by: Matt Roper <matthew.d.roper@intel.com>
Co-developed-by: Mauro Carvalho Chehab <mchehab@kernel.org>
Co-developed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Co-developed-by: Dave Airlie <airlied@redhat.com>
Signed-off-by: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
59 files changed:
drivers/gpu/drm/xe/.kunitconfig
drivers/gpu/drm/xe/Kconfig
drivers/gpu/drm/xe/Makefile
drivers/gpu/drm/xe/compat-i915-headers/gem/i915_gem_lmem.h [new file with mode: 0644]
drivers/gpu/drm/xe/compat-i915-headers/gem/i915_gem_mman.h [new file with mode: 0644]
drivers/gpu/drm/xe/compat-i915-headers/gem/i915_gem_object.h [new file with mode: 0644]
drivers/gpu/drm/xe/compat-i915-headers/gt/intel_rps.h [new file with mode: 0644]
drivers/gpu/drm/xe/compat-i915-headers/i915_active_types.h [new file with mode: 0644]
drivers/gpu/drm/xe/compat-i915-headers/i915_config.h [new file with mode: 0644]
drivers/gpu/drm/xe/compat-i915-headers/i915_debugfs.h [new file with mode: 0644]
drivers/gpu/drm/xe/compat-i915-headers/i915_drv.h [new file with mode: 0644]
drivers/gpu/drm/xe/compat-i915-headers/i915_fixed.h [new file with mode: 0644]
drivers/gpu/drm/xe/compat-i915-headers/i915_gpu_error.h [new file with mode: 0644]
drivers/gpu/drm/xe/compat-i915-headers/i915_irq.h [new file with mode: 0644]
drivers/gpu/drm/xe/compat-i915-headers/i915_reg.h [new file with mode: 0644]
drivers/gpu/drm/xe/compat-i915-headers/i915_reg_defs.h [new file with mode: 0644]
drivers/gpu/drm/xe/compat-i915-headers/i915_trace.h [new file with mode: 0644]
drivers/gpu/drm/xe/compat-i915-headers/i915_utils.h [new file with mode: 0644]
drivers/gpu/drm/xe/compat-i915-headers/i915_vgpu.h [new file with mode: 0644]
drivers/gpu/drm/xe/compat-i915-headers/i915_vma.h [new file with mode: 0644]
drivers/gpu/drm/xe/compat-i915-headers/i915_vma_types.h [new file with mode: 0644]
drivers/gpu/drm/xe/compat-i915-headers/intel_clock_gating.h [new file with mode: 0644]
drivers/gpu/drm/xe/compat-i915-headers/intel_mchbar_regs.h [new file with mode: 0644]
drivers/gpu/drm/xe/compat-i915-headers/intel_pci_config.h [new file with mode: 0644]
drivers/gpu/drm/xe/compat-i915-headers/intel_pcode.h [new file with mode: 0644]
drivers/gpu/drm/xe/compat-i915-headers/intel_runtime_pm.h [new file with mode: 0644]
drivers/gpu/drm/xe/compat-i915-headers/intel_step.h [new file with mode: 0644]
drivers/gpu/drm/xe/compat-i915-headers/intel_uc_fw.h [new file with mode: 0644]
drivers/gpu/drm/xe/compat-i915-headers/intel_uncore.h [new file with mode: 0644]
drivers/gpu/drm/xe/compat-i915-headers/intel_wakeref.h [new file with mode: 0644]
drivers/gpu/drm/xe/compat-i915-headers/pxp/intel_pxp.h [new file with mode: 0644]
drivers/gpu/drm/xe/compat-i915-headers/soc/intel_dram.h [new file with mode: 0644]
drivers/gpu/drm/xe/compat-i915-headers/soc/intel_gmch.h [new file with mode: 0644]
drivers/gpu/drm/xe/compat-i915-headers/soc/intel_pch.h [new file with mode: 0644]
drivers/gpu/drm/xe/compat-i915-headers/vlv_sideband.h [new file with mode: 0644]
drivers/gpu/drm/xe/compat-i915-headers/vlv_sideband_reg.h [new file with mode: 0644]
drivers/gpu/drm/xe/display/ext/i915_irq.c [new file with mode: 0644]
drivers/gpu/drm/xe/display/ext/i915_utils.c [new file with mode: 0644]
drivers/gpu/drm/xe/display/intel_fb_bo.c [new file with mode: 0644]
drivers/gpu/drm/xe/display/intel_fb_bo.h [new file with mode: 0644]
drivers/gpu/drm/xe/display/intel_fbdev_fb.c [new file with mode: 0644]
drivers/gpu/drm/xe/display/intel_fbdev_fb.h [new file with mode: 0644]
drivers/gpu/drm/xe/display/xe_display_rps.c [new file with mode: 0644]
drivers/gpu/drm/xe/display/xe_fb_pin.c [new file with mode: 0644]
drivers/gpu/drm/xe/display/xe_hdcp_gsc.c [new file with mode: 0644]
drivers/gpu/drm/xe/display/xe_plane_initial.c [new file with mode: 0644]
drivers/gpu/drm/xe/regs/xe_reg_defs.h
drivers/gpu/drm/xe/regs/xe_regs.h
drivers/gpu/drm/xe/xe_bo.c
drivers/gpu/drm/xe/xe_device.c
drivers/gpu/drm/xe/xe_device_types.h
drivers/gpu/drm/xe/xe_display.c [new file with mode: 0644]
drivers/gpu/drm/xe/xe_display.h [new file with mode: 0644]
drivers/gpu/drm/xe/xe_ggtt.c
drivers/gpu/drm/xe/xe_ggtt.h
drivers/gpu/drm/xe/xe_irq.c
drivers/gpu/drm/xe/xe_module.c
drivers/gpu/drm/xe/xe_pci.c
drivers/gpu/drm/xe/xe_pm.c