summaryrefslogtreecommitdiffstats
path: root/src/northbridge/intel/i945/chip.h
blob: a43702890884882b505122a6249da6c6a6df2de3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */

#ifndef NORTHBRIDGE_INTEL_I945_CHIP_H
#define NORTHBRIDGE_INTEL_I945_CHIP_H

#include <drivers/intel/gma/i915.h>

struct northbridge_intel_i945_config {
	/* In units of 100us timer */
	/* Timings as defined in VESA Notebook Panel Standard */
	u16 gpu_panel_power_up_delay;            /* T1+T2 time sequence */
	u16 gpu_panel_power_down_delay;          /* T3 time sequence */
	u16 gpu_panel_power_backlight_on_delay;  /* T5 time sequence */
	u16 gpu_panel_power_backlight_off_delay; /* Tx time sequence */
	/* In units of 0.1s */
	u8 gpu_panel_power_cycle_delay;

	u32 gpu_hotplug;
	u32 pwm_freq;
	int gpu_lvds_use_spread_spectrum_clock;
	struct i915_gpu_controller_info gfx;
	int pci_mmio_size;
};

#endif /* NORTHBRIDGE_INTEL_I945_CHIP_H */