summaryrefslogtreecommitdiff
path: root/firmware/target/hosted/ypr0/button-ypr0.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/hosted/ypr0/button-ypr0.c')
-rw-r--r--firmware/target/hosted/ypr0/button-ypr0.c95
1 files changed, 33 insertions, 62 deletions
diff --git a/firmware/target/hosted/ypr0/button-ypr0.c b/firmware/target/hosted/ypr0/button-ypr0.c
index 5953bcebf9..e66ca22737 100644
--- a/firmware/target/hosted/ypr0/button-ypr0.c
+++ b/firmware/target/hosted/ypr0/button-ypr0.c
@@ -19,69 +19,47 @@
19 * 19 *
20 ****************************************************************************/ 20 ****************************************************************************/
21 21
22#include <stdio.h>
23#include <unistd.h>
24#include <fcntl.h>
25#include <stdlib.h> /* EXIT_SUCCESS */
26#include "config.h" 22#include "config.h"
27#include "button.h" 23#include "button.h"
28#include "kernel.h" 24#include "kernel.h"
29#include "system.h" 25#include "system.h"
30#include "button-target.h" 26#include "button-target.h"
31#include <gpio_ypr0.h> /* For headphones sense */ 27#include <gpio_ypr0.h> /* For headphones sense and buttons */
32 28
33/* R0 physical key codes */ 29int button_read_device(void)
34enum ypr0_buttons {
35 R0BTN_NONE = BUTTON_NONE,
36 R0BTN_POWER = 1,
37 R0BTN_UP,
38 R0BTN_DOWN,
39 R0BTN_RIGHT,
40 R0BTN_LEFT,
41 R0BTN_CENTRAL,
42 R0BTN_MENU,
43 R0BTN_BACK,
44 R0BTN_3DOTS = 11,
45};
46
47
48static int r0_btn_fd = 0;
49
50/* Samsung keypad driver doesn't allow multiple key combinations :( */
51static enum ypr0_buttons r0_read_key(void)
52{ 30{
53 unsigned char keys; 31 int key = BUTTON_NONE;
54
55 if (r0_btn_fd < 0)
56 return 0;
57
58 if (read(r0_btn_fd, &keys, 1))
59 return keys;
60 32
61 return 0; 33 /* Check for all the keys */
62} 34 if (!gpio_control(DEV_CTRL_GPIO_IS_HIGH, GPIO_USER_KEY, 0, 0)) {
63 35 key |= BUTTON_USER;
64/* Conversion from physical keypress code to logic key code */ 36 }
65static int key_to_button(enum ypr0_buttons keyboard_button) 37 if (!gpio_control(DEV_CTRL_GPIO_IS_HIGH, GPIO_CENTRAL_KEY, 0, 0)) {
66{ 38 key |= BUTTON_SELECT;
67 switch (keyboard_button) 39 }
68 { 40 if (!gpio_control(DEV_CTRL_GPIO_IS_HIGH, GPIO_UP_KEY, 0, 0)) {
69 default: return BUTTON_NONE; 41 key |= BUTTON_UP;
70 case R0BTN_POWER: return BUTTON_POWER; 42 }
71 case R0BTN_UP: return BUTTON_UP; 43 if (!gpio_control(DEV_CTRL_GPIO_IS_HIGH, GPIO_DOWN_KEY, 0, 0)) {
72 case R0BTN_DOWN: return BUTTON_DOWN; 44 key |= BUTTON_DOWN;
73 case R0BTN_RIGHT: return BUTTON_RIGHT; 45 }
74 case R0BTN_LEFT: return BUTTON_LEFT; 46 if (!gpio_control(DEV_CTRL_GPIO_IS_HIGH, GPIO_LEFT_KEY, 0, 0)) {
75 case R0BTN_CENTRAL: return BUTTON_SELECT; 47 key |= BUTTON_LEFT;
76 case R0BTN_MENU: return BUTTON_MENU; 48 }
77 case R0BTN_BACK: return BUTTON_BACK; 49 if (!gpio_control(DEV_CTRL_GPIO_IS_HIGH, GPIO_RIGHT_KEY, 0, 0)) {
78 case R0BTN_3DOTS: return BUTTON_USER; 50 key |= BUTTON_RIGHT;
51 }
52 if (!gpio_control(DEV_CTRL_GPIO_IS_HIGH, GPIO_MENU_KEY, 0, 0)) {
53 key |= BUTTON_MENU;
54 }
55 if (!gpio_control(DEV_CTRL_GPIO_IS_HIGH, GPIO_BACK_KEY, 0, 0)) {
56 key |= BUTTON_BACK;
57 }
58 if (gpio_control(DEV_CTRL_GPIO_IS_HIGH, GPIO_POWER_KEY, 0, 0)) {
59 key |= BUTTON_POWER;
79 } 60 }
80}
81 61
82int button_read_device(void) 62 return key;
83{
84 return key_to_button(r0_read_key());
85} 63}
86 64
87bool headphones_inserted(void) 65bool headphones_inserted(void)
@@ -90,26 +68,19 @@ bool headphones_inserted(void)
90 return !gpio_control(DEV_CTRL_GPIO_IS_HIGH, GPIO_HEADPHONE_SENSE, 0, 0); 68 return !gpio_control(DEV_CTRL_GPIO_IS_HIGH, GPIO_HEADPHONE_SENSE, 0, 0);
91} 69}
92 70
93/* Open the keypad device: it is offered by r0Btn.ko module */
94void button_init_device(void) 71void button_init_device(void)
95{ 72{
96 r0_btn_fd = open("/dev/r0Btn", O_RDONLY);
97 if (r0_btn_fd < 0)
98 printf("/dev/r0Btn open error!");
99
100 /* Setup GPIO pin for headphone sense, copied from OF */ 73 /* Setup GPIO pin for headphone sense, copied from OF */
101 gpio_control(DEV_CTRL_GPIO_SET_MUX, GPIO_HEADPHONE_SENSE, CONFIG_SION, PAD_CTL_47K_PU); 74 gpio_control(DEV_CTRL_GPIO_SET_MUX, GPIO_HEADPHONE_SENSE, CONFIG_SION, PAD_CTL_47K_PU);
102 gpio_control(DEV_CTRL_GPIO_SET_INPUT, GPIO_HEADPHONE_SENSE, CONFIG_SION, PAD_CTL_47K_PU); 75 gpio_control(DEV_CTRL_GPIO_SET_INPUT, GPIO_HEADPHONE_SENSE, CONFIG_SION, PAD_CTL_47K_PU);
76
77 /* No need to initialize any GPIO pin, since this is done loading the r0Btn module */
103} 78}
104 79
105#ifdef BUTTON_DRIVER_CLOSE 80#ifdef BUTTON_DRIVER_CLOSE
106/* I'm not sure it's called at shutdown...give a check! */ 81/* I'm not sure it's called at shutdown...give a check! */
107void button_close_device(void) 82void button_close_device(void)
108{ 83{
109 if (r0_btn_fd >= 0) {
110 close(r0_btn_fd);
111 printf("/dev/r0Btn closed!");
112 }
113 /* Don't know the precise meaning, but it's done as in the OF, so copied there */ 84 /* Don't know the precise meaning, but it's done as in the OF, so copied there */
114 gpio_control(DEV_CTRL_GPIO_UNSET_MUX, GPIO_HEADPHONE_SENSE, CONFIG_SION, 0); 85 gpio_control(DEV_CTRL_GPIO_UNSET_MUX, GPIO_HEADPHONE_SENSE, CONFIG_SION, 0);
115} 86}