2020-04-02 23:48:50 +02:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
2012-11-06 11:03:53 +01:00
|
|
|
|
|
|
|
#ifndef NORTHBRIDGE_INTEL_GM45_CHIP_H
|
|
|
|
#define NORTHBRIDGE_INTEL_GM45_CHIP_H
|
|
|
|
|
2014-08-30 00:35:39 +02:00
|
|
|
#include <drivers/intel/gma/i915.h>
|
|
|
|
|
2012-11-06 11:03:53 +01:00
|
|
|
struct northbridge_intel_gm45_config {
|
2016-01-09 23:27:16 +01:00
|
|
|
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 */
|
|
|
|
u8 gpu_panel_power_cycle_delay; /* T4 time sequence */
|
2014-08-30 00:35:39 +02:00
|
|
|
struct i915_gpu_controller_info gfx;
|
2017-04-29 14:31:32 +02:00
|
|
|
u16 default_pwm_freq;
|
2016-11-24 13:23:05 +01:00
|
|
|
u8 duty_cycle;
|
2016-06-09 18:13:34 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Maximum PCI mmio size in MiB.
|
|
|
|
*/
|
|
|
|
u16 pci_mmio_size;
|
2012-11-06 11:03:53 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* NORTHBRIDGE_INTEL_GM45_CHIP_H */
|