2003-02-07 09:41:57 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2002 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.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
#ifndef _USB_H_
|
|
|
|
#define _USB_H_
|
|
|
|
|
|
|
|
#include "kernel.h"
|
2007-09-04 08:03:07 +00:00
|
|
|
#include "button.h"
|
|
|
|
|
|
|
|
/* Messages from usb_tick and thread states */
|
|
|
|
#define USB_INSERTED 1
|
|
|
|
#define USB_EXTRACTED 2
|
|
|
|
#ifdef HAVE_MMC
|
|
|
|
#define USB_REENABLE 3
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_USB_POWER
|
|
|
|
#define USB_POWERED 4
|
|
|
|
|
|
|
|
#if CONFIG_KEYPAD == RECORDER_PAD
|
|
|
|
#define USBPOWER_BUTTON BUTTON_F1
|
|
|
|
#define USBPOWER_BTN_IGNORE BUTTON_ON
|
|
|
|
#elif CONFIG_KEYPAD == ONDIO_PAD
|
|
|
|
#define USBPOWER_BUTTON BUTTON_MENU
|
|
|
|
#define USBPOWER_BTN_IGNORE BUTTON_OFF
|
|
|
|
#elif (CONFIG_KEYPAD == IPOD_4G_PAD)
|
|
|
|
#define USBPOWER_BUTTON BUTTON_MENU
|
|
|
|
#define USBPOWER_BTN_IGNORE BUTTON_PLAY
|
|
|
|
#elif CONFIG_KEYPAD == IRIVER_H300_PAD
|
|
|
|
#define USBPOWER_BUTTON BUTTON_REC
|
|
|
|
#define USBPOWER_BTN_IGNORE BUTTON_ON
|
|
|
|
#elif CONFIG_KEYPAD == GIGABEAT_PAD
|
|
|
|
#define USBPOWER_BUTTON BUTTON_MENU
|
|
|
|
#define USBPOWER_BTN_IGNORE BUTTON_POWER
|
2007-09-21 15:51:53 +00:00
|
|
|
#elif CONFIG_KEYPAD == GIGABEAT_S_PAD
|
|
|
|
#define USBPOWER_BUTTON BUTTON_MENU
|
|
|
|
#define USBPOWER_BTN_IGNORE BUTTON_BACK
|
2007-09-04 08:03:07 +00:00
|
|
|
#elif CONFIG_KEYPAD == IRIVER_H10_PAD
|
2007-11-22 20:51:00 +00:00
|
|
|
#define USBPOWER_BUTTON BUTTON_RIGHT
|
2007-09-04 08:03:07 +00:00
|
|
|
#define USBPOWER_BTN_IGNORE BUTTON_POWER
|
2007-09-06 03:28:58 +00:00
|
|
|
#elif (CONFIG_KEYPAD == SANSA_E200_PAD) || \
|
|
|
|
(CONFIG_KEYPAD == SANSA_C200_PAD)
|
2007-09-04 08:03:07 +00:00
|
|
|
#define USBPOWER_BUTTON BUTTON_SELECT
|
|
|
|
#define USBPOWER_BTN_IGNORE BUTTON_POWER
|
|
|
|
#endif
|
|
|
|
#endif /* HAVE_USB_POWER */
|
2003-02-07 09:41:57 +00:00
|
|
|
|
|
|
|
void usb_init(void);
|
2005-12-06 12:12:29 +00:00
|
|
|
void usb_enable(bool on);
|
2003-02-07 09:41:57 +00:00
|
|
|
void usb_start_monitoring(void);
|
2005-01-30 15:16:58 +00:00
|
|
|
void usb_acknowledge(long id);
|
2003-02-07 09:41:57 +00:00
|
|
|
void usb_wait_for_disconnect(struct event_queue *q);
|
|
|
|
int usb_wait_for_disconnect_w_tmo(struct event_queue *q, int ticks);
|
2003-07-03 22:11:14 +00:00
|
|
|
bool usb_inserted(void); /* return the official value, what's been reported to the threads */
|
2007-09-04 08:03:07 +00:00
|
|
|
int usb_detect(void); /* return the raw hardware value - nothing/pc/charger */
|
2005-06-23 02:18:29 +00:00
|
|
|
#ifdef HAVE_USB_POWER
|
|
|
|
bool usb_powered(void);
|
2007-02-01 10:47:22 +00:00
|
|
|
#ifdef CONFIG_CHARGING
|
|
|
|
bool usb_charging_enable(bool on);
|
|
|
|
bool usb_charging_enabled(void);
|
|
|
|
#endif
|
2005-06-23 02:18:29 +00:00
|
|
|
#endif
|
2003-02-07 09:41:57 +00:00
|
|
|
|
|
|
|
#endif
|