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

#ifndef DRIVERS_INTEL_GMA_LIBGFXINIT_H
#define DRIVERS_INTEL_GMA_LIBGFXINIT_H

enum {
	GMA_PORT_DISABLED,
	GMA_PORT_LVDS,
	GMA_PORT_EDP,
	GMA_PORT_DP1,
	GMA_PORT_DP2,
	GMA_PORT_DP3,
	GMA_PORT_HDMI1,	/* or DVI */
	GMA_PORT_HDMI2,	/* or DVI */
	GMA_PORT_HDMI3,	/* or DVI */
	GMA_PORT_ANALOG,
};

void gma_gfxinit(int *lightup_ok);
int gma_read_edid(unsigned char edid[], int port);

#endif