linux/drivers/gpu/drm/i915/display/intel_pch_display.h
<<
>>
Prefs
   1/* SPDX-License-Identifier: MIT */
   2/*
   3 * Copyright © 2021 Intel Corporation
   4 */
   5
   6#ifndef _INTEL_PCH_DISPLAY_H_
   7#define _INTEL_PCH_DISPLAY_H_
   8
   9struct intel_atomic_state;
  10struct intel_crtc;
  11struct intel_crtc_state;
  12
  13void ilk_pch_enable(struct intel_atomic_state *state,
  14                    struct intel_crtc *crtc);
  15void ilk_pch_disable(struct intel_atomic_state *state,
  16                     struct intel_crtc *crtc);
  17void ilk_pch_post_disable(struct intel_atomic_state *state,
  18                          struct intel_crtc *crtc);
  19void ilk_pch_get_config(struct intel_crtc_state *crtc_state);
  20
  21void lpt_pch_enable(struct intel_atomic_state *state,
  22                    struct intel_crtc *crtc);
  23void lpt_pch_disable(struct intel_atomic_state *state,
  24                     struct intel_crtc *crtc);
  25void lpt_pch_get_config(struct intel_crtc_state *crtc_state);
  26
  27#endif
  28