RE: [PATCH v3] input: tegra-kbc: Add Function keymap.

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



> 
> On Wed, Feb 09, 2011 at 11:44:40AM -0800, riyer@xxxxxxxxxx wrote:
> > +
> > +	/*
> > +	 * If the platform uses Fn keymaps, translate keys on a Fn keypress.
> > +	 * Function keycodes are KBC_MAX_COL apart from the plain keycodes.
> > +	 */
> > +	for (i = 0; (i < num_down) && fn_keypress; i++) {
> > +		scancodes[i] += KBC_MAX_COL;
> 
> This should be KBC_MAX_KEY, isn't it?

In my implementation (and in your change) each row contains both Plain and Fn translated keys.
So Cols 0-7 correspond to the plain keys and Cols 8-15 correspond to the Fn keys.
That's why we add KBC_MAX_COL to get to the Fn translation.

This is using the logic from matrix_keypad.h

keymap[MATRIX_SCAN_CODE(row, col, row_shift)] = code;

and #define MATRIX_SCAN_CODE(row, col, row_shift)   (((row) << (row_shift)) + (col))

I will address the latter part after this one is cleared up.

Regards
Rakesh


> -----Original Message-----
> From: Dmitry Torokhov [mailto:dmitry.torokhov@xxxxxxxxx]
> Sent: Wednesday, February 16, 2011 12:12 AM
> To: Rakesh Iyer
> Cc: linux-input@xxxxxxxxxxxxxxx; olofj@xxxxxxxxxxxx; Andrew Chew
> Subject: Re: [PATCH v3] input: tegra-kbc: Add Function keymap.
> 
> On Wed, Feb 09, 2011 at 11:44:40AM -0800, riyer@xxxxxxxxxx wrote:
> > +
> > +	/*
> > +	 * If the platform uses Fn keymaps, translate keys on a Fn keypress.
> > +	 * Function keycodes are KBC_MAX_COL apart from the plain keycodes.
> > +	 */
> > +	for (i = 0; (i < num_down) && fn_keypress; i++) {
> > +		scancodes[i] += KBC_MAX_COL;
> 
> This should be KBC_MAX_KEY, isn't it?
> 
> > +		keycodes[i] = kbc->keycode[scancodes[i]];
> > +	}
> > +
> >  	spin_unlock_irqrestore(&kbc->lock, flags);
> >
> >  	tegra_kbc_report_released_keys(kbc->idev,
> > @@ -596,9 +638,11 @@ static int __devinit tegra_kbc_probe(struct platform_device
> *pdev)
> >  	input_dev->keycodesize = sizeof(kbc->keycode[0]);
> >  	input_dev->keycodemax = ARRAY_SIZE(kbc->keycode);
> >
> > +	/* The driver keymap requires internal processing of Fn keys. */
> >  	keymap_data = pdata->keymap_data ?: &tegra_kbc_default_keymap_data;
> >  	matrix_keypad_build_keymap(keymap_data, KBC_ROW_SHIFT,
> >  				   input_dev->keycode, input_dev->keybit);
> > +	kbc->use_fn_map = pdata->keymap_data ? pdata->use_fn_map : true;
> 
> Why do we tie this flag with the presence of keymap data? If a board
> wants soft processing but otherwise satisfied with the default keymap it
> should be free to do so.
> 
> I have the following, could you check if it makes any sense?
> 
> --
> Dmitry
> 
> 
> Input: tegra-kbc - add function keymap
> 
> From: Rakesh Iyer <riyer@xxxxxxxxxx>
> 
> Add Fn keymap support to allow for internal processing of Fn keys.
> 
> Signed-off-by: Rakesh Iyer <riyer@xxxxxxxxxx>
> Signed-off-by: Dmitry Torokhov <dtor@xxxxxxx>
> ---
> 
>  arch/arm/mach-tegra/include/mach/kbc.h |    1 +
>  drivers/input/keyboard/tegra-kbc.c     |   54 ++++++++++++++++++++++++++++++--
>  2 files changed, 51 insertions(+), 4 deletions(-)
> 
> 
> diff --git a/arch/arm/mach-tegra/include/mach/kbc.h b/arch/arm/mach-
> tegra/include/mach/kbc.h
> index 66ad276..04c7798 100644
> --- a/arch/arm/mach-tegra/include/mach/kbc.h
> +++ b/arch/arm/mach-tegra/include/mach/kbc.h
> @@ -57,5 +57,6 @@ struct tegra_kbc_platform_data {
>  	const struct matrix_keymap_data *keymap_data;
> 
>  	bool wakeup;
> +	bool use_fn_map;
>  };
>  #endif
> diff --git a/drivers/input/keyboard/tegra-kbc.c b/drivers/input/keyboard/tegra-kbc.c
> index ac471b7..7a82af3 100644
> --- a/drivers/input/keyboard/tegra-kbc.c
> +++ b/drivers/input/keyboard/tegra-kbc.c
> @@ -60,7 +60,7 @@
>  #define KBC_KP_ENT1_0	0x34
>  #define KBC_ROW0_MASK_0	0x38
> 
> -#define KBC_ROW_SHIFT	3
> +#define KBC_ROW_SHIFT	4
> 
>  struct tegra_kbc {
>  	void __iomem *mmio;
> @@ -71,8 +71,9 @@ struct tegra_kbc {
>  	spinlock_t lock;
>  	unsigned int repoll_dly;
>  	unsigned long cp_dly_jiffies;
> +	bool use_fn_map;
>  	const struct tegra_kbc_platform_data *pdata;
> -	unsigned short keycode[KBC_MAX_KEY];
> +	unsigned short keycode[KBC_MAX_KEY * 2];
>  	unsigned short current_keys[KBC_MAX_KPENT];
>  	unsigned int num_pressed_keys;
>  	struct timer_list timer;
> @@ -107,6 +108,7 @@ static const u32 tegra_kbc_default_keymap[] = {
>  	KEY(4, 5, KEY_V),
>  	KEY(4, 6, KEY_C),
>  	KEY(4, 7, KEY_SPACE),
> +	KEY(4, 8, KEY_KP7),
> 
>  	KEY(5, 0, KEY_9),
>  	KEY(5, 1, KEY_8),
> @@ -116,6 +118,10 @@ static const u32 tegra_kbc_default_keymap[] = {
>  	KEY(5, 5, KEY_N),
>  	KEY(5, 6, KEY_B),
>  	KEY(5, 7, KEY_BACKSLASH),
> +	KEY(5, 8, KEY_KP9),
> +	KEY(5, 9, KEY_KP8),
> +	KEY(5, 10, KEY_KP4),
> +	KEY(5, 12, KEY_KP1),
> 
>  	KEY(6, 0, KEY_MINUS),
>  	KEY(6, 1, KEY_0),
> @@ -125,6 +131,12 @@ static const u32 tegra_kbc_default_keymap[] = {
>  	KEY(6, 5, KEY_K),
>  	KEY(6, 6, KEY_COMMA),
>  	KEY(6, 7, KEY_M),
> +	KEY(6, 9, KEY_KPSLASH),
> +	KEY(6, 10, KEY_KP6),
> +	KEY(6, 11, KEY_KP5),
> +	KEY(6, 12, KEY_KP3),
> +	KEY(6, 13, KEY_KP2),
> +	KEY(6, 15, KEY_KP0),
> 
>  	KEY(7, 1, KEY_EQUAL),
>  	KEY(7, 2, KEY_RIGHTBRACE),
> @@ -143,6 +155,10 @@ static const u32 tegra_kbc_default_keymap[] = {
>  	KEY(11, 3, KEY_SEMICOLON),
>  	KEY(11, 4, KEY_SLASH),
>  	KEY(11, 5, KEY_DOT),
> +	KEY(11, 9, KEY_KPASTERISK),
> +	KEY(11, 11, KEY_KPMINUS),
> +	KEY(11, 12, KEY_KPPLUS),
> +	KEY(11, 13, KEY_KPDOT),
> 
>  	KEY(12, 0, KEY_F10),
>  	KEY(12, 1, KEY_F9),
> @@ -152,6 +168,7 @@ static const u32 tegra_kbc_default_keymap[] = {
>  	KEY(12, 5, KEY_UP),
>  	KEY(12, 6, KEY_PRINT),
>  	KEY(12, 7, KEY_PAUSE),
> +	KEY(12, 13, KEY_VOLUMEUP),
> 
>  	KEY(13, 0, KEY_INSERT),
>  	KEY(13, 1, KEY_DELETE),
> @@ -160,6 +177,11 @@ static const u32 tegra_kbc_default_keymap[] = {
>  	KEY(13, 5, KEY_RIGHT),
>  	KEY(13, 6, KEY_DOWN),
>  	KEY(13, 7, KEY_LEFT),
> +	KEY(13, 11, KEY_HOME),
> +	KEY(13, 12, KEY_END),
> +	KEY(13, 13, KEY_BRIGHTNESSDOWN),
> +	KEY(13, 14, KEY_VOLUMEDOWN),
> +	KEY(13, 15, KEY_BRIGHTNESSUP),
> 
>  	KEY(14, 0, KEY_F11),
>  	KEY(14, 1, KEY_F12),
> @@ -169,6 +191,9 @@ static const u32 tegra_kbc_default_keymap[] = {
>  	KEY(14, 5, KEY_F3),
>  	KEY(14, 6, KEY_1),
>  	KEY(14, 7, KEY_F7),
> +	KEY(14, 8, KEY_NUMLOCK),
> +	KEY(14, 9, KEY_SCROLLLOCK),
> +	KEY(14, 10, KEY_MUTE),
> 
>  	KEY(15, 0, KEY_ESC),
>  	KEY(15, 1, KEY_GRAVE),
> @@ -178,6 +203,7 @@ static const u32 tegra_kbc_default_keymap[] = {
>  	KEY(15, 5, KEY_F2),
>  	KEY(15, 6, KEY_CAPSLOCK),
>  	KEY(15, 7, KEY_F6),
> +	KEY(15, 12, KEY_HELP),
>  };
> 
>  static const struct matrix_keymap_data tegra_kbc_default_keymap_data = {
> @@ -224,6 +250,7 @@ static void tegra_kbc_report_keys(struct tegra_kbc *kbc)
>  	unsigned int i;
>  	unsigned int num_down = 0;
>  	unsigned long flags;
> +	bool fn_keypress = false;
> 
>  	spin_lock_irqsave(&kbc->lock, flags);
>  	for (i = 0; i < KBC_MAX_KPENT; i++) {
> @@ -237,13 +264,29 @@ static void tegra_kbc_report_keys(struct tegra_kbc *kbc)
>  				MATRIX_SCAN_CODE(row, col, KBC_ROW_SHIFT);
> 
>  			scancodes[num_down] = scancode;
> -			keycodes[num_down++] = kbc->keycode[scancode];
> +			keycodes[num_down] = kbc->keycode[scancode];
> +			/* If driver uses Fn map, do not report the Fn key. */
> +			if (keycodes[num_down] == KEY_FN && kbc->use_fn_map)
> +				fn_keypress = true;
> +			else
> +				num_down++;
>  		}
> 
>  		val >>= 8;
>  	}
>  	spin_unlock_irqrestore(&kbc->lock, flags);
> 
> +	/*
> +	 * If the platform uses Fn keymaps, translate keys on a Fn keypress.
> +	 * Function keycodes are KBC_MAX_KEY apart from the plain keycodes.
> +	 */
> +	if (fn_keypress) {
> +		for (i = 0; i < num_down; i++) {
> +			scancodes[i] += KBC_MAX_KEY;
> +			keycodes[i] = kbc->keycode[scancodes[i]];
> +		}
> +	}
> +
>  	tegra_kbc_report_released_keys(kbc->idev,
>  				       kbc->current_keys, kbc->num_pressed_keys,
>  				       keycodes, num_down);
> @@ -594,8 +637,11 @@ static int __devinit tegra_kbc_probe(struct platform_device *pdev)
> 
>  	input_dev->keycode = kbc->keycode;
>  	input_dev->keycodesize = sizeof(kbc->keycode[0]);
> -	input_dev->keycodemax = ARRAY_SIZE(kbc->keycode);
> +	input_dev->keycodemax = KBC_MAX_KEY;
> +	if (pdata->use_fn_map)
> +		input_dev->keycodemax *= 2;
> 
> +	kbc->use_fn_map = pdata->use_fn_map;
>  	keymap_data = pdata->keymap_data ?: &tegra_kbc_default_keymap_data;
>  	matrix_keypad_build_keymap(keymap_data, KBC_ROW_SHIFT,
>  				   input_dev->keycode, input_dev->keybit);
-----------------------------------------------------------------------------------
This email message is for the sole use of the intended recipient(s) and may contain
confidential information.  Any unauthorized review, use, disclosure or distribution
is prohibited.  If you are not the intended recipient, please contact the sender by
reply email and destroy all copies of the original message.
-----------------------------------------------------------------------------------
--
To unsubscribe from this list: send the line "unsubscribe linux-input" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[Index of Archives]     [Linux Media Devel]     [Linux USB Devel]     [Video for Linux]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]     [Linux Wireless Networking]     [Linux Omap]

  Powered by Linux