2021-11-22 13:15:04 +02:00
|
|
|
/* SPDX-License-Identifier: MIT */
|
|
|
|
/*
|
|
|
|
* Copyright © 2021 Intel Corporation
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __ICL_DSI_H__
|
|
|
|
#define __ICL_DSI_H__
|
|
|
|
|
2023-06-30 18:58:46 +03:00
|
|
|
struct intel_bios_encoder_data;
|
2021-11-22 13:15:04 +02:00
|
|
|
struct intel_crtc_state;
|
2024-10-28 22:07:29 +02:00
|
|
|
struct intel_display;
|
2021-11-22 13:15:04 +02:00
|
|
|
|
2024-10-28 22:07:29 +02:00
|
|
|
void icl_dsi_init(struct intel_display *display,
|
2023-06-30 18:58:46 +03:00
|
|
|
const struct intel_bios_encoder_data *devdata);
|
2021-11-22 13:15:04 +02:00
|
|
|
void icl_dsi_frame_update(struct intel_crtc_state *crtc_state);
|
|
|
|
|
|
|
|
#endif /* __ICL_DSI_H__ */
|