some fixes for Ondio USB passthrough (but still doesn't work yet)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5067 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
00be7469d6
commit
c4e8bed5a7
2 changed files with 17 additions and 13 deletions
|
@ -242,7 +242,17 @@ int ata_soft_reset(void)
|
|||
|
||||
void ata_enable(bool on)
|
||||
{
|
||||
(void)on;
|
||||
PBCR1 &= ~0x0C00; /* use PB13 as GPIO, if not modified below */
|
||||
if (on)
|
||||
{
|
||||
/* serial setup */
|
||||
PBCR1 |= 0x0800; /* as SCK1 */
|
||||
}
|
||||
else
|
||||
{
|
||||
PBDR |= 0x2000; /* drive PB13 high */
|
||||
PBIOR |= 0x2000; /* output PB13 */
|
||||
}
|
||||
}
|
||||
|
||||
unsigned short* ata_get_identify(void)
|
||||
|
@ -261,19 +271,14 @@ int ata_init(void)
|
|||
/* Port setup */
|
||||
PADR |= 0x1600; /* set all the selects high (=inactive) */
|
||||
PAIOR |= 0x1600; /* make outputs for them */
|
||||
PAIOR &= ~0x0008; /* input for card detect */
|
||||
|
||||
/* serial setup */
|
||||
PBCR1 &= ~0x0CF0; /* use PB10, PB11, PB13 */
|
||||
PBCR1 |= 0x08A0; /* as RxD1, TxD1, SCK1 */
|
||||
|
||||
if(adc_read(ADC_MMC_SWITCH) < 0x200)
|
||||
{ /* MMC inserted */
|
||||
PADR |= 0x0200;
|
||||
PADR &= ~0x1000; /* clear PA12 */
|
||||
}
|
||||
else
|
||||
{ /* no MMC, use internal memory */
|
||||
PADR |= 0x0400;
|
||||
PADR |= 0x1000; /* set PA12 */
|
||||
}
|
||||
|
||||
sleeping = false;
|
||||
|
|
|
@ -72,11 +72,6 @@ static bool usb_monitor_enabled;
|
|||
|
||||
static void usb_enable(bool on)
|
||||
{
|
||||
#ifdef HAVE_LCD_BITMAP
|
||||
if(read_hw_mask() & USB_ACTIVE_HIGH)
|
||||
on = !on;
|
||||
#endif
|
||||
|
||||
#ifdef USB_ENABLE_ONDIOSTYLE
|
||||
if(on)
|
||||
{
|
||||
|
@ -88,6 +83,10 @@ static void usb_enable(bool on)
|
|||
}
|
||||
or_b(0x20, &PAIORL); /* output for USB enable */
|
||||
#else /* standard HD Jukebox */
|
||||
#ifdef HAVE_LCD_BITMAP
|
||||
if(read_hw_mask() & USB_ACTIVE_HIGH)
|
||||
on = !on;
|
||||
#endif
|
||||
if(on)
|
||||
{
|
||||
and_b(~0x04, &PADRH); /* enable USB */
|
||||
|
|
Loading…
Reference in a new issue