-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKconfig
70 lines (57 loc) · 1.54 KB
/
Kconfig
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# Kconfig file for esp_lcd_ra8876
menu "LCD Driver for RA8876/LT768x"
choice
prompt "Pre-defined panel"
default RA8876_PANEL_ER_TFTM070_6
help
Pre-defined options for a panel
config RA8876_PANEL_ER_TFTM070_6
bool "BuyDisplay.com ER-TFTM070-6 (1024x600, i80)"
config RA8876_PANEL_CUSTOM
bool "Custom panel"
endchoice
config RA8876_PANEL
string
default "ER-TFTM070-6" if RA8876_PANEL_ER_TFTM070_6
default "CUSTOM" if RA8876_PANEL_CUSTOM
config RA8876_OSC_FREQ
int "OSC_FREQ: Oscillator clock (MHz)"
default 10
depends on RA8876_PANEL_CUSTOM
config RA8876_DRAM_FREQ
int "DRAM_FREQ: SDRAM clock (MHz)"
default 100
depends on RA8876_PANEL_CUSTOM
config RA8876_CORE_FREQ
int "CORE_FREQ: CORE clock (MHz)"
default 100
depends on RA8876_PANEL_CUSTOM
config RA8876_SCAN_FREQ
int "SCAN_FREQ: pixel clock (MHz)"
default 50
depends on RA8876_PANEL_CUSTOM
config RA8876_HNDR
int "HNDR: horizontal non-display period or back porch"
default 160
depends on RA8876_PANEL_CUSTOM
config RA8876_HSTR
int "HSTR: horizontal start position or front porch"
default 160
depends on RA8876_PANEL_CUSTOM
config RA8876_HPWR
int "HPWR: HSYNC pulse width"
default 70
depends on RA8876_PANEL_CUSTOM
config RA8876_VNDR
int "VNDR: vertical non-display period"
default 23
depends on RA8876_PANEL_CUSTOM
config RA8876_VSTR
int "VSTR: vertical start position"
default 12
depends on RA8876_PANEL_CUSTOM
config RA8876_VPWR
int "VPWR: VSYNC pulse width"
default 10
depends on RA8876_PANEL_CUSTOM
endmenu