mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: "Dmitry Torokhov" <dmitry.torokhov@gmail.com>
To: "Jeremy Katz" <katzj@redhat.com>
Cc: "Linus Torvalds" <torvalds@linux-foundation.org>,
	"Matthew Garrett" <mjg59@srcf.ucam.org>,
	"Henrique de Moraes Holschuh" <hmh@hmh.eng.br>,
	linux-kernel@vger.kernel.org, davej@redhat.com
Subject: Re: [PATCH] Map volume and brightness events on thinkpads
Date: Tue, 16 Oct 2007 16:19:48 -0400	[thread overview]
Message-ID: <d120d5000710161319w7b98bcc0i7e60b58e16d2c86d@mail.gmail.com> (raw)
In-Reply-To: <1192565511.22919.1.camel@localhost.localdomain>

On 10/16/07, Jeremy Katz <katzj@redhat.com> wrote:
> On Tue, 2007-10-16 at 16:12 -0400, Dmitry Torokhov wrote:
> > On 10/16/07, Linus Torvalds <torvalds@linux-foundation.org> wrote:
> > > On Tue, 16 Oct 2007, Matthew Garrett wrote:
> > > > >
> > > > > It still doesn't mean it belongs inside the stream of data for the keyboard,
> > > > > maskerading as a key press.
> > > >
> > > > But it *is* a key press!
> > >
> > > To get somewhat back on track: volume and brightness (and similar - lid
> > > close etc) events clearly are keypresses.
> > >
> > > However, I would also argue that a keypress that is acted on by the
> > > firmware automatically is *different* from a keypress that hasn't been
> > > acted on: one is a "key was pressed *and* hardware did something
> > > automatically", and the other is just a "key was pressed" event.
> > >
> > > IOW, I think the thinkpad issue (and others like it) should be fixed by
> > > splitting up the KEY_VOLUMEUP "key" into separate KEY_VOLUMEUP and
> > > KEY_VOLUMEUP_NOTIFY key events, so that downstream user mode (and the
> > > kernel itself, for that matter) can know whether it's a informational
> > > message or whether it should be acted upon.
> >
> > I agree that these are 2 different events. My argument is that
> > "VOLUME_UP_NOTIFY" event is similar to "BATTERY_OUT_NOTIFY",
> > "DOCK_UNDOCK_NOTIFY", etc, etc and should be sent not through input
> > layer but through a generic (yet to be designed) notification
> > mechanism. Something lighter than input. Something like uevents over
> > netlink.
>
> Except that I'm _always_ going to have to be able to take these events
> as input events (because of the hardware that sends them that way), so
> why not just have everything be an input event?

Not all hardware, just some.

>
> The alternative is building up something new from the ground-up and then
> having to do translation from input to the new event type (either in the
> kernel or in userspace) which ends up meaning more work for little, if
> any, gain
>

No, I dont think you need to translate. You ahev 2 types of events -
ones require you to take action, others don't. Ones requests (reqular
keypresses), others just notifications.

Right now we have instance where sending events through input device
is simp-ly convenient because driver already has it. But in other
scenarios, when there is no input device in sight, input layer is not
the best transport. Input devices are quite havy (several kilobytes)
you may not want to add them everywhere.

-- 
Dmitry

  reply	other threads:[~2007-10-16 20:20 UTC|newest]

Thread overview: 47+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-10-15 20:45 Jeremy Katz
2007-10-15 21:07 ` Henrique de Moraes Holschuh
2007-10-15 21:27   ` Jeremy Katz
2007-10-16  9:12     ` Henrique de Moraes Holschuh
2007-10-15 21:43   ` Arjan van de Ven
2007-10-16  3:38   ` Jesse Barnes
2007-10-16  8:36     ` Henrique de Moraes Holschuh
2007-10-16  8:49       ` Jesse Barnes
2007-10-16  9:18         ` Henrique de Moraes Holschuh
2007-10-17  2:40           ` Jesse Barnes
2007-10-17  6:25             ` Henrique de Moraes Holschuh
2007-10-17  6:32               ` Jesse Barnes
2007-10-17  6:39                 ` Henrique de Moraes Holschuh
2007-10-16 13:00   ` Matthew Garrett
2007-10-16 14:11     ` Henrique de Moraes Holschuh
2007-10-16 14:21       ` Matthew Garrett
2007-10-16 14:31         ` Henrique de Moraes Holschuh
2007-10-16 14:40           ` Matthew Garrett
2007-10-16 16:56             ` Henrique de Moraes Holschuh
2007-10-16 18:46               ` Matthew Garrett
2007-10-16 19:14                 ` Linus Torvalds
2007-10-16 19:20                   ` Matthew Garrett
2007-10-16 20:02                     ` Henrique de Moraes Holschuh
2007-10-16 20:15                       ` Dmitry Torokhov
2007-10-16 20:12                   ` Dmitry Torokhov
2007-10-16 20:11                     ` Jeremy Katz
2007-10-16 20:19                       ` Dmitry Torokhov [this message]
2007-10-16 20:32                     ` Linus Torvalds
2007-10-17 15:57                       ` Dmitry Torokhov
2007-10-17 16:28                         ` Matthew Garrett
2007-10-17 17:35                           ` Henrique de Moraes Holschuh
2007-10-17 18:59                             ` Dmitry Torokhov
2007-10-17 20:42                               ` Henrique de Moraes Holschuh
2007-10-18 14:37                                 ` Dmitry Torokhov
2007-10-18 22:39                                   ` Henrique de Moraes Holschuh
2007-10-23 15:54                                     ` Dmitry Torokhov
2007-10-23 23:34                                       ` Henrique de Moraes Holschuh
2007-10-16 20:48                     ` Kok, Auke
2007-10-16 20:55                       ` Matthew Garrett
2007-10-16 21:18                         ` Dmitry Torokhov
2007-10-16 20:32                   ` Dave Airlie
2007-10-16 14:27       ` Dmitry Torokhov
2007-10-16 14:54         ` Matthew Garrett
2007-10-16 15:54           ` Dmitry Torokhov
2007-10-16 15:59             ` Matthew Garrett
2007-10-16 18:53 ` Matthew Garrett
2007-10-16 19:23   ` Renato S. Yamane

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=d120d5000710161319w7b98bcc0i7e60b58e16d2c86d@mail.gmail.com \
    --to=dmitry.torokhov@gmail.com \
    --cc=davej@redhat.com \
    --cc=hmh@hmh.eng.br \
    --cc=katzj@redhat.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mjg59@srcf.ucam.org \
    --cc=torvalds@linux-foundation.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®