aboutsummaryrefslogtreecommitdiff
path: root/src/drivers/intel/gma/gma.h
blob: a39198c006fda5cbe6ccae0112b70a3a235e25f5 (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/* SPDX-License-Identifier: GPL-2.0-only */

#ifndef _GMA_H_
#define _GMA_H_

#include <stdint.h>

struct i915_gpu_controller_info {
	int use_spread_spectrum_clock;
	int ndid;
	u32 did[5];
};

/* Devicetree panel configuration */
struct i915_gpu_panel_config {
	unsigned int up_delay_ms;
	unsigned int down_delay_ms;
	unsigned int cycle_delay_ms;
	unsigned int backlight_on_delay_ms;
	unsigned int backlight_off_delay_ms;
	unsigned int backlight_pwm_hz;
	enum {
		GPU_BACKLIGHT_POLARITY_HIGH = 0,
		GPU_BACKLIGHT_POLARITY_LOW,
	} backlight_polarity;
};

#define GMA_STATIC_DISPLAYS(ssc) {			\
	.use_spread_spectrum_clock = (ssc),		\
	.ndid = 3, .did = { 0x0100, 0x0240, 0x0410, }	\
}

/* Shortcut for one internal panel at port A */
#define GMA_DEFAULT_PANEL(ssc) {		\
	.use_spread_spectrum_clock = (ssc),	\
	.ndid = 1, .did = { 0x0400 }		\
}

void drivers_intel_gma_displays_ssdt_generate(const struct i915_gpu_controller_info *conf);

#endif