File tree Expand file tree Collapse file tree 5 files changed +22
-5
lines changed
drivers/gpu/drm/i915/display Expand file tree Collapse file tree 5 files changed +22
-5
lines changed Original file line number Diff line number Diff line change 111
111
#include "skl_universal_plane.h"
112
112
#include "vlv_dsi_pll.h"
113
113
#include "vlv_sideband.h"
114
+ #include "vlv_dsi.h"
114
115
115
116
static void intel_set_transcoder_timings (const struct intel_crtc_state * crtc_state );
116
117
static void intel_set_pipe_src_size (const struct intel_crtc_state * crtc_state );
Original file line number Diff line number Diff line change @@ -175,16 +175,11 @@ int intel_dsi_bitrate(const struct intel_dsi *intel_dsi);
175
175
int intel_dsi_tlpx_ns (const struct intel_dsi * intel_dsi );
176
176
enum drm_panel_orientation
177
177
intel_dsi_get_panel_orientation (struct intel_connector * connector );
178
-
179
- /* vlv_dsi.c */
180
- void vlv_dsi_wait_for_fifo_empty (struct intel_dsi * intel_dsi , enum port port );
181
- enum mipi_dsi_pixel_format pixel_format_from_register_bits (u32 fmt );
182
178
int intel_dsi_get_modes (struct drm_connector * connector );
183
179
enum drm_mode_status intel_dsi_mode_valid (struct drm_connector * connector ,
184
180
struct drm_display_mode * mode );
185
181
struct intel_dsi_host * intel_dsi_host_init (struct intel_dsi * intel_dsi ,
186
182
const struct mipi_dsi_host_ops * funcs ,
187
183
enum port port );
188
- void vlv_dsi_init (struct drm_i915_private * dev_priv );
189
184
190
185
#endif /* _INTEL_DSI_H */
Original file line number Diff line number Diff line change 42
42
#include "intel_display_types.h"
43
43
#include "intel_dsi.h"
44
44
#include "intel_dsi_vbt.h"
45
+ #include "vlv_dsi.h"
45
46
#include "vlv_sideband.h"
46
47
47
48
#define MIPI_TRANSFER_MODE_SHIFT 0
Original file line number Diff line number Diff line change 42
42
#include "intel_fifo_underrun.h"
43
43
#include "intel_panel.h"
44
44
#include "skl_scaler.h"
45
+ #include "vlv_dsi.h"
45
46
#include "vlv_dsi_pll.h"
46
47
#include "vlv_sideband.h"
47
48
Original file line number Diff line number Diff line change
1
+ /* SPDX-License-Identifier: MIT */
2
+ /*
3
+ * Copyright © 2021 Intel Corporation
4
+ */
5
+
6
+ #ifndef __VLV_DSI_H__
7
+ #define __VLV_DSI_H__
8
+
9
+ #include <linux/types.h>
10
+
11
+ enum port ;
12
+ struct drm_i915_private ;
13
+ struct intel_dsi ;
14
+
15
+ void vlv_dsi_wait_for_fifo_empty (struct intel_dsi * intel_dsi , enum port port );
16
+ enum mipi_dsi_pixel_format pixel_format_from_register_bits (u32 fmt );
17
+ void vlv_dsi_init (struct drm_i915_private * dev_priv );
18
+
19
+ #endif /* __VLV_DSI_H__ */
You can’t perform that action at this time.
0 commit comments