Merge tag 'iio-for-4.6a' of git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio...
[deliverable/linux.git] / drivers / staging / panel / panel.c
CommitLineData
7005b584 1/*
698b1515
WT
2 * Front panel driver for Linux
3 * Copyright (C) 2000-2008, Willy Tarreau <w@1wt.eu>
7005b584 4 *
698b1515
WT
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; either version
8 * 2 of the License, or (at your option) any later version.
7005b584 9 *
698b1515
WT
10 * This code drives an LCD module (/dev/lcd), and a keypad (/dev/keypad)
11 * connected to a parallel printer port.
7005b584 12 *
698b1515
WT
13 * The LCD module may either be an HD44780-like 8-bit parallel LCD, or a 1-bit
14 * serial module compatible with Samsung's KS0074. The pins may be connected in
15 * any combination, everything is programmable.
7005b584 16 *
698b1515
WT
17 * The keypad consists in a matrix of push buttons connecting input pins to
18 * data output pins or to the ground. The combinations have to be hard-coded
19 * in the driver, though several profiles exist and adding new ones is easy.
7005b584 20 *
698b1515
WT
21 * Several profiles are provided for commonly found LCD+keypad modules on the
22 * market, such as those found in Nexcom's appliances.
7005b584
WT
23 *
24 * FIXME:
25 * - the initialization/deinitialization process is very dirty and should
26 * be rewritten. It may even be buggy.
27 *
28 * TODO:
29 * - document 24 keys keyboard (3 rows of 8 cols, 32 diodes + 2 inputs)
30 * - make the LCD a part of a virtual screen of Vx*Vy
31 * - make the inputs list smp-safe
32 * - change the keyboard to a double mapping : signals -> key_id -> values
33 * so that applications can change values without knowing signals
34 *
35 */
36
493aa896
TY
37#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
38
7005b584
WT
39#include <linux/module.h>
40
41#include <linux/types.h>
42#include <linux/errno.h>
43#include <linux/signal.h>
44#include <linux/sched.h>
45#include <linux/spinlock.h>
7005b584
WT
46#include <linux/interrupt.h>
47#include <linux/miscdevice.h>
698b1515 48#include <linux/slab.h>
7005b584
WT
49#include <linux/ioport.h>
50#include <linux/fcntl.h>
51#include <linux/init.h>
52#include <linux/delay.h>
d85170ed 53#include <linux/kernel.h>
7005b584
WT
54#include <linux/ctype.h>
55#include <linux/parport.h>
7005b584
WT
56#include <linux/list.h>
57#include <linux/notifier.h>
58#include <linux/reboot.h>
273b281f 59#include <generated/utsrelease.h>
7005b584 60
698b1515 61#include <linux/io.h>
48f658bb 62#include <linux/uaccess.h>
7005b584 63
7005b584
WT
64#define LCD_MINOR 156
65#define KEYPAD_MINOR 185
7005b584
WT
66
67#define PANEL_VERSION "0.9.5"
68
69#define LCD_MAXBYTES 256 /* max burst write */
70
7005b584 71#define KEYPAD_BUFFER 64
7005b584 72
429ccf05 73/* poll the keyboard this every second */
2b3c9eb2 74#define INPUT_POLL_TIME (HZ / 50)
429ccf05
HH
75/* a key starts to repeat after this times INPUT_POLL_TIME */
76#define KEYPAD_REP_START (10)
77/* a key repeats this times INPUT_POLL_TIME */
78#define KEYPAD_REP_DELAY (2)
79
80/* keep the light on this times INPUT_POLL_TIME for each flash */
81#define FLASH_LIGHT_TEMPO (200)
7005b584
WT
82
83/* converts an r_str() input to an active high, bits string : 000BAOSE */
84#define PNL_PINPUT(a) ((((unsigned char)(a)) ^ 0x7F) >> 3)
85
698b1515
WT
86#define PNL_PBUSY 0x80 /* inverted input, active low */
87#define PNL_PACK 0x40 /* direct input, active low */
88#define PNL_POUTPA 0x20 /* direct input, active high */
89#define PNL_PSELECD 0x10 /* direct input, active high */
90#define PNL_PERRORP 0x08 /* direct input, active low */
7005b584 91
698b1515 92#define PNL_PBIDIR 0x20 /* bi-directional ports */
429ccf05
HH
93/* high to read data in or-ed with data out */
94#define PNL_PINTEN 0x10
698b1515
WT
95#define PNL_PSELECP 0x08 /* inverted output, active low */
96#define PNL_PINITP 0x04 /* direct output, active low */
97#define PNL_PAUTOLF 0x02 /* inverted output, active low */
98#define PNL_PSTROBE 0x01 /* inverted output */
7005b584
WT
99
100#define PNL_PD0 0x01
101#define PNL_PD1 0x02
102#define PNL_PD2 0x04
103#define PNL_PD3 0x08
104#define PNL_PD4 0x10
105#define PNL_PD5 0x20
106#define PNL_PD6 0x40
107#define PNL_PD7 0x80
108
109#define PIN_NONE 0
110#define PIN_STROBE 1
111#define PIN_D0 2
112#define PIN_D1 3
113#define PIN_D2 4
114#define PIN_D3 5
115#define PIN_D4 6
116#define PIN_D5 7
117#define PIN_D6 8
118#define PIN_D7 9
119#define PIN_AUTOLF 14
120#define PIN_INITP 16
121#define PIN_SELECP 17
122#define PIN_NOT_SET 127
123
7005b584
WT
124#define LCD_FLAG_S 0x0001
125#define LCD_FLAG_ID 0x0002
126#define LCD_FLAG_B 0x0004 /* blink on */
127#define LCD_FLAG_C 0x0008 /* cursor on */
128#define LCD_FLAG_D 0x0010 /* display on */
129#define LCD_FLAG_F 0x0020 /* large font mode */
130#define LCD_FLAG_N 0x0040 /* 2-rows mode */
131#define LCD_FLAG_L 0x0080 /* backlight enabled */
132
2114924a
MG
133/* LCD commands */
134#define LCD_CMD_DISPLAY_CLEAR 0x01 /* Clear entire display */
135
136#define LCD_CMD_ENTRY_MODE 0x04 /* Set entry mode */
137#define LCD_CMD_CURSOR_INC 0x02 /* Increment cursor */
138
139#define LCD_CMD_DISPLAY_CTRL 0x08 /* Display control */
140#define LCD_CMD_DISPLAY_ON 0x04 /* Set display on */
141#define LCD_CMD_CURSOR_ON 0x02 /* Set cursor on */
142#define LCD_CMD_BLINK_ON 0x01 /* Set blink on */
143
144#define LCD_CMD_SHIFT 0x10 /* Shift cursor/display */
145#define LCD_CMD_DISPLAY_SHIFT 0x08 /* Shift display instead of cursor */
146#define LCD_CMD_SHIFT_RIGHT 0x04 /* Shift display/cursor to the right */
147
148#define LCD_CMD_FUNCTION_SET 0x20 /* Set function */
149#define LCD_CMD_DATA_LEN_8BITS 0x10 /* Set data length to 8 bits */
150#define LCD_CMD_TWO_LINES 0x08 /* Set to two display lines */
151#define LCD_CMD_FONT_5X10_DOTS 0x04 /* Set char font to 5x10 dots */
152
153#define LCD_CMD_SET_CGRAM_ADDR 0x40 /* Set char generator RAM address */
154
155#define LCD_CMD_SET_DDRAM_ADDR 0x80 /* Set display data RAM address */
156
429ccf05 157#define LCD_ESCAPE_LEN 24 /* max chars for LCD escape command */
7005b584
WT
158#define LCD_ESCAPE_CHAR 27 /* use char 27 for escape command */
159
36277d4a
MG
160#define NOT_SET -1
161
7005b584
WT
162/* macros to simplify use of the parallel port */
163#define r_ctr(x) (parport_read_control((x)->port))
164#define r_dtr(x) (parport_read_data((x)->port))
165#define r_str(x) (parport_read_status((x)->port))
6ebb56d9
TY
166#define w_ctr(x, y) (parport_write_control((x)->port, (y)))
167#define w_dtr(x, y) (parport_write_data((x)->port, (y)))
7005b584
WT
168
169/* this defines which bits are to be used and which ones to be ignored */
429ccf05
HH
170/* logical or of the output bits involved in the scan matrix */
171static __u8 scan_mask_o;
172/* logical or of the input bits involved in the scan matrix */
173static __u8 scan_mask_i;
7005b584 174
7005b584 175enum input_type {
698b1515
WT
176 INPUT_TYPE_STD,
177 INPUT_TYPE_KBD,
7005b584
WT
178};
179
180enum input_state {
698b1515
WT
181 INPUT_ST_LOW,
182 INPUT_ST_RISING,
183 INPUT_ST_HIGH,
184 INPUT_ST_FALLING,
7005b584
WT
185};
186
187struct logical_input {
698b1515 188 struct list_head list;
35fe0872
KS
189 __u64 mask;
190 __u64 value;
698b1515
WT
191 enum input_type type;
192 enum input_state state;
193 __u8 rise_time, fall_time;
194 __u8 rise_timer, fall_timer, high_timer;
195
196 union {
429ccf05 197 struct { /* valid when type == INPUT_TYPE_STD */
68d386bf
MA
198 void (*press_fct)(int);
199 void (*release_fct)(int);
698b1515
WT
200 int press_data;
201 int release_data;
202 } std;
429ccf05
HH
203 struct { /* valid when type == INPUT_TYPE_KBD */
204 /* strings can be non null-terminated */
698b1515
WT
205 char press_str[sizeof(void *) + sizeof(int)];
206 char repeat_str[sizeof(void *) + sizeof(int)];
207 char release_str[sizeof(void *) + sizeof(int)];
208 } kbd;
209 } u;
7005b584
WT
210};
211
36d2041a 212static LIST_HEAD(logical_inputs); /* list of all defined logical inputs */
7005b584
WT
213
214/* physical contacts history
215 * Physical contacts are a 45 bits string of 9 groups of 5 bits each.
216 * The 8 lower groups correspond to output bits 0 to 7, and the 9th group
217 * corresponds to the ground.
218 * Within each group, bits are stored in the same order as read on the port :
219 * BAPSE (busy=4, ack=3, paper empty=2, select=1, error=0).
35fe0872 220 * So, each __u64 is represented like this :
7005b584
WT
221 * 0000000000000000000BAPSEBAPSEBAPSEBAPSEBAPSEBAPSEBAPSEBAPSEBAPSE
222 * <-----unused------><gnd><d07><d06><d05><d04><d03><d02><d01><d00>
223 */
429ccf05
HH
224
225/* what has just been read from the I/O ports */
35fe0872 226static __u64 phys_read;
429ccf05 227/* previous phys_read */
35fe0872 228static __u64 phys_read_prev;
429ccf05 229/* stabilized phys_read (phys_read|phys_read_prev) */
35fe0872 230static __u64 phys_curr;
429ccf05 231/* previous phys_curr */
35fe0872 232static __u64 phys_prev;
429ccf05
HH
233/* 0 means that at least one logical signal needs be computed */
234static char inputs_stable;
7005b584 235
7005b584 236/* these variables are specific to the keypad */
a8b2580b
MG
237static struct {
238 bool enabled;
239} keypad;
240
7005b584 241static char keypad_buffer[KEYPAD_BUFFER];
698b1515
WT
242static int keypad_buflen;
243static int keypad_start;
244static char keypressed;
7005b584 245static wait_queue_head_t keypad_read_wait;
7005b584
WT
246
247/* lcd-specific variables */
a8b2580b
MG
248static struct {
249 bool enabled;
6d8b588c
MG
250 bool initialized;
251 bool must_clear;
252
8037e2a3
MG
253 int height;
254 int width;
255 int bwidth;
256 int hwidth;
257 int charset;
258 int proto;
6d8b588c
MG
259 int light_tempo;
260
8037e2a3
MG
261 /* TODO: use union here? */
262 struct {
263 int e;
264 int rs;
265 int rw;
266 int cl;
267 int da;
268 int bl;
269 } pins;
6d8b588c
MG
270
271 /* contains the LCD config state */
272 unsigned long int flags;
273
274 /* Contains the LCD X and Y offset */
275 struct {
276 unsigned long int x;
277 unsigned long int y;
278 } addr;
279
280 /* Current escape sequence and it's length or -1 if outside */
281 struct {
282 char buf[LCD_ESCAPE_LEN + 1];
283 int len;
284 } esc_seq;
a8b2580b 285} lcd;
429ccf05 286
87b8e0c8
MG
287/* Needed only for init */
288static int selected_lcd_type = NOT_SET;
289
7005b584
WT
290/*
291 * Bit masks to convert LCD signals to parallel port outputs.
292 * _d_ are values for data port, _c_ are for control port.
293 * [0] = signal OFF, [1] = signal ON, [2] = mask
294 */
698b1515
WT
295#define BIT_CLR 0
296#define BIT_SET 1
297#define BIT_MSK 2
7005b584
WT
298#define BIT_STATES 3
299/*
300 * one entry for each bit on the LCD
301 */
302#define LCD_BIT_E 0
303#define LCD_BIT_RS 1
304#define LCD_BIT_RW 2
305#define LCD_BIT_BL 3
306#define LCD_BIT_CL 4
307#define LCD_BIT_DA 5
308#define LCD_BITS 6
309
310/*
311 * each bit can be either connected to a DATA or CTRL port
312 */
313#define LCD_PORT_C 0
314#define LCD_PORT_D 1
315#define LCD_PORTS 2
316
317static unsigned char lcd_bits[LCD_PORTS][LCD_BITS][BIT_STATES];
318
319/*
320 * LCD protocols
321 */
322#define LCD_PROTO_PARALLEL 0
323#define LCD_PROTO_SERIAL 1
77943d31 324#define LCD_PROTO_TI_DA8XX_LCD 2
7005b584
WT
325
326/*
327 * LCD character sets
328 */
329#define LCD_CHARSET_NORMAL 0
330#define LCD_CHARSET_KS0074 1
331
332/*
333 * LCD types
334 */
335#define LCD_TYPE_NONE 0
2c20d92d
SM
336#define LCD_TYPE_CUSTOM 1
337#define LCD_TYPE_OLD 2
338#define LCD_TYPE_KS0074 3
339#define LCD_TYPE_HANTRONIX 4
340#define LCD_TYPE_NEXCOM 5
7005b584
WT
341
342/*
343 * keypad types
344 */
345#define KEYPAD_TYPE_NONE 0
346#define KEYPAD_TYPE_OLD 1
347#define KEYPAD_TYPE_NEW 2
348#define KEYPAD_TYPE_NEXCOM 3
349
350/*
351 * panel profiles
352 */
353#define PANEL_PROFILE_CUSTOM 0
354#define PANEL_PROFILE_OLD 1
355#define PANEL_PROFILE_NEW 2
356#define PANEL_PROFILE_HANTRONIX 3
357#define PANEL_PROFILE_NEXCOM 4
358#define PANEL_PROFILE_LARGE 5
359
360/*
361 * Construct custom config from the kernel's configuration
362 */
7005b584 363#define DEFAULT_PARPORT 0
fe4d7e2c 364#define DEFAULT_PROFILE PANEL_PROFILE_LARGE
98fac3d3
MG
365#define DEFAULT_KEYPAD_TYPE KEYPAD_TYPE_OLD
366#define DEFAULT_LCD_TYPE LCD_TYPE_OLD
fe4d7e2c 367#define DEFAULT_LCD_HEIGHT 2
7005b584
WT
368#define DEFAULT_LCD_WIDTH 40
369#define DEFAULT_LCD_BWIDTH 40
370#define DEFAULT_LCD_HWIDTH 64
fe4d7e2c 371#define DEFAULT_LCD_CHARSET LCD_CHARSET_NORMAL
7005b584
WT
372#define DEFAULT_LCD_PROTO LCD_PROTO_PARALLEL
373
374#define DEFAULT_LCD_PIN_E PIN_AUTOLF
375#define DEFAULT_LCD_PIN_RS PIN_SELECP
376#define DEFAULT_LCD_PIN_RW PIN_INITP
377#define DEFAULT_LCD_PIN_SCL PIN_STROBE
378#define DEFAULT_LCD_PIN_SDA PIN_D0
379#define DEFAULT_LCD_PIN_BL PIN_NOT_SET
7005b584 380
7005b584
WT
381#ifdef CONFIG_PANEL_PARPORT
382#undef DEFAULT_PARPORT
383#define DEFAULT_PARPORT CONFIG_PANEL_PARPORT
384#endif
385
1e13e8aa
MG
386#ifdef CONFIG_PANEL_PROFILE
387#undef DEFAULT_PROFILE
388#define DEFAULT_PROFILE CONFIG_PANEL_PROFILE
389#endif
390
698b1515 391#if DEFAULT_PROFILE == 0 /* custom */
7005b584 392#ifdef CONFIG_PANEL_KEYPAD
98fac3d3
MG
393#undef DEFAULT_KEYPAD_TYPE
394#define DEFAULT_KEYPAD_TYPE CONFIG_PANEL_KEYPAD
7005b584
WT
395#endif
396
7005b584 397#ifdef CONFIG_PANEL_LCD
98fac3d3
MG
398#undef DEFAULT_LCD_TYPE
399#define DEFAULT_LCD_TYPE CONFIG_PANEL_LCD
7005b584
WT
400#endif
401
1e13e8aa
MG
402#ifdef CONFIG_PANEL_LCD_HEIGHT
403#undef DEFAULT_LCD_HEIGHT
404#define DEFAULT_LCD_HEIGHT CONFIG_PANEL_LCD_HEIGHT
405#endif
406
7005b584
WT
407#ifdef CONFIG_PANEL_LCD_WIDTH
408#undef DEFAULT_LCD_WIDTH
409#define DEFAULT_LCD_WIDTH CONFIG_PANEL_LCD_WIDTH
410#endif
411
412#ifdef CONFIG_PANEL_LCD_BWIDTH
413#undef DEFAULT_LCD_BWIDTH
414#define DEFAULT_LCD_BWIDTH CONFIG_PANEL_LCD_BWIDTH
415#endif
416
417#ifdef CONFIG_PANEL_LCD_HWIDTH
418#undef DEFAULT_LCD_HWIDTH
419#define DEFAULT_LCD_HWIDTH CONFIG_PANEL_LCD_HWIDTH
420#endif
421
1e13e8aa
MG
422#ifdef CONFIG_PANEL_LCD_CHARSET
423#undef DEFAULT_LCD_CHARSET
424#define DEFAULT_LCD_CHARSET CONFIG_PANEL_LCD_CHARSET
7005b584
WT
425#endif
426
427#ifdef CONFIG_PANEL_LCD_PROTO
428#undef DEFAULT_LCD_PROTO
429#define DEFAULT_LCD_PROTO CONFIG_PANEL_LCD_PROTO
430#endif
431
432#ifdef CONFIG_PANEL_LCD_PIN_E
433#undef DEFAULT_LCD_PIN_E
434#define DEFAULT_LCD_PIN_E CONFIG_PANEL_LCD_PIN_E
435#endif
436
437#ifdef CONFIG_PANEL_LCD_PIN_RS
438#undef DEFAULT_LCD_PIN_RS
439#define DEFAULT_LCD_PIN_RS CONFIG_PANEL_LCD_PIN_RS
440#endif
441
442#ifdef CONFIG_PANEL_LCD_PIN_RW
443#undef DEFAULT_LCD_PIN_RW
444#define DEFAULT_LCD_PIN_RW CONFIG_PANEL_LCD_PIN_RW
445#endif
446
447#ifdef CONFIG_PANEL_LCD_PIN_SCL
448#undef DEFAULT_LCD_PIN_SCL
449#define DEFAULT_LCD_PIN_SCL CONFIG_PANEL_LCD_PIN_SCL
450#endif
451
452#ifdef CONFIG_PANEL_LCD_PIN_SDA
453#undef DEFAULT_LCD_PIN_SDA
454#define DEFAULT_LCD_PIN_SDA CONFIG_PANEL_LCD_PIN_SDA
455#endif
456
457#ifdef CONFIG_PANEL_LCD_PIN_BL
458#undef DEFAULT_LCD_PIN_BL
459#define DEFAULT_LCD_PIN_BL CONFIG_PANEL_LCD_PIN_BL
460#endif
461
7005b584
WT
462#endif /* DEFAULT_PROFILE == 0 */
463
464/* global variables */
f4757af8
MG
465
466/* Device single-open policy control */
467static atomic_t lcd_available = ATOMIC_INIT(1);
468static atomic_t keypad_available = ATOMIC_INIT(1);
469
698b1515 470static struct pardevice *pprt;
7005b584 471
f6d1fcfe 472static int keypad_initialized;
7005b584 473
68d386bf
MA
474static void (*lcd_write_cmd)(int);
475static void (*lcd_write_data)(int);
476static void (*lcd_clear_fast)(void);
7005b584 477
698b1515 478static DEFINE_SPINLOCK(pprt_lock);
7005b584
WT
479static struct timer_list scan_timer;
480
63023177 481MODULE_DESCRIPTION("Generic parallel port LCD/Keypad driver");
f6d1fcfe 482
59a66a24 483static int parport = DEFAULT_PARPORT;
698b1515
WT
484module_param(parport, int, 0000);
485MODULE_PARM_DESC(parport, "Parallel port index (0=lpt1, 1=lpt2, ...)");
f6d1fcfe 486
98e0e762
MG
487static int profile = DEFAULT_PROFILE;
488module_param(profile, int, 0000);
489MODULE_PARM_DESC(profile,
490 "1=16x2 old kp; 2=serial 16x2, new kp; 3=16x2 hantronix; "
491 "4=16x2 nexcom; default=40x2, old kp");
492
36277d4a 493static int keypad_type = NOT_SET;
98e0e762
MG
494module_param(keypad_type, int, 0000);
495MODULE_PARM_DESC(keypad_type,
496 "Keypad type: 0=none, 1=old 6 keys, 2=new 6+1 keys, 3=nexcom 4 keys");
497
36277d4a 498static int lcd_type = NOT_SET;
98e0e762
MG
499module_param(lcd_type, int, 0000);
500MODULE_PARM_DESC(lcd_type,
2c20d92d 501 "LCD type: 0=none, 1=compiled-in, 2=old, 3=serial ks0074, 4=hantronix, 5=nexcom");
98e0e762 502
36277d4a 503static int lcd_height = NOT_SET;
698b1515
WT
504module_param(lcd_height, int, 0000);
505MODULE_PARM_DESC(lcd_height, "Number of lines on the LCD");
f6d1fcfe 506
36277d4a 507static int lcd_width = NOT_SET;
698b1515
WT
508module_param(lcd_width, int, 0000);
509MODULE_PARM_DESC(lcd_width, "Number of columns on the LCD");
f6d1fcfe 510
36277d4a 511static int lcd_bwidth = NOT_SET; /* internal buffer width (usually 40) */
698b1515
WT
512module_param(lcd_bwidth, int, 0000);
513MODULE_PARM_DESC(lcd_bwidth, "Internal LCD line width (40)");
f6d1fcfe 514
36277d4a 515static int lcd_hwidth = NOT_SET; /* hardware buffer width (usually 64) */
698b1515
WT
516module_param(lcd_hwidth, int, 0000);
517MODULE_PARM_DESC(lcd_hwidth, "LCD line hardware address (64)");
f6d1fcfe 518
36277d4a 519static int lcd_charset = NOT_SET;
98e0e762
MG
520module_param(lcd_charset, int, 0000);
521MODULE_PARM_DESC(lcd_charset, "LCD character set: 0=standard, 1=KS0074");
f6d1fcfe 522
36277d4a 523static int lcd_proto = NOT_SET;
698b1515 524module_param(lcd_proto, int, 0000);
429ccf05 525MODULE_PARM_DESC(lcd_proto,
fdf4a494 526 "LCD communication: 0=parallel (//), 1=serial, 2=TI LCD Interface");
f6d1fcfe 527
f6d1fcfe
WT
528/*
529 * These are the parallel port pins the LCD control signals are connected to.
530 * Set this to 0 if the signal is not used. Set it to its opposite value
531 * (negative) if the signal is negated. -MAXINT is used to indicate that the
532 * pin has not been explicitly specified.
533 *
63023177 534 * WARNING! no check will be performed about collisions with keypad !
f6d1fcfe
WT
535 */
536
537static int lcd_e_pin = PIN_NOT_SET;
698b1515
WT
538module_param(lcd_e_pin, int, 0000);
539MODULE_PARM_DESC(lcd_e_pin,
fe5d2e01 540 "# of the // port pin connected to LCD 'E' signal, with polarity (-17..17)");
f6d1fcfe
WT
541
542static int lcd_rs_pin = PIN_NOT_SET;
698b1515
WT
543module_param(lcd_rs_pin, int, 0000);
544MODULE_PARM_DESC(lcd_rs_pin,
fe5d2e01 545 "# of the // port pin connected to LCD 'RS' signal, with polarity (-17..17)");
f6d1fcfe
WT
546
547static int lcd_rw_pin = PIN_NOT_SET;
698b1515
WT
548module_param(lcd_rw_pin, int, 0000);
549MODULE_PARM_DESC(lcd_rw_pin,
fe5d2e01 550 "# of the // port pin connected to LCD 'RW' signal, with polarity (-17..17)");
f6d1fcfe 551
98e0e762
MG
552static int lcd_cl_pin = PIN_NOT_SET;
553module_param(lcd_cl_pin, int, 0000);
554MODULE_PARM_DESC(lcd_cl_pin,
555 "# of the // port pin connected to serial LCD 'SCL' signal, with polarity (-17..17)");
f6d1fcfe
WT
556
557static int lcd_da_pin = PIN_NOT_SET;
698b1515
WT
558module_param(lcd_da_pin, int, 0000);
559MODULE_PARM_DESC(lcd_da_pin,
fe5d2e01 560 "# of the // port pin connected to serial LCD 'SDA' signal, with polarity (-17..17)");
f6d1fcfe 561
98e0e762
MG
562static int lcd_bl_pin = PIN_NOT_SET;
563module_param(lcd_bl_pin, int, 0000);
564MODULE_PARM_DESC(lcd_bl_pin,
565 "# of the // port pin connected to LCD backlight, with polarity (-17..17)");
566
567/* Deprecated module parameters - consider not using them anymore */
568
36277d4a 569static int lcd_enabled = NOT_SET;
98e0e762
MG
570module_param(lcd_enabled, int, 0000);
571MODULE_PARM_DESC(lcd_enabled, "Deprecated option, use lcd_type instead");
572
36277d4a 573static int keypad_enabled = NOT_SET;
98e0e762
MG
574module_param(keypad_enabled, int, 0000);
575MODULE_PARM_DESC(keypad_enabled, "Deprecated option, use keypad_type instead");
576
36d2041a 577static const unsigned char *lcd_char_conv;
7005b584
WT
578
579/* for some LCD drivers (ks0074) we need a charset conversion table. */
36d2041a 580static const unsigned char lcd_char_conv_ks0074[256] = {
698b1515
WT
581 /* 0|8 1|9 2|A 3|B 4|C 5|D 6|E 7|F */
582 /* 0x00 */ 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
583 /* 0x08 */ 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,
584 /* 0x10 */ 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17,
585 /* 0x18 */ 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f,
586 /* 0x20 */ 0x20, 0x21, 0x22, 0x23, 0xa2, 0x25, 0x26, 0x27,
587 /* 0x28 */ 0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d, 0x2e, 0x2f,
588 /* 0x30 */ 0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36, 0x37,
589 /* 0x38 */ 0x38, 0x39, 0x3a, 0x3b, 0x3c, 0x3d, 0x3e, 0x3f,
590 /* 0x40 */ 0xa0, 0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47,
591 /* 0x48 */ 0x48, 0x49, 0x4a, 0x4b, 0x4c, 0x4d, 0x4e, 0x4f,
592 /* 0x50 */ 0x50, 0x51, 0x52, 0x53, 0x54, 0x55, 0x56, 0x57,
593 /* 0x58 */ 0x58, 0x59, 0x5a, 0xfa, 0xfb, 0xfc, 0x1d, 0xc4,
594 /* 0x60 */ 0x96, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67,
595 /* 0x68 */ 0x68, 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f,
596 /* 0x70 */ 0x70, 0x71, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77,
597 /* 0x78 */ 0x78, 0x79, 0x7a, 0xfd, 0xfe, 0xff, 0xce, 0x20,
598 /* 0x80 */ 0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87,
599 /* 0x88 */ 0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f,
600 /* 0x90 */ 0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97,
601 /* 0x98 */ 0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f,
602 /* 0xA0 */ 0x20, 0x40, 0xb1, 0xa1, 0x24, 0xa3, 0xfe, 0x5f,
603 /* 0xA8 */ 0x22, 0xc8, 0x61, 0x14, 0x97, 0x2d, 0xad, 0x96,
604 /* 0xB0 */ 0x80, 0x8c, 0x82, 0x83, 0x27, 0x8f, 0x86, 0xdd,
605 /* 0xB8 */ 0x2c, 0x81, 0x6f, 0x15, 0x8b, 0x8a, 0x84, 0x60,
606 /* 0xC0 */ 0xe2, 0xe2, 0xe2, 0x5b, 0x5b, 0xae, 0xbc, 0xa9,
607 /* 0xC8 */ 0xc5, 0xbf, 0xc6, 0xf1, 0xe3, 0xe3, 0xe3, 0xe3,
608 /* 0xD0 */ 0x44, 0x5d, 0xa8, 0xe4, 0xec, 0xec, 0x5c, 0x78,
609 /* 0xD8 */ 0xab, 0xa6, 0xe5, 0x5e, 0x5e, 0xe6, 0xaa, 0xbe,
610 /* 0xE0 */ 0x7f, 0xe7, 0xaf, 0x7b, 0x7b, 0xaf, 0xbd, 0xc8,
611 /* 0xE8 */ 0xa4, 0xa5, 0xc7, 0xf6, 0xa7, 0xe8, 0x69, 0x69,
612 /* 0xF0 */ 0xed, 0x7d, 0xa8, 0xe4, 0xec, 0x5c, 0x5c, 0x25,
613 /* 0xF8 */ 0xac, 0xa6, 0xea, 0xef, 0x7e, 0xeb, 0xb2, 0x79,
7005b584
WT
614};
615
36d2041a 616static const char old_keypad_profile[][4][9] = {
698b1515
WT
617 {"S0", "Left\n", "Left\n", ""},
618 {"S1", "Down\n", "Down\n", ""},
619 {"S2", "Up\n", "Up\n", ""},
620 {"S3", "Right\n", "Right\n", ""},
621 {"S4", "Esc\n", "Esc\n", ""},
622 {"S5", "Ret\n", "Ret\n", ""},
623 {"", "", "", ""}
7005b584
WT
624};
625
626/* signals, press, repeat, release */
36d2041a 627static const char new_keypad_profile[][4][9] = {
698b1515
WT
628 {"S0", "Left\n", "Left\n", ""},
629 {"S1", "Down\n", "Down\n", ""},
630 {"S2", "Up\n", "Up\n", ""},
631 {"S3", "Right\n", "Right\n", ""},
632 {"S4s5", "", "Esc\n", "Esc\n"},
633 {"s4S5", "", "Ret\n", "Ret\n"},
634 {"S4S5", "Help\n", "", ""},
635 /* add new signals above this line */
636 {"", "", "", ""}
7005b584
WT
637};
638
639/* signals, press, repeat, release */
36d2041a 640static const char nexcom_keypad_profile[][4][9] = {
698b1515
WT
641 {"a-p-e-", "Down\n", "Down\n", ""},
642 {"a-p-E-", "Ret\n", "Ret\n", ""},
643 {"a-P-E-", "Esc\n", "Esc\n", ""},
644 {"a-P-e-", "Up\n", "Up\n", ""},
645 /* add new signals above this line */
646 {"", "", "", ""}
7005b584
WT
647};
648
36d2041a 649static const char (*keypad_profile)[4][9] = old_keypad_profile;
7005b584
WT
650
651/* FIXME: this should be converted to a bit array containing signals states */
652static struct {
429ccf05
HH
653 unsigned char e; /* parallel LCD E (data latch on falling edge) */
654 unsigned char rs; /* parallel LCD RS (0 = cmd, 1 = data) */
655 unsigned char rw; /* parallel LCD R/W (0 = W, 1 = R) */
656 unsigned char bl; /* parallel LCD backlight (0 = off, 1 = on) */
657 unsigned char cl; /* serial LCD clock (latch on rising edge) */
658 unsigned char da; /* serial LCD data */
7005b584
WT
659} bits;
660
661static void init_scan_timer(void);
662
663/* sets data port bits according to current signals values */
698b1515
WT
664static int set_data_bits(void)
665{
666 int val, bit;
667
668 val = r_dtr(pprt);
669 for (bit = 0; bit < LCD_BITS; bit++)
670 val &= lcd_bits[LCD_PORT_D][bit][BIT_MSK];
671
672 val |= lcd_bits[LCD_PORT_D][LCD_BIT_E][bits.e]
673 | lcd_bits[LCD_PORT_D][LCD_BIT_RS][bits.rs]
674 | lcd_bits[LCD_PORT_D][LCD_BIT_RW][bits.rw]
675 | lcd_bits[LCD_PORT_D][LCD_BIT_BL][bits.bl]
676 | lcd_bits[LCD_PORT_D][LCD_BIT_CL][bits.cl]
677 | lcd_bits[LCD_PORT_D][LCD_BIT_DA][bits.da];
678
679 w_dtr(pprt, val);
680 return val;
7005b584
WT
681}
682
683/* sets ctrl port bits according to current signals values */
698b1515
WT
684static int set_ctrl_bits(void)
685{
686 int val, bit;
687
688 val = r_ctr(pprt);
689 for (bit = 0; bit < LCD_BITS; bit++)
690 val &= lcd_bits[LCD_PORT_C][bit][BIT_MSK];
691
692 val |= lcd_bits[LCD_PORT_C][LCD_BIT_E][bits.e]
693 | lcd_bits[LCD_PORT_C][LCD_BIT_RS][bits.rs]
694 | lcd_bits[LCD_PORT_C][LCD_BIT_RW][bits.rw]
695 | lcd_bits[LCD_PORT_C][LCD_BIT_BL][bits.bl]
696 | lcd_bits[LCD_PORT_C][LCD_BIT_CL][bits.cl]
697 | lcd_bits[LCD_PORT_C][LCD_BIT_DA][bits.da];
698
699 w_ctr(pprt, val);
700 return val;
7005b584
WT
701}
702
703/* sets ctrl & data port bits according to current signals values */
6136ac86 704static void panel_set_bits(void)
698b1515
WT
705{
706 set_data_bits();
707 set_ctrl_bits();
7005b584
WT
708}
709
710/*
711 * Converts a parallel port pin (from -25 to 25) to data and control ports
712 * masks, and data and control port bits. The signal will be considered
713 * unconnected if it's on pin 0 or an invalid pin (<-25 or >25).
714 *
715 * Result will be used this way :
716 * out(dport, in(dport) & d_val[2] | d_val[signal_state])
717 * out(cport, in(cport) & c_val[2] | c_val[signal_state])
718 */
36d2041a 719static void pin_to_bits(int pin, unsigned char *d_val, unsigned char *c_val)
698b1515
WT
720{
721 int d_bit, c_bit, inv;
722
2d53426b
DB
723 d_val[0] = 0;
724 c_val[0] = 0;
725 d_val[1] = 0;
726 c_val[1] = 0;
727 d_val[2] = 0xFF;
728 c_val[2] = 0xFF;
698b1515
WT
729
730 if (pin == 0)
731 return;
732
733 inv = (pin < 0);
734 if (inv)
735 pin = -pin;
736
2d53426b
DB
737 d_bit = 0;
738 c_bit = 0;
698b1515
WT
739
740 switch (pin) {
741 case PIN_STROBE: /* strobe, inverted */
742 c_bit = PNL_PSTROBE;
743 inv = !inv;
744 break;
745 case PIN_D0...PIN_D7: /* D0 - D7 = 2 - 9 */
746 d_bit = 1 << (pin - 2);
747 break;
748 case PIN_AUTOLF: /* autofeed, inverted */
749 c_bit = PNL_PAUTOLF;
750 inv = !inv;
751 break;
429ccf05 752 case PIN_INITP: /* init, direct */
698b1515
WT
753 c_bit = PNL_PINITP;
754 break;
755 case PIN_SELECP: /* select_in, inverted */
756 c_bit = PNL_PSELECP;
757 inv = !inv;
758 break;
759 default: /* unknown pin, ignore */
760 break;
761 }
762
763 if (c_bit) {
764 c_val[2] &= ~c_bit;
765 c_val[!inv] = c_bit;
766 } else if (d_bit) {
767 d_val[2] &= ~d_bit;
768 d_val[!inv] = d_bit;
769 }
7005b584
WT
770}
771
772/* sleeps that many milliseconds with a reschedule */
698b1515
WT
773static void long_sleep(int ms)
774{
895875a3 775 if (in_interrupt())
698b1515 776 mdelay(ms);
895875a3
NMG
777 else
778 schedule_timeout_interruptible(msecs_to_jiffies(ms));
698b1515 779}
7005b584 780
881bf281
AW
781/*
782 * send a serial byte to the LCD panel. The caller is responsible for locking
783 * if needed.
784 */
698b1515
WT
785static void lcd_send_serial(int byte)
786{
787 int bit;
788
881bf281
AW
789 /*
790 * the data bit is set on D0, and the clock on STROBE.
791 * LCD reads D0 on STROBE's rising edge.
792 */
698b1515
WT
793 for (bit = 0; bit < 8; bit++) {
794 bits.cl = BIT_CLR; /* CLK low */
6136ac86 795 panel_set_bits();
698b1515 796 bits.da = byte & 1;
6136ac86 797 panel_set_bits();
429ccf05 798 udelay(2); /* maintain the data during 2 us before CLK up */
698b1515 799 bits.cl = BIT_SET; /* CLK high */
6136ac86 800 panel_set_bits();
429ccf05 801 udelay(1); /* maintain the strobe during 1 us */
698b1515
WT
802 byte >>= 1;
803 }
7005b584
WT
804}
805
806/* turn the backlight on or off */
698b1515
WT
807static void lcd_backlight(int on)
808{
8037e2a3 809 if (lcd.pins.bl == PIN_NONE)
698b1515
WT
810 return;
811
6975e183 812 /* The backlight is activated by setting the AUTOFEED line to +5V */
d4d2dbca 813 spin_lock_irq(&pprt_lock);
698b1515 814 bits.bl = on;
6136ac86 815 panel_set_bits();
d4d2dbca 816 spin_unlock_irq(&pprt_lock);
7005b584
WT
817}
818
819/* send a command to the LCD panel in serial mode */
698b1515
WT
820static void lcd_write_cmd_s(int cmd)
821{
d4d2dbca 822 spin_lock_irq(&pprt_lock);
698b1515
WT
823 lcd_send_serial(0x1F); /* R/W=W, RS=0 */
824 lcd_send_serial(cmd & 0x0F);
825 lcd_send_serial((cmd >> 4) & 0x0F);
b64a1cbe 826 udelay(40); /* the shortest command takes at least 40 us */
d4d2dbca 827 spin_unlock_irq(&pprt_lock);
7005b584
WT
828}
829
830/* send data to the LCD panel in serial mode */
698b1515
WT
831static void lcd_write_data_s(int data)
832{
d4d2dbca 833 spin_lock_irq(&pprt_lock);
698b1515
WT
834 lcd_send_serial(0x5F); /* R/W=W, RS=1 */
835 lcd_send_serial(data & 0x0F);
836 lcd_send_serial((data >> 4) & 0x0F);
b64a1cbe 837 udelay(40); /* the shortest data takes at least 40 us */
d4d2dbca 838 spin_unlock_irq(&pprt_lock);
7005b584
WT
839}
840
841/* send a command to the LCD panel in 8 bits parallel mode */
698b1515
WT
842static void lcd_write_cmd_p8(int cmd)
843{
d4d2dbca 844 spin_lock_irq(&pprt_lock);
698b1515
WT
845 /* present the data to the data port */
846 w_dtr(pprt, cmd);
b64a1cbe 847 udelay(20); /* maintain the data during 20 us before the strobe */
7005b584 848
698b1515
WT
849 bits.e = BIT_SET;
850 bits.rs = BIT_CLR;
851 bits.rw = BIT_CLR;
852 set_ctrl_bits();
7005b584 853
b64a1cbe 854 udelay(40); /* maintain the strobe during 40 us */
7005b584 855
698b1515
WT
856 bits.e = BIT_CLR;
857 set_ctrl_bits();
7005b584 858
b64a1cbe 859 udelay(120); /* the shortest command takes at least 120 us */
d4d2dbca 860 spin_unlock_irq(&pprt_lock);
7005b584
WT
861}
862
863/* send data to the LCD panel in 8 bits parallel mode */
698b1515
WT
864static void lcd_write_data_p8(int data)
865{
d4d2dbca 866 spin_lock_irq(&pprt_lock);
698b1515
WT
867 /* present the data to the data port */
868 w_dtr(pprt, data);
b64a1cbe 869 udelay(20); /* maintain the data during 20 us before the strobe */
7005b584 870
698b1515
WT
871 bits.e = BIT_SET;
872 bits.rs = BIT_SET;
873 bits.rw = BIT_CLR;
874 set_ctrl_bits();
7005b584 875
b64a1cbe 876 udelay(40); /* maintain the strobe during 40 us */
7005b584 877
698b1515
WT
878 bits.e = BIT_CLR;
879 set_ctrl_bits();
7005b584 880
b64a1cbe 881 udelay(45); /* the shortest data takes at least 45 us */
d4d2dbca 882 spin_unlock_irq(&pprt_lock);
7005b584
WT
883}
884
77943d31
SR
885/* send a command to the TI LCD panel */
886static void lcd_write_cmd_tilcd(int cmd)
887{
d4d2dbca 888 spin_lock_irq(&pprt_lock);
77943d31
SR
889 /* present the data to the control port */
890 w_ctr(pprt, cmd);
b64a1cbe 891 udelay(60);
d4d2dbca 892 spin_unlock_irq(&pprt_lock);
77943d31
SR
893}
894
895/* send data to the TI LCD panel */
896static void lcd_write_data_tilcd(int data)
897{
d4d2dbca 898 spin_lock_irq(&pprt_lock);
77943d31
SR
899 /* present the data to the data port */
900 w_dtr(pprt, data);
b64a1cbe 901 udelay(60);
d4d2dbca 902 spin_unlock_irq(&pprt_lock);
77943d31
SR
903}
904
698b1515
WT
905static void lcd_gotoxy(void)
906{
2114924a 907 lcd_write_cmd(LCD_CMD_SET_DDRAM_ADDR
6d8b588c 908 | (lcd.addr.y ? lcd.hwidth : 0)
8c17893c
NB
909 /*
910 * we force the cursor to stay at the end of the
911 * line if it wants to go farther
912 */
6d8b588c 913 | ((lcd.addr.x < lcd.bwidth) ? lcd.addr.x &
8037e2a3 914 (lcd.hwidth - 1) : lcd.bwidth - 1));
7005b584
WT
915}
916
698b1515
WT
917static void lcd_print(char c)
918{
6d8b588c 919 if (lcd.addr.x < lcd.bwidth) {
b565b3fb 920 if (lcd_char_conv)
698b1515
WT
921 c = lcd_char_conv[(unsigned char)c];
922 lcd_write_data(c);
6d8b588c 923 lcd.addr.x++;
698b1515
WT
924 }
925 /* prevents the cursor from wrapping onto the next line */
6d8b588c 926 if (lcd.addr.x == lcd.bwidth)
698b1515 927 lcd_gotoxy();
7005b584
WT
928}
929
930/* fills the display with spaces and resets X/Y */
698b1515
WT
931static void lcd_clear_fast_s(void)
932{
933 int pos;
c3ed0afc 934
6d8b588c
MG
935 lcd.addr.x = 0;
936 lcd.addr.y = 0;
698b1515
WT
937 lcd_gotoxy();
938
d4d2dbca 939 spin_lock_irq(&pprt_lock);
8037e2a3 940 for (pos = 0; pos < lcd.height * lcd.hwidth; pos++) {
698b1515
WT
941 lcd_send_serial(0x5F); /* R/W=W, RS=1 */
942 lcd_send_serial(' ' & 0x0F);
943 lcd_send_serial((' ' >> 4) & 0x0F);
df44f150 944 /* the shortest data takes at least 40 us */
4cff7adb 945 udelay(40);
698b1515 946 }
d4d2dbca 947 spin_unlock_irq(&pprt_lock);
698b1515 948
6d8b588c
MG
949 lcd.addr.x = 0;
950 lcd.addr.y = 0;
698b1515 951 lcd_gotoxy();
7005b584
WT
952}
953
954/* fills the display with spaces and resets X/Y */
698b1515
WT
955static void lcd_clear_fast_p8(void)
956{
957 int pos;
c3ed0afc 958
6d8b588c
MG
959 lcd.addr.x = 0;
960 lcd.addr.y = 0;
698b1515 961 lcd_gotoxy();
7005b584 962
d4d2dbca 963 spin_lock_irq(&pprt_lock);
8037e2a3 964 for (pos = 0; pos < lcd.height * lcd.hwidth; pos++) {
698b1515
WT
965 /* present the data to the data port */
966 w_dtr(pprt, ' ');
429ccf05
HH
967
968 /* maintain the data during 20 us before the strobe */
b64a1cbe 969 udelay(20);
7005b584 970
698b1515
WT
971 bits.e = BIT_SET;
972 bits.rs = BIT_SET;
973 bits.rw = BIT_CLR;
974 set_ctrl_bits();
7005b584 975
429ccf05 976 /* maintain the strobe during 40 us */
b64a1cbe 977 udelay(40);
7005b584 978
698b1515
WT
979 bits.e = BIT_CLR;
980 set_ctrl_bits();
7005b584 981
429ccf05 982 /* the shortest data takes at least 45 us */
b64a1cbe 983 udelay(45);
698b1515 984 }
d4d2dbca 985 spin_unlock_irq(&pprt_lock);
7005b584 986
6d8b588c
MG
987 lcd.addr.x = 0;
988 lcd.addr.y = 0;
698b1515 989 lcd_gotoxy();
7005b584
WT
990}
991
77943d31
SR
992/* fills the display with spaces and resets X/Y */
993static void lcd_clear_fast_tilcd(void)
994{
995 int pos;
c3ed0afc 996
6d8b588c
MG
997 lcd.addr.x = 0;
998 lcd.addr.y = 0;
77943d31
SR
999 lcd_gotoxy();
1000
d4d2dbca 1001 spin_lock_irq(&pprt_lock);
8037e2a3 1002 for (pos = 0; pos < lcd.height * lcd.hwidth; pos++) {
77943d31
SR
1003 /* present the data to the data port */
1004 w_dtr(pprt, ' ');
b64a1cbe 1005 udelay(60);
77943d31
SR
1006 }
1007
d4d2dbca 1008 spin_unlock_irq(&pprt_lock);
77943d31 1009
6d8b588c
MG
1010 lcd.addr.x = 0;
1011 lcd.addr.y = 0;
77943d31
SR
1012 lcd_gotoxy();
1013}
1014
7005b584 1015/* clears the display and resets X/Y */
698b1515
WT
1016static void lcd_clear_display(void)
1017{
2114924a 1018 lcd_write_cmd(LCD_CMD_DISPLAY_CLEAR);
6d8b588c
MG
1019 lcd.addr.x = 0;
1020 lcd.addr.y = 0;
698b1515
WT
1021 /* we must wait a few milliseconds (15) */
1022 long_sleep(15);
7005b584
WT
1023}
1024
698b1515
WT
1025static void lcd_init_display(void)
1026{
6d8b588c 1027 lcd.flags = ((lcd.height > 1) ? LCD_FLAG_N : 0)
698b1515 1028 | LCD_FLAG_D | LCD_FLAG_C | LCD_FLAG_B;
7005b584 1029
698b1515 1030 long_sleep(20); /* wait 20 ms after power-up for the paranoid */
7005b584 1031
2114924a
MG
1032 /* 8bits, 1 line, small fonts; let's do it 3 times */
1033 lcd_write_cmd(LCD_CMD_FUNCTION_SET | LCD_CMD_DATA_LEN_8BITS);
698b1515 1034 long_sleep(10);
2114924a 1035 lcd_write_cmd(LCD_CMD_FUNCTION_SET | LCD_CMD_DATA_LEN_8BITS);
698b1515 1036 long_sleep(10);
2114924a 1037 lcd_write_cmd(LCD_CMD_FUNCTION_SET | LCD_CMD_DATA_LEN_8BITS);
698b1515 1038 long_sleep(10);
7005b584 1039
2114924a
MG
1040 /* set font height and lines number */
1041 lcd_write_cmd(LCD_CMD_FUNCTION_SET | LCD_CMD_DATA_LEN_8BITS
1042 | ((lcd.flags & LCD_FLAG_F) ? LCD_CMD_FONT_5X10_DOTS : 0)
1043 | ((lcd.flags & LCD_FLAG_N) ? LCD_CMD_TWO_LINES : 0)
698b1515
WT
1044 );
1045 long_sleep(10);
7005b584 1046
2114924a
MG
1047 /* display off, cursor off, blink off */
1048 lcd_write_cmd(LCD_CMD_DISPLAY_CTRL);
698b1515 1049 long_sleep(10);
7005b584 1050
2114924a
MG
1051 lcd_write_cmd(LCD_CMD_DISPLAY_CTRL /* set display mode */
1052 | ((lcd.flags & LCD_FLAG_D) ? LCD_CMD_DISPLAY_ON : 0)
1053 | ((lcd.flags & LCD_FLAG_C) ? LCD_CMD_CURSOR_ON : 0)
1054 | ((lcd.flags & LCD_FLAG_B) ? LCD_CMD_BLINK_ON : 0)
698b1515 1055 );
7005b584 1056
6d8b588c 1057 lcd_backlight((lcd.flags & LCD_FLAG_L) ? 1 : 0);
7005b584 1058
698b1515 1059 long_sleep(10);
7005b584 1060
429ccf05 1061 /* entry mode set : increment, cursor shifting */
2114924a 1062 lcd_write_cmd(LCD_CMD_ENTRY_MODE | LCD_CMD_CURSOR_INC);
7005b584 1063
698b1515 1064 lcd_clear_display();
7005b584
WT
1065}
1066
1067/*
1068 * These are the file operation function for user access to /dev/lcd
1069 * This function can also be called from inside the kernel, by
1070 * setting file and ppos to NULL.
1071 *
1072 */
1073
429ccf05
HH
1074static inline int handle_lcd_special_code(void)
1075{
1076 /* LCD special codes */
1077
1078 int processed = 0;
1079
6d8b588c
MG
1080 char *esc = lcd.esc_seq.buf + 2;
1081 int oldflags = lcd.flags;
429ccf05
HH
1082
1083 /* check for display mode flags */
1084 switch (*esc) {
1085 case 'D': /* Display ON */
6d8b588c 1086 lcd.flags |= LCD_FLAG_D;
429ccf05
HH
1087 processed = 1;
1088 break;
1089 case 'd': /* Display OFF */
6d8b588c 1090 lcd.flags &= ~LCD_FLAG_D;
429ccf05
HH
1091 processed = 1;
1092 break;
1093 case 'C': /* Cursor ON */
6d8b588c 1094 lcd.flags |= LCD_FLAG_C;
429ccf05
HH
1095 processed = 1;
1096 break;
1097 case 'c': /* Cursor OFF */
6d8b588c 1098 lcd.flags &= ~LCD_FLAG_C;
429ccf05
HH
1099 processed = 1;
1100 break;
1101 case 'B': /* Blink ON */
6d8b588c 1102 lcd.flags |= LCD_FLAG_B;
429ccf05
HH
1103 processed = 1;
1104 break;
1105 case 'b': /* Blink OFF */
6d8b588c 1106 lcd.flags &= ~LCD_FLAG_B;
429ccf05
HH
1107 processed = 1;
1108 break;
1109 case '+': /* Back light ON */
6d8b588c 1110 lcd.flags |= LCD_FLAG_L;
429ccf05
HH
1111 processed = 1;
1112 break;
1113 case '-': /* Back light OFF */
6d8b588c 1114 lcd.flags &= ~LCD_FLAG_L;
429ccf05
HH
1115 processed = 1;
1116 break;
1117 case '*':
1118 /* flash back light using the keypad timer */
b565b3fb 1119 if (scan_timer.function) {
832bf28c
SS
1120 if (lcd.light_tempo == 0 &&
1121 ((lcd.flags & LCD_FLAG_L) == 0))
429ccf05 1122 lcd_backlight(1);
6d8b588c 1123 lcd.light_tempo = FLASH_LIGHT_TEMPO;
429ccf05
HH
1124 }
1125 processed = 1;
1126 break;
1127 case 'f': /* Small Font */
6d8b588c 1128 lcd.flags &= ~LCD_FLAG_F;
429ccf05
HH
1129 processed = 1;
1130 break;
1131 case 'F': /* Large Font */
6d8b588c 1132 lcd.flags |= LCD_FLAG_F;
429ccf05
HH
1133 processed = 1;
1134 break;
1135 case 'n': /* One Line */
6d8b588c 1136 lcd.flags &= ~LCD_FLAG_N;
429ccf05
HH
1137 processed = 1;
1138 break;
1139 case 'N': /* Two Lines */
6d8b588c 1140 lcd.flags |= LCD_FLAG_N;
429ccf05
HH
1141 break;
1142 case 'l': /* Shift Cursor Left */
6d8b588c 1143 if (lcd.addr.x > 0) {
429ccf05 1144 /* back one char if not at end of line */
6d8b588c 1145 if (lcd.addr.x < lcd.bwidth)
2114924a 1146 lcd_write_cmd(LCD_CMD_SHIFT);
6d8b588c 1147 lcd.addr.x--;
429ccf05
HH
1148 }
1149 processed = 1;
1150 break;
1151 case 'r': /* shift cursor right */
6d8b588c 1152 if (lcd.addr.x < lcd.width) {
429ccf05 1153 /* allow the cursor to pass the end of the line */
2114924a
MG
1154 if (lcd.addr.x < (lcd.bwidth - 1))
1155 lcd_write_cmd(LCD_CMD_SHIFT |
1156 LCD_CMD_SHIFT_RIGHT);
6d8b588c 1157 lcd.addr.x++;
429ccf05
HH
1158 }
1159 processed = 1;
1160 break;
1161 case 'L': /* shift display left */
2114924a 1162 lcd_write_cmd(LCD_CMD_SHIFT | LCD_CMD_DISPLAY_SHIFT);
429ccf05
HH
1163 processed = 1;
1164 break;
1165 case 'R': /* shift display right */
2114924a
MG
1166 lcd_write_cmd(LCD_CMD_SHIFT | LCD_CMD_DISPLAY_SHIFT |
1167 LCD_CMD_SHIFT_RIGHT);
429ccf05
HH
1168 processed = 1;
1169 break;
1170 case 'k': { /* kill end of line */
1171 int x;
c3ed0afc 1172
6d8b588c 1173 for (x = lcd.addr.x; x < lcd.bwidth; x++)
429ccf05
HH
1174 lcd_write_data(' ');
1175
1176 /* restore cursor position */
1177 lcd_gotoxy();
1178 processed = 1;
1179 break;
1180 }
1181 case 'I': /* reinitialize display */
1182 lcd_init_display();
429ccf05
HH
1183 processed = 1;
1184 break;
1185 case 'G': {
1186 /* Generator : LGcxxxxx...xx; must have <c> between '0'
1187 * and '7', representing the numerical ASCII code of the
1188 * redefined character, and <xx...xx> a sequence of 16
1189 * hex digits representing 8 bytes for each character.
1190 * Most LCDs will only use 5 lower bits of the 7 first
1191 * bytes.
1192 */
1193
1194 unsigned char cgbytes[8];
1195 unsigned char cgaddr;
1196 int cgoffset;
1197 int shift;
1198 char value;
1199 int addr;
1200
b565b3fb 1201 if (!strchr(esc, ';'))
429ccf05
HH
1202 break;
1203
1204 esc++;
1205
1206 cgaddr = *(esc++) - '0';
1207 if (cgaddr > 7) {
1208 processed = 1;
1209 break;
1210 }
1211
1212 cgoffset = 0;
1213 shift = 0;
1214 value = 0;
1215 while (*esc && cgoffset < 8) {
1216 shift ^= 4;
3ac76904 1217 if (*esc >= '0' && *esc <= '9') {
429ccf05 1218 value |= (*esc - '0') << shift;
3ac76904 1219 } else if (*esc >= 'A' && *esc <= 'Z') {
429ccf05 1220 value |= (*esc - 'A' + 10) << shift;
3ac76904 1221 } else if (*esc >= 'a' && *esc <= 'z') {
429ccf05 1222 value |= (*esc - 'a' + 10) << shift;
3ac76904 1223 } else {
429ccf05
HH
1224 esc++;
1225 continue;
1226 }
1227
1228 if (shift == 0) {
1229 cgbytes[cgoffset++] = value;
1230 value = 0;
1231 }
1232
1233 esc++;
1234 }
1235
2114924a 1236 lcd_write_cmd(LCD_CMD_SET_CGRAM_ADDR | (cgaddr * 8));
429ccf05
HH
1237 for (addr = 0; addr < cgoffset; addr++)
1238 lcd_write_data(cgbytes[addr]);
1239
1240 /* ensures that we stop writing to CGRAM */
1241 lcd_gotoxy();
1242 processed = 1;
1243 break;
1244 }
1245 case 'x': /* gotoxy : LxXXX[yYYY]; */
1246 case 'y': /* gotoxy : LyYYY[xXXX]; */
b565b3fb 1247 if (!strchr(esc, ';'))
429ccf05
HH
1248 break;
1249
1250 while (*esc) {
1251 if (*esc == 'x') {
1252 esc++;
6d8b588c 1253 if (kstrtoul(esc, 10, &lcd.addr.x) < 0)
12995706 1254 break;
429ccf05
HH
1255 } else if (*esc == 'y') {
1256 esc++;
6d8b588c 1257 if (kstrtoul(esc, 10, &lcd.addr.y) < 0)
12995706 1258 break;
3ac76904 1259 } else {
429ccf05 1260 break;
3ac76904 1261 }
429ccf05
HH
1262 }
1263
1264 lcd_gotoxy();
1265 processed = 1;
1266 break;
1267 }
1268
2114924a 1269 /* TODO: This indent party here got ugly, clean it! */
f2635894 1270 /* Check whether one flag was changed */
6d8b588c 1271 if (oldflags != lcd.flags) {
429ccf05 1272 /* check whether one of B,C,D flags were changed */
6d8b588c 1273 if ((oldflags ^ lcd.flags) &
429ccf05
HH
1274 (LCD_FLAG_B | LCD_FLAG_C | LCD_FLAG_D))
1275 /* set display mode */
2114924a
MG
1276 lcd_write_cmd(LCD_CMD_DISPLAY_CTRL
1277 | ((lcd.flags & LCD_FLAG_D)
1278 ? LCD_CMD_DISPLAY_ON : 0)
1279 | ((lcd.flags & LCD_FLAG_C)
1280 ? LCD_CMD_CURSOR_ON : 0)
1281 | ((lcd.flags & LCD_FLAG_B)
1282 ? LCD_CMD_BLINK_ON : 0));
429ccf05 1283 /* check whether one of F,N flags was changed */
6d8b588c 1284 else if ((oldflags ^ lcd.flags) & (LCD_FLAG_F | LCD_FLAG_N))
2114924a
MG
1285 lcd_write_cmd(LCD_CMD_FUNCTION_SET
1286 | LCD_CMD_DATA_LEN_8BITS
1287 | ((lcd.flags & LCD_FLAG_F)
1288 ? LCD_CMD_TWO_LINES : 0)
1289 | ((lcd.flags & LCD_FLAG_N)
1290 ? LCD_CMD_FONT_5X10_DOTS
1291 : 0));
f2635894 1292 /* check whether L flag was changed */
6d8b588c
MG
1293 else if ((oldflags ^ lcd.flags) & (LCD_FLAG_L)) {
1294 if (lcd.flags & (LCD_FLAG_L))
429ccf05 1295 lcd_backlight(1);
6d8b588c 1296 else if (lcd.light_tempo == 0)
8c17893c
NB
1297 /*
1298 * switch off the light only when the tempo
1299 * lighting is gone
1300 */
429ccf05
HH
1301 lcd_backlight(0);
1302 }
1303 }
1304
1305 return processed;
1306}
1307
70a8c3eb
BA
1308static void lcd_write_char(char c)
1309{
1310 /* first, we'll test if we're in escape mode */
6d8b588c 1311 if ((c != '\n') && lcd.esc_seq.len >= 0) {
70a8c3eb 1312 /* yes, let's add this char to the buffer */
6d8b588c
MG
1313 lcd.esc_seq.buf[lcd.esc_seq.len++] = c;
1314 lcd.esc_seq.buf[lcd.esc_seq.len] = 0;
70a8c3eb
BA
1315 } else {
1316 /* aborts any previous escape sequence */
6d8b588c 1317 lcd.esc_seq.len = -1;
70a8c3eb
BA
1318
1319 switch (c) {
1320 case LCD_ESCAPE_CHAR:
1321 /* start of an escape sequence */
6d8b588c
MG
1322 lcd.esc_seq.len = 0;
1323 lcd.esc_seq.buf[lcd.esc_seq.len] = 0;
70a8c3eb
BA
1324 break;
1325 case '\b':
1326 /* go back one char and clear it */
6d8b588c 1327 if (lcd.addr.x > 0) {
8c17893c
NB
1328 /*
1329 * check if we're not at the
1330 * end of the line
1331 */
6d8b588c 1332 if (lcd.addr.x < lcd.bwidth)
70a8c3eb 1333 /* back one char */
2114924a 1334 lcd_write_cmd(LCD_CMD_SHIFT);
6d8b588c 1335 lcd.addr.x--;
70a8c3eb
BA
1336 }
1337 /* replace with a space */
1338 lcd_write_data(' ');
1339 /* back one char again */
2114924a 1340 lcd_write_cmd(LCD_CMD_SHIFT);
70a8c3eb
BA
1341 break;
1342 case '\014':
1343 /* quickly clear the display */
1344 lcd_clear_fast();
1345 break;
1346 case '\n':
8c17893c
NB
1347 /*
1348 * flush the remainder of the current line and
1349 * go to the beginning of the next line
1350 */
6d8b588c 1351 for (; lcd.addr.x < lcd.bwidth; lcd.addr.x++)
70a8c3eb 1352 lcd_write_data(' ');
6d8b588c
MG
1353 lcd.addr.x = 0;
1354 lcd.addr.y = (lcd.addr.y + 1) % lcd.height;
70a8c3eb
BA
1355 lcd_gotoxy();
1356 break;
1357 case '\r':
1358 /* go to the beginning of the same line */
6d8b588c 1359 lcd.addr.x = 0;
70a8c3eb
BA
1360 lcd_gotoxy();
1361 break;
1362 case '\t':
1363 /* print a space instead of the tab */
1364 lcd_print(' ');
1365 break;
1366 default:
1367 /* simply print this char */
1368 lcd_print(c);
1369 break;
1370 }
1371 }
1372
8c17893c
NB
1373 /*
1374 * now we'll see if we're in an escape mode and if the current
1375 * escape sequence can be understood.
1376 */
6d8b588c 1377 if (lcd.esc_seq.len >= 2) {
70a8c3eb
BA
1378 int processed = 0;
1379
6d8b588c 1380 if (!strcmp(lcd.esc_seq.buf, "[2J")) {
70a8c3eb
BA
1381 /* clear the display */
1382 lcd_clear_fast();
1383 processed = 1;
6d8b588c 1384 } else if (!strcmp(lcd.esc_seq.buf, "[H")) {
70a8c3eb 1385 /* cursor to home */
6d8b588c
MG
1386 lcd.addr.x = 0;
1387 lcd.addr.y = 0;
70a8c3eb
BA
1388 lcd_gotoxy();
1389 processed = 1;
1390 }
1391 /* codes starting with ^[[L */
6d8b588c
MG
1392 else if ((lcd.esc_seq.len >= 3) &&
1393 (lcd.esc_seq.buf[0] == '[') &&
1394 (lcd.esc_seq.buf[1] == 'L')) {
70a8c3eb
BA
1395 processed = handle_lcd_special_code();
1396 }
1397
1398 /* LCD special escape codes */
8c17893c
NB
1399 /*
1400 * flush the escape sequence if it's been processed
1401 * or if it is getting too long.
1402 */
6d8b588c
MG
1403 if (processed || (lcd.esc_seq.len >= LCD_ESCAPE_LEN))
1404 lcd.esc_seq.len = -1;
70a8c3eb
BA
1405 } /* escape codes */
1406}
1407
698b1515 1408static ssize_t lcd_write(struct file *file,
fdf4a494 1409 const char __user *buf, size_t count, loff_t *ppos)
698b1515 1410{
70a8c3eb 1411 const char __user *tmp = buf;
698b1515
WT
1412 char c;
1413
70a8c3eb 1414 for (; count-- > 0; (*ppos)++, tmp++) {
698b1515 1415 if (!in_interrupt() && (((count + 1) & 0x1f) == 0))
8c17893c
NB
1416 /*
1417 * let's be a little nice with other processes
1418 * that need some CPU
1419 */
429ccf05 1420 schedule();
698b1515 1421
6a4193a2 1422 if (get_user(c, tmp))
698b1515
WT
1423 return -EFAULT;
1424
70a8c3eb 1425 lcd_write_char(c);
698b1515 1426 }
7005b584 1427
698b1515 1428 return tmp - buf;
7005b584
WT
1429}
1430
698b1515
WT
1431static int lcd_open(struct inode *inode, struct file *file)
1432{
f4757af8 1433 if (!atomic_dec_and_test(&lcd_available))
698b1515 1434 return -EBUSY; /* open only once at a time */
7005b584 1435
698b1515
WT
1436 if (file->f_mode & FMODE_READ) /* device is write-only */
1437 return -EPERM;
7005b584 1438
6d8b588c 1439 if (lcd.must_clear) {
698b1515 1440 lcd_clear_display();
6d8b588c 1441 lcd.must_clear = false;
698b1515 1442 }
3ff81013 1443 return nonseekable_open(inode, file);
7005b584
WT
1444}
1445
698b1515
WT
1446static int lcd_release(struct inode *inode, struct file *file)
1447{
f4757af8 1448 atomic_inc(&lcd_available);
698b1515 1449 return 0;
7005b584
WT
1450}
1451
429ccf05 1452static const struct file_operations lcd_fops = {
698b1515
WT
1453 .write = lcd_write,
1454 .open = lcd_open,
1455 .release = lcd_release,
3ff81013 1456 .llseek = no_llseek,
7005b584
WT
1457};
1458
1459static struct miscdevice lcd_dev = {
6c3773de
MG
1460 .minor = LCD_MINOR,
1461 .name = "lcd",
1462 .fops = &lcd_fops,
7005b584
WT
1463};
1464
7005b584 1465/* public function usable from the kernel for any purpose */
36d2041a 1466static void panel_lcd_print(const char *s)
698b1515 1467{
70a8c3eb
BA
1468 const char *tmp = s;
1469 int count = strlen(s);
1470
6d8b588c 1471 if (lcd.enabled && lcd.initialized) {
70a8c3eb
BA
1472 for (; count-- > 0; tmp++) {
1473 if (!in_interrupt() && (((count + 1) & 0x1f) == 0))
8c17893c
NB
1474 /*
1475 * let's be a little nice with other processes
1476 * that need some CPU
1477 */
70a8c3eb
BA
1478 schedule();
1479
1480 lcd_write_char(*tmp);
1481 }
1482 }
7005b584
WT
1483}
1484
7005b584 1485/* initialize the LCD driver */
36d2041a 1486static void lcd_init(void)
698b1515 1487{
87b8e0c8 1488 switch (selected_lcd_type) {
429ccf05
HH
1489 case LCD_TYPE_OLD:
1490 /* parallel mode, 8 bits */
8037e2a3
MG
1491 lcd.proto = LCD_PROTO_PARALLEL;
1492 lcd.charset = LCD_CHARSET_NORMAL;
1493 lcd.pins.e = PIN_STROBE;
1494 lcd.pins.rs = PIN_AUTOLF;
1495
1496 lcd.width = 40;
1497 lcd.bwidth = 40;
1498 lcd.hwidth = 64;
1499 lcd.height = 2;
7005b584 1500 break;
429ccf05
HH
1501 case LCD_TYPE_KS0074:
1502 /* serial mode, ks0074 */
8037e2a3
MG
1503 lcd.proto = LCD_PROTO_SERIAL;
1504 lcd.charset = LCD_CHARSET_KS0074;
1505 lcd.pins.bl = PIN_AUTOLF;
1506 lcd.pins.cl = PIN_STROBE;
1507 lcd.pins.da = PIN_D0;
1508
1509 lcd.width = 16;
1510 lcd.bwidth = 40;
1511 lcd.hwidth = 16;
1512 lcd.height = 2;
7005b584 1513 break;
429ccf05
HH
1514 case LCD_TYPE_NEXCOM:
1515 /* parallel mode, 8 bits, generic */
8037e2a3
MG
1516 lcd.proto = LCD_PROTO_PARALLEL;
1517 lcd.charset = LCD_CHARSET_NORMAL;
1518 lcd.pins.e = PIN_AUTOLF;
1519 lcd.pins.rs = PIN_SELECP;
1520 lcd.pins.rw = PIN_INITP;
1521
1522 lcd.width = 16;
1523 lcd.bwidth = 40;
1524 lcd.hwidth = 64;
1525 lcd.height = 2;
7005b584 1526 break;
429ccf05
HH
1527 case LCD_TYPE_CUSTOM:
1528 /* customer-defined */
8037e2a3
MG
1529 lcd.proto = DEFAULT_LCD_PROTO;
1530 lcd.charset = DEFAULT_LCD_CHARSET;
7005b584
WT
1531 /* default geometry will be set later */
1532 break;
429ccf05
HH
1533 case LCD_TYPE_HANTRONIX:
1534 /* parallel mode, 8 bits, hantronix-like */
698b1515 1535 default:
8037e2a3
MG
1536 lcd.proto = LCD_PROTO_PARALLEL;
1537 lcd.charset = LCD_CHARSET_NORMAL;
1538 lcd.pins.e = PIN_STROBE;
1539 lcd.pins.rs = PIN_SELECP;
1540
1541 lcd.width = 16;
1542 lcd.bwidth = 40;
1543 lcd.hwidth = 64;
1544 lcd.height = 2;
7005b584 1545 break;
698b1515 1546 }
7005b584 1547
8037e2a3 1548 /* Overwrite with module params set on loading */
1a4b2e3e 1549 if (lcd_height != NOT_SET)
8037e2a3 1550 lcd.height = lcd_height;
1a4b2e3e 1551 if (lcd_width != NOT_SET)
8037e2a3 1552 lcd.width = lcd_width;
1a4b2e3e 1553 if (lcd_bwidth != NOT_SET)
8037e2a3 1554 lcd.bwidth = lcd_bwidth;
1a4b2e3e 1555 if (lcd_hwidth != NOT_SET)
8037e2a3 1556 lcd.hwidth = lcd_hwidth;
1a4b2e3e 1557 if (lcd_charset != NOT_SET)
8037e2a3 1558 lcd.charset = lcd_charset;
1a4b2e3e 1559 if (lcd_proto != NOT_SET)
8037e2a3
MG
1560 lcd.proto = lcd_proto;
1561 if (lcd_e_pin != PIN_NOT_SET)
1562 lcd.pins.e = lcd_e_pin;
1563 if (lcd_rs_pin != PIN_NOT_SET)
1564 lcd.pins.rs = lcd_rs_pin;
1565 if (lcd_rw_pin != PIN_NOT_SET)
1566 lcd.pins.rw = lcd_rw_pin;
1567 if (lcd_cl_pin != PIN_NOT_SET)
1568 lcd.pins.cl = lcd_cl_pin;
1569 if (lcd_da_pin != PIN_NOT_SET)
1570 lcd.pins.da = lcd_da_pin;
1571 if (lcd_bl_pin != PIN_NOT_SET)
1572 lcd.pins.bl = lcd_bl_pin;
1573
698b1515 1574 /* this is used to catch wrong and default values */
8037e2a3
MG
1575 if (lcd.width <= 0)
1576 lcd.width = DEFAULT_LCD_WIDTH;
1577 if (lcd.bwidth <= 0)
1578 lcd.bwidth = DEFAULT_LCD_BWIDTH;
1579 if (lcd.hwidth <= 0)
1580 lcd.hwidth = DEFAULT_LCD_HWIDTH;
1581 if (lcd.height <= 0)
1582 lcd.height = DEFAULT_LCD_HEIGHT;
1583
1584 if (lcd.proto == LCD_PROTO_SERIAL) { /* SERIAL */
698b1515
WT
1585 lcd_write_cmd = lcd_write_cmd_s;
1586 lcd_write_data = lcd_write_data_s;
1587 lcd_clear_fast = lcd_clear_fast_s;
1588
8037e2a3
MG
1589 if (lcd.pins.cl == PIN_NOT_SET)
1590 lcd.pins.cl = DEFAULT_LCD_PIN_SCL;
1591 if (lcd.pins.da == PIN_NOT_SET)
1592 lcd.pins.da = DEFAULT_LCD_PIN_SDA;
698b1515 1593
8037e2a3 1594 } else if (lcd.proto == LCD_PROTO_PARALLEL) { /* PARALLEL */
698b1515
WT
1595 lcd_write_cmd = lcd_write_cmd_p8;
1596 lcd_write_data = lcd_write_data_p8;
1597 lcd_clear_fast = lcd_clear_fast_p8;
1598
8037e2a3
MG
1599 if (lcd.pins.e == PIN_NOT_SET)
1600 lcd.pins.e = DEFAULT_LCD_PIN_E;
1601 if (lcd.pins.rs == PIN_NOT_SET)
1602 lcd.pins.rs = DEFAULT_LCD_PIN_RS;
1603 if (lcd.pins.rw == PIN_NOT_SET)
1604 lcd.pins.rw = DEFAULT_LCD_PIN_RW;
77943d31
SR
1605 } else {
1606 lcd_write_cmd = lcd_write_cmd_tilcd;
1607 lcd_write_data = lcd_write_data_tilcd;
1608 lcd_clear_fast = lcd_clear_fast_tilcd;
698b1515 1609 }
7005b584 1610
8037e2a3
MG
1611 if (lcd.pins.bl == PIN_NOT_SET)
1612 lcd.pins.bl = DEFAULT_LCD_PIN_BL;
1613
1614 if (lcd.pins.e == PIN_NOT_SET)
1615 lcd.pins.e = PIN_NONE;
1616 if (lcd.pins.rs == PIN_NOT_SET)
1617 lcd.pins.rs = PIN_NONE;
1618 if (lcd.pins.rw == PIN_NOT_SET)
1619 lcd.pins.rw = PIN_NONE;
1620 if (lcd.pins.bl == PIN_NOT_SET)
1621 lcd.pins.bl = PIN_NONE;
1622 if (lcd.pins.cl == PIN_NOT_SET)
1623 lcd.pins.cl = PIN_NONE;
1624 if (lcd.pins.da == PIN_NOT_SET)
1625 lcd.pins.da = PIN_NONE;
1626
1627 if (lcd.charset == NOT_SET)
1628 lcd.charset = DEFAULT_LCD_CHARSET;
1629
1630 if (lcd.charset == LCD_CHARSET_KS0074)
698b1515
WT
1631 lcd_char_conv = lcd_char_conv_ks0074;
1632 else
1633 lcd_char_conv = NULL;
1634
8037e2a3 1635 if (lcd.pins.bl != PIN_NONE)
698b1515
WT
1636 init_scan_timer();
1637
8037e2a3 1638 pin_to_bits(lcd.pins.e, lcd_bits[LCD_PORT_D][LCD_BIT_E],
698b1515 1639 lcd_bits[LCD_PORT_C][LCD_BIT_E]);
8037e2a3 1640 pin_to_bits(lcd.pins.rs, lcd_bits[LCD_PORT_D][LCD_BIT_RS],
698b1515 1641 lcd_bits[LCD_PORT_C][LCD_BIT_RS]);
8037e2a3 1642 pin_to_bits(lcd.pins.rw, lcd_bits[LCD_PORT_D][LCD_BIT_RW],
698b1515 1643 lcd_bits[LCD_PORT_C][LCD_BIT_RW]);
8037e2a3 1644 pin_to_bits(lcd.pins.bl, lcd_bits[LCD_PORT_D][LCD_BIT_BL],
698b1515 1645 lcd_bits[LCD_PORT_C][LCD_BIT_BL]);
8037e2a3 1646 pin_to_bits(lcd.pins.cl, lcd_bits[LCD_PORT_D][LCD_BIT_CL],
698b1515 1647 lcd_bits[LCD_PORT_C][LCD_BIT_CL]);
8037e2a3 1648 pin_to_bits(lcd.pins.da, lcd_bits[LCD_PORT_D][LCD_BIT_DA],
698b1515
WT
1649 lcd_bits[LCD_PORT_C][LCD_BIT_DA]);
1650
8c17893c
NB
1651 /*
1652 * before this line, we must NOT send anything to the display.
698b1515 1653 * Since lcd_init_display() needs to write data, we have to
8c17893c
NB
1654 * enable mark the LCD initialized just before.
1655 */
6d8b588c 1656 lcd.initialized = true;
698b1515 1657 lcd_init_display();
7005b584 1658
698b1515 1659 /* display a short message */
7005b584
WT
1660#ifdef CONFIG_PANEL_CHANGE_MESSAGE
1661#ifdef CONFIG_PANEL_BOOT_MESSAGE
698b1515 1662 panel_lcd_print("\x1b[Lc\x1b[Lb\x1b[L*" CONFIG_PANEL_BOOT_MESSAGE);
7005b584
WT
1663#endif
1664#else
698b1515
WT
1665 panel_lcd_print("\x1b[Lc\x1b[Lb\x1b[L*Linux-" UTS_RELEASE "\nPanel-"
1666 PANEL_VERSION);
7005b584 1667#endif
6d8b588c
MG
1668 lcd.addr.x = 0;
1669 lcd.addr.y = 0;
429ccf05 1670 /* clear the display on the next device opening */
6d8b588c 1671 lcd.must_clear = true;
698b1515 1672 lcd_gotoxy();
7005b584
WT
1673}
1674
7005b584
WT
1675/*
1676 * These are the file operation function for user access to /dev/keypad
1677 */
1678
698b1515 1679static ssize_t keypad_read(struct file *file,
cce75f41 1680 char __user *buf, size_t count, loff_t *ppos)
698b1515 1681{
698b1515 1682 unsigned i = *ppos;
cce75f41 1683 char __user *tmp = buf;
7005b584 1684
698b1515
WT
1685 if (keypad_buflen == 0) {
1686 if (file->f_flags & O_NONBLOCK)
1687 return -EAGAIN;
7005b584 1688
310df69c
AB
1689 if (wait_event_interruptible(keypad_read_wait,
1690 keypad_buflen != 0))
698b1515
WT
1691 return -EINTR;
1692 }
7005b584 1693
429ccf05
HH
1694 for (; count-- > 0 && (keypad_buflen > 0);
1695 ++i, ++tmp, --keypad_buflen) {
698b1515
WT
1696 put_user(keypad_buffer[keypad_start], tmp);
1697 keypad_start = (keypad_start + 1) % KEYPAD_BUFFER;
1698 }
1699 *ppos = i;
7005b584 1700
698b1515 1701 return tmp - buf;
7005b584
WT
1702}
1703
698b1515
WT
1704static int keypad_open(struct inode *inode, struct file *file)
1705{
f4757af8 1706 if (!atomic_dec_and_test(&keypad_available))
698b1515 1707 return -EBUSY; /* open only once at a time */
7005b584 1708
698b1515
WT
1709 if (file->f_mode & FMODE_WRITE) /* device is read-only */
1710 return -EPERM;
7005b584 1711
698b1515 1712 keypad_buflen = 0; /* flush the buffer on opening */
698b1515 1713 return 0;
7005b584
WT
1714}
1715
698b1515
WT
1716static int keypad_release(struct inode *inode, struct file *file)
1717{
f4757af8 1718 atomic_inc(&keypad_available);
698b1515 1719 return 0;
7005b584
WT
1720}
1721
429ccf05 1722static const struct file_operations keypad_fops = {
698b1515
WT
1723 .read = keypad_read, /* read */
1724 .open = keypad_open, /* open */
1725 .release = keypad_release, /* close */
6038f373 1726 .llseek = default_llseek,
7005b584
WT
1727};
1728
1729static struct miscdevice keypad_dev = {
6c3773de
MG
1730 .minor = KEYPAD_MINOR,
1731 .name = "keypad",
1732 .fops = &keypad_fops,
7005b584
WT
1733};
1734
36d2041a 1735static void keypad_send_key(const char *string, int max_len)
698b1515 1736{
698b1515 1737 /* send the key to the device only if a process is attached to it. */
f4757af8 1738 if (!atomic_read(&keypad_available)) {
698b1515
WT
1739 while (max_len-- && keypad_buflen < KEYPAD_BUFFER && *string) {
1740 keypad_buffer[(keypad_start + keypad_buflen++) %
1741 KEYPAD_BUFFER] = *string++;
1742 }
1743 wake_up_interruptible(&keypad_read_wait);
7005b584 1744 }
7005b584
WT
1745}
1746
429ccf05
HH
1747/* this function scans all the bits involving at least one logical signal,
1748 * and puts the results in the bitfield "phys_read" (one bit per established
1749 * contact), and sets "phys_read_prev" to "phys_read".
7005b584 1750 *
429ccf05
HH
1751 * Note: to debounce input signals, we will only consider as switched a signal
1752 * which is stable across 2 measures. Signals which are different between two
1753 * reads will be kept as they previously were in their logical form (phys_prev).
1754 * A signal which has just switched will have a 1 in
1755 * (phys_read ^ phys_read_prev).
7005b584 1756 */
698b1515
WT
1757static void phys_scan_contacts(void)
1758{
1759 int bit, bitval;
1760 char oldval;
1761 char bitmask;
1762 char gndmask;
1763
1764 phys_prev = phys_curr;
1765 phys_read_prev = phys_read;
1766 phys_read = 0; /* flush all signals */
1767
429ccf05
HH
1768 /* keep track of old value, with all outputs disabled */
1769 oldval = r_dtr(pprt) | scan_mask_o;
1770 /* activate all keyboard outputs (active low) */
1771 w_dtr(pprt, oldval & ~scan_mask_o);
1772
1773 /* will have a 1 for each bit set to gnd */
1774 bitmask = PNL_PINPUT(r_str(pprt)) & scan_mask_i;
1775 /* disable all matrix signals */
1776 w_dtr(pprt, oldval);
698b1515
WT
1777
1778 /* now that all outputs are cleared, the only active input bits are
1779 * directly connected to the ground
7005b584 1780 */
698b1515 1781
429ccf05
HH
1782 /* 1 for each grounded input */
1783 gndmask = PNL_PINPUT(r_str(pprt)) & scan_mask_i;
1784
1785 /* grounded inputs are signals 40-44 */
35fe0872 1786 phys_read |= (__u64)gndmask << 40;
7005b584 1787
698b1515 1788 if (bitmask != gndmask) {
8c17893c
NB
1789 /*
1790 * since clearing the outputs changed some inputs, we know
429ccf05
HH
1791 * that some input signals are currently tied to some outputs.
1792 * So we'll scan them.
698b1515
WT
1793 */
1794 for (bit = 0; bit < 8; bit++) {
79f2af62 1795 bitval = BIT(bit);
7005b584 1796
698b1515
WT
1797 if (!(scan_mask_o & bitval)) /* skip unused bits */
1798 continue;
1799
1800 w_dtr(pprt, oldval & ~bitval); /* enable this output */
1801 bitmask = PNL_PINPUT(r_str(pprt)) & ~gndmask;
35fe0872 1802 phys_read |= (__u64)bitmask << (5 * bit);
698b1515
WT
1803 }
1804 w_dtr(pprt, oldval); /* disable all outputs */
7005b584 1805 }
8c17893c
NB
1806 /*
1807 * this is easy: use old bits when they are flapping,
1808 * use new ones when stable
1809 */
429ccf05
HH
1810 phys_curr = (phys_prev & (phys_read ^ phys_read_prev)) |
1811 (phys_read & ~(phys_read ^ phys_read_prev));
1812}
1813
1814static inline int input_state_high(struct logical_input *input)
1815{
1816#if 0
1817 /* FIXME:
1818 * this is an invalid test. It tries to catch
1819 * transitions from single-key to multiple-key, but
1820 * doesn't take into account the contacts polarity.
1821 * The only solution to the problem is to parse keys
1822 * from the most complex to the simplest combinations,
1823 * and mark them as 'caught' once a combination
1824 * matches, then unmatch it for all other ones.
1825 */
1826
1827 /* try to catch dangerous transitions cases :
1828 * someone adds a bit, so this signal was a false
1829 * positive resulting from a transition. We should
1830 * invalidate the signal immediately and not call the
1831 * release function.
1832 * eg: 0 -(press A)-> A -(press B)-> AB : don't match A's release.
1833 */
fdf4a494
DB
1834 if (((phys_prev & input->mask) == input->value) &&
1835 ((phys_curr & input->mask) > input->value)) {
429ccf05
HH
1836 input->state = INPUT_ST_LOW; /* invalidate */
1837 return 1;
1838 }
1839#endif
1840
1841 if ((phys_curr & input->mask) == input->value) {
1842 if ((input->type == INPUT_TYPE_STD) &&
1843 (input->high_timer == 0)) {
1844 input->high_timer++;
b565b3fb 1845 if (input->u.std.press_fct)
429ccf05
HH
1846 input->u.std.press_fct(input->u.std.press_data);
1847 } else if (input->type == INPUT_TYPE_KBD) {
1848 /* will turn on the light */
1849 keypressed = 1;
1850
1851 if (input->high_timer == 0) {
1852 char *press_str = input->u.kbd.press_str;
c3ed0afc 1853
e6626de5
JC
1854 if (press_str[0]) {
1855 int s = sizeof(input->u.kbd.press_str);
c3ed0afc 1856
e6626de5
JC
1857 keypad_send_key(press_str, s);
1858 }
429ccf05
HH
1859 }
1860
1861 if (input->u.kbd.repeat_str[0]) {
1862 char *repeat_str = input->u.kbd.repeat_str;
c3ed0afc 1863
429ccf05 1864 if (input->high_timer >= KEYPAD_REP_START) {
e6626de5 1865 int s = sizeof(input->u.kbd.repeat_str);
c3ed0afc 1866
429ccf05 1867 input->high_timer -= KEYPAD_REP_DELAY;
e6626de5 1868 keypad_send_key(repeat_str, s);
429ccf05
HH
1869 }
1870 /* we will need to come back here soon */
1871 inputs_stable = 0;
1872 }
1873
1874 if (input->high_timer < 255)
1875 input->high_timer++;
1876 }
1877 return 1;
429ccf05 1878 }
083b3638
VH
1879
1880 /* else signal falling down. Let's fall through. */
1881 input->state = INPUT_ST_FALLING;
1882 input->fall_timer = 0;
1883
429ccf05
HH
1884 return 0;
1885}
1886
1887static inline void input_state_falling(struct logical_input *input)
1888{
1889#if 0
1890 /* FIXME !!! same comment as in input_state_high */
fdf4a494
DB
1891 if (((phys_prev & input->mask) == input->value) &&
1892 ((phys_curr & input->mask) > input->value)) {
429ccf05
HH
1893 input->state = INPUT_ST_LOW; /* invalidate */
1894 return;
1895 }
1896#endif
1897
1898 if ((phys_curr & input->mask) == input->value) {
1899 if (input->type == INPUT_TYPE_KBD) {
1900 /* will turn on the light */
1901 keypressed = 1;
1902
1903 if (input->u.kbd.repeat_str[0]) {
1904 char *repeat_str = input->u.kbd.repeat_str;
c3ed0afc 1905
e6626de5
JC
1906 if (input->high_timer >= KEYPAD_REP_START) {
1907 int s = sizeof(input->u.kbd.repeat_str);
c3ed0afc 1908
429ccf05 1909 input->high_timer -= KEYPAD_REP_DELAY;
e6626de5
JC
1910 keypad_send_key(repeat_str, s);
1911 }
429ccf05
HH
1912 /* we will need to come back here soon */
1913 inputs_stable = 0;
1914 }
1915
1916 if (input->high_timer < 255)
1917 input->high_timer++;
1918 }
1919 input->state = INPUT_ST_HIGH;
1920 } else if (input->fall_timer >= input->fall_time) {
1921 /* call release event */
1922 if (input->type == INPUT_TYPE_STD) {
1923 void (*release_fct)(int) = input->u.std.release_fct;
c3ed0afc 1924
b565b3fb 1925 if (release_fct)
429ccf05
HH
1926 release_fct(input->u.std.release_data);
1927 } else if (input->type == INPUT_TYPE_KBD) {
1928 char *release_str = input->u.kbd.release_str;
c3ed0afc 1929
e6626de5
JC
1930 if (release_str[0]) {
1931 int s = sizeof(input->u.kbd.release_str);
c3ed0afc 1932
e6626de5
JC
1933 keypad_send_key(release_str, s);
1934 }
429ccf05
HH
1935 }
1936
1937 input->state = INPUT_ST_LOW;
1938 } else {
1939 input->fall_timer++;
1940 inputs_stable = 0;
1941 }
7005b584
WT
1942}
1943
698b1515
WT
1944static void panel_process_inputs(void)
1945{
1946 struct list_head *item;
1947 struct logical_input *input;
7005b584 1948
698b1515
WT
1949 keypressed = 0;
1950 inputs_stable = 1;
1951 list_for_each(item, &logical_inputs) {
1952 input = list_entry(item, struct logical_input, list);
1953
1954 switch (input->state) {
1955 case INPUT_ST_LOW:
1956 if ((phys_curr & input->mask) != input->value)
1957 break;
429ccf05
HH
1958 /* if all needed ones were already set previously,
1959 * this means that this logical signal has been
1960 * activated by the releasing of another combined
1961 * signal, so we don't want to match.
1962 * eg: AB -(release B)-> A -(release A)-> 0 :
1963 * don't match A.
698b1515
WT
1964 */
1965 if ((phys_prev & input->mask) == input->value)
1966 break;
1967 input->rise_timer = 0;
1968 input->state = INPUT_ST_RISING;
1969 /* no break here, fall through */
1970 case INPUT_ST_RISING:
1971 if ((phys_curr & input->mask) != input->value) {
1972 input->state = INPUT_ST_LOW;
1973 break;
1974 }
1975 if (input->rise_timer < input->rise_time) {
1976 inputs_stable = 0;
1977 input->rise_timer++;
1978 break;
1979 }
1980 input->high_timer = 0;
1981 input->state = INPUT_ST_HIGH;
1982 /* no break here, fall through */
1983 case INPUT_ST_HIGH:
429ccf05 1984 if (input_state_high(input))
698b1515 1985 break;
698b1515
WT
1986 /* no break here, fall through */
1987 case INPUT_ST_FALLING:
429ccf05 1988 input_state_falling(input);
698b1515
WT
1989 }
1990 }
1991}
7005b584 1992
698b1515
WT
1993static void panel_scan_timer(void)
1994{
a8b2580b 1995 if (keypad.enabled && keypad_initialized) {
d4d2dbca 1996 if (spin_trylock_irq(&pprt_lock)) {
698b1515 1997 phys_scan_contacts();
429ccf05
HH
1998
1999 /* no need for the parport anymore */
d4d2dbca 2000 spin_unlock_irq(&pprt_lock);
7005b584
WT
2001 }
2002
698b1515
WT
2003 if (!inputs_stable || phys_curr != phys_prev)
2004 panel_process_inputs();
7005b584 2005 }
7005b584 2006
6d8b588c 2007 if (lcd.enabled && lcd.initialized) {
698b1515 2008 if (keypressed) {
832bf28c
SS
2009 if (lcd.light_tempo == 0 &&
2010 ((lcd.flags & LCD_FLAG_L) == 0))
698b1515 2011 lcd_backlight(1);
6d8b588c
MG
2012 lcd.light_tempo = FLASH_LIGHT_TEMPO;
2013 } else if (lcd.light_tempo > 0) {
2014 lcd.light_tempo--;
832bf28c
SS
2015 if (lcd.light_tempo == 0 &&
2016 ((lcd.flags & LCD_FLAG_L) == 0))
698b1515
WT
2017 lcd_backlight(0);
2018 }
2019 }
2020
2021 mod_timer(&scan_timer, jiffies + INPUT_POLL_TIME);
7005b584
WT
2022}
2023
698b1515
WT
2024static void init_scan_timer(void)
2025{
b565b3fb 2026 if (scan_timer.function)
698b1515
WT
2027 return; /* already started */
2028
8f6e36c5 2029 setup_timer(&scan_timer, (void *)&panel_scan_timer, 0);
698b1515 2030 scan_timer.expires = jiffies + INPUT_POLL_TIME;
698b1515 2031 add_timer(&scan_timer);
7005b584
WT
2032}
2033
2034/* converts a name of the form "({BbAaPpSsEe}{01234567-})*" to a series of bits.
429ccf05
HH
2035 * if <omask> or <imask> are non-null, they will be or'ed with the bits
2036 * corresponding to out and in bits respectively.
7005b584
WT
2037 * returns 1 if ok, 0 if error (in which case, nothing is written).
2038 */
35fe0872 2039static u8 input_name2mask(const char *name, __u64 *mask, __u64 *value,
d938e1eb 2040 u8 *imask, u8 *omask)
698b1515 2041{
8aa7307b 2042 const char sigtab[] = "EeSsPpAaBb";
d938e1eb 2043 u8 im, om;
35fe0872 2044 __u64 m, v;
698b1515 2045
d12f27e8
KS
2046 om = 0;
2047 im = 0;
2d53426b
DB
2048 m = 0ULL;
2049 v = 0ULL;
698b1515
WT
2050 while (*name) {
2051 int in, out, bit, neg;
8aa7307b 2052 const char *idx;
c3ed0afc 2053
8aa7307b
KS
2054 idx = strchr(sigtab, *name);
2055 if (!idx)
698b1515 2056 return 0; /* input name not found */
8aa7307b
KS
2057
2058 in = idx - sigtab;
698b1515
WT
2059 neg = (in & 1); /* odd (lower) names are negated */
2060 in >>= 1;
79f2af62 2061 im |= BIT(in);
698b1515
WT
2062
2063 name++;
52ebf93f 2064 if (*name >= '0' && *name <= '7') {
698b1515 2065 out = *name - '0';
79f2af62 2066 om |= BIT(out);
3ac76904 2067 } else if (*name == '-') {
698b1515 2068 out = 8;
3ac76904 2069 } else {
698b1515 2070 return 0; /* unknown bit name */
3ac76904 2071 }
698b1515
WT
2072
2073 bit = (out * 5) + in;
2074
2075 m |= 1ULL << bit;
2076 if (!neg)
2077 v |= 1ULL << bit;
2078 name++;
7005b584 2079 }
698b1515
WT
2080 *mask = m;
2081 *value = v;
2082 if (imask)
2083 *imask |= im;
2084 if (omask)
2085 *omask |= om;
2086 return 1;
7005b584
WT
2087}
2088
2089/* tries to bind a key to the signal name <name>. The key will send the
2090 * strings <press>, <repeat>, <release> for these respective events.
2091 * Returns the pointer to the new key if ok, NULL if the key could not be bound.
2092 */
36d2041a
PH
2093static struct logical_input *panel_bind_key(const char *name, const char *press,
2094 const char *repeat,
2095 const char *release)
698b1515
WT
2096{
2097 struct logical_input *key;
2098
fdf4a494 2099 key = kzalloc(sizeof(*key), GFP_KERNEL);
eb073a9b 2100 if (!key)
698b1515 2101 return NULL;
eb073a9b 2102
698b1515 2103 if (!input_name2mask(name, &key->mask, &key->value, &scan_mask_i,
cb46f472
KV
2104 &scan_mask_o)) {
2105 kfree(key);
698b1515 2106 return NULL;
cb46f472 2107 }
698b1515
WT
2108
2109 key->type = INPUT_TYPE_KBD;
2110 key->state = INPUT_ST_LOW;
2111 key->rise_time = 1;
2112 key->fall_time = 1;
7005b584 2113
698b1515
WT
2114 strncpy(key->u.kbd.press_str, press, sizeof(key->u.kbd.press_str));
2115 strncpy(key->u.kbd.repeat_str, repeat, sizeof(key->u.kbd.repeat_str));
2116 strncpy(key->u.kbd.release_str, release,
2117 sizeof(key->u.kbd.release_str));
2118 list_add(&key->list, &logical_inputs);
2119 return key;
7005b584
WT
2120}
2121
63023177 2122#if 0
7005b584
WT
2123/* tries to bind a callback function to the signal name <name>. The function
2124 * <press_fct> will be called with the <press_data> arg when the signal is
2125 * activated, and so on for <release_fct>/<release_data>
429ccf05
HH
2126 * Returns the pointer to the new signal if ok, NULL if the signal could not
2127 * be bound.
7005b584
WT
2128 */
2129static struct logical_input *panel_bind_callback(char *name,
68d386bf 2130 void (*press_fct)(int),
698b1515 2131 int press_data,
68d386bf 2132 void (*release_fct)(int),
698b1515
WT
2133 int release_data)
2134{
2135 struct logical_input *callback;
2136
fdf4a494 2137 callback = kmalloc(sizeof(*callback), GFP_KERNEL);
eb073a9b 2138 if (!callback)
698b1515 2139 return NULL;
eb073a9b 2140
698b1515
WT
2141 memset(callback, 0, sizeof(struct logical_input));
2142 if (!input_name2mask(name, &callback->mask, &callback->value,
2143 &scan_mask_i, &scan_mask_o))
2144 return NULL;
2145
2146 callback->type = INPUT_TYPE_STD;
2147 callback->state = INPUT_ST_LOW;
2148 callback->rise_time = 1;
2149 callback->fall_time = 1;
2150 callback->u.std.press_fct = press_fct;
2151 callback->u.std.press_data = press_data;
2152 callback->u.std.release_fct = release_fct;
2153 callback->u.std.release_data = release_data;
2154 list_add(&callback->list, &logical_inputs);
2155 return callback;
7005b584 2156}
63023177 2157#endif
7005b584 2158
698b1515
WT
2159static void keypad_init(void)
2160{
2161 int keynum;
c3ed0afc 2162
698b1515
WT
2163 init_waitqueue_head(&keypad_read_wait);
2164 keypad_buflen = 0; /* flushes any eventual noisy keystroke */
7005b584 2165
698b1515 2166 /* Let's create all known keys */
7005b584 2167
698b1515
WT
2168 for (keynum = 0; keypad_profile[keynum][0][0]; keynum++) {
2169 panel_bind_key(keypad_profile[keynum][0],
2170 keypad_profile[keynum][1],
2171 keypad_profile[keynum][2],
2172 keypad_profile[keynum][3]);
2173 }
7005b584 2174
698b1515
WT
2175 init_scan_timer();
2176 keypad_initialized = 1;
7005b584
WT
2177}
2178
7005b584
WT
2179/**************************************************/
2180/* device initialization */
2181/**************************************************/
2182
698b1515
WT
2183static int panel_notify_sys(struct notifier_block *this, unsigned long code,
2184 void *unused)
2185{
6d8b588c 2186 if (lcd.enabled && lcd.initialized) {
698b1515
WT
2187 switch (code) {
2188 case SYS_DOWN:
2189 panel_lcd_print
2190 ("\x0cReloading\nSystem...\x1b[Lc\x1b[Lb\x1b[L+");
2191 break;
2192 case SYS_HALT:
2193 panel_lcd_print
2194 ("\x0cSystem Halted.\x1b[Lc\x1b[Lb\x1b[L+");
2195 break;
2196 case SYS_POWER_OFF:
2197 panel_lcd_print("\x0cPower off.\x1b[Lc\x1b[Lb\x1b[L+");
2198 break;
2199 default:
2200 break;
2201 }
7005b584 2202 }
698b1515 2203 return NOTIFY_DONE;
7005b584
WT
2204}
2205
2206static struct notifier_block panel_notifier = {
2207 panel_notify_sys,
2208 NULL,
2209 0
2210};
2211
698b1515 2212static void panel_attach(struct parport *port)
7005b584 2213{
9be83c0a
SM
2214 struct pardev_cb panel_cb;
2215
698b1515
WT
2216 if (port->number != parport)
2217 return;
2218
2219 if (pprt) {
eb073a9b
TY
2220 pr_err("%s: port->number=%d parport=%d, already registered!\n",
2221 __func__, port->number, parport);
698b1515
WT
2222 return;
2223 }
2224
9be83c0a
SM
2225 memset(&panel_cb, 0, sizeof(panel_cb));
2226 panel_cb.private = &pprt;
2227 /* panel_cb.flags = 0 should be PARPORT_DEV_EXCL? */
2228
2229 pprt = parport_register_dev_model(port, "panel", &panel_cb, 0);
b565b3fb 2230 if (!pprt) {
eb073a9b
TY
2231 pr_err("%s: port->number=%d parport=%d, parport_register_device() failed\n",
2232 __func__, port->number, parport);
10f3f5b7
KV
2233 return;
2234 }
698b1515
WT
2235
2236 if (parport_claim(pprt)) {
eb073a9b
TY
2237 pr_err("could not claim access to parport%d. Aborting.\n",
2238 parport);
10f3f5b7 2239 goto err_unreg_device;
698b1515
WT
2240 }
2241
429ccf05
HH
2242 /* must init LCD first, just in case an IRQ from the keypad is
2243 * generated at keypad init
2244 */
a8b2580b 2245 if (lcd.enabled) {
698b1515 2246 lcd_init();
10f3f5b7
KV
2247 if (misc_register(&lcd_dev))
2248 goto err_unreg_device;
698b1515
WT
2249 }
2250
a8b2580b 2251 if (keypad.enabled) {
698b1515 2252 keypad_init();
10f3f5b7
KV
2253 if (misc_register(&keypad_dev))
2254 goto err_lcd_unreg;
698b1515 2255 }
bb046fef 2256 register_reboot_notifier(&panel_notifier);
10f3f5b7
KV
2257 return;
2258
2259err_lcd_unreg:
a8b2580b 2260 if (lcd.enabled)
10f3f5b7
KV
2261 misc_deregister(&lcd_dev);
2262err_unreg_device:
2263 parport_unregister_device(pprt);
2264 pprt = NULL;
7005b584
WT
2265}
2266
698b1515 2267static void panel_detach(struct parport *port)
7005b584 2268{
698b1515
WT
2269 if (port->number != parport)
2270 return;
2271
2272 if (!pprt) {
eb073a9b
TY
2273 pr_err("%s: port->number=%d parport=%d, nothing to unregister.\n",
2274 __func__, port->number, parport);
698b1515
WT
2275 return;
2276 }
b565b3fb 2277 if (scan_timer.function)
7d98c63e 2278 del_timer_sync(&scan_timer);
698b1515 2279
b565b3fb 2280 if (pprt) {
7d98c63e
SM
2281 if (keypad.enabled) {
2282 misc_deregister(&keypad_dev);
2283 keypad_initialized = 0;
2284 }
bb046fef 2285
7d98c63e
SM
2286 if (lcd.enabled) {
2287 panel_lcd_print("\x0cLCD driver " PANEL_VERSION
2288 "\nunloaded.\x1b[Lc\x1b[Lb\x1b[L-");
2289 misc_deregister(&lcd_dev);
2290 lcd.initialized = false;
2291 }
698b1515 2292
7d98c63e
SM
2293 /* TODO: free all input signals */
2294 parport_release(pprt);
2295 parport_unregister_device(pprt);
2296 pprt = NULL;
2297 unregister_reboot_notifier(&panel_notifier);
0b0595bf 2298 }
7005b584
WT
2299}
2300
2301static struct parport_driver panel_driver = {
698b1515 2302 .name = "panel",
9be83c0a 2303 .match_port = panel_attach,
698b1515 2304 .detach = panel_detach,
9be83c0a 2305 .devmodel = true,
7005b584
WT
2306};
2307
2308/* init function */
d9114767 2309static int __init panel_init_module(void)
698b1515 2310{
e134201b 2311 int selected_keypad_type = NOT_SET, err;
698b1515 2312
698b1515
WT
2313 /* take care of an eventual profile */
2314 switch (profile) {
429ccf05
HH
2315 case PANEL_PROFILE_CUSTOM:
2316 /* custom profile */
87b8e0c8
MG
2317 selected_keypad_type = DEFAULT_KEYPAD_TYPE;
2318 selected_lcd_type = DEFAULT_LCD_TYPE;
698b1515 2319 break;
429ccf05
HH
2320 case PANEL_PROFILE_OLD:
2321 /* 8 bits, 2*16, old keypad */
87b8e0c8
MG
2322 selected_keypad_type = KEYPAD_TYPE_OLD;
2323 selected_lcd_type = LCD_TYPE_OLD;
2324
2325 /* TODO: This two are a little hacky, sort it out later */
2d35bcf6 2326 if (lcd_width == NOT_SET)
698b1515 2327 lcd_width = 16;
2d35bcf6 2328 if (lcd_hwidth == NOT_SET)
698b1515
WT
2329 lcd_hwidth = 16;
2330 break;
429ccf05
HH
2331 case PANEL_PROFILE_NEW:
2332 /* serial, 2*16, new keypad */
87b8e0c8
MG
2333 selected_keypad_type = KEYPAD_TYPE_NEW;
2334 selected_lcd_type = LCD_TYPE_KS0074;
698b1515 2335 break;
429ccf05
HH
2336 case PANEL_PROFILE_HANTRONIX:
2337 /* 8 bits, 2*16 hantronix-like, no keypad */
87b8e0c8
MG
2338 selected_keypad_type = KEYPAD_TYPE_NONE;
2339 selected_lcd_type = LCD_TYPE_HANTRONIX;
698b1515 2340 break;
429ccf05
HH
2341 case PANEL_PROFILE_NEXCOM:
2342 /* generic 8 bits, 2*16, nexcom keypad, eg. Nexcom. */
87b8e0c8
MG
2343 selected_keypad_type = KEYPAD_TYPE_NEXCOM;
2344 selected_lcd_type = LCD_TYPE_NEXCOM;
698b1515 2345 break;
429ccf05
HH
2346 case PANEL_PROFILE_LARGE:
2347 /* 8 bits, 2*40, old keypad */
87b8e0c8
MG
2348 selected_keypad_type = KEYPAD_TYPE_OLD;
2349 selected_lcd_type = LCD_TYPE_OLD;
698b1515
WT
2350 break;
2351 }
2352
87b8e0c8
MG
2353 /*
2354 * Overwrite selection with module param values (both keypad and lcd),
2355 * where the deprecated params have lower prio.
2356 */
1a4b2e3e 2357 if (keypad_enabled != NOT_SET)
87b8e0c8 2358 selected_keypad_type = keypad_enabled;
1a4b2e3e 2359 if (keypad_type != NOT_SET)
87b8e0c8
MG
2360 selected_keypad_type = keypad_type;
2361
2362 keypad.enabled = (selected_keypad_type > 0);
2363
1a4b2e3e 2364 if (lcd_enabled != NOT_SET)
87b8e0c8 2365 selected_lcd_type = lcd_enabled;
1a4b2e3e 2366 if (lcd_type != NOT_SET)
87b8e0c8
MG
2367 selected_lcd_type = lcd_type;
2368
2369 lcd.enabled = (selected_lcd_type > 0);
698b1515 2370
733345ec
SM
2371 if (lcd.enabled) {
2372 /*
2373 * Init lcd struct with load-time values to preserve exact
2374 * current functionality (at least for now).
2375 */
2376 lcd.height = lcd_height;
2377 lcd.width = lcd_width;
2378 lcd.bwidth = lcd_bwidth;
2379 lcd.hwidth = lcd_hwidth;
2380 lcd.charset = lcd_charset;
2381 lcd.proto = lcd_proto;
2382 lcd.pins.e = lcd_e_pin;
2383 lcd.pins.rs = lcd_rs_pin;
2384 lcd.pins.rw = lcd_rw_pin;
2385 lcd.pins.cl = lcd_cl_pin;
2386 lcd.pins.da = lcd_da_pin;
2387 lcd.pins.bl = lcd_bl_pin;
2388
2389 /* Leave it for now, just in case */
2390 lcd.esc_seq.len = -1;
2391 }
2392
87b8e0c8 2393 switch (selected_keypad_type) {
698b1515
WT
2394 case KEYPAD_TYPE_OLD:
2395 keypad_profile = old_keypad_profile;
2396 break;
2397 case KEYPAD_TYPE_NEW:
2398 keypad_profile = new_keypad_profile;
2399 break;
2400 case KEYPAD_TYPE_NEXCOM:
2401 keypad_profile = nexcom_keypad_profile;
2402 break;
2403 default:
2404 keypad_profile = NULL;
2405 break;
2406 }
2407
a8b2580b 2408 if (!lcd.enabled && !keypad.enabled) {
f43de77c 2409 /* no device enabled, let's exit */
eb073a9b 2410 pr_err("driver version " PANEL_VERSION " disabled.\n");
698b1515 2411 return -ENODEV;
7005b584 2412 }
7005b584 2413
e134201b
SM
2414 err = parport_register_driver(&panel_driver);
2415 if (err) {
f43de77c 2416 pr_err("could not register with parport. Aborting.\n");
e134201b 2417 return err;
f43de77c
SM
2418 }
2419
698b1515 2420 if (pprt)
493aa896
TY
2421 pr_info("driver version " PANEL_VERSION
2422 " registered on parport%d (io=0x%lx).\n", parport,
2423 pprt->port->base);
698b1515 2424 else
493aa896
TY
2425 pr_info("driver version " PANEL_VERSION
2426 " not yet registered\n");
698b1515
WT
2427 return 0;
2428}
7005b584 2429
f6d1fcfe 2430static void __exit panel_cleanup_module(void)
698b1515 2431{
698b1515 2432 parport_unregister_driver(&panel_driver);
7005b584 2433}
7005b584 2434
7005b584
WT
2435module_init(panel_init_module);
2436module_exit(panel_cleanup_module);
2437MODULE_AUTHOR("Willy Tarreau");
2438MODULE_LICENSE("GPL");
7005b584
WT
2439
2440/*
2441 * Local variables:
2442 * c-indent-level: 4
2443 * tab-width: 8
2444 * End:
2445 */
This page took 0.939158 seconds and 5 git commands to generate.