blob: db3aa19707d94b3929240337b7625778a348e20d [file] [log] [blame]
Angel Pons4b429832020-04-02 23:48:50 +02001/* SPDX-License-Identifier: GPL-2.0-only */
2/* This file is part of the coreboot project. */
Martin Roth5474eb12018-05-26 19:22:33 -06003
Iru Caid7ee9dd2016-02-24 15:03:58 +08004#ifndef NORTHBRIDGE_INTEL_PINEVIEW_CHIP_H
5#define NORTHBRIDGE_INTEL_PINEVIEW_CHIP_H
6
Damien Zammitf7060f12015-11-14 00:59:21 +11007#include <drivers/intel/gma/i915.h>
8
9struct northbridge_intel_pineview_config {
Damien Zammit51fdb922016-01-18 18:34:52 +110010 /* GMA */
11 bool use_crt;
12 bool use_lvds;
Damien Zammitf7060f12015-11-14 00:59:21 +110013 int gpu_lvds_use_spread_spectrum_clock;
14 struct i915_gpu_controller_info gfx;
15};
Iru Caid7ee9dd2016-02-24 15:03:58 +080016
17#endif /* NORTHBRIDGE_INTEL_PINEVIEW_CHIP_H */