All of lore.kernel.org
 help / color / mirror / Atom feed
* [RFC] [PATCH v3 3/4] OMAP4: Keyboard board support
@ 2010-05-31 21:45 Arce, Abraham
  2010-06-01  4:48 ` Felipe Balbi
  0 siblings, 1 reply; 3+ messages in thread
From: Arce, Abraham @ 2010-05-31 21:45 UTC (permalink / raw)
  To: linux-input, linux-omap; +Cc: dmitry.torokhov

Keyboard support for SDP OMAP4430

Signed-off-by: Abraham Arce <x0066660@ti.com>
---
 arch/arm/mach-omap2/board-4430sdp.c |  104 +++++++++++++++++++++++++++++++++++
 1 files changed, 104 insertions(+), 0 deletions(-)

diff --git a/arch/arm/mach-omap2/board-4430sdp.c b/arch/arm/mach-omap2/board-4430sdp.c
index be7a786..ab6ac99 100644
--- a/arch/arm/mach-omap2/board-4430sdp.c
+++ b/arch/arm/mach-omap2/board-4430sdp.c
@@ -30,6 +30,9 @@
 #include <plat/control.h>
 #include <plat/timer-gp.h>
 #include <plat/usb.h>
+#include <plat/omap_device.h>
+#include <plat/omap_hwmod.h>
+#include <plat/omap4-keypad.h>
 #include <asm/hardware/gic.h>
 #include <asm/hardware/cache-l2x0.h>
 
@@ -37,6 +40,102 @@
 #define ETH_KS8851_POWER_ON		48
 #define ETH_KS8851_QUART		138
 
+static int sdp4430_keymap[] = {
+	KEY(0, 0, KEY_E),
+	KEY(0, 1, KEY_R),
+	KEY(0, 2, KEY_T),
+	KEY(0, 3, KEY_HOME),
+	KEY(0, 4, KEY_F5),
+	KEY(0, 5, KEY_UNKNOWN),
+	KEY(0, 6, KEY_I),
+	KEY(0, 7, KEY_LEFTSHIFT),
+
+	KEY(1, 0, KEY_D),
+	KEY(1, 1, KEY_F),
+	KEY(1, 2, KEY_G),
+	KEY(1, 3, KEY_SEND),
+	KEY(1, 4, KEY_F6),
+	KEY(1, 5, KEY_UNKNOWN),
+	KEY(1, 6, KEY_K),
+	KEY(1, 7, KEY_ENTER),
+
+	KEY(2, 0, KEY_X),
+	KEY(2, 1, KEY_C),
+	KEY(2, 2, KEY_V),
+	KEY(2, 3, KEY_END),
+	KEY(2, 4, KEY_F7),
+	KEY(2, 5, KEY_UNKNOWN),
+	KEY(2, 6, KEY_DOT),
+	KEY(2, 7, KEY_CAPSLOCK),
+
+	KEY(3, 0, KEY_Z),
+	KEY(3, 1, KEY_KPPLUS),
+	KEY(3, 2, KEY_B),
+	KEY(3, 3, KEY_F1),
+	KEY(3, 4, KEY_F8),
+	KEY(3, 5, KEY_UNKNOWN),
+	KEY(3, 6, KEY_O),
+	KEY(3, 7, KEY_SPACE),
+
+	KEY(4, 0, KEY_W),
+	KEY(4, 1, KEY_Y),
+	KEY(4, 2, KEY_U),
+	KEY(4, 3, KEY_F2),
+	KEY(4, 4, KEY_VOLUMEUP),
+	KEY(4, 5, KEY_UNKNOWN),
+	KEY(4, 6, KEY_L),
+	KEY(4, 7, KEY_LEFT),
+
+	KEY(5, 0, KEY_S),
+	KEY(5, 1, KEY_H),
+	KEY(5, 2, KEY_J),
+	KEY(5, 3, KEY_F3),
+	KEY(5, 4, KEY_F9),
+	KEY(5, 5, KEY_VOLUMEDOWN),
+	KEY(5, 6, KEY_M),
+	KEY(5, 7, KEY_RIGHT),
+
+	KEY(6, 0, KEY_Q),
+	KEY(6, 1, KEY_A),
+	KEY(6, 2, KEY_N),
+	KEY(6, 3, KEY_BACK),
+	KEY(6, 4, KEY_BACKSPACE),
+	KEY(6, 5, KEY_UNKNOWN),
+	KEY(6, 6, KEY_P),
+	KEY(6, 7, KEY_UP),
+
+	KEY(7, 0, KEY_PROG1),
+	KEY(7, 1, KEY_PROG2),
+	KEY(7, 2, KEY_PROG3),
+	KEY(7, 3, KEY_PROG4),
+	KEY(7, 4, KEY_F4),
+	KEY(7, 5, KEY_UNKNOWN),
+	KEY(7, 6, KEY_OK),
+	KEY(7, 7, KEY_DOWN),
+};
+
+static struct matrix_keymap_data sdp4430_keymap_data = {
+	.keymap			= sdp4430_keymap,
+	.keymap_size		= ARRAY_SIZE(sdp4430_keymap),
+};
+
+static struct omap4_keypad_platform_data sdp4430_keypad_data = {
+	.keymap_data		= &sdp4430_keymap_data,
+	.rows			= 8,
+	.cols			= 8,
+	.device_enable		= omap_device_enable,
+	.device_shutdown	= omap_device_shutdown,
+	.device_idle		= omap_device_idle,
+};
+
+static struct platform_device sdp4430_keypad_device = {
+	.name		= "omap4-keypad",
+	.id		= -1,
+	.dev		= {
+		.platform_data = &sdp4430_keypad_data,
+	},
+};
+
 static struct spi_board_info sdp4430_spi_board_info[] __initdata = {
 	{
 		.modalias               = "ks8851",
@@ -109,6 +208,7 @@ static struct platform_device sdp4430_lcd_device = {
 
 static struct platform_device *sdp4430_devices[] __initdata = {
 	&sdp4430_lcd_device,
+	&sdp4430_keypad_device,
 };
 
 static struct omap_lcd_config sdp4430_lcd_config __initdata = {
@@ -193,6 +293,10 @@ static void __init omap_4430sdp_init(void)
 	if (!cpu_is_omap44xx())
 		usb_musb_init(&musb_board_data);
 
+	status = omap4_init_kp(&sdp4430_keypad_data);
+	if (status)
+		pr_err("Keypad initialization failed: %d\n", status);
+
 	status = omap_ethernet_init();
 	if (status) {
 		pr_err("Ethernet initialization failed: %d\n", status);
-- 
1.5.4.3


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [RFC] [PATCH v3 3/4] OMAP4: Keyboard board support
  2010-05-31 21:45 [RFC] [PATCH v3 3/4] OMAP4: Keyboard board support Arce, Abraham
@ 2010-06-01  4:48 ` Felipe Balbi
  2010-06-02 12:26   ` Arce, Abraham
  0 siblings, 1 reply; 3+ messages in thread
From: Felipe Balbi @ 2010-06-01  4:48 UTC (permalink / raw)
  To: ext Arce, Abraham; +Cc: linux-input, linux-omap, dmitry.torokhov

On Mon, May 31, 2010 at 11:45:39PM +0200, ext Arce, Abraham wrote:
>+static struct omap4_keypad_platform_data sdp4430_keypad_data = {
>+	.keymap_data		= &sdp4430_keymap_data,
>+	.rows			= 8,
>+	.cols			= 8,
>+	.device_enable		= omap_device_enable,
>+	.device_shutdown	= omap_device_shutdown,
>+	.device_idle		= omap_device_idle,

again all three are undefined

-- 
balbi

DefectiveByDesign.org

^ permalink raw reply	[flat|nested] 3+ messages in thread

* RE: [RFC] [PATCH v3 3/4] OMAP4: Keyboard board support
  2010-06-01  4:48 ` Felipe Balbi
@ 2010-06-02 12:26   ` Arce, Abraham
  0 siblings, 0 replies; 3+ messages in thread
From: Arce, Abraham @ 2010-06-02 12:26 UTC (permalink / raw)
  To: felipe.balbi; +Cc: linux-input, linux-omap, dmitry.torokhov

Felipe,

> >+static struct omap4_keypad_platform_data sdp4430_keypad_data = {
> >+	.keymap_data		= &sdp4430_keymap_data,
> >+	.rows			= 8,
> >+	.cols			= 8,
> >+	.device_enable		= omap_device_enable,
> >+	.device_shutdown	= omap_device_shutdown,
> >+	.device_idle		= omap_device_idle,
> 
> again all three are undefined
> 

To be removed...


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2010-06-02 12:26 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-05-31 21:45 [RFC] [PATCH v3 3/4] OMAP4: Keyboard board support Arce, Abraham
2010-06-01  4:48 ` Felipe Balbi
2010-06-02 12:26   ` Arce, Abraham

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.