2002-06-29 22:41:39 +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.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
#include "config.h"
|
|
|
|
#include "sh7034.h"
|
|
|
|
#include "kernel.h"
|
|
|
|
#include "thread.h"
|
|
|
|
#include "system.h"
|
|
|
|
#include "debug.h"
|
2002-06-30 13:13:13 +00:00
|
|
|
#include "ata.h"
|
|
|
|
#include "fat.h"
|
|
|
|
#include "disk.h"
|
|
|
|
#include "panic.h"
|
2002-06-30 14:11:28 +00:00
|
|
|
#include "lcd.h"
|
2002-06-30 20:27:26 +00:00
|
|
|
#include "adc.h"
|
2002-07-01 12:19:12 +00:00
|
|
|
#include "usb.h"
|
2002-07-02 18:30:39 +00:00
|
|
|
#include "button.h"
|
|
|
|
#include "sprintf.h"
|
2003-05-17 22:12:11 +00:00
|
|
|
#include "hwcompat.h"
|
2002-06-30 13:13:13 +00:00
|
|
|
|
2002-07-23 15:02:25 +00:00
|
|
|
extern void dbg_ports(void); /* NASTY! defined in apps/ */
|
2002-06-30 13:13:13 +00:00
|
|
|
|
2004-06-30 13:31:14 +00:00
|
|
|
#ifdef HAVE_LCD_BITMAP
|
|
|
|
bool do_screendump_instead_of_usb = false;
|
|
|
|
void screen_dump(void); /* Nasty again. Defined in apps/ too */
|
|
|
|
#endif
|
|
|
|
|
2002-06-30 13:13:13 +00:00
|
|
|
#define USB_REALLY_BRAVE
|
|
|
|
|
2003-12-12 13:30:15 +00:00
|
|
|
#if !defined(SIMULATOR) && !defined(USB_NONE)
|
2002-06-29 22:41:39 +00:00
|
|
|
|
2002-07-01 19:32:54 +00:00
|
|
|
/* Messages from usb_tick */
|
2002-06-29 22:41:39 +00:00
|
|
|
#define USB_INSERTED 1
|
|
|
|
#define USB_EXTRACTED 2
|
|
|
|
|
2002-07-01 19:32:54 +00:00
|
|
|
/* Thread states */
|
|
|
|
#define EXTRACTING 1
|
|
|
|
#define EXTRACTED 2
|
|
|
|
#define INSERTED 3
|
|
|
|
#define INSERTING 4
|
|
|
|
|
|
|
|
/* The ADC tick reads one channel per tick, and we want to check 3 successive
|
|
|
|
readings on the USB voltage channel. This doesn't apply to the Player, but
|
|
|
|
debouncing the USB detection port won't hurt us either. */
|
|
|
|
#define NUM_POLL_READINGS (NUM_ADC_CHANNELS * 3)
|
|
|
|
static int countdown;
|
|
|
|
|
2002-07-01 11:02:54 +00:00
|
|
|
static int usb_state;
|
|
|
|
|
2004-03-25 14:08:58 +00:00
|
|
|
/* FIXME: The extra 0x400 is consumed by fat_mount() when the fsinfo
|
|
|
|
needs updating */
|
|
|
|
static char usb_stack[DEFAULT_STACK_SIZE + 0x400];
|
2004-08-03 19:22:56 +00:00
|
|
|
static const char usb_thread_name[] = "usb";
|
2002-06-29 22:41:39 +00:00
|
|
|
static struct event_queue usb_queue;
|
2002-06-30 13:13:13 +00:00
|
|
|
static bool last_usb_status;
|
|
|
|
static bool usb_monitor_enabled;
|
|
|
|
|
|
|
|
static void usb_enable(bool on)
|
|
|
|
{
|
2003-05-17 22:12:11 +00:00
|
|
|
#ifdef HAVE_LCD_BITMAP
|
|
|
|
if(read_hw_mask() & USB_ACTIVE_HIGH)
|
2002-07-03 14:16:20 +00:00
|
|
|
on = !on;
|
2003-05-17 22:12:11 +00:00
|
|
|
#endif
|
2002-07-03 14:16:20 +00:00
|
|
|
|
2004-09-11 02:41:58 +00:00
|
|
|
#ifdef USB_ENABLE_ONDIOSTYLE
|
|
|
|
if(on)
|
|
|
|
{
|
|
|
|
or_b(0x20, &PADRL); /* enable USB */
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2004-09-11 09:06:58 +00:00
|
|
|
and_b(~0x20, &PADRL); /* disable USB */
|
2004-09-11 02:41:58 +00:00
|
|
|
}
|
2004-09-11 09:06:58 +00:00
|
|
|
or_b(0x20, &PAIORL); /* output for USB enable */
|
2004-09-11 02:41:58 +00:00
|
|
|
#else /* standard HD Jukebox */
|
2002-06-30 13:13:13 +00:00
|
|
|
if(on)
|
2003-11-07 21:03:41 +00:00
|
|
|
{
|
|
|
|
and_b(~0x04, &PADRH); /* enable USB */
|
|
|
|
}
|
2002-06-30 13:13:13 +00:00
|
|
|
else
|
2003-11-07 21:03:41 +00:00
|
|
|
{
|
|
|
|
or_b(0x04, &PADRH);
|
|
|
|
}
|
|
|
|
or_b(0x04, &PAIORH);
|
2004-09-11 02:41:58 +00:00
|
|
|
#endif
|
2002-06-30 13:13:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void usb_slave_mode(bool on)
|
|
|
|
{
|
|
|
|
int rc;
|
|
|
|
struct partinfo* pinfo;
|
|
|
|
|
|
|
|
if(on)
|
|
|
|
{
|
2002-07-01 11:02:54 +00:00
|
|
|
DEBUGF("Entering USB slave mode\n");
|
2002-07-23 15:02:25 +00:00
|
|
|
ata_soft_reset();
|
2002-07-24 17:09:50 +00:00
|
|
|
ata_init();
|
2003-05-10 01:55:23 +00:00
|
|
|
ata_standby(15);
|
2002-07-01 11:02:54 +00:00
|
|
|
ata_enable(false);
|
|
|
|
usb_enable(true);
|
2002-06-30 13:13:13 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2004-06-10 15:03:09 +00:00
|
|
|
int i;
|
2002-07-01 11:02:54 +00:00
|
|
|
DEBUGF("Leaving USB slave mode\n");
|
|
|
|
|
|
|
|
/* Let the ISDx00 settle */
|
|
|
|
sleep(HZ*1);
|
|
|
|
|
|
|
|
usb_enable(false);
|
2002-06-30 13:13:13 +00:00
|
|
|
|
2002-07-01 11:02:54 +00:00
|
|
|
rc = ata_init();
|
|
|
|
if(rc)
|
2002-07-02 17:49:05 +00:00
|
|
|
{
|
|
|
|
char str[32];
|
|
|
|
lcd_clear_display();
|
|
|
|
snprintf(str, 31, "ATA error: %d", rc);
|
2002-07-23 15:02:25 +00:00
|
|
|
lcd_puts(0, 0, str);
|
|
|
|
lcd_puts(0, 1, "Press ON to debug");
|
2002-07-02 17:49:05 +00:00
|
|
|
lcd_update();
|
|
|
|
while(button_get(true) != BUTTON_ON) {};
|
|
|
|
dbg_ports();
|
2002-07-01 11:02:54 +00:00
|
|
|
panicf("ata: %d",rc);
|
2002-07-02 17:49:05 +00:00
|
|
|
}
|
2002-07-01 11:02:54 +00:00
|
|
|
|
|
|
|
pinfo = disk_init();
|
|
|
|
if (!pinfo)
|
|
|
|
panicf("disk: NULL");
|
|
|
|
|
2004-06-10 15:03:09 +00:00
|
|
|
for ( i=0; i<4; i++ ) {
|
2004-06-10 15:10:13 +00:00
|
|
|
rc = fat_mount(pinfo[i].start);
|
|
|
|
if (!rc)
|
2004-06-10 15:03:09 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (i==4)
|
2002-07-01 11:02:54 +00:00
|
|
|
panicf("mount: %d",rc);
|
2002-06-30 13:13:13 +00:00
|
|
|
}
|
|
|
|
}
|
2002-06-29 22:41:39 +00:00
|
|
|
|
|
|
|
static void usb_thread(void)
|
|
|
|
{
|
|
|
|
int num_acks_to_expect = -1;
|
|
|
|
bool waiting_for_ack;
|
|
|
|
struct event ev;
|
|
|
|
|
|
|
|
waiting_for_ack = false;
|
2002-07-01 19:32:54 +00:00
|
|
|
|
2002-06-29 22:41:39 +00:00
|
|
|
while(1)
|
|
|
|
{
|
2002-07-01 11:02:54 +00:00
|
|
|
queue_wait(&usb_queue, &ev);
|
|
|
|
switch(ev.id)
|
|
|
|
{
|
|
|
|
case USB_INSERTED:
|
2004-06-30 13:31:14 +00:00
|
|
|
#ifdef HAVE_LCD_BITMAP
|
|
|
|
if(do_screendump_instead_of_usb)
|
|
|
|
{
|
|
|
|
screen_dump();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
#endif
|
|
|
|
/* Tell all threads that they have to back off the ATA.
|
|
|
|
We subtract one for our own thread. */
|
|
|
|
num_acks_to_expect =
|
|
|
|
queue_broadcast(SYS_USB_CONNECTED, NULL) - 1;
|
|
|
|
waiting_for_ack = true;
|
|
|
|
DEBUGF("USB inserted. Waiting for ack from %d threads...\n",
|
|
|
|
num_acks_to_expect);
|
|
|
|
#ifdef HAVE_LCD_BITMAP
|
|
|
|
}
|
|
|
|
#endif
|
2002-07-01 11:02:54 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case SYS_USB_CONNECTED_ACK:
|
|
|
|
if(waiting_for_ack)
|
|
|
|
{
|
|
|
|
num_acks_to_expect--;
|
|
|
|
if(num_acks_to_expect == 0)
|
|
|
|
{
|
2002-07-01 19:32:54 +00:00
|
|
|
DEBUGF("All threads have acknowledged the connect.\n");
|
2002-06-30 13:13:13 +00:00
|
|
|
#ifdef USB_REALLY_BRAVE
|
2002-07-01 11:02:54 +00:00
|
|
|
usb_slave_mode(true);
|
|
|
|
usb_state = USB_INSERTED;
|
2002-06-30 13:13:13 +00:00
|
|
|
#else
|
2002-07-01 11:02:54 +00:00
|
|
|
system_reboot();
|
2002-06-30 13:13:13 +00:00
|
|
|
#endif
|
2002-07-01 11:02:54 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2002-07-01 19:32:54 +00:00
|
|
|
DEBUGF("usb: got ack, %d to go...\n",
|
|
|
|
num_acks_to_expect);
|
2002-07-01 11:02:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case USB_EXTRACTED:
|
2004-06-30 13:31:14 +00:00
|
|
|
#ifdef HAVE_LCD_BITMAP
|
|
|
|
if(!do_screendump_instead_of_usb)
|
2002-07-01 11:02:54 +00:00
|
|
|
{
|
2004-06-30 13:31:14 +00:00
|
|
|
#endif
|
|
|
|
if(usb_state == USB_INSERTED)
|
|
|
|
{
|
|
|
|
/* Only disable the USB mode if we really have enabled it
|
|
|
|
some threads might not have acknowledged the
|
|
|
|
insertion */
|
|
|
|
usb_slave_mode(false);
|
|
|
|
}
|
2002-06-30 13:13:13 +00:00
|
|
|
|
2004-06-30 13:31:14 +00:00
|
|
|
usb_state = USB_EXTRACTED;
|
|
|
|
|
|
|
|
/* Tell all threads that we are back in business */
|
|
|
|
num_acks_to_expect =
|
|
|
|
queue_broadcast(SYS_USB_DISCONNECTED, NULL) - 1;
|
|
|
|
waiting_for_ack = true;
|
|
|
|
DEBUGF("USB extracted. Waiting for ack from %d threads...\n",
|
|
|
|
num_acks_to_expect);
|
2002-08-23 02:17:00 +00:00
|
|
|
#ifdef HAVE_LCD_CHARCELLS
|
2004-06-30 13:31:14 +00:00
|
|
|
lcd_icon(ICON_USB, false);
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_LCD_BITMAP
|
|
|
|
}
|
2002-08-23 02:17:00 +00:00
|
|
|
#endif
|
2002-07-01 11:02:54 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case SYS_USB_DISCONNECTED_ACK:
|
|
|
|
if(waiting_for_ack)
|
|
|
|
{
|
|
|
|
num_acks_to_expect--;
|
|
|
|
if(num_acks_to_expect == 0)
|
|
|
|
{
|
2002-07-01 19:32:54 +00:00
|
|
|
DEBUGF("All threads have acknowledged. "
|
|
|
|
"We're in business.\n");
|
2002-07-01 11:02:54 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2002-07-01 19:32:54 +00:00
|
|
|
DEBUGF("usb: got ack, %d to go...\n",
|
|
|
|
num_acks_to_expect);
|
2002-07-01 11:02:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2002-06-29 22:41:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-07-03 22:11:14 +00:00
|
|
|
bool usb_detect(void)
|
2002-06-29 22:41:39 +00:00
|
|
|
{
|
2002-06-29 22:59:12 +00:00
|
|
|
bool current_status;
|
2002-06-29 22:41:39 +00:00
|
|
|
|
2003-11-27 21:27:37 +00:00
|
|
|
#ifdef USB_RECORDERSTYLE
|
|
|
|
current_status = (adc_read(ADC_USB_POWER) > 500)?true:false;
|
|
|
|
#endif
|
|
|
|
#ifdef USB_FMRECORDERSTYLE
|
|
|
|
current_status = (adc_read(ADC_USB_POWER) <= 512)?true:false;
|
2003-01-16 15:11:29 +00:00
|
|
|
#endif
|
2003-11-27 21:27:37 +00:00
|
|
|
#ifdef USB_PLAYERSTYLE
|
|
|
|
current_status = (PADR & 0x8000)?false:true;
|
2002-06-29 22:41:39 +00:00
|
|
|
#endif
|
2003-07-03 22:11:14 +00:00
|
|
|
|
|
|
|
return current_status;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void usb_tick(void)
|
|
|
|
{
|
|
|
|
bool current_status;
|
|
|
|
|
|
|
|
if(usb_monitor_enabled)
|
|
|
|
{
|
|
|
|
current_status = usb_detect();
|
2002-07-01 11:02:54 +00:00
|
|
|
|
|
|
|
/* Only report when the status has changed */
|
|
|
|
if(current_status != last_usb_status)
|
|
|
|
{
|
|
|
|
last_usb_status = current_status;
|
2002-07-01 19:32:54 +00:00
|
|
|
countdown = NUM_POLL_READINGS;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Count down until it gets negative */
|
|
|
|
if(countdown >= 0)
|
|
|
|
countdown--;
|
|
|
|
|
|
|
|
/* Report to the thread if we have had 3 identical status
|
|
|
|
readings in a row */
|
|
|
|
if(countdown == 0)
|
|
|
|
{
|
|
|
|
if(current_status)
|
|
|
|
queue_post(&usb_queue, USB_INSERTED, NULL);
|
|
|
|
else
|
|
|
|
queue_post(&usb_queue, USB_EXTRACTED, NULL);
|
|
|
|
}
|
2002-07-01 11:02:54 +00:00
|
|
|
}
|
2002-06-29 22:41:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void usb_acknowledge(int id)
|
|
|
|
{
|
2002-07-23 15:02:25 +00:00
|
|
|
queue_post(&usb_queue, id, NULL);
|
2002-06-29 22:41:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void usb_init(void)
|
|
|
|
{
|
2002-07-01 11:02:54 +00:00
|
|
|
usb_state = USB_EXTRACTED;
|
2002-06-30 13:13:13 +00:00
|
|
|
usb_monitor_enabled = false;
|
2002-07-01 19:32:54 +00:00
|
|
|
countdown = -1;
|
2002-07-03 14:16:20 +00:00
|
|
|
|
2002-06-30 13:13:13 +00:00
|
|
|
usb_enable(false);
|
|
|
|
|
|
|
|
/* We assume that the USB cable is extracted */
|
|
|
|
last_usb_status = false;
|
2002-06-29 22:41:39 +00:00
|
|
|
|
|
|
|
queue_init(&usb_queue);
|
2002-07-15 22:19:49 +00:00
|
|
|
create_thread(usb_thread, usb_stack, sizeof(usb_stack), usb_thread_name);
|
2002-06-29 22:41:39 +00:00
|
|
|
|
2002-06-30 13:13:13 +00:00
|
|
|
tick_add_task(usb_tick);
|
|
|
|
}
|
|
|
|
|
|
|
|
void usb_wait_for_disconnect(struct event_queue *q)
|
|
|
|
{
|
|
|
|
struct event ev;
|
|
|
|
|
|
|
|
/* Don't return until we get SYS_USB_DISCONNECTED */
|
|
|
|
while(1)
|
|
|
|
{
|
2002-07-01 11:02:54 +00:00
|
|
|
queue_wait(q, &ev);
|
|
|
|
if(ev.id == SYS_USB_DISCONNECTED)
|
|
|
|
{
|
|
|
|
usb_acknowledge(SYS_USB_DISCONNECTED_ACK);
|
|
|
|
return;
|
|
|
|
}
|
2002-06-30 13:13:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-10-11 08:56:23 +00:00
|
|
|
int usb_wait_for_disconnect_w_tmo(struct event_queue *q, int ticks)
|
|
|
|
{
|
|
|
|
struct event ev;
|
|
|
|
|
|
|
|
/* Don't return until we get SYS_USB_DISCONNECTED or SYS_TIMEOUT */
|
|
|
|
while(1)
|
|
|
|
{
|
|
|
|
queue_wait_w_tmo(q, &ev, ticks);
|
|
|
|
switch(ev.id)
|
|
|
|
{
|
|
|
|
case SYS_USB_DISCONNECTED:
|
|
|
|
usb_acknowledge(SYS_USB_DISCONNECTED_ACK);
|
|
|
|
return 0;
|
|
|
|
break;
|
|
|
|
case SYS_TIMEOUT:
|
|
|
|
return 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-06-30 13:13:13 +00:00
|
|
|
void usb_start_monitoring(void)
|
|
|
|
{
|
|
|
|
usb_monitor_enabled = true;
|
2002-06-29 22:41:39 +00:00
|
|
|
}
|
|
|
|
|
2002-09-25 19:25:10 +00:00
|
|
|
bool usb_inserted(void)
|
|
|
|
{
|
|
|
|
return usb_state == USB_INSERTED;
|
|
|
|
}
|
|
|
|
|
2002-06-29 22:41:39 +00:00
|
|
|
#else
|
|
|
|
|
2003-12-12 13:30:15 +00:00
|
|
|
#ifdef USB_NONE
|
|
|
|
bool usb_inserted(void)
|
|
|
|
{
|
2003-12-15 11:44:06 +00:00
|
|
|
return false;
|
2003-12-12 13:30:15 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2002-06-29 22:41:39 +00:00
|
|
|
/* Dummy simulator functions */
|
|
|
|
void usb_acknowledge(int id)
|
|
|
|
{
|
|
|
|
id = id;
|
|
|
|
}
|
|
|
|
|
|
|
|
void usb_init(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2002-06-30 13:13:13 +00:00
|
|
|
void usb_start_monitoring(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2003-07-20 00:08:09 +00:00
|
|
|
bool usb_detect(void)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2003-12-12 13:30:15 +00:00
|
|
|
#endif /* USB_NONE or SIMULATOR */
|