1a59d1b8e0
Based on 1 normalized pattern(s): this program is free software you can redistribute it and or modify it under the terms of the gnu general public license as published by the free software foundation either version 2 of the license or at your option any later version this program is distributed in the hope that it will be useful but without any warranty without even the implied warranty of merchantability or fitness for a particular purpose see the gnu general public license for more details you should have received a copy of the gnu general public license along with this program if not write to the free software foundation inc 59 temple place suite 330 boston ma 02111 1307 usa extracted by the scancode license scanner the SPDX license identifier GPL-2.0-or-later has been chosen to replace the boilerplate/reference in 1334 file(s). Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Reviewed-by: Allison Randal <allison@lohutok.net> Reviewed-by: Richard Fontana <rfontana@redhat.com> Cc: linux-spdx@vger.kernel.org Link: https://lkml.kernel.org/r/20190527070033.113240726@linutronix.de Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
174 lines
3.5 KiB
C
174 lines
3.5 KiB
C
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
/*
|
|
* Copyright (c) 2000-2001 Vojtech Pavlik <vojtech@ucw.cz>
|
|
* Copyright (c) 2001, 2007 Johann Deneux <johann.deneux@gmail.com>
|
|
*
|
|
* USB/RS232 I-Force joysticks and wheels.
|
|
*/
|
|
|
|
/*
|
|
*/
|
|
|
|
#include "iforce.h"
|
|
|
|
void iforce_serial_xmit(struct iforce *iforce)
|
|
{
|
|
unsigned char cs;
|
|
int i;
|
|
unsigned long flags;
|
|
|
|
if (test_and_set_bit(IFORCE_XMIT_RUNNING, iforce->xmit_flags)) {
|
|
set_bit(IFORCE_XMIT_AGAIN, iforce->xmit_flags);
|
|
return;
|
|
}
|
|
|
|
spin_lock_irqsave(&iforce->xmit_lock, flags);
|
|
|
|
again:
|
|
if (iforce->xmit.head == iforce->xmit.tail) {
|
|
clear_bit(IFORCE_XMIT_RUNNING, iforce->xmit_flags);
|
|
spin_unlock_irqrestore(&iforce->xmit_lock, flags);
|
|
return;
|
|
}
|
|
|
|
cs = 0x2b;
|
|
|
|
serio_write(iforce->serio, 0x2b);
|
|
|
|
serio_write(iforce->serio, iforce->xmit.buf[iforce->xmit.tail]);
|
|
cs ^= iforce->xmit.buf[iforce->xmit.tail];
|
|
XMIT_INC(iforce->xmit.tail, 1);
|
|
|
|
for (i=iforce->xmit.buf[iforce->xmit.tail]; i >= 0; --i) {
|
|
serio_write(iforce->serio, iforce->xmit.buf[iforce->xmit.tail]);
|
|
cs ^= iforce->xmit.buf[iforce->xmit.tail];
|
|
XMIT_INC(iforce->xmit.tail, 1);
|
|
}
|
|
|
|
serio_write(iforce->serio, cs);
|
|
|
|
if (test_and_clear_bit(IFORCE_XMIT_AGAIN, iforce->xmit_flags))
|
|
goto again;
|
|
|
|
clear_bit(IFORCE_XMIT_RUNNING, iforce->xmit_flags);
|
|
|
|
spin_unlock_irqrestore(&iforce->xmit_lock, flags);
|
|
}
|
|
|
|
static void iforce_serio_write_wakeup(struct serio *serio)
|
|
{
|
|
struct iforce *iforce = serio_get_drvdata(serio);
|
|
|
|
iforce_serial_xmit(iforce);
|
|
}
|
|
|
|
static irqreturn_t iforce_serio_irq(struct serio *serio,
|
|
unsigned char data, unsigned int flags)
|
|
{
|
|
struct iforce *iforce = serio_get_drvdata(serio);
|
|
|
|
if (!iforce->pkt) {
|
|
if (data == 0x2b)
|
|
iforce->pkt = 1;
|
|
goto out;
|
|
}
|
|
|
|
if (!iforce->id) {
|
|
if (data > 3 && data != 0xff)
|
|
iforce->pkt = 0;
|
|
else
|
|
iforce->id = data;
|
|
goto out;
|
|
}
|
|
|
|
if (!iforce->len) {
|
|
if (data > IFORCE_MAX_LENGTH) {
|
|
iforce->pkt = 0;
|
|
iforce->id = 0;
|
|
} else {
|
|
iforce->len = data;
|
|
}
|
|
goto out;
|
|
}
|
|
|
|
if (iforce->idx < iforce->len) {
|
|
iforce->csum += iforce->data[iforce->idx++] = data;
|
|
goto out;
|
|
}
|
|
|
|
if (iforce->idx == iforce->len) {
|
|
iforce_process_packet(iforce, (iforce->id << 8) | iforce->idx, iforce->data);
|
|
iforce->pkt = 0;
|
|
iforce->id = 0;
|
|
iforce->len = 0;
|
|
iforce->idx = 0;
|
|
iforce->csum = 0;
|
|
}
|
|
out:
|
|
return IRQ_HANDLED;
|
|
}
|
|
|
|
static int iforce_serio_connect(struct serio *serio, struct serio_driver *drv)
|
|
{
|
|
struct iforce *iforce;
|
|
int err;
|
|
|
|
iforce = kzalloc(sizeof(struct iforce), GFP_KERNEL);
|
|
if (!iforce)
|
|
return -ENOMEM;
|
|
|
|
iforce->bus = IFORCE_232;
|
|
iforce->serio = serio;
|
|
|
|
serio_set_drvdata(serio, iforce);
|
|
|
|
err = serio_open(serio, drv);
|
|
if (err)
|
|
goto fail1;
|
|
|
|
err = iforce_init_device(iforce);
|
|
if (err)
|
|
goto fail2;
|
|
|
|
return 0;
|
|
|
|
fail2: serio_close(serio);
|
|
fail1: serio_set_drvdata(serio, NULL);
|
|
kfree(iforce);
|
|
return err;
|
|
}
|
|
|
|
static void iforce_serio_disconnect(struct serio *serio)
|
|
{
|
|
struct iforce *iforce = serio_get_drvdata(serio);
|
|
|
|
input_unregister_device(iforce->dev);
|
|
serio_close(serio);
|
|
serio_set_drvdata(serio, NULL);
|
|
kfree(iforce);
|
|
}
|
|
|
|
static const struct serio_device_id iforce_serio_ids[] = {
|
|
{
|
|
.type = SERIO_RS232,
|
|
.proto = SERIO_IFORCE,
|
|
.id = SERIO_ANY,
|
|
.extra = SERIO_ANY,
|
|
},
|
|
{ 0 }
|
|
};
|
|
|
|
MODULE_DEVICE_TABLE(serio, iforce_serio_ids);
|
|
|
|
struct serio_driver iforce_serio_drv = {
|
|
.driver = {
|
|
.name = "iforce",
|
|
},
|
|
.description = "RS232 I-Force joysticks and wheels driver",
|
|
.id_table = iforce_serio_ids,
|
|
.write_wakeup = iforce_serio_write_wakeup,
|
|
.interrupt = iforce_serio_irq,
|
|
.connect = iforce_serio_connect,
|
|
.disconnect = iforce_serio_disconnect,
|
|
};
|