2006-10-05 10:58:51 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2002 by Linus Nielsen Feltzing
|
|
|
|
*
|
|
|
|
* iPod driver based on code from the ipodlinux project - http://ipodlinux.org
|
|
|
|
* Adapted for Rockbox in January 2006
|
|
|
|
* Original file: podzilla/usb.c
|
|
|
|
* Copyright (C) 2005 Adam Johnston
|
|
|
|
*
|
|
|
|
* 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 "system.h"
|
|
|
|
#include "usb.h"
|
2007-08-27 16:26:56 +00:00
|
|
|
#include "button.h"
|
|
|
|
#include "ata.h"
|
2007-08-27 16:30:23 +00:00
|
|
|
#include "string.h"
|
2007-08-27 16:04:32 +00:00
|
|
|
#ifdef HAVE_USBSTACK
|
2007-11-22 20:51:00 +00:00
|
|
|
#include "usb_core.h"
|
2007-08-27 16:04:32 +00:00
|
|
|
#endif
|
2007-11-23 00:02:52 +00:00
|
|
|
#include "usb_drv.h"
|
2007-08-27 16:04:32 +00:00
|
|
|
|
2006-10-05 10:58:51 +00:00
|
|
|
void usb_init_device(void)
|
|
|
|
{
|
2007-11-22 20:51:00 +00:00
|
|
|
/* enable usb module */
|
2007-11-05 17:19:00 +00:00
|
|
|
GPO32_ENABLE |= 0x200;
|
2007-09-05 15:52:49 +00:00
|
|
|
|
2007-08-27 18:21:05 +00:00
|
|
|
outl(inl(0x7000002C) | 0x3000000, 0x7000002C);
|
2007-09-05 15:52:49 +00:00
|
|
|
DEV_EN |= DEV_USB;
|
|
|
|
|
2007-08-27 18:21:05 +00:00
|
|
|
DEV_RS |= DEV_USB; /* reset usb start */
|
|
|
|
DEV_RS &=~DEV_USB;/* reset usb end */
|
2007-09-05 15:52:49 +00:00
|
|
|
|
2007-10-16 10:48:16 +00:00
|
|
|
DEV_INIT2 |= INIT_USB;
|
2007-09-05 15:52:49 +00:00
|
|
|
while ((inl(0x70000028) & 0x80) == 0);
|
|
|
|
outl(inl(0x70000028) | 0x2, 0x70000028);
|
|
|
|
udelay(0x186A0);
|
|
|
|
|
2007-08-01 22:44:02 +00:00
|
|
|
#if defined(IPOD_COLOR) || defined(IPOD_4G) \
|
|
|
|
|| defined(IPOD_MINI) || defined(IPOD_MINI2G)
|
|
|
|
/* GPIO C bit 1 is firewire detect */
|
|
|
|
GPIOC_ENABLE |= 0x02;
|
|
|
|
GPIOC_OUTPUT_EN &= ~0x02;
|
|
|
|
#endif
|
2006-10-05 10:58:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void usb_enable(bool on)
|
|
|
|
{
|
2007-08-28 21:32:28 +00:00
|
|
|
#ifdef HAVE_USBSTACK
|
2007-11-22 20:51:00 +00:00
|
|
|
if (on)
|
|
|
|
usb_core_init();
|
|
|
|
else
|
|
|
|
usb_core_exit();
|
2007-09-05 15:52:49 +00:00
|
|
|
#else
|
2006-12-20 15:28:32 +00:00
|
|
|
/* This device specific code will eventually give way to proper USB
|
2007-08-01 22:44:02 +00:00
|
|
|
handling, which should be the same for all PP502x targets. */
|
2006-10-05 10:58:51 +00:00
|
|
|
if (on)
|
|
|
|
{
|
2007-09-27 02:50:50 +00:00
|
|
|
#if defined(IPOD_ARCH) || defined(IRIVER_H10) || defined (IRIVER_H10_5GB) ||\
|
|
|
|
defined(SANSA_C200)
|
2006-12-20 15:28:32 +00:00
|
|
|
/* For the H10 and iPod, we can only do one thing with USB mode - reboot
|
|
|
|
into the flash-based disk-mode. This does not return. */
|
|
|
|
|
|
|
|
#if defined(IRIVER_H10) || defined (IRIVER_H10_5GB)
|
|
|
|
if(button_status()==BUTTON_RIGHT)
|
2007-08-28 21:32:28 +00:00
|
|
|
#endif /* defined(IRIVER_H10) || defined (IRIVER_H10_5GB) */
|
2006-12-20 15:28:32 +00:00
|
|
|
{
|
2007-09-28 07:56:46 +00:00
|
|
|
#ifndef HAVE_FLASH_STORAGE
|
2006-12-20 15:28:32 +00:00
|
|
|
ata_sleepnow(); /* Immediately spindown the disk. */
|
|
|
|
sleep(HZ*2);
|
2007-09-28 07:56:46 +00:00
|
|
|
#endif
|
2007-08-01 22:44:02 +00:00
|
|
|
|
|
|
|
#ifdef IPOD_ARCH /* The following code is based on ipodlinux */
|
|
|
|
#if CONFIG_CPU == PP5020
|
|
|
|
memcpy((void *)0x40017f00, "diskmode\0\0hotstuff\0\0\1", 21);
|
|
|
|
#elif CONFIG_CPU == PP5022
|
|
|
|
memcpy((void *)0x4001ff00, "diskmode\0\0hotstuff\0\0\1", 21);
|
2007-08-28 21:32:28 +00:00
|
|
|
#endif /* CONFIG_CPU */
|
|
|
|
#endif /* IPOD_ARCH */
|
2007-08-01 22:44:02 +00:00
|
|
|
|
2006-12-20 15:28:32 +00:00
|
|
|
system_reboot(); /* Reboot */
|
|
|
|
}
|
2007-08-28 21:32:28 +00:00
|
|
|
#endif /*defined(IPOD_ARCH) || defined(IRIVER_H10) || defined (IRIVER_H10_5GB)*/
|
2006-10-05 10:58:51 +00:00
|
|
|
}
|
2007-08-28 21:32:28 +00:00
|
|
|
#endif /* !HAVE_USBSTACK */
|
2006-10-05 10:58:51 +00:00
|
|
|
}
|
|
|
|
|
2007-09-04 08:03:07 +00:00
|
|
|
int usb_detect(void)
|
2006-10-05 10:58:51 +00:00
|
|
|
{
|
2007-08-01 22:44:02 +00:00
|
|
|
#if defined(IPOD_COLOR) || defined(IPOD_4G) \
|
|
|
|
|| defined(IPOD_MINI) || defined(IPOD_MINI2G)
|
|
|
|
/* GPIO C bit 1 is firewire detect */
|
|
|
|
if (!(GPIOC_INPUT_VAL & 0x02))
|
2007-09-04 08:03:07 +00:00
|
|
|
return USB_INSERTED;
|
2007-11-23 00:02:52 +00:00
|
|
|
#elif defined(SANSA_C200)
|
2007-11-22 20:51:00 +00:00
|
|
|
/* GPIO H bit 1 is usb detect */
|
|
|
|
if (GPIOH_INPUT_VAL & 0x02)
|
|
|
|
return USB_INSERTED;
|
|
|
|
#elif defined(SANSA_E200)
|
|
|
|
/* GPIO B bit 4 is usb detect */
|
|
|
|
if (GPIOB_INPUT_VAL & 0x10)
|
|
|
|
return USB_INSERTED;
|
|
|
|
#elif defined(IRIVER_H10) || defined(IRIVER_H10_5GB)
|
|
|
|
/* GPIO L bit 2 is usb detect */
|
|
|
|
if (GPIOL_INPUT_VAL & 0x4)
|
|
|
|
return USB_INSERTED;
|
2007-09-04 23:29:42 +00:00
|
|
|
#endif
|
2007-09-04 08:03:07 +00:00
|
|
|
|
2007-11-23 00:02:52 +00:00
|
|
|
if (usb_drv_powered())
|
|
|
|
return USB_INSERTED;
|
|
|
|
|
2007-11-22 20:51:00 +00:00
|
|
|
return USB_EXTRACTED;
|
2006-10-05 10:58:51 +00:00
|
|
|
}
|