Input: serio - allow registered drivers to get status flag
Parse and pass the status byte information to the registered serio drivers as well as the data bytes. Signed-off-by: David Engraf<david.engraf@sysgo.com> Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
This commit is contained in:
parent
b0f05aadf1
commit
48c27016e1
1 changed files with 20 additions and 4 deletions
|
@ -116,14 +116,15 @@ static void serport_ldisc_close(struct tty_struct *tty)
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* serport_ldisc_receive() is called by the low level tty driver when characters
|
* serport_ldisc_receive() is called by the low level tty driver when characters
|
||||||
* are ready for us. We forward the characters, one by one to the 'interrupt'
|
* are ready for us. We forward the characters and flags, one by one to the
|
||||||
* routine.
|
* 'interrupt' routine.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
static void serport_ldisc_receive(struct tty_struct *tty, const unsigned char *cp, char *fp, int count)
|
static void serport_ldisc_receive(struct tty_struct *tty, const unsigned char *cp, char *fp, int count)
|
||||||
{
|
{
|
||||||
struct serport *serport = (struct serport*) tty->disc_data;
|
struct serport *serport = (struct serport*) tty->disc_data;
|
||||||
unsigned long flags;
|
unsigned long flags;
|
||||||
|
unsigned int ch_flags;
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
spin_lock_irqsave(&serport->lock, flags);
|
spin_lock_irqsave(&serport->lock, flags);
|
||||||
|
@ -131,8 +132,23 @@ static void serport_ldisc_receive(struct tty_struct *tty, const unsigned char *c
|
||||||
if (!test_bit(SERPORT_ACTIVE, &serport->flags))
|
if (!test_bit(SERPORT_ACTIVE, &serport->flags))
|
||||||
goto out;
|
goto out;
|
||||||
|
|
||||||
for (i = 0; i < count; i++)
|
for (i = 0; i < count; i++) {
|
||||||
serio_interrupt(serport->serio, cp[i], 0);
|
switch (fp[i]) {
|
||||||
|
case TTY_FRAME:
|
||||||
|
ch_flags = SERIO_FRAME;
|
||||||
|
break;
|
||||||
|
|
||||||
|
case TTY_PARITY:
|
||||||
|
ch_flags = SERIO_PARITY;
|
||||||
|
break;
|
||||||
|
|
||||||
|
default:
|
||||||
|
ch_flags = 0;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
serio_interrupt(serport->serio, cp[i], ch_flags);
|
||||||
|
}
|
||||||
|
|
||||||
out:
|
out:
|
||||||
spin_unlock_irqrestore(&serport->lock, flags);
|
spin_unlock_irqrestore(&serport->lock, flags);
|
||||||
|
|
Loading…
Add table
Reference in a new issue