2002-04-16 13:37:50 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2002 by Daniel Stenberg
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
/*
|
|
|
|
* Archos Jukebox Recorder button functions
|
|
|
|
*/
|
|
|
|
|
2002-05-23 09:26:20 +00:00
|
|
|
#include <stdlib.h>
|
2002-04-16 13:37:50 +00:00
|
|
|
#include "config.h"
|
|
|
|
#include "sh7034.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-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
|
|
|
|
2002-06-07 13:00:33 +00:00
|
|
|
#define POLL_FREQUENCY HZ/20
|
|
|
|
#define REPEAT_START 6
|
|
|
|
#define REPEAT_INTERVAL 4
|
2002-05-23 09:26:20 +00:00
|
|
|
|
2002-07-24 15:21:08 +00:00
|
|
|
static int repeat_mask = DEFAULT_REPEAT_MASK;
|
|
|
|
|
2002-05-23 09:26:20 +00:00
|
|
|
static int button_read(void);
|
|
|
|
|
|
|
|
static void button_tick(void)
|
|
|
|
{
|
2002-05-23 11:59:30 +00:00
|
|
|
static int tick=0;
|
|
|
|
static int count=0;
|
|
|
|
static int lastbtn=0;
|
|
|
|
static bool repeat=false;
|
2002-05-23 09:26:20 +00:00
|
|
|
|
|
|
|
/* only poll every X ticks */
|
2002-06-07 13:00:33 +00:00
|
|
|
if ( ++tick >= POLL_FREQUENCY ) {
|
2002-05-23 11:59:30 +00:00
|
|
|
bool post = false;
|
2002-05-23 09:26:20 +00:00
|
|
|
int btn = button_read();
|
2002-05-23 11:59:30 +00:00
|
|
|
|
|
|
|
if ( btn ) {
|
|
|
|
/* normal keypress */
|
|
|
|
if ( btn != lastbtn ) {
|
|
|
|
post = true;
|
|
|
|
}
|
|
|
|
/* repeat? */
|
|
|
|
else {
|
|
|
|
if ( repeat ) {
|
|
|
|
if ( ! --count ) {
|
|
|
|
post = true;
|
|
|
|
count = REPEAT_INTERVAL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (count++ > REPEAT_START) {
|
2002-07-24 15:21:08 +00:00
|
|
|
/* Only repeat if a repeatable key is pressed */
|
|
|
|
if(btn & repeat_mask)
|
|
|
|
{
|
|
|
|
post = true;
|
|
|
|
repeat = true;
|
|
|
|
count = REPEAT_INTERVAL;
|
|
|
|
}
|
2002-06-26 21:31:47 +00:00
|
|
|
/* If the OFF button is pressed long enough, and we are
|
|
|
|
still alive, then the unit must be connected to a
|
|
|
|
charger. Therefore we will reboot and let the original
|
|
|
|
firmware handle the charging. */
|
2002-06-26 21:47:21 +00:00
|
|
|
#ifdef HAVE_RECORDER_KEYPAD
|
2002-06-26 21:31:47 +00:00
|
|
|
if(btn == BUTTON_OFF)
|
2002-06-26 21:47:21 +00:00
|
|
|
#elif HAVE_PLAYER_KEYPAD
|
|
|
|
if(btn == BUTTON_STOP)
|
2002-06-26 21:31:47 +00:00
|
|
|
#endif
|
2002-06-26 21:47:21 +00:00
|
|
|
system_reboot();
|
2002-05-23 11:59:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if ( post )
|
2002-06-24 13:50:39 +00:00
|
|
|
{
|
2002-05-23 11:59:30 +00:00
|
|
|
queue_post(&button_queue, btn, NULL);
|
2002-06-24 13:50:39 +00:00
|
|
|
backlight_on();
|
|
|
|
}
|
2002-05-23 11:59:30 +00:00
|
|
|
}
|
2002-06-19 16:24:22 +00:00
|
|
|
else {
|
2002-05-23 11:59:30 +00:00
|
|
|
repeat = false;
|
2002-06-19 16:24:22 +00:00
|
|
|
count = 0;
|
2002-07-23 22:23:06 +00:00
|
|
|
/* Report that the key has been released */
|
|
|
|
if(lastbtn != btn)
|
|
|
|
{
|
|
|
|
queue_post(&button_queue, BUTTON_REL | lastbtn, NULL);
|
|
|
|
}
|
2002-06-19 16:24:22 +00:00
|
|
|
}
|
2002-05-23 11:59:30 +00:00
|
|
|
|
|
|
|
lastbtn = btn;
|
|
|
|
tick = 0;
|
2002-05-23 09:26:20 +00:00
|
|
|
}
|
2002-06-24 13:50:39 +00:00
|
|
|
|
|
|
|
backlight_tick();
|
2002-05-23 09:26:20 +00:00
|
|
|
}
|
|
|
|
|
2002-05-28 12:09:30 +00:00
|
|
|
int button_get(bool block)
|
2002-05-23 09:26:20 +00:00
|
|
|
{
|
|
|
|
struct event ev;
|
|
|
|
|
2002-05-28 12:09:30 +00:00
|
|
|
if ( block || !queue_empty(&button_queue) ) {
|
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
|
|
|
|
2002-04-20 14:42:49 +00:00
|
|
|
#ifdef HAVE_RECORDER_KEYPAD
|
|
|
|
|
2002-04-16 13:37:50 +00:00
|
|
|
/* AJBR buttons are connected to the CPU as follows:
|
|
|
|
*
|
|
|
|
* ON and OFF are connected to separate port B input pins.
|
|
|
|
*
|
|
|
|
* F1, F2, F3, and UP are connected to the AN4 analog input, each through
|
|
|
|
* a separate voltage divider. The voltage on AN4 depends on which button
|
|
|
|
* (or none, or a combination) is pressed.
|
|
|
|
*
|
|
|
|
* DOWN, PLAY, LEFT, and RIGHT are likewise connected to AN5. */
|
|
|
|
|
2002-06-30 20:24:57 +00:00
|
|
|
/* Button analog voltage levels */
|
2002-06-30 20:45:46 +00:00
|
|
|
#define LEVEL1 300
|
|
|
|
#define LEVEL2 500
|
|
|
|
#define LEVEL3 700
|
|
|
|
#define LEVEL4 900
|
2002-04-16 13:37:50 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
*Initialize buttons
|
|
|
|
*/
|
|
|
|
void button_init()
|
|
|
|
{
|
|
|
|
#ifndef SIMULATOR
|
2002-04-16 13:40:42 +00:00
|
|
|
/* Set PB4 and PB8 as input pins */
|
|
|
|
PBCR1 &= 0xfffc; /* PB8MD = 00 */
|
|
|
|
PBCR2 &= 0xfcff; /* PB4MD = 00 */
|
|
|
|
PBIOR &= ~(PBDR_BTN_ON|PBDR_BTN_OFF); /* Inputs */
|
2002-04-16 13:37:50 +00:00
|
|
|
#endif
|
2002-05-23 09:26:20 +00:00
|
|
|
queue_init(&button_queue);
|
|
|
|
tick_add_task(button_tick);
|
2002-04-16 13:37:50 +00:00
|
|
|
}
|
|
|
|
|
2002-07-24 15:21:08 +00:00
|
|
|
int button_set_repeat(int newmask)
|
|
|
|
{
|
|
|
|
int oldmask = repeat_mask;
|
|
|
|
repeat_mask = newmask;
|
|
|
|
return oldmask;
|
|
|
|
}
|
|
|
|
|
2002-04-16 13:37:50 +00:00
|
|
|
/*
|
|
|
|
* Get button pressed from hardware
|
|
|
|
*/
|
2002-06-07 11:13:26 +00:00
|
|
|
static int button_read(void)
|
2002-04-16 13:37:50 +00:00
|
|
|
{
|
2002-04-16 13:40:42 +00:00
|
|
|
/* Check port B pins for ON and OFF */
|
|
|
|
int data = PBDR;
|
|
|
|
if ((data & PBDR_BTN_ON) == 0)
|
|
|
|
return BUTTON_ON;
|
|
|
|
else if ((data & PBDR_BTN_OFF) == 0)
|
|
|
|
return BUTTON_OFF;
|
|
|
|
|
2002-06-30 20:24:57 +00:00
|
|
|
/* Check F1-3 and UP */
|
|
|
|
data = adc_read(ADC_BUTTON_ROW1);
|
2002-04-16 13:40:42 +00:00
|
|
|
if (data >= LEVEL4)
|
|
|
|
return BUTTON_F3;
|
|
|
|
else if (data >= LEVEL3)
|
|
|
|
return BUTTON_UP;
|
|
|
|
else if (data >= LEVEL2)
|
|
|
|
return BUTTON_F2;
|
|
|
|
else if (data >= LEVEL1)
|
|
|
|
return BUTTON_F1;
|
|
|
|
|
2002-06-30 20:24:57 +00:00
|
|
|
/* Check DOWN, PLAY, LEFT, RIGHT */
|
|
|
|
data = adc_read(ADC_BUTTON_ROW2);
|
2002-04-16 13:40:42 +00:00
|
|
|
if (data >= LEVEL4)
|
|
|
|
return BUTTON_DOWN;
|
|
|
|
else if (data >= LEVEL3)
|
|
|
|
return BUTTON_PLAY;
|
|
|
|
else if (data >= LEVEL2)
|
|
|
|
return BUTTON_LEFT;
|
|
|
|
else if (data >= LEVEL1)
|
|
|
|
return BUTTON_RIGHT;
|
2002-04-16 13:37:50 +00:00
|
|
|
|
2002-04-16 13:40:42 +00:00
|
|
|
return BUTTON_NONE;
|
2002-04-16 13:37:50 +00:00
|
|
|
}
|
|
|
|
|
2002-04-20 14:42:49 +00:00
|
|
|
#elif HAVE_PLAYER_KEYPAD
|
|
|
|
|
2002-07-05 07:11:20 +00:00
|
|
|
/* The player has two buttons on port pins:
|
2002-04-20 14:42:49 +00:00
|
|
|
|
|
|
|
STOP: PA11
|
|
|
|
ON: PA5
|
2002-07-05 07:11:20 +00:00
|
|
|
|
|
|
|
The rest are on analog inputs:
|
|
|
|
|
|
|
|
LEFT: AN0
|
|
|
|
MENU: AN1
|
|
|
|
RIGHT: AN2
|
|
|
|
PLAY: AN3
|
2002-04-20 14:42:49 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
void button_init(void)
|
|
|
|
{
|
|
|
|
/* set port pins as input */
|
|
|
|
PAIOR &= ~0x820;
|
2002-05-23 09:26:20 +00:00
|
|
|
queue_init(&button_queue);
|
|
|
|
tick_add_task(button_tick);
|
2002-04-20 14:42:49 +00:00
|
|
|
}
|
|
|
|
|
2002-05-23 09:26:20 +00:00
|
|
|
static int button_read(void)
|
2002-04-20 14:42:49 +00:00
|
|
|
{
|
|
|
|
int porta = PADR;
|
|
|
|
int btn = 0;
|
2002-07-05 07:11:20 +00:00
|
|
|
|
2002-05-17 19:23:04 +00:00
|
|
|
/* buttons are active low */
|
2002-07-05 07:11:20 +00:00
|
|
|
if(adc_read(0) < 0x180)
|
2002-04-20 14:42:49 +00:00
|
|
|
btn |= BUTTON_LEFT;
|
2002-07-05 07:11:20 +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)
|
2002-04-20 14:42:49 +00:00
|
|
|
btn |= BUTTON_PLAY | BUTTON_UP;
|
2002-07-05 07:11:20 +00:00
|
|
|
|
2002-05-17 19:23:04 +00:00
|
|
|
if ( !(porta & 0x20) )
|
2002-04-20 14:42:49 +00:00
|
|
|
btn |= BUTTON_ON;
|
2002-05-17 19:23:04 +00:00
|
|
|
if ( !(porta & 0x800) )
|
2002-04-20 14:42:49 +00:00
|
|
|
btn |= BUTTON_STOP | BUTTON_DOWN;
|
|
|
|
|
|
|
|
return btn;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2002-04-16 13:40:42 +00:00
|
|
|
|
|
|
|
/* -----------------------------------------------------------------
|
|
|
|
* local variables:
|
2002-05-01 10:12:28 +00:00
|
|
|
* eval: (load-file "../rockbox-mode.el")
|
2002-04-16 13:40:42 +00:00
|
|
|
* end:
|
|
|
|
*/
|