Linux Audio

Check our new training course

Linux BSP upgrade and security maintenance

Need help to get security updates for your Linux BSP?
Loading...
v3.15
 
  1/*
  2 *  Copyright (c) 2000-2001 Vojtech Pavlik
  3 */
  4
  5/*
  6 * Gunze AHL-51S touchscreen driver for Linux
  7 */
  8
  9/*
 10 * This program is free software; you can redistribute it and/or modify
 11 * it under the terms of the GNU General Public License as published by
 12 * the Free Software Foundation; either version 2 of the License, or
 13 * (at your option) any later version.
 14 *
 15 * This program is distributed in the hope that it will be useful,
 16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 18 * GNU General Public License for more details.
 19 *
 20 * You should have received a copy of the GNU General Public License
 21 * along with this program; if not, write to the Free Software
 22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 23 *
 24 * Should you need to contact me, the author, you can do so either by
 25 * e-mail - mail your message to <vojtech@ucw.cz>, or by paper mail:
 26 * Vojtech Pavlik, Simunkova 1594, Prague 8, 182 00 Czech Republic
 27 */
 28
 29#include <linux/errno.h>
 30#include <linux/kernel.h>
 31#include <linux/module.h>
 32#include <linux/slab.h>
 33#include <linux/input.h>
 34#include <linux/serio.h>
 35
 36#define DRIVER_DESC	"Gunze AHL-51S touchscreen driver"
 37
 38MODULE_AUTHOR("Vojtech Pavlik <vojtech@ucw.cz>");
 39MODULE_DESCRIPTION(DRIVER_DESC);
 40MODULE_LICENSE("GPL");
 41
 42/*
 43 * Definitions & global arrays.
 44 */
 45
 46#define	GUNZE_MAX_LENGTH	10
 47
 48/*
 49 * Per-touchscreen data.
 50 */
 51
 52struct gunze {
 53	struct input_dev *dev;
 54	struct serio *serio;
 55	int idx;
 56	unsigned char data[GUNZE_MAX_LENGTH];
 57	char phys[32];
 58};
 59
 60static void gunze_process_packet(struct gunze* gunze)
 61{
 62	struct input_dev *dev = gunze->dev;
 63
 64	if (gunze->idx != GUNZE_MAX_LENGTH || gunze->data[5] != ',' ||
 65		(gunze->data[0] != 'T' && gunze->data[0] != 'R')) {
 66		printk(KERN_WARNING "gunze.c: bad packet: >%.*s<\n", GUNZE_MAX_LENGTH, gunze->data);
 67		return;
 68	}
 69
 70	input_report_abs(dev, ABS_X, simple_strtoul(gunze->data + 1, NULL, 10));
 71	input_report_abs(dev, ABS_Y, 1024 - simple_strtoul(gunze->data + 6, NULL, 10));
 72	input_report_key(dev, BTN_TOUCH, gunze->data[0] == 'T');
 73	input_sync(dev);
 74}
 75
 76static irqreturn_t gunze_interrupt(struct serio *serio,
 77		unsigned char data, unsigned int flags)
 78{
 79	struct gunze* gunze = serio_get_drvdata(serio);
 80
 81	if (data == '\r') {
 82		gunze_process_packet(gunze);
 83		gunze->idx = 0;
 84	} else {
 85		if (gunze->idx < GUNZE_MAX_LENGTH)
 86			gunze->data[gunze->idx++] = data;
 87	}
 88	return IRQ_HANDLED;
 89}
 90
 91/*
 92 * gunze_disconnect() is the opposite of gunze_connect()
 93 */
 94
 95static void gunze_disconnect(struct serio *serio)
 96{
 97	struct gunze *gunze = serio_get_drvdata(serio);
 98
 99	input_get_device(gunze->dev);
100	input_unregister_device(gunze->dev);
101	serio_close(serio);
102	serio_set_drvdata(serio, NULL);
103	input_put_device(gunze->dev);
104	kfree(gunze);
105}
106
107/*
108 * gunze_connect() is the routine that is called when someone adds a
109 * new serio device that supports Gunze protocol and registers it as
110 * an input device.
111 */
112
113static int gunze_connect(struct serio *serio, struct serio_driver *drv)
114{
115	struct gunze *gunze;
116	struct input_dev *input_dev;
117	int err;
118
119	gunze = kzalloc(sizeof(struct gunze), GFP_KERNEL);
120	input_dev = input_allocate_device();
121	if (!gunze || !input_dev) {
122		err = -ENOMEM;
123		goto fail1;
124	}
125
126	gunze->serio = serio;
127	gunze->dev = input_dev;
128	snprintf(gunze->phys, sizeof(serio->phys), "%s/input0", serio->phys);
129
130	input_dev->name = "Gunze AHL-51S TouchScreen";
131	input_dev->phys = gunze->phys;
132	input_dev->id.bustype = BUS_RS232;
133	input_dev->id.vendor = SERIO_GUNZE;
134	input_dev->id.product = 0x0051;
135	input_dev->id.version = 0x0100;
136	input_dev->dev.parent = &serio->dev;
137	input_dev->evbit[0] = BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS);
138	input_dev->keybit[BIT_WORD(BTN_TOUCH)] = BIT_MASK(BTN_TOUCH);
139	input_set_abs_params(input_dev, ABS_X, 24, 1000, 0, 0);
140	input_set_abs_params(input_dev, ABS_Y, 24, 1000, 0, 0);
141
142	serio_set_drvdata(serio, gunze);
143
144	err = serio_open(serio, drv);
145	if (err)
146		goto fail2;
147
148	err = input_register_device(gunze->dev);
149	if (err)
150		goto fail3;
151
152	return 0;
153
154 fail3:	serio_close(serio);
155 fail2:	serio_set_drvdata(serio, NULL);
156 fail1:	input_free_device(input_dev);
157	kfree(gunze);
158	return err;
159}
160
161/*
162 * The serio driver structure.
163 */
164
165static struct serio_device_id gunze_serio_ids[] = {
166	{
167		.type	= SERIO_RS232,
168		.proto	= SERIO_GUNZE,
169		.id	= SERIO_ANY,
170		.extra	= SERIO_ANY,
171	},
172	{ 0 }
173};
174
175MODULE_DEVICE_TABLE(serio, gunze_serio_ids);
176
177static struct serio_driver gunze_drv = {
178	.driver		= {
179		.name	= "gunze",
180	},
181	.description	= DRIVER_DESC,
182	.id_table	= gunze_serio_ids,
183	.interrupt	= gunze_interrupt,
184	.connect	= gunze_connect,
185	.disconnect	= gunze_disconnect,
186};
187
188module_serio_driver(gunze_drv);
v5.4
  1// SPDX-License-Identifier: GPL-2.0-or-later
  2/*
  3 *  Copyright (c) 2000-2001 Vojtech Pavlik
  4 */
  5
  6/*
  7 * Gunze AHL-51S touchscreen driver for Linux
  8 */
  9
 10/*
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 11 */
 12
 13#include <linux/errno.h>
 14#include <linux/kernel.h>
 15#include <linux/module.h>
 16#include <linux/slab.h>
 17#include <linux/input.h>
 18#include <linux/serio.h>
 19
 20#define DRIVER_DESC	"Gunze AHL-51S touchscreen driver"
 21
 22MODULE_AUTHOR("Vojtech Pavlik <vojtech@ucw.cz>");
 23MODULE_DESCRIPTION(DRIVER_DESC);
 24MODULE_LICENSE("GPL");
 25
 26/*
 27 * Definitions & global arrays.
 28 */
 29
 30#define	GUNZE_MAX_LENGTH	10
 31
 32/*
 33 * Per-touchscreen data.
 34 */
 35
 36struct gunze {
 37	struct input_dev *dev;
 38	struct serio *serio;
 39	int idx;
 40	unsigned char data[GUNZE_MAX_LENGTH];
 41	char phys[32];
 42};
 43
 44static void gunze_process_packet(struct gunze *gunze)
 45{
 46	struct input_dev *dev = gunze->dev;
 47
 48	if (gunze->idx != GUNZE_MAX_LENGTH || gunze->data[5] != ',' ||
 49		(gunze->data[0] != 'T' && gunze->data[0] != 'R')) {
 50		printk(KERN_WARNING "gunze.c: bad packet: >%.*s<\n", GUNZE_MAX_LENGTH, gunze->data);
 51		return;
 52	}
 53
 54	input_report_abs(dev, ABS_X, simple_strtoul(gunze->data + 1, NULL, 10));
 55	input_report_abs(dev, ABS_Y, 1024 - simple_strtoul(gunze->data + 6, NULL, 10));
 56	input_report_key(dev, BTN_TOUCH, gunze->data[0] == 'T');
 57	input_sync(dev);
 58}
 59
 60static irqreturn_t gunze_interrupt(struct serio *serio,
 61		unsigned char data, unsigned int flags)
 62{
 63	struct gunze *gunze = serio_get_drvdata(serio);
 64
 65	if (data == '\r') {
 66		gunze_process_packet(gunze);
 67		gunze->idx = 0;
 68	} else {
 69		if (gunze->idx < GUNZE_MAX_LENGTH)
 70			gunze->data[gunze->idx++] = data;
 71	}
 72	return IRQ_HANDLED;
 73}
 74
 75/*
 76 * gunze_disconnect() is the opposite of gunze_connect()
 77 */
 78
 79static void gunze_disconnect(struct serio *serio)
 80{
 81	struct gunze *gunze = serio_get_drvdata(serio);
 82
 83	input_get_device(gunze->dev);
 84	input_unregister_device(gunze->dev);
 85	serio_close(serio);
 86	serio_set_drvdata(serio, NULL);
 87	input_put_device(gunze->dev);
 88	kfree(gunze);
 89}
 90
 91/*
 92 * gunze_connect() is the routine that is called when someone adds a
 93 * new serio device that supports Gunze protocol and registers it as
 94 * an input device.
 95 */
 96
 97static int gunze_connect(struct serio *serio, struct serio_driver *drv)
 98{
 99	struct gunze *gunze;
100	struct input_dev *input_dev;
101	int err;
102
103	gunze = kzalloc(sizeof(struct gunze), GFP_KERNEL);
104	input_dev = input_allocate_device();
105	if (!gunze || !input_dev) {
106		err = -ENOMEM;
107		goto fail1;
108	}
109
110	gunze->serio = serio;
111	gunze->dev = input_dev;
112	snprintf(gunze->phys, sizeof(serio->phys), "%s/input0", serio->phys);
113
114	input_dev->name = "Gunze AHL-51S TouchScreen";
115	input_dev->phys = gunze->phys;
116	input_dev->id.bustype = BUS_RS232;
117	input_dev->id.vendor = SERIO_GUNZE;
118	input_dev->id.product = 0x0051;
119	input_dev->id.version = 0x0100;
120	input_dev->dev.parent = &serio->dev;
121	input_dev->evbit[0] = BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS);
122	input_dev->keybit[BIT_WORD(BTN_TOUCH)] = BIT_MASK(BTN_TOUCH);
123	input_set_abs_params(input_dev, ABS_X, 24, 1000, 0, 0);
124	input_set_abs_params(input_dev, ABS_Y, 24, 1000, 0, 0);
125
126	serio_set_drvdata(serio, gunze);
127
128	err = serio_open(serio, drv);
129	if (err)
130		goto fail2;
131
132	err = input_register_device(gunze->dev);
133	if (err)
134		goto fail3;
135
136	return 0;
137
138 fail3:	serio_close(serio);
139 fail2:	serio_set_drvdata(serio, NULL);
140 fail1:	input_free_device(input_dev);
141	kfree(gunze);
142	return err;
143}
144
145/*
146 * The serio driver structure.
147 */
148
149static const struct serio_device_id gunze_serio_ids[] = {
150	{
151		.type	= SERIO_RS232,
152		.proto	= SERIO_GUNZE,
153		.id	= SERIO_ANY,
154		.extra	= SERIO_ANY,
155	},
156	{ 0 }
157};
158
159MODULE_DEVICE_TABLE(serio, gunze_serio_ids);
160
161static struct serio_driver gunze_drv = {
162	.driver		= {
163		.name	= "gunze",
164	},
165	.description	= DRIVER_DESC,
166	.id_table	= gunze_serio_ids,
167	.interrupt	= gunze_interrupt,
168	.connect	= gunze_connect,
169	.disconnect	= gunze_disconnect,
170};
171
172module_serio_driver(gunze_drv);