2006-08-12 08:01:54 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2006 by Linus Nielsen Feltzing
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
#include "cpu.h"
|
|
|
|
#include "system.h"
|
|
|
|
#include "button.h"
|
|
|
|
#include "kernel.h"
|
|
|
|
#include "backlight.h"
|
|
|
|
#include "adc.h"
|
|
|
|
#include "system.h"
|
2007-01-07 06:56:24 +00:00
|
|
|
#include "backlight-target.h"
|
2006-08-12 08:01:54 +00:00
|
|
|
|
2006-12-29 02:49:12 +00:00
|
|
|
static bool headphones_detect;
|
2007-01-17 20:24:06 +00:00
|
|
|
static bool hold_button = false;
|
2006-12-29 02:49:12 +00:00
|
|
|
|
|
|
|
static int const remote_buttons[] =
|
|
|
|
{
|
2007-05-20 11:42:04 +00:00
|
|
|
BUTTON_NONE, /* Headphones connected - remote disconnected */
|
|
|
|
BUTTON_RC_PLAY,
|
|
|
|
BUTTON_RC_DSP,
|
|
|
|
BUTTON_RC_REW,
|
|
|
|
BUTTON_RC_FF,
|
|
|
|
BUTTON_RC_VOL_UP,
|
|
|
|
BUTTON_RC_VOL_DOWN,
|
|
|
|
BUTTON_NONE, /* Remote control attached - no buttons pressed */
|
|
|
|
BUTTON_NONE, /* Nothing in the headphone socket */
|
2006-12-29 02:49:12 +00:00
|
|
|
};
|
|
|
|
|
2006-08-12 08:01:54 +00:00
|
|
|
void button_init_device(void)
|
|
|
|
{
|
|
|
|
/* Power, Remote Play & Hold switch */
|
|
|
|
}
|
|
|
|
|
2006-12-29 02:49:12 +00:00
|
|
|
inline bool button_hold(void)
|
2006-08-12 08:01:54 +00:00
|
|
|
{
|
|
|
|
return (GPGDAT & (1 << 15));
|
|
|
|
}
|
|
|
|
|
2006-12-29 02:49:12 +00:00
|
|
|
int button_read_device(void)
|
|
|
|
{
|
|
|
|
int touchpad;
|
|
|
|
int buttons;
|
|
|
|
static int lastbutton;
|
|
|
|
unsigned short remote_adc;
|
2006-12-29 15:44:43 +00:00
|
|
|
int btn = BUTTON_NONE;
|
2007-01-17 20:24:06 +00:00
|
|
|
bool hold_button_old;
|
|
|
|
|
|
|
|
/* normal buttons */
|
|
|
|
hold_button_old = hold_button;
|
|
|
|
hold_button = button_hold();
|
|
|
|
|
|
|
|
#ifndef BOOTLOADER
|
|
|
|
/* give BL notice if HB state chaged */
|
|
|
|
if (hold_button != hold_button_old)
|
|
|
|
backlight_hold_changed(hold_button);
|
|
|
|
#endif
|
2006-12-29 02:49:12 +00:00
|
|
|
|
|
|
|
/* See header for ADC values when remote control buttons are pressed */
|
|
|
|
/* Only one button can be sensed at a time on the remote. */
|
|
|
|
/* Need to filter the remote button because the ADC is so fast */
|
|
|
|
remote_adc = adc_read(ADC_HPREMOTE);
|
|
|
|
btn = remote_buttons[(remote_adc + 64) / 128];
|
|
|
|
if (btn != lastbutton)
|
|
|
|
{
|
|
|
|
/* if the buttons dont agree twice in a row, then its none */
|
|
|
|
lastbutton = btn;
|
|
|
|
btn = BUTTON_NONE;
|
2007-05-07 19:34:34 +00:00
|
|
|
button_backlight_on();
|
2006-12-29 02:49:12 +00:00
|
|
|
}
|
2006-12-29 15:44:43 +00:00
|
|
|
|
|
|
|
/* Check for hold first - exit if asserted with no button pressed */
|
2007-01-17 20:24:06 +00:00
|
|
|
if (hold_button)
|
2006-12-29 15:44:43 +00:00
|
|
|
return btn;
|
|
|
|
|
2006-12-29 02:49:12 +00:00
|
|
|
/* the side buttons - Check before doing all of the work on each bit */
|
|
|
|
buttons = GPGDAT & 0x1F;
|
|
|
|
if (buttons)
|
|
|
|
{
|
|
|
|
if (buttons & (1 << 0))
|
|
|
|
btn |= BUTTON_POWER;
|
|
|
|
|
|
|
|
if (buttons & (1 << 1))
|
|
|
|
btn |= BUTTON_MENU;
|
|
|
|
|
|
|
|
if (buttons & (1 << 2))
|
|
|
|
btn |= BUTTON_VOL_UP;
|
|
|
|
|
|
|
|
if (buttons & (1 << 3))
|
|
|
|
btn |= BUTTON_VOL_DOWN;
|
|
|
|
|
|
|
|
if (buttons & (1 << 4))
|
|
|
|
btn |= BUTTON_A;
|
2007-05-07 19:34:34 +00:00
|
|
|
button_backlight_on();
|
2006-12-29 02:49:12 +00:00
|
|
|
}
|
|
|
|
|
2006-08-12 08:01:54 +00:00
|
|
|
/* the touchpad */
|
2006-12-29 02:49:12 +00:00
|
|
|
touchpad = GPJDAT & 0x10C9;
|
|
|
|
if (touchpad)
|
|
|
|
{
|
|
|
|
if (touchpad & (1 << 0))
|
|
|
|
btn |= BUTTON_UP;
|
2006-08-12 08:01:54 +00:00
|
|
|
|
2006-12-29 02:49:12 +00:00
|
|
|
if (touchpad & (1 << 12))
|
|
|
|
btn |= BUTTON_RIGHT;
|
2006-08-12 08:01:54 +00:00
|
|
|
|
2006-12-29 02:49:12 +00:00
|
|
|
if (touchpad & (1 << 6))
|
|
|
|
btn |= BUTTON_DOWN;
|
2006-08-12 08:01:54 +00:00
|
|
|
|
2006-12-29 02:49:12 +00:00
|
|
|
if (touchpad & (1 << 7))
|
|
|
|
btn |= BUTTON_LEFT;
|
2006-08-12 08:01:54 +00:00
|
|
|
|
2006-12-29 02:49:12 +00:00
|
|
|
if (touchpad & (1 << 3))
|
|
|
|
btn |= BUTTON_SELECT;
|
2007-05-07 19:34:34 +00:00
|
|
|
button_backlight_on();
|
2006-12-29 02:49:12 +00:00
|
|
|
}
|
|
|
|
|
2006-08-12 08:01:54 +00:00
|
|
|
return btn;
|
|
|
|
}
|
|
|
|
|
2006-12-29 02:49:12 +00:00
|
|
|
bool headphones_inserted(void)
|
|
|
|
{
|
|
|
|
unsigned short remote_adc = adc_read(ADC_HPREMOTE);
|
|
|
|
if (remote_adc != ADC_READ_ERROR)
|
|
|
|
{
|
|
|
|
/* If there is nothing in the headphone socket, the ADC reads high */
|
|
|
|
if (remote_adc < 940)
|
|
|
|
headphones_detect = true;
|
|
|
|
else
|
|
|
|
headphones_detect = false;
|
|
|
|
}
|
|
|
|
return headphones_detect;
|
|
|
|
}
|