summaryrefslogtreecommitdiff
path: root/firmware/target/arm/imx233/button-imx233.c
diff options
context:
space:
mode:
authorAmaury Pouly <amaury.pouly@gmail.com>2014-02-22 20:28:51 +0100
committerAmaury Pouly <amaury.pouly@gmail.com>2014-02-22 20:28:51 +0100
commit82b86d4316d0e9d74c5ea086797750b0975e9023 (patch)
tree5033684acb7a78f79e1cf9907e836a719bcf4020 /firmware/target/arm/imx233/button-imx233.c
parentc02bc1afd2a2400a41a863918bfe4eaf0255d60d (diff)
downloadrockbox-82b86d4316d0e9d74c5ea086797750b0975e9023.tar.gz
rockbox-82b86d4316d0e9d74c5ea086797750b0975e9023.zip
imx233: introduce new generic button driver
This driver will subsume the old button-lradc driver and support far more options. It can sense LRADC channels, PSWITCH, GPIOs and it handles special "buttons" like headphone insertion and hold detection. It also provides a more natural description of the buttons using a target-defined table with some macros to make it easy to read and write. It uniformely handles debouncing on LRADC channels and PSWITCH. Change-Id: Ie61d1f593fdcf3bd456ba1d53a1fd784286834ce
Diffstat (limited to 'firmware/target/arm/imx233/button-imx233.c')
-rw-r--r--firmware/target/arm/imx233/button-imx233.c261
1 files changed, 261 insertions, 0 deletions
diff --git a/firmware/target/arm/imx233/button-imx233.c b/firmware/target/arm/imx233/button-imx233.c
new file mode 100644
index 0000000000..4ebba41ad3
--- /dev/null
+++ b/firmware/target/arm/imx233/button-imx233.c
@@ -0,0 +1,261 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Copyright (C) 2013 by Amaury Pouly
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
16 *
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
19 *
20 ****************************************************************************/
21
22#include <stdlib.h>
23
24#include "cpu.h"
25#include "kernel.h"
26#include "button-imx233.h"
27#include "lradc-imx233.h"
28#include "pinctrl-imx233.h"
29#include "power-imx233.h"
30#include "backlight.h"
31
32static int delay_chan = -1; /* delay channel used to trigger */
33static int raw_val[LRADC_NUM_CHANNELS]; /* channel values sampled (last two) */
34static int chan_mask; /* trigger channel mask */
35static int irq_chan_mask; /* triggered channel mask */
36static int src_map[LRADC_NUM_SOURCES]; /* physical -> virtual channel map */
37static int src_mask; /* sampled source mask */
38#ifdef HAS_BUTTON_HOLD
39static int hold_idx = -1; /* index of hold button in map */
40#endif
41#ifdef HAVE_HEADPHONE_DETECTION
42static int jack_idx = -1; /* index of jack detect in map */
43#endif
44
45/* shortcut of button map */
46#define MAP imx233_button_map
47
48/* sample rate for LRADC */
49#define RATE HZ
50/* number of samples per irq */
51#define SAMPLES 10
52/* delay's delay */
53#define DELAY (LRADC_DELAY_FREQ / RATE / SAMPLES)
54
55/* correct value for channel with builtin dividers */
56static int correct_lradc(int src, int raw)
57{
58 if(src == LRADC_SRC_VDDIO)
59 return raw * 2;
60 else
61 return raw;
62}
63
64/* return raw value for the button */
65int imx233_button_read_raw(int idx)
66{
67 if(MAP[idx].periph == IMX233_BUTTON_GPIO)
68 return imx233_pinctrl_get_gpio(MAP[idx].u.gpio.bank, MAP[idx].u.gpio.pin);
69 else if(MAP[idx].periph == IMX233_BUTTON_LRADC)
70 return correct_lradc(MAP[idx].u.lradc.src, raw_val[src_map[MAP[idx].u.lradc.src]]);
71 else if(MAP[idx].periph == IMX233_BUTTON_PSWITCH)
72 return imx233_power_read_pswitch();
73 else
74 return -1;
75}
76
77/* return cooked (interpreted) value for the button, ignoring debouncing */
78static bool imx233_button_read_cooked(int idx)
79{
80 int raw = imx233_button_read_raw(idx);
81 bool res;
82 if(MAP[idx].periph == IMX233_BUTTON_GPIO)
83 {
84 res = raw;
85 }
86 else if(MAP[idx].periph == IMX233_BUTTON_LRADC)
87 {
88 /* correct value in relative mode */
89 int rel = MAP[idx].u.lradc.relative;
90 if(rel != -1)
91 raw = (raw * MAP[rel].u.lradc.value) / imx233_button_read_raw(rel);
92 res = abs(raw - MAP[idx].u.lradc.value) <= 30;
93 }
94 else if(MAP[idx].periph == IMX233_BUTTON_PSWITCH)
95 {
96 res = raw == MAP[idx].u.pswitch.level;
97 }
98 else
99 res = false;
100 /* handle inversion */
101 if(MAP[idx].flags & IMX233_BUTTON_INVERTED)
102 res = !res;
103 return res;
104}
105
106/* finish round */
107static void do_round(void)
108{
109 for(int i = 0; MAP[i].btn != IMX233_BUTTON_END; i++)
110 {
111 bool cooked = imx233_button_read_cooked(i);
112 if(MAP[i].last_val == cooked)
113 MAP[i].rounds = MIN(MAP[i].rounds + 1, MAP[i].threshold);
114 else
115 MAP[i].rounds = 1;
116 MAP[i].last_val = cooked;
117 }
118}
119
120/* process IRQ */
121static void button_lradc_irq(int chan)
122{
123 /* read value */
124 raw_val[chan] = imx233_lradc_read_channel(chan) / SAMPLES;
125 imx233_lradc_clear_channel(chan);
126 imx233_lradc_setup_sampling(chan, true, SAMPLES - 1);
127 /* record irq, trigger delay if all IRQs have been fired */
128 irq_chan_mask |= 1 << chan;
129 if(irq_chan_mask == chan_mask)
130 {
131 irq_chan_mask = 0;
132 do_round();
133 imx233_lradc_setup_delay(delay_chan, chan_mask, 0, SAMPLES - 1, DELAY);
134 imx233_lradc_kick_delay(delay_chan);
135 }
136}
137
138bool imx233_button_read_btn(int idx)
139{
140 return MAP[idx].rounds >= MAP[idx].threshold ? MAP[idx].last_val : false;
141}
142
143int imx233_button_read(int others)
144{
145 int res = others;
146#ifdef HAS_BUTTON_HOLD
147 if(imx233_button_read_hold())
148 return 0;
149#endif
150 for(int i = 0; MAP[i].btn != IMX233_BUTTON_END; i++)
151 {
152 if(MAP[i].btn >= 0 && imx233_button_read_btn(i))
153 res |= MAP[i].btn;
154 }
155 return res;
156}
157
158#ifdef HAS_BUTTON_HOLD
159bool imx233_button_read_hold(void)
160{
161 return imx233_button_read_btn(hold_idx);
162}
163
164bool __attribute__((weak)) button_hold(void)
165{
166 bool hold_button = imx233_button_read_hold();
167#ifndef BOOTLOADER
168 static bool hold_button_old = false;
169 /* light handling */
170 if (hold_button != hold_button_old)
171 {
172 hold_button_old = hold_button;
173 backlight_hold_changed(hold_button);
174 }
175#endif /* BOOTLOADER */
176 return hold_button;
177}
178#endif
179
180#ifdef HAVE_HEADPHONE_DETECTION
181bool imx233_button_read_jack(void)
182{
183 return imx233_button_read_btn(jack_idx);
184}
185
186bool __attribute__((weak)) headphones_inserted(void)
187{
188 return imx233_button_read_jack();
189}
190#endif
191
192/* return number of debouncing rounds by type of peripheral */
193static int threshold_by_periph(int periph)
194{
195 if(periph == IMX233_BUTTON_GPIO) return 1; // no debouncing
196 if(periph == IMX233_BUTTON_LRADC) return 2; // 2 times at HZ gives ~10 ms hold
197 if(periph == IMX233_BUTTON_PSWITCH) return 10; // PSWITCH is very slow to ramp
198 return 1; // other ?
199}
200
201void imx233_button_init(void)
202{
203 /* go through the table and init stuff which needs to be */
204 for(int i = 0; MAP[i].btn != IMX233_BUTTON_END; i++)
205 {
206 MAP[i].threshold = threshold_by_periph(MAP[i].periph);
207 if(MAP[i].periph == IMX233_BUTTON_GPIO)
208 {
209 imx233_pinctrl_acquire(MAP[i].u.gpio.bank, MAP[i].u.gpio.pin, MAP[i].name);
210 imx233_pinctrl_set_function(MAP[i].u.gpio.bank, MAP[i].u.gpio.pin, PINCTRL_FUNCTION_GPIO);
211 imx233_pinctrl_enable_gpio(MAP[i].u.gpio.bank, MAP[i].u.gpio.pin, false);
212 bool pullup = !!(MAP[i].flags & IMX233_BUTTON_PULLUP);
213 imx233_pinctrl_enable_pullup(MAP[i].u.gpio.bank, MAP[i].u.gpio.pin, pullup);
214 }
215 else if(MAP[i].periph == IMX233_BUTTON_LRADC)
216 {
217 int src = MAP[i].u.lradc.src;
218 /* if channel was already acquired, there is nothing to do */
219 if(src_mask & (1 << src))
220 continue;
221 src_map[src] = imx233_lradc_acquire_channel(LRADC_SRC(src), TIMEOUT_NOBLOCK);
222 if(src_map[src] < 0)
223 panicf("Cannot get channel for %s", MAP[i].name);
224 imx233_lradc_setup_source(src_map[src], true, src);
225 imx233_lradc_setup_sampling(src_map[src], true, SAMPLES - 1);
226 imx233_lradc_enable_channel_irq(src_map[src], true);
227 imx233_lradc_set_channel_irq_callback(src_map[src], button_lradc_irq);
228 src_mask |= 1 << src;
229 chan_mask |= 1 << src_map[src];
230 }
231#ifdef HAS_BUTTON_HOLD
232 if(MAP[i].btn == IMX233_BUTTON_HOLD)
233 hold_idx = i;
234#endif
235#ifdef HAVE_HEADPHONE_DETECTION
236 if(MAP[i].btn == IMX233_BUTTON_JACK)
237 jack_idx = i;
238#endif
239 }
240#ifdef HAS_BUTTON_HOLD
241 if(hold_idx == -1)
242 panicf("No hold entry found");
243#endif
244#ifdef HAVE_HEADPHONE_DETECTION
245 if(jack_idx == -1)
246 panicf("No jack entry found");
247#endif
248 /* create delay channel if necessary
249 * NOTE other buttons are polled as part of the delay irq processing */
250 if(src_mask != 0)
251 {
252 delay_chan = imx233_lradc_acquire_delay(TIMEOUT_NOBLOCK);
253 if(delay_chan < 0)
254 panicf("Cannot get delay channel");
255 imx233_lradc_setup_delay(delay_chan, chan_mask, 0, SAMPLES - 1, DELAY);
256 imx233_lradc_kick_delay(delay_chan);
257 }
258 /* otherwise we need to regularly poll for other buttons */
259 else
260 tick_add_task(do_round);
261} \ No newline at end of file