Version 11 (modified by damo22, 13 years ago) |
---|
Digidesign 003 Rack
This page is to help develop support for the Digidesign 003 Rack.
I have identified the registers below:
#define R003_BASE_ADDR 0xffff00000000ULL #define R003_STREAMS_W_REG 0xe0000004 #define R003_STREAMS_R_REG 0xe0000000 #define R003_STREAMS_OFF 0x00000000 #define R003_STREAMS_ON 0x00000001 #define R003_STREAMS_INIT 0x00000002 #define R003_STREAMS_SHUTDOWN 0x00000003 #define R003_SAMPLERATE_REG 0xe0000110 #define R003_SAMPLERATE_44100 0x00000000 #define R003_SAMPLERATE_48000 0x00000001 #define R003_SAMPLERATE_88200 0x00000002 #define R003_SAMPLERATE_96000 0x00000003 #define R003_CLOCKSOURCE_REG 0xe0000118 #define R003_CLOCK_INTERNAL 0x00000000 #define R003_CLOCK_SPDIF 0x00000001 #define R003_CLOCK_ADAT 0x00000002 #define R003_CLOCK_WORDCLOCK 0x00000003
ISO Channels used: 2
0x0 (recv)
0x1 (send)
To initialise the device it seems you need to do the following:
Write: R003_BASE_ADDR + R003_STREAMS_W_REG, R003_STREAMS_INIT
Wait until:
Read: R003_BASE_ADDR + R003_STREAMS_R_REG
returns
R003_STREAMS_OFF
Then set the samplerate and clock source, eg 48000/internal clock
Write: R003_BASE_ADDR + R003_SAMPLERATE_REG, R003_SAMPLERATE_48000 Write: R003_BASE_ADDR + R003_CLOCKSOURCE_REG, R003_CLOCK_INTERNAL
Then activate the streams:
Write: R003_BASE_ADDR + R003_STREAMS_W_REG, R003_STREAMS_ON
Wait until:
Read: R003_BASE_ADDR + R003_STREAMS_R_REG
returns
R003_STREAMS_ON
But I have not yet been able to observe iso data on the bus after this is done.
Damo
Attachments
- 003_Rack__31371_zoom.jpg (43.2 kB) -
003rack
, added by damo22 on 02/26/11 06:29:00. - 96khz-24bit-1ch.log (27.5 kB) -
dump of data blocks at 96kHz, 24bit, 1ch
, added by mocchi on 03/15/15 08:09:35. - 44khz-24bit-1ch.log (49.8 kB) -
dump of data blocks at 44.1kHz, 24bit, 1ch
, added by mocchi on 03/15/15 08:17:12. - 44khz-24bit-2ch.log (49.8 kB) -
dump of data blocks at 44.1kHz, 24bit, 2ch
, added by mocchi on 03/15/15 08:17:42.