blob: 08f9a4896116a3c4368a616d134a2d5a065f9371 [file] [log] [blame]
Willy Tarreau7005b582008-11-13 17:18:59 -08001/*
Willy Tarreau698b1512008-11-22 11:29:33 +01002 * Front panel driver for Linux
3 * Copyright (C) 2000-2008, Willy Tarreau <w@1wt.eu>
Willy Tarreau7005b582008-11-13 17:18:59 -08004 *
Willy Tarreau698b1512008-11-22 11:29:33 +01005 * 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.
Willy Tarreau7005b582008-11-13 17:18:59 -08009 *
Willy Tarreau698b1512008-11-22 11:29:33 +010010 * This code drives an LCD module (/dev/lcd), and a keypad (/dev/keypad)
11 * connected to a parallel printer port.
Willy Tarreau7005b582008-11-13 17:18:59 -080012 *
Willy Tarreau698b1512008-11-22 11:29:33 +010013 * 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.
Willy Tarreau7005b582008-11-13 17:18:59 -080016 *
Willy Tarreau698b1512008-11-22 11:29:33 +010017 * 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.
Willy Tarreau7005b582008-11-13 17:18:59 -080020 *
Willy Tarreau698b1512008-11-22 11:29:33 +010021 * Several profiles are provided for commonly found LCD+keypad modules on the
22 * market, such as those found in Nexcom's appliances.
Willy Tarreau7005b582008-11-13 17:18:59 -080023 *
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
Toshiaki Yamane493aa892012-07-12 22:01:00 +090037#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
38
Willy Tarreau7005b582008-11-13 17:18:59 -080039#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>
Willy Tarreau7005b582008-11-13 17:18:59 -080046#include <linux/interrupt.h>
47#include <linux/miscdevice.h>
Willy Tarreau698b1512008-11-22 11:29:33 +010048#include <linux/slab.h>
Willy Tarreau7005b582008-11-13 17:18:59 -080049#include <linux/ioport.h>
50#include <linux/fcntl.h>
51#include <linux/init.h>
52#include <linux/delay.h>
Andy Shevchenkod85170e2010-07-22 19:57:08 +030053#include <linux/kernel.h>
Willy Tarreau7005b582008-11-13 17:18:59 -080054#include <linux/ctype.h>
55#include <linux/parport.h>
Willy Tarreau7005b582008-11-13 17:18:59 -080056#include <linux/list.h>
57#include <linux/notifier.h>
58#include <linux/reboot.h>
Sam Ravnborg273b2812009-10-18 00:52:28 +020059#include <generated/utsrelease.h>
Willy Tarreau7005b582008-11-13 17:18:59 -080060
Willy Tarreau698b1512008-11-22 11:29:33 +010061#include <linux/io.h>
Takanori Suzuki48f658b2010-05-08 22:56:24 +090062#include <linux/uaccess.h>
Willy Tarreau7005b582008-11-13 17:18:59 -080063
Willy Tarreau7005b582008-11-13 17:18:59 -080064#define LCD_MINOR 156
65#define KEYPAD_MINOR 185
Willy Tarreau7005b582008-11-13 17:18:59 -080066
67#define PANEL_VERSION "0.9.5"
68
69#define LCD_MAXBYTES 256 /* max burst write */
70
Willy Tarreau7005b582008-11-13 17:18:59 -080071#define KEYPAD_BUFFER 64
Willy Tarreau7005b582008-11-13 17:18:59 -080072
Henri Häkkinen429ccf02010-06-12 00:27:36 +030073/* poll the keyboard this every second */
74#define INPUT_POLL_TIME (HZ/50)
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)
Willy Tarreau7005b582008-11-13 17:18:59 -080082
83/* converts an r_str() input to an active high, bits string : 000BAOSE */
84#define PNL_PINPUT(a) ((((unsigned char)(a)) ^ 0x7F) >> 3)
85
Willy Tarreau698b1512008-11-22 11:29:33 +010086#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 */
Willy Tarreau7005b582008-11-13 17:18:59 -080091
Willy Tarreau698b1512008-11-22 11:29:33 +010092#define PNL_PBIDIR 0x20 /* bi-directional ports */
Henri Häkkinen429ccf02010-06-12 00:27:36 +030093/* high to read data in or-ed with data out */
94#define PNL_PINTEN 0x10
Willy Tarreau698b1512008-11-22 11:29:33 +010095#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 */
Willy Tarreau7005b582008-11-13 17:18:59 -080099
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
Willy Tarreau7005b582008-11-13 17:18:59 -0800124#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
Henri Häkkinen429ccf02010-06-12 00:27:36 +0300133#define LCD_ESCAPE_LEN 24 /* max chars for LCD escape command */
Willy Tarreau7005b582008-11-13 17:18:59 -0800134#define LCD_ESCAPE_CHAR 27 /* use char 27 for escape command */
135
136/* macros to simplify use of the parallel port */
137#define r_ctr(x) (parport_read_control((x)->port))
138#define r_dtr(x) (parport_read_data((x)->port))
139#define r_str(x) (parport_read_status((x)->port))
Toshiaki Yamane6ebb56d2012-07-25 12:18:12 +0900140#define w_ctr(x, y) (parport_write_control((x)->port, (y)))
141#define w_dtr(x, y) (parport_write_data((x)->port, (y)))
Willy Tarreau7005b582008-11-13 17:18:59 -0800142
143/* this defines which bits are to be used and which ones to be ignored */
Henri Häkkinen429ccf02010-06-12 00:27:36 +0300144/* logical or of the output bits involved in the scan matrix */
145static __u8 scan_mask_o;
146/* logical or of the input bits involved in the scan matrix */
147static __u8 scan_mask_i;
Willy Tarreau7005b582008-11-13 17:18:59 -0800148
Willy Tarreau698b1512008-11-22 11:29:33 +0100149typedef __u64 pmask_t;
Willy Tarreau7005b582008-11-13 17:18:59 -0800150
151enum input_type {
Willy Tarreau698b1512008-11-22 11:29:33 +0100152 INPUT_TYPE_STD,
153 INPUT_TYPE_KBD,
Willy Tarreau7005b582008-11-13 17:18:59 -0800154};
155
156enum input_state {
Willy Tarreau698b1512008-11-22 11:29:33 +0100157 INPUT_ST_LOW,
158 INPUT_ST_RISING,
159 INPUT_ST_HIGH,
160 INPUT_ST_FALLING,
Willy Tarreau7005b582008-11-13 17:18:59 -0800161};
162
163struct logical_input {
Willy Tarreau698b1512008-11-22 11:29:33 +0100164 struct list_head list;
165 pmask_t mask;
166 pmask_t value;
167 enum input_type type;
168 enum input_state state;
169 __u8 rise_time, fall_time;
170 __u8 rise_timer, fall_timer, high_timer;
Willy Tarreau7005b582008-11-13 17:18:59 -0800171
Willy Tarreau698b1512008-11-22 11:29:33 +0100172 union {
Henri Häkkinen429ccf02010-06-12 00:27:36 +0300173 struct { /* valid when type == INPUT_TYPE_STD */
Monam Agarwal68d386b2014-02-25 19:40:49 +0530174 void (*press_fct)(int);
175 void (*release_fct)(int);
Willy Tarreau698b1512008-11-22 11:29:33 +0100176 int press_data;
177 int release_data;
178 } std;
Henri Häkkinen429ccf02010-06-12 00:27:36 +0300179 struct { /* valid when type == INPUT_TYPE_KBD */
180 /* strings can be non null-terminated */
Willy Tarreau698b1512008-11-22 11:29:33 +0100181 char press_str[sizeof(void *) + sizeof(int)];
182 char repeat_str[sizeof(void *) + sizeof(int)];
183 char release_str[sizeof(void *) + sizeof(int)];
184 } kbd;
185 } u;
Willy Tarreau7005b582008-11-13 17:18:59 -0800186};
187
Peter Huewe36d20412013-02-15 13:47:05 +0100188static LIST_HEAD(logical_inputs); /* list of all defined logical inputs */
Willy Tarreau7005b582008-11-13 17:18:59 -0800189
190/* physical contacts history
191 * Physical contacts are a 45 bits string of 9 groups of 5 bits each.
192 * The 8 lower groups correspond to output bits 0 to 7, and the 9th group
193 * corresponds to the ground.
194 * Within each group, bits are stored in the same order as read on the port :
195 * BAPSE (busy=4, ack=3, paper empty=2, select=1, error=0).
196 * So, each __u64 (or pmask_t) is represented like this :
197 * 0000000000000000000BAPSEBAPSEBAPSEBAPSEBAPSEBAPSEBAPSEBAPSEBAPSE
198 * <-----unused------><gnd><d07><d06><d05><d04><d03><d02><d01><d00>
199 */
Henri Häkkinen429ccf02010-06-12 00:27:36 +0300200
201/* what has just been read from the I/O ports */
202static pmask_t phys_read;
203/* previous phys_read */
204static pmask_t phys_read_prev;
205/* stabilized phys_read (phys_read|phys_read_prev) */
206static pmask_t phys_curr;
207/* previous phys_curr */
208static pmask_t phys_prev;
209/* 0 means that at least one logical signal needs be computed */
210static char inputs_stable;
Willy Tarreau7005b582008-11-13 17:18:59 -0800211
Willy Tarreau7005b582008-11-13 17:18:59 -0800212/* these variables are specific to the keypad */
213static char keypad_buffer[KEYPAD_BUFFER];
Willy Tarreau698b1512008-11-22 11:29:33 +0100214static int keypad_buflen;
215static int keypad_start;
216static char keypressed;
Willy Tarreau7005b582008-11-13 17:18:59 -0800217static wait_queue_head_t keypad_read_wait;
Willy Tarreau7005b582008-11-13 17:18:59 -0800218
219/* lcd-specific variables */
Henri Häkkinen429ccf02010-06-12 00:27:36 +0300220
221/* contains the LCD config state */
222static unsigned long int lcd_flags;
223/* contains the LCD X offset */
224static unsigned long int lcd_addr_x;
225/* contains the LCD Y offset */
226static unsigned long int lcd_addr_y;
227/* current escape sequence, 0 terminated */
228static char lcd_escape[LCD_ESCAPE_LEN + 1];
229/* not in escape state. >=0 = escape cmd len */
230static int lcd_escape_len = -1;
Willy Tarreau7005b582008-11-13 17:18:59 -0800231
Willy Tarreau7005b582008-11-13 17:18:59 -0800232/*
233 * Bit masks to convert LCD signals to parallel port outputs.
234 * _d_ are values for data port, _c_ are for control port.
235 * [0] = signal OFF, [1] = signal ON, [2] = mask
236 */
Willy Tarreau698b1512008-11-22 11:29:33 +0100237#define BIT_CLR 0
238#define BIT_SET 1
239#define BIT_MSK 2
Willy Tarreau7005b582008-11-13 17:18:59 -0800240#define BIT_STATES 3
241/*
242 * one entry for each bit on the LCD
243 */
244#define LCD_BIT_E 0
245#define LCD_BIT_RS 1
246#define LCD_BIT_RW 2
247#define LCD_BIT_BL 3
248#define LCD_BIT_CL 4
249#define LCD_BIT_DA 5
250#define LCD_BITS 6
251
252/*
253 * each bit can be either connected to a DATA or CTRL port
254 */
255#define LCD_PORT_C 0
256#define LCD_PORT_D 1
257#define LCD_PORTS 2
258
259static unsigned char lcd_bits[LCD_PORTS][LCD_BITS][BIT_STATES];
260
261/*
262 * LCD protocols
263 */
264#define LCD_PROTO_PARALLEL 0
265#define LCD_PROTO_SERIAL 1
Sudhakar Rajashekhara77943d32009-08-20 18:13:18 -0400266#define LCD_PROTO_TI_DA8XX_LCD 2
Willy Tarreau7005b582008-11-13 17:18:59 -0800267
268/*
269 * LCD character sets
270 */
271#define LCD_CHARSET_NORMAL 0
272#define LCD_CHARSET_KS0074 1
273
274/*
275 * LCD types
276 */
277#define LCD_TYPE_NONE 0
278#define LCD_TYPE_OLD 1
279#define LCD_TYPE_KS0074 2
280#define LCD_TYPE_HANTRONIX 3
281#define LCD_TYPE_NEXCOM 4
282#define LCD_TYPE_CUSTOM 5
283
284/*
285 * keypad types
286 */
287#define KEYPAD_TYPE_NONE 0
288#define KEYPAD_TYPE_OLD 1
289#define KEYPAD_TYPE_NEW 2
290#define KEYPAD_TYPE_NEXCOM 3
291
292/*
293 * panel profiles
294 */
295#define PANEL_PROFILE_CUSTOM 0
296#define PANEL_PROFILE_OLD 1
297#define PANEL_PROFILE_NEW 2
298#define PANEL_PROFILE_HANTRONIX 3
299#define PANEL_PROFILE_NEXCOM 4
300#define PANEL_PROFILE_LARGE 5
301
302/*
303 * Construct custom config from the kernel's configuration
304 */
305#define DEFAULT_PROFILE PANEL_PROFILE_LARGE
306#define DEFAULT_PARPORT 0
307#define DEFAULT_LCD LCD_TYPE_OLD
308#define DEFAULT_KEYPAD KEYPAD_TYPE_OLD
Willy Tarreau7005b582008-11-13 17:18:59 -0800309#define DEFAULT_LCD_WIDTH 40
310#define DEFAULT_LCD_BWIDTH 40
311#define DEFAULT_LCD_HWIDTH 64
312#define DEFAULT_LCD_HEIGHT 2
313#define DEFAULT_LCD_PROTO LCD_PROTO_PARALLEL
314
315#define DEFAULT_LCD_PIN_E PIN_AUTOLF
316#define DEFAULT_LCD_PIN_RS PIN_SELECP
317#define DEFAULT_LCD_PIN_RW PIN_INITP
318#define DEFAULT_LCD_PIN_SCL PIN_STROBE
319#define DEFAULT_LCD_PIN_SDA PIN_D0
320#define DEFAULT_LCD_PIN_BL PIN_NOT_SET
321#define DEFAULT_LCD_CHARSET LCD_CHARSET_NORMAL
322
323#ifdef CONFIG_PANEL_PROFILE
324#undef DEFAULT_PROFILE
325#define DEFAULT_PROFILE CONFIG_PANEL_PROFILE
326#endif
327
328#ifdef CONFIG_PANEL_PARPORT
329#undef DEFAULT_PARPORT
330#define DEFAULT_PARPORT CONFIG_PANEL_PARPORT
331#endif
332
Willy Tarreau698b1512008-11-22 11:29:33 +0100333#if DEFAULT_PROFILE == 0 /* custom */
Willy Tarreau7005b582008-11-13 17:18:59 -0800334#ifdef CONFIG_PANEL_KEYPAD
335#undef DEFAULT_KEYPAD
336#define DEFAULT_KEYPAD CONFIG_PANEL_KEYPAD
337#endif
338
Willy Tarreau7005b582008-11-13 17:18:59 -0800339#ifdef CONFIG_PANEL_LCD
340#undef DEFAULT_LCD
341#define DEFAULT_LCD CONFIG_PANEL_LCD
342#endif
343
344#ifdef CONFIG_PANEL_LCD_WIDTH
345#undef DEFAULT_LCD_WIDTH
346#define DEFAULT_LCD_WIDTH CONFIG_PANEL_LCD_WIDTH
347#endif
348
349#ifdef CONFIG_PANEL_LCD_BWIDTH
350#undef DEFAULT_LCD_BWIDTH
351#define DEFAULT_LCD_BWIDTH CONFIG_PANEL_LCD_BWIDTH
352#endif
353
354#ifdef CONFIG_PANEL_LCD_HWIDTH
355#undef DEFAULT_LCD_HWIDTH
356#define DEFAULT_LCD_HWIDTH CONFIG_PANEL_LCD_HWIDTH
357#endif
358
359#ifdef CONFIG_PANEL_LCD_HEIGHT
360#undef DEFAULT_LCD_HEIGHT
361#define DEFAULT_LCD_HEIGHT CONFIG_PANEL_LCD_HEIGHT
362#endif
363
364#ifdef CONFIG_PANEL_LCD_PROTO
365#undef DEFAULT_LCD_PROTO
366#define DEFAULT_LCD_PROTO CONFIG_PANEL_LCD_PROTO
367#endif
368
369#ifdef CONFIG_PANEL_LCD_PIN_E
370#undef DEFAULT_LCD_PIN_E
371#define DEFAULT_LCD_PIN_E CONFIG_PANEL_LCD_PIN_E
372#endif
373
374#ifdef CONFIG_PANEL_LCD_PIN_RS
375#undef DEFAULT_LCD_PIN_RS
376#define DEFAULT_LCD_PIN_RS CONFIG_PANEL_LCD_PIN_RS
377#endif
378
379#ifdef CONFIG_PANEL_LCD_PIN_RW
380#undef DEFAULT_LCD_PIN_RW
381#define DEFAULT_LCD_PIN_RW CONFIG_PANEL_LCD_PIN_RW
382#endif
383
384#ifdef CONFIG_PANEL_LCD_PIN_SCL
385#undef DEFAULT_LCD_PIN_SCL
386#define DEFAULT_LCD_PIN_SCL CONFIG_PANEL_LCD_PIN_SCL
387#endif
388
389#ifdef CONFIG_PANEL_LCD_PIN_SDA
390#undef DEFAULT_LCD_PIN_SDA
391#define DEFAULT_LCD_PIN_SDA CONFIG_PANEL_LCD_PIN_SDA
392#endif
393
394#ifdef CONFIG_PANEL_LCD_PIN_BL
395#undef DEFAULT_LCD_PIN_BL
396#define DEFAULT_LCD_PIN_BL CONFIG_PANEL_LCD_PIN_BL
397#endif
398
399#ifdef CONFIG_PANEL_LCD_CHARSET
400#undef DEFAULT_LCD_CHARSET
Peter Huewea6a6c902009-12-15 06:21:45 +0100401#define DEFAULT_LCD_CHARSET CONFIG_PANEL_LCD_CHARSET
Willy Tarreau7005b582008-11-13 17:18:59 -0800402#endif
403
404#endif /* DEFAULT_PROFILE == 0 */
405
406/* global variables */
Willy Tarreau698b1512008-11-22 11:29:33 +0100407static int keypad_open_cnt; /* #times opened */
408static int lcd_open_cnt; /* #times opened */
Willy Tarreau698b1512008-11-22 11:29:33 +0100409static struct pardevice *pprt;
Willy Tarreau7005b582008-11-13 17:18:59 -0800410
Willy Tarreauf6d1fcf2008-11-22 12:04:19 +0100411static int lcd_initialized;
412static int keypad_initialized;
Willy Tarreau7005b582008-11-13 17:18:59 -0800413
Willy Tarreau698b1512008-11-22 11:29:33 +0100414static int light_tempo;
Willy Tarreau7005b582008-11-13 17:18:59 -0800415
Willy Tarreau698b1512008-11-22 11:29:33 +0100416static char lcd_must_clear;
417static char lcd_left_shift;
418static char init_in_progress;
Willy Tarreau7005b582008-11-13 17:18:59 -0800419
Monam Agarwal68d386b2014-02-25 19:40:49 +0530420static void (*lcd_write_cmd)(int);
421static void (*lcd_write_data)(int);
422static void (*lcd_clear_fast)(void);
Willy Tarreau7005b582008-11-13 17:18:59 -0800423
Willy Tarreau698b1512008-11-22 11:29:33 +0100424static DEFINE_SPINLOCK(pprt_lock);
Willy Tarreau7005b582008-11-13 17:18:59 -0800425static struct timer_list scan_timer;
426
Willy Tarreau630231772008-11-22 12:52:18 +0100427MODULE_DESCRIPTION("Generic parallel port LCD/Keypad driver");
Willy Tarreauf6d1fcf2008-11-22 12:04:19 +0100428
429static int parport = -1;
Willy Tarreau698b1512008-11-22 11:29:33 +0100430module_param(parport, int, 0000);
431MODULE_PARM_DESC(parport, "Parallel port index (0=lpt1, 1=lpt2, ...)");
Willy Tarreauf6d1fcf2008-11-22 12:04:19 +0100432
433static int lcd_height = -1;
Willy Tarreau698b1512008-11-22 11:29:33 +0100434module_param(lcd_height, int, 0000);
435MODULE_PARM_DESC(lcd_height, "Number of lines on the LCD");
Willy Tarreauf6d1fcf2008-11-22 12:04:19 +0100436
437static int lcd_width = -1;
Willy Tarreau698b1512008-11-22 11:29:33 +0100438module_param(lcd_width, int, 0000);
439MODULE_PARM_DESC(lcd_width, "Number of columns on the LCD");
Willy Tarreauf6d1fcf2008-11-22 12:04:19 +0100440
441static int lcd_bwidth = -1; /* internal buffer width (usually 40) */
Willy Tarreau698b1512008-11-22 11:29:33 +0100442module_param(lcd_bwidth, int, 0000);
443MODULE_PARM_DESC(lcd_bwidth, "Internal LCD line width (40)");
Willy Tarreauf6d1fcf2008-11-22 12:04:19 +0100444
445static int lcd_hwidth = -1; /* hardware buffer width (usually 64) */
Willy Tarreau698b1512008-11-22 11:29:33 +0100446module_param(lcd_hwidth, int, 0000);
447MODULE_PARM_DESC(lcd_hwidth, "LCD line hardware address (64)");
Willy Tarreauf6d1fcf2008-11-22 12:04:19 +0100448
449static int lcd_enabled = -1;
Willy Tarreau698b1512008-11-22 11:29:33 +0100450module_param(lcd_enabled, int, 0000);
451MODULE_PARM_DESC(lcd_enabled, "Deprecated option, use lcd_type instead");
Willy Tarreauf6d1fcf2008-11-22 12:04:19 +0100452
453static int keypad_enabled = -1;
Willy Tarreau698b1512008-11-22 11:29:33 +0100454module_param(keypad_enabled, int, 0000);
455MODULE_PARM_DESC(keypad_enabled, "Deprecated option, use keypad_type instead");
Willy Tarreauf6d1fcf2008-11-22 12:04:19 +0100456
457static int lcd_type = -1;
Willy Tarreau698b1512008-11-22 11:29:33 +0100458module_param(lcd_type, int, 0000);
459MODULE_PARM_DESC(lcd_type,
Monam Agarwalfe5d2e02014-02-25 19:42:46 +0530460 "LCD type: 0=none, 1=old //, 2=serial ks0074, 3=hantronix //, 4=nexcom //, 5=compiled-in");
Willy Tarreauf6d1fcf2008-11-22 12:04:19 +0100461
462static int lcd_proto = -1;
Willy Tarreau698b1512008-11-22 11:29:33 +0100463module_param(lcd_proto, int, 0000);
Henri Häkkinen429ccf02010-06-12 00:27:36 +0300464MODULE_PARM_DESC(lcd_proto,
Monam Agarwalfe5d2e02014-02-25 19:42:46 +0530465 "LCD communication: 0=parallel (//), 1=serial, 2=TI LCD Interface");
Willy Tarreauf6d1fcf2008-11-22 12:04:19 +0100466
467static int lcd_charset = -1;
Willy Tarreau698b1512008-11-22 11:29:33 +0100468module_param(lcd_charset, int, 0000);
469MODULE_PARM_DESC(lcd_charset, "LCD character set: 0=standard, 1=KS0074");
Willy Tarreauf6d1fcf2008-11-22 12:04:19 +0100470
471static int keypad_type = -1;
Willy Tarreau698b1512008-11-22 11:29:33 +0100472module_param(keypad_type, int, 0000);
473MODULE_PARM_DESC(keypad_type,
Monam Agarwalfe5d2e02014-02-25 19:42:46 +0530474 "Keypad type: 0=none, 1=old 6 keys, 2=new 6+1 keys, 3=nexcom 4 keys");
Willy Tarreauf6d1fcf2008-11-22 12:04:19 +0100475
Willy Tarreauf6d1fcf2008-11-22 12:04:19 +0100476static int profile = DEFAULT_PROFILE;
Willy Tarreau698b1512008-11-22 11:29:33 +0100477module_param(profile, int, 0000);
478MODULE_PARM_DESC(profile,
Henri Häkkinen429ccf02010-06-12 00:27:36 +0300479 "1=16x2 old kp; 2=serial 16x2, new kp; 3=16x2 hantronix; "
480 "4=16x2 nexcom; default=40x2, old kp");
Willy Tarreau7005b582008-11-13 17:18:59 -0800481
Willy Tarreauf6d1fcf2008-11-22 12:04:19 +0100482/*
483 * These are the parallel port pins the LCD control signals are connected to.
484 * Set this to 0 if the signal is not used. Set it to its opposite value
485 * (negative) if the signal is negated. -MAXINT is used to indicate that the
486 * pin has not been explicitly specified.
487 *
Willy Tarreau630231772008-11-22 12:52:18 +0100488 * WARNING! no check will be performed about collisions with keypad !
Willy Tarreauf6d1fcf2008-11-22 12:04:19 +0100489 */
490
491static int lcd_e_pin = PIN_NOT_SET;
Willy Tarreau698b1512008-11-22 11:29:33 +0100492module_param(lcd_e_pin, int, 0000);
493MODULE_PARM_DESC(lcd_e_pin,
Monam Agarwalfe5d2e02014-02-25 19:42:46 +0530494 "# of the // port pin connected to LCD 'E' signal, with polarity (-17..17)");
Willy Tarreauf6d1fcf2008-11-22 12:04:19 +0100495
496static int lcd_rs_pin = PIN_NOT_SET;
Willy Tarreau698b1512008-11-22 11:29:33 +0100497module_param(lcd_rs_pin, int, 0000);
498MODULE_PARM_DESC(lcd_rs_pin,
Monam Agarwalfe5d2e02014-02-25 19:42:46 +0530499 "# of the // port pin connected to LCD 'RS' signal, with polarity (-17..17)");
Willy Tarreauf6d1fcf2008-11-22 12:04:19 +0100500
501static int lcd_rw_pin = PIN_NOT_SET;
Willy Tarreau698b1512008-11-22 11:29:33 +0100502module_param(lcd_rw_pin, int, 0000);
503MODULE_PARM_DESC(lcd_rw_pin,
Monam Agarwalfe5d2e02014-02-25 19:42:46 +0530504 "# of the // port pin connected to LCD 'RW' signal, with polarity (-17..17)");
Willy Tarreauf6d1fcf2008-11-22 12:04:19 +0100505
506static int lcd_bl_pin = PIN_NOT_SET;
Willy Tarreau698b1512008-11-22 11:29:33 +0100507module_param(lcd_bl_pin, int, 0000);
508MODULE_PARM_DESC(lcd_bl_pin,
Monam Agarwalfe5d2e02014-02-25 19:42:46 +0530509 "# of the // port pin connected to LCD backlight, with polarity (-17..17)");
Willy Tarreauf6d1fcf2008-11-22 12:04:19 +0100510
511static int lcd_da_pin = PIN_NOT_SET;
Willy Tarreau698b1512008-11-22 11:29:33 +0100512module_param(lcd_da_pin, int, 0000);
513MODULE_PARM_DESC(lcd_da_pin,
Monam Agarwalfe5d2e02014-02-25 19:42:46 +0530514 "# of the // port pin connected to serial LCD 'SDA' signal, with polarity (-17..17)");
Willy Tarreauf6d1fcf2008-11-22 12:04:19 +0100515
516static int lcd_cl_pin = PIN_NOT_SET;
Willy Tarreau698b1512008-11-22 11:29:33 +0100517module_param(lcd_cl_pin, int, 0000);
518MODULE_PARM_DESC(lcd_cl_pin,
Monam Agarwalfe5d2e02014-02-25 19:42:46 +0530519 "# of the // port pin connected to serial LCD 'SCL' signal, with polarity (-17..17)");
Willy Tarreau7005b582008-11-13 17:18:59 -0800520
Peter Huewe36d20412013-02-15 13:47:05 +0100521static const unsigned char *lcd_char_conv;
Willy Tarreau7005b582008-11-13 17:18:59 -0800522
523/* for some LCD drivers (ks0074) we need a charset conversion table. */
Peter Huewe36d20412013-02-15 13:47:05 +0100524static const unsigned char lcd_char_conv_ks0074[256] = {
Willy Tarreau698b1512008-11-22 11:29:33 +0100525 /* 0|8 1|9 2|A 3|B 4|C 5|D 6|E 7|F */
526 /* 0x00 */ 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
527 /* 0x08 */ 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,
528 /* 0x10 */ 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17,
529 /* 0x18 */ 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f,
530 /* 0x20 */ 0x20, 0x21, 0x22, 0x23, 0xa2, 0x25, 0x26, 0x27,
531 /* 0x28 */ 0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d, 0x2e, 0x2f,
532 /* 0x30 */ 0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36, 0x37,
533 /* 0x38 */ 0x38, 0x39, 0x3a, 0x3b, 0x3c, 0x3d, 0x3e, 0x3f,
534 /* 0x40 */ 0xa0, 0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47,
535 /* 0x48 */ 0x48, 0x49, 0x4a, 0x4b, 0x4c, 0x4d, 0x4e, 0x4f,
536 /* 0x50 */ 0x50, 0x51, 0x52, 0x53, 0x54, 0x55, 0x56, 0x57,
537 /* 0x58 */ 0x58, 0x59, 0x5a, 0xfa, 0xfb, 0xfc, 0x1d, 0xc4,
538 /* 0x60 */ 0x96, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67,
539 /* 0x68 */ 0x68, 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f,
540 /* 0x70 */ 0x70, 0x71, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77,
541 /* 0x78 */ 0x78, 0x79, 0x7a, 0xfd, 0xfe, 0xff, 0xce, 0x20,
542 /* 0x80 */ 0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87,
543 /* 0x88 */ 0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f,
544 /* 0x90 */ 0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97,
545 /* 0x98 */ 0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f,
546 /* 0xA0 */ 0x20, 0x40, 0xb1, 0xa1, 0x24, 0xa3, 0xfe, 0x5f,
547 /* 0xA8 */ 0x22, 0xc8, 0x61, 0x14, 0x97, 0x2d, 0xad, 0x96,
548 /* 0xB0 */ 0x80, 0x8c, 0x82, 0x83, 0x27, 0x8f, 0x86, 0xdd,
549 /* 0xB8 */ 0x2c, 0x81, 0x6f, 0x15, 0x8b, 0x8a, 0x84, 0x60,
550 /* 0xC0 */ 0xe2, 0xe2, 0xe2, 0x5b, 0x5b, 0xae, 0xbc, 0xa9,
551 /* 0xC8 */ 0xc5, 0xbf, 0xc6, 0xf1, 0xe3, 0xe3, 0xe3, 0xe3,
552 /* 0xD0 */ 0x44, 0x5d, 0xa8, 0xe4, 0xec, 0xec, 0x5c, 0x78,
553 /* 0xD8 */ 0xab, 0xa6, 0xe5, 0x5e, 0x5e, 0xe6, 0xaa, 0xbe,
554 /* 0xE0 */ 0x7f, 0xe7, 0xaf, 0x7b, 0x7b, 0xaf, 0xbd, 0xc8,
555 /* 0xE8 */ 0xa4, 0xa5, 0xc7, 0xf6, 0xa7, 0xe8, 0x69, 0x69,
556 /* 0xF0 */ 0xed, 0x7d, 0xa8, 0xe4, 0xec, 0x5c, 0x5c, 0x25,
557 /* 0xF8 */ 0xac, 0xa6, 0xea, 0xef, 0x7e, 0xeb, 0xb2, 0x79,
Willy Tarreau7005b582008-11-13 17:18:59 -0800558};
559
Peter Huewe36d20412013-02-15 13:47:05 +0100560static const char old_keypad_profile[][4][9] = {
Willy Tarreau698b1512008-11-22 11:29:33 +0100561 {"S0", "Left\n", "Left\n", ""},
562 {"S1", "Down\n", "Down\n", ""},
563 {"S2", "Up\n", "Up\n", ""},
564 {"S3", "Right\n", "Right\n", ""},
565 {"S4", "Esc\n", "Esc\n", ""},
566 {"S5", "Ret\n", "Ret\n", ""},
567 {"", "", "", ""}
Willy Tarreau7005b582008-11-13 17:18:59 -0800568};
569
570/* signals, press, repeat, release */
Peter Huewe36d20412013-02-15 13:47:05 +0100571static const char new_keypad_profile[][4][9] = {
Willy Tarreau698b1512008-11-22 11:29:33 +0100572 {"S0", "Left\n", "Left\n", ""},
573 {"S1", "Down\n", "Down\n", ""},
574 {"S2", "Up\n", "Up\n", ""},
575 {"S3", "Right\n", "Right\n", ""},
576 {"S4s5", "", "Esc\n", "Esc\n"},
577 {"s4S5", "", "Ret\n", "Ret\n"},
578 {"S4S5", "Help\n", "", ""},
579 /* add new signals above this line */
580 {"", "", "", ""}
Willy Tarreau7005b582008-11-13 17:18:59 -0800581};
582
583/* signals, press, repeat, release */
Peter Huewe36d20412013-02-15 13:47:05 +0100584static const char nexcom_keypad_profile[][4][9] = {
Willy Tarreau698b1512008-11-22 11:29:33 +0100585 {"a-p-e-", "Down\n", "Down\n", ""},
586 {"a-p-E-", "Ret\n", "Ret\n", ""},
587 {"a-P-E-", "Esc\n", "Esc\n", ""},
588 {"a-P-e-", "Up\n", "Up\n", ""},
589 /* add new signals above this line */
590 {"", "", "", ""}
Willy Tarreau7005b582008-11-13 17:18:59 -0800591};
592
Peter Huewe36d20412013-02-15 13:47:05 +0100593static const char (*keypad_profile)[4][9] = old_keypad_profile;
Willy Tarreau7005b582008-11-13 17:18:59 -0800594
595/* FIXME: this should be converted to a bit array containing signals states */
596static struct {
Henri Häkkinen429ccf02010-06-12 00:27:36 +0300597 unsigned char e; /* parallel LCD E (data latch on falling edge) */
598 unsigned char rs; /* parallel LCD RS (0 = cmd, 1 = data) */
599 unsigned char rw; /* parallel LCD R/W (0 = W, 1 = R) */
600 unsigned char bl; /* parallel LCD backlight (0 = off, 1 = on) */
601 unsigned char cl; /* serial LCD clock (latch on rising edge) */
602 unsigned char da; /* serial LCD data */
Willy Tarreau7005b582008-11-13 17:18:59 -0800603} bits;
604
605static void init_scan_timer(void);
606
607/* sets data port bits according to current signals values */
Willy Tarreau698b1512008-11-22 11:29:33 +0100608static int set_data_bits(void)
609{
610 int val, bit;
Willy Tarreau7005b582008-11-13 17:18:59 -0800611
Willy Tarreau698b1512008-11-22 11:29:33 +0100612 val = r_dtr(pprt);
613 for (bit = 0; bit < LCD_BITS; bit++)
614 val &= lcd_bits[LCD_PORT_D][bit][BIT_MSK];
Willy Tarreau7005b582008-11-13 17:18:59 -0800615
Willy Tarreau698b1512008-11-22 11:29:33 +0100616 val |= lcd_bits[LCD_PORT_D][LCD_BIT_E][bits.e]
617 | lcd_bits[LCD_PORT_D][LCD_BIT_RS][bits.rs]
618 | lcd_bits[LCD_PORT_D][LCD_BIT_RW][bits.rw]
619 | lcd_bits[LCD_PORT_D][LCD_BIT_BL][bits.bl]
620 | lcd_bits[LCD_PORT_D][LCD_BIT_CL][bits.cl]
621 | lcd_bits[LCD_PORT_D][LCD_BIT_DA][bits.da];
Willy Tarreau7005b582008-11-13 17:18:59 -0800622
Willy Tarreau698b1512008-11-22 11:29:33 +0100623 w_dtr(pprt, val);
624 return val;
Willy Tarreau7005b582008-11-13 17:18:59 -0800625}
626
627/* sets ctrl port bits according to current signals values */
Willy Tarreau698b1512008-11-22 11:29:33 +0100628static int set_ctrl_bits(void)
629{
630 int val, bit;
Willy Tarreau7005b582008-11-13 17:18:59 -0800631
Willy Tarreau698b1512008-11-22 11:29:33 +0100632 val = r_ctr(pprt);
633 for (bit = 0; bit < LCD_BITS; bit++)
634 val &= lcd_bits[LCD_PORT_C][bit][BIT_MSK];
Willy Tarreau7005b582008-11-13 17:18:59 -0800635
Willy Tarreau698b1512008-11-22 11:29:33 +0100636 val |= lcd_bits[LCD_PORT_C][LCD_BIT_E][bits.e]
637 | lcd_bits[LCD_PORT_C][LCD_BIT_RS][bits.rs]
638 | lcd_bits[LCD_PORT_C][LCD_BIT_RW][bits.rw]
639 | lcd_bits[LCD_PORT_C][LCD_BIT_BL][bits.bl]
640 | lcd_bits[LCD_PORT_C][LCD_BIT_CL][bits.cl]
641 | lcd_bits[LCD_PORT_C][LCD_BIT_DA][bits.da];
Willy Tarreau7005b582008-11-13 17:18:59 -0800642
Willy Tarreau698b1512008-11-22 11:29:33 +0100643 w_ctr(pprt, val);
644 return val;
Willy Tarreau7005b582008-11-13 17:18:59 -0800645}
646
647/* sets ctrl & data port bits according to current signals values */
Sachin P. Sant6136ac82009-02-03 21:10:58 +0530648static void panel_set_bits(void)
Willy Tarreau698b1512008-11-22 11:29:33 +0100649{
650 set_data_bits();
651 set_ctrl_bits();
Willy Tarreau7005b582008-11-13 17:18:59 -0800652}
653
654/*
655 * Converts a parallel port pin (from -25 to 25) to data and control ports
656 * masks, and data and control port bits. The signal will be considered
657 * unconnected if it's on pin 0 or an invalid pin (<-25 or >25).
658 *
659 * Result will be used this way :
660 * out(dport, in(dport) & d_val[2] | d_val[signal_state])
661 * out(cport, in(cport) & c_val[2] | c_val[signal_state])
662 */
Peter Huewe36d20412013-02-15 13:47:05 +0100663static void pin_to_bits(int pin, unsigned char *d_val, unsigned char *c_val)
Willy Tarreau698b1512008-11-22 11:29:33 +0100664{
665 int d_bit, c_bit, inv;
Willy Tarreau7005b582008-11-13 17:18:59 -0800666
Willy Tarreau698b1512008-11-22 11:29:33 +0100667 d_val[0] = c_val[0] = d_val[1] = c_val[1] = 0;
668 d_val[2] = c_val[2] = 0xFF;
Willy Tarreau7005b582008-11-13 17:18:59 -0800669
Willy Tarreau698b1512008-11-22 11:29:33 +0100670 if (pin == 0)
671 return;
Willy Tarreau7005b582008-11-13 17:18:59 -0800672
Willy Tarreau698b1512008-11-22 11:29:33 +0100673 inv = (pin < 0);
674 if (inv)
675 pin = -pin;
Willy Tarreau7005b582008-11-13 17:18:59 -0800676
Willy Tarreau698b1512008-11-22 11:29:33 +0100677 d_bit = c_bit = 0;
Willy Tarreau7005b582008-11-13 17:18:59 -0800678
Willy Tarreau698b1512008-11-22 11:29:33 +0100679 switch (pin) {
680 case PIN_STROBE: /* strobe, inverted */
681 c_bit = PNL_PSTROBE;
682 inv = !inv;
683 break;
684 case PIN_D0...PIN_D7: /* D0 - D7 = 2 - 9 */
685 d_bit = 1 << (pin - 2);
686 break;
687 case PIN_AUTOLF: /* autofeed, inverted */
688 c_bit = PNL_PAUTOLF;
689 inv = !inv;
690 break;
Henri Häkkinen429ccf02010-06-12 00:27:36 +0300691 case PIN_INITP: /* init, direct */
Willy Tarreau698b1512008-11-22 11:29:33 +0100692 c_bit = PNL_PINITP;
693 break;
694 case PIN_SELECP: /* select_in, inverted */
695 c_bit = PNL_PSELECP;
696 inv = !inv;
697 break;
698 default: /* unknown pin, ignore */
699 break;
700 }
Willy Tarreau7005b582008-11-13 17:18:59 -0800701
Willy Tarreau698b1512008-11-22 11:29:33 +0100702 if (c_bit) {
703 c_val[2] &= ~c_bit;
704 c_val[!inv] = c_bit;
705 } else if (d_bit) {
706 d_val[2] &= ~d_bit;
707 d_val[!inv] = d_bit;
708 }
Willy Tarreau7005b582008-11-13 17:18:59 -0800709}
710
711/* sleeps that many milliseconds with a reschedule */
Willy Tarreau698b1512008-11-22 11:29:33 +0100712static void long_sleep(int ms)
713{
Willy Tarreau7005b582008-11-13 17:18:59 -0800714
Willy Tarreau698b1512008-11-22 11:29:33 +0100715 if (in_interrupt())
716 mdelay(ms);
717 else {
718 current->state = TASK_INTERRUPTIBLE;
719 schedule_timeout((ms * HZ + 999) / 1000);
720 }
Willy Tarreau7005b582008-11-13 17:18:59 -0800721}
722
Henri Häkkinen429ccf02010-06-12 00:27:36 +0300723/* send a serial byte to the LCD panel. The caller is responsible for locking
724 if needed. */
Willy Tarreau698b1512008-11-22 11:29:33 +0100725static void lcd_send_serial(int byte)
726{
727 int bit;
Willy Tarreau7005b582008-11-13 17:18:59 -0800728
Willy Tarreau698b1512008-11-22 11:29:33 +0100729 /* the data bit is set on D0, and the clock on STROBE.
Henri Häkkinen429ccf02010-06-12 00:27:36 +0300730 * LCD reads D0 on STROBE's rising edge. */
Willy Tarreau698b1512008-11-22 11:29:33 +0100731 for (bit = 0; bit < 8; bit++) {
732 bits.cl = BIT_CLR; /* CLK low */
Sachin P. Sant6136ac82009-02-03 21:10:58 +0530733 panel_set_bits();
Willy Tarreau698b1512008-11-22 11:29:33 +0100734 bits.da = byte & 1;
Sachin P. Sant6136ac82009-02-03 21:10:58 +0530735 panel_set_bits();
Henri Häkkinen429ccf02010-06-12 00:27:36 +0300736 udelay(2); /* maintain the data during 2 us before CLK up */
Willy Tarreau698b1512008-11-22 11:29:33 +0100737 bits.cl = BIT_SET; /* CLK high */
Sachin P. Sant6136ac82009-02-03 21:10:58 +0530738 panel_set_bits();
Henri Häkkinen429ccf02010-06-12 00:27:36 +0300739 udelay(1); /* maintain the strobe during 1 us */
Willy Tarreau698b1512008-11-22 11:29:33 +0100740 byte >>= 1;
741 }
Willy Tarreau7005b582008-11-13 17:18:59 -0800742}
743
744/* turn the backlight on or off */
Willy Tarreau698b1512008-11-22 11:29:33 +0100745static void lcd_backlight(int on)
746{
747 if (lcd_bl_pin == PIN_NONE)
748 return;
Willy Tarreau7005b582008-11-13 17:18:59 -0800749
Justin P. Mattock6975e182012-03-19 08:17:52 -0700750 /* The backlight is activated by setting the AUTOFEED line to +5V */
Fengguang Wud4d2dbc2012-09-09 16:23:46 +0800751 spin_lock_irq(&pprt_lock);
Willy Tarreau698b1512008-11-22 11:29:33 +0100752 bits.bl = on;
Sachin P. Sant6136ac82009-02-03 21:10:58 +0530753 panel_set_bits();
Fengguang Wud4d2dbc2012-09-09 16:23:46 +0800754 spin_unlock_irq(&pprt_lock);
Willy Tarreau7005b582008-11-13 17:18:59 -0800755}
756
757/* send a command to the LCD panel in serial mode */
Willy Tarreau698b1512008-11-22 11:29:33 +0100758static void lcd_write_cmd_s(int cmd)
759{
Fengguang Wud4d2dbc2012-09-09 16:23:46 +0800760 spin_lock_irq(&pprt_lock);
Willy Tarreau698b1512008-11-22 11:29:33 +0100761 lcd_send_serial(0x1F); /* R/W=W, RS=0 */
762 lcd_send_serial(cmd & 0x0F);
763 lcd_send_serial((cmd >> 4) & 0x0F);
764 udelay(40); /* the shortest command takes at least 40 us */
Fengguang Wud4d2dbc2012-09-09 16:23:46 +0800765 spin_unlock_irq(&pprt_lock);
Willy Tarreau7005b582008-11-13 17:18:59 -0800766}
767
768/* send data to the LCD panel in serial mode */
Willy Tarreau698b1512008-11-22 11:29:33 +0100769static void lcd_write_data_s(int data)
770{
Fengguang Wud4d2dbc2012-09-09 16:23:46 +0800771 spin_lock_irq(&pprt_lock);
Willy Tarreau698b1512008-11-22 11:29:33 +0100772 lcd_send_serial(0x5F); /* R/W=W, RS=1 */
773 lcd_send_serial(data & 0x0F);
774 lcd_send_serial((data >> 4) & 0x0F);
775 udelay(40); /* the shortest data takes at least 40 us */
Fengguang Wud4d2dbc2012-09-09 16:23:46 +0800776 spin_unlock_irq(&pprt_lock);
Willy Tarreau7005b582008-11-13 17:18:59 -0800777}
778
779/* send a command to the LCD panel in 8 bits parallel mode */
Willy Tarreau698b1512008-11-22 11:29:33 +0100780static void lcd_write_cmd_p8(int cmd)
781{
Fengguang Wud4d2dbc2012-09-09 16:23:46 +0800782 spin_lock_irq(&pprt_lock);
Willy Tarreau7005b582008-11-13 17:18:59 -0800783 /* present the data to the data port */
Willy Tarreau698b1512008-11-22 11:29:33 +0100784 w_dtr(pprt, cmd);
Henri Häkkinen429ccf02010-06-12 00:27:36 +0300785 udelay(20); /* maintain the data during 20 us before the strobe */
Willy Tarreau7005b582008-11-13 17:18:59 -0800786
Willy Tarreau698b1512008-11-22 11:29:33 +0100787 bits.e = BIT_SET;
788 bits.rs = BIT_CLR;
789 bits.rw = BIT_CLR;
Willy Tarreau7005b582008-11-13 17:18:59 -0800790 set_ctrl_bits();
791
Henri Häkkinen429ccf02010-06-12 00:27:36 +0300792 udelay(40); /* maintain the strobe during 40 us */
Willy Tarreau7005b582008-11-13 17:18:59 -0800793
794 bits.e = BIT_CLR;
795 set_ctrl_bits();
796
Henri Häkkinen429ccf02010-06-12 00:27:36 +0300797 udelay(120); /* the shortest command takes at least 120 us */
Fengguang Wud4d2dbc2012-09-09 16:23:46 +0800798 spin_unlock_irq(&pprt_lock);
Willy Tarreau698b1512008-11-22 11:29:33 +0100799}
Willy Tarreau7005b582008-11-13 17:18:59 -0800800
Willy Tarreau698b1512008-11-22 11:29:33 +0100801/* send data to the LCD panel in 8 bits parallel mode */
802static void lcd_write_data_p8(int data)
803{
Fengguang Wud4d2dbc2012-09-09 16:23:46 +0800804 spin_lock_irq(&pprt_lock);
Willy Tarreau698b1512008-11-22 11:29:33 +0100805 /* present the data to the data port */
806 w_dtr(pprt, data);
Henri Häkkinen429ccf02010-06-12 00:27:36 +0300807 udelay(20); /* maintain the data during 20 us before the strobe */
Willy Tarreau698b1512008-11-22 11:29:33 +0100808
809 bits.e = BIT_SET;
810 bits.rs = BIT_SET;
811 bits.rw = BIT_CLR;
812 set_ctrl_bits();
813
Henri Häkkinen429ccf02010-06-12 00:27:36 +0300814 udelay(40); /* maintain the strobe during 40 us */
Willy Tarreau698b1512008-11-22 11:29:33 +0100815
816 bits.e = BIT_CLR;
817 set_ctrl_bits();
818
Henri Häkkinen429ccf02010-06-12 00:27:36 +0300819 udelay(45); /* the shortest data takes at least 45 us */
Fengguang Wud4d2dbc2012-09-09 16:23:46 +0800820 spin_unlock_irq(&pprt_lock);
Willy Tarreau698b1512008-11-22 11:29:33 +0100821}
822
Sudhakar Rajashekhara77943d32009-08-20 18:13:18 -0400823/* send a command to the TI LCD panel */
824static void lcd_write_cmd_tilcd(int cmd)
825{
Fengguang Wud4d2dbc2012-09-09 16:23:46 +0800826 spin_lock_irq(&pprt_lock);
Sudhakar Rajashekhara77943d32009-08-20 18:13:18 -0400827 /* present the data to the control port */
828 w_ctr(pprt, cmd);
829 udelay(60);
Fengguang Wud4d2dbc2012-09-09 16:23:46 +0800830 spin_unlock_irq(&pprt_lock);
Sudhakar Rajashekhara77943d32009-08-20 18:13:18 -0400831}
832
833/* send data to the TI LCD panel */
834static void lcd_write_data_tilcd(int data)
835{
Fengguang Wud4d2dbc2012-09-09 16:23:46 +0800836 spin_lock_irq(&pprt_lock);
Sudhakar Rajashekhara77943d32009-08-20 18:13:18 -0400837 /* present the data to the data port */
838 w_dtr(pprt, data);
839 udelay(60);
Fengguang Wud4d2dbc2012-09-09 16:23:46 +0800840 spin_unlock_irq(&pprt_lock);
Sudhakar Rajashekhara77943d32009-08-20 18:13:18 -0400841}
842
Willy Tarreau698b1512008-11-22 11:29:33 +0100843static void lcd_gotoxy(void)
844{
845 lcd_write_cmd(0x80 /* set DDRAM address */
846 | (lcd_addr_y ? lcd_hwidth : 0)
Henri Häkkinen429ccf02010-06-12 00:27:36 +0300847 /* we force the cursor to stay at the end of the
848 line if it wants to go farther */
Willy Tarreau698b1512008-11-22 11:29:33 +0100849 | ((lcd_addr_x < lcd_bwidth) ? lcd_addr_x &
850 (lcd_hwidth - 1) : lcd_bwidth - 1));
851}
852
853static void lcd_print(char c)
854{
855 if (lcd_addr_x < lcd_bwidth) {
856 if (lcd_char_conv != NULL)
857 c = lcd_char_conv[(unsigned char)c];
858 lcd_write_data(c);
859 lcd_addr_x++;
860 }
861 /* prevents the cursor from wrapping onto the next line */
862 if (lcd_addr_x == lcd_bwidth)
863 lcd_gotoxy();
864}
865
866/* fills the display with spaces and resets X/Y */
867static void lcd_clear_fast_s(void)
868{
869 int pos;
870 lcd_addr_x = lcd_addr_y = 0;
871 lcd_gotoxy();
872
Fengguang Wud4d2dbc2012-09-09 16:23:46 +0800873 spin_lock_irq(&pprt_lock);
Willy Tarreau698b1512008-11-22 11:29:33 +0100874 for (pos = 0; pos < lcd_height * lcd_hwidth; pos++) {
875 lcd_send_serial(0x5F); /* R/W=W, RS=1 */
876 lcd_send_serial(' ' & 0x0F);
877 lcd_send_serial((' ' >> 4) & 0x0F);
878 udelay(40); /* the shortest data takes at least 40 us */
879 }
Fengguang Wud4d2dbc2012-09-09 16:23:46 +0800880 spin_unlock_irq(&pprt_lock);
Willy Tarreau698b1512008-11-22 11:29:33 +0100881
882 lcd_addr_x = lcd_addr_y = 0;
883 lcd_gotoxy();
884}
885
886/* fills the display with spaces and resets X/Y */
887static void lcd_clear_fast_p8(void)
888{
889 int pos;
890 lcd_addr_x = lcd_addr_y = 0;
891 lcd_gotoxy();
892
Fengguang Wud4d2dbc2012-09-09 16:23:46 +0800893 spin_lock_irq(&pprt_lock);
Willy Tarreau698b1512008-11-22 11:29:33 +0100894 for (pos = 0; pos < lcd_height * lcd_hwidth; pos++) {
895 /* present the data to the data port */
896 w_dtr(pprt, ' ');
Henri Häkkinen429ccf02010-06-12 00:27:36 +0300897
898 /* maintain the data during 20 us before the strobe */
899 udelay(20);
Willy Tarreau698b1512008-11-22 11:29:33 +0100900
901 bits.e = BIT_SET;
902 bits.rs = BIT_SET;
903 bits.rw = BIT_CLR;
904 set_ctrl_bits();
905
Henri Häkkinen429ccf02010-06-12 00:27:36 +0300906 /* maintain the strobe during 40 us */
907 udelay(40);
Willy Tarreau698b1512008-11-22 11:29:33 +0100908
909 bits.e = BIT_CLR;
910 set_ctrl_bits();
911
Henri Häkkinen429ccf02010-06-12 00:27:36 +0300912 /* the shortest data takes at least 45 us */
913 udelay(45);
Willy Tarreau698b1512008-11-22 11:29:33 +0100914 }
Fengguang Wud4d2dbc2012-09-09 16:23:46 +0800915 spin_unlock_irq(&pprt_lock);
Willy Tarreau698b1512008-11-22 11:29:33 +0100916
917 lcd_addr_x = lcd_addr_y = 0;
918 lcd_gotoxy();
Willy Tarreau7005b582008-11-13 17:18:59 -0800919}
920
Sudhakar Rajashekhara77943d32009-08-20 18:13:18 -0400921/* fills the display with spaces and resets X/Y */
922static void lcd_clear_fast_tilcd(void)
923{
924 int pos;
925 lcd_addr_x = lcd_addr_y = 0;
926 lcd_gotoxy();
927
Fengguang Wud4d2dbc2012-09-09 16:23:46 +0800928 spin_lock_irq(&pprt_lock);
Sudhakar Rajashekhara77943d32009-08-20 18:13:18 -0400929 for (pos = 0; pos < lcd_height * lcd_hwidth; pos++) {
930 /* present the data to the data port */
931 w_dtr(pprt, ' ');
932 udelay(60);
933 }
934
Fengguang Wud4d2dbc2012-09-09 16:23:46 +0800935 spin_unlock_irq(&pprt_lock);
Sudhakar Rajashekhara77943d32009-08-20 18:13:18 -0400936
937 lcd_addr_x = lcd_addr_y = 0;
938 lcd_gotoxy();
939}
940
Willy Tarreau7005b582008-11-13 17:18:59 -0800941/* clears the display and resets X/Y */
Willy Tarreau698b1512008-11-22 11:29:33 +0100942static void lcd_clear_display(void)
943{
944 lcd_write_cmd(0x01); /* clear display */
945 lcd_addr_x = lcd_addr_y = 0;
946 /* we must wait a few milliseconds (15) */
947 long_sleep(15);
Willy Tarreau7005b582008-11-13 17:18:59 -0800948}
949
Willy Tarreau698b1512008-11-22 11:29:33 +0100950static void lcd_init_display(void)
951{
Willy Tarreau7005b582008-11-13 17:18:59 -0800952
Willy Tarreau698b1512008-11-22 11:29:33 +0100953 lcd_flags = ((lcd_height > 1) ? LCD_FLAG_N : 0)
954 | LCD_FLAG_D | LCD_FLAG_C | LCD_FLAG_B;
Willy Tarreau7005b582008-11-13 17:18:59 -0800955
Willy Tarreau698b1512008-11-22 11:29:33 +0100956 long_sleep(20); /* wait 20 ms after power-up for the paranoid */
Willy Tarreau7005b582008-11-13 17:18:59 -0800957
Willy Tarreau698b1512008-11-22 11:29:33 +0100958 lcd_write_cmd(0x30); /* 8bits, 1 line, small fonts */
959 long_sleep(10);
960 lcd_write_cmd(0x30); /* 8bits, 1 line, small fonts */
961 long_sleep(10);
962 lcd_write_cmd(0x30); /* 8bits, 1 line, small fonts */
963 long_sleep(10);
Willy Tarreau7005b582008-11-13 17:18:59 -0800964
Willy Tarreau698b1512008-11-22 11:29:33 +0100965 lcd_write_cmd(0x30 /* set font height and lines number */
966 | ((lcd_flags & LCD_FLAG_F) ? 4 : 0)
967 | ((lcd_flags & LCD_FLAG_N) ? 8 : 0)
968 );
969 long_sleep(10);
Willy Tarreau7005b582008-11-13 17:18:59 -0800970
Willy Tarreau698b1512008-11-22 11:29:33 +0100971 lcd_write_cmd(0x08); /* display off, cursor off, blink off */
972 long_sleep(10);
Willy Tarreau7005b582008-11-13 17:18:59 -0800973
Willy Tarreau698b1512008-11-22 11:29:33 +0100974 lcd_write_cmd(0x08 /* set display mode */
975 | ((lcd_flags & LCD_FLAG_D) ? 4 : 0)
976 | ((lcd_flags & LCD_FLAG_C) ? 2 : 0)
977 | ((lcd_flags & LCD_FLAG_B) ? 1 : 0)
978 );
Willy Tarreau7005b582008-11-13 17:18:59 -0800979
Willy Tarreau698b1512008-11-22 11:29:33 +0100980 lcd_backlight((lcd_flags & LCD_FLAG_L) ? 1 : 0);
Willy Tarreau7005b582008-11-13 17:18:59 -0800981
Willy Tarreau698b1512008-11-22 11:29:33 +0100982 long_sleep(10);
Willy Tarreau7005b582008-11-13 17:18:59 -0800983
Henri Häkkinen429ccf02010-06-12 00:27:36 +0300984 /* entry mode set : increment, cursor shifting */
985 lcd_write_cmd(0x06);
Willy Tarreau7005b582008-11-13 17:18:59 -0800986
Willy Tarreau698b1512008-11-22 11:29:33 +0100987 lcd_clear_display();
Willy Tarreau7005b582008-11-13 17:18:59 -0800988}
989
990/*
991 * These are the file operation function for user access to /dev/lcd
992 * This function can also be called from inside the kernel, by
993 * setting file and ppos to NULL.
994 *
995 */
996
Henri Häkkinen429ccf02010-06-12 00:27:36 +0300997static inline int handle_lcd_special_code(void)
998{
999 /* LCD special codes */
1000
1001 int processed = 0;
1002
1003 char *esc = lcd_escape + 2;
1004 int oldflags = lcd_flags;
1005
1006 /* check for display mode flags */
1007 switch (*esc) {
1008 case 'D': /* Display ON */
1009 lcd_flags |= LCD_FLAG_D;
1010 processed = 1;
1011 break;
1012 case 'd': /* Display OFF */
1013 lcd_flags &= ~LCD_FLAG_D;
1014 processed = 1;
1015 break;
1016 case 'C': /* Cursor ON */
1017 lcd_flags |= LCD_FLAG_C;
1018 processed = 1;
1019 break;
1020 case 'c': /* Cursor OFF */
1021 lcd_flags &= ~LCD_FLAG_C;
1022 processed = 1;
1023 break;
1024 case 'B': /* Blink ON */
1025 lcd_flags |= LCD_FLAG_B;
1026 processed = 1;
1027 break;
1028 case 'b': /* Blink OFF */
1029 lcd_flags &= ~LCD_FLAG_B;
1030 processed = 1;
1031 break;
1032 case '+': /* Back light ON */
1033 lcd_flags |= LCD_FLAG_L;
1034 processed = 1;
1035 break;
1036 case '-': /* Back light OFF */
1037 lcd_flags &= ~LCD_FLAG_L;
1038 processed = 1;
1039 break;
1040 case '*':
1041 /* flash back light using the keypad timer */
1042 if (scan_timer.function != NULL) {
1043 if (light_tempo == 0 && ((lcd_flags & LCD_FLAG_L) == 0))
1044 lcd_backlight(1);
1045 light_tempo = FLASH_LIGHT_TEMPO;
1046 }
1047 processed = 1;
1048 break;
1049 case 'f': /* Small Font */
1050 lcd_flags &= ~LCD_FLAG_F;
1051 processed = 1;
1052 break;
1053 case 'F': /* Large Font */
1054 lcd_flags |= LCD_FLAG_F;
1055 processed = 1;
1056 break;
1057 case 'n': /* One Line */
1058 lcd_flags &= ~LCD_FLAG_N;
1059 processed = 1;
1060 break;
1061 case 'N': /* Two Lines */
1062 lcd_flags |= LCD_FLAG_N;
1063 break;
1064 case 'l': /* Shift Cursor Left */
1065 if (lcd_addr_x > 0) {
1066 /* back one char if not at end of line */
1067 if (lcd_addr_x < lcd_bwidth)
1068 lcd_write_cmd(0x10);
1069 lcd_addr_x--;
1070 }
1071 processed = 1;
1072 break;
1073 case 'r': /* shift cursor right */
1074 if (lcd_addr_x < lcd_width) {
1075 /* allow the cursor to pass the end of the line */
1076 if (lcd_addr_x <
1077 (lcd_bwidth - 1))
1078 lcd_write_cmd(0x14);
1079 lcd_addr_x++;
1080 }
1081 processed = 1;
1082 break;
1083 case 'L': /* shift display left */
1084 lcd_left_shift++;
1085 lcd_write_cmd(0x18);
1086 processed = 1;
1087 break;
1088 case 'R': /* shift display right */
1089 lcd_left_shift--;
1090 lcd_write_cmd(0x1C);
1091 processed = 1;
1092 break;
1093 case 'k': { /* kill end of line */
1094 int x;
1095 for (x = lcd_addr_x; x < lcd_bwidth; x++)
1096 lcd_write_data(' ');
1097
1098 /* restore cursor position */
1099 lcd_gotoxy();
1100 processed = 1;
1101 break;
1102 }
1103 case 'I': /* reinitialize display */
1104 lcd_init_display();
1105 lcd_left_shift = 0;
1106 processed = 1;
1107 break;
1108 case 'G': {
1109 /* Generator : LGcxxxxx...xx; must have <c> between '0'
1110 * and '7', representing the numerical ASCII code of the
1111 * redefined character, and <xx...xx> a sequence of 16
1112 * hex digits representing 8 bytes for each character.
1113 * Most LCDs will only use 5 lower bits of the 7 first
1114 * bytes.
1115 */
1116
1117 unsigned char cgbytes[8];
1118 unsigned char cgaddr;
1119 int cgoffset;
1120 int shift;
1121 char value;
1122 int addr;
1123
1124 if (strchr(esc, ';') == NULL)
1125 break;
1126
1127 esc++;
1128
1129 cgaddr = *(esc++) - '0';
1130 if (cgaddr > 7) {
1131 processed = 1;
1132 break;
1133 }
1134
1135 cgoffset = 0;
1136 shift = 0;
1137 value = 0;
1138 while (*esc && cgoffset < 8) {
1139 shift ^= 4;
1140 if (*esc >= '0' && *esc <= '9')
1141 value |= (*esc - '0') << shift;
1142 else if (*esc >= 'A' && *esc <= 'Z')
1143 value |= (*esc - 'A' + 10) << shift;
1144 else if (*esc >= 'a' && *esc <= 'z')
1145 value |= (*esc - 'a' + 10) << shift;
1146 else {
1147 esc++;
1148 continue;
1149 }
1150
1151 if (shift == 0) {
1152 cgbytes[cgoffset++] = value;
1153 value = 0;
1154 }
1155
1156 esc++;
1157 }
1158
1159 lcd_write_cmd(0x40 | (cgaddr * 8));
1160 for (addr = 0; addr < cgoffset; addr++)
1161 lcd_write_data(cgbytes[addr]);
1162
1163 /* ensures that we stop writing to CGRAM */
1164 lcd_gotoxy();
1165 processed = 1;
1166 break;
1167 }
1168 case 'x': /* gotoxy : LxXXX[yYYY]; */
1169 case 'y': /* gotoxy : LyYYY[xXXX]; */
1170 if (strchr(esc, ';') == NULL)
1171 break;
1172
1173 while (*esc) {
1174 if (*esc == 'x') {
1175 esc++;
Pelle Windestam12995702011-08-30 20:29:24 +02001176 if (kstrtoul(esc, 10, &lcd_addr_x) < 0)
1177 break;
Henri Häkkinen429ccf02010-06-12 00:27:36 +03001178 } else if (*esc == 'y') {
1179 esc++;
Pelle Windestam12995702011-08-30 20:29:24 +02001180 if (kstrtoul(esc, 10, &lcd_addr_y) < 0)
1181 break;
Henri Häkkinen429ccf02010-06-12 00:27:36 +03001182 } else
1183 break;
1184 }
1185
1186 lcd_gotoxy();
1187 processed = 1;
1188 break;
1189 }
1190
Adam Buchbinderf2635892012-09-19 21:51:07 -04001191 /* Check whether one flag was changed */
Henri Häkkinen429ccf02010-06-12 00:27:36 +03001192 if (oldflags != lcd_flags) {
1193 /* check whether one of B,C,D flags were changed */
1194 if ((oldflags ^ lcd_flags) &
1195 (LCD_FLAG_B | LCD_FLAG_C | LCD_FLAG_D))
1196 /* set display mode */
1197 lcd_write_cmd(0x08
1198 | ((lcd_flags & LCD_FLAG_D) ? 4 : 0)
1199 | ((lcd_flags & LCD_FLAG_C) ? 2 : 0)
1200 | ((lcd_flags & LCD_FLAG_B) ? 1 : 0));
1201 /* check whether one of F,N flags was changed */
1202 else if ((oldflags ^ lcd_flags) & (LCD_FLAG_F | LCD_FLAG_N))
1203 lcd_write_cmd(0x30
1204 | ((lcd_flags & LCD_FLAG_F) ? 4 : 0)
1205 | ((lcd_flags & LCD_FLAG_N) ? 8 : 0));
Adam Buchbinderf2635892012-09-19 21:51:07 -04001206 /* check whether L flag was changed */
Henri Häkkinen429ccf02010-06-12 00:27:36 +03001207 else if ((oldflags ^ lcd_flags) & (LCD_FLAG_L)) {
1208 if (lcd_flags & (LCD_FLAG_L))
1209 lcd_backlight(1);
1210 else if (light_tempo == 0)
1211 /* switch off the light only when the tempo
1212 lighting is gone */
1213 lcd_backlight(0);
1214 }
1215 }
1216
1217 return processed;
1218}
1219
Willy Tarreau698b1512008-11-22 11:29:33 +01001220static ssize_t lcd_write(struct file *file,
1221 const char *buf, size_t count, loff_t *ppos)
1222{
Willy Tarreau698b1512008-11-22 11:29:33 +01001223 const char *tmp = buf;
1224 char c;
Willy Tarreau7005b582008-11-13 17:18:59 -08001225
Willy Tarreau698b1512008-11-22 11:29:33 +01001226 for (; count-- > 0; (ppos ? (*ppos)++ : 0), ++tmp) {
1227 if (!in_interrupt() && (((count + 1) & 0x1f) == 0))
Henri Häkkinen429ccf02010-06-12 00:27:36 +03001228 /* let's be a little nice with other processes
1229 that need some CPU */
1230 schedule();
Willy Tarreau7005b582008-11-13 17:18:59 -08001231
Willy Tarreau698b1512008-11-22 11:29:33 +01001232 if (ppos == NULL && file == NULL)
Henri Häkkinen429ccf02010-06-12 00:27:36 +03001233 /* let's not use get_user() from the kernel ! */
1234 c = *tmp;
Willy Tarreau698b1512008-11-22 11:29:33 +01001235 else if (get_user(c, tmp))
1236 return -EFAULT;
Willy Tarreau7005b582008-11-13 17:18:59 -08001237
Willy Tarreau698b1512008-11-22 11:29:33 +01001238 /* first, we'll test if we're in escape mode */
Henri Häkkinen429ccf02010-06-12 00:27:36 +03001239 if ((c != '\n') && lcd_escape_len >= 0) {
1240 /* yes, let's add this char to the buffer */
Willy Tarreau698b1512008-11-22 11:29:33 +01001241 lcd_escape[lcd_escape_len++] = c;
1242 lcd_escape[lcd_escape_len] = 0;
1243 } else {
Henri Häkkinen429ccf02010-06-12 00:27:36 +03001244 /* aborts any previous escape sequence */
1245 lcd_escape_len = -1;
Willy Tarreau698b1512008-11-22 11:29:33 +01001246
1247 switch (c) {
Henri Häkkinen429ccf02010-06-12 00:27:36 +03001248 case LCD_ESCAPE_CHAR:
1249 /* start of an escape sequence */
Willy Tarreau698b1512008-11-22 11:29:33 +01001250 lcd_escape_len = 0;
1251 lcd_escape[lcd_escape_len] = 0;
1252 break;
Henri Häkkinen429ccf02010-06-12 00:27:36 +03001253 case '\b':
1254 /* go back one char and clear it */
Willy Tarreau698b1512008-11-22 11:29:33 +01001255 if (lcd_addr_x > 0) {
Henri Häkkinen429ccf02010-06-12 00:27:36 +03001256 /* check if we're not at the
1257 end of the line */
1258 if (lcd_addr_x < lcd_bwidth)
1259 /* back one char */
1260 lcd_write_cmd(0x10);
Willy Tarreau698b1512008-11-22 11:29:33 +01001261 lcd_addr_x--;
1262 }
Henri Häkkinen429ccf02010-06-12 00:27:36 +03001263 /* replace with a space */
1264 lcd_write_data(' ');
1265 /* back one char again */
1266 lcd_write_cmd(0x10);
Willy Tarreau698b1512008-11-22 11:29:33 +01001267 break;
Henri Häkkinen429ccf02010-06-12 00:27:36 +03001268 case '\014':
1269 /* quickly clear the display */
Willy Tarreau698b1512008-11-22 11:29:33 +01001270 lcd_clear_fast();
1271 break;
Henri Häkkinen429ccf02010-06-12 00:27:36 +03001272 case '\n':
1273 /* flush the remainder of the current line and
1274 go to the beginning of the next line */
Willy Tarreau698b1512008-11-22 11:29:33 +01001275 for (; lcd_addr_x < lcd_bwidth; lcd_addr_x++)
1276 lcd_write_data(' ');
1277 lcd_addr_x = 0;
1278 lcd_addr_y = (lcd_addr_y + 1) % lcd_height;
1279 lcd_gotoxy();
1280 break;
Henri Häkkinen429ccf02010-06-12 00:27:36 +03001281 case '\r':
1282 /* go to the beginning of the same line */
Willy Tarreau698b1512008-11-22 11:29:33 +01001283 lcd_addr_x = 0;
1284 lcd_gotoxy();
1285 break;
Henri Häkkinen429ccf02010-06-12 00:27:36 +03001286 case '\t':
1287 /* print a space instead of the tab */
Willy Tarreau698b1512008-11-22 11:29:33 +01001288 lcd_print(' ');
1289 break;
Henri Häkkinen429ccf02010-06-12 00:27:36 +03001290 default:
1291 /* simply print this char */
Willy Tarreau698b1512008-11-22 11:29:33 +01001292 lcd_print(c);
1293 break;
1294 }
Willy Tarreau7005b582008-11-13 17:18:59 -08001295 }
Willy Tarreau698b1512008-11-22 11:29:33 +01001296
1297 /* now we'll see if we're in an escape mode and if the current
Henri Häkkinen429ccf02010-06-12 00:27:36 +03001298 escape sequence can be understood. */
1299 if (lcd_escape_len >= 2) {
1300 int processed = 0;
Willy Tarreau698b1512008-11-22 11:29:33 +01001301
Henri Häkkinen429ccf02010-06-12 00:27:36 +03001302 if (!strcmp(lcd_escape, "[2J")) {
1303 /* clear the display */
1304 lcd_clear_fast();
Willy Tarreau698b1512008-11-22 11:29:33 +01001305 processed = 1;
Henri Häkkinen429ccf02010-06-12 00:27:36 +03001306 } else if (!strcmp(lcd_escape, "[H")) {
1307 /* cursor to home */
Willy Tarreau698b1512008-11-22 11:29:33 +01001308 lcd_addr_x = lcd_addr_y = 0;
1309 lcd_gotoxy();
1310 processed = 1;
1311 }
1312 /* codes starting with ^[[L */
1313 else if ((lcd_escape_len >= 3) &&
Henri Häkkinen429ccf02010-06-12 00:27:36 +03001314 (lcd_escape[0] == '[') &&
1315 (lcd_escape[1] == 'L')) {
1316 processed = handle_lcd_special_code();
Willy Tarreau698b1512008-11-22 11:29:33 +01001317 }
1318
1319 /* LCD special escape codes */
Henri Häkkinen429ccf02010-06-12 00:27:36 +03001320 /* flush the escape sequence if it's been processed
1321 or if it is getting too long. */
Willy Tarreau698b1512008-11-22 11:29:33 +01001322 if (processed || (lcd_escape_len >= LCD_ESCAPE_LEN))
1323 lcd_escape_len = -1;
Henri Häkkinen429ccf02010-06-12 00:27:36 +03001324 } /* escape codes */
Willy Tarreau7005b582008-11-13 17:18:59 -08001325 }
1326
Willy Tarreau698b1512008-11-22 11:29:33 +01001327 return tmp - buf;
Willy Tarreau7005b582008-11-13 17:18:59 -08001328}
1329
Willy Tarreau698b1512008-11-22 11:29:33 +01001330static int lcd_open(struct inode *inode, struct file *file)
1331{
1332 if (lcd_open_cnt)
1333 return -EBUSY; /* open only once at a time */
Willy Tarreau7005b582008-11-13 17:18:59 -08001334
Willy Tarreau698b1512008-11-22 11:29:33 +01001335 if (file->f_mode & FMODE_READ) /* device is write-only */
1336 return -EPERM;
Willy Tarreau7005b582008-11-13 17:18:59 -08001337
Willy Tarreau698b1512008-11-22 11:29:33 +01001338 if (lcd_must_clear) {
1339 lcd_clear_display();
1340 lcd_must_clear = 0;
1341 }
1342 lcd_open_cnt++;
Arnd Bergmann3ff81012010-07-07 23:40:09 +02001343 return nonseekable_open(inode, file);
Willy Tarreau7005b582008-11-13 17:18:59 -08001344}
1345
Willy Tarreau698b1512008-11-22 11:29:33 +01001346static int lcd_release(struct inode *inode, struct file *file)
1347{
1348 lcd_open_cnt--;
1349 return 0;
Willy Tarreau7005b582008-11-13 17:18:59 -08001350}
1351
Henri Häkkinen429ccf02010-06-12 00:27:36 +03001352static const struct file_operations lcd_fops = {
Willy Tarreau698b1512008-11-22 11:29:33 +01001353 .write = lcd_write,
1354 .open = lcd_open,
1355 .release = lcd_release,
Arnd Bergmann3ff81012010-07-07 23:40:09 +02001356 .llseek = no_llseek,
Willy Tarreau7005b582008-11-13 17:18:59 -08001357};
1358
1359static struct miscdevice lcd_dev = {
Willy Tarreau698b1512008-11-22 11:29:33 +01001360 LCD_MINOR,
1361 "lcd",
1362 &lcd_fops
Willy Tarreau7005b582008-11-13 17:18:59 -08001363};
1364
Willy Tarreau7005b582008-11-13 17:18:59 -08001365/* public function usable from the kernel for any purpose */
Peter Huewe36d20412013-02-15 13:47:05 +01001366static void panel_lcd_print(const char *s)
Willy Tarreau698b1512008-11-22 11:29:33 +01001367{
1368 if (lcd_enabled && lcd_initialized)
1369 lcd_write(NULL, s, strlen(s), NULL);
Willy Tarreau7005b582008-11-13 17:18:59 -08001370}
1371
Willy Tarreau7005b582008-11-13 17:18:59 -08001372/* initialize the LCD driver */
Peter Huewe36d20412013-02-15 13:47:05 +01001373static void lcd_init(void)
Willy Tarreau698b1512008-11-22 11:29:33 +01001374{
1375 switch (lcd_type) {
Henri Häkkinen429ccf02010-06-12 00:27:36 +03001376 case LCD_TYPE_OLD:
1377 /* parallel mode, 8 bits */
Willy Tarreau698b1512008-11-22 11:29:33 +01001378 if (lcd_proto < 0)
1379 lcd_proto = LCD_PROTO_PARALLEL;
1380 if (lcd_charset < 0)
1381 lcd_charset = LCD_CHARSET_NORMAL;
1382 if (lcd_e_pin == PIN_NOT_SET)
1383 lcd_e_pin = PIN_STROBE;
1384 if (lcd_rs_pin == PIN_NOT_SET)
1385 lcd_rs_pin = PIN_AUTOLF;
Willy Tarreau7005b582008-11-13 17:18:59 -08001386
Willy Tarreau698b1512008-11-22 11:29:33 +01001387 if (lcd_width < 0)
1388 lcd_width = 40;
1389 if (lcd_bwidth < 0)
1390 lcd_bwidth = 40;
1391 if (lcd_hwidth < 0)
1392 lcd_hwidth = 64;
1393 if (lcd_height < 0)
1394 lcd_height = 2;
Willy Tarreau7005b582008-11-13 17:18:59 -08001395 break;
Henri Häkkinen429ccf02010-06-12 00:27:36 +03001396 case LCD_TYPE_KS0074:
1397 /* serial mode, ks0074 */
Willy Tarreau698b1512008-11-22 11:29:33 +01001398 if (lcd_proto < 0)
1399 lcd_proto = LCD_PROTO_SERIAL;
1400 if (lcd_charset < 0)
1401 lcd_charset = LCD_CHARSET_KS0074;
1402 if (lcd_bl_pin == PIN_NOT_SET)
1403 lcd_bl_pin = PIN_AUTOLF;
1404 if (lcd_cl_pin == PIN_NOT_SET)
1405 lcd_cl_pin = PIN_STROBE;
1406 if (lcd_da_pin == PIN_NOT_SET)
1407 lcd_da_pin = PIN_D0;
Willy Tarreau7005b582008-11-13 17:18:59 -08001408
Willy Tarreau698b1512008-11-22 11:29:33 +01001409 if (lcd_width < 0)
1410 lcd_width = 16;
1411 if (lcd_bwidth < 0)
1412 lcd_bwidth = 40;
1413 if (lcd_hwidth < 0)
1414 lcd_hwidth = 16;
1415 if (lcd_height < 0)
1416 lcd_height = 2;
Willy Tarreau7005b582008-11-13 17:18:59 -08001417 break;
Henri Häkkinen429ccf02010-06-12 00:27:36 +03001418 case LCD_TYPE_NEXCOM:
1419 /* parallel mode, 8 bits, generic */
Willy Tarreau698b1512008-11-22 11:29:33 +01001420 if (lcd_proto < 0)
1421 lcd_proto = LCD_PROTO_PARALLEL;
1422 if (lcd_charset < 0)
1423 lcd_charset = LCD_CHARSET_NORMAL;
1424 if (lcd_e_pin == PIN_NOT_SET)
1425 lcd_e_pin = PIN_AUTOLF;
1426 if (lcd_rs_pin == PIN_NOT_SET)
1427 lcd_rs_pin = PIN_SELECP;
1428 if (lcd_rw_pin == PIN_NOT_SET)
1429 lcd_rw_pin = PIN_INITP;
Willy Tarreau7005b582008-11-13 17:18:59 -08001430
Willy Tarreau698b1512008-11-22 11:29:33 +01001431 if (lcd_width < 0)
1432 lcd_width = 16;
1433 if (lcd_bwidth < 0)
1434 lcd_bwidth = 40;
1435 if (lcd_hwidth < 0)
1436 lcd_hwidth = 64;
1437 if (lcd_height < 0)
1438 lcd_height = 2;
Willy Tarreau7005b582008-11-13 17:18:59 -08001439 break;
Henri Häkkinen429ccf02010-06-12 00:27:36 +03001440 case LCD_TYPE_CUSTOM:
1441 /* customer-defined */
Willy Tarreau698b1512008-11-22 11:29:33 +01001442 if (lcd_proto < 0)
1443 lcd_proto = DEFAULT_LCD_PROTO;
1444 if (lcd_charset < 0)
1445 lcd_charset = DEFAULT_LCD_CHARSET;
Willy Tarreau7005b582008-11-13 17:18:59 -08001446 /* default geometry will be set later */
1447 break;
Henri Häkkinen429ccf02010-06-12 00:27:36 +03001448 case LCD_TYPE_HANTRONIX:
1449 /* parallel mode, 8 bits, hantronix-like */
Willy Tarreau698b1512008-11-22 11:29:33 +01001450 default:
1451 if (lcd_proto < 0)
1452 lcd_proto = LCD_PROTO_PARALLEL;
1453 if (lcd_charset < 0)
1454 lcd_charset = LCD_CHARSET_NORMAL;
1455 if (lcd_e_pin == PIN_NOT_SET)
1456 lcd_e_pin = PIN_STROBE;
1457 if (lcd_rs_pin == PIN_NOT_SET)
1458 lcd_rs_pin = PIN_SELECP;
Willy Tarreau7005b582008-11-13 17:18:59 -08001459
Willy Tarreau698b1512008-11-22 11:29:33 +01001460 if (lcd_width < 0)
1461 lcd_width = 16;
1462 if (lcd_bwidth < 0)
1463 lcd_bwidth = 40;
1464 if (lcd_hwidth < 0)
1465 lcd_hwidth = 64;
1466 if (lcd_height < 0)
1467 lcd_height = 2;
Willy Tarreau7005b582008-11-13 17:18:59 -08001468 break;
Willy Tarreau698b1512008-11-22 11:29:33 +01001469 }
Willy Tarreau7005b582008-11-13 17:18:59 -08001470
Willy Tarreau698b1512008-11-22 11:29:33 +01001471 /* this is used to catch wrong and default values */
1472 if (lcd_width <= 0)
1473 lcd_width = DEFAULT_LCD_WIDTH;
1474 if (lcd_bwidth <= 0)
1475 lcd_bwidth = DEFAULT_LCD_BWIDTH;
1476 if (lcd_hwidth <= 0)
1477 lcd_hwidth = DEFAULT_LCD_HWIDTH;
1478 if (lcd_height <= 0)
1479 lcd_height = DEFAULT_LCD_HEIGHT;
Willy Tarreau7005b582008-11-13 17:18:59 -08001480
Willy Tarreau698b1512008-11-22 11:29:33 +01001481 if (lcd_proto == LCD_PROTO_SERIAL) { /* SERIAL */
1482 lcd_write_cmd = lcd_write_cmd_s;
1483 lcd_write_data = lcd_write_data_s;
1484 lcd_clear_fast = lcd_clear_fast_s;
Willy Tarreau7005b582008-11-13 17:18:59 -08001485
Willy Tarreau698b1512008-11-22 11:29:33 +01001486 if (lcd_cl_pin == PIN_NOT_SET)
1487 lcd_cl_pin = DEFAULT_LCD_PIN_SCL;
1488 if (lcd_da_pin == PIN_NOT_SET)
1489 lcd_da_pin = DEFAULT_LCD_PIN_SDA;
Willy Tarreau7005b582008-11-13 17:18:59 -08001490
Sudhakar Rajashekhara77943d32009-08-20 18:13:18 -04001491 } else if (lcd_proto == LCD_PROTO_PARALLEL) { /* PARALLEL */
Willy Tarreau698b1512008-11-22 11:29:33 +01001492 lcd_write_cmd = lcd_write_cmd_p8;
1493 lcd_write_data = lcd_write_data_p8;
1494 lcd_clear_fast = lcd_clear_fast_p8;
Willy Tarreau7005b582008-11-13 17:18:59 -08001495
Willy Tarreau698b1512008-11-22 11:29:33 +01001496 if (lcd_e_pin == PIN_NOT_SET)
1497 lcd_e_pin = DEFAULT_LCD_PIN_E;
1498 if (lcd_rs_pin == PIN_NOT_SET)
1499 lcd_rs_pin = DEFAULT_LCD_PIN_RS;
1500 if (lcd_rw_pin == PIN_NOT_SET)
1501 lcd_rw_pin = DEFAULT_LCD_PIN_RW;
Sudhakar Rajashekhara77943d32009-08-20 18:13:18 -04001502 } else {
1503 lcd_write_cmd = lcd_write_cmd_tilcd;
1504 lcd_write_data = lcd_write_data_tilcd;
1505 lcd_clear_fast = lcd_clear_fast_tilcd;
Willy Tarreau698b1512008-11-22 11:29:33 +01001506 }
1507
1508 if (lcd_bl_pin == PIN_NOT_SET)
1509 lcd_bl_pin = DEFAULT_LCD_PIN_BL;
1510
1511 if (lcd_e_pin == PIN_NOT_SET)
1512 lcd_e_pin = PIN_NONE;
Willy Tarreau7005b582008-11-13 17:18:59 -08001513 if (lcd_rs_pin == PIN_NOT_SET)
Willy Tarreau698b1512008-11-22 11:29:33 +01001514 lcd_rs_pin = PIN_NONE;
Willy Tarreau7005b582008-11-13 17:18:59 -08001515 if (lcd_rw_pin == PIN_NOT_SET)
Willy Tarreau698b1512008-11-22 11:29:33 +01001516 lcd_rw_pin = PIN_NONE;
1517 if (lcd_bl_pin == PIN_NOT_SET)
1518 lcd_bl_pin = PIN_NONE;
1519 if (lcd_cl_pin == PIN_NOT_SET)
1520 lcd_cl_pin = PIN_NONE;
1521 if (lcd_da_pin == PIN_NOT_SET)
1522 lcd_da_pin = PIN_NONE;
Willy Tarreau7005b582008-11-13 17:18:59 -08001523
Willy Tarreau698b1512008-11-22 11:29:33 +01001524 if (lcd_charset < 0)
1525 lcd_charset = DEFAULT_LCD_CHARSET;
Willy Tarreau7005b582008-11-13 17:18:59 -08001526
Willy Tarreau698b1512008-11-22 11:29:33 +01001527 if (lcd_charset == LCD_CHARSET_KS0074)
1528 lcd_char_conv = lcd_char_conv_ks0074;
1529 else
1530 lcd_char_conv = NULL;
Willy Tarreau7005b582008-11-13 17:18:59 -08001531
Willy Tarreau698b1512008-11-22 11:29:33 +01001532 if (lcd_bl_pin != PIN_NONE)
1533 init_scan_timer();
Willy Tarreau7005b582008-11-13 17:18:59 -08001534
Willy Tarreau698b1512008-11-22 11:29:33 +01001535 pin_to_bits(lcd_e_pin, lcd_bits[LCD_PORT_D][LCD_BIT_E],
1536 lcd_bits[LCD_PORT_C][LCD_BIT_E]);
1537 pin_to_bits(lcd_rs_pin, lcd_bits[LCD_PORT_D][LCD_BIT_RS],
1538 lcd_bits[LCD_PORT_C][LCD_BIT_RS]);
1539 pin_to_bits(lcd_rw_pin, lcd_bits[LCD_PORT_D][LCD_BIT_RW],
1540 lcd_bits[LCD_PORT_C][LCD_BIT_RW]);
1541 pin_to_bits(lcd_bl_pin, lcd_bits[LCD_PORT_D][LCD_BIT_BL],
1542 lcd_bits[LCD_PORT_C][LCD_BIT_BL]);
1543 pin_to_bits(lcd_cl_pin, lcd_bits[LCD_PORT_D][LCD_BIT_CL],
1544 lcd_bits[LCD_PORT_C][LCD_BIT_CL]);
1545 pin_to_bits(lcd_da_pin, lcd_bits[LCD_PORT_D][LCD_BIT_DA],
1546 lcd_bits[LCD_PORT_C][LCD_BIT_DA]);
Willy Tarreau7005b582008-11-13 17:18:59 -08001547
Willy Tarreau698b1512008-11-22 11:29:33 +01001548 /* before this line, we must NOT send anything to the display.
1549 * Since lcd_init_display() needs to write data, we have to
Henri Häkkinen429ccf02010-06-12 00:27:36 +03001550 * enable mark the LCD initialized just before. */
Willy Tarreau698b1512008-11-22 11:29:33 +01001551 lcd_initialized = 1;
1552 lcd_init_display();
Willy Tarreau7005b582008-11-13 17:18:59 -08001553
Willy Tarreau698b1512008-11-22 11:29:33 +01001554 /* display a short message */
Willy Tarreau7005b582008-11-13 17:18:59 -08001555#ifdef CONFIG_PANEL_CHANGE_MESSAGE
1556#ifdef CONFIG_PANEL_BOOT_MESSAGE
Willy Tarreau698b1512008-11-22 11:29:33 +01001557 panel_lcd_print("\x1b[Lc\x1b[Lb\x1b[L*" CONFIG_PANEL_BOOT_MESSAGE);
Willy Tarreau7005b582008-11-13 17:18:59 -08001558#endif
1559#else
Willy Tarreau698b1512008-11-22 11:29:33 +01001560 panel_lcd_print("\x1b[Lc\x1b[Lb\x1b[L*Linux-" UTS_RELEASE "\nPanel-"
1561 PANEL_VERSION);
Willy Tarreau7005b582008-11-13 17:18:59 -08001562#endif
Willy Tarreau698b1512008-11-22 11:29:33 +01001563 lcd_addr_x = lcd_addr_y = 0;
Henri Häkkinen429ccf02010-06-12 00:27:36 +03001564 /* clear the display on the next device opening */
1565 lcd_must_clear = 1;
Willy Tarreau698b1512008-11-22 11:29:33 +01001566 lcd_gotoxy();
Willy Tarreau7005b582008-11-13 17:18:59 -08001567}
1568
Willy Tarreau7005b582008-11-13 17:18:59 -08001569/*
1570 * These are the file operation function for user access to /dev/keypad
1571 */
1572
Willy Tarreau698b1512008-11-22 11:29:33 +01001573static ssize_t keypad_read(struct file *file,
1574 char *buf, size_t count, loff_t *ppos)
1575{
Willy Tarreau7005b582008-11-13 17:18:59 -08001576
Willy Tarreau698b1512008-11-22 11:29:33 +01001577 unsigned i = *ppos;
1578 char *tmp = buf;
Willy Tarreau7005b582008-11-13 17:18:59 -08001579
Willy Tarreau698b1512008-11-22 11:29:33 +01001580 if (keypad_buflen == 0) {
1581 if (file->f_flags & O_NONBLOCK)
1582 return -EAGAIN;
Willy Tarreau7005b582008-11-13 17:18:59 -08001583
Arnd Bergmann310df692014-01-02 13:07:35 +01001584 if (wait_event_interruptible(keypad_read_wait,
1585 keypad_buflen != 0))
Willy Tarreau698b1512008-11-22 11:29:33 +01001586 return -EINTR;
1587 }
Willy Tarreau7005b582008-11-13 17:18:59 -08001588
Henri Häkkinen429ccf02010-06-12 00:27:36 +03001589 for (; count-- > 0 && (keypad_buflen > 0);
1590 ++i, ++tmp, --keypad_buflen) {
Willy Tarreau698b1512008-11-22 11:29:33 +01001591 put_user(keypad_buffer[keypad_start], tmp);
1592 keypad_start = (keypad_start + 1) % KEYPAD_BUFFER;
1593 }
1594 *ppos = i;
Willy Tarreau7005b582008-11-13 17:18:59 -08001595
Willy Tarreau698b1512008-11-22 11:29:33 +01001596 return tmp - buf;
Willy Tarreau7005b582008-11-13 17:18:59 -08001597}
1598
Willy Tarreau698b1512008-11-22 11:29:33 +01001599static int keypad_open(struct inode *inode, struct file *file)
1600{
Willy Tarreau7005b582008-11-13 17:18:59 -08001601
Willy Tarreau698b1512008-11-22 11:29:33 +01001602 if (keypad_open_cnt)
1603 return -EBUSY; /* open only once at a time */
Willy Tarreau7005b582008-11-13 17:18:59 -08001604
Willy Tarreau698b1512008-11-22 11:29:33 +01001605 if (file->f_mode & FMODE_WRITE) /* device is read-only */
1606 return -EPERM;
Willy Tarreau7005b582008-11-13 17:18:59 -08001607
Willy Tarreau698b1512008-11-22 11:29:33 +01001608 keypad_buflen = 0; /* flush the buffer on opening */
1609 keypad_open_cnt++;
1610 return 0;
Willy Tarreau7005b582008-11-13 17:18:59 -08001611}
1612
Willy Tarreau698b1512008-11-22 11:29:33 +01001613static int keypad_release(struct inode *inode, struct file *file)
1614{
1615 keypad_open_cnt--;
1616 return 0;
Willy Tarreau7005b582008-11-13 17:18:59 -08001617}
1618
Henri Häkkinen429ccf02010-06-12 00:27:36 +03001619static const struct file_operations keypad_fops = {
Willy Tarreau698b1512008-11-22 11:29:33 +01001620 .read = keypad_read, /* read */
1621 .open = keypad_open, /* open */
1622 .release = keypad_release, /* close */
Arnd Bergmann6038f372010-08-15 18:52:59 +02001623 .llseek = default_llseek,
Willy Tarreau7005b582008-11-13 17:18:59 -08001624};
1625
1626static struct miscdevice keypad_dev = {
Willy Tarreau698b1512008-11-22 11:29:33 +01001627 KEYPAD_MINOR,
1628 "keypad",
1629 &keypad_fops
Willy Tarreau7005b582008-11-13 17:18:59 -08001630};
1631
Peter Huewe36d20412013-02-15 13:47:05 +01001632static void keypad_send_key(const char *string, int max_len)
Willy Tarreau698b1512008-11-22 11:29:33 +01001633{
1634 if (init_in_progress)
1635 return;
Willy Tarreau7005b582008-11-13 17:18:59 -08001636
Willy Tarreau698b1512008-11-22 11:29:33 +01001637 /* send the key to the device only if a process is attached to it. */
1638 if (keypad_open_cnt > 0) {
1639 while (max_len-- && keypad_buflen < KEYPAD_BUFFER && *string) {
1640 keypad_buffer[(keypad_start + keypad_buflen++) %
1641 KEYPAD_BUFFER] = *string++;
1642 }
1643 wake_up_interruptible(&keypad_read_wait);
Willy Tarreau7005b582008-11-13 17:18:59 -08001644 }
Willy Tarreau7005b582008-11-13 17:18:59 -08001645}
1646
Henri Häkkinen429ccf02010-06-12 00:27:36 +03001647/* this function scans all the bits involving at least one logical signal,
1648 * and puts the results in the bitfield "phys_read" (one bit per established
1649 * contact), and sets "phys_read_prev" to "phys_read".
Willy Tarreau7005b582008-11-13 17:18:59 -08001650 *
Henri Häkkinen429ccf02010-06-12 00:27:36 +03001651 * Note: to debounce input signals, we will only consider as switched a signal
1652 * which is stable across 2 measures. Signals which are different between two
1653 * reads will be kept as they previously were in their logical form (phys_prev).
1654 * A signal which has just switched will have a 1 in
1655 * (phys_read ^ phys_read_prev).
Willy Tarreau7005b582008-11-13 17:18:59 -08001656 */
Willy Tarreau698b1512008-11-22 11:29:33 +01001657static void phys_scan_contacts(void)
1658{
1659 int bit, bitval;
1660 char oldval;
1661 char bitmask;
1662 char gndmask;
Willy Tarreau7005b582008-11-13 17:18:59 -08001663
Willy Tarreau698b1512008-11-22 11:29:33 +01001664 phys_prev = phys_curr;
1665 phys_read_prev = phys_read;
1666 phys_read = 0; /* flush all signals */
Willy Tarreau7005b582008-11-13 17:18:59 -08001667
Henri Häkkinen429ccf02010-06-12 00:27:36 +03001668 /* keep track of old value, with all outputs disabled */
1669 oldval = r_dtr(pprt) | scan_mask_o;
1670 /* activate all keyboard outputs (active low) */
1671 w_dtr(pprt, oldval & ~scan_mask_o);
1672
1673 /* will have a 1 for each bit set to gnd */
1674 bitmask = PNL_PINPUT(r_str(pprt)) & scan_mask_i;
1675 /* disable all matrix signals */
1676 w_dtr(pprt, oldval);
Willy Tarreau7005b582008-11-13 17:18:59 -08001677
Willy Tarreau698b1512008-11-22 11:29:33 +01001678 /* now that all outputs are cleared, the only active input bits are
1679 * directly connected to the ground
Willy Tarreau7005b582008-11-13 17:18:59 -08001680 */
Willy Tarreau7005b582008-11-13 17:18:59 -08001681
Henri Häkkinen429ccf02010-06-12 00:27:36 +03001682 /* 1 for each grounded input */
1683 gndmask = PNL_PINPUT(r_str(pprt)) & scan_mask_i;
1684
1685 /* grounded inputs are signals 40-44 */
1686 phys_read |= (pmask_t) gndmask << 40;
Willy Tarreau7005b582008-11-13 17:18:59 -08001687
Willy Tarreau698b1512008-11-22 11:29:33 +01001688 if (bitmask != gndmask) {
Henri Häkkinen429ccf02010-06-12 00:27:36 +03001689 /* since clearing the outputs changed some inputs, we know
1690 * that some input signals are currently tied to some outputs.
1691 * So we'll scan them.
Willy Tarreau698b1512008-11-22 11:29:33 +01001692 */
1693 for (bit = 0; bit < 8; bit++) {
1694 bitval = 1 << bit;
1695
1696 if (!(scan_mask_o & bitval)) /* skip unused bits */
1697 continue;
1698
1699 w_dtr(pprt, oldval & ~bitval); /* enable this output */
1700 bitmask = PNL_PINPUT(r_str(pprt)) & ~gndmask;
1701 phys_read |= (pmask_t) bitmask << (5 * bit);
1702 }
1703 w_dtr(pprt, oldval); /* disable all outputs */
Willy Tarreau7005b582008-11-13 17:18:59 -08001704 }
Henri Häkkinen429ccf02010-06-12 00:27:36 +03001705 /* this is easy: use old bits when they are flapping,
1706 * use new ones when stable */
1707 phys_curr = (phys_prev & (phys_read ^ phys_read_prev)) |
1708 (phys_read & ~(phys_read ^ phys_read_prev));
1709}
1710
1711static inline int input_state_high(struct logical_input *input)
1712{
1713#if 0
1714 /* FIXME:
1715 * this is an invalid test. It tries to catch
1716 * transitions from single-key to multiple-key, but
1717 * doesn't take into account the contacts polarity.
1718 * The only solution to the problem is to parse keys
1719 * from the most complex to the simplest combinations,
1720 * and mark them as 'caught' once a combination
1721 * matches, then unmatch it for all other ones.
1722 */
1723
1724 /* try to catch dangerous transitions cases :
1725 * someone adds a bit, so this signal was a false
1726 * positive resulting from a transition. We should
1727 * invalidate the signal immediately and not call the
1728 * release function.
1729 * eg: 0 -(press A)-> A -(press B)-> AB : don't match A's release.
1730 */
1731 if (((phys_prev & input->mask) == input->value)
1732 && ((phys_curr & input->mask) > input->value)) {
1733 input->state = INPUT_ST_LOW; /* invalidate */
1734 return 1;
1735 }
1736#endif
1737
1738 if ((phys_curr & input->mask) == input->value) {
1739 if ((input->type == INPUT_TYPE_STD) &&
1740 (input->high_timer == 0)) {
1741 input->high_timer++;
1742 if (input->u.std.press_fct != NULL)
1743 input->u.std.press_fct(input->u.std.press_data);
1744 } else if (input->type == INPUT_TYPE_KBD) {
1745 /* will turn on the light */
1746 keypressed = 1;
1747
1748 if (input->high_timer == 0) {
1749 char *press_str = input->u.kbd.press_str;
Jake Champline6626de2013-05-04 11:21:17 -04001750 if (press_str[0]) {
1751 int s = sizeof(input->u.kbd.press_str);
1752 keypad_send_key(press_str, s);
1753 }
Henri Häkkinen429ccf02010-06-12 00:27:36 +03001754 }
1755
1756 if (input->u.kbd.repeat_str[0]) {
1757 char *repeat_str = input->u.kbd.repeat_str;
1758 if (input->high_timer >= KEYPAD_REP_START) {
Jake Champline6626de2013-05-04 11:21:17 -04001759 int s = sizeof(input->u.kbd.repeat_str);
Henri Häkkinen429ccf02010-06-12 00:27:36 +03001760 input->high_timer -= KEYPAD_REP_DELAY;
Jake Champline6626de2013-05-04 11:21:17 -04001761 keypad_send_key(repeat_str, s);
Henri Häkkinen429ccf02010-06-12 00:27:36 +03001762 }
1763 /* we will need to come back here soon */
1764 inputs_stable = 0;
1765 }
1766
1767 if (input->high_timer < 255)
1768 input->high_timer++;
1769 }
1770 return 1;
1771 } else {
1772 /* else signal falling down. Let's fall through. */
1773 input->state = INPUT_ST_FALLING;
1774 input->fall_timer = 0;
1775 }
1776 return 0;
1777}
1778
1779static inline void input_state_falling(struct logical_input *input)
1780{
1781#if 0
1782 /* FIXME !!! same comment as in input_state_high */
1783 if (((phys_prev & input->mask) == input->value)
1784 && ((phys_curr & input->mask) > input->value)) {
1785 input->state = INPUT_ST_LOW; /* invalidate */
1786 return;
1787 }
1788#endif
1789
1790 if ((phys_curr & input->mask) == input->value) {
1791 if (input->type == INPUT_TYPE_KBD) {
1792 /* will turn on the light */
1793 keypressed = 1;
1794
1795 if (input->u.kbd.repeat_str[0]) {
1796 char *repeat_str = input->u.kbd.repeat_str;
Jake Champline6626de2013-05-04 11:21:17 -04001797 if (input->high_timer >= KEYPAD_REP_START) {
1798 int s = sizeof(input->u.kbd.repeat_str);
Henri Häkkinen429ccf02010-06-12 00:27:36 +03001799 input->high_timer -= KEYPAD_REP_DELAY;
Jake Champline6626de2013-05-04 11:21:17 -04001800 keypad_send_key(repeat_str, s);
1801 }
Henri Häkkinen429ccf02010-06-12 00:27:36 +03001802 /* we will need to come back here soon */
1803 inputs_stable = 0;
1804 }
1805
1806 if (input->high_timer < 255)
1807 input->high_timer++;
1808 }
1809 input->state = INPUT_ST_HIGH;
1810 } else if (input->fall_timer >= input->fall_time) {
1811 /* call release event */
1812 if (input->type == INPUT_TYPE_STD) {
1813 void (*release_fct)(int) = input->u.std.release_fct;
1814 if (release_fct != NULL)
1815 release_fct(input->u.std.release_data);
1816 } else if (input->type == INPUT_TYPE_KBD) {
1817 char *release_str = input->u.kbd.release_str;
Jake Champline6626de2013-05-04 11:21:17 -04001818 if (release_str[0]) {
1819 int s = sizeof(input->u.kbd.release_str);
1820 keypad_send_key(release_str, s);
1821 }
Henri Häkkinen429ccf02010-06-12 00:27:36 +03001822 }
1823
1824 input->state = INPUT_ST_LOW;
1825 } else {
1826 input->fall_timer++;
1827 inputs_stable = 0;
1828 }
Willy Tarreau7005b582008-11-13 17:18:59 -08001829}
1830
Willy Tarreau698b1512008-11-22 11:29:33 +01001831static void panel_process_inputs(void)
1832{
1833 struct list_head *item;
1834 struct logical_input *input;
Willy Tarreau7005b582008-11-13 17:18:59 -08001835
Willy Tarreau698b1512008-11-22 11:29:33 +01001836 keypressed = 0;
1837 inputs_stable = 1;
1838 list_for_each(item, &logical_inputs) {
1839 input = list_entry(item, struct logical_input, list);
Willy Tarreau7005b582008-11-13 17:18:59 -08001840
Willy Tarreau698b1512008-11-22 11:29:33 +01001841 switch (input->state) {
1842 case INPUT_ST_LOW:
1843 if ((phys_curr & input->mask) != input->value)
1844 break;
Henri Häkkinen429ccf02010-06-12 00:27:36 +03001845 /* if all needed ones were already set previously,
1846 * this means that this logical signal has been
1847 * activated by the releasing of another combined
1848 * signal, so we don't want to match.
1849 * eg: AB -(release B)-> A -(release A)-> 0 :
1850 * don't match A.
Willy Tarreau698b1512008-11-22 11:29:33 +01001851 */
1852 if ((phys_prev & input->mask) == input->value)
1853 break;
1854 input->rise_timer = 0;
1855 input->state = INPUT_ST_RISING;
1856 /* no break here, fall through */
1857 case INPUT_ST_RISING:
1858 if ((phys_curr & input->mask) != input->value) {
1859 input->state = INPUT_ST_LOW;
1860 break;
Willy Tarreau7005b582008-11-13 17:18:59 -08001861 }
Willy Tarreau698b1512008-11-22 11:29:33 +01001862 if (input->rise_timer < input->rise_time) {
1863 inputs_stable = 0;
1864 input->rise_timer++;
1865 break;
1866 }
1867 input->high_timer = 0;
1868 input->state = INPUT_ST_HIGH;
1869 /* no break here, fall through */
1870 case INPUT_ST_HIGH:
Henri Häkkinen429ccf02010-06-12 00:27:36 +03001871 if (input_state_high(input))
Willy Tarreau698b1512008-11-22 11:29:33 +01001872 break;
Willy Tarreau698b1512008-11-22 11:29:33 +01001873 /* no break here, fall through */
1874 case INPUT_ST_FALLING:
Henri Häkkinen429ccf02010-06-12 00:27:36 +03001875 input_state_falling(input);
Willy Tarreau698b1512008-11-22 11:29:33 +01001876 }
Willy Tarreau7005b582008-11-13 17:18:59 -08001877 }
Willy Tarreau7005b582008-11-13 17:18:59 -08001878}
1879
Willy Tarreau698b1512008-11-22 11:29:33 +01001880static void panel_scan_timer(void)
1881{
Willy Tarreau630231772008-11-22 12:52:18 +01001882 if (keypad_enabled && keypad_initialized) {
Fengguang Wud4d2dbc2012-09-09 16:23:46 +08001883 if (spin_trylock_irq(&pprt_lock)) {
Willy Tarreau698b1512008-11-22 11:29:33 +01001884 phys_scan_contacts();
Henri Häkkinen429ccf02010-06-12 00:27:36 +03001885
1886 /* no need for the parport anymore */
Fengguang Wud4d2dbc2012-09-09 16:23:46 +08001887 spin_unlock_irq(&pprt_lock);
Willy Tarreau698b1512008-11-22 11:29:33 +01001888 }
Willy Tarreau7005b582008-11-13 17:18:59 -08001889
Willy Tarreau698b1512008-11-22 11:29:33 +01001890 if (!inputs_stable || phys_curr != phys_prev)
1891 panel_process_inputs();
1892 }
Willy Tarreau7005b582008-11-13 17:18:59 -08001893
Willy Tarreau698b1512008-11-22 11:29:33 +01001894 if (lcd_enabled && lcd_initialized) {
1895 if (keypressed) {
1896 if (light_tempo == 0 && ((lcd_flags & LCD_FLAG_L) == 0))
1897 lcd_backlight(1);
1898 light_tempo = FLASH_LIGHT_TEMPO;
1899 } else if (light_tempo > 0) {
1900 light_tempo--;
1901 if (light_tempo == 0 && ((lcd_flags & LCD_FLAG_L) == 0))
1902 lcd_backlight(0);
1903 }
1904 }
Willy Tarreau7005b582008-11-13 17:18:59 -08001905
Willy Tarreau698b1512008-11-22 11:29:33 +01001906 mod_timer(&scan_timer, jiffies + INPUT_POLL_TIME);
Willy Tarreau7005b582008-11-13 17:18:59 -08001907}
1908
Willy Tarreau698b1512008-11-22 11:29:33 +01001909static void init_scan_timer(void)
1910{
1911 if (scan_timer.function != NULL)
1912 return; /* already started */
Willy Tarreau7005b582008-11-13 17:18:59 -08001913
Willy Tarreau698b1512008-11-22 11:29:33 +01001914 init_timer(&scan_timer);
1915 scan_timer.expires = jiffies + INPUT_POLL_TIME;
1916 scan_timer.data = 0;
1917 scan_timer.function = (void *)&panel_scan_timer;
1918 add_timer(&scan_timer);
Willy Tarreau7005b582008-11-13 17:18:59 -08001919}
1920
1921/* converts a name of the form "({BbAaPpSsEe}{01234567-})*" to a series of bits.
Henri Häkkinen429ccf02010-06-12 00:27:36 +03001922 * if <omask> or <imask> are non-null, they will be or'ed with the bits
1923 * corresponding to out and in bits respectively.
Willy Tarreau7005b582008-11-13 17:18:59 -08001924 * returns 1 if ok, 0 if error (in which case, nothing is written).
1925 */
Peter Huewe36d20412013-02-15 13:47:05 +01001926static int input_name2mask(const char *name, pmask_t *mask, pmask_t *value,
Willy Tarreau698b1512008-11-22 11:29:33 +01001927 char *imask, char *omask)
1928{
1929 static char sigtab[10] = "EeSsPpAaBb";
1930 char im, om;
1931 pmask_t m, v;
Willy Tarreau7005b582008-11-13 17:18:59 -08001932
Willy Tarreau698b1512008-11-22 11:29:33 +01001933 om = im = m = v = 0ULL;
1934 while (*name) {
1935 int in, out, bit, neg;
Henri Häkkinen429ccf02010-06-12 00:27:36 +03001936 for (in = 0; (in < sizeof(sigtab)) &&
1937 (sigtab[in] != *name); in++)
Willy Tarreau698b1512008-11-22 11:29:33 +01001938 ;
1939 if (in >= sizeof(sigtab))
1940 return 0; /* input name not found */
1941 neg = (in & 1); /* odd (lower) names are negated */
1942 in >>= 1;
1943 im |= (1 << in);
Willy Tarreau7005b582008-11-13 17:18:59 -08001944
Willy Tarreau698b1512008-11-22 11:29:33 +01001945 name++;
1946 if (isdigit(*name)) {
1947 out = *name - '0';
1948 om |= (1 << out);
1949 } else if (*name == '-')
1950 out = 8;
1951 else
1952 return 0; /* unknown bit name */
1953
1954 bit = (out * 5) + in;
1955
1956 m |= 1ULL << bit;
1957 if (!neg)
1958 v |= 1ULL << bit;
1959 name++;
Willy Tarreau7005b582008-11-13 17:18:59 -08001960 }
Willy Tarreau698b1512008-11-22 11:29:33 +01001961 *mask = m;
1962 *value = v;
1963 if (imask)
1964 *imask |= im;
1965 if (omask)
1966 *omask |= om;
1967 return 1;
Willy Tarreau7005b582008-11-13 17:18:59 -08001968}
1969
1970/* tries to bind a key to the signal name <name>. The key will send the
1971 * strings <press>, <repeat>, <release> for these respective events.
1972 * Returns the pointer to the new key if ok, NULL if the key could not be bound.
1973 */
Peter Huewe36d20412013-02-15 13:47:05 +01001974static struct logical_input *panel_bind_key(const char *name, const char *press,
1975 const char *repeat,
1976 const char *release)
Willy Tarreau698b1512008-11-22 11:29:33 +01001977{
1978 struct logical_input *key;
Willy Tarreau7005b582008-11-13 17:18:59 -08001979
Julia Lawall7a6cb0d2010-05-13 22:00:05 +02001980 key = kzalloc(sizeof(struct logical_input), GFP_KERNEL);
Toshiaki Yamaneeb073a92012-07-12 22:01:17 +09001981 if (!key)
Willy Tarreau698b1512008-11-22 11:29:33 +01001982 return NULL;
Toshiaki Yamaneeb073a92012-07-12 22:01:17 +09001983
Willy Tarreau698b1512008-11-22 11:29:33 +01001984 if (!input_name2mask(name, &key->mask, &key->value, &scan_mask_i,
Kulikov Vasiliycb46f472010-07-12 18:48:24 +04001985 &scan_mask_o)) {
1986 kfree(key);
Willy Tarreau698b1512008-11-22 11:29:33 +01001987 return NULL;
Kulikov Vasiliycb46f472010-07-12 18:48:24 +04001988 }
Willy Tarreau698b1512008-11-22 11:29:33 +01001989
1990 key->type = INPUT_TYPE_KBD;
1991 key->state = INPUT_ST_LOW;
1992 key->rise_time = 1;
1993 key->fall_time = 1;
Willy Tarreau7005b582008-11-13 17:18:59 -08001994
Willy Tarreau698b1512008-11-22 11:29:33 +01001995 strncpy(key->u.kbd.press_str, press, sizeof(key->u.kbd.press_str));
1996 strncpy(key->u.kbd.repeat_str, repeat, sizeof(key->u.kbd.repeat_str));
1997 strncpy(key->u.kbd.release_str, release,
1998 sizeof(key->u.kbd.release_str));
1999 list_add(&key->list, &logical_inputs);
2000 return key;
Willy Tarreau7005b582008-11-13 17:18:59 -08002001}
2002
Willy Tarreau630231772008-11-22 12:52:18 +01002003#if 0
Willy Tarreau7005b582008-11-13 17:18:59 -08002004/* tries to bind a callback function to the signal name <name>. The function
2005 * <press_fct> will be called with the <press_data> arg when the signal is
2006 * activated, and so on for <release_fct>/<release_data>
Henri Häkkinen429ccf02010-06-12 00:27:36 +03002007 * Returns the pointer to the new signal if ok, NULL if the signal could not
2008 * be bound.
Willy Tarreau7005b582008-11-13 17:18:59 -08002009 */
2010static struct logical_input *panel_bind_callback(char *name,
Monam Agarwal68d386b2014-02-25 19:40:49 +05302011 void (*press_fct)(int),
Willy Tarreau698b1512008-11-22 11:29:33 +01002012 int press_data,
Monam Agarwal68d386b2014-02-25 19:40:49 +05302013 void (*release_fct)(int),
Willy Tarreau698b1512008-11-22 11:29:33 +01002014 int release_data)
2015{
2016 struct logical_input *callback;
Willy Tarreau7005b582008-11-13 17:18:59 -08002017
Willy Tarreau698b1512008-11-22 11:29:33 +01002018 callback = kmalloc(sizeof(struct logical_input), GFP_KERNEL);
Toshiaki Yamaneeb073a92012-07-12 22:01:17 +09002019 if (!callback)
Willy Tarreau698b1512008-11-22 11:29:33 +01002020 return NULL;
Toshiaki Yamaneeb073a92012-07-12 22:01:17 +09002021
Willy Tarreau698b1512008-11-22 11:29:33 +01002022 memset(callback, 0, sizeof(struct logical_input));
2023 if (!input_name2mask(name, &callback->mask, &callback->value,
2024 &scan_mask_i, &scan_mask_o))
2025 return NULL;
2026
2027 callback->type = INPUT_TYPE_STD;
2028 callback->state = INPUT_ST_LOW;
2029 callback->rise_time = 1;
2030 callback->fall_time = 1;
2031 callback->u.std.press_fct = press_fct;
2032 callback->u.std.press_data = press_data;
2033 callback->u.std.release_fct = release_fct;
2034 callback->u.std.release_data = release_data;
2035 list_add(&callback->list, &logical_inputs);
2036 return callback;
Willy Tarreau7005b582008-11-13 17:18:59 -08002037}
Willy Tarreau630231772008-11-22 12:52:18 +01002038#endif
Willy Tarreau7005b582008-11-13 17:18:59 -08002039
Willy Tarreau698b1512008-11-22 11:29:33 +01002040static void keypad_init(void)
2041{
2042 int keynum;
2043 init_waitqueue_head(&keypad_read_wait);
2044 keypad_buflen = 0; /* flushes any eventual noisy keystroke */
Willy Tarreau7005b582008-11-13 17:18:59 -08002045
Willy Tarreau698b1512008-11-22 11:29:33 +01002046 /* Let's create all known keys */
Willy Tarreau7005b582008-11-13 17:18:59 -08002047
Willy Tarreau698b1512008-11-22 11:29:33 +01002048 for (keynum = 0; keypad_profile[keynum][0][0]; keynum++) {
2049 panel_bind_key(keypad_profile[keynum][0],
2050 keypad_profile[keynum][1],
2051 keypad_profile[keynum][2],
2052 keypad_profile[keynum][3]);
2053 }
Willy Tarreau7005b582008-11-13 17:18:59 -08002054
Willy Tarreau698b1512008-11-22 11:29:33 +01002055 init_scan_timer();
2056 keypad_initialized = 1;
Willy Tarreau7005b582008-11-13 17:18:59 -08002057}
2058
Willy Tarreau7005b582008-11-13 17:18:59 -08002059/**************************************************/
2060/* device initialization */
2061/**************************************************/
2062
Willy Tarreau698b1512008-11-22 11:29:33 +01002063static int panel_notify_sys(struct notifier_block *this, unsigned long code,
2064 void *unused)
2065{
2066 if (lcd_enabled && lcd_initialized) {
2067 switch (code) {
2068 case SYS_DOWN:
2069 panel_lcd_print
2070 ("\x0cReloading\nSystem...\x1b[Lc\x1b[Lb\x1b[L+");
2071 break;
2072 case SYS_HALT:
2073 panel_lcd_print
2074 ("\x0cSystem Halted.\x1b[Lc\x1b[Lb\x1b[L+");
2075 break;
2076 case SYS_POWER_OFF:
2077 panel_lcd_print("\x0cPower off.\x1b[Lc\x1b[Lb\x1b[L+");
2078 break;
2079 default:
2080 break;
2081 }
Willy Tarreau7005b582008-11-13 17:18:59 -08002082 }
Willy Tarreau698b1512008-11-22 11:29:33 +01002083 return NOTIFY_DONE;
Willy Tarreau7005b582008-11-13 17:18:59 -08002084}
2085
2086static struct notifier_block panel_notifier = {
2087 panel_notify_sys,
2088 NULL,
2089 0
2090};
2091
Willy Tarreau698b1512008-11-22 11:29:33 +01002092static void panel_attach(struct parport *port)
Willy Tarreau7005b582008-11-13 17:18:59 -08002093{
Willy Tarreau698b1512008-11-22 11:29:33 +01002094 if (port->number != parport)
2095 return;
Willy Tarreau7005b582008-11-13 17:18:59 -08002096
Willy Tarreau698b1512008-11-22 11:29:33 +01002097 if (pprt) {
Toshiaki Yamaneeb073a92012-07-12 22:01:17 +09002098 pr_err("%s: port->number=%d parport=%d, already registered!\n",
2099 __func__, port->number, parport);
Willy Tarreau698b1512008-11-22 11:29:33 +01002100 return;
2101 }
Willy Tarreau7005b582008-11-13 17:18:59 -08002102
Henri Häkkinen429ccf02010-06-12 00:27:36 +03002103 pprt = parport_register_device(port, "panel", NULL, NULL, /* pf, kf */
Willy Tarreau698b1512008-11-22 11:29:33 +01002104 NULL,
2105 /*PARPORT_DEV_EXCL */
2106 0, (void *)&pprt);
Kulikov Vasiliy10f3f5b2010-07-30 15:08:20 +04002107 if (pprt == NULL) {
Toshiaki Yamaneeb073a92012-07-12 22:01:17 +09002108 pr_err("%s: port->number=%d parport=%d, parport_register_device() failed\n",
2109 __func__, port->number, parport);
Kulikov Vasiliy10f3f5b2010-07-30 15:08:20 +04002110 return;
2111 }
Willy Tarreau7005b582008-11-13 17:18:59 -08002112
Willy Tarreau698b1512008-11-22 11:29:33 +01002113 if (parport_claim(pprt)) {
Toshiaki Yamaneeb073a92012-07-12 22:01:17 +09002114 pr_err("could not claim access to parport%d. Aborting.\n",
2115 parport);
Kulikov Vasiliy10f3f5b2010-07-30 15:08:20 +04002116 goto err_unreg_device;
Willy Tarreau698b1512008-11-22 11:29:33 +01002117 }
Willy Tarreau7005b582008-11-13 17:18:59 -08002118
Henri Häkkinen429ccf02010-06-12 00:27:36 +03002119 /* must init LCD first, just in case an IRQ from the keypad is
2120 * generated at keypad init
2121 */
Willy Tarreau698b1512008-11-22 11:29:33 +01002122 if (lcd_enabled) {
2123 lcd_init();
Kulikov Vasiliy10f3f5b2010-07-30 15:08:20 +04002124 if (misc_register(&lcd_dev))
2125 goto err_unreg_device;
Willy Tarreau698b1512008-11-22 11:29:33 +01002126 }
Willy Tarreau7005b582008-11-13 17:18:59 -08002127
Willy Tarreau698b1512008-11-22 11:29:33 +01002128 if (keypad_enabled) {
2129 keypad_init();
Kulikov Vasiliy10f3f5b2010-07-30 15:08:20 +04002130 if (misc_register(&keypad_dev))
2131 goto err_lcd_unreg;
Willy Tarreau698b1512008-11-22 11:29:33 +01002132 }
Kulikov Vasiliy10f3f5b2010-07-30 15:08:20 +04002133 return;
2134
2135err_lcd_unreg:
2136 if (lcd_enabled)
2137 misc_deregister(&lcd_dev);
2138err_unreg_device:
2139 parport_unregister_device(pprt);
2140 pprt = NULL;
Willy Tarreau7005b582008-11-13 17:18:59 -08002141}
2142
Willy Tarreau698b1512008-11-22 11:29:33 +01002143static void panel_detach(struct parport *port)
Willy Tarreau7005b582008-11-13 17:18:59 -08002144{
Willy Tarreau698b1512008-11-22 11:29:33 +01002145 if (port->number != parport)
2146 return;
Willy Tarreau7005b582008-11-13 17:18:59 -08002147
Willy Tarreau698b1512008-11-22 11:29:33 +01002148 if (!pprt) {
Toshiaki Yamaneeb073a92012-07-12 22:01:17 +09002149 pr_err("%s: port->number=%d parport=%d, nothing to unregister.\n",
2150 __func__, port->number, parport);
Willy Tarreau698b1512008-11-22 11:29:33 +01002151 return;
2152 }
Willy Tarreau7005b582008-11-13 17:18:59 -08002153
Peter Huewe0b0595b2009-09-29 01:22:40 +02002154 if (keypad_enabled && keypad_initialized) {
Willy Tarreau698b1512008-11-22 11:29:33 +01002155 misc_deregister(&keypad_dev);
Peter Huewe0b0595b2009-09-29 01:22:40 +02002156 keypad_initialized = 0;
2157 }
Willy Tarreau7005b582008-11-13 17:18:59 -08002158
Peter Huewe0b0595b2009-09-29 01:22:40 +02002159 if (lcd_enabled && lcd_initialized) {
Willy Tarreau698b1512008-11-22 11:29:33 +01002160 misc_deregister(&lcd_dev);
Peter Huewe0b0595b2009-09-29 01:22:40 +02002161 lcd_initialized = 0;
2162 }
Willy Tarreau7005b582008-11-13 17:18:59 -08002163
Willy Tarreau698b1512008-11-22 11:29:33 +01002164 parport_release(pprt);
2165 parport_unregister_device(pprt);
2166 pprt = NULL;
Willy Tarreau7005b582008-11-13 17:18:59 -08002167}
2168
2169static struct parport_driver panel_driver = {
Willy Tarreau698b1512008-11-22 11:29:33 +01002170 .name = "panel",
2171 .attach = panel_attach,
2172 .detach = panel_detach,
Willy Tarreau7005b582008-11-13 17:18:59 -08002173};
2174
2175/* init function */
Peter Huewe36d20412013-02-15 13:47:05 +01002176static int panel_init(void)
Willy Tarreau698b1512008-11-22 11:29:33 +01002177{
2178 /* for backwards compatibility */
2179 if (keypad_type < 0)
2180 keypad_type = keypad_enabled;
Willy Tarreau7005b582008-11-13 17:18:59 -08002181
Willy Tarreau698b1512008-11-22 11:29:33 +01002182 if (lcd_type < 0)
2183 lcd_type = lcd_enabled;
Willy Tarreau7005b582008-11-13 17:18:59 -08002184
Willy Tarreau698b1512008-11-22 11:29:33 +01002185 if (parport < 0)
2186 parport = DEFAULT_PARPORT;
Willy Tarreau7005b582008-11-13 17:18:59 -08002187
Willy Tarreau698b1512008-11-22 11:29:33 +01002188 /* take care of an eventual profile */
2189 switch (profile) {
Henri Häkkinen429ccf02010-06-12 00:27:36 +03002190 case PANEL_PROFILE_CUSTOM:
2191 /* custom profile */
Willy Tarreau698b1512008-11-22 11:29:33 +01002192 if (keypad_type < 0)
2193 keypad_type = DEFAULT_KEYPAD;
Willy Tarreau698b1512008-11-22 11:29:33 +01002194 if (lcd_type < 0)
2195 lcd_type = DEFAULT_LCD;
2196 break;
Henri Häkkinen429ccf02010-06-12 00:27:36 +03002197 case PANEL_PROFILE_OLD:
2198 /* 8 bits, 2*16, old keypad */
Willy Tarreau698b1512008-11-22 11:29:33 +01002199 if (keypad_type < 0)
2200 keypad_type = KEYPAD_TYPE_OLD;
Willy Tarreau698b1512008-11-22 11:29:33 +01002201 if (lcd_type < 0)
2202 lcd_type = LCD_TYPE_OLD;
2203 if (lcd_width < 0)
2204 lcd_width = 16;
2205 if (lcd_hwidth < 0)
2206 lcd_hwidth = 16;
2207 break;
Henri Häkkinen429ccf02010-06-12 00:27:36 +03002208 case PANEL_PROFILE_NEW:
2209 /* serial, 2*16, new keypad */
Willy Tarreau698b1512008-11-22 11:29:33 +01002210 if (keypad_type < 0)
2211 keypad_type = KEYPAD_TYPE_NEW;
Willy Tarreau698b1512008-11-22 11:29:33 +01002212 if (lcd_type < 0)
2213 lcd_type = LCD_TYPE_KS0074;
2214 break;
Henri Häkkinen429ccf02010-06-12 00:27:36 +03002215 case PANEL_PROFILE_HANTRONIX:
2216 /* 8 bits, 2*16 hantronix-like, no keypad */
Willy Tarreau698b1512008-11-22 11:29:33 +01002217 if (keypad_type < 0)
2218 keypad_type = KEYPAD_TYPE_NONE;
Willy Tarreau698b1512008-11-22 11:29:33 +01002219 if (lcd_type < 0)
2220 lcd_type = LCD_TYPE_HANTRONIX;
2221 break;
Henri Häkkinen429ccf02010-06-12 00:27:36 +03002222 case PANEL_PROFILE_NEXCOM:
2223 /* generic 8 bits, 2*16, nexcom keypad, eg. Nexcom. */
Willy Tarreau698b1512008-11-22 11:29:33 +01002224 if (keypad_type < 0)
2225 keypad_type = KEYPAD_TYPE_NEXCOM;
Willy Tarreau698b1512008-11-22 11:29:33 +01002226 if (lcd_type < 0)
2227 lcd_type = LCD_TYPE_NEXCOM;
2228 break;
Henri Häkkinen429ccf02010-06-12 00:27:36 +03002229 case PANEL_PROFILE_LARGE:
2230 /* 8 bits, 2*40, old keypad */
Willy Tarreau698b1512008-11-22 11:29:33 +01002231 if (keypad_type < 0)
2232 keypad_type = KEYPAD_TYPE_OLD;
Willy Tarreau698b1512008-11-22 11:29:33 +01002233 if (lcd_type < 0)
2234 lcd_type = LCD_TYPE_OLD;
2235 break;
Willy Tarreau7005b582008-11-13 17:18:59 -08002236 }
Willy Tarreau7005b582008-11-13 17:18:59 -08002237
Willy Tarreau698b1512008-11-22 11:29:33 +01002238 lcd_enabled = (lcd_type > 0);
2239 keypad_enabled = (keypad_type > 0);
Willy Tarreau7005b582008-11-13 17:18:59 -08002240
Willy Tarreau698b1512008-11-22 11:29:33 +01002241 switch (keypad_type) {
2242 case KEYPAD_TYPE_OLD:
2243 keypad_profile = old_keypad_profile;
2244 break;
2245 case KEYPAD_TYPE_NEW:
2246 keypad_profile = new_keypad_profile;
2247 break;
2248 case KEYPAD_TYPE_NEXCOM:
2249 keypad_profile = nexcom_keypad_profile;
2250 break;
2251 default:
2252 keypad_profile = NULL;
2253 break;
2254 }
2255
2256 /* tells various subsystems about the fact that we are initializing */
2257 init_in_progress = 1;
2258
2259 if (parport_register_driver(&panel_driver)) {
Toshiaki Yamaneeb073a92012-07-12 22:01:17 +09002260 pr_err("could not register with parport. Aborting.\n");
Willy Tarreau698b1512008-11-22 11:29:33 +01002261 return -EIO;
2262 }
2263
Willy Tarreau630231772008-11-22 12:52:18 +01002264 if (!lcd_enabled && !keypad_enabled) {
2265 /* no device enabled, let's release the parport */
Willy Tarreau698b1512008-11-22 11:29:33 +01002266 if (pprt) {
2267 parport_release(pprt);
2268 parport_unregister_device(pprt);
Peter Huewe060132a2010-07-07 04:52:16 +02002269 pprt = NULL;
Willy Tarreau698b1512008-11-22 11:29:33 +01002270 }
2271 parport_unregister_driver(&panel_driver);
Toshiaki Yamaneeb073a92012-07-12 22:01:17 +09002272 pr_err("driver version " PANEL_VERSION " disabled.\n");
Willy Tarreau698b1512008-11-22 11:29:33 +01002273 return -ENODEV;
2274 }
2275
2276 register_reboot_notifier(&panel_notifier);
2277
2278 if (pprt)
Toshiaki Yamane493aa892012-07-12 22:01:00 +09002279 pr_info("driver version " PANEL_VERSION
2280 " registered on parport%d (io=0x%lx).\n", parport,
2281 pprt->port->base);
Willy Tarreau698b1512008-11-22 11:29:33 +01002282 else
Toshiaki Yamane493aa892012-07-12 22:01:00 +09002283 pr_info("driver version " PANEL_VERSION
2284 " not yet registered\n");
Henri Häkkinen429ccf02010-06-12 00:27:36 +03002285 /* tells various subsystems about the fact that initialization
2286 is finished */
Willy Tarreau698b1512008-11-22 11:29:33 +01002287 init_in_progress = 0;
2288 return 0;
Willy Tarreau7005b582008-11-13 17:18:59 -08002289}
2290
Willy Tarreauf6d1fcf2008-11-22 12:04:19 +01002291static int __init panel_init_module(void)
Willy Tarreau698b1512008-11-22 11:29:33 +01002292{
2293 return panel_init();
Willy Tarreau7005b582008-11-13 17:18:59 -08002294}
2295
Willy Tarreauf6d1fcf2008-11-22 12:04:19 +01002296static void __exit panel_cleanup_module(void)
Willy Tarreau698b1512008-11-22 11:29:33 +01002297{
2298 unregister_reboot_notifier(&panel_notifier);
Willy Tarreau7005b582008-11-13 17:18:59 -08002299
Willy Tarreau698b1512008-11-22 11:29:33 +01002300 if (scan_timer.function != NULL)
2301 del_timer(&scan_timer);
Willy Tarreau7005b582008-11-13 17:18:59 -08002302
Costantino Leandro57898132009-02-17 11:10:48 -05002303 if (pprt != NULL) {
Peter Huewe0b0595b2009-09-29 01:22:40 +02002304 if (keypad_enabled) {
Costantino Leandro57898132009-02-17 11:10:48 -05002305 misc_deregister(&keypad_dev);
Peter Huewe0b0595b2009-09-29 01:22:40 +02002306 keypad_initialized = 0;
2307 }
Willy Tarreau7005b582008-11-13 17:18:59 -08002308
Costantino Leandro57898132009-02-17 11:10:48 -05002309 if (lcd_enabled) {
2310 panel_lcd_print("\x0cLCD driver " PANEL_VERSION
2311 "\nunloaded.\x1b[Lc\x1b[Lb\x1b[L-");
2312 misc_deregister(&lcd_dev);
Peter Huewe0b0595b2009-09-29 01:22:40 +02002313 lcd_initialized = 0;
Costantino Leandro57898132009-02-17 11:10:48 -05002314 }
2315
2316 /* TODO: free all input signals */
2317 parport_release(pprt);
2318 parport_unregister_device(pprt);
Peter Huewe060132a2010-07-07 04:52:16 +02002319 pprt = NULL;
Willy Tarreau698b1512008-11-22 11:29:33 +01002320 }
Willy Tarreau698b1512008-11-22 11:29:33 +01002321 parport_unregister_driver(&panel_driver);
Willy Tarreau7005b582008-11-13 17:18:59 -08002322}
Willy Tarreau7005b582008-11-13 17:18:59 -08002323
Willy Tarreau7005b582008-11-13 17:18:59 -08002324module_init(panel_init_module);
2325module_exit(panel_cleanup_module);
2326MODULE_AUTHOR("Willy Tarreau");
2327MODULE_LICENSE("GPL");
Willy Tarreau7005b582008-11-13 17:18:59 -08002328
2329/*
2330 * Local variables:
2331 * c-indent-level: 4
2332 * tab-width: 8
2333 * End:
2334 */