2021-10-15 07:16:18 +00:00
|
|
|
/* SPDX-License-Identifier: MIT */
|
|
|
|
/*
|
|
|
|
* Copyright © 2021 Intel Corporation
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _INTEL_PCH_DISPLAY_H_
|
|
|
|
#define _INTEL_PCH_DISPLAY_H_
|
|
|
|
|
|
|
|
struct intel_atomic_state;
|
2021-10-15 07:16:19 +00:00
|
|
|
struct intel_crtc;
|
2021-10-15 07:16:18 +00:00
|
|
|
struct intel_crtc_state;
|
|
|
|
|
2021-10-15 07:16:19 +00:00
|
|
|
void ilk_pch_enable(struct intel_atomic_state *state,
|
|
|
|
struct intel_crtc *crtc);
|
2021-10-15 07:16:23 +00:00
|
|
|
void ilk_pch_disable(struct intel_atomic_state *state,
|
|
|
|
struct intel_crtc *crtc);
|
|
|
|
void ilk_pch_post_disable(struct intel_atomic_state *state,
|
|
|
|
struct intel_crtc *crtc);
|
2021-10-15 07:16:21 +00:00
|
|
|
void ilk_pch_get_config(struct intel_crtc_state *crtc_state);
|
2021-10-15 07:16:18 +00:00
|
|
|
|
2021-10-15 07:16:19 +00:00
|
|
|
void lpt_pch_enable(struct intel_atomic_state *state,
|
|
|
|
struct intel_crtc *crtc);
|
2021-10-15 07:16:25 +00:00
|
|
|
void lpt_pch_disable(struct intel_atomic_state *state,
|
|
|
|
struct intel_crtc *crtc);
|
2021-10-18 15:35:25 +00:00
|
|
|
void lpt_pch_get_config(struct intel_crtc_state *crtc_state);
|
2021-10-15 07:16:18 +00:00
|
|
|
|
|
|
|
#endif
|