Skip to content
Snippets Groups Projects
Select Git revision
  • a13aaf157467e694a3824d81304106b58d4c20d6
  • drm-misc-templates default
  • wip/final/kci-gitlab-lava-v1
  • wip/vignesh/kci-lava-gitlab-runner
  • kci-gitlab-igt-v8
  • kci-gitlab-igt-v4
  • drm-misc-fixes-2024-10-02
  • drm-misc-next-2024-09-26
  • drm-misc-fixes-2024-09-26
  • drm-misc-next-2024-09-20
  • drm-misc-fixes-2024-09-12
  • drm-misc-fixes-2024-09-05
  • drm-misc-next-fixes-2024-09-05
  • drm-misc-fixes-2024-08-29
  • drm-misc-next-2024-08-29
  • drm-misc-next-2024-08-22
  • drm-misc-fixes-2024-08-22
  • drm-misc-next-2024-08-16
  • drm-misc-fixes-2024-08-15
  • drm-misc-next-2024-08-09
  • drm-misc-fixes-2024-08-08
  • drm-misc-next-2024-08-01
  • drm-misc-fixes-2024-08-01
  • drm-misc-next-fixes-2024-07-25
  • drm-misc-next-fixes-2024-07-19
  • drm-misc-next-fixes-2024-07-11
26 results

Kconfig

Blame
  • intel_display.c 515.92 KiB
    /*
     * Copyright © 2006-2007 Intel Corporation
     *
     * Permission is hereby granted, free of charge, to any person obtaining a
     * copy of this software and associated documentation files (the "Software"),
     * to deal in the Software without restriction, including without limitation
     * the rights to use, copy, modify, merge, publish, distribute, sublicense,
     * and/or sell copies of the Software, and to permit persons to whom the
     * Software is furnished to do so, subject to the following conditions:
     *
     * The above copyright notice and this permission notice (including the next
     * paragraph) shall be included in all copies or substantial portions of the
     * Software.
     *
     * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
     * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
     * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
     * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
     * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
     * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
     * DEALINGS IN THE SOFTWARE.
     *
     * Authors:
     *	Eric Anholt <eric@anholt.net>
     */
    
    #include <linux/i2c.h>
    #include <linux/input.h>
    #include <linux/intel-iommu.h>
    #include <linux/kernel.h>
    #include <linux/module.h>
    #include <linux/dma-resv.h>
    #include <linux/slab.h>
    
    #include <drm/drm_atomic.h>
    #include <drm/drm_atomic_helper.h>
    #include <drm/drm_atomic_uapi.h>
    #include <drm/drm_dp_helper.h>
    #include <drm/drm_edid.h>
    #include <drm/drm_fourcc.h>
    #include <drm/drm_plane_helper.h>
    #include <drm/drm_probe_helper.h>
    #include <drm/drm_rect.h>
    #include <drm/i915_drm.h>
    
    #include "display/intel_crt.h"
    #include "display/intel_ddi.h"
    #include "display/intel_dp.h"
    #include "display/intel_dsi.h"
    #include "display/intel_dvo.h"
    #include "display/intel_gmbus.h"
    #include "display/intel_hdmi.h"
    #include "display/intel_lvds.h"
    #include "display/intel_sdvo.h"
    #include "display/intel_tv.h"
    #include "display/intel_vdsc.h"
    
    #include "gt/intel_rps.h"
    
    #include "i915_drv.h"
    #include "i915_trace.h"
    #include "intel_acpi.h"
    #include "intel_atomic.h"
    #include "intel_atomic_plane.h"
    #include "intel_bw.h"
    #include "intel_cdclk.h"
    #include "intel_color.h"
    #include "intel_display_types.h"
    #include "intel_dp_link_training.h"
    #include "intel_fbc.h"