2010-01-18 19:05:20 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id:$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2009 Szymon Dziok
|
|
|
|
* Based on the Iriver H10 and the Philips HD1630 code
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include "system.h"
|
|
|
|
#include "button.h"
|
|
|
|
#include "backlight.h"
|
2010-02-10 18:42:48 +00:00
|
|
|
#include "powermgmt.h"
|
2010-01-18 19:05:20 +00:00
|
|
|
#include "synaptics-mep.h"
|
|
|
|
|
|
|
|
static int int_btn = BUTTON_NONE;
|
|
|
|
static int old_pos = -1;
|
|
|
|
|
|
|
|
void button_init_device(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Button interrupt handler
|
|
|
|
*/
|
|
|
|
void button_int(void)
|
|
|
|
{
|
|
|
|
char data[4];
|
|
|
|
int val;
|
|
|
|
|
|
|
|
int_btn = BUTTON_NONE;
|
|
|
|
|
|
|
|
val = touchpad_read_device(data, 4);
|
|
|
|
|
2010-02-10 18:42:48 +00:00
|
|
|
if (data[0] == MEP_BUTTON_HEADER)
|
2010-01-18 19:05:20 +00:00
|
|
|
{
|
|
|
|
/* Buttons packet */
|
|
|
|
if (data[1] & 0x1)
|
|
|
|
int_btn |= BUTTON_MENU;
|
|
|
|
if (data[1] & 0x2)
|
|
|
|
int_btn |= BUTTON_PLAY;
|
|
|
|
if (data[1] & 0x4)
|
|
|
|
int_btn |= BUTTON_NEXT;
|
|
|
|
if (data[1] & 0x8)
|
|
|
|
int_btn |= BUTTON_PREV;
|
|
|
|
}
|
2010-02-10 18:42:48 +00:00
|
|
|
else if (data[0] == MEP_ABSOLUTE_HEADER)
|
2010-01-18 19:05:20 +00:00
|
|
|
{
|
2010-02-10 18:42:48 +00:00
|
|
|
if (data[1] & MEP_FINGER)
|
|
|
|
{
|
|
|
|
/* Absolute packet - the finger is on the vertical strip.
|
|
|
|
Position ranges from 1-4095, with 1 at the bottom. */
|
|
|
|
val = ((data[1] >> 4) << 8) | data[2]; /* position */
|
2010-01-18 19:05:20 +00:00
|
|
|
|
2010-02-10 18:42:48 +00:00
|
|
|
int scr_pos = val >> 8; /* split the scrollstrip into 16 regions */
|
|
|
|
if ((old_pos<scr_pos)&&(old_pos!=-1)) int_btn = BUTTON_DOWN;
|
|
|
|
if ((old_pos>scr_pos)&&(old_pos!=-1)) int_btn = BUTTON_UP;
|
|
|
|
old_pos = scr_pos;
|
|
|
|
}
|
2010-01-18 19:05:20 +00:00
|
|
|
else old_pos=-1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int button_read_device(void)
|
|
|
|
{
|
|
|
|
int buttons = int_btn;
|
|
|
|
unsigned char state;
|
|
|
|
static bool hold_button = false;
|
|
|
|
bool hold_button_old;
|
|
|
|
|
|
|
|
hold_button_old = hold_button;
|
|
|
|
hold_button = button_hold();
|
|
|
|
|
|
|
|
#ifndef BOOTLOADER
|
|
|
|
if (hold_button != hold_button_old)
|
|
|
|
{
|
|
|
|
backlight_hold_changed(hold_button);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* device buttons */
|
|
|
|
if (!hold_button)
|
|
|
|
{
|
|
|
|
/* Read Record, OK, C */
|
2010-02-10 18:42:48 +00:00
|
|
|
state = GPIOA_INPUT_VAL;
|
|
|
|
if ((state & 0x01)==0) buttons|=BUTTON_REC;
|
|
|
|
if ((state & 0x40)==0) buttons|=BUTTON_OK;
|
|
|
|
if ((state & 0x08)==0) buttons|=BUTTON_CANCEL;
|
2010-01-18 19:05:20 +00:00
|
|
|
|
|
|
|
/* Read POWER button */
|
2010-02-10 18:42:48 +00:00
|
|
|
if ((GPIOD_INPUT_VAL & 0x40)==0) buttons|=BUTTON_POWER;
|
|
|
|
|
|
|
|
/* Scrollstrip direct button post - much better response */
|
|
|
|
if ((buttons==BUTTON_UP) || (buttons==BUTTON_DOWN))
|
|
|
|
{
|
|
|
|
queue_post(&button_queue,buttons,0);
|
|
|
|
backlight_on();
|
|
|
|
buttonlight_on();
|
|
|
|
reset_poweroff_timer();
|
|
|
|
buttons = BUTTON_NONE;
|
|
|
|
int_btn = BUTTON_NONE;
|
|
|
|
}
|
2010-01-18 19:05:20 +00:00
|
|
|
}
|
|
|
|
else return BUTTON_NONE;
|
|
|
|
return buttons;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool button_hold(void)
|
|
|
|
{
|
|
|
|
/* GPIOK 01000000B - HOLD when bit not set */
|
|
|
|
return (GPIOK_INPUT_VAL & 0x40)?false:true;
|
|
|
|
}
|