blob: b4686380d4e3cca9bffe849abe2954a0bd90e99d [file] [log] [blame]
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001#
2# For a description of the syntax of this configuration file,
3# see Documentation/kbuild/kconfig-language.txt.
4#
5# Auxiliary display drivers configuration.
6#
7
Jan Engelhardtf5920962007-07-15 23:39:26 -07008menuconfig AUXDISPLAY
Jan Engelhardtf5920962007-07-15 23:39:26 -07009 bool "Auxiliary Display support"
Jan Engelhardt06bfb7e2007-08-18 12:56:21 +020010 ---help---
11 Say Y here to get to see options for auxiliary display drivers.
12 This option alone does not add any kernel code.
13
14 If you say N, all options in this submenu will be skipped and disabled.
Jan Engelhardtf5920962007-07-15 23:39:26 -070015
Geert Uytterhoeven39f8ea42017-03-10 15:15:17 +010016config CHARLCD
17 tristate "Character LCD core support" if COMPILE_TEST
18
H Hartley Sweetenc0aa24b2009-03-31 15:23:48 -070019if AUXDISPLAY
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -080020
21config KS0108
22 tristate "KS0108 LCD Controller"
23 depends on PARPORT_PC
24 default n
25 ---help---
26 If you have a LCD controlled by one or more KS0108
27 controllers, say Y. You will need also another more specific
28 driver for your LCD.
29
30 Depends on Parallel Port support. If you say Y at
31 parport, you will be able to compile this as a module (M)
32 and built-in as well (Y).
33
34 To compile this as a module, choose M here:
35 the module will be called ks0108.
36
37 If unsure, say N.
38
39config KS0108_PORT
40 hex "Parallel port where the LCD is connected"
41 depends on KS0108
42 default 0x378
43 ---help---
44 The address of the parallel port where the LCD is connected.
45
46 The first standard parallel port address is 0x378.
47 The second standard parallel port address is 0x278.
48 The third standard parallel port address is 0x3BC.
49
50 You can specify a different address if you need.
51
52 If you don't know what I'm talking about, load the parport module,
53 and execute "dmesg" or "cat /proc/ioports". You can see there how
54 many parallel ports are present and which address each one has.
55
56 Usually you only need to use 0x378.
57
58 If you compile this as a module, you can still override this
59 using the module parameters.
60
61config KS0108_DELAY
62 int "Delay between each control writing (microseconds)"
63 depends on KS0108
64 default "2"
65 ---help---
66 Amount of time the ks0108 should wait between each control write
67 to the parallel port.
68
Miguel Ojeda450c6222008-07-04 09:59:33 -070069 If your LCD seems to miss random writings, increment this.
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -080070
71 If you don't know what I'm talking about, ignore it.
72
73 If you compile this as a module, you can still override this
74 value using the module parameters.
75
76config CFAG12864B
77 tristate "CFAG12864B LCD"
78 depends on X86
79 depends on FB
80 depends on KS0108
Avuton Olrichbfeeffb2007-06-01 00:46:45 -070081 select FB_SYS_FILLRECT
82 select FB_SYS_COPYAREA
83 select FB_SYS_IMAGEBLIT
84 select FB_SYS_FOPS
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -080085 default n
86 ---help---
87 If you have a Crystalfontz 128x64 2-color LCD, cfag12864b Series,
88 say Y. You also need the ks0108 LCD Controller driver.
89
90 For help about how to wire your LCD to the parallel port,
91 check Documentation/auxdisplay/cfag12864b
92
93 Depends on the x86 arch and the framebuffer support.
94
95 The LCD framebuffer driver can be attached to a console.
96 It will work fine. However, you can't attach it to the fbdev driver
97 of the xorg server.
98
99 To compile this as a module, choose M here:
100 the modules will be called cfag12864b and cfag12864bfb.
101
102 If unsure, say N.
103
104config CFAG12864B_RATE
105 int "Refresh rate (hertz)"
106 depends on CFAG12864B
107 default "20"
108 ---help---
109 Refresh rate of the LCD.
110
111 As the LCD is not memory mapped, the driver has to make the work by
112 software. This means you should be careful setting this value higher.
113 If your CPUs are really slow or you feel the system is slowed down,
114 decrease the value.
115
116 Be careful modifying this value to a very high value:
117 You can freeze the computer, or the LCD maybe can't draw as fast as you
118 are requesting.
119
120 If you don't know what I'm talking about, ignore it.
121
122 If you compile this as a module, you can still override this
123 value using the module parameters.
Jan Engelhardtf5920962007-07-15 23:39:26 -0700124
Paul Burton0cad8552016-08-26 15:17:49 +0100125config IMG_ASCII_LCD
126 tristate "Imagination Technologies ASCII LCD Display"
127 default y if MIPS_MALTA || MIPS_SEAD3
128 select SYSCON
129 help
130 Enable this to support the simple ASCII LCD displays found on
131 development boards such as the MIPS Boston, MIPS Malta & MIPS SEAD3
132 from Imagination Technologies.
133
Robin van der Gracht8992da42016-11-07 10:56:35 +0100134config HT16K33
135 tristate "Holtek Ht16K33 LED controller with keyscan"
136 depends on FB && OF && I2C && INPUT
Robin van der Gracht31114fa2016-11-30 10:47:39 +0100137 select FB_SYS_FOPS
Randy Dunlap546cf3e2016-12-26 09:58:34 -0800138 select FB_SYS_FILLRECT
139 select FB_SYS_COPYAREA
140 select FB_SYS_IMAGEBLIT
Robin van der Gracht8992da42016-11-07 10:56:35 +0100141 select INPUT_MATRIXKMAP
142 select FB_BACKLIGHT
143 help
144 Say yes here to add support for Holtek HT16K33, RAM mapping 16*8
145 LED controller driver with keyscan.
146
Jan Engelhardtf5920962007-07-15 23:39:26 -0700147endif # AUXDISPLAY