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

#ifndef _GMA_H_
#define _GMA_H_

#include <stdint.h>

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

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

void drivers_intel_gma_displays_ssdt_generate(const struct i915_gpu_controller_info *conf);

#endif