40 pin IDC male connector at the controller and CD-ROM.
40 pin IDC female connector at the cable.
The Mitsumi proprietary CD-ROM interface is a 40-pin IDC parallel bus developed in the early 1990s for the company’s first-generation drives (LU002S, LU005S, FX001, and FX001D). It is electrically incompatible with both SCSI and the later ATAPI/ATA standard, operating instead as an 8-bit parallel bus tied to the ISA expansion slot at I/O base addresses typically 0x300 or 0x340. The interface carries two address lines (A0/A1), an 8-bit data bus (DB0–DB7), read/write strobes, a bus-enable line, and optional DMA request/acknowledge and interrupt signals. Controllers were integrated into ISA soundcards of the era, including the Creative Sound Blaster CT1750 variant; the Linux kernel driver mcdx documents the register-level protocol for this interface.
| Pin | Name | Description |
|---|---|---|
| 1 | A0 | Address Bit 0 |
| 2 | GND | Ground |
| 3 | A1 | Address Bit 1 |
| 4 | GND | Ground |
| 5 | n/c | Not connected |
| 6 | GND | Ground |
| 7 | n/c | Not connected |
| 8 | GND | Ground |
| 9 | n/c | Not connected |
| 10 | GND | Ground |
| 11 | n/c | Not connected |
| 12 | GND | Ground |
| 13 | INT | Interrupt |
| 14 | GND | Ground |
| 15 | REQ | Data request For DMA |
| 16 | GND | Ground |
| 17 | ACK | Data Acknowledge For DMA |
| 18 | GND | Ground |
| 19 | RE | Read Enable |
| 20 | GND | Ground |
| 21 | WE | Write Enable |
| 22 | GND | Ground |
| 23 | EN | Bus Enable |
| 24 | GND | Ground |
| 25 | DB0 | Data Bit 0 |
| 26 | GND | Ground |
| 27 | DB1 | Data Bit 1 |
| 28 | GND | Ground |
| 29 | DB2 | Data Bit 2 |
| 30 | GND | Ground |
| 31 | DB3 | Data Bit 3 |
| 32 | GND | Ground |
| 33 | DB4 | Data Bit 4 |
| 34 | GND | Ground |
| 35 | DB5 | Data Bit 5 |
| 36 | GND | Ground |
| 37 | DB6 | Data Bit 6 |
| 38 | GND | Ground |
| 39 | DB7 | Data Bit 7 |
| 40 | GND | Ground |
Notes
- All even-numbered pins (2–40) are ground; odd pins carry signals or are left unconnected.
- Pins 5, 7, 9, and 11 are not connected and must be left open.
- Although the 40-pin IDC ribbon physically resembles a standard ATA cable, the electrical signalling is entirely incompatible with ATA/ATAPI; substituting an IDE cable for mechanical convenience does not make the drives interchangeable.
- DMA and IRQ support is driver-dependent. The
MTMCDE.SYSDOS driver supports DMA/IRQ operation;MTMCDS.SYSuses software polling only. Many ISA soundcard implementations (including the Creative CT1750 Mitsumi port) bypassed DMA/IRQ entirely, leaving REQ, ACK, and INT functionally unused. - The newer Mitsumi FX-series drives that adopted ATAPI must NOT be connected to this proprietary port; OEM controller documentation explicitly warns against mixing the two generations.
- Analog audio from the drive is carried on a separate 4-pin connector, not the 40-pin ribbon. The Mitsumi audio pin order (signal–GND–signal–GND) differs from other vendors; reversing the cable can short the audio output.
Signals
- A0, A1 — Two-bit register address bus; selects which internal drive register is accessed during a read or write cycle.
- INT — Interrupt output from the drive to the host; signals command completion or an error condition. Optional — may be left disconnected when the driver uses software polling.
- REQ — DMA request output; asserted by the drive when it is ready to transfer a byte via DMA. Optional — unused in polled-mode driver configurations.
- ACK — DMA acknowledge input; asserted by the ISA DMA controller to confirm a DMA transfer cycle. Optional — unused in polled-mode driver configurations.
- RE — Read Enable (active-low strobe); asserted by the host to latch data from the drive onto DB0–DB7.
- WE — Write Enable (active-low strobe); asserted by the host to write a command byte from DB0–DB7 into the addressed drive register.
- EN — Bus Enable; enables the drive’s data bus drivers, allowing DB0–DB7 to be driven during a transfer.
- DB0–DB7 — 8-bit bidirectional parallel data bus carrying command bytes to the drive and status/data bytes from the drive.
References
- Mitsumi FX Series Installation Manual (v9.1) — Mitsumi Electronics; documents the 40-pin proprietary port and names the compatible LU002S, LU005S, FX001 and FX001D drives.
- Mitsumi CD-ROM driver disks — original Mitsumi MS-DOS drivers (MTMCDE.SYS / MTMCDS.SYS) for the proprietary interface, Internet Archive.