aboutsummaryrefslogtreecommitdiff
path: root/src/drivers/intel/gma/libgfxinit.h
blob: 9a7e1c6f90878623237a77aa8611fc9b7dee06f3 (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 */

#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