From c4e8bed5a743f7cdd2e94919ce33b98bceb05317 Mon Sep 17 00:00:00 2001 From: Jörg Hohensohn Date: Sat, 11 Sep 2004 15:18:10 +0000 Subject: 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 --- firmware/drivers/ata_mmc.c | 21 +++++++++++++-------- 1 file changed, 13 insertions(+), 8 deletions(-) (limited to 'firmware/drivers') diff --git a/firmware/drivers/ata_mmc.c b/firmware/drivers/ata_mmc.c index 7ce1547085..a29795789d 100644 --- a/firmware/drivers/ata_mmc.c +++ b/firmware/drivers/ata_mmc.c @@ -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; -- cgit v1.2.3