blob: 96d7f9c1a9bba75f8218a067288ea8ff51252eda (
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
/*
* This file is part of the coreboot project.
*
* Copyright (C) 2017 Patrick Rudolph <siro@das-labor.org>
*
* 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 _LENOVO_HYBRID_GRAPHICS_CHIP_H_
#define _LENOVO_HYBRID_GRAPHICS_CHIP_H_
#define HYBRID_GRAPHICS_PORT 0xff
#define HYBRID_GRAPHICS_DEVICE 0xf
enum hybrid_graphics_req {
HYBRID_GRAPHICS_INTEGRATED = 0,
HYBRID_GRAPHICS_DISCRETE = 1,
HYBRID_GRAPHICS_DUAL = 2
};
enum dgpu_detect_lvl {
DGPU_INSTALLED = 0,
DGPU_NOT_INSTALLED = 1,
};
#define HYBRID_GRAPHICS_DEFAULT_GPU HYBRID_GRAPHICS_INTEGRATED
struct drivers_lenovo_hybrid_graphics_config {
unsigned int detect_gpio;
unsigned int has_panel_hybrid_gpio;
unsigned int panel_hybrid_gpio;
unsigned int panel_integrated_lvl;
unsigned int has_backlight_gpio;
unsigned int backlight_gpio;
unsigned int backlight_integrated_lvl;
unsigned int has_dgpu_power_gpio;
unsigned int dgpu_power_gpio;
unsigned int dgpu_power_off_lvl;
unsigned int has_thinker1;
};
#endif /* _LENOVO_HYBRID_GRAPHICS_CHIP_H_ */
|