blob: 84f8f62a38418fb25aa8367ec1047c95e0752236 [file] [log] [blame]
Vladimir Serbinenkoc6f6be02013-11-12 22:32:08 +01001/*
2 * This file is part of the coreboot project.
3 *
Vladimir Serbinenkoc6f6be02013-11-12 22:32:08 +01004 *
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.
Vladimir Serbinenkoc6f6be02013-11-12 22:32:08 +010013 */
14
Angel Pons95de2312020-02-17 13:08:53 +010015#ifndef NORTHBRIDGE_INTEL_IRONLAKE_CHIP_H
16#define NORTHBRIDGE_INTEL_IRONLAKE_CHIP_H
Iru Caid7ee9dd2016-02-24 15:03:58 +080017
Vladimir Serbinenkoa71bdc32014-08-30 00:35:39 +020018#include <drivers/intel/gma/i915.h>
19
Vladimir Serbinenkoc6f6be02013-11-12 22:32:08 +010020/*
21 * Digital Port Hotplug Enable:
22 * 0x04 = Enabled, 2ms short pulse
23 * 0x05 = Enabled, 4.5ms short pulse
24 * 0x06 = Enabled, 6ms short pulse
25 * 0x07 = Enabled, 100ms short pulse
26 */
Angel Pons95de2312020-02-17 13:08:53 +010027struct northbridge_intel_ironlake_config {
Vladimir Serbinenkoc6f6be02013-11-12 22:32:08 +010028 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
39 u32 gpu_cpu_backlight; /* CPU Backlight PWM value */
40 u32 gpu_pch_backlight; /* PCH Backlight PWM value */
Vladimir Serbinenko13157302014-02-19 22:18:08 +010041
Vladimir Serbinenkoa71bdc32014-08-30 00:35:39 +020042 struct i915_gpu_controller_info gfx;
Patrick Rudolph266a1f72016-06-09 18:13:34 +020043
44 /*
45 * Maximum PCI mmio size in MiB.
46 */
47 u16 pci_mmio_size;
Vladimir Serbinenkoc6f6be02013-11-12 22:32:08 +010048};
Iru Caid7ee9dd2016-02-24 15:03:58 +080049
Angel Pons95de2312020-02-17 13:08:53 +010050#endif /* NORTHBRIDGE_INTEL_IRONLAKE_CHIP_H */