blob: e119d7aaef8efb76f9c717b26225d8013cff898c (
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
|
/*
* This file is part of the coreboot project.
*
* Copyright (C) 2014-2019 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
#endif /* _LCD_PANEL_H_ */
|