aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/siemens/mc_tcu3/lcd_panel.h
blob: a27cc52e4d25ae17622fa2817a4ed1cc85b0920e (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
/*
 * This file is part of the coreboot project.
 *
 * Copyright (C) 2014 Siemens AG
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; version 2 of the License.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 */

#ifndef _LCD_PANEL_H_
#define _LCD_PANEL_H_

/* This GPIOs are used for LCD panel type encoding */
#define LCD_TYPE_GPIO_BIT0	40
#define LCD_TYPE_GPIO_BIT1	41
#define LCD_TYPE_GPIO_BIT2	42
#define LCD_TYPE_GPIO_BIT3	43

#define LCD_PANEL_TYPE_10_INCH	4
#define LCD_PANEL_TYPE_12_INCH	7
#define LCD_PANEL_TYPE_15_INCH	6
#define LCD_PANEL_TYPE_19_INCH	1
#define LCD_PANEL_TYPE_EDID	15

u8 get_lcd_panel_type(void);
int setup_lcd_panel(void);


#endif /* _LCD_PANEL_H_ */