linux-input.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Dmitry Torokhov <dmitry.torokhov@gmail.com>
To: David Brownell <david-b@pacbell.net>
Cc: davinci-linux-open-source@linux.davincidsp.com,
	Felipe Balbi <felipebalbi@users.sourceforge.net>,
	linux-input@vger.kernel.org
Subject: Re: [patch 2.6.28-rc6-davinci1 5/6] dm355evm input driver
Date: Mon, 12 Jan 2009 22:13:01 -0800	[thread overview]
Message-ID: <20090112220448.ZZRA012@mailhub.coreip.homeip.net> (raw)
In-Reply-To: <200812071159.50267.david-b@pacbell.net>

Hi David,

On Sun, Dec 07, 2008 at 11:59:50AM -0800, David Brownell wrote:
> From: David Brownell <dbrownell@users.sourceforge.net>
> 
> Simple input driver support for the events reported by the
> MSP430 firmware on the DM355 EVM.  Verified using the remote
> included with the kit; docs weren't quite right.  Some of
> the keycode selections might need improvement; I'm hoping
> I implemented the remapping support right, so there's at
> least a runtime workaround.
> 
> Keys on the remote seem to repeat undesirably.  Someone might
> want to see what's up with that, and fix it; it might just
> be an issue of tracking RC5 state and using the toggle.
> 
> Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
> ---
> Depends on the patch for the parent MFD driver, and won't work
> without the patch making GPIO IRQs work on dm355.
> 
> NOTE:  not suitable for mainline until the dm355evm board support
> (and parent MFD driver) is in the merge queue.
> 

It looks like the MFD driver was merged so we need to start wokring
on this one :)

> +		dev_dbg(&keys->pdev->dev,
> +			"input event 0x%04x--> keycode %d\n",
> +			event, keycode);
> +
> +		/* Report press + release ... we can't tell if
> +		 * this is an autorepeat, and we need to guess
> +		 * about the release.
> +		 */
> +		input_report_key(keys->input, keycode, 1);

input_sync() is also needed here.

> +		input_report_key(keys->input, keycode, 0);
> +	}
> +	input_sync(keys->input);
> +}
> +
> +static int dm355evm_setkeycode(struct input_dev *dev, int index, int keycode)
> +{
> +	if (index >= ARRAY_SIZE(dm355evm_keys))
> +		return -EINVAL;
> +
> +	dm355evm_keys[index].keycode = keycode;

You also need to alter dev->keybit to indicate that device may generate
new keycode, otherwise input core will drop event intead of passing it
on. Also I prefer devices that support remapping to keep their copy of
keymap so in unlikely case there are 2 devices in the system they can
have separate keymaps.

> +	return 0;
> +}
> +
> +static int dm355evm_getkeycode(struct input_dev *dev, int index, int *keycode)
> +{
> +	if (index >= ARRAY_SIZE(dm355evm_keys))
> +		return -EINVAL;
> +
> +	return dm355evm_keys[index].keycode;
> +}
> +
> +/*----------------------------------------------------------------------*/
> +
> +static int __devinit dm355evm_keys_probe(struct platform_device *pdev)
> +{
> +	struct dm355evm_keys	*keys;
> +	int			status = -ENOMEM;
> +	struct input_dev	*input;
> +	int			i;
> +
> +	/* allocate instance struct */
> +	keys = kzalloc(sizeof *keys, GFP_KERNEL);
> +	if (!keys)
> +		goto fail0;
> +	platform_set_drvdata(pdev, keys);
> +	keys->pdev = pdev;
> +
> +	/* ... and input dev ... */
> +	input = input_allocate_device();
> +	if (!input)
> +		goto fail0;
> +	keys->input = input;
> +	input_set_drvdata(input, keys);
> +
> +	input->name = "DM355 EVM Controls";
> +	input->phys = "dm355evm/input0";
> +	input->dev.parent = &pdev->dev;
> +
> +	input->id.bustype = BUS_I2C;
> +	input->id.product = 0x0355;
> +	input->id.version = dm355evm_msp_read(DM355EVM_MSP_FIRMREV);
> +
> +	input->evbit[0] = BIT(EV_KEY);
> +	for (i = 0; i < ARRAY_SIZE(dm355evm_keys); i++)
> +		set_bit(dm355evm_keys[i].keycode, input->keybit);
> +
> +	input->keycodemax = ARRAY_SIZE(dm355evm_keys);
> +	input->keycodesize = sizeof(dm355evm_keys[0]);

You don't need to setup keycodesize and keycodemax since you provide
your own get and set keycode helpers.

> +	input->keycode = dm355evm_keys;
> +	input->setkeycode = dm355evm_setkeycode;
> +	input->getkeycode = dm355evm_getkeycode;
> +
> +	/* set up "threaded IRQ handler" */
> +	status = platform_get_irq(pdev, 0);
> +	if (status < 0)
> +		goto fail1;
> +	keys->irq = status;
> +	INIT_WORK(&keys->work, dm355evm_keys_work);
> +
> +	/* REVISIT:  flush the event queue? */
> +
> +	/* register */
> +	status = input_register_device(input);
> +	if (status < 0)
> +		goto fail1;
> +
> +	/* start reporting events */
> +	status = request_irq(keys->irq, dm355evm_keys_irq,
> +			IRQF_TRIGGER_FALLING,
> +			dev_name(&pdev->dev), keys);
> +	if (status < 0) {
> +		input_unregister_device(input);
> +		goto fail1;

You should not call input_free_device() after input_unregister_device().
Either jump to "fail0" or do "input = NULL;".

> +	}
> +
> +	return 0;
> +
> +fail1:
> +	input_free_device(input);
> +fail0:
> +	kfree(keys);
> +	dev_err(&pdev->dev, "can't register, err %d\n", status);
> +	return status;
> +}
> +

-- 
Dmitry

  parent reply	other threads:[~2009-01-13  6:13 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-12-07 19:59 [patch 2.6.28-rc6-davinci1 5/6] dm355evm input driver David Brownell
2008-12-07 20:21 ` Felipe Balbi
2008-12-07 20:28   ` David Brownell
2008-12-07 20:34     ` Felipe Balbi
2008-12-08 21:41     ` Felipe Balbi
2008-12-08 22:19       ` David Brownell
2008-12-11  4:08 ` David Brownell
2009-01-13  6:13 ` Dmitry Torokhov [this message]
2009-01-13  9:42   ` David Brownell
2009-01-14  5:42     ` Dmitry Torokhov
2009-01-14 19:38       ` David Brownell

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=20090112220448.ZZRA012@mailhub.coreip.homeip.net \
    --to=dmitry.torokhov@gmail.com \
    --cc=david-b@pacbell.net \
    --cc=davinci-linux-open-source@linux.davincidsp.com \
    --cc=felipebalbi@users.sourceforge.net \
    --cc=linux-input@vger.kernel.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).