summaryrefslogtreecommitdiff
path: root/firmware/target/arm/imx233/sony-nwz/button-nwz.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/arm/imx233/sony-nwz/button-nwz.c')
-rw-r--r--firmware/target/arm/imx233/sony-nwz/button-nwz.c64
1 files changed, 64 insertions, 0 deletions
diff --git a/firmware/target/arm/imx233/sony-nwz/button-nwz.c b/firmware/target/arm/imx233/sony-nwz/button-nwz.c
new file mode 100644
index 0000000000..93520133e8
--- /dev/null
+++ b/firmware/target/arm/imx233/sony-nwz/button-nwz.c
@@ -0,0 +1,64 @@
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#include "button-target.h"
22#include "system.h"
23#include "system-target.h"
24#include "pinctrl-imx233.h"
25#include "power-imx233.h"
26#include "string.h"
27#include "usb.h"
28#include "button-lradc-imx233.h"
29
30struct imx233_button_lradc_mapping_t imx233_button_lradc_mapping[] =
31{
32#ifdef SONY_NWZE360
33 {195, BUTTON_VOL_DOWN},
34 {810, BUTTON_VOL_UP},
35#endif
36 {1095, BUTTON_BACK},
37 {1470, BUTTON_PLAY},
38 {1845, BUTTON_RIGHT},
39 {2185, BUTTON_LEFT},
40 {2525, BUTTON_UP},
41 {2870, BUTTON_DOWN},
42 {3400, 0},
43 {0, IMX233_BUTTON_LRADC_END},
44};
45
46void button_init_device(void)
47{
48 imx233_button_lradc_init();
49}
50
51#ifdef HAS_BUTTON_HOLD
52bool button_hold(void)
53{
54 return imx233_button_lradc_hold();
55}
56#endif
57
58int button_read_device(void)
59{
60 int res = 0;
61 if(BF_RD(POWER_STS, PSWITCH) == 3)
62 res |= BUTTON_POWER;
63 return imx233_button_lradc_read(res);
64}