2002-04-16 13:37:50 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2002 by Daniel Stenberg
|
|
|
|
*
|
2005-12-19 14:30:52 +00:00
|
|
|
* iPod driver based on code from the ipodlinux project - http://ipodlinux.org
|
|
|
|
* Adapted for Rockbox in December 2005
|
|
|
|
* Original file: linux/arch/armnommu/mach-ipod/keyboard.c
|
|
|
|
* Copyright (c) 2003-2005 Bernard Leach (leachbj@bouncycastle.org)
|
|
|
|
*
|
|
|
|
*
|
2002-04-16 13:37:50 +00:00
|
|
|
* All files in this archive are subject to the GNU General Public License.
|
|
|
|
* See the file COPYING in the source tree root for full license agreement.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
2004-12-01 00:33:18 +00:00
|
|
|
|
2002-04-16 13:37:50 +00:00
|
|
|
/*
|
2004-12-01 00:33:18 +00:00
|
|
|
* Rockbox button functions
|
2002-04-16 13:37:50 +00:00
|
|
|
*/
|
|
|
|
|
2002-05-23 09:26:20 +00:00
|
|
|
#include <stdlib.h>
|
2002-04-16 13:37:50 +00:00
|
|
|
#include "config.h"
|
2004-11-18 23:22:45 +00:00
|
|
|
#include "cpu.h"
|
2002-06-26 21:31:47 +00:00
|
|
|
#include "system.h"
|
2002-04-16 13:37:50 +00:00
|
|
|
#include "button.h"
|
2002-05-23 09:26:20 +00:00
|
|
|
#include "kernel.h"
|
2002-06-24 13:50:39 +00:00
|
|
|
#include "backlight.h"
|
2002-06-30 20:24:57 +00:00
|
|
|
#include "adc.h"
|
2002-09-30 08:55:22 +00:00
|
|
|
#include "serial.h"
|
2002-10-16 12:40:30 +00:00
|
|
|
#include "power.h"
|
2004-03-02 11:32:59 +00:00
|
|
|
#include "system.h"
|
2004-06-22 07:16:31 +00:00
|
|
|
#include "powermgmt.h"
|
2002-05-23 09:26:20 +00:00
|
|
|
|
2002-06-30 13:12:14 +00:00
|
|
|
struct event_queue button_queue;
|
2002-05-23 09:26:20 +00:00
|
|
|
|
2005-01-27 11:49:29 +00:00
|
|
|
static long lastbtn; /* Last valid button status */
|
|
|
|
static long last_read; /* Last button status, for debouncing/filtering */
|
2004-12-01 00:33:18 +00:00
|
|
|
#ifdef HAVE_LCD_BITMAP
|
|
|
|
static bool flipped; /* buttons can be flipped to match the LCD flip */
|
2003-12-20 10:00:37 +00:00
|
|
|
#endif
|
2002-09-23 11:33:04 +00:00
|
|
|
|
2002-09-05 22:41:22 +00:00
|
|
|
/* how often we check to see if a button is pressed */
|
2004-09-23 12:08:48 +00:00
|
|
|
#define POLL_FREQUENCY HZ/100
|
2002-09-05 22:41:22 +00:00
|
|
|
|
|
|
|
/* how long until repeat kicks in */
|
2004-09-23 12:08:48 +00:00
|
|
|
#define REPEAT_START 30
|
2002-09-05 22:41:22 +00:00
|
|
|
|
|
|
|
/* the speed repeat starts at */
|
2004-09-23 12:08:48 +00:00
|
|
|
#define REPEAT_INTERVAL_START 16
|
2002-09-05 22:41:22 +00:00
|
|
|
|
|
|
|
/* speed repeat finishes at */
|
2004-09-23 12:08:48 +00:00
|
|
|
#define REPEAT_INTERVAL_FINISH 5
|
2002-05-23 09:26:20 +00:00
|
|
|
|
2005-12-22 09:27:23 +00:00
|
|
|
/* the power-off button and number of repeated keys before shutting off */
|
2006-01-12 00:35:50 +00:00
|
|
|
#if (CONFIG_KEYPAD == IPOD_4G_PAD) || (CONFIG_KEYPAD == IRIVER_IFP7XX_PAD)
|
2005-12-22 09:27:23 +00:00
|
|
|
#define POWEROFF_BUTTON BUTTON_PLAY
|
|
|
|
#define POWEROFF_COUNT 40
|
|
|
|
#else
|
|
|
|
#define POWEROFF_BUTTON BUTTON_OFF
|
2004-10-12 11:00:19 +00:00
|
|
|
#define POWEROFF_COUNT 10
|
2005-12-22 09:27:23 +00:00
|
|
|
#endif
|
2003-02-25 03:03:55 +00:00
|
|
|
|
2002-05-23 09:26:20 +00:00
|
|
|
static int button_read(void);
|
2005-11-23 22:34:11 +00:00
|
|
|
|
|
|
|
#if (CONFIG_KEYPAD == IRIVER_H100_PAD) || (CONFIG_KEYPAD == IRIVER_H300_PAD)
|
2005-11-23 21:50:09 +00:00
|
|
|
static bool remote_button_hold_only(void);
|
2005-11-23 22:34:11 +00:00
|
|
|
#endif
|
2002-05-23 09:26:20 +00:00
|
|
|
|
2005-12-19 00:11:28 +00:00
|
|
|
#if CONFIG_KEYPAD == IPOD_4G_PAD
|
2005-12-17 19:08:55 +00:00
|
|
|
/* Variable to use for setting button status in interrupt handler */
|
|
|
|
int int_btn = BUTTON_NONE;
|
|
|
|
|
|
|
|
static void opto_i2c_init(void)
|
|
|
|
{
|
|
|
|
int i, curr_value;
|
|
|
|
|
|
|
|
/* wait for value to settle */
|
|
|
|
i = 1000;
|
|
|
|
curr_value = (inl(0x7000c104) << 16) >> 24;
|
|
|
|
while (i > 0)
|
|
|
|
{
|
|
|
|
int new_value = (inl(0x7000c104) << 16) >> 24;
|
|
|
|
|
|
|
|
if (new_value != curr_value) {
|
|
|
|
i = 10000;
|
|
|
|
curr_value = new_value;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
i--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
GPIOB_OUTPUT_VAL |= 0x10;
|
|
|
|
DEV_EN |= 0x10000;
|
|
|
|
DEV_RS |= 0x10000;
|
|
|
|
udelay(5);
|
|
|
|
DEV_RS &= ~0x10000; /* finish reset */
|
|
|
|
|
|
|
|
outl(0xffffffff, 0x7000c120);
|
|
|
|
outl(0xffffffff, 0x7000c124);
|
|
|
|
outl(0xc00a1f00, 0x7000c100);
|
|
|
|
outl(0x1000000, 0x7000c104);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int ipod_4g_button_read(void)
|
|
|
|
{
|
|
|
|
unsigned reg, status;
|
|
|
|
static int clickwheel_down = 0;
|
|
|
|
static int old_wheel_value = -1;
|
|
|
|
int wheel_keycode = BUTTON_NONE;
|
|
|
|
int wheel_delta, wheel_delta_abs;
|
|
|
|
int new_wheel_value;
|
|
|
|
int btn = BUTTON_NONE;
|
|
|
|
|
2006-02-02 11:24:32 +00:00
|
|
|
/* The ipodlinux source had a udelay(250) here, but testing has shown that
|
|
|
|
it is not needed - tested on Nano, Color/Photo and Video. */
|
|
|
|
/* udelay(250);*/
|
|
|
|
|
2005-12-17 19:08:55 +00:00
|
|
|
reg = 0x7000c104;
|
|
|
|
if ((inl(0x7000c104) & 0x4000000) != 0) {
|
|
|
|
reg = reg + 0x3C; /* 0x7000c140 */
|
|
|
|
|
|
|
|
status = inl(0x7000c140);
|
|
|
|
outl(0x0, 0x7000c140); /* clear interrupt status? */
|
|
|
|
|
|
|
|
if ((status & 0x800000ff) == 0x8000001a) {
|
|
|
|
/* NB: highest wheel = 0x5F, clockwise increases */
|
|
|
|
new_wheel_value = ((status << 9) >> 25) & 0xff;
|
|
|
|
|
|
|
|
if (status & 0x100)
|
|
|
|
btn |= BUTTON_SELECT;
|
|
|
|
if (status & 0x200)
|
|
|
|
btn |= BUTTON_RIGHT;
|
|
|
|
if (status & 0x400)
|
|
|
|
btn |= BUTTON_LEFT;
|
|
|
|
if (status & 0x800)
|
|
|
|
btn |= BUTTON_PLAY;
|
|
|
|
if (status & 0x1000)
|
|
|
|
btn |= BUTTON_MENU;
|
|
|
|
if (status & 0x40000000) {
|
|
|
|
/* scroll wheel down */
|
|
|
|
clickwheel_down = 1;
|
|
|
|
backlight_on();
|
|
|
|
if (old_wheel_value != -1) {
|
|
|
|
wheel_delta = new_wheel_value - old_wheel_value;
|
2005-12-22 00:01:36 +00:00
|
|
|
wheel_delta_abs = wheel_delta < 0 ? -wheel_delta
|
|
|
|
: wheel_delta;
|
|
|
|
|
|
|
|
if (wheel_delta_abs > 48) {
|
|
|
|
if (old_wheel_value > new_wheel_value)
|
|
|
|
/* wrapped around the top going clockwise */
|
|
|
|
wheel_delta += 96;
|
|
|
|
else if (old_wheel_value < new_wheel_value)
|
|
|
|
/* wrapped around the top going counterclockwise */ wheel_delta -= 96;
|
|
|
|
}
|
2005-12-17 19:08:55 +00:00
|
|
|
/* TODO: these thresholds should most definitely be
|
|
|
|
settings, and we're probably going to want a more
|
|
|
|
advanced scheme than this anyway. */
|
|
|
|
if (wheel_delta > 4) {
|
|
|
|
wheel_keycode = BUTTON_SCROLL_FWD;
|
|
|
|
old_wheel_value = new_wheel_value;
|
|
|
|
} else if (wheel_delta < -4) {
|
|
|
|
wheel_keycode = BUTTON_SCROLL_BACK;
|
|
|
|
old_wheel_value = new_wheel_value;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (wheel_keycode != BUTTON_NONE)
|
|
|
|
queue_post(&button_queue, wheel_keycode, NULL);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
old_wheel_value = new_wheel_value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (clickwheel_down) {
|
|
|
|
/* scroll wheel up */
|
|
|
|
old_wheel_value = -1;
|
|
|
|
clickwheel_down = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
Don't know why this should be needed, let me know if you do.
|
|
|
|
else if ((status & 0x800000FF) == 0x8000003A) {
|
|
|
|
wheel_value = status & 0x800000FF;
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
else if (status == 0xffffffff) {
|
|
|
|
opto_i2c_init();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((inl(reg) & 0x8000000) != 0) {
|
|
|
|
outl(0xffffffff, 0x7000c120);
|
|
|
|
outl(0xffffffff, 0x7000c124);
|
|
|
|
}
|
|
|
|
return btn;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ipod_4g_button_int(void)
|
|
|
|
{
|
2006-01-24 22:31:57 +00:00
|
|
|
CPU_HI_INT_CLR = I2C_MASK;
|
2006-02-02 11:24:32 +00:00
|
|
|
/* The following delay was 250 in the ipodlinux source, but 10 seems to
|
|
|
|
work fine - tested on Nano, Color/Photo and Video. */
|
|
|
|
udelay(10);
|
2005-12-17 19:08:55 +00:00
|
|
|
outl(0x0, 0x7000c140);
|
|
|
|
int_btn = ipod_4g_button_read();
|
|
|
|
outl(inl(0x7000c104) | 0xC000000, 0x7000c104);
|
|
|
|
outl(0x400a1f00, 0x7000c100);
|
|
|
|
|
|
|
|
GPIOB_OUTPUT_VAL |= 0x10;
|
2006-01-24 22:31:57 +00:00
|
|
|
CPU_INT_EN = 0x40000000;
|
|
|
|
CPU_HI_INT_EN = I2C_MASK;
|
2005-12-17 19:08:55 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2002-05-23 09:26:20 +00:00
|
|
|
static void button_tick(void)
|
|
|
|
{
|
2002-09-30 08:55:22 +00:00
|
|
|
static int tick = 0;
|
|
|
|
static int count = 0;
|
|
|
|
static int repeat_speed = REPEAT_INTERVAL_START;
|
2003-02-25 03:03:55 +00:00
|
|
|
static int repeat_count = 0;
|
2002-09-30 08:55:22 +00:00
|
|
|
static bool repeat = false;
|
2002-07-27 11:24:22 +00:00
|
|
|
int diff;
|
2002-09-30 08:55:22 +00:00
|
|
|
int btn;
|
2002-05-23 09:26:20 +00:00
|
|
|
|
2005-06-30 10:27:29 +00:00
|
|
|
#if (CONFIG_KEYPAD == PLAYER_PAD) || (CONFIG_KEYPAD == RECORDER_PAD)
|
2005-01-10 21:47:55 +00:00
|
|
|
|
2002-09-30 08:55:22 +00:00
|
|
|
/* Post events for the remote control */
|
|
|
|
btn = remote_control_rx();
|
|
|
|
if(btn)
|
|
|
|
{
|
|
|
|
queue_post(&button_queue, btn, NULL);
|
2004-12-01 00:33:18 +00:00
|
|
|
}
|
2004-09-20 22:15:35 +00:00
|
|
|
#endif
|
2004-12-01 00:33:18 +00:00
|
|
|
|
2002-05-23 09:26:20 +00:00
|
|
|
/* only poll every X ticks */
|
2002-07-27 19:38:20 +00:00
|
|
|
if ( ++tick >= POLL_FREQUENCY )
|
|
|
|
{
|
2002-05-23 11:59:30 +00:00
|
|
|
bool post = false;
|
2002-09-30 08:55:22 +00:00
|
|
|
btn = button_read();
|
2005-01-10 21:47:55 +00:00
|
|
|
|
2002-07-27 19:38:20 +00:00
|
|
|
/* Find out if a key has been released */
|
|
|
|
diff = btn ^ lastbtn;
|
2002-10-16 13:17:26 +00:00
|
|
|
if(diff && (btn & diff) == 0)
|
2002-07-27 19:38:20 +00:00
|
|
|
{
|
2002-10-16 13:17:26 +00:00
|
|
|
queue_post(&button_queue, BUTTON_REL | diff, NULL);
|
2002-07-27 19:38:20 +00:00
|
|
|
}
|
2004-07-24 20:38:56 +00:00
|
|
|
else
|
2002-07-27 11:24:22 +00:00
|
|
|
{
|
2004-07-24 20:38:56 +00:00
|
|
|
if ( btn )
|
2002-07-27 19:38:20 +00:00
|
|
|
{
|
2004-07-24 20:38:56 +00:00
|
|
|
/* normal keypress */
|
|
|
|
if ( btn != lastbtn )
|
2002-07-27 19:38:20 +00:00
|
|
|
{
|
2004-07-24 20:38:56 +00:00
|
|
|
post = true;
|
|
|
|
repeat = false;
|
|
|
|
repeat_speed = REPEAT_INTERVAL_START;
|
2005-01-10 21:47:55 +00:00
|
|
|
|
2004-07-24 20:38:56 +00:00
|
|
|
}
|
|
|
|
else /* repeat? */
|
|
|
|
{
|
|
|
|
if ( repeat )
|
|
|
|
{
|
|
|
|
count--;
|
|
|
|
if (count == 0) {
|
|
|
|
post = true;
|
|
|
|
/* yes we have repeat */
|
|
|
|
repeat_speed--;
|
|
|
|
if (repeat_speed < REPEAT_INTERVAL_FINISH)
|
|
|
|
repeat_speed = REPEAT_INTERVAL_FINISH;
|
|
|
|
count = repeat_speed;
|
2005-01-10 21:47:55 +00:00
|
|
|
|
2004-07-24 20:38:56 +00:00
|
|
|
repeat_count++;
|
2005-01-10 21:47:55 +00:00
|
|
|
|
2004-10-12 11:00:19 +00:00
|
|
|
/* Send a SYS_POWEROFF event if we have a device
|
|
|
|
which doesn't shut down easily with the OFF
|
|
|
|
key */
|
|
|
|
#ifdef HAVE_SW_POWEROFF
|
2005-06-08 18:01:14 +00:00
|
|
|
#ifdef BUTTON_RC_STOP
|
2005-12-22 09:27:23 +00:00
|
|
|
if ((btn == POWEROFF_BUTTON || btn == BUTTON_RC_STOP) &&
|
2005-06-08 18:01:14 +00:00
|
|
|
#else
|
2005-12-22 09:27:23 +00:00
|
|
|
if (btn == POWEROFF_BUTTON &&
|
2005-06-08 18:01:14 +00:00
|
|
|
#endif
|
2006-01-19 20:12:49 +00:00
|
|
|
#if defined(HAVE_CHARGING) && !defined(HAVE_POWEROFF_WHILE_CHARGING)
|
2005-02-10 21:52:54 +00:00
|
|
|
!charger_inserted() &&
|
|
|
|
#endif
|
2004-12-01 00:33:18 +00:00
|
|
|
repeat_count > POWEROFF_COUNT)
|
2005-09-12 11:03:14 +00:00
|
|
|
{
|
2005-09-14 09:08:26 +00:00
|
|
|
/* Tell the main thread that it's time to
|
|
|
|
power off */
|
|
|
|
sys_poweroff();
|
2005-09-12 11:03:14 +00:00
|
|
|
|
|
|
|
/* Safety net for players without hardware
|
|
|
|
poweroff */
|
|
|
|
if(repeat_count > POWEROFF_COUNT * 10)
|
|
|
|
power_off();
|
|
|
|
}
|
2003-02-25 03:03:55 +00:00
|
|
|
#endif
|
2004-07-24 20:38:56 +00:00
|
|
|
}
|
2002-05-23 11:59:30 +00:00
|
|
|
}
|
2004-07-24 20:38:56 +00:00
|
|
|
else
|
2002-07-24 15:21:08 +00:00
|
|
|
{
|
2004-07-24 20:38:56 +00:00
|
|
|
if (count++ > REPEAT_START)
|
|
|
|
{
|
|
|
|
post = true;
|
|
|
|
repeat = true;
|
|
|
|
repeat_count = 0;
|
|
|
|
/* initial repeat */
|
2005-01-10 21:47:55 +00:00
|
|
|
count = REPEAT_INTERVAL_START;
|
2004-07-24 20:38:56 +00:00
|
|
|
}
|
2002-07-27 19:38:20 +00:00
|
|
|
}
|
2002-05-23 11:59:30 +00:00
|
|
|
}
|
2004-07-24 20:38:56 +00:00
|
|
|
if ( post )
|
|
|
|
{
|
2004-12-01 00:33:18 +00:00
|
|
|
if (repeat)
|
2004-07-24 20:38:56 +00:00
|
|
|
queue_post(&button_queue, BUTTON_REPEAT | btn, NULL);
|
|
|
|
else
|
|
|
|
queue_post(&button_queue, btn, NULL);
|
2005-04-15 16:16:26 +00:00
|
|
|
#ifdef HAVE_REMOTE_LCD
|
|
|
|
if(btn & BUTTON_REMOTE)
|
|
|
|
remote_backlight_on();
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
backlight_on();
|
2005-01-10 21:47:55 +00:00
|
|
|
|
2004-07-24 20:38:56 +00:00
|
|
|
reset_poweroff_timer();
|
|
|
|
}
|
2002-05-23 11:59:30 +00:00
|
|
|
}
|
2004-07-24 20:38:56 +00:00
|
|
|
else
|
2002-06-24 13:50:39 +00:00
|
|
|
{
|
2004-07-24 20:38:56 +00:00
|
|
|
repeat = false;
|
|
|
|
count = 0;
|
2002-06-24 13:50:39 +00:00
|
|
|
}
|
2002-05-23 11:59:30 +00:00
|
|
|
}
|
2002-07-27 19:38:20 +00:00
|
|
|
lastbtn = btn & ~(BUTTON_REL | BUTTON_REPEAT);
|
2002-05-23 11:59:30 +00:00
|
|
|
tick = 0;
|
2002-05-23 09:26:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-02-07 22:57:05 +00:00
|
|
|
long button_get(bool block)
|
2002-05-23 09:26:20 +00:00
|
|
|
{
|
|
|
|
struct event ev;
|
|
|
|
|
2005-01-10 21:47:55 +00:00
|
|
|
if ( block || !queue_empty(&button_queue) )
|
2004-12-01 00:33:18 +00:00
|
|
|
{
|
2002-05-23 09:26:20 +00:00
|
|
|
queue_wait(&button_queue, &ev);
|
2002-05-23 11:59:30 +00:00
|
|
|
return ev.id;
|
|
|
|
}
|
|
|
|
return BUTTON_NONE;
|
2002-05-23 09:26:20 +00:00
|
|
|
}
|
2002-04-16 13:37:50 +00:00
|
|
|
|
2005-02-07 22:57:05 +00:00
|
|
|
long button_get_w_tmo(int ticks)
|
2002-08-07 07:22:44 +00:00
|
|
|
{
|
|
|
|
struct event ev;
|
2003-02-14 09:44:34 +00:00
|
|
|
queue_wait_w_tmo(&button_queue, &ev, ticks);
|
|
|
|
return (ev.id != SYS_TIMEOUT)? ev.id: BUTTON_NONE;
|
2002-08-07 07:22:44 +00:00
|
|
|
}
|
|
|
|
|
2004-12-01 00:33:18 +00:00
|
|
|
void button_init(void)
|
2004-11-18 23:22:45 +00:00
|
|
|
{
|
2004-12-01 00:33:18 +00:00
|
|
|
/* hardware inits */
|
|
|
|
#if CONFIG_KEYPAD == IRIVER_H100_PAD
|
2005-04-18 12:56:19 +00:00
|
|
|
/* Set GPIO33, GPIO37, GPIO38 and GPIO52 as general purpose inputs */
|
|
|
|
GPIO1_FUNCTION |= 0x00100062;
|
2005-11-19 01:09:38 +00:00
|
|
|
GPIO1_ENABLE &= ~0x00100060;
|
2005-11-16 14:26:18 +00:00
|
|
|
#elif CONFIG_KEYPAD == IRIVER_H300_PAD
|
|
|
|
/* Set GPIO9 and GPIO15 as general purpose inputs */
|
|
|
|
GPIO_ENABLE &= ~0x00008200;
|
|
|
|
GPIO_FUNCTION |= 0x00008200;
|
|
|
|
/* Set GPIO33, GPIO37, GPIO38 and GPIO52 as general purpose inputs */
|
2005-11-19 01:09:38 +00:00
|
|
|
GPIO1_ENABLE &= ~0x00100060;
|
2005-11-16 14:26:18 +00:00
|
|
|
GPIO1_FUNCTION |= 0x00100062;
|
2004-12-01 00:33:18 +00:00
|
|
|
#elif CONFIG_KEYPAD == RECORDER_PAD
|
|
|
|
/* Set PB4 and PB8 as input pins */
|
|
|
|
PBCR1 &= 0xfffc; /* PB8MD = 00 */
|
|
|
|
PBCR2 &= 0xfcff; /* PB4MD = 00 */
|
|
|
|
PBIOR &= ~0x0110; /* Inputs */
|
|
|
|
#elif CONFIG_KEYPAD == PLAYER_PAD
|
|
|
|
/* set PA5 and PA11 as input pins */
|
|
|
|
PACR1 &= 0xff3f; /* PA11MD = 00 */
|
|
|
|
PACR2 &= 0xfbff; /* PA5MD = 0 */
|
|
|
|
PAIOR &= ~0x0820; /* Inputs */
|
|
|
|
#elif CONFIG_KEYPAD == ONDIO_PAD
|
|
|
|
/* nothing to initialize here */
|
2005-01-10 21:47:55 +00:00
|
|
|
#elif CONFIG_KEYPAD == GMINI100_PAD
|
|
|
|
/* nothing to initialize here */
|
2005-12-19 00:11:28 +00:00
|
|
|
#elif CONFIG_KEYPAD == IPOD_4G_PAD
|
2005-12-17 19:08:55 +00:00
|
|
|
opto_i2c_init();
|
|
|
|
/* hold button - enable as input */
|
|
|
|
GPIOA_ENABLE |= 0x20;
|
|
|
|
GPIOA_OUTPUT_EN &= ~0x20;
|
|
|
|
/* hold button - set interrupt levels */
|
|
|
|
GPIOA_INT_LEV = ~(GPIOA_INPUT_VAL & 0x20);
|
|
|
|
GPIOA_INT_CLR = GPIOA_INT_STAT & 0x20;
|
|
|
|
/* enable interrupts */
|
|
|
|
GPIOA_INT_EN = 0x20;
|
2006-01-24 22:31:57 +00:00
|
|
|
CPU_INT_EN = 0x40000000;
|
|
|
|
CPU_HI_INT_EN = I2C_MASK;
|
2004-12-01 00:33:18 +00:00
|
|
|
#endif /* CONFIG_KEYPAD */
|
|
|
|
|
2004-11-18 23:22:45 +00:00
|
|
|
queue_init(&button_queue);
|
2005-06-29 12:23:09 +00:00
|
|
|
button_read();
|
|
|
|
lastbtn = button_read();
|
2004-11-18 23:22:45 +00:00
|
|
|
tick_add_task(button_tick);
|
|
|
|
reset_poweroff_timer();
|
2004-12-01 00:33:18 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_LCD_BITMAP
|
2004-11-18 23:22:45 +00:00
|
|
|
flipped = false;
|
2004-12-01 00:33:18 +00:00
|
|
|
#endif
|
2004-11-18 23:22:45 +00:00
|
|
|
}
|
|
|
|
|
2004-12-01 00:33:18 +00:00
|
|
|
#ifdef HAVE_LCD_BITMAP /* only bitmap displays can be flipped */
|
2005-12-19 00:11:28 +00:00
|
|
|
#if (CONFIG_KEYPAD != IPOD_4G_PAD)
|
2004-11-18 23:22:45 +00:00
|
|
|
/*
|
2004-12-01 00:33:18 +00:00
|
|
|
* helper function to swap UP/DOWN, LEFT/RIGHT (and F1/F3 for Recorder)
|
2004-11-18 23:22:45 +00:00
|
|
|
*/
|
|
|
|
static int button_flip(int button)
|
|
|
|
{
|
|
|
|
int newbutton;
|
|
|
|
|
2005-01-10 21:47:55 +00:00
|
|
|
newbutton = button &
|
2004-11-18 23:22:45 +00:00
|
|
|
~(BUTTON_UP | BUTTON_DOWN
|
2004-12-01 00:33:18 +00:00
|
|
|
| BUTTON_LEFT | BUTTON_RIGHT
|
|
|
|
#if CONFIG_KEYPAD == RECORDER_PAD
|
|
|
|
| BUTTON_F1 | BUTTON_F3
|
|
|
|
#endif
|
|
|
|
);
|
2004-11-18 23:22:45 +00:00
|
|
|
|
|
|
|
if (button & BUTTON_UP)
|
|
|
|
newbutton |= BUTTON_DOWN;
|
|
|
|
if (button & BUTTON_DOWN)
|
|
|
|
newbutton |= BUTTON_UP;
|
|
|
|
if (button & BUTTON_LEFT)
|
|
|
|
newbutton |= BUTTON_RIGHT;
|
|
|
|
if (button & BUTTON_RIGHT)
|
|
|
|
newbutton |= BUTTON_LEFT;
|
2004-12-01 00:33:18 +00:00
|
|
|
#if CONFIG_KEYPAD == RECORDER_PAD
|
|
|
|
if (button & BUTTON_F1)
|
|
|
|
newbutton |= BUTTON_F3;
|
|
|
|
if (button & BUTTON_F3)
|
|
|
|
newbutton |= BUTTON_F1;
|
|
|
|
#endif
|
2004-11-18 23:22:45 +00:00
|
|
|
|
|
|
|
return newbutton;
|
|
|
|
}
|
2005-11-19 02:26:54 +00:00
|
|
|
#else
|
|
|
|
/* We don't flip the iPod's keypad yet*/
|
|
|
|
#define button_flip(x) (x)
|
|
|
|
#endif
|
2004-11-18 23:22:45 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* set the flip attribute
|
|
|
|
* better only call this when the queue is empty
|
|
|
|
*/
|
|
|
|
void button_set_flip(bool flip)
|
|
|
|
{
|
|
|
|
if (flip != flipped) /* not the current setting */
|
|
|
|
{
|
|
|
|
/* avoid race condition with the button_tick() */
|
|
|
|
int oldlevel = set_irq_level(HIGHEST_IRQ_LEVEL);
|
2005-01-10 21:47:55 +00:00
|
|
|
lastbtn = button_flip(lastbtn);
|
2004-11-18 23:22:45 +00:00
|
|
|
flipped = flip;
|
|
|
|
set_irq_level(oldlevel);
|
|
|
|
}
|
|
|
|
}
|
2004-12-01 00:33:18 +00:00
|
|
|
#endif /* HAVE_LCD_BITMAP */
|
|
|
|
|
2005-01-10 21:47:55 +00:00
|
|
|
/*
|
2004-12-01 00:33:18 +00:00
|
|
|
Archos hardware button hookup
|
|
|
|
=============================
|
|
|
|
|
|
|
|
Recorder / Recorder FM/V2
|
|
|
|
-------------------------
|
|
|
|
F1, F2, F3, UP: connected to AN4 through a resistor network
|
|
|
|
DOWN, PLAY, LEFT, RIGHT: likewise connected to AN5
|
|
|
|
|
|
|
|
The voltage on AN4/ AN5 depends on which keys (or key combo) is pressed
|
|
|
|
FM/V2 has PLAY and RIGHT switched compared to plain recorder
|
|
|
|
|
|
|
|
ON: PB8, low active (plain recorder) / AN3, low active (fm/v2)
|
|
|
|
OFF: PB4, low active (plain recorder) / AN2, high active (fm/v2)
|
|
|
|
|
|
|
|
Player
|
|
|
|
------
|
|
|
|
LEFT: AN0
|
|
|
|
MENU: AN1
|
|
|
|
RIGHT: AN2
|
|
|
|
PLAY: AN3
|
|
|
|
|
|
|
|
STOP: PA11
|
|
|
|
ON: PA5
|
2005-01-10 21:47:55 +00:00
|
|
|
|
2004-12-01 00:33:18 +00:00
|
|
|
All buttons are low active
|
|
|
|
|
|
|
|
Ondio
|
|
|
|
-----
|
|
|
|
LEFT, RIGHT, UP, DOWN: connected to AN4 through a resistor network
|
|
|
|
|
|
|
|
The voltage on AN4 depends on which keys (or key combo) is pressed
|
|
|
|
|
|
|
|
OPTION: AN2, high active (assigned as MENU)
|
|
|
|
ON/OFF: AN3, low active (assigned as OFF)
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#if CONFIG_KEYPAD == RECORDER_PAD
|
|
|
|
|
|
|
|
#ifdef HAVE_FMADC
|
|
|
|
/* FM Recorder super-special levels */
|
|
|
|
#define LEVEL1 150
|
|
|
|
#define LEVEL2 385
|
|
|
|
#define LEVEL3 545
|
|
|
|
#define LEVEL4 700
|
|
|
|
#define ROW2_BUTTON1 BUTTON_PLAY
|
|
|
|
#define ROW2_BUTTON3 BUTTON_RIGHT
|
|
|
|
|
|
|
|
#else
|
|
|
|
/* plain bog standard Recorder levels */
|
|
|
|
#define LEVEL1 250
|
|
|
|
#define LEVEL2 500
|
|
|
|
#define LEVEL3 700
|
|
|
|
#define LEVEL4 900
|
|
|
|
#define ROW2_BUTTON1 BUTTON_RIGHT
|
|
|
|
#define ROW2_BUTTON3 BUTTON_PLAY
|
|
|
|
#endif /* HAVE_FMADC */
|
|
|
|
|
|
|
|
#elif CONFIG_KEYPAD == ONDIO_PAD
|
|
|
|
/* Ondio levels */
|
|
|
|
#define LEVEL1 165
|
|
|
|
#define LEVEL2 415
|
|
|
|
#define LEVEL3 585
|
|
|
|
#define LEVEL4 755
|
|
|
|
|
|
|
|
#endif /* CONFIG_KEYPAD */
|
2004-11-18 23:22:45 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Get button pressed from hardware
|
|
|
|
*/
|
|
|
|
static int button_read(void)
|
|
|
|
{
|
|
|
|
int btn = BUTTON_NONE;
|
|
|
|
int retval;
|
|
|
|
|
|
|
|
int data;
|
|
|
|
|
2005-11-16 14:26:18 +00:00
|
|
|
#if CONFIG_KEYPAD == IRIVER_H100_PAD
|
2004-12-01 00:33:18 +00:00
|
|
|
|
2005-04-19 11:34:22 +00:00
|
|
|
static bool hold_button = false;
|
|
|
|
static bool remote_hold_button = false;
|
2004-11-18 23:22:45 +00:00
|
|
|
|
2005-04-19 11:34:22 +00:00
|
|
|
/* light handling */
|
|
|
|
if (hold_button && !button_hold())
|
|
|
|
{
|
|
|
|
backlight_on();
|
|
|
|
}
|
2005-11-23 21:50:09 +00:00
|
|
|
if (remote_hold_button && !remote_button_hold_only())
|
2005-04-19 11:34:22 +00:00
|
|
|
{
|
|
|
|
remote_backlight_on();
|
|
|
|
}
|
2005-11-23 01:01:25 +00:00
|
|
|
|
2005-04-19 11:34:22 +00:00
|
|
|
hold_button = button_hold();
|
2005-11-23 21:50:09 +00:00
|
|
|
remote_hold_button = remote_button_hold_only();
|
2005-02-11 13:13:36 +00:00
|
|
|
|
2005-04-19 11:34:22 +00:00
|
|
|
/* normal buttons */
|
2005-11-23 01:01:25 +00:00
|
|
|
if (!hold_button)
|
2005-04-19 11:34:22 +00:00
|
|
|
{
|
|
|
|
data = adc_scan(ADC_BUTTONS);
|
|
|
|
|
|
|
|
if (data < 0x80)
|
|
|
|
if (data < 0x30)
|
|
|
|
if (data < 0x18)
|
|
|
|
btn = BUTTON_SELECT;
|
2005-02-11 13:13:36 +00:00
|
|
|
else
|
2005-04-19 11:34:22 +00:00
|
|
|
btn = BUTTON_UP;
|
2005-02-11 13:13:36 +00:00
|
|
|
else
|
2005-04-19 11:34:22 +00:00
|
|
|
if (data < 0x50)
|
|
|
|
btn = BUTTON_LEFT;
|
|
|
|
else
|
|
|
|
btn = BUTTON_DOWN;
|
2005-02-11 13:13:36 +00:00
|
|
|
else
|
2005-04-19 11:34:22 +00:00
|
|
|
if (data < 0xb0)
|
|
|
|
if (data < 0xa0)
|
|
|
|
btn = BUTTON_RIGHT;
|
|
|
|
else
|
|
|
|
btn = BUTTON_OFF;
|
2005-02-11 13:13:36 +00:00
|
|
|
else
|
2005-04-19 11:34:22 +00:00
|
|
|
if (data < 0xd0)
|
|
|
|
btn = BUTTON_MODE;
|
|
|
|
else
|
|
|
|
if (data < 0xf0)
|
|
|
|
btn = BUTTON_REC;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* remote buttons */
|
2005-11-23 01:01:25 +00:00
|
|
|
if (!remote_hold_button)
|
2005-04-19 11:34:22 +00:00
|
|
|
{
|
|
|
|
data = adc_scan(ADC_REMOTE);
|
|
|
|
|
|
|
|
if (data < 0x74)
|
|
|
|
if (data < 0x40)
|
|
|
|
if (data < 0x20)
|
|
|
|
if(data < 0x10)
|
|
|
|
btn = BUTTON_RC_STOP;
|
|
|
|
else
|
|
|
|
btn = BUTTON_RC_VOL_DOWN;
|
|
|
|
else
|
2005-06-24 13:19:16 +00:00
|
|
|
btn = BUTTON_RC_MODE;
|
2005-02-11 13:13:36 +00:00
|
|
|
else
|
2005-04-19 11:34:22 +00:00
|
|
|
if (data < 0x58)
|
|
|
|
btn = BUTTON_RC_VOL_UP;
|
|
|
|
else
|
|
|
|
btn = BUTTON_RC_BITRATE;
|
2005-02-11 13:13:36 +00:00
|
|
|
else
|
2005-04-19 11:34:22 +00:00
|
|
|
if (data < 0xb0)
|
|
|
|
if (data < 0x88)
|
|
|
|
btn = BUTTON_RC_REC;
|
2005-02-11 13:13:36 +00:00
|
|
|
else
|
2005-04-19 11:34:22 +00:00
|
|
|
btn = BUTTON_RC_SOURCE;
|
2005-02-11 13:13:36 +00:00
|
|
|
else
|
2005-04-19 11:34:22 +00:00
|
|
|
if (data < 0xd8)
|
|
|
|
if(data < 0xc0)
|
|
|
|
btn = BUTTON_RC_FF;
|
|
|
|
else
|
|
|
|
btn = BUTTON_RC_MENU;
|
|
|
|
else
|
|
|
|
if (data < 0xf0)
|
|
|
|
btn = BUTTON_RC_REW;
|
|
|
|
}
|
2005-11-16 14:26:18 +00:00
|
|
|
|
2005-04-19 11:34:22 +00:00
|
|
|
/* special buttons */
|
2005-06-08 15:55:19 +00:00
|
|
|
data = GPIO1_READ;
|
2005-11-23 01:01:25 +00:00
|
|
|
if (!hold_button && ((data & 0x20) == 0))
|
2005-06-08 15:55:19 +00:00
|
|
|
btn |= BUTTON_ON;
|
2005-11-23 01:01:25 +00:00
|
|
|
if (!remote_hold_button && ((data & 0x40) == 0))
|
2005-06-08 15:55:19 +00:00
|
|
|
btn |= BUTTON_RC_ON;
|
|
|
|
|
2005-11-16 14:26:18 +00:00
|
|
|
#elif CONFIG_KEYPAD == IRIVER_H300_PAD
|
|
|
|
|
|
|
|
static bool hold_button = false;
|
|
|
|
static bool remote_hold_button = false;
|
|
|
|
|
|
|
|
/* light handling */
|
|
|
|
if (hold_button && !button_hold())
|
|
|
|
{
|
|
|
|
backlight_on();
|
|
|
|
}
|
2005-11-23 21:50:09 +00:00
|
|
|
if (remote_hold_button && !remote_button_hold_only())
|
2005-11-16 14:26:18 +00:00
|
|
|
{
|
|
|
|
remote_backlight_on();
|
|
|
|
}
|
2005-11-23 01:01:25 +00:00
|
|
|
|
2005-11-16 14:26:18 +00:00
|
|
|
hold_button = button_hold();
|
2005-11-23 21:50:09 +00:00
|
|
|
remote_hold_button = remote_button_hold_only();
|
2005-11-16 14:26:18 +00:00
|
|
|
|
|
|
|
/* normal buttons */
|
2005-11-23 01:01:25 +00:00
|
|
|
if (!hold_button)
|
2005-11-16 14:26:18 +00:00
|
|
|
{
|
|
|
|
data = adc_scan(ADC_BUTTONS);
|
|
|
|
|
|
|
|
if (data < 0x50)
|
|
|
|
if (data < 0x30)
|
|
|
|
if (data < 0x10)
|
|
|
|
btn = BUTTON_SELECT;
|
|
|
|
else
|
|
|
|
btn = BUTTON_UP;
|
|
|
|
else
|
|
|
|
btn = BUTTON_LEFT;
|
|
|
|
else
|
|
|
|
if (data < 0x90)
|
|
|
|
if (data < 0x70)
|
|
|
|
btn = BUTTON_DOWN;
|
|
|
|
else
|
|
|
|
btn = BUTTON_RIGHT;
|
|
|
|
else
|
|
|
|
if(data < 0xc0)
|
|
|
|
btn = BUTTON_OFF;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* remote buttons */
|
2005-11-23 01:01:25 +00:00
|
|
|
if (!remote_hold_button)
|
2005-11-16 14:26:18 +00:00
|
|
|
{
|
|
|
|
data = adc_scan(ADC_REMOTE);
|
|
|
|
|
|
|
|
if (data < 0x74)
|
|
|
|
if (data < 0x40)
|
|
|
|
if (data < 0x20)
|
|
|
|
if(data < 0x10)
|
|
|
|
btn = BUTTON_RC_STOP;
|
|
|
|
else
|
|
|
|
btn = BUTTON_RC_VOL_DOWN;
|
|
|
|
else
|
|
|
|
btn = BUTTON_RC_MODE;
|
|
|
|
else
|
|
|
|
if (data < 0x58)
|
|
|
|
btn = BUTTON_RC_VOL_UP;
|
|
|
|
else
|
|
|
|
btn = BUTTON_RC_BITRATE;
|
|
|
|
else
|
|
|
|
if (data < 0xb0)
|
|
|
|
if (data < 0x88)
|
|
|
|
btn = BUTTON_RC_REC;
|
|
|
|
else
|
|
|
|
btn = BUTTON_RC_SOURCE;
|
|
|
|
else
|
|
|
|
if (data < 0xd8)
|
|
|
|
if(data < 0xc0)
|
|
|
|
btn = BUTTON_RC_FF;
|
|
|
|
else
|
|
|
|
btn = BUTTON_RC_MENU;
|
|
|
|
else
|
|
|
|
if (data < 0xf0)
|
|
|
|
btn = BUTTON_RC_REW;
|
|
|
|
}
|
2005-11-23 01:01:25 +00:00
|
|
|
|
2005-11-16 14:26:18 +00:00
|
|
|
/* special buttons */
|
2005-11-23 01:01:25 +00:00
|
|
|
if (!hold_button)
|
|
|
|
{
|
|
|
|
data = GPIO_READ;
|
|
|
|
if ((data & 0x0200) == 0)
|
|
|
|
btn |= BUTTON_MODE;
|
|
|
|
if ((data & 0x8000) == 0)
|
|
|
|
btn |= BUTTON_REC;
|
|
|
|
}
|
2005-11-16 14:26:18 +00:00
|
|
|
|
|
|
|
data = GPIO1_READ;
|
2005-11-23 01:01:25 +00:00
|
|
|
if (!hold_button && ((data & 0x20) == 0))
|
2005-11-16 14:26:18 +00:00
|
|
|
btn |= BUTTON_ON;
|
2005-11-23 01:01:25 +00:00
|
|
|
if (!remote_hold_button && ((data & 0x40) == 0))
|
2005-11-16 14:26:18 +00:00
|
|
|
btn |= BUTTON_RC_ON;
|
2005-02-10 21:52:54 +00:00
|
|
|
|
2006-01-12 00:35:50 +00:00
|
|
|
#elif CONFIG_KEYPAD == IRIVER_IFP7XX_PAD
|
|
|
|
|
|
|
|
static bool hold_button = false;
|
|
|
|
|
|
|
|
/* light handling */
|
|
|
|
if (hold_button && !button_hold())
|
|
|
|
{
|
|
|
|
backlight_on();
|
|
|
|
}
|
|
|
|
hold_button = button_hold();
|
|
|
|
|
|
|
|
/* normal buttons */
|
|
|
|
if (!button_hold())
|
|
|
|
{
|
|
|
|
data = adc_read(ADC_BUTTONS);
|
|
|
|
|
|
|
|
if (data < 0x151)
|
|
|
|
if (data < 0xc7)
|
|
|
|
if (data < 0x41)
|
|
|
|
btn = BUTTON_LEFT;
|
|
|
|
else
|
|
|
|
btn = BUTTON_RIGHT;
|
|
|
|
else
|
|
|
|
btn = BUTTON_SELECT;
|
|
|
|
else
|
|
|
|
if (data < 0x268)
|
|
|
|
if (data < 0x1d7)
|
|
|
|
btn = BUTTON_UP;
|
|
|
|
else
|
|
|
|
btn = BUTTON_DOWN;
|
|
|
|
else
|
|
|
|
if (data < 0x2f9)
|
|
|
|
btn = BUTTON_EQ;
|
|
|
|
else
|
|
|
|
if (data < 0x35c)
|
|
|
|
btn = BUTTON_MODE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!button_hold() && (adc_read(ADC_BUTTON_PLAY) < 0x64))
|
|
|
|
btn |= BUTTON_PLAY;
|
|
|
|
|
2004-11-18 23:22:45 +00:00
|
|
|
#elif CONFIG_KEYPAD == RECORDER_PAD
|
2002-04-20 14:42:49 +00:00
|
|
|
|
2003-01-16 15:11:29 +00:00
|
|
|
#ifdef HAVE_FMADC
|
2004-12-01 00:33:18 +00:00
|
|
|
if ( adc_read(ADC_BUTTON_ON) < 512 )
|
2003-01-16 15:11:29 +00:00
|
|
|
btn |= BUTTON_ON;
|
2004-12-01 00:33:18 +00:00
|
|
|
if ( adc_read(ADC_BUTTON_OFF) > 512 )
|
2003-01-16 15:11:29 +00:00
|
|
|
btn |= BUTTON_OFF;
|
|
|
|
#else
|
2004-12-01 00:33:18 +00:00
|
|
|
/* check port B pins for ON and OFF */
|
2003-01-16 15:11:29 +00:00
|
|
|
data = PBDR;
|
2004-12-01 00:33:18 +00:00
|
|
|
if ((data & 0x0100) == 0)
|
2002-07-24 16:30:34 +00:00
|
|
|
btn |= BUTTON_ON;
|
2004-12-01 00:33:18 +00:00
|
|
|
if ((data & 0x0010) == 0)
|
2002-07-24 16:30:34 +00:00
|
|
|
btn |= BUTTON_OFF;
|
2003-01-16 15:11:29 +00:00
|
|
|
#endif
|
2002-04-16 13:40:42 +00:00
|
|
|
|
2004-12-01 00:33:18 +00:00
|
|
|
/* check F1..F3 and UP */
|
2002-06-30 20:24:57 +00:00
|
|
|
data = adc_read(ADC_BUTTON_ROW1);
|
2004-12-01 00:33:18 +00:00
|
|
|
|
2002-04-16 13:40:42 +00:00
|
|
|
if (data >= LEVEL4)
|
2002-07-24 16:30:34 +00:00
|
|
|
btn |= BUTTON_F3;
|
2002-04-16 13:40:42 +00:00
|
|
|
else if (data >= LEVEL3)
|
2002-07-24 16:30:34 +00:00
|
|
|
btn |= BUTTON_UP;
|
2002-04-16 13:40:42 +00:00
|
|
|
else if (data >= LEVEL2)
|
2002-07-24 16:30:34 +00:00
|
|
|
btn |= BUTTON_F2;
|
2002-04-16 13:40:42 +00:00
|
|
|
else if (data >= LEVEL1)
|
2002-07-24 16:30:34 +00:00
|
|
|
btn |= BUTTON_F1;
|
2002-04-16 13:40:42 +00:00
|
|
|
|
2002-10-09 09:29:04 +00:00
|
|
|
/* Some units have mushy keypads, so pressing UP also activates
|
|
|
|
the Left/Right buttons. Let's combat that by skipping the AN5
|
|
|
|
checks when UP is pressed. */
|
|
|
|
if(!(btn & BUTTON_UP))
|
|
|
|
{
|
2004-12-01 00:33:18 +00:00
|
|
|
/* check DOWN, PLAY, LEFT, RIGHT */
|
2002-10-09 09:29:04 +00:00
|
|
|
data = adc_read(ADC_BUTTON_ROW2);
|
2005-01-10 21:47:55 +00:00
|
|
|
|
2002-10-09 09:29:04 +00:00
|
|
|
if (data >= LEVEL4)
|
|
|
|
btn |= BUTTON_DOWN;
|
2004-12-01 00:33:18 +00:00
|
|
|
else if (data >= LEVEL3)
|
|
|
|
btn |= ROW2_BUTTON3;
|
2002-10-09 09:29:04 +00:00
|
|
|
else if (data >= LEVEL2)
|
|
|
|
btn |= BUTTON_LEFT;
|
2004-12-01 00:33:18 +00:00
|
|
|
else if (data >= LEVEL1)
|
|
|
|
btn |= ROW2_BUTTON1;
|
2002-10-09 09:29:04 +00:00
|
|
|
}
|
2003-12-20 10:00:37 +00:00
|
|
|
|
2004-09-28 22:13:26 +00:00
|
|
|
#elif CONFIG_KEYPAD == PLAYER_PAD
|
2002-04-20 14:42:49 +00:00
|
|
|
|
2002-05-17 19:23:04 +00:00
|
|
|
/* buttons are active low */
|
2004-12-01 00:33:18 +00:00
|
|
|
if (adc_read(0) < 0x180)
|
2002-04-20 14:42:49 +00:00
|
|
|
btn |= BUTTON_LEFT;
|
2004-12-01 00:33:18 +00:00
|
|
|
if (adc_read(1) < 0x180)
|
2002-04-20 14:42:49 +00:00
|
|
|
btn |= BUTTON_MENU;
|
2002-07-05 07:11:20 +00:00
|
|
|
if(adc_read(2) < 0x180)
|
2002-04-20 14:42:49 +00:00
|
|
|
btn |= BUTTON_RIGHT;
|
2002-07-05 07:11:20 +00:00
|
|
|
if(adc_read(3) < 0x180)
|
2004-09-19 21:58:37 +00:00
|
|
|
btn |= BUTTON_PLAY;
|
2002-07-05 07:11:20 +00:00
|
|
|
|
2004-12-01 00:33:18 +00:00
|
|
|
/* check port A pins for ON and STOP */
|
|
|
|
data = PADR;
|
|
|
|
if ( !(data & 0x0020) )
|
2002-04-20 14:42:49 +00:00
|
|
|
btn |= BUTTON_ON;
|
2004-12-01 00:33:18 +00:00
|
|
|
if ( !(data & 0x0800) )
|
2004-09-19 21:58:37 +00:00
|
|
|
btn |= BUTTON_STOP;
|
2002-04-20 14:42:49 +00:00
|
|
|
|
2004-09-28 22:13:26 +00:00
|
|
|
#elif CONFIG_KEYPAD == ONDIO_PAD
|
2004-09-10 10:51:54 +00:00
|
|
|
|
2004-09-15 07:03:11 +00:00
|
|
|
if(adc_read(ADC_BUTTON_OPTION) > 0x200) /* active high */
|
2004-09-10 10:51:54 +00:00
|
|
|
btn |= BUTTON_MENU;
|
2004-09-15 07:03:11 +00:00
|
|
|
if(adc_read(ADC_BUTTON_ONOFF) < 0x120) /* active low */
|
2004-09-19 21:58:37 +00:00
|
|
|
btn |= BUTTON_OFF;
|
2004-09-10 10:51:54 +00:00
|
|
|
|
2004-12-01 00:33:18 +00:00
|
|
|
/* Check the 4 direction keys */
|
|
|
|
data = adc_read(ADC_BUTTON_ROW1);
|
|
|
|
|
|
|
|
if (data >= LEVEL4)
|
2004-09-10 10:51:54 +00:00
|
|
|
btn |= BUTTON_LEFT;
|
2004-12-01 00:33:18 +00:00
|
|
|
else if (data >= LEVEL3)
|
2004-09-10 10:51:54 +00:00
|
|
|
btn |= BUTTON_RIGHT;
|
2004-12-01 00:33:18 +00:00
|
|
|
else if (data >= LEVEL2)
|
2004-09-19 21:58:37 +00:00
|
|
|
btn |= BUTTON_UP;
|
2004-12-01 00:33:18 +00:00
|
|
|
else if (data >= LEVEL1)
|
2004-09-19 21:58:37 +00:00
|
|
|
btn |= BUTTON_DOWN;
|
2004-09-10 10:51:54 +00:00
|
|
|
|
2005-01-10 21:47:55 +00:00
|
|
|
#elif CONFIG_KEYPAD == GMINI100_PAD
|
|
|
|
|
2005-02-05 10:52:51 +00:00
|
|
|
if (adc_read(7) < 0xE3)
|
2005-01-23 00:27:21 +00:00
|
|
|
btn |= BUTTON_LEFT;
|
2005-02-05 10:52:51 +00:00
|
|
|
else if (adc_read(7) < 0x1c5)
|
2005-01-23 00:27:21 +00:00
|
|
|
btn |= BUTTON_DOWN;
|
2005-02-05 10:52:51 +00:00
|
|
|
else if (adc_read(7) < 0x2a2)
|
2005-01-23 00:27:21 +00:00
|
|
|
btn |= BUTTON_RIGHT;
|
2005-02-05 10:52:51 +00:00
|
|
|
else if (adc_read(7) < 0x38a)
|
2005-01-23 00:27:21 +00:00
|
|
|
btn |= BUTTON_UP;
|
2005-01-10 21:47:55 +00:00
|
|
|
|
2005-02-05 10:52:51 +00:00
|
|
|
if (adc_read(6) < 0x233)
|
2005-01-23 00:27:21 +00:00
|
|
|
btn |= BUTTON_OFF;
|
2005-02-05 10:52:51 +00:00
|
|
|
else if (adc_read(6) < 0x288)
|
2005-01-23 00:27:21 +00:00
|
|
|
btn |= BUTTON_PLAY;
|
2005-02-05 10:52:51 +00:00
|
|
|
else if (adc_read(6) < 0x355)
|
2005-01-23 00:27:21 +00:00
|
|
|
btn |= BUTTON_MENU;
|
2005-01-10 21:47:55 +00:00
|
|
|
|
2005-02-02 15:38:56 +00:00
|
|
|
data = P7;
|
|
|
|
if (data & 0x01)
|
|
|
|
btn |= BUTTON_ON;
|
2005-11-11 17:51:35 +00:00
|
|
|
|
2005-12-19 00:11:28 +00:00
|
|
|
#elif CONFIG_KEYPAD == IPOD_4G_PAD
|
2005-11-11 17:51:35 +00:00
|
|
|
(void)data;
|
2005-12-17 19:08:55 +00:00
|
|
|
/* The int_btn variable is set in the button interrupt handler */
|
|
|
|
btn = int_btn;
|
2004-12-01 00:33:18 +00:00
|
|
|
#endif /* CONFIG_KEYPAD */
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_LCD_BITMAP
|
2004-10-08 17:02:16 +00:00
|
|
|
if (btn && flipped)
|
|
|
|
btn = button_flip(btn); /* swap upside down */
|
2004-12-01 00:33:18 +00:00
|
|
|
#endif
|
2004-10-08 17:02:16 +00:00
|
|
|
|
2004-09-23 22:36:15 +00:00
|
|
|
/* Filter the button status. It is only accepted if we get the same
|
|
|
|
status twice in a row. */
|
2004-12-01 00:33:18 +00:00
|
|
|
if (btn != last_read)
|
2004-09-23 22:36:15 +00:00
|
|
|
retval = lastbtn;
|
|
|
|
else
|
|
|
|
retval = btn;
|
|
|
|
last_read = btn;
|
|
|
|
|
|
|
|
return retval;
|
2004-09-10 10:51:54 +00:00
|
|
|
}
|
|
|
|
|
2005-07-01 09:46:48 +00:00
|
|
|
#if (CONFIG_KEYPAD == IRIVER_H100_PAD) || (CONFIG_KEYPAD == IRIVER_H300_PAD)
|
2004-12-01 00:33:18 +00:00
|
|
|
bool button_hold(void)
|
|
|
|
{
|
|
|
|
return (GPIO1_READ & 0x00000002)?true:false;
|
|
|
|
}
|
2005-02-10 21:52:54 +00:00
|
|
|
|
2005-11-23 21:50:09 +00:00
|
|
|
static bool remote_button_hold_only(void)
|
2005-02-10 21:52:54 +00:00
|
|
|
{
|
2005-09-22 21:38:22 +00:00
|
|
|
return (GPIO1_READ & 0x00100000)?true:false;
|
2005-02-10 21:52:54 +00:00
|
|
|
}
|
2005-11-23 21:50:09 +00:00
|
|
|
|
|
|
|
bool remote_button_hold(void)
|
|
|
|
{
|
|
|
|
return ((GPIO_READ & 0x40000000) == 0)?remote_button_hold_only():false;
|
|
|
|
}
|
2002-04-20 14:42:49 +00:00
|
|
|
#endif
|
2004-07-21 08:02:23 +00:00
|
|
|
|
2006-01-12 00:35:50 +00:00
|
|
|
#if CONFIG_KEYPAD == IRIVER_IFP7XX_PAD
|
|
|
|
bool button_hold(void)
|
|
|
|
{
|
|
|
|
return (GPIO5_READ & 4) ? false : true;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2006-02-05 00:20:11 +00:00
|
|
|
#if (CONFIG_KEYPAD == IAUDIO_X5_PAD)
|
|
|
|
bool button_hold(void)
|
|
|
|
{
|
|
|
|
return (GPIO_READ & 0x08000000)?true:false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool remote_button_hold(void)
|
|
|
|
{
|
|
|
|
return false; /* TODO X5 */
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2004-07-21 08:02:23 +00:00
|
|
|
int button_status(void)
|
|
|
|
{
|
2005-01-27 11:53:13 +00:00
|
|
|
return lastbtn;
|
2004-07-21 08:02:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void button_clear_queue(void)
|
|
|
|
{
|
2004-09-01 06:24:57 +00:00
|
|
|
queue_clear(&button_queue);
|
2004-07-21 08:02:23 +00:00
|
|
|
}
|
2004-12-01 00:33:18 +00:00
|
|
|
|