blob: ec5e8800f8adf18ad0f645747d991abb518a2659 [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>
Geert Uytterhoeven39f8ea42017-03-10 15:15:17 +01004 * Copyright (C) 2016-2017 Glider bvba
Willy Tarreau7005b582008-11-13 17:18:59 -08005 *
Willy Tarreau698b1512008-11-22 11:29:33 +01006 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
Willy Tarreau7005b582008-11-13 17:18:59 -080010 *
Willy Tarreau698b1512008-11-22 11:29:33 +010011 * This code drives an LCD module (/dev/lcd), and a keypad (/dev/keypad)
12 * connected to a parallel printer port.
Willy Tarreau7005b582008-11-13 17:18:59 -080013 *
Willy Tarreau698b1512008-11-22 11:29:33 +010014 * The LCD module may either be an HD44780-like 8-bit parallel LCD, or a 1-bit
15 * serial module compatible with Samsung's KS0074. The pins may be connected in
16 * any combination, everything is programmable.
Willy Tarreau7005b582008-11-13 17:18:59 -080017 *
Willy Tarreau698b1512008-11-22 11:29:33 +010018 * The keypad consists in a matrix of push buttons connecting input pins to
19 * data output pins or to the ground. The combinations have to be hard-coded
20 * in the driver, though several profiles exist and adding new ones is easy.
Willy Tarreau7005b582008-11-13 17:18:59 -080021 *
Willy Tarreau698b1512008-11-22 11:29:33 +010022 * Several profiles are provided for commonly found LCD+keypad modules on the
23 * market, such as those found in Nexcom's appliances.
Willy Tarreau7005b582008-11-13 17:18:59 -080024 *
25 * FIXME:
26 * - the initialization/deinitialization process is very dirty and should
27 * be rewritten. It may even be buggy.
28 *
29 * TODO:
30 * - document 24 keys keyboard (3 rows of 8 cols, 32 diodes + 2 inputs)
31 * - make the LCD a part of a virtual screen of Vx*Vy
32 * - make the inputs list smp-safe
33 * - change the keyboard to a double mapping : signals -> key_id -> values
34 * so that applications can change values without knowing signals
35 *
36 */
37
Toshiaki Yamane493aa892012-07-12 22:01:00 +090038#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
39
Willy Tarreau7005b582008-11-13 17:18:59 -080040#include <linux/module.h>
41
42#include <linux/types.h>
43#include <linux/errno.h>
44#include <linux/signal.h>
45#include <linux/sched.h>
46#include <linux/spinlock.h>
Willy Tarreau7005b582008-11-13 17:18:59 -080047#include <linux/interrupt.h>
48#include <linux/miscdevice.h>
Willy Tarreau698b1512008-11-22 11:29:33 +010049#include <linux/slab.h>
Willy Tarreau7005b582008-11-13 17:18:59 -080050#include <linux/ioport.h>
51#include <linux/fcntl.h>
52#include <linux/init.h>
53#include <linux/delay.h>
Andy Shevchenkod85170e2010-07-22 19:57:08 +030054#include <linux/kernel.h>
Willy Tarreau7005b582008-11-13 17:18:59 -080055#include <linux/ctype.h>
56#include <linux/parport.h>
Willy Tarreau7005b582008-11-13 17:18:59 -080057#include <linux/list.h>
Willy Tarreau7005b582008-11-13 17:18:59 -080058
Willy Tarreau698b1512008-11-22 11:29:33 +010059#include <linux/io.h>
Takanori Suzuki48f658b2010-05-08 22:56:24 +090060#include <linux/uaccess.h>
Willy Tarreau7005b582008-11-13 17:18:59 -080061
Geert Uytterhoeven39f8ea42017-03-10 15:15:17 +010062#include <misc/charlcd.h>
63
Willy Tarreau7005b582008-11-13 17:18:59 -080064#define KEYPAD_MINOR 185
Willy Tarreau7005b582008-11-13 17:18:59 -080065
Willy Tarreau7005b582008-11-13 17:18:59 -080066#define LCD_MAXBYTES 256 /* max burst write */
67
Willy Tarreau7005b582008-11-13 17:18:59 -080068#define KEYPAD_BUFFER 64
Willy Tarreau7005b582008-11-13 17:18:59 -080069
Henri Häkkinen429ccf02010-06-12 00:27:36 +030070/* poll the keyboard this every second */
Sirnam Swetha2b3c9eb2015-10-27 14:54:51 +053071#define INPUT_POLL_TIME (HZ / 50)
Henri Häkkinen429ccf02010-06-12 00:27:36 +030072/* a key starts to repeat after this times INPUT_POLL_TIME */
73#define KEYPAD_REP_START (10)
74/* a key repeats this times INPUT_POLL_TIME */
75#define KEYPAD_REP_DELAY (2)
76
Willy Tarreau7005b582008-11-13 17:18:59 -080077/* converts an r_str() input to an active high, bits string : 000BAOSE */
78#define PNL_PINPUT(a) ((((unsigned char)(a)) ^ 0x7F) >> 3)
79
Willy Tarreau698b1512008-11-22 11:29:33 +010080#define PNL_PBUSY 0x80 /* inverted input, active low */
81#define PNL_PACK 0x40 /* direct input, active low */
82#define PNL_POUTPA 0x20 /* direct input, active high */
83#define PNL_PSELECD 0x10 /* direct input, active high */
84#define PNL_PERRORP 0x08 /* direct input, active low */
Willy Tarreau7005b582008-11-13 17:18:59 -080085
Willy Tarreau698b1512008-11-22 11:29:33 +010086#define PNL_PBIDIR 0x20 /* bi-directional ports */
Henri Häkkinen429ccf02010-06-12 00:27:36 +030087/* high to read data in or-ed with data out */
88#define PNL_PINTEN 0x10
Willy Tarreau698b1512008-11-22 11:29:33 +010089#define PNL_PSELECP 0x08 /* inverted output, active low */
90#define PNL_PINITP 0x04 /* direct output, active low */
91#define PNL_PAUTOLF 0x02 /* inverted output, active low */
92#define PNL_PSTROBE 0x01 /* inverted output */
Willy Tarreau7005b582008-11-13 17:18:59 -080093
94#define PNL_PD0 0x01
95#define PNL_PD1 0x02
96#define PNL_PD2 0x04
97#define PNL_PD3 0x08
98#define PNL_PD4 0x10
99#define PNL_PD5 0x20
100#define PNL_PD6 0x40
101#define PNL_PD7 0x80
102
103#define PIN_NONE 0
104#define PIN_STROBE 1
105#define PIN_D0 2
106#define PIN_D1 3
107#define PIN_D2 4
108#define PIN_D3 5
109#define PIN_D4 6
110#define PIN_D5 7
111#define PIN_D6 8
112#define PIN_D7 9
113#define PIN_AUTOLF 14
114#define PIN_INITP 16
115#define PIN_SELECP 17
116#define PIN_NOT_SET 127
117
Mariusz Gorski36277d42014-11-27 22:36:47 +0100118#define NOT_SET -1
119
Willy Tarreau7005b582008-11-13 17:18:59 -0800120/* macros to simplify use of the parallel port */
121#define r_ctr(x) (parport_read_control((x)->port))
122#define r_dtr(x) (parport_read_data((x)->port))
123#define r_str(x) (parport_read_status((x)->port))
Toshiaki Yamane6ebb56d2012-07-25 12:18:12 +0900124#define w_ctr(x, y) (parport_write_control((x)->port, (y)))
125#define w_dtr(x, y) (parport_write_data((x)->port, (y)))
Willy Tarreau7005b582008-11-13 17:18:59 -0800126
127/* this defines which bits are to be used and which ones to be ignored */
Henri Häkkinen429ccf02010-06-12 00:27:36 +0300128/* logical or of the output bits involved in the scan matrix */
129static __u8 scan_mask_o;
130/* logical or of the input bits involved in the scan matrix */
131static __u8 scan_mask_i;
Willy Tarreau7005b582008-11-13 17:18:59 -0800132
Willy Tarreau7005b582008-11-13 17:18:59 -0800133enum input_type {
Willy Tarreau698b1512008-11-22 11:29:33 +0100134 INPUT_TYPE_STD,
135 INPUT_TYPE_KBD,
Willy Tarreau7005b582008-11-13 17:18:59 -0800136};
137
138enum input_state {
Willy Tarreau698b1512008-11-22 11:29:33 +0100139 INPUT_ST_LOW,
140 INPUT_ST_RISING,
141 INPUT_ST_HIGH,
142 INPUT_ST_FALLING,
Willy Tarreau7005b582008-11-13 17:18:59 -0800143};
144
145struct logical_input {
Willy Tarreau698b1512008-11-22 11:29:33 +0100146 struct list_head list;
Ksenija Stanojevic35fe0872016-01-03 20:40:58 +0100147 __u64 mask;
148 __u64 value;
Willy Tarreau698b1512008-11-22 11:29:33 +0100149 enum input_type type;
150 enum input_state state;
151 __u8 rise_time, fall_time;
152 __u8 rise_timer, fall_timer, high_timer;
Willy Tarreau7005b582008-11-13 17:18:59 -0800153
Willy Tarreau698b1512008-11-22 11:29:33 +0100154 union {
Henri Häkkinen429ccf02010-06-12 00:27:36 +0300155 struct { /* valid when type == INPUT_TYPE_STD */
Monam Agarwal68d386b2014-02-25 19:40:49 +0530156 void (*press_fct)(int);
157 void (*release_fct)(int);
Willy Tarreau698b1512008-11-22 11:29:33 +0100158 int press_data;
159 int release_data;
160 } std;
Henri Häkkinen429ccf02010-06-12 00:27:36 +0300161 struct { /* valid when type == INPUT_TYPE_KBD */
162 /* strings can be non null-terminated */
Willy Tarreau698b1512008-11-22 11:29:33 +0100163 char press_str[sizeof(void *) + sizeof(int)];
164 char repeat_str[sizeof(void *) + sizeof(int)];
165 char release_str[sizeof(void *) + sizeof(int)];
166 } kbd;
167 } u;
Willy Tarreau7005b582008-11-13 17:18:59 -0800168};
169
Peter Huewe36d20412013-02-15 13:47:05 +0100170static LIST_HEAD(logical_inputs); /* list of all defined logical inputs */
Willy Tarreau7005b582008-11-13 17:18:59 -0800171
172/* physical contacts history
173 * Physical contacts are a 45 bits string of 9 groups of 5 bits each.
174 * The 8 lower groups correspond to output bits 0 to 7, and the 9th group
175 * corresponds to the ground.
176 * Within each group, bits are stored in the same order as read on the port :
177 * BAPSE (busy=4, ack=3, paper empty=2, select=1, error=0).
Ksenija Stanojevic35fe0872016-01-03 20:40:58 +0100178 * So, each __u64 is represented like this :
Willy Tarreau7005b582008-11-13 17:18:59 -0800179 * 0000000000000000000BAPSEBAPSEBAPSEBAPSEBAPSEBAPSEBAPSEBAPSEBAPSE
180 * <-----unused------><gnd><d07><d06><d05><d04><d03><d02><d01><d00>
181 */
Henri Häkkinen429ccf02010-06-12 00:27:36 +0300182
183/* what has just been read from the I/O ports */
Ksenija Stanojevic35fe0872016-01-03 20:40:58 +0100184static __u64 phys_read;
Henri Häkkinen429ccf02010-06-12 00:27:36 +0300185/* previous phys_read */
Ksenija Stanojevic35fe0872016-01-03 20:40:58 +0100186static __u64 phys_read_prev;
Henri Häkkinen429ccf02010-06-12 00:27:36 +0300187/* stabilized phys_read (phys_read|phys_read_prev) */
Ksenija Stanojevic35fe0872016-01-03 20:40:58 +0100188static __u64 phys_curr;
Henri Häkkinen429ccf02010-06-12 00:27:36 +0300189/* previous phys_curr */
Ksenija Stanojevic35fe0872016-01-03 20:40:58 +0100190static __u64 phys_prev;
Henri Häkkinen429ccf02010-06-12 00:27:36 +0300191/* 0 means that at least one logical signal needs be computed */
192static char inputs_stable;
Willy Tarreau7005b582008-11-13 17:18:59 -0800193
Willy Tarreau7005b582008-11-13 17:18:59 -0800194/* these variables are specific to the keypad */
Mariusz Gorskia8b25802014-11-27 22:36:49 +0100195static struct {
196 bool enabled;
197} keypad;
198
Willy Tarreau7005b582008-11-13 17:18:59 -0800199static char keypad_buffer[KEYPAD_BUFFER];
Willy Tarreau698b1512008-11-22 11:29:33 +0100200static int keypad_buflen;
201static int keypad_start;
202static char keypressed;
Willy Tarreau7005b582008-11-13 17:18:59 -0800203static wait_queue_head_t keypad_read_wait;
Willy Tarreau7005b582008-11-13 17:18:59 -0800204
205/* lcd-specific variables */
Mariusz Gorskia8b25802014-11-27 22:36:49 +0100206static struct {
207 bool enabled;
Mariusz Gorski6d8b5882014-11-27 22:36:53 +0100208 bool initialized;
Mariusz Gorski6d8b5882014-11-27 22:36:53 +0100209
Mariusz Gorski8037e2a2014-11-27 22:36:51 +0100210 int charset;
211 int proto;
Geert Uytterhoevenfda4ae12017-02-06 15:38:10 +0100212
Mariusz Gorski8037e2a2014-11-27 22:36:51 +0100213 /* TODO: use union here? */
214 struct {
215 int e;
216 int rs;
217 int rw;
218 int cl;
219 int da;
220 int bl;
221 } pins;
Mariusz Gorski6d8b5882014-11-27 22:36:53 +0100222
Geert Uytterhoeven39f8ea42017-03-10 15:15:17 +0100223 struct charlcd *charlcd;
Mariusz Gorskia8b25802014-11-27 22:36:49 +0100224} lcd;
Henri Häkkinen429ccf02010-06-12 00:27:36 +0300225
Mariusz Gorski87b8e0c2014-11-27 22:36:50 +0100226/* Needed only for init */
227static int selected_lcd_type = NOT_SET;
228
Willy Tarreau7005b582008-11-13 17:18:59 -0800229/*
230 * Bit masks to convert LCD signals to parallel port outputs.
231 * _d_ are values for data port, _c_ are for control port.
232 * [0] = signal OFF, [1] = signal ON, [2] = mask
233 */
Willy Tarreau698b1512008-11-22 11:29:33 +0100234#define BIT_CLR 0
235#define BIT_SET 1
236#define BIT_MSK 2
Willy Tarreau7005b582008-11-13 17:18:59 -0800237#define BIT_STATES 3
238/*
239 * one entry for each bit on the LCD
240 */
241#define LCD_BIT_E 0
242#define LCD_BIT_RS 1
243#define LCD_BIT_RW 2
244#define LCD_BIT_BL 3
245#define LCD_BIT_CL 4
246#define LCD_BIT_DA 5
247#define LCD_BITS 6
248
249/*
250 * each bit can be either connected to a DATA or CTRL port
251 */
252#define LCD_PORT_C 0
253#define LCD_PORT_D 1
254#define LCD_PORTS 2
255
256static unsigned char lcd_bits[LCD_PORTS][LCD_BITS][BIT_STATES];
257
258/*
259 * LCD protocols
260 */
261#define LCD_PROTO_PARALLEL 0
262#define LCD_PROTO_SERIAL 1
Sudhakar Rajashekhara77943d32009-08-20 18:13:18 -0400263#define LCD_PROTO_TI_DA8XX_LCD 2
Willy Tarreau7005b582008-11-13 17:18:59 -0800264
265/*
266 * LCD character sets
267 */
268#define LCD_CHARSET_NORMAL 0
269#define LCD_CHARSET_KS0074 1
270
271/*
272 * LCD types
273 */
274#define LCD_TYPE_NONE 0
Sudip Mukherjee2c20d922015-03-24 16:29:32 +0530275#define LCD_TYPE_CUSTOM 1
276#define LCD_TYPE_OLD 2
277#define LCD_TYPE_KS0074 3
278#define LCD_TYPE_HANTRONIX 4
279#define LCD_TYPE_NEXCOM 5
Willy Tarreau7005b582008-11-13 17:18:59 -0800280
281/*
282 * keypad types
283 */
284#define KEYPAD_TYPE_NONE 0
285#define KEYPAD_TYPE_OLD 1
286#define KEYPAD_TYPE_NEW 2
287#define KEYPAD_TYPE_NEXCOM 3
288
289/*
290 * panel profiles
291 */
292#define PANEL_PROFILE_CUSTOM 0
293#define PANEL_PROFILE_OLD 1
294#define PANEL_PROFILE_NEW 2
295#define PANEL_PROFILE_HANTRONIX 3
296#define PANEL_PROFILE_NEXCOM 4
297#define PANEL_PROFILE_LARGE 5
298
299/*
300 * Construct custom config from the kernel's configuration
301 */
Willy Tarreau7005b582008-11-13 17:18:59 -0800302#define DEFAULT_PARPORT 0
Mariusz Gorskife4d7e22014-11-12 02:08:06 +0100303#define DEFAULT_PROFILE PANEL_PROFILE_LARGE
Mariusz Gorski98fac3d2014-11-12 02:08:09 +0100304#define DEFAULT_KEYPAD_TYPE KEYPAD_TYPE_OLD
305#define DEFAULT_LCD_TYPE LCD_TYPE_OLD
Mariusz Gorskife4d7e22014-11-12 02:08:06 +0100306#define DEFAULT_LCD_HEIGHT 2
Willy Tarreau7005b582008-11-13 17:18:59 -0800307#define DEFAULT_LCD_WIDTH 40
308#define DEFAULT_LCD_BWIDTH 40
309#define DEFAULT_LCD_HWIDTH 64
Mariusz Gorskife4d7e22014-11-12 02:08:06 +0100310#define DEFAULT_LCD_CHARSET LCD_CHARSET_NORMAL
Willy Tarreau7005b582008-11-13 17:18:59 -0800311#define DEFAULT_LCD_PROTO LCD_PROTO_PARALLEL
312
313#define DEFAULT_LCD_PIN_E PIN_AUTOLF
314#define DEFAULT_LCD_PIN_RS PIN_SELECP
315#define DEFAULT_LCD_PIN_RW PIN_INITP
316#define DEFAULT_LCD_PIN_SCL PIN_STROBE
317#define DEFAULT_LCD_PIN_SDA PIN_D0
318#define DEFAULT_LCD_PIN_BL PIN_NOT_SET
Willy Tarreau7005b582008-11-13 17:18:59 -0800319
Willy Tarreau7005b582008-11-13 17:18:59 -0800320#ifdef CONFIG_PANEL_PARPORT
321#undef DEFAULT_PARPORT
322#define DEFAULT_PARPORT CONFIG_PANEL_PARPORT
323#endif
324
Mariusz Gorski1e13e8a2014-11-12 02:08:07 +0100325#ifdef CONFIG_PANEL_PROFILE
326#undef DEFAULT_PROFILE
327#define DEFAULT_PROFILE CONFIG_PANEL_PROFILE
328#endif
329
Willy Tarreau698b1512008-11-22 11:29:33 +0100330#if DEFAULT_PROFILE == 0 /* custom */
Willy Tarreau7005b582008-11-13 17:18:59 -0800331#ifdef CONFIG_PANEL_KEYPAD
Mariusz Gorski98fac3d2014-11-12 02:08:09 +0100332#undef DEFAULT_KEYPAD_TYPE
333#define DEFAULT_KEYPAD_TYPE CONFIG_PANEL_KEYPAD
Willy Tarreau7005b582008-11-13 17:18:59 -0800334#endif
335
Willy Tarreau7005b582008-11-13 17:18:59 -0800336#ifdef CONFIG_PANEL_LCD
Mariusz Gorski98fac3d2014-11-12 02:08:09 +0100337#undef DEFAULT_LCD_TYPE
338#define DEFAULT_LCD_TYPE CONFIG_PANEL_LCD
Willy Tarreau7005b582008-11-13 17:18:59 -0800339#endif
340
Mariusz Gorski1e13e8a2014-11-12 02:08:07 +0100341#ifdef CONFIG_PANEL_LCD_HEIGHT
342#undef DEFAULT_LCD_HEIGHT
343#define DEFAULT_LCD_HEIGHT CONFIG_PANEL_LCD_HEIGHT
344#endif
345
Willy Tarreau7005b582008-11-13 17:18:59 -0800346#ifdef CONFIG_PANEL_LCD_WIDTH
347#undef DEFAULT_LCD_WIDTH
348#define DEFAULT_LCD_WIDTH CONFIG_PANEL_LCD_WIDTH
349#endif
350
351#ifdef CONFIG_PANEL_LCD_BWIDTH
352#undef DEFAULT_LCD_BWIDTH
353#define DEFAULT_LCD_BWIDTH CONFIG_PANEL_LCD_BWIDTH
354#endif
355
356#ifdef CONFIG_PANEL_LCD_HWIDTH
357#undef DEFAULT_LCD_HWIDTH
358#define DEFAULT_LCD_HWIDTH CONFIG_PANEL_LCD_HWIDTH
359#endif
360
Mariusz Gorski1e13e8a2014-11-12 02:08:07 +0100361#ifdef CONFIG_PANEL_LCD_CHARSET
362#undef DEFAULT_LCD_CHARSET
363#define DEFAULT_LCD_CHARSET CONFIG_PANEL_LCD_CHARSET
Willy Tarreau7005b582008-11-13 17:18:59 -0800364#endif
365
366#ifdef CONFIG_PANEL_LCD_PROTO
367#undef DEFAULT_LCD_PROTO
368#define DEFAULT_LCD_PROTO CONFIG_PANEL_LCD_PROTO
369#endif
370
371#ifdef CONFIG_PANEL_LCD_PIN_E
372#undef DEFAULT_LCD_PIN_E
373#define DEFAULT_LCD_PIN_E CONFIG_PANEL_LCD_PIN_E
374#endif
375
376#ifdef CONFIG_PANEL_LCD_PIN_RS
377#undef DEFAULT_LCD_PIN_RS
378#define DEFAULT_LCD_PIN_RS CONFIG_PANEL_LCD_PIN_RS
379#endif
380
381#ifdef CONFIG_PANEL_LCD_PIN_RW
382#undef DEFAULT_LCD_PIN_RW
383#define DEFAULT_LCD_PIN_RW CONFIG_PANEL_LCD_PIN_RW
384#endif
385
386#ifdef CONFIG_PANEL_LCD_PIN_SCL
387#undef DEFAULT_LCD_PIN_SCL
388#define DEFAULT_LCD_PIN_SCL CONFIG_PANEL_LCD_PIN_SCL
389#endif
390
391#ifdef CONFIG_PANEL_LCD_PIN_SDA
392#undef DEFAULT_LCD_PIN_SDA
393#define DEFAULT_LCD_PIN_SDA CONFIG_PANEL_LCD_PIN_SDA
394#endif
395
396#ifdef CONFIG_PANEL_LCD_PIN_BL
397#undef DEFAULT_LCD_PIN_BL
398#define DEFAULT_LCD_PIN_BL CONFIG_PANEL_LCD_PIN_BL
399#endif
400
Willy Tarreau7005b582008-11-13 17:18:59 -0800401#endif /* DEFAULT_PROFILE == 0 */
402
403/* global variables */
Mariusz Gorskif4757af2014-11-04 22:47:19 +0100404
405/* Device single-open policy control */
Mariusz Gorskif4757af2014-11-04 22:47:19 +0100406static atomic_t keypad_available = ATOMIC_INIT(1);
407
Willy Tarreau698b1512008-11-22 11:29:33 +0100408static struct pardevice *pprt;
Willy Tarreau7005b582008-11-13 17:18:59 -0800409
Willy Tarreauf6d1fcf2008-11-22 12:04:19 +0100410static int keypad_initialized;
Willy Tarreau7005b582008-11-13 17:18:59 -0800411
Willy Tarreau698b1512008-11-22 11:29:33 +0100412static DEFINE_SPINLOCK(pprt_lock);
Willy Tarreau7005b582008-11-13 17:18:59 -0800413static struct timer_list scan_timer;
414
Willy Tarreau630231772008-11-22 12:52:18 +0100415MODULE_DESCRIPTION("Generic parallel port LCD/Keypad driver");
Willy Tarreauf6d1fcf2008-11-22 12:04:19 +0100416
Mariusz Gorski59a66a22014-11-27 22:36:45 +0100417static int parport = DEFAULT_PARPORT;
Willy Tarreau698b1512008-11-22 11:29:33 +0100418module_param(parport, int, 0000);
419MODULE_PARM_DESC(parport, "Parallel port index (0=lpt1, 1=lpt2, ...)");
Willy Tarreauf6d1fcf2008-11-22 12:04:19 +0100420
Mariusz Gorski98e0e762014-11-12 02:08:08 +0100421static int profile = DEFAULT_PROFILE;
422module_param(profile, int, 0000);
423MODULE_PARM_DESC(profile,
424 "1=16x2 old kp; 2=serial 16x2, new kp; 3=16x2 hantronix; "
425 "4=16x2 nexcom; default=40x2, old kp");
426
Mariusz Gorski36277d42014-11-27 22:36:47 +0100427static int keypad_type = NOT_SET;
Mariusz Gorski98e0e762014-11-12 02:08:08 +0100428module_param(keypad_type, int, 0000);
429MODULE_PARM_DESC(keypad_type,
430 "Keypad type: 0=none, 1=old 6 keys, 2=new 6+1 keys, 3=nexcom 4 keys");
431
Mariusz Gorski36277d42014-11-27 22:36:47 +0100432static int lcd_type = NOT_SET;
Mariusz Gorski98e0e762014-11-12 02:08:08 +0100433module_param(lcd_type, int, 0000);
434MODULE_PARM_DESC(lcd_type,
Sudip Mukherjee2c20d922015-03-24 16:29:32 +0530435 "LCD type: 0=none, 1=compiled-in, 2=old, 3=serial ks0074, 4=hantronix, 5=nexcom");
Mariusz Gorski98e0e762014-11-12 02:08:08 +0100436
Mariusz Gorski36277d42014-11-27 22:36:47 +0100437static int lcd_height = NOT_SET;
Willy Tarreau698b1512008-11-22 11:29:33 +0100438module_param(lcd_height, int, 0000);
439MODULE_PARM_DESC(lcd_height, "Number of lines on the LCD");
Willy Tarreauf6d1fcf2008-11-22 12:04:19 +0100440
Mariusz Gorski36277d42014-11-27 22:36:47 +0100441static int lcd_width = NOT_SET;
Willy Tarreau698b1512008-11-22 11:29:33 +0100442module_param(lcd_width, int, 0000);
443MODULE_PARM_DESC(lcd_width, "Number of columns on the LCD");
Willy Tarreauf6d1fcf2008-11-22 12:04:19 +0100444
Mariusz Gorski36277d42014-11-27 22:36:47 +0100445static int lcd_bwidth = NOT_SET; /* internal buffer width (usually 40) */
Willy Tarreau698b1512008-11-22 11:29:33 +0100446module_param(lcd_bwidth, int, 0000);
447MODULE_PARM_DESC(lcd_bwidth, "Internal LCD line width (40)");
Willy Tarreauf6d1fcf2008-11-22 12:04:19 +0100448
Mariusz Gorski36277d42014-11-27 22:36:47 +0100449static int lcd_hwidth = NOT_SET; /* hardware buffer width (usually 64) */
Willy Tarreau698b1512008-11-22 11:29:33 +0100450module_param(lcd_hwidth, int, 0000);
451MODULE_PARM_DESC(lcd_hwidth, "LCD line hardware address (64)");
Willy Tarreauf6d1fcf2008-11-22 12:04:19 +0100452
Mariusz Gorski36277d42014-11-27 22:36:47 +0100453static int lcd_charset = NOT_SET;
Mariusz Gorski98e0e762014-11-12 02:08:08 +0100454module_param(lcd_charset, int, 0000);
455MODULE_PARM_DESC(lcd_charset, "LCD character set: 0=standard, 1=KS0074");
Willy Tarreauf6d1fcf2008-11-22 12:04:19 +0100456
Mariusz Gorski36277d42014-11-27 22:36:47 +0100457static int lcd_proto = NOT_SET;
Willy Tarreau698b1512008-11-22 11:29:33 +0100458module_param(lcd_proto, int, 0000);
Henri Häkkinen429ccf02010-06-12 00:27:36 +0300459MODULE_PARM_DESC(lcd_proto,
Dominique van den Broeckfdf4a4942014-05-21 14:10:00 +0200460 "LCD communication: 0=parallel (//), 1=serial, 2=TI LCD Interface");
Willy Tarreauf6d1fcf2008-11-22 12:04:19 +0100461
Willy Tarreauf6d1fcf2008-11-22 12:04:19 +0100462/*
463 * These are the parallel port pins the LCD control signals are connected to.
464 * Set this to 0 if the signal is not used. Set it to its opposite value
465 * (negative) if the signal is negated. -MAXINT is used to indicate that the
466 * pin has not been explicitly specified.
467 *
Willy Tarreau630231772008-11-22 12:52:18 +0100468 * WARNING! no check will be performed about collisions with keypad !
Willy Tarreauf6d1fcf2008-11-22 12:04:19 +0100469 */
470
471static int lcd_e_pin = PIN_NOT_SET;
Willy Tarreau698b1512008-11-22 11:29:33 +0100472module_param(lcd_e_pin, int, 0000);
473MODULE_PARM_DESC(lcd_e_pin,
Monam Agarwalfe5d2e02014-02-25 19:42:46 +0530474 "# of the // port pin connected to LCD 'E' signal, with polarity (-17..17)");
Willy Tarreauf6d1fcf2008-11-22 12:04:19 +0100475
476static int lcd_rs_pin = PIN_NOT_SET;
Willy Tarreau698b1512008-11-22 11:29:33 +0100477module_param(lcd_rs_pin, int, 0000);
478MODULE_PARM_DESC(lcd_rs_pin,
Monam Agarwalfe5d2e02014-02-25 19:42:46 +0530479 "# of the // port pin connected to LCD 'RS' signal, with polarity (-17..17)");
Willy Tarreauf6d1fcf2008-11-22 12:04:19 +0100480
481static int lcd_rw_pin = PIN_NOT_SET;
Willy Tarreau698b1512008-11-22 11:29:33 +0100482module_param(lcd_rw_pin, int, 0000);
483MODULE_PARM_DESC(lcd_rw_pin,
Monam Agarwalfe5d2e02014-02-25 19:42:46 +0530484 "# of the // port pin connected to LCD 'RW' signal, with polarity (-17..17)");
Willy Tarreauf6d1fcf2008-11-22 12:04:19 +0100485
Mariusz Gorski98e0e762014-11-12 02:08:08 +0100486static int lcd_cl_pin = PIN_NOT_SET;
487module_param(lcd_cl_pin, int, 0000);
488MODULE_PARM_DESC(lcd_cl_pin,
489 "# of the // port pin connected to serial LCD 'SCL' signal, with polarity (-17..17)");
Willy Tarreauf6d1fcf2008-11-22 12:04:19 +0100490
491static int lcd_da_pin = PIN_NOT_SET;
Willy Tarreau698b1512008-11-22 11:29:33 +0100492module_param(lcd_da_pin, int, 0000);
493MODULE_PARM_DESC(lcd_da_pin,
Monam Agarwalfe5d2e02014-02-25 19:42:46 +0530494 "# of the // port pin connected to serial LCD 'SDA' signal, with polarity (-17..17)");
Willy Tarreauf6d1fcf2008-11-22 12:04:19 +0100495
Mariusz Gorski98e0e762014-11-12 02:08:08 +0100496static int lcd_bl_pin = PIN_NOT_SET;
497module_param(lcd_bl_pin, int, 0000);
498MODULE_PARM_DESC(lcd_bl_pin,
499 "# of the // port pin connected to LCD backlight, with polarity (-17..17)");
500
501/* Deprecated module parameters - consider not using them anymore */
502
Mariusz Gorski36277d42014-11-27 22:36:47 +0100503static int lcd_enabled = NOT_SET;
Mariusz Gorski98e0e762014-11-12 02:08:08 +0100504module_param(lcd_enabled, int, 0000);
505MODULE_PARM_DESC(lcd_enabled, "Deprecated option, use lcd_type instead");
506
Mariusz Gorski36277d42014-11-27 22:36:47 +0100507static int keypad_enabled = NOT_SET;
Mariusz Gorski98e0e762014-11-12 02:08:08 +0100508module_param(keypad_enabled, int, 0000);
509MODULE_PARM_DESC(keypad_enabled, "Deprecated option, use keypad_type instead");
510
Willy Tarreau7005b582008-11-13 17:18:59 -0800511/* for some LCD drivers (ks0074) we need a charset conversion table. */
Peter Huewe36d20412013-02-15 13:47:05 +0100512static const unsigned char lcd_char_conv_ks0074[256] = {
Willy Tarreau698b1512008-11-22 11:29:33 +0100513 /* 0|8 1|9 2|A 3|B 4|C 5|D 6|E 7|F */
514 /* 0x00 */ 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
515 /* 0x08 */ 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,
516 /* 0x10 */ 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17,
517 /* 0x18 */ 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f,
518 /* 0x20 */ 0x20, 0x21, 0x22, 0x23, 0xa2, 0x25, 0x26, 0x27,
519 /* 0x28 */ 0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d, 0x2e, 0x2f,
520 /* 0x30 */ 0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36, 0x37,
521 /* 0x38 */ 0x38, 0x39, 0x3a, 0x3b, 0x3c, 0x3d, 0x3e, 0x3f,
522 /* 0x40 */ 0xa0, 0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47,
523 /* 0x48 */ 0x48, 0x49, 0x4a, 0x4b, 0x4c, 0x4d, 0x4e, 0x4f,
524 /* 0x50 */ 0x50, 0x51, 0x52, 0x53, 0x54, 0x55, 0x56, 0x57,
525 /* 0x58 */ 0x58, 0x59, 0x5a, 0xfa, 0xfb, 0xfc, 0x1d, 0xc4,
526 /* 0x60 */ 0x96, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67,
527 /* 0x68 */ 0x68, 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f,
528 /* 0x70 */ 0x70, 0x71, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77,
529 /* 0x78 */ 0x78, 0x79, 0x7a, 0xfd, 0xfe, 0xff, 0xce, 0x20,
530 /* 0x80 */ 0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87,
531 /* 0x88 */ 0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f,
532 /* 0x90 */ 0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97,
533 /* 0x98 */ 0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f,
534 /* 0xA0 */ 0x20, 0x40, 0xb1, 0xa1, 0x24, 0xa3, 0xfe, 0x5f,
535 /* 0xA8 */ 0x22, 0xc8, 0x61, 0x14, 0x97, 0x2d, 0xad, 0x96,
536 /* 0xB0 */ 0x80, 0x8c, 0x82, 0x83, 0x27, 0x8f, 0x86, 0xdd,
537 /* 0xB8 */ 0x2c, 0x81, 0x6f, 0x15, 0x8b, 0x8a, 0x84, 0x60,
538 /* 0xC0 */ 0xe2, 0xe2, 0xe2, 0x5b, 0x5b, 0xae, 0xbc, 0xa9,
539 /* 0xC8 */ 0xc5, 0xbf, 0xc6, 0xf1, 0xe3, 0xe3, 0xe3, 0xe3,
540 /* 0xD0 */ 0x44, 0x5d, 0xa8, 0xe4, 0xec, 0xec, 0x5c, 0x78,
541 /* 0xD8 */ 0xab, 0xa6, 0xe5, 0x5e, 0x5e, 0xe6, 0xaa, 0xbe,
542 /* 0xE0 */ 0x7f, 0xe7, 0xaf, 0x7b, 0x7b, 0xaf, 0xbd, 0xc8,
543 /* 0xE8 */ 0xa4, 0xa5, 0xc7, 0xf6, 0xa7, 0xe8, 0x69, 0x69,
544 /* 0xF0 */ 0xed, 0x7d, 0xa8, 0xe4, 0xec, 0x5c, 0x5c, 0x25,
545 /* 0xF8 */ 0xac, 0xa6, 0xea, 0xef, 0x7e, 0xeb, 0xb2, 0x79,
Willy Tarreau7005b582008-11-13 17:18:59 -0800546};
547
Peter Huewe36d20412013-02-15 13:47:05 +0100548static const char old_keypad_profile[][4][9] = {
Willy Tarreau698b1512008-11-22 11:29:33 +0100549 {"S0", "Left\n", "Left\n", ""},
550 {"S1", "Down\n", "Down\n", ""},
551 {"S2", "Up\n", "Up\n", ""},
552 {"S3", "Right\n", "Right\n", ""},
553 {"S4", "Esc\n", "Esc\n", ""},
554 {"S5", "Ret\n", "Ret\n", ""},
555 {"", "", "", ""}
Willy Tarreau7005b582008-11-13 17:18:59 -0800556};
557
558/* signals, press, repeat, release */
Peter Huewe36d20412013-02-15 13:47:05 +0100559static const char new_keypad_profile[][4][9] = {
Willy Tarreau698b1512008-11-22 11:29:33 +0100560 {"S0", "Left\n", "Left\n", ""},
561 {"S1", "Down\n", "Down\n", ""},
562 {"S2", "Up\n", "Up\n", ""},
563 {"S3", "Right\n", "Right\n", ""},
564 {"S4s5", "", "Esc\n", "Esc\n"},
565 {"s4S5", "", "Ret\n", "Ret\n"},
566 {"S4S5", "Help\n", "", ""},
567 /* add new signals above this line */
568 {"", "", "", ""}
Willy Tarreau7005b582008-11-13 17:18:59 -0800569};
570
571/* signals, press, repeat, release */
Peter Huewe36d20412013-02-15 13:47:05 +0100572static const char nexcom_keypad_profile[][4][9] = {
Willy Tarreau698b1512008-11-22 11:29:33 +0100573 {"a-p-e-", "Down\n", "Down\n", ""},
574 {"a-p-E-", "Ret\n", "Ret\n", ""},
575 {"a-P-E-", "Esc\n", "Esc\n", ""},
576 {"a-P-e-", "Up\n", "Up\n", ""},
577 /* add new signals above this line */
578 {"", "", "", ""}
Willy Tarreau7005b582008-11-13 17:18:59 -0800579};
580
Peter Huewe36d20412013-02-15 13:47:05 +0100581static const char (*keypad_profile)[4][9] = old_keypad_profile;
Willy Tarreau7005b582008-11-13 17:18:59 -0800582
Daniel Chromikbea74332016-02-11 13:29:23 +0100583static DECLARE_BITMAP(bits, LCD_BITS);
584
585static void lcd_get_bits(unsigned int port, int *val)
586{
587 unsigned int bit, state;
588
589 for (bit = 0; bit < LCD_BITS; bit++) {
590 state = test_bit(bit, bits) ? BIT_SET : BIT_CLR;
591 *val &= lcd_bits[port][bit][BIT_MSK];
592 *val |= lcd_bits[port][bit][state];
593 }
594}
Willy Tarreau7005b582008-11-13 17:18:59 -0800595
Willy Tarreau7005b582008-11-13 17:18:59 -0800596/* sets data port bits according to current signals values */
Willy Tarreau698b1512008-11-22 11:29:33 +0100597static int set_data_bits(void)
598{
Daniel Chromikbea74332016-02-11 13:29:23 +0100599 int val;
Willy Tarreau7005b582008-11-13 17:18:59 -0800600
Willy Tarreau698b1512008-11-22 11:29:33 +0100601 val = r_dtr(pprt);
Daniel Chromikbea74332016-02-11 13:29:23 +0100602 lcd_get_bits(LCD_PORT_D, &val);
Willy Tarreau698b1512008-11-22 11:29:33 +0100603 w_dtr(pprt, val);
604 return val;
Willy Tarreau7005b582008-11-13 17:18:59 -0800605}
606
607/* sets ctrl port bits according to current signals values */
Willy Tarreau698b1512008-11-22 11:29:33 +0100608static int set_ctrl_bits(void)
609{
Daniel Chromikbea74332016-02-11 13:29:23 +0100610 int val;
Willy Tarreau7005b582008-11-13 17:18:59 -0800611
Willy Tarreau698b1512008-11-22 11:29:33 +0100612 val = r_ctr(pprt);
Daniel Chromikbea74332016-02-11 13:29:23 +0100613 lcd_get_bits(LCD_PORT_C, &val);
Willy Tarreau698b1512008-11-22 11:29:33 +0100614 w_ctr(pprt, val);
615 return val;
Willy Tarreau7005b582008-11-13 17:18:59 -0800616}
617
618/* sets ctrl & data port bits according to current signals values */
Sachin P. Sant6136ac82009-02-03 21:10:58 +0530619static void panel_set_bits(void)
Willy Tarreau698b1512008-11-22 11:29:33 +0100620{
621 set_data_bits();
622 set_ctrl_bits();
Willy Tarreau7005b582008-11-13 17:18:59 -0800623}
624
625/*
626 * Converts a parallel port pin (from -25 to 25) to data and control ports
627 * masks, and data and control port bits. The signal will be considered
628 * unconnected if it's on pin 0 or an invalid pin (<-25 or >25).
629 *
630 * Result will be used this way :
631 * out(dport, in(dport) & d_val[2] | d_val[signal_state])
632 * out(cport, in(cport) & c_val[2] | c_val[signal_state])
633 */
Peter Huewe36d20412013-02-15 13:47:05 +0100634static void pin_to_bits(int pin, unsigned char *d_val, unsigned char *c_val)
Willy Tarreau698b1512008-11-22 11:29:33 +0100635{
636 int d_bit, c_bit, inv;
Willy Tarreau7005b582008-11-13 17:18:59 -0800637
Dominique van den Broeck2d534262014-05-24 01:35:24 +0200638 d_val[0] = 0;
639 c_val[0] = 0;
640 d_val[1] = 0;
641 c_val[1] = 0;
642 d_val[2] = 0xFF;
643 c_val[2] = 0xFF;
Willy Tarreau7005b582008-11-13 17:18:59 -0800644
Willy Tarreau698b1512008-11-22 11:29:33 +0100645 if (pin == 0)
646 return;
Willy Tarreau7005b582008-11-13 17:18:59 -0800647
Willy Tarreau698b1512008-11-22 11:29:33 +0100648 inv = (pin < 0);
649 if (inv)
650 pin = -pin;
Willy Tarreau7005b582008-11-13 17:18:59 -0800651
Dominique van den Broeck2d534262014-05-24 01:35:24 +0200652 d_bit = 0;
653 c_bit = 0;
Willy Tarreau7005b582008-11-13 17:18:59 -0800654
Willy Tarreau698b1512008-11-22 11:29:33 +0100655 switch (pin) {
656 case PIN_STROBE: /* strobe, inverted */
657 c_bit = PNL_PSTROBE;
658 inv = !inv;
659 break;
660 case PIN_D0...PIN_D7: /* D0 - D7 = 2 - 9 */
661 d_bit = 1 << (pin - 2);
662 break;
663 case PIN_AUTOLF: /* autofeed, inverted */
664 c_bit = PNL_PAUTOLF;
665 inv = !inv;
666 break;
Henri Häkkinen429ccf02010-06-12 00:27:36 +0300667 case PIN_INITP: /* init, direct */
Willy Tarreau698b1512008-11-22 11:29:33 +0100668 c_bit = PNL_PINITP;
669 break;
670 case PIN_SELECP: /* select_in, inverted */
671 c_bit = PNL_PSELECP;
672 inv = !inv;
673 break;
674 default: /* unknown pin, ignore */
675 break;
676 }
Willy Tarreau7005b582008-11-13 17:18:59 -0800677
Willy Tarreau698b1512008-11-22 11:29:33 +0100678 if (c_bit) {
679 c_val[2] &= ~c_bit;
680 c_val[!inv] = c_bit;
681 } else if (d_bit) {
682 d_val[2] &= ~d_bit;
683 d_val[!inv] = d_bit;
684 }
Willy Tarreau7005b582008-11-13 17:18:59 -0800685}
686
Alex Wilson881bf2812015-07-31 11:08:29 -0600687/*
688 * send a serial byte to the LCD panel. The caller is responsible for locking
689 * if needed.
690 */
Willy Tarreau698b1512008-11-22 11:29:33 +0100691static void lcd_send_serial(int byte)
692{
693 int bit;
Willy Tarreau7005b582008-11-13 17:18:59 -0800694
Alex Wilson881bf2812015-07-31 11:08:29 -0600695 /*
696 * the data bit is set on D0, and the clock on STROBE.
697 * LCD reads D0 on STROBE's rising edge.
698 */
Willy Tarreau698b1512008-11-22 11:29:33 +0100699 for (bit = 0; bit < 8; bit++) {
Daniel Chromikbea74332016-02-11 13:29:23 +0100700 clear_bit(LCD_BIT_CL, bits); /* CLK low */
Sachin P. Sant6136ac82009-02-03 21:10:58 +0530701 panel_set_bits();
Daniel Chromikbea74332016-02-11 13:29:23 +0100702 if (byte & 1) {
703 set_bit(LCD_BIT_DA, bits);
704 } else {
705 clear_bit(LCD_BIT_DA, bits);
706 }
707
Sachin P. Sant6136ac82009-02-03 21:10:58 +0530708 panel_set_bits();
Henri Häkkinen429ccf02010-06-12 00:27:36 +0300709 udelay(2); /* maintain the data during 2 us before CLK up */
Daniel Chromikbea74332016-02-11 13:29:23 +0100710 set_bit(LCD_BIT_CL, bits); /* CLK high */
Sachin P. Sant6136ac82009-02-03 21:10:58 +0530711 panel_set_bits();
Henri Häkkinen429ccf02010-06-12 00:27:36 +0300712 udelay(1); /* maintain the strobe during 1 us */
Willy Tarreau698b1512008-11-22 11:29:33 +0100713 byte >>= 1;
714 }
Willy Tarreau7005b582008-11-13 17:18:59 -0800715}
716
717/* turn the backlight on or off */
Geert Uytterhoeven39f8ea42017-03-10 15:15:17 +0100718static void lcd_backlight(struct charlcd *charlcd, int on)
Willy Tarreau698b1512008-11-22 11:29:33 +0100719{
Geert Uytterhoeven39f8ea42017-03-10 15:15:17 +0100720 if (lcd.pins.bl == PIN_NONE)
721 return;
722
Justin P. Mattock6975e182012-03-19 08:17:52 -0700723 /* The backlight is activated by setting the AUTOFEED line to +5V */
Fengguang Wud4d2dbc2012-09-09 16:23:46 +0800724 spin_lock_irq(&pprt_lock);
Daniel Chromikbea74332016-02-11 13:29:23 +0100725 if (on)
726 set_bit(LCD_BIT_BL, bits);
727 else
728 clear_bit(LCD_BIT_BL, bits);
Sachin P. Sant6136ac82009-02-03 21:10:58 +0530729 panel_set_bits();
Fengguang Wud4d2dbc2012-09-09 16:23:46 +0800730 spin_unlock_irq(&pprt_lock);
Willy Tarreau7005b582008-11-13 17:18:59 -0800731}
732
733/* send a command to the LCD panel in serial mode */
Geert Uytterhoeven39f8ea42017-03-10 15:15:17 +0100734static void lcd_write_cmd_s(struct charlcd *charlcd, int cmd)
Willy Tarreau698b1512008-11-22 11:29:33 +0100735{
Fengguang Wud4d2dbc2012-09-09 16:23:46 +0800736 spin_lock_irq(&pprt_lock);
Willy Tarreau698b1512008-11-22 11:29:33 +0100737 lcd_send_serial(0x1F); /* R/W=W, RS=0 */
738 lcd_send_serial(cmd & 0x0F);
739 lcd_send_serial((cmd >> 4) & 0x0F);
Sudip Mukherjeeb64a1cb2016-01-23 14:49:20 +0530740 udelay(40); /* the shortest command takes at least 40 us */
Fengguang Wud4d2dbc2012-09-09 16:23:46 +0800741 spin_unlock_irq(&pprt_lock);
Willy Tarreau7005b582008-11-13 17:18:59 -0800742}
743
744/* send data to the LCD panel in serial mode */
Geert Uytterhoeven39f8ea42017-03-10 15:15:17 +0100745static void lcd_write_data_s(struct charlcd *charlcd, int data)
Willy Tarreau698b1512008-11-22 11:29:33 +0100746{
Fengguang Wud4d2dbc2012-09-09 16:23:46 +0800747 spin_lock_irq(&pprt_lock);
Willy Tarreau698b1512008-11-22 11:29:33 +0100748 lcd_send_serial(0x5F); /* R/W=W, RS=1 */
749 lcd_send_serial(data & 0x0F);
750 lcd_send_serial((data >> 4) & 0x0F);
Sudip Mukherjeeb64a1cb2016-01-23 14:49:20 +0530751 udelay(40); /* the shortest data takes at least 40 us */
Fengguang Wud4d2dbc2012-09-09 16:23:46 +0800752 spin_unlock_irq(&pprt_lock);
Willy Tarreau7005b582008-11-13 17:18:59 -0800753}
754
755/* send a command to the LCD panel in 8 bits parallel mode */
Geert Uytterhoeven39f8ea42017-03-10 15:15:17 +0100756static void lcd_write_cmd_p8(struct charlcd *charlcd, int cmd)
Willy Tarreau698b1512008-11-22 11:29:33 +0100757{
Fengguang Wud4d2dbc2012-09-09 16:23:46 +0800758 spin_lock_irq(&pprt_lock);
Willy Tarreau7005b582008-11-13 17:18:59 -0800759 /* present the data to the data port */
Willy Tarreau698b1512008-11-22 11:29:33 +0100760 w_dtr(pprt, cmd);
Sudip Mukherjeeb64a1cb2016-01-23 14:49:20 +0530761 udelay(20); /* maintain the data during 20 us before the strobe */
Willy Tarreau7005b582008-11-13 17:18:59 -0800762
Daniel Chromikbea74332016-02-11 13:29:23 +0100763 set_bit(LCD_BIT_E, bits);
764 clear_bit(LCD_BIT_RS, bits);
765 clear_bit(LCD_BIT_RW, bits);
Willy Tarreau7005b582008-11-13 17:18:59 -0800766 set_ctrl_bits();
767
Sudip Mukherjeeb64a1cb2016-01-23 14:49:20 +0530768 udelay(40); /* maintain the strobe during 40 us */
Willy Tarreau7005b582008-11-13 17:18:59 -0800769
Daniel Chromikbea74332016-02-11 13:29:23 +0100770 clear_bit(LCD_BIT_E, bits);
Willy Tarreau7005b582008-11-13 17:18:59 -0800771 set_ctrl_bits();
772
Sudip Mukherjeeb64a1cb2016-01-23 14:49:20 +0530773 udelay(120); /* the shortest command takes at least 120 us */
Fengguang Wud4d2dbc2012-09-09 16:23:46 +0800774 spin_unlock_irq(&pprt_lock);
Willy Tarreau698b1512008-11-22 11:29:33 +0100775}
Willy Tarreau7005b582008-11-13 17:18:59 -0800776
Willy Tarreau698b1512008-11-22 11:29:33 +0100777/* send data to the LCD panel in 8 bits parallel mode */
Geert Uytterhoeven39f8ea42017-03-10 15:15:17 +0100778static void lcd_write_data_p8(struct charlcd *charlcd, int data)
Willy Tarreau698b1512008-11-22 11:29:33 +0100779{
Fengguang Wud4d2dbc2012-09-09 16:23:46 +0800780 spin_lock_irq(&pprt_lock);
Willy Tarreau698b1512008-11-22 11:29:33 +0100781 /* present the data to the data port */
782 w_dtr(pprt, data);
Sudip Mukherjeeb64a1cb2016-01-23 14:49:20 +0530783 udelay(20); /* maintain the data during 20 us before the strobe */
Willy Tarreau698b1512008-11-22 11:29:33 +0100784
Daniel Chromikbea74332016-02-11 13:29:23 +0100785 set_bit(LCD_BIT_E, bits);
786 set_bit(LCD_BIT_RS, bits);
787 clear_bit(LCD_BIT_RW, bits);
Willy Tarreau698b1512008-11-22 11:29:33 +0100788 set_ctrl_bits();
789
Sudip Mukherjeeb64a1cb2016-01-23 14:49:20 +0530790 udelay(40); /* maintain the strobe during 40 us */
Willy Tarreau698b1512008-11-22 11:29:33 +0100791
Daniel Chromikbea74332016-02-11 13:29:23 +0100792 clear_bit(LCD_BIT_E, bits);
Willy Tarreau698b1512008-11-22 11:29:33 +0100793 set_ctrl_bits();
794
Sudip Mukherjeeb64a1cb2016-01-23 14:49:20 +0530795 udelay(45); /* the shortest data takes at least 45 us */
Fengguang Wud4d2dbc2012-09-09 16:23:46 +0800796 spin_unlock_irq(&pprt_lock);
Willy Tarreau698b1512008-11-22 11:29:33 +0100797}
798
Sudhakar Rajashekhara77943d32009-08-20 18:13:18 -0400799/* send a command to the TI LCD panel */
Geert Uytterhoeven39f8ea42017-03-10 15:15:17 +0100800static void lcd_write_cmd_tilcd(struct charlcd *charlcd, int cmd)
Sudhakar Rajashekhara77943d32009-08-20 18:13:18 -0400801{
Fengguang Wud4d2dbc2012-09-09 16:23:46 +0800802 spin_lock_irq(&pprt_lock);
Sudhakar Rajashekhara77943d32009-08-20 18:13:18 -0400803 /* present the data to the control port */
804 w_ctr(pprt, cmd);
Sudip Mukherjeeb64a1cb2016-01-23 14:49:20 +0530805 udelay(60);
Fengguang Wud4d2dbc2012-09-09 16:23:46 +0800806 spin_unlock_irq(&pprt_lock);
Sudhakar Rajashekhara77943d32009-08-20 18:13:18 -0400807}
808
809/* send data to the TI LCD panel */
Geert Uytterhoeven39f8ea42017-03-10 15:15:17 +0100810static void lcd_write_data_tilcd(struct charlcd *charlcd, int data)
Sudhakar Rajashekhara77943d32009-08-20 18:13:18 -0400811{
Fengguang Wud4d2dbc2012-09-09 16:23:46 +0800812 spin_lock_irq(&pprt_lock);
Sudhakar Rajashekhara77943d32009-08-20 18:13:18 -0400813 /* present the data to the data port */
814 w_dtr(pprt, data);
Sudip Mukherjeeb64a1cb2016-01-23 14:49:20 +0530815 udelay(60);
Fengguang Wud4d2dbc2012-09-09 16:23:46 +0800816 spin_unlock_irq(&pprt_lock);
Sudhakar Rajashekhara77943d32009-08-20 18:13:18 -0400817}
818
Willy Tarreau698b1512008-11-22 11:29:33 +0100819/* fills the display with spaces and resets X/Y */
Geert Uytterhoeven39f8ea42017-03-10 15:15:17 +0100820static void lcd_clear_fast_s(struct charlcd *charlcd)
Willy Tarreau698b1512008-11-22 11:29:33 +0100821{
822 int pos;
Bastien Armandc3ed0af2014-04-04 21:45:07 +0200823
Fengguang Wud4d2dbc2012-09-09 16:23:46 +0800824 spin_lock_irq(&pprt_lock);
Geert Uytterhoeven39f8ea42017-03-10 15:15:17 +0100825 for (pos = 0; pos < charlcd->height * charlcd->hwidth; pos++) {
Willy Tarreau698b1512008-11-22 11:29:33 +0100826 lcd_send_serial(0x5F); /* R/W=W, RS=1 */
827 lcd_send_serial(' ' & 0x0F);
828 lcd_send_serial((' ' >> 4) & 0x0F);
Ricardo Ruedasdf44f152015-12-08 22:30:40 +0100829 /* the shortest data takes at least 40 us */
Greg Kroah-Hartman4cff7ad2016-02-01 12:50:26 -0800830 udelay(40);
Willy Tarreau698b1512008-11-22 11:29:33 +0100831 }
Fengguang Wud4d2dbc2012-09-09 16:23:46 +0800832 spin_unlock_irq(&pprt_lock);
Willy Tarreau698b1512008-11-22 11:29:33 +0100833}
834
835/* fills the display with spaces and resets X/Y */
Geert Uytterhoeven39f8ea42017-03-10 15:15:17 +0100836static void lcd_clear_fast_p8(struct charlcd *charlcd)
Willy Tarreau698b1512008-11-22 11:29:33 +0100837{
838 int pos;
Bastien Armandc3ed0af2014-04-04 21:45:07 +0200839
Fengguang Wud4d2dbc2012-09-09 16:23:46 +0800840 spin_lock_irq(&pprt_lock);
Geert Uytterhoeven39f8ea42017-03-10 15:15:17 +0100841 for (pos = 0; pos < charlcd->height * charlcd->hwidth; pos++) {
Willy Tarreau698b1512008-11-22 11:29:33 +0100842 /* present the data to the data port */
843 w_dtr(pprt, ' ');
Henri Häkkinen429ccf02010-06-12 00:27:36 +0300844
845 /* maintain the data during 20 us before the strobe */
Sudip Mukherjeeb64a1cb2016-01-23 14:49:20 +0530846 udelay(20);
Willy Tarreau698b1512008-11-22 11:29:33 +0100847
Daniel Chromikbea74332016-02-11 13:29:23 +0100848 set_bit(LCD_BIT_E, bits);
849 set_bit(LCD_BIT_RS, bits);
850 clear_bit(LCD_BIT_RW, bits);
Willy Tarreau698b1512008-11-22 11:29:33 +0100851 set_ctrl_bits();
852
Henri Häkkinen429ccf02010-06-12 00:27:36 +0300853 /* maintain the strobe during 40 us */
Sudip Mukherjeeb64a1cb2016-01-23 14:49:20 +0530854 udelay(40);
Willy Tarreau698b1512008-11-22 11:29:33 +0100855
Daniel Chromikbea74332016-02-11 13:29:23 +0100856 clear_bit(LCD_BIT_E, bits);
Willy Tarreau698b1512008-11-22 11:29:33 +0100857 set_ctrl_bits();
858
Henri Häkkinen429ccf02010-06-12 00:27:36 +0300859 /* the shortest data takes at least 45 us */
Sudip Mukherjeeb64a1cb2016-01-23 14:49:20 +0530860 udelay(45);
Willy Tarreau698b1512008-11-22 11:29:33 +0100861 }
Fengguang Wud4d2dbc2012-09-09 16:23:46 +0800862 spin_unlock_irq(&pprt_lock);
Willy Tarreau7005b582008-11-13 17:18:59 -0800863}
864
Sudhakar Rajashekhara77943d32009-08-20 18:13:18 -0400865/* fills the display with spaces and resets X/Y */
Geert Uytterhoeven39f8ea42017-03-10 15:15:17 +0100866static void lcd_clear_fast_tilcd(struct charlcd *charlcd)
Sudhakar Rajashekhara77943d32009-08-20 18:13:18 -0400867{
868 int pos;
Bastien Armandc3ed0af2014-04-04 21:45:07 +0200869
Fengguang Wud4d2dbc2012-09-09 16:23:46 +0800870 spin_lock_irq(&pprt_lock);
Geert Uytterhoeven39f8ea42017-03-10 15:15:17 +0100871 for (pos = 0; pos < charlcd->height * charlcd->hwidth; pos++) {
Sudhakar Rajashekhara77943d32009-08-20 18:13:18 -0400872 /* present the data to the data port */
873 w_dtr(pprt, ' ');
Sudip Mukherjeeb64a1cb2016-01-23 14:49:20 +0530874 udelay(60);
Sudhakar Rajashekhara77943d32009-08-20 18:13:18 -0400875 }
876
Fengguang Wud4d2dbc2012-09-09 16:23:46 +0800877 spin_unlock_irq(&pprt_lock);
Sudhakar Rajashekhara77943d32009-08-20 18:13:18 -0400878}
879
Arvind Yadav7b948f12017-07-14 22:04:49 +0530880static const struct charlcd_ops charlcd_serial_ops = {
Geert Uytterhoeven39f8ea42017-03-10 15:15:17 +0100881 .write_cmd = lcd_write_cmd_s,
882 .write_data = lcd_write_data_s,
883 .clear_fast = lcd_clear_fast_s,
884 .backlight = lcd_backlight,
Willy Tarreau7005b582008-11-13 17:18:59 -0800885};
886
Arvind Yadav7b948f12017-07-14 22:04:49 +0530887static const struct charlcd_ops charlcd_parallel_ops = {
Geert Uytterhoeven39f8ea42017-03-10 15:15:17 +0100888 .write_cmd = lcd_write_cmd_p8,
889 .write_data = lcd_write_data_p8,
890 .clear_fast = lcd_clear_fast_p8,
891 .backlight = lcd_backlight,
Willy Tarreau7005b582008-11-13 17:18:59 -0800892};
893
Arvind Yadav7b948f12017-07-14 22:04:49 +0530894static const struct charlcd_ops charlcd_tilcd_ops = {
Geert Uytterhoeven39f8ea42017-03-10 15:15:17 +0100895 .write_cmd = lcd_write_cmd_tilcd,
896 .write_data = lcd_write_data_tilcd,
897 .clear_fast = lcd_clear_fast_tilcd,
898 .backlight = lcd_backlight,
899};
Willy Tarreau7005b582008-11-13 17:18:59 -0800900
Willy Tarreau7005b582008-11-13 17:18:59 -0800901/* initialize the LCD driver */
Peter Huewe36d20412013-02-15 13:47:05 +0100902static void lcd_init(void)
Willy Tarreau698b1512008-11-22 11:29:33 +0100903{
Geert Uytterhoeven39f8ea42017-03-10 15:15:17 +0100904 struct charlcd *charlcd;
905
906 charlcd = charlcd_alloc(0);
907 if (!charlcd)
908 return;
909
910 /*
911 * Init lcd struct with load-time values to preserve exact
912 * current functionality (at least for now).
913 */
914 charlcd->height = lcd_height;
915 charlcd->width = lcd_width;
916 charlcd->bwidth = lcd_bwidth;
917 charlcd->hwidth = lcd_hwidth;
918
Mariusz Gorski87b8e0c2014-11-27 22:36:50 +0100919 switch (selected_lcd_type) {
Henri Häkkinen429ccf02010-06-12 00:27:36 +0300920 case LCD_TYPE_OLD:
921 /* parallel mode, 8 bits */
Mariusz Gorski8037e2a2014-11-27 22:36:51 +0100922 lcd.proto = LCD_PROTO_PARALLEL;
923 lcd.charset = LCD_CHARSET_NORMAL;
924 lcd.pins.e = PIN_STROBE;
925 lcd.pins.rs = PIN_AUTOLF;
Willy Tarreau7005b582008-11-13 17:18:59 -0800926
Geert Uytterhoeven39f8ea42017-03-10 15:15:17 +0100927 charlcd->width = 40;
928 charlcd->bwidth = 40;
929 charlcd->hwidth = 64;
930 charlcd->height = 2;
Willy Tarreau7005b582008-11-13 17:18:59 -0800931 break;
Henri Häkkinen429ccf02010-06-12 00:27:36 +0300932 case LCD_TYPE_KS0074:
933 /* serial mode, ks0074 */
Mariusz Gorski8037e2a2014-11-27 22:36:51 +0100934 lcd.proto = LCD_PROTO_SERIAL;
935 lcd.charset = LCD_CHARSET_KS0074;
936 lcd.pins.bl = PIN_AUTOLF;
937 lcd.pins.cl = PIN_STROBE;
938 lcd.pins.da = PIN_D0;
Willy Tarreau7005b582008-11-13 17:18:59 -0800939
Geert Uytterhoeven39f8ea42017-03-10 15:15:17 +0100940 charlcd->width = 16;
941 charlcd->bwidth = 40;
942 charlcd->hwidth = 16;
943 charlcd->height = 2;
Willy Tarreau7005b582008-11-13 17:18:59 -0800944 break;
Henri Häkkinen429ccf02010-06-12 00:27:36 +0300945 case LCD_TYPE_NEXCOM:
946 /* parallel mode, 8 bits, generic */
Mariusz Gorski8037e2a2014-11-27 22:36:51 +0100947 lcd.proto = LCD_PROTO_PARALLEL;
948 lcd.charset = LCD_CHARSET_NORMAL;
949 lcd.pins.e = PIN_AUTOLF;
950 lcd.pins.rs = PIN_SELECP;
951 lcd.pins.rw = PIN_INITP;
Willy Tarreau7005b582008-11-13 17:18:59 -0800952
Geert Uytterhoeven39f8ea42017-03-10 15:15:17 +0100953 charlcd->width = 16;
954 charlcd->bwidth = 40;
955 charlcd->hwidth = 64;
956 charlcd->height = 2;
Willy Tarreau7005b582008-11-13 17:18:59 -0800957 break;
Henri Häkkinen429ccf02010-06-12 00:27:36 +0300958 case LCD_TYPE_CUSTOM:
959 /* customer-defined */
Mariusz Gorski8037e2a2014-11-27 22:36:51 +0100960 lcd.proto = DEFAULT_LCD_PROTO;
961 lcd.charset = DEFAULT_LCD_CHARSET;
Willy Tarreau7005b582008-11-13 17:18:59 -0800962 /* default geometry will be set later */
963 break;
Henri Häkkinen429ccf02010-06-12 00:27:36 +0300964 case LCD_TYPE_HANTRONIX:
965 /* parallel mode, 8 bits, hantronix-like */
Willy Tarreau698b1512008-11-22 11:29:33 +0100966 default:
Mariusz Gorski8037e2a2014-11-27 22:36:51 +0100967 lcd.proto = LCD_PROTO_PARALLEL;
968 lcd.charset = LCD_CHARSET_NORMAL;
969 lcd.pins.e = PIN_STROBE;
970 lcd.pins.rs = PIN_SELECP;
Willy Tarreau7005b582008-11-13 17:18:59 -0800971
Geert Uytterhoeven39f8ea42017-03-10 15:15:17 +0100972 charlcd->width = 16;
973 charlcd->bwidth = 40;
974 charlcd->hwidth = 64;
975 charlcd->height = 2;
Willy Tarreau7005b582008-11-13 17:18:59 -0800976 break;
Willy Tarreau698b1512008-11-22 11:29:33 +0100977 }
Willy Tarreau7005b582008-11-13 17:18:59 -0800978
Mariusz Gorski8037e2a2014-11-27 22:36:51 +0100979 /* Overwrite with module params set on loading */
Mariusz Gorski1a4b2e32014-11-27 22:36:52 +0100980 if (lcd_height != NOT_SET)
Geert Uytterhoeven39f8ea42017-03-10 15:15:17 +0100981 charlcd->height = lcd_height;
Mariusz Gorski1a4b2e32014-11-27 22:36:52 +0100982 if (lcd_width != NOT_SET)
Geert Uytterhoeven39f8ea42017-03-10 15:15:17 +0100983 charlcd->width = lcd_width;
Mariusz Gorski1a4b2e32014-11-27 22:36:52 +0100984 if (lcd_bwidth != NOT_SET)
Geert Uytterhoeven39f8ea42017-03-10 15:15:17 +0100985 charlcd->bwidth = lcd_bwidth;
Mariusz Gorski1a4b2e32014-11-27 22:36:52 +0100986 if (lcd_hwidth != NOT_SET)
Geert Uytterhoeven39f8ea42017-03-10 15:15:17 +0100987 charlcd->hwidth = lcd_hwidth;
Mariusz Gorski1a4b2e32014-11-27 22:36:52 +0100988 if (lcd_charset != NOT_SET)
Mariusz Gorski8037e2a2014-11-27 22:36:51 +0100989 lcd.charset = lcd_charset;
Mariusz Gorski1a4b2e32014-11-27 22:36:52 +0100990 if (lcd_proto != NOT_SET)
Mariusz Gorski8037e2a2014-11-27 22:36:51 +0100991 lcd.proto = lcd_proto;
992 if (lcd_e_pin != PIN_NOT_SET)
993 lcd.pins.e = lcd_e_pin;
994 if (lcd_rs_pin != PIN_NOT_SET)
995 lcd.pins.rs = lcd_rs_pin;
996 if (lcd_rw_pin != PIN_NOT_SET)
997 lcd.pins.rw = lcd_rw_pin;
998 if (lcd_cl_pin != PIN_NOT_SET)
999 lcd.pins.cl = lcd_cl_pin;
1000 if (lcd_da_pin != PIN_NOT_SET)
1001 lcd.pins.da = lcd_da_pin;
1002 if (lcd_bl_pin != PIN_NOT_SET)
1003 lcd.pins.bl = lcd_bl_pin;
Willy Tarreau7005b582008-11-13 17:18:59 -08001004
Mariusz Gorski8037e2a2014-11-27 22:36:51 +01001005 /* this is used to catch wrong and default values */
Geert Uytterhoeven39f8ea42017-03-10 15:15:17 +01001006 if (charlcd->width <= 0)
1007 charlcd->width = DEFAULT_LCD_WIDTH;
1008 if (charlcd->bwidth <= 0)
1009 charlcd->bwidth = DEFAULT_LCD_BWIDTH;
1010 if (charlcd->hwidth <= 0)
1011 charlcd->hwidth = DEFAULT_LCD_HWIDTH;
1012 if (charlcd->height <= 0)
1013 charlcd->height = DEFAULT_LCD_HEIGHT;
Mariusz Gorski8037e2a2014-11-27 22:36:51 +01001014
1015 if (lcd.proto == LCD_PROTO_SERIAL) { /* SERIAL */
Geert Uytterhoeven39f8ea42017-03-10 15:15:17 +01001016 charlcd->ops = &charlcd_serial_ops;
Willy Tarreau7005b582008-11-13 17:18:59 -08001017
Mariusz Gorski8037e2a2014-11-27 22:36:51 +01001018 if (lcd.pins.cl == PIN_NOT_SET)
1019 lcd.pins.cl = DEFAULT_LCD_PIN_SCL;
1020 if (lcd.pins.da == PIN_NOT_SET)
1021 lcd.pins.da = DEFAULT_LCD_PIN_SDA;
Willy Tarreau7005b582008-11-13 17:18:59 -08001022
Mariusz Gorski8037e2a2014-11-27 22:36:51 +01001023 } else if (lcd.proto == LCD_PROTO_PARALLEL) { /* PARALLEL */
Geert Uytterhoeven39f8ea42017-03-10 15:15:17 +01001024 charlcd->ops = &charlcd_parallel_ops;
Willy Tarreau7005b582008-11-13 17:18:59 -08001025
Mariusz Gorski8037e2a2014-11-27 22:36:51 +01001026 if (lcd.pins.e == PIN_NOT_SET)
1027 lcd.pins.e = DEFAULT_LCD_PIN_E;
1028 if (lcd.pins.rs == PIN_NOT_SET)
1029 lcd.pins.rs = DEFAULT_LCD_PIN_RS;
1030 if (lcd.pins.rw == PIN_NOT_SET)
1031 lcd.pins.rw = DEFAULT_LCD_PIN_RW;
Sudhakar Rajashekhara77943d32009-08-20 18:13:18 -04001032 } else {
Geert Uytterhoeven39f8ea42017-03-10 15:15:17 +01001033 charlcd->ops = &charlcd_tilcd_ops;
Willy Tarreau698b1512008-11-22 11:29:33 +01001034 }
1035
Mariusz Gorski8037e2a2014-11-27 22:36:51 +01001036 if (lcd.pins.bl == PIN_NOT_SET)
1037 lcd.pins.bl = DEFAULT_LCD_PIN_BL;
Willy Tarreau698b1512008-11-22 11:29:33 +01001038
Mariusz Gorski8037e2a2014-11-27 22:36:51 +01001039 if (lcd.pins.e == PIN_NOT_SET)
1040 lcd.pins.e = PIN_NONE;
1041 if (lcd.pins.rs == PIN_NOT_SET)
1042 lcd.pins.rs = PIN_NONE;
1043 if (lcd.pins.rw == PIN_NOT_SET)
1044 lcd.pins.rw = PIN_NONE;
1045 if (lcd.pins.bl == PIN_NOT_SET)
1046 lcd.pins.bl = PIN_NONE;
1047 if (lcd.pins.cl == PIN_NOT_SET)
1048 lcd.pins.cl = PIN_NONE;
1049 if (lcd.pins.da == PIN_NOT_SET)
1050 lcd.pins.da = PIN_NONE;
Willy Tarreau7005b582008-11-13 17:18:59 -08001051
Mariusz Gorski8037e2a2014-11-27 22:36:51 +01001052 if (lcd.charset == NOT_SET)
1053 lcd.charset = DEFAULT_LCD_CHARSET;
Willy Tarreau7005b582008-11-13 17:18:59 -08001054
Mariusz Gorski8037e2a2014-11-27 22:36:51 +01001055 if (lcd.charset == LCD_CHARSET_KS0074)
Geert Uytterhoeven39f8ea42017-03-10 15:15:17 +01001056 charlcd->char_conv = lcd_char_conv_ks0074;
Willy Tarreau698b1512008-11-22 11:29:33 +01001057 else
Geert Uytterhoeven39f8ea42017-03-10 15:15:17 +01001058 charlcd->char_conv = NULL;
Willy Tarreau7005b582008-11-13 17:18:59 -08001059
Mariusz Gorski8037e2a2014-11-27 22:36:51 +01001060 pin_to_bits(lcd.pins.e, lcd_bits[LCD_PORT_D][LCD_BIT_E],
Willy Tarreau698b1512008-11-22 11:29:33 +01001061 lcd_bits[LCD_PORT_C][LCD_BIT_E]);
Mariusz Gorski8037e2a2014-11-27 22:36:51 +01001062 pin_to_bits(lcd.pins.rs, lcd_bits[LCD_PORT_D][LCD_BIT_RS],
Willy Tarreau698b1512008-11-22 11:29:33 +01001063 lcd_bits[LCD_PORT_C][LCD_BIT_RS]);
Mariusz Gorski8037e2a2014-11-27 22:36:51 +01001064 pin_to_bits(lcd.pins.rw, lcd_bits[LCD_PORT_D][LCD_BIT_RW],
Willy Tarreau698b1512008-11-22 11:29:33 +01001065 lcd_bits[LCD_PORT_C][LCD_BIT_RW]);
Mariusz Gorski8037e2a2014-11-27 22:36:51 +01001066 pin_to_bits(lcd.pins.bl, lcd_bits[LCD_PORT_D][LCD_BIT_BL],
Willy Tarreau698b1512008-11-22 11:29:33 +01001067 lcd_bits[LCD_PORT_C][LCD_BIT_BL]);
Mariusz Gorski8037e2a2014-11-27 22:36:51 +01001068 pin_to_bits(lcd.pins.cl, lcd_bits[LCD_PORT_D][LCD_BIT_CL],
Willy Tarreau698b1512008-11-22 11:29:33 +01001069 lcd_bits[LCD_PORT_C][LCD_BIT_CL]);
Mariusz Gorski8037e2a2014-11-27 22:36:51 +01001070 pin_to_bits(lcd.pins.da, lcd_bits[LCD_PORT_D][LCD_BIT_DA],
Willy Tarreau698b1512008-11-22 11:29:33 +01001071 lcd_bits[LCD_PORT_C][LCD_BIT_DA]);
Willy Tarreau7005b582008-11-13 17:18:59 -08001072
Geert Uytterhoeven39f8ea42017-03-10 15:15:17 +01001073 lcd.charlcd = charlcd;
Mariusz Gorski6d8b5882014-11-27 22:36:53 +01001074 lcd.initialized = true;
Willy Tarreau7005b582008-11-13 17:18:59 -08001075}
1076
Willy Tarreau7005b582008-11-13 17:18:59 -08001077/*
1078 * These are the file operation function for user access to /dev/keypad
1079 */
1080
Willy Tarreau698b1512008-11-22 11:29:33 +01001081static ssize_t keypad_read(struct file *file,
Bastien Armandcce75f42014-04-18 18:10:08 +02001082 char __user *buf, size_t count, loff_t *ppos)
Willy Tarreau698b1512008-11-22 11:29:33 +01001083{
Willy Tarreau698b1512008-11-22 11:29:33 +01001084 unsigned i = *ppos;
Bastien Armandcce75f42014-04-18 18:10:08 +02001085 char __user *tmp = buf;
Willy Tarreau7005b582008-11-13 17:18:59 -08001086
Willy Tarreau698b1512008-11-22 11:29:33 +01001087 if (keypad_buflen == 0) {
1088 if (file->f_flags & O_NONBLOCK)
1089 return -EAGAIN;
Willy Tarreau7005b582008-11-13 17:18:59 -08001090
Arnd Bergmann310df692014-01-02 13:07:35 +01001091 if (wait_event_interruptible(keypad_read_wait,
1092 keypad_buflen != 0))
Willy Tarreau698b1512008-11-22 11:29:33 +01001093 return -EINTR;
1094 }
Willy Tarreau7005b582008-11-13 17:18:59 -08001095
Henri Häkkinen429ccf02010-06-12 00:27:36 +03001096 for (; count-- > 0 && (keypad_buflen > 0);
1097 ++i, ++tmp, --keypad_buflen) {
Willy Tarreau698b1512008-11-22 11:29:33 +01001098 put_user(keypad_buffer[keypad_start], tmp);
1099 keypad_start = (keypad_start + 1) % KEYPAD_BUFFER;
1100 }
1101 *ppos = i;
Willy Tarreau7005b582008-11-13 17:18:59 -08001102
Willy Tarreau698b1512008-11-22 11:29:33 +01001103 return tmp - buf;
Willy Tarreau7005b582008-11-13 17:18:59 -08001104}
1105
Willy Tarreau698b1512008-11-22 11:29:33 +01001106static int keypad_open(struct inode *inode, struct file *file)
1107{
Willy Tarreau93dc1772017-09-07 15:37:30 +02001108 int ret;
Willy Tarreau7005b582008-11-13 17:18:59 -08001109
Willy Tarreau93dc1772017-09-07 15:37:30 +02001110 ret = -EBUSY;
1111 if (!atomic_dec_and_test(&keypad_available))
1112 goto fail; /* open only once at a time */
1113
1114 ret = -EPERM;
Willy Tarreau698b1512008-11-22 11:29:33 +01001115 if (file->f_mode & FMODE_WRITE) /* device is read-only */
Willy Tarreau93dc1772017-09-07 15:37:30 +02001116 goto fail;
Willy Tarreau7005b582008-11-13 17:18:59 -08001117
Willy Tarreau698b1512008-11-22 11:29:33 +01001118 keypad_buflen = 0; /* flush the buffer on opening */
Willy Tarreau698b1512008-11-22 11:29:33 +01001119 return 0;
Willy Tarreau93dc1772017-09-07 15:37:30 +02001120 fail:
1121 atomic_inc(&keypad_available);
1122 return ret;
Willy Tarreau7005b582008-11-13 17:18:59 -08001123}
1124
Willy Tarreau698b1512008-11-22 11:29:33 +01001125static int keypad_release(struct inode *inode, struct file *file)
1126{
Mariusz Gorskif4757af2014-11-04 22:47:19 +01001127 atomic_inc(&keypad_available);
Willy Tarreau698b1512008-11-22 11:29:33 +01001128 return 0;
Willy Tarreau7005b582008-11-13 17:18:59 -08001129}
1130
Henri Häkkinen429ccf02010-06-12 00:27:36 +03001131static const struct file_operations keypad_fops = {
Willy Tarreau698b1512008-11-22 11:29:33 +01001132 .read = keypad_read, /* read */
1133 .open = keypad_open, /* open */
1134 .release = keypad_release, /* close */
Arnd Bergmann6038f372010-08-15 18:52:59 +02001135 .llseek = default_llseek,
Willy Tarreau7005b582008-11-13 17:18:59 -08001136};
1137
1138static struct miscdevice keypad_dev = {
Mariusz Gorski6c3773de2014-10-29 23:32:30 +01001139 .minor = KEYPAD_MINOR,
1140 .name = "keypad",
1141 .fops = &keypad_fops,
Willy Tarreau7005b582008-11-13 17:18:59 -08001142};
1143
Peter Huewe36d20412013-02-15 13:47:05 +01001144static void keypad_send_key(const char *string, int max_len)
Willy Tarreau698b1512008-11-22 11:29:33 +01001145{
Willy Tarreau698b1512008-11-22 11:29:33 +01001146 /* send the key to the device only if a process is attached to it. */
Mariusz Gorskif4757af2014-11-04 22:47:19 +01001147 if (!atomic_read(&keypad_available)) {
Willy Tarreau698b1512008-11-22 11:29:33 +01001148 while (max_len-- && keypad_buflen < KEYPAD_BUFFER && *string) {
1149 keypad_buffer[(keypad_start + keypad_buflen++) %
1150 KEYPAD_BUFFER] = *string++;
1151 }
1152 wake_up_interruptible(&keypad_read_wait);
Willy Tarreau7005b582008-11-13 17:18:59 -08001153 }
Willy Tarreau7005b582008-11-13 17:18:59 -08001154}
1155
Henri Häkkinen429ccf02010-06-12 00:27:36 +03001156/* this function scans all the bits involving at least one logical signal,
1157 * and puts the results in the bitfield "phys_read" (one bit per established
1158 * contact), and sets "phys_read_prev" to "phys_read".
Willy Tarreau7005b582008-11-13 17:18:59 -08001159 *
Henri Häkkinen429ccf02010-06-12 00:27:36 +03001160 * Note: to debounce input signals, we will only consider as switched a signal
1161 * which is stable across 2 measures. Signals which are different between two
1162 * reads will be kept as they previously were in their logical form (phys_prev).
1163 * A signal which has just switched will have a 1 in
1164 * (phys_read ^ phys_read_prev).
Willy Tarreau7005b582008-11-13 17:18:59 -08001165 */
Willy Tarreau698b1512008-11-22 11:29:33 +01001166static void phys_scan_contacts(void)
1167{
1168 int bit, bitval;
1169 char oldval;
1170 char bitmask;
1171 char gndmask;
Willy Tarreau7005b582008-11-13 17:18:59 -08001172
Willy Tarreau698b1512008-11-22 11:29:33 +01001173 phys_prev = phys_curr;
1174 phys_read_prev = phys_read;
1175 phys_read = 0; /* flush all signals */
Willy Tarreau7005b582008-11-13 17:18:59 -08001176
Henri Häkkinen429ccf02010-06-12 00:27:36 +03001177 /* keep track of old value, with all outputs disabled */
1178 oldval = r_dtr(pprt) | scan_mask_o;
1179 /* activate all keyboard outputs (active low) */
1180 w_dtr(pprt, oldval & ~scan_mask_o);
1181
1182 /* will have a 1 for each bit set to gnd */
1183 bitmask = PNL_PINPUT(r_str(pprt)) & scan_mask_i;
1184 /* disable all matrix signals */
1185 w_dtr(pprt, oldval);
Willy Tarreau7005b582008-11-13 17:18:59 -08001186
Willy Tarreau698b1512008-11-22 11:29:33 +01001187 /* now that all outputs are cleared, the only active input bits are
1188 * directly connected to the ground
Willy Tarreau7005b582008-11-13 17:18:59 -08001189 */
Willy Tarreau7005b582008-11-13 17:18:59 -08001190
Henri Häkkinen429ccf02010-06-12 00:27:36 +03001191 /* 1 for each grounded input */
1192 gndmask = PNL_PINPUT(r_str(pprt)) & scan_mask_i;
1193
1194 /* grounded inputs are signals 40-44 */
Ksenija Stanojevic35fe0872016-01-03 20:40:58 +01001195 phys_read |= (__u64)gndmask << 40;
Willy Tarreau7005b582008-11-13 17:18:59 -08001196
Willy Tarreau698b1512008-11-22 11:29:33 +01001197 if (bitmask != gndmask) {
Nayeemahmed Badebade8c178932015-08-27 21:02:46 +05301198 /*
1199 * since clearing the outputs changed some inputs, we know
Henri Häkkinen429ccf02010-06-12 00:27:36 +03001200 * that some input signals are currently tied to some outputs.
1201 * So we'll scan them.
Willy Tarreau698b1512008-11-22 11:29:33 +01001202 */
1203 for (bit = 0; bit < 8; bit++) {
Amitoj Kaur Chawla79f2af62015-10-16 22:11:36 +05301204 bitval = BIT(bit);
Willy Tarreau698b1512008-11-22 11:29:33 +01001205
1206 if (!(scan_mask_o & bitval)) /* skip unused bits */
1207 continue;
1208
1209 w_dtr(pprt, oldval & ~bitval); /* enable this output */
1210 bitmask = PNL_PINPUT(r_str(pprt)) & ~gndmask;
Ksenija Stanojevic35fe0872016-01-03 20:40:58 +01001211 phys_read |= (__u64)bitmask << (5 * bit);
Willy Tarreau698b1512008-11-22 11:29:33 +01001212 }
1213 w_dtr(pprt, oldval); /* disable all outputs */
Willy Tarreau7005b582008-11-13 17:18:59 -08001214 }
Nayeemahmed Badebade8c178932015-08-27 21:02:46 +05301215 /*
1216 * this is easy: use old bits when they are flapping,
1217 * use new ones when stable
1218 */
Henri Häkkinen429ccf02010-06-12 00:27:36 +03001219 phys_curr = (phys_prev & (phys_read ^ phys_read_prev)) |
1220 (phys_read & ~(phys_read ^ phys_read_prev));
1221}
1222
1223static inline int input_state_high(struct logical_input *input)
1224{
1225#if 0
1226 /* FIXME:
1227 * this is an invalid test. It tries to catch
1228 * transitions from single-key to multiple-key, but
1229 * doesn't take into account the contacts polarity.
1230 * The only solution to the problem is to parse keys
1231 * from the most complex to the simplest combinations,
1232 * and mark them as 'caught' once a combination
1233 * matches, then unmatch it for all other ones.
1234 */
1235
1236 /* try to catch dangerous transitions cases :
1237 * someone adds a bit, so this signal was a false
1238 * positive resulting from a transition. We should
1239 * invalidate the signal immediately and not call the
1240 * release function.
1241 * eg: 0 -(press A)-> A -(press B)-> AB : don't match A's release.
1242 */
Dominique van den Broeckfdf4a4942014-05-21 14:10:00 +02001243 if (((phys_prev & input->mask) == input->value) &&
1244 ((phys_curr & input->mask) > input->value)) {
Henri Häkkinen429ccf02010-06-12 00:27:36 +03001245 input->state = INPUT_ST_LOW; /* invalidate */
1246 return 1;
1247 }
1248#endif
1249
1250 if ((phys_curr & input->mask) == input->value) {
1251 if ((input->type == INPUT_TYPE_STD) &&
1252 (input->high_timer == 0)) {
1253 input->high_timer++;
Aybuke Ozdemirb565b3f2015-10-03 14:52:09 +03001254 if (input->u.std.press_fct)
Henri Häkkinen429ccf02010-06-12 00:27:36 +03001255 input->u.std.press_fct(input->u.std.press_data);
1256 } else if (input->type == INPUT_TYPE_KBD) {
1257 /* will turn on the light */
1258 keypressed = 1;
1259
1260 if (input->high_timer == 0) {
1261 char *press_str = input->u.kbd.press_str;
Bastien Armandc3ed0af2014-04-04 21:45:07 +02001262
Jake Champline6626de2013-05-04 11:21:17 -04001263 if (press_str[0]) {
1264 int s = sizeof(input->u.kbd.press_str);
Bastien Armandc3ed0af2014-04-04 21:45:07 +02001265
Jake Champline6626de2013-05-04 11:21:17 -04001266 keypad_send_key(press_str, s);
1267 }
Henri Häkkinen429ccf02010-06-12 00:27:36 +03001268 }
1269
1270 if (input->u.kbd.repeat_str[0]) {
1271 char *repeat_str = input->u.kbd.repeat_str;
Bastien Armandc3ed0af2014-04-04 21:45:07 +02001272
Henri Häkkinen429ccf02010-06-12 00:27:36 +03001273 if (input->high_timer >= KEYPAD_REP_START) {
Jake Champline6626de2013-05-04 11:21:17 -04001274 int s = sizeof(input->u.kbd.repeat_str);
Bastien Armandc3ed0af2014-04-04 21:45:07 +02001275
Henri Häkkinen429ccf02010-06-12 00:27:36 +03001276 input->high_timer -= KEYPAD_REP_DELAY;
Jake Champline6626de2013-05-04 11:21:17 -04001277 keypad_send_key(repeat_str, s);
Henri Häkkinen429ccf02010-06-12 00:27:36 +03001278 }
1279 /* we will need to come back here soon */
1280 inputs_stable = 0;
1281 }
1282
1283 if (input->high_timer < 255)
1284 input->high_timer++;
1285 }
1286 return 1;
Henri Häkkinen429ccf02010-06-12 00:27:36 +03001287 }
Vincent Heuken083b3632014-07-10 03:34:28 -07001288
1289 /* else signal falling down. Let's fall through. */
1290 input->state = INPUT_ST_FALLING;
1291 input->fall_timer = 0;
1292
Henri Häkkinen429ccf02010-06-12 00:27:36 +03001293 return 0;
1294}
1295
1296static inline void input_state_falling(struct logical_input *input)
1297{
1298#if 0
1299 /* FIXME !!! same comment as in input_state_high */
Dominique van den Broeckfdf4a4942014-05-21 14:10:00 +02001300 if (((phys_prev & input->mask) == input->value) &&
1301 ((phys_curr & input->mask) > input->value)) {
Henri Häkkinen429ccf02010-06-12 00:27:36 +03001302 input->state = INPUT_ST_LOW; /* invalidate */
1303 return;
1304 }
1305#endif
1306
1307 if ((phys_curr & input->mask) == input->value) {
1308 if (input->type == INPUT_TYPE_KBD) {
1309 /* will turn on the light */
1310 keypressed = 1;
1311
1312 if (input->u.kbd.repeat_str[0]) {
1313 char *repeat_str = input->u.kbd.repeat_str;
Bastien Armandc3ed0af2014-04-04 21:45:07 +02001314
Jake Champline6626de2013-05-04 11:21:17 -04001315 if (input->high_timer >= KEYPAD_REP_START) {
1316 int s = sizeof(input->u.kbd.repeat_str);
Bastien Armandc3ed0af2014-04-04 21:45:07 +02001317
Henri Häkkinen429ccf02010-06-12 00:27:36 +03001318 input->high_timer -= KEYPAD_REP_DELAY;
Jake Champline6626de2013-05-04 11:21:17 -04001319 keypad_send_key(repeat_str, s);
1320 }
Henri Häkkinen429ccf02010-06-12 00:27:36 +03001321 /* we will need to come back here soon */
1322 inputs_stable = 0;
1323 }
1324
1325 if (input->high_timer < 255)
1326 input->high_timer++;
1327 }
1328 input->state = INPUT_ST_HIGH;
1329 } else if (input->fall_timer >= input->fall_time) {
1330 /* call release event */
1331 if (input->type == INPUT_TYPE_STD) {
1332 void (*release_fct)(int) = input->u.std.release_fct;
Bastien Armandc3ed0af2014-04-04 21:45:07 +02001333
Aybuke Ozdemirb565b3f2015-10-03 14:52:09 +03001334 if (release_fct)
Henri Häkkinen429ccf02010-06-12 00:27:36 +03001335 release_fct(input->u.std.release_data);
1336 } else if (input->type == INPUT_TYPE_KBD) {
1337 char *release_str = input->u.kbd.release_str;
Bastien Armandc3ed0af2014-04-04 21:45:07 +02001338
Jake Champline6626de2013-05-04 11:21:17 -04001339 if (release_str[0]) {
1340 int s = sizeof(input->u.kbd.release_str);
Bastien Armandc3ed0af2014-04-04 21:45:07 +02001341
Jake Champline6626de2013-05-04 11:21:17 -04001342 keypad_send_key(release_str, s);
1343 }
Henri Häkkinen429ccf02010-06-12 00:27:36 +03001344 }
1345
1346 input->state = INPUT_ST_LOW;
1347 } else {
1348 input->fall_timer++;
1349 inputs_stable = 0;
1350 }
Willy Tarreau7005b582008-11-13 17:18:59 -08001351}
1352
Willy Tarreau698b1512008-11-22 11:29:33 +01001353static void panel_process_inputs(void)
1354{
Willy Tarreau698b1512008-11-22 11:29:33 +01001355 struct logical_input *input;
Willy Tarreau7005b582008-11-13 17:18:59 -08001356
Willy Tarreau698b1512008-11-22 11:29:33 +01001357 keypressed = 0;
1358 inputs_stable = 1;
Wei Yongjun4654bdb2017-04-25 16:13:34 +00001359 list_for_each_entry(input, &logical_inputs, list) {
Willy Tarreau698b1512008-11-22 11:29:33 +01001360 switch (input->state) {
1361 case INPUT_ST_LOW:
1362 if ((phys_curr & input->mask) != input->value)
1363 break;
Henri Häkkinen429ccf02010-06-12 00:27:36 +03001364 /* if all needed ones were already set previously,
1365 * this means that this logical signal has been
1366 * activated by the releasing of another combined
1367 * signal, so we don't want to match.
1368 * eg: AB -(release B)-> A -(release A)-> 0 :
1369 * don't match A.
Willy Tarreau698b1512008-11-22 11:29:33 +01001370 */
1371 if ((phys_prev & input->mask) == input->value)
1372 break;
1373 input->rise_timer = 0;
1374 input->state = INPUT_ST_RISING;
Miguel Ojeda5617c592018-02-19 16:02:48 +01001375 /* fall through */
Willy Tarreau698b1512008-11-22 11:29:33 +01001376 case INPUT_ST_RISING:
1377 if ((phys_curr & input->mask) != input->value) {
1378 input->state = INPUT_ST_LOW;
1379 break;
Willy Tarreau7005b582008-11-13 17:18:59 -08001380 }
Willy Tarreau698b1512008-11-22 11:29:33 +01001381 if (input->rise_timer < input->rise_time) {
1382 inputs_stable = 0;
1383 input->rise_timer++;
1384 break;
1385 }
1386 input->high_timer = 0;
1387 input->state = INPUT_ST_HIGH;
Miguel Ojeda5617c592018-02-19 16:02:48 +01001388 /* fall through */
Willy Tarreau698b1512008-11-22 11:29:33 +01001389 case INPUT_ST_HIGH:
Henri Häkkinen429ccf02010-06-12 00:27:36 +03001390 if (input_state_high(input))
Willy Tarreau698b1512008-11-22 11:29:33 +01001391 break;
Miguel Ojeda5617c592018-02-19 16:02:48 +01001392 /* fall through */
Willy Tarreau698b1512008-11-22 11:29:33 +01001393 case INPUT_ST_FALLING:
Henri Häkkinen429ccf02010-06-12 00:27:36 +03001394 input_state_falling(input);
Willy Tarreau698b1512008-11-22 11:29:33 +01001395 }
Willy Tarreau7005b582008-11-13 17:18:59 -08001396 }
Willy Tarreau7005b582008-11-13 17:18:59 -08001397}
1398
Kees Cook607a6302017-10-19 14:08:22 -07001399static void panel_scan_timer(struct timer_list *unused)
Willy Tarreau698b1512008-11-22 11:29:33 +01001400{
Mariusz Gorskia8b25802014-11-27 22:36:49 +01001401 if (keypad.enabled && keypad_initialized) {
Fengguang Wud4d2dbc2012-09-09 16:23:46 +08001402 if (spin_trylock_irq(&pprt_lock)) {
Willy Tarreau698b1512008-11-22 11:29:33 +01001403 phys_scan_contacts();
Henri Häkkinen429ccf02010-06-12 00:27:36 +03001404
1405 /* no need for the parport anymore */
Fengguang Wud4d2dbc2012-09-09 16:23:46 +08001406 spin_unlock_irq(&pprt_lock);
Willy Tarreau698b1512008-11-22 11:29:33 +01001407 }
Willy Tarreau7005b582008-11-13 17:18:59 -08001408
Willy Tarreau698b1512008-11-22 11:29:33 +01001409 if (!inputs_stable || phys_curr != phys_prev)
1410 panel_process_inputs();
1411 }
Willy Tarreau7005b582008-11-13 17:18:59 -08001412
Geert Uytterhoevenfda4ae12017-02-06 15:38:10 +01001413 if (keypressed && lcd.enabled && lcd.initialized)
Geert Uytterhoeven39f8ea42017-03-10 15:15:17 +01001414 charlcd_poke(lcd.charlcd);
Willy Tarreau7005b582008-11-13 17:18:59 -08001415
Willy Tarreau698b1512008-11-22 11:29:33 +01001416 mod_timer(&scan_timer, jiffies + INPUT_POLL_TIME);
Willy Tarreau7005b582008-11-13 17:18:59 -08001417}
1418
Willy Tarreau698b1512008-11-22 11:29:33 +01001419static void init_scan_timer(void)
1420{
Aybuke Ozdemirb565b3f2015-10-03 14:52:09 +03001421 if (scan_timer.function)
Willy Tarreau698b1512008-11-22 11:29:33 +01001422 return; /* already started */
Willy Tarreau7005b582008-11-13 17:18:59 -08001423
Kees Cook607a6302017-10-19 14:08:22 -07001424 timer_setup(&scan_timer, panel_scan_timer, 0);
Willy Tarreau698b1512008-11-22 11:29:33 +01001425 scan_timer.expires = jiffies + INPUT_POLL_TIME;
Willy Tarreau698b1512008-11-22 11:29:33 +01001426 add_timer(&scan_timer);
Willy Tarreau7005b582008-11-13 17:18:59 -08001427}
1428
1429/* converts a name of the form "({BbAaPpSsEe}{01234567-})*" to a series of bits.
Henri Häkkinen429ccf02010-06-12 00:27:36 +03001430 * if <omask> or <imask> are non-null, they will be or'ed with the bits
1431 * corresponding to out and in bits respectively.
Willy Tarreau7005b582008-11-13 17:18:59 -08001432 * returns 1 if ok, 0 if error (in which case, nothing is written).
1433 */
Ksenija Stanojevic35fe0872016-01-03 20:40:58 +01001434static u8 input_name2mask(const char *name, __u64 *mask, __u64 *value,
Ksenija Stanojevicd938e1e2016-01-03 20:39:49 +01001435 u8 *imask, u8 *omask)
Willy Tarreau698b1512008-11-22 11:29:33 +01001436{
Ksenija Stanojevic8aa73072016-01-03 20:44:44 +01001437 const char sigtab[] = "EeSsPpAaBb";
Ksenija Stanojevicd938e1e2016-01-03 20:39:49 +01001438 u8 im, om;
Ksenija Stanojevic35fe0872016-01-03 20:40:58 +01001439 __u64 m, v;
Willy Tarreau7005b582008-11-13 17:18:59 -08001440
Ksenija Stanojevicd12f27e2016-01-03 20:42:26 +01001441 om = 0;
1442 im = 0;
Dominique van den Broeck2d534262014-05-24 01:35:24 +02001443 m = 0ULL;
1444 v = 0ULL;
Willy Tarreau698b1512008-11-22 11:29:33 +01001445 while (*name) {
1446 int in, out, bit, neg;
Ksenija Stanojevic8aa73072016-01-03 20:44:44 +01001447 const char *idx;
Bastien Armandc3ed0af2014-04-04 21:45:07 +02001448
Ksenija Stanojevic8aa73072016-01-03 20:44:44 +01001449 idx = strchr(sigtab, *name);
1450 if (!idx)
Willy Tarreau698b1512008-11-22 11:29:33 +01001451 return 0; /* input name not found */
Ksenija Stanojevic8aa73072016-01-03 20:44:44 +01001452
1453 in = idx - sigtab;
Willy Tarreau698b1512008-11-22 11:29:33 +01001454 neg = (in & 1); /* odd (lower) names are negated */
1455 in >>= 1;
Amitoj Kaur Chawla79f2af62015-10-16 22:11:36 +05301456 im |= BIT(in);
Willy Tarreau7005b582008-11-13 17:18:59 -08001457
Willy Tarreau698b1512008-11-22 11:29:33 +01001458 name++;
Ksenija Stanojevic52ebf932016-01-03 20:43:27 +01001459 if (*name >= '0' && *name <= '7') {
Willy Tarreau698b1512008-11-22 11:29:33 +01001460 out = *name - '0';
Amitoj Kaur Chawla79f2af62015-10-16 22:11:36 +05301461 om |= BIT(out);
Dominique van den Broeck3ac76902014-05-21 14:09:59 +02001462 } else if (*name == '-') {
Willy Tarreau698b1512008-11-22 11:29:33 +01001463 out = 8;
Dominique van den Broeck3ac76902014-05-21 14:09:59 +02001464 } else {
Willy Tarreau698b1512008-11-22 11:29:33 +01001465 return 0; /* unknown bit name */
Dominique van den Broeck3ac76902014-05-21 14:09:59 +02001466 }
Willy Tarreau698b1512008-11-22 11:29:33 +01001467
1468 bit = (out * 5) + in;
1469
1470 m |= 1ULL << bit;
1471 if (!neg)
1472 v |= 1ULL << bit;
1473 name++;
Willy Tarreau7005b582008-11-13 17:18:59 -08001474 }
Willy Tarreau698b1512008-11-22 11:29:33 +01001475 *mask = m;
1476 *value = v;
1477 if (imask)
1478 *imask |= im;
1479 if (omask)
1480 *omask |= om;
1481 return 1;
Willy Tarreau7005b582008-11-13 17:18:59 -08001482}
1483
1484/* tries to bind a key to the signal name <name>. The key will send the
1485 * strings <press>, <repeat>, <release> for these respective events.
1486 * Returns the pointer to the new key if ok, NULL if the key could not be bound.
1487 */
Peter Huewe36d20412013-02-15 13:47:05 +01001488static struct logical_input *panel_bind_key(const char *name, const char *press,
1489 const char *repeat,
1490 const char *release)
Willy Tarreau698b1512008-11-22 11:29:33 +01001491{
1492 struct logical_input *key;
Willy Tarreau7005b582008-11-13 17:18:59 -08001493
Dominique van den Broeckfdf4a4942014-05-21 14:10:00 +02001494 key = kzalloc(sizeof(*key), GFP_KERNEL);
Toshiaki Yamaneeb073a92012-07-12 22:01:17 +09001495 if (!key)
Willy Tarreau698b1512008-11-22 11:29:33 +01001496 return NULL;
Toshiaki Yamaneeb073a92012-07-12 22:01:17 +09001497
Willy Tarreau698b1512008-11-22 11:29:33 +01001498 if (!input_name2mask(name, &key->mask, &key->value, &scan_mask_i,
Kulikov Vasiliycb46f472010-07-12 18:48:24 +04001499 &scan_mask_o)) {
1500 kfree(key);
Willy Tarreau698b1512008-11-22 11:29:33 +01001501 return NULL;
Kulikov Vasiliycb46f472010-07-12 18:48:24 +04001502 }
Willy Tarreau698b1512008-11-22 11:29:33 +01001503
1504 key->type = INPUT_TYPE_KBD;
1505 key->state = INPUT_ST_LOW;
1506 key->rise_time = 1;
1507 key->fall_time = 1;
Willy Tarreau7005b582008-11-13 17:18:59 -08001508
Willy Tarreau698b1512008-11-22 11:29:33 +01001509 strncpy(key->u.kbd.press_str, press, sizeof(key->u.kbd.press_str));
1510 strncpy(key->u.kbd.repeat_str, repeat, sizeof(key->u.kbd.repeat_str));
1511 strncpy(key->u.kbd.release_str, release,
1512 sizeof(key->u.kbd.release_str));
1513 list_add(&key->list, &logical_inputs);
1514 return key;
Willy Tarreau7005b582008-11-13 17:18:59 -08001515}
1516
Willy Tarreau630231772008-11-22 12:52:18 +01001517#if 0
Willy Tarreau7005b582008-11-13 17:18:59 -08001518/* tries to bind a callback function to the signal name <name>. The function
1519 * <press_fct> will be called with the <press_data> arg when the signal is
1520 * activated, and so on for <release_fct>/<release_data>
Henri Häkkinen429ccf02010-06-12 00:27:36 +03001521 * Returns the pointer to the new signal if ok, NULL if the signal could not
1522 * be bound.
Willy Tarreau7005b582008-11-13 17:18:59 -08001523 */
1524static struct logical_input *panel_bind_callback(char *name,
Monam Agarwal68d386b2014-02-25 19:40:49 +05301525 void (*press_fct)(int),
Willy Tarreau698b1512008-11-22 11:29:33 +01001526 int press_data,
Monam Agarwal68d386b2014-02-25 19:40:49 +05301527 void (*release_fct)(int),
Willy Tarreau698b1512008-11-22 11:29:33 +01001528 int release_data)
1529{
1530 struct logical_input *callback;
Willy Tarreau7005b582008-11-13 17:18:59 -08001531
Dominique van den Broeckfdf4a4942014-05-21 14:10:00 +02001532 callback = kmalloc(sizeof(*callback), GFP_KERNEL);
Toshiaki Yamaneeb073a92012-07-12 22:01:17 +09001533 if (!callback)
Willy Tarreau698b1512008-11-22 11:29:33 +01001534 return NULL;
Toshiaki Yamaneeb073a92012-07-12 22:01:17 +09001535
Willy Tarreau698b1512008-11-22 11:29:33 +01001536 memset(callback, 0, sizeof(struct logical_input));
1537 if (!input_name2mask(name, &callback->mask, &callback->value,
1538 &scan_mask_i, &scan_mask_o))
1539 return NULL;
1540
1541 callback->type = INPUT_TYPE_STD;
1542 callback->state = INPUT_ST_LOW;
1543 callback->rise_time = 1;
1544 callback->fall_time = 1;
1545 callback->u.std.press_fct = press_fct;
1546 callback->u.std.press_data = press_data;
1547 callback->u.std.release_fct = release_fct;
1548 callback->u.std.release_data = release_data;
1549 list_add(&callback->list, &logical_inputs);
1550 return callback;
Willy Tarreau7005b582008-11-13 17:18:59 -08001551}
Willy Tarreau630231772008-11-22 12:52:18 +01001552#endif
Willy Tarreau7005b582008-11-13 17:18:59 -08001553
Willy Tarreau698b1512008-11-22 11:29:33 +01001554static void keypad_init(void)
1555{
1556 int keynum;
Bastien Armandc3ed0af2014-04-04 21:45:07 +02001557
Willy Tarreau698b1512008-11-22 11:29:33 +01001558 init_waitqueue_head(&keypad_read_wait);
1559 keypad_buflen = 0; /* flushes any eventual noisy keystroke */
Willy Tarreau7005b582008-11-13 17:18:59 -08001560
Willy Tarreau698b1512008-11-22 11:29:33 +01001561 /* Let's create all known keys */
Willy Tarreau7005b582008-11-13 17:18:59 -08001562
Willy Tarreau698b1512008-11-22 11:29:33 +01001563 for (keynum = 0; keypad_profile[keynum][0][0]; keynum++) {
1564 panel_bind_key(keypad_profile[keynum][0],
1565 keypad_profile[keynum][1],
1566 keypad_profile[keynum][2],
1567 keypad_profile[keynum][3]);
1568 }
Willy Tarreau7005b582008-11-13 17:18:59 -08001569
Willy Tarreau698b1512008-11-22 11:29:33 +01001570 init_scan_timer();
1571 keypad_initialized = 1;
Willy Tarreau7005b582008-11-13 17:18:59 -08001572}
1573
Willy Tarreau7005b582008-11-13 17:18:59 -08001574/**************************************************/
1575/* device initialization */
1576/**************************************************/
1577
Willy Tarreau698b1512008-11-22 11:29:33 +01001578static void panel_attach(struct parport *port)
Willy Tarreau7005b582008-11-13 17:18:59 -08001579{
Sudip Mukherjee9be83c02015-05-20 20:56:58 +05301580 struct pardev_cb panel_cb;
1581
Willy Tarreau698b1512008-11-22 11:29:33 +01001582 if (port->number != parport)
1583 return;
Willy Tarreau7005b582008-11-13 17:18:59 -08001584
Willy Tarreau698b1512008-11-22 11:29:33 +01001585 if (pprt) {
Toshiaki Yamaneeb073a92012-07-12 22:01:17 +09001586 pr_err("%s: port->number=%d parport=%d, already registered!\n",
1587 __func__, port->number, parport);
Willy Tarreau698b1512008-11-22 11:29:33 +01001588 return;
1589 }
Willy Tarreau7005b582008-11-13 17:18:59 -08001590
Sudip Mukherjee9be83c02015-05-20 20:56:58 +05301591 memset(&panel_cb, 0, sizeof(panel_cb));
1592 panel_cb.private = &pprt;
1593 /* panel_cb.flags = 0 should be PARPORT_DEV_EXCL? */
1594
1595 pprt = parport_register_dev_model(port, "panel", &panel_cb, 0);
Aybuke Ozdemirb565b3f2015-10-03 14:52:09 +03001596 if (!pprt) {
Toshiaki Yamaneeb073a92012-07-12 22:01:17 +09001597 pr_err("%s: port->number=%d parport=%d, parport_register_device() failed\n",
1598 __func__, port->number, parport);
Kulikov Vasiliy10f3f5b2010-07-30 15:08:20 +04001599 return;
1600 }
Willy Tarreau7005b582008-11-13 17:18:59 -08001601
Willy Tarreau698b1512008-11-22 11:29:33 +01001602 if (parport_claim(pprt)) {
Toshiaki Yamaneeb073a92012-07-12 22:01:17 +09001603 pr_err("could not claim access to parport%d. Aborting.\n",
1604 parport);
Kulikov Vasiliy10f3f5b2010-07-30 15:08:20 +04001605 goto err_unreg_device;
Willy Tarreau698b1512008-11-22 11:29:33 +01001606 }
Willy Tarreau7005b582008-11-13 17:18:59 -08001607
Henri Häkkinen429ccf02010-06-12 00:27:36 +03001608 /* must init LCD first, just in case an IRQ from the keypad is
1609 * generated at keypad init
1610 */
Mariusz Gorskia8b25802014-11-27 22:36:49 +01001611 if (lcd.enabled) {
Willy Tarreau698b1512008-11-22 11:29:33 +01001612 lcd_init();
Geert Uytterhoeven39f8ea42017-03-10 15:15:17 +01001613 if (!lcd.charlcd || charlcd_register(lcd.charlcd))
Kulikov Vasiliy10f3f5b2010-07-30 15:08:20 +04001614 goto err_unreg_device;
Willy Tarreau698b1512008-11-22 11:29:33 +01001615 }
Willy Tarreau7005b582008-11-13 17:18:59 -08001616
Mariusz Gorskia8b25802014-11-27 22:36:49 +01001617 if (keypad.enabled) {
Willy Tarreau698b1512008-11-22 11:29:33 +01001618 keypad_init();
Kulikov Vasiliy10f3f5b2010-07-30 15:08:20 +04001619 if (misc_register(&keypad_dev))
1620 goto err_lcd_unreg;
Willy Tarreau698b1512008-11-22 11:29:33 +01001621 }
Kulikov Vasiliy10f3f5b2010-07-30 15:08:20 +04001622 return;
1623
1624err_lcd_unreg:
Mariusz Gorskia8b25802014-11-27 22:36:49 +01001625 if (lcd.enabled)
Geert Uytterhoeven39f8ea42017-03-10 15:15:17 +01001626 charlcd_unregister(lcd.charlcd);
Kulikov Vasiliy10f3f5b2010-07-30 15:08:20 +04001627err_unreg_device:
Geert Uytterhoeven39f8ea42017-03-10 15:15:17 +01001628 kfree(lcd.charlcd);
1629 lcd.charlcd = NULL;
Kulikov Vasiliy10f3f5b2010-07-30 15:08:20 +04001630 parport_unregister_device(pprt);
1631 pprt = NULL;
Willy Tarreau7005b582008-11-13 17:18:59 -08001632}
1633
Willy Tarreau698b1512008-11-22 11:29:33 +01001634static void panel_detach(struct parport *port)
Willy Tarreau7005b582008-11-13 17:18:59 -08001635{
Willy Tarreau698b1512008-11-22 11:29:33 +01001636 if (port->number != parport)
1637 return;
Willy Tarreau7005b582008-11-13 17:18:59 -08001638
Willy Tarreau698b1512008-11-22 11:29:33 +01001639 if (!pprt) {
Toshiaki Yamaneeb073a92012-07-12 22:01:17 +09001640 pr_err("%s: port->number=%d parport=%d, nothing to unregister.\n",
1641 __func__, port->number, parport);
Willy Tarreau698b1512008-11-22 11:29:33 +01001642 return;
1643 }
Aybuke Ozdemirb565b3f2015-10-03 14:52:09 +03001644 if (scan_timer.function)
Sudip Mukherjee7d98c632015-05-12 17:36:08 +05301645 del_timer_sync(&scan_timer);
Willy Tarreau7005b582008-11-13 17:18:59 -08001646
Geert Uytterhoeven3f77b432017-02-06 15:38:08 +01001647 if (keypad.enabled) {
1648 misc_deregister(&keypad_dev);
1649 keypad_initialized = 0;
Peter Huewe0b0595b2009-09-29 01:22:40 +02001650 }
Geert Uytterhoeven3f77b432017-02-06 15:38:08 +01001651
1652 if (lcd.enabled) {
Geert Uytterhoeven39f8ea42017-03-10 15:15:17 +01001653 charlcd_unregister(lcd.charlcd);
Geert Uytterhoeven3f77b432017-02-06 15:38:08 +01001654 lcd.initialized = false;
Geert Uytterhoeven39f8ea42017-03-10 15:15:17 +01001655 kfree(lcd.charlcd);
1656 lcd.charlcd = NULL;
Geert Uytterhoeven3f77b432017-02-06 15:38:08 +01001657 }
1658
1659 /* TODO: free all input signals */
1660 parport_release(pprt);
1661 parport_unregister_device(pprt);
1662 pprt = NULL;
Willy Tarreau7005b582008-11-13 17:18:59 -08001663}
1664
1665static struct parport_driver panel_driver = {
Willy Tarreau698b1512008-11-22 11:29:33 +01001666 .name = "panel",
Sudip Mukherjee9be83c02015-05-20 20:56:58 +05301667 .match_port = panel_attach,
Willy Tarreau698b1512008-11-22 11:29:33 +01001668 .detach = panel_detach,
Sudip Mukherjee9be83c02015-05-20 20:56:58 +05301669 .devmodel = true,
Willy Tarreau7005b582008-11-13 17:18:59 -08001670};
1671
1672/* init function */
Mariusz Gorskid9114762014-11-27 22:36:46 +01001673static int __init panel_init_module(void)
Willy Tarreau698b1512008-11-22 11:29:33 +01001674{
Sudip Mukherjeee1342012015-03-09 20:08:24 +05301675 int selected_keypad_type = NOT_SET, err;
Willy Tarreau7005b582008-11-13 17:18:59 -08001676
Willy Tarreau698b1512008-11-22 11:29:33 +01001677 /* take care of an eventual profile */
1678 switch (profile) {
Henri Häkkinen429ccf02010-06-12 00:27:36 +03001679 case PANEL_PROFILE_CUSTOM:
1680 /* custom profile */
Mariusz Gorski87b8e0c2014-11-27 22:36:50 +01001681 selected_keypad_type = DEFAULT_KEYPAD_TYPE;
1682 selected_lcd_type = DEFAULT_LCD_TYPE;
Willy Tarreau698b1512008-11-22 11:29:33 +01001683 break;
Henri Häkkinen429ccf02010-06-12 00:27:36 +03001684 case PANEL_PROFILE_OLD:
1685 /* 8 bits, 2*16, old keypad */
Mariusz Gorski87b8e0c2014-11-27 22:36:50 +01001686 selected_keypad_type = KEYPAD_TYPE_OLD;
1687 selected_lcd_type = LCD_TYPE_OLD;
1688
1689 /* TODO: This two are a little hacky, sort it out later */
Mariusz Gorski2d35bcf2014-11-27 22:36:48 +01001690 if (lcd_width == NOT_SET)
Willy Tarreau698b1512008-11-22 11:29:33 +01001691 lcd_width = 16;
Mariusz Gorski2d35bcf2014-11-27 22:36:48 +01001692 if (lcd_hwidth == NOT_SET)
Willy Tarreau698b1512008-11-22 11:29:33 +01001693 lcd_hwidth = 16;
1694 break;
Henri Häkkinen429ccf02010-06-12 00:27:36 +03001695 case PANEL_PROFILE_NEW:
1696 /* serial, 2*16, new keypad */
Mariusz Gorski87b8e0c2014-11-27 22:36:50 +01001697 selected_keypad_type = KEYPAD_TYPE_NEW;
1698 selected_lcd_type = LCD_TYPE_KS0074;
Willy Tarreau698b1512008-11-22 11:29:33 +01001699 break;
Henri Häkkinen429ccf02010-06-12 00:27:36 +03001700 case PANEL_PROFILE_HANTRONIX:
1701 /* 8 bits, 2*16 hantronix-like, no keypad */
Mariusz Gorski87b8e0c2014-11-27 22:36:50 +01001702 selected_keypad_type = KEYPAD_TYPE_NONE;
1703 selected_lcd_type = LCD_TYPE_HANTRONIX;
Willy Tarreau698b1512008-11-22 11:29:33 +01001704 break;
Henri Häkkinen429ccf02010-06-12 00:27:36 +03001705 case PANEL_PROFILE_NEXCOM:
1706 /* generic 8 bits, 2*16, nexcom keypad, eg. Nexcom. */
Mariusz Gorski87b8e0c2014-11-27 22:36:50 +01001707 selected_keypad_type = KEYPAD_TYPE_NEXCOM;
1708 selected_lcd_type = LCD_TYPE_NEXCOM;
Willy Tarreau698b1512008-11-22 11:29:33 +01001709 break;
Henri Häkkinen429ccf02010-06-12 00:27:36 +03001710 case PANEL_PROFILE_LARGE:
1711 /* 8 bits, 2*40, old keypad */
Mariusz Gorski87b8e0c2014-11-27 22:36:50 +01001712 selected_keypad_type = KEYPAD_TYPE_OLD;
1713 selected_lcd_type = LCD_TYPE_OLD;
Willy Tarreau698b1512008-11-22 11:29:33 +01001714 break;
Willy Tarreau7005b582008-11-13 17:18:59 -08001715 }
Willy Tarreau7005b582008-11-13 17:18:59 -08001716
Mariusz Gorski8037e2a2014-11-27 22:36:51 +01001717 /*
Mariusz Gorski87b8e0c2014-11-27 22:36:50 +01001718 * Overwrite selection with module param values (both keypad and lcd),
1719 * where the deprecated params have lower prio.
1720 */
Mariusz Gorski1a4b2e32014-11-27 22:36:52 +01001721 if (keypad_enabled != NOT_SET)
Mariusz Gorski87b8e0c2014-11-27 22:36:50 +01001722 selected_keypad_type = keypad_enabled;
Mariusz Gorski1a4b2e32014-11-27 22:36:52 +01001723 if (keypad_type != NOT_SET)
Mariusz Gorski87b8e0c2014-11-27 22:36:50 +01001724 selected_keypad_type = keypad_type;
Willy Tarreau7005b582008-11-13 17:18:59 -08001725
Mariusz Gorski87b8e0c2014-11-27 22:36:50 +01001726 keypad.enabled = (selected_keypad_type > 0);
1727
Mariusz Gorski1a4b2e32014-11-27 22:36:52 +01001728 if (lcd_enabled != NOT_SET)
Mariusz Gorski87b8e0c2014-11-27 22:36:50 +01001729 selected_lcd_type = lcd_enabled;
Mariusz Gorski1a4b2e32014-11-27 22:36:52 +01001730 if (lcd_type != NOT_SET)
Mariusz Gorski87b8e0c2014-11-27 22:36:50 +01001731 selected_lcd_type = lcd_type;
1732
1733 lcd.enabled = (selected_lcd_type > 0);
1734
Sudip Mukherjee733345e2015-02-11 16:57:08 +05301735 if (lcd.enabled) {
1736 /*
1737 * Init lcd struct with load-time values to preserve exact
1738 * current functionality (at least for now).
1739 */
Sudip Mukherjee733345e2015-02-11 16:57:08 +05301740 lcd.charset = lcd_charset;
1741 lcd.proto = lcd_proto;
1742 lcd.pins.e = lcd_e_pin;
1743 lcd.pins.rs = lcd_rs_pin;
1744 lcd.pins.rw = lcd_rw_pin;
1745 lcd.pins.cl = lcd_cl_pin;
1746 lcd.pins.da = lcd_da_pin;
1747 lcd.pins.bl = lcd_bl_pin;
Sudip Mukherjee733345e2015-02-11 16:57:08 +05301748 }
1749
Mariusz Gorski87b8e0c2014-11-27 22:36:50 +01001750 switch (selected_keypad_type) {
Willy Tarreau698b1512008-11-22 11:29:33 +01001751 case KEYPAD_TYPE_OLD:
1752 keypad_profile = old_keypad_profile;
1753 break;
1754 case KEYPAD_TYPE_NEW:
1755 keypad_profile = new_keypad_profile;
1756 break;
1757 case KEYPAD_TYPE_NEXCOM:
1758 keypad_profile = nexcom_keypad_profile;
1759 break;
1760 default:
1761 keypad_profile = NULL;
1762 break;
1763 }
1764
Sudip Mukherjeef43de772015-02-10 17:26:02 +05301765 if (!lcd.enabled && !keypad.enabled) {
1766 /* no device enabled, let's exit */
Geert Uytterhoeven30f468b2017-02-06 15:38:04 +01001767 pr_err("panel driver disabled.\n");
Sudip Mukherjeef43de772015-02-10 17:26:02 +05301768 return -ENODEV;
1769 }
1770
Sudip Mukherjeee1342012015-03-09 20:08:24 +05301771 err = parport_register_driver(&panel_driver);
1772 if (err) {
Toshiaki Yamaneeb073a92012-07-12 22:01:17 +09001773 pr_err("could not register with parport. Aborting.\n");
Sudip Mukherjeee1342012015-03-09 20:08:24 +05301774 return err;
Willy Tarreau698b1512008-11-22 11:29:33 +01001775 }
1776
Willy Tarreau698b1512008-11-22 11:29:33 +01001777 if (pprt)
Geert Uytterhoeven30f468b2017-02-06 15:38:04 +01001778 pr_info("panel driver registered on parport%d (io=0x%lx).\n",
1779 parport, pprt->port->base);
Willy Tarreau698b1512008-11-22 11:29:33 +01001780 else
Geert Uytterhoeven30f468b2017-02-06 15:38:04 +01001781 pr_info("panel driver not yet registered\n");
Willy Tarreau698b1512008-11-22 11:29:33 +01001782 return 0;
Willy Tarreau7005b582008-11-13 17:18:59 -08001783}
1784
Willy Tarreauf6d1fcf2008-11-22 12:04:19 +01001785static void __exit panel_cleanup_module(void)
Willy Tarreau698b1512008-11-22 11:29:33 +01001786{
Willy Tarreau698b1512008-11-22 11:29:33 +01001787 parport_unregister_driver(&panel_driver);
Willy Tarreau7005b582008-11-13 17:18:59 -08001788}
Willy Tarreau7005b582008-11-13 17:18:59 -08001789
Willy Tarreau7005b582008-11-13 17:18:59 -08001790module_init(panel_init_module);
1791module_exit(panel_cleanup_module);
1792MODULE_AUTHOR("Willy Tarreau");
1793MODULE_LICENSE("GPL");
Willy Tarreau7005b582008-11-13 17:18:59 -08001794
1795/*
1796 * Local variables:
1797 * c-indent-level: 4
1798 * tab-width: 8
1799 * End:
1800 */