summaryrefslogtreecommitdiff
path: root/firmware/usb.c
diff options
context:
space:
mode:
authorJörg Hohensohn <hohensoh@rockbox.org>2004-09-11 02:41:58 +0000
committerJörg Hohensohn <hohensoh@rockbox.org>2004-09-11 02:41:58 +0000
commitb26f6e05f8ea215738ef7b8d4ed82a73eca2fe0e (patch)
treefec2afdd93d48feebd9b2384d2ee9541fab408be /firmware/usb.c
parent66b45eeb596af1bd950832cd16b3752430f691c4 (diff)
downloadrockbox-b26f6e05f8ea215738ef7b8d4ed82a73eca2fe0e.tar.gz
rockbox-b26f6e05f8ea215738ef7b8d4ed82a73eca2fe0e.zip
Ondio USB enable, ATA part of it is missing by now
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5064 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/usb.c')
-rw-r--r--firmware/usb.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/firmware/usb.c b/firmware/usb.c
index 3be6d7529c..1b9e747dc9 100644
--- a/firmware/usb.c
+++ b/firmware/usb.c
@@ -77,6 +77,17 @@ static void usb_enable(bool on)
77 on = !on; 77 on = !on;
78#endif 78#endif
79 79
80#ifdef USB_ENABLE_ONDIOSTYLE
81 if(on)
82 {
83 or_b(0x20, &PADRL); /* enable USB */
84 }
85 else
86 {
87 and_b(~0x20, &PADRL);
88 }
89 or_b(0x20, &PAIORL);
90#else /* standard HD Jukebox */
80 if(on) 91 if(on)
81 { 92 {
82 and_b(~0x04, &PADRH); /* enable USB */ 93 and_b(~0x04, &PADRH); /* enable USB */
@@ -86,6 +97,7 @@ static void usb_enable(bool on)
86 or_b(0x04, &PADRH); 97 or_b(0x04, &PADRH);
87 } 98 }
88 or_b(0x04, &PAIORH); 99 or_b(0x04, &PAIORH);
100#endif
89} 101}
90 102
91static void usb_slave_mode(bool on) 103static void usb_slave_mode(bool on)