-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathr23m.h
More file actions
51 lines (33 loc) · 1.01 KB
/
r23m.h
File metadata and controls
51 lines (33 loc) · 1.01 KB
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
#ifndef __R23M_H
#define __R23M_H
#include <gpu_cfg_generator.h>
struct default_gpu_cfg {
struct gpu_cfg_descriptor descriptor;
struct gpu_block_header hdr0;
enum gpu_pcie_cfg pcie_cfg;
struct gpu_block_header hdr1;
struct gpu_cfg_fan fan0_cfg;
struct gpu_block_header hdr2;
struct gpu_cfg_fan fan1_cfg;
struct gpu_block_header hdr3;
enum gpu_vendor vendor;
struct gpu_block_header hdr4;
struct gpu_cfg_gpio gpio0;
struct gpu_cfg_gpio gpio1;
struct gpu_cfg_gpio gpio2;
struct gpu_cfg_gpio gpio3;
struct gpu_cfg_gpio gpio_vsys;
struct gpu_cfg_gpio gpio_fan;
struct gpu_cfg_gpio gpu_3v_5v_en;
struct gpu_cfg_gpio gpu_vadp_en;
struct gpu_block_header hdr5;
struct gpu_subsys_pd pd;
struct gpu_block_header hdr6;
struct gpu_cfg_thermal therm;
struct gpu_block_header hdr7;
struct gpu_cfg_custom_temp custom_temp;
struct gpu_block_header hdr8;
struct gpu_subsys_serial pcba_serial;
} __packed;
extern struct default_gpu_cfg r23m_gpu_cfg;
#endif /* __R23M_H */