From: "Dmitry Torokhov" <dmitry.torokhov@gmail.com>
To: "Hennerich, Michael" <Michael.Hennerich@analog.com>
Cc: bryan.wu@analog.com, linux-input@atrey.karlin.mff.cuni.cz,
Linux Kernel <linux-kernel@vger.kernel.org>,
uclinux-dist-devel@blackfin.uclinux.org
Subject: Re: [PATCH try #3] Blackfin BF54x Input Keypad controller driver
Date: Thu, 11 Oct 2007 15:58:00 -0400 [thread overview]
Message-ID: <d120d5000710111258h187920e0x13cb35358205c5e9@mail.gmail.com> (raw)
In-Reply-To: <600D5CB4DFD93545BF61FF01473D11AC0F13ABFE@limkexm2.ad.analog.com>
Hi Michael,
On 10/11/07, Hennerich, Michael <Michael.Hennerich@analog.com> wrote:
> >From: Dmitry Torokhov [mailto:dmitry.torokhov@gmail.com]
> >Sent: Donnerstag, 11. Oktober 2007 19:27
> >To: bryan.wu@analog.com
> >Cc: Michael Hennerich; linux-input@atrey.karlin.mff.cuni.cz; Linux
> Kernel;
> >uclinux-dist-devel@blackfin.uclinux.org
> >Subject: Re: [PATCH try #3] Blackfin BF54x Input Keypad controller
> driver
> >
> >On Thursday 11 October 2007, Bryan Wu wrote:
> >> From: Michael Hennerich <michael.hennerich@analog.com>
> >> Date: Fri, 12 Oct 2007 00:20:19 +0800
> >> Subject: [PATCH] Blackfin BF54x Input Keypad controller driver
> >>
> >> [try #2] Changelog:
> >> - Coding style issue fixes
> >> - using a temp variable for bf54x_kpad->input
> >> - Other updates according to Dmitry's review
> >>
> >> [try #3] Changelog:
> >> - Coding style cleanups
> >> - Use local copy of keymap
> >> - Remove empty PM functions
> >> - Use input_set_drvdata() since input->private is going away
> >
> >
> >This looks very good, thank youvery much. I have only 1 more suggestion
> >(and I can make the changes locally, you don't need to resubmit) -
> >since it is highly unlikely that we will have a keycode > 65535 do you
> >think we could change keymap to unsigned short. It would save you a
> >couple of bytes. I am also going to change "input->cdev.dev =
> &pdev->dev;"
> >to "input_dev->dev.parent = &pdev->dev;". Please let me know if you are
> >OK with it.
>
> Hi Dmitry,
>
> Thanks for your excellent feedback and support.
>
> We do a pretty similar thing like the omap keypad driver.
> Our keycodes do not exceed KEY_MAX but we encode the ROW and COL into
> the keycode matrix, in order simplify things in a "normal use case"? .
> What we store is u32, 16-bit for the keycode and the upper for private
> use. My understanding is that we then have to set input->keycodesize
> also being u32.
>
> Otherwise the generic input layer might get screwed up?!
>
> Am I wrong here, or do I miss something?
> Either this is a valid use case or I was inspired by a bad example.
>
Thank you very much for alerting me of omap case, I missed it.
Drivers that use complex values in their keymap tables should not use
input->keycode, keycodesize and keycodemax. These fields are only used
by input core if the driver relies on default implementation of
getkeycode() and setkeycode() for manipulations with its keymap. But
this will not work in your case (nor with omap) because your keymap
table does not contain "pure" input keycodes.
Well, I guess the easiest is just not set these fields (and remove the
per-device map allocationand copying) and say that the driver does not
support altering keymaps. After all, like you said, it is an embedded
platform and it is unlikely that users will want to alter keymaps.
However, if you think that this is a nice feature, then you either
need to rethink how you handle your keymap of implement custom
getkeycode and setkeycode methods in your driver. The coice is yours,
I will gladly accept either version of drver.
--
Dmitry
next prev parent reply other threads:[~2007-10-11 19:58 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-10-11 19:18 [PATCH try #3] Blackfin BF54x Input Keypad controller driver Hennerich, Michael
2007-10-11 19:58 ` Dmitry Torokhov [this message]
-- strict thread matches above, loose matches on Subject: below --
2007-10-12 15:09 Hennerich, Michael
2007-10-11 16:28 Bryan Wu
2007-10-11 17:27 ` Dmitry Torokhov
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=d120d5000710111258h187920e0x13cb35358205c5e9@mail.gmail.com \
--to=dmitry.torokhov@gmail.com \
--cc=Michael.Hennerich@analog.com \
--cc=bryan.wu@analog.com \
--cc=linux-input@atrey.karlin.mff.cuni.cz \
--cc=linux-kernel@vger.kernel.org \
--cc=uclinux-dist-devel@blackfin.uclinux.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;
as well as URLs for NNTP newsgroup(s).