2 * linux/arch/arm/mach-omap2/board-apollon-keys.c
4 * Copyright (C) 2007 Samsung Electronics
5 * Author: Kyungmin Park <kyungmin.park@samsung.com>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
12 #include <linux/kernel.h>
13 #include <linux/init.h>
14 #include <linux/platform_device.h>
15 #include <linux/input.h>
16 #include <linux/gpio_keys.h>
18 #include <asm/arch/gpio.h>
19 #include <asm/arch/mux.h>
21 #define SW_ENTER_GPIO16 16
22 #define SW_UP_GPIO17 17
23 #define SW_DOWN_GPIO58 58
24 #define SW_LEFT_GPIO95 95
25 #define SW_RIGHT_GPIO96 96
26 #define SW_ESC_GPIO97 97
28 static struct gpio_keys_button apollon_gpio_keys_buttons
[] = {
31 .gpio
= SW_ENTER_GPIO16
,
41 .gpio
= SW_DOWN_GPIO58
,
46 .gpio
= SW_LEFT_GPIO95
,
51 .gpio
= SW_RIGHT_GPIO96
,
56 .gpio
= SW_ESC_GPIO97
,
61 static struct gpio_keys_platform_data apollon_gpio_keys
= {
62 .buttons
= apollon_gpio_keys_buttons
,
63 .nbuttons
= ARRAY_SIZE(apollon_gpio_keys_buttons
),
66 static struct platform_device apollon_gpio_keys_device
= {
70 .platform_data
= &apollon_gpio_keys
,
74 static void __init
apollon_sw_init(void)
77 omap_cfg_reg(Y11_242X_GPIO16
);
79 omap_cfg_reg(AA12_242X_GPIO17
);
81 omap_cfg_reg(AA8_242X_GPIO58
);
85 omap_cfg_reg(P18_24XX_GPIO95
);
87 omap_cfg_reg(M18_24XX_GPIO96
);
89 omap_cfg_reg(L14_24XX_GPIO97
);
91 apollon_gpio_keys
.nbuttons
= 3;
94 static int __init
omap_apollon_keys_init(void)
98 return platform_device_register(&apollon_gpio_keys_device
);
101 arch_initcall(omap_apollon_keys_init
);