blob: d7ef27df1637ccedecd51ec77ff4649e8df28195 [file] [log] [blame]
Aaron Durbin76c37002012-10-30 09:03:43 -05001/*
2 * This file is part of the coreboot project.
3 *
Aaron Durbin76c37002012-10-30 09:03:43 -05004 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; version 2 of the License.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
Aaron Durbin76c37002012-10-30 09:03:43 -050013 */
14
Iru Caid7ee9dd2016-02-24 15:03:58 +080015#ifndef NORTHBRIDGE_INTEL_HASWELL_CHIP_H
16#define NORTHBRIDGE_INTEL_HASWELL_CHIP_H
17
Vladimir Serbinenkodd2bc3f2014-10-31 09:16:31 +010018#include <drivers/intel/gma/i915.h>
19
Aaron Durbin76c37002012-10-30 09:03:43 -050020/*
21 * Digital Port Hotplug Enable:
Angel Pons1db5bc72020-01-15 00:49:03 +010022 * 0x04 = Enabled, 2ms short pulse
Aaron Durbin76c37002012-10-30 09:03:43 -050023 * 0x05 = Enabled, 4.5ms short pulse
Angel Pons1db5bc72020-01-15 00:49:03 +010024 * 0x06 = Enabled, 6ms short pulse
Aaron Durbin76c37002012-10-30 09:03:43 -050025 * 0x07 = Enabled, 100ms short pulse
26 */
27struct northbridge_intel_haswell_config {
28 u8 gpu_dp_b_hotplug; /* Digital Port B Hotplug Config */
29 u8 gpu_dp_c_hotplug; /* Digital Port C Hotplug Config */
30 u8 gpu_dp_d_hotplug; /* Digital Port D Hotplug Config */
31
32 u8 gpu_panel_port_select; /* 0=LVDS 1=DP_B 2=DP_C 3=DP_D */
33 u8 gpu_panel_power_cycle_delay; /* T4 time sequence */
34 u16 gpu_panel_power_up_delay; /* T1+T2 time sequence */
35 u16 gpu_panel_power_down_delay; /* T3 time sequence */
36 u16 gpu_panel_power_backlight_on_delay; /* T5 time sequence */
37 u16 gpu_panel_power_backlight_off_delay; /* Tx time sequence */
38
Nico Huberc2e46422020-03-23 01:22:49 +010039 unsigned int gpu_pch_backlight_pwm_hz;
40 enum {
41 GPU_BACKLIGHT_POLARITY_HIGH = 0,
42 GPU_BACKLIGHT_POLARITY_LOW,
43 } gpu_pch_backlight_polarity;
Vladimir Serbinenkodd2bc3f2014-10-31 09:16:31 +010044
Tristan Corrick1a73eb02018-10-31 02:27:29 +130045 bool gpu_ddi_e_connected;
46
Vladimir Serbinenkodd2bc3f2014-10-31 09:16:31 +010047 struct i915_gpu_controller_info gfx;
Aaron Durbin76c37002012-10-30 09:03:43 -050048};
49
Iru Caid7ee9dd2016-02-24 15:03:58 +080050#endif /* NORTHBRIDGE_INTEL_HASWELL_CHIP_H */