]> git.ipfire.org Git - thirdparty/kernel/stable.git/blame - drivers/gpu/drm/i915/display/intel_bios.h
Merge tag 'drm-intel-next-2024-02-27-1' of git://anongit.freedesktop.org/drm/drm...
[thirdparty/kernel/stable.git] / drivers / gpu / drm / i915 / display / intel_bios.h
CommitLineData
79e53945 1/*
5b6030da 2 * Copyright © 2016-2019 Intel Corporation
79e53945
JB
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 * SOFTWARE.
79e53945 22 */
59a036cf 23
e2d6cf7f 24/*
72341af4
JN
25 * Please use intel_vbt_defs.h for VBT private data, to hide and abstract away
26 * the VBT from the rest of the driver. Add the parsed, clean data to struct
27 * intel_vbt_data within struct drm_i915_private.
e2d6cf7f 28 */
79e53945 29
72341af4
JN
30#ifndef _INTEL_BIOS_H_
31#define _INTEL_BIOS_H_
500a8cc4 32
779bc1d0
JN
33#include <linux/types.h>
34
c36225a1 35struct drm_edid;
4d173e0c 36struct drm_i915_private;
dbc13742 37struct intel_bios_encoder_data;
1bf2f3bf
JN
38struct intel_crtc_state;
39struct intel_encoder;
3cf05076 40struct intel_panel;
bb45217f 41enum aux_ch;
5b6030da 42enum port;
4d173e0c 43
9a41e17d
D
44enum intel_backlight_type {
45 INTEL_BACKLIGHT_PMIC,
46 INTEL_BACKLIGHT_LPSS,
47 INTEL_BACKLIGHT_DISPLAY_DDI,
48 INTEL_BACKLIGHT_DSI_DCS,
49 INTEL_BACKLIGHT_PANEL_DRIVER_INTERFACE,
5ccf2027 50 INTEL_BACKLIGHT_VESA_EDP_AUX_INTERFACE,
9a41e17d
D
51};
52
500a8cc4 53struct edp_power_seq {
f01eca2e
KP
54 u16 t1_t3;
55 u16 t8;
500a8cc4
ZW
56 u16 t9;
57 u16 t10;
f01eca2e 58 u16 t11_t12;
e4451239 59} __packed;
500a8cc4 60
25e23bc5
HG
61/*
62 * MIPI Sequence Block definitions
63 *
64 * Note the VBT spec has AssertReset / DeassertReset swapped from their
65 * usual naming, we use the proper names here to avoid confusion when
66 * reading the code.
67 */
72341af4
JN
68enum mipi_seq {
69 MIPI_SEQ_END = 0,
25e23bc5 70 MIPI_SEQ_DEASSERT_RESET, /* Spec says MipiAssertResetPin */
72341af4
JN
71 MIPI_SEQ_INIT_OTP,
72 MIPI_SEQ_DISPLAY_ON,
73 MIPI_SEQ_DISPLAY_OFF,
25e23bc5 74 MIPI_SEQ_ASSERT_RESET, /* Spec says MipiDeassertResetPin */
72341af4
JN
75 MIPI_SEQ_BACKLIGHT_ON, /* sequence block v2+ */
76 MIPI_SEQ_BACKLIGHT_OFF, /* sequence block v2+ */
77 MIPI_SEQ_TEAR_ON, /* sequence block v2+ */
78 MIPI_SEQ_TEAR_OFF, /* sequence block v3+ */
79 MIPI_SEQ_POWER_ON, /* sequence block v3+ */
80 MIPI_SEQ_POWER_OFF, /* sequence block v3+ */
81 MIPI_SEQ_MAX
82};
6acab15a 83
72341af4
JN
84enum mipi_seq_element {
85 MIPI_SEQ_ELEM_END = 0,
86 MIPI_SEQ_ELEM_SEND_PKT,
87 MIPI_SEQ_ELEM_DELAY,
88 MIPI_SEQ_ELEM_GPIO,
89 MIPI_SEQ_ELEM_I2C, /* sequence block v2+ */
90 MIPI_SEQ_ELEM_SPI, /* sequence block v3+ */
91 MIPI_SEQ_ELEM_PMIC, /* sequence block v3+ */
92 MIPI_SEQ_ELEM_MAX
93};
d17c5443 94
ea9a6baf
SK
95#define MIPI_DSI_UNDEFINED_PANEL_ID 0
96#define MIPI_DSI_GENERIC_PANEL_ID 1
d17c5443 97
ea9a6baf
SK
98struct mipi_config {
99 u16 panel_id;
d17c5443 100
ea9a6baf
SK
101 /* General Params */
102 u32 enable_dithering:1;
103 u32 rsvd1:1;
104 u32 is_bridge:1;
105
106 u32 panel_arch_type:2;
107 u32 is_cmd_mode:1;
108
109#define NON_BURST_SYNC_PULSE 0x1
110#define NON_BURST_SYNC_EVENTS 0x2
111#define BURST_MODE 0x3
112 u32 video_transfer_mode:2;
113
114 u32 cabc_supported:1;
72341af4
JN
115#define PPS_BLC_PMIC 0
116#define PPS_BLC_SOC 1
ea9a6baf
SK
117 u32 pwm_blc:1;
118
119 /* Bit 13:10 */
120#define PIXEL_FORMAT_RGB565 0x1
121#define PIXEL_FORMAT_RGB666 0x2
122#define PIXEL_FORMAT_RGB666_LOOSELY_PACKED 0x3
123#define PIXEL_FORMAT_RGB888 0x4
124 u32 videomode_color_format:4;
125
126 /* Bit 15:14 */
127#define ENABLE_ROTATION_0 0x0
128#define ENABLE_ROTATION_90 0x1
129#define ENABLE_ROTATION_180 0x2
130#define ENABLE_ROTATION_270 0x3
131 u32 rotation:2;
132 u32 bta_enabled:1;
133 u32 rsvd2:15;
134
135 /* 2 byte Port Description */
136#define DUAL_LINK_NOT_SUPPORTED 0
137#define DUAL_LINK_FRONT_BACK 1
138#define DUAL_LINK_PIXEL_ALT 2
139 u16 dual_link:2;
140 u16 lane_cnt:2;
a9da9bce 141 u16 pixel_overlap:3;
9f7c5b17
D
142 u16 rgb_flip:1;
143#define DL_DCS_PORT_A 0x00
144#define DL_DCS_PORT_C 0x01
145#define DL_DCS_PORT_A_AND_C 0x02
146 u16 dl_dcs_cabc_ports:2;
147 u16 dl_dcs_backlight_ports:2;
148 u16 rsvd3:4;
ea9a6baf
SK
149
150 u16 rsvd4;
151
7f0c8605
SK
152 u8 rsvd5;
153 u32 target_burst_mode_freq;
ea9a6baf 154 u32 dsi_ddr_clk;
d17c5443 155 u32 bridge_ref_clk;
d17c5443 156
ea9a6baf
SK
157#define BYTE_CLK_SEL_20MHZ 0
158#define BYTE_CLK_SEL_10MHZ 1
159#define BYTE_CLK_SEL_5MHZ 2
160 u8 byte_clk_sel:2;
161
162 u8 rsvd6:6;
163
164 /* DPHY Flags */
165 u16 dphy_param_valid:1;
166 u16 eot_pkt_disabled:1;
167 u16 enable_clk_stop:1;
168 u16 rsvd7:13;
169
170 u32 hs_tx_timeout;
171 u32 lp_rx_timeout;
172 u32 turn_around_timeout;
173 u32 device_reset_timer;
174 u32 master_init_timer;
175 u32 dbi_bw_timer;
176 u32 lp_byte_clk_val;
177
178 /* 4 byte Dphy Params */
179 u32 prepare_cnt:6;
180 u32 rsvd8:2;
d17c5443
SK
181 u32 clk_zero_cnt:8;
182 u32 trail_cnt:5;
ea9a6baf 183 u32 rsvd9:3;
d17c5443 184 u32 exit_zero_cnt:6;
ea9a6baf 185 u32 rsvd10:2;
d17c5443 186
d17c5443 187 u32 clk_lane_switch_cnt;
ea9a6baf
SK
188 u32 hl_switch_cnt;
189
190 u32 rsvd11[6];
191
192 /* timings based on dphy spec */
193 u8 tclk_miss;
194 u8 tclk_post;
195 u8 rsvd12;
196 u8 tclk_pre;
197 u8 tclk_prepare;
198 u8 tclk_settle;
199 u8 tclk_term_enable;
200 u8 tclk_trail;
201 u16 tclk_prepare_clkzero;
202 u8 rsvd13;
203 u8 td_term_enable;
204 u8 teot;
205 u8 ths_exit;
206 u8 ths_prepare;
207 u16 ths_prepare_hszero;
208 u8 rsvd14;
209 u8 ths_settle;
210 u8 ths_skip;
211 u8 ths_trail;
212 u8 tinit;
213 u8 tlpx;
214 u8 rsvd15[3];
215
216 /* GPIOs */
217 u8 panel_enable;
218 u8 bl_enable;
219 u8 pwm_enable;
220 u8 reset_r_n;
221 u8 pwr_down_r;
222 u8 stdby_r_n;
223
e4451239 224} __packed;
d17c5443 225
72341af4 226/* all delays have a unit of 100us */
ea9a6baf
SK
227struct mipi_pps_data {
228 u16 panel_on_delay;
229 u16 bl_enable_delay;
230 u16 bl_disable_delay;
231 u16 panel_off_delay;
232 u16 panel_power_cycle_delay;
4dc49272 233} __packed;
ea9a6baf 234
4d173e0c 235void intel_bios_init(struct drm_i915_private *dev_priv);
3f9ffce5
VS
236void intel_bios_init_panel_early(struct drm_i915_private *dev_priv,
237 struct intel_panel *panel,
238 const struct intel_bios_encoder_data *devdata);
239void intel_bios_init_panel_late(struct drm_i915_private *dev_priv,
240 struct intel_panel *panel,
241 const struct intel_bios_encoder_data *devdata,
c36225a1 242 const struct drm_edid *drm_edid);
3cf05076 243void intel_bios_fini_panel(struct intel_panel *panel);
78dae1ac 244void intel_bios_driver_remove(struct drm_i915_private *dev_priv);
ff9bc20c
VS
245bool intel_bios_is_valid_vbt(struct drm_i915_private *i915,
246 const void *buf, size_t size);
4d173e0c
JN
247bool intel_bios_is_tv_present(struct drm_i915_private *dev_priv);
248bool intel_bios_is_lvds_present(struct drm_i915_private *dev_priv, u8 *i2c_pin);
249bool intel_bios_is_port_present(struct drm_i915_private *dev_priv, enum port port);
4d173e0c 250bool intel_bios_is_dsi_present(struct drm_i915_private *dev_priv, enum port *port);
1bf2f3bf
JN
251bool intel_bios_get_dsc_params(struct intel_encoder *encoder,
252 struct intel_crtc_state *crtc_state,
253 int dsc_max_bpc);
4d173e0c 254
45c0673a
JN
255const struct intel_bios_encoder_data *
256intel_bios_encoder_data_lookup(struct drm_i915_private *i915, enum port port);
257
258bool intel_bios_encoder_supports_dvi(const struct intel_bios_encoder_data *devdata);
259bool intel_bios_encoder_supports_hdmi(const struct intel_bios_encoder_data *devdata);
260bool intel_bios_encoder_supports_dp(const struct intel_bios_encoder_data *devdata);
9d4b7af5 261bool intel_bios_encoder_supports_edp(const struct intel_bios_encoder_data *devdata);
f08fbe6a
JN
262bool intel_bios_encoder_supports_typec_usb(const struct intel_bios_encoder_data *devdata);
263bool intel_bios_encoder_supports_tbt(const struct intel_bios_encoder_data *devdata);
021a62a5 264bool intel_bios_encoder_supports_dsi(const struct intel_bios_encoder_data *devdata);
2bea1d7c 265bool intel_bios_encoder_supports_dp_dual_mode(const struct intel_bios_encoder_data *devdata);
db5d650f 266bool intel_bios_encoder_is_lspcon(const struct intel_bios_encoder_data *devdata);
5f42196d 267bool intel_bios_encoder_lane_reversal(const struct intel_bios_encoder_data *devdata);
9151c85c 268bool intel_bios_encoder_hpd_invert(const struct intel_bios_encoder_data *devdata);
021a62a5 269enum port intel_bios_encoder_port(const struct intel_bios_encoder_data *devdata);
bb45217f 270enum aux_ch intel_bios_dp_aux_ch(const struct intel_bios_encoder_data *devdata);
02107ef1
VS
271int intel_bios_dp_boost_level(const struct intel_bios_encoder_data *devdata);
272int intel_bios_dp_max_lane_count(const struct intel_bios_encoder_data *devdata);
273int intel_bios_dp_max_link_rate(const struct intel_bios_encoder_data *devdata);
70052100 274bool intel_bios_dp_has_shared_aux_ch(const struct intel_bios_encoder_data *devdata);
02107ef1
VS
275int intel_bios_hdmi_boost_level(const struct intel_bios_encoder_data *devdata);
276int intel_bios_hdmi_ddc_pin(const struct intel_bios_encoder_data *devdata);
277int intel_bios_hdmi_level_shift(const struct intel_bios_encoder_data *devdata);
278int intel_bios_hdmi_max_tmds_clock(const struct intel_bios_encoder_data *devdata);
45c0673a 279
021a62a5
VS
280void intel_bios_for_each_encoder(struct drm_i915_private *i915,
281 void (*func)(struct drm_i915_private *i915,
282 const struct intel_bios_encoder_data *devdata));
283
30ef2627
JN
284void intel_bios_debugfs_register(struct drm_i915_private *i915);
285
513485fd 286#endif /* _INTEL_BIOS_H_ */