home /  pics /  datasheets /  corrections /  ISA Bus Pinouts /  hackaday.com entry /  linuxgazette.net entry / 

INTERFACING ISA BUS

Abstract: Parallel port is the most popular choice for interfacing. The 8 data output lines and sometimes the CONTROL and STATUS ports of the parallel port, used to feed data into the computer, are not sufficient for some complex projects. Some projects require more data I/O lines. This project shows how to get 32 general purpose I/O lines by interfacing the ISA Bus. Though PCI bus can be a candidate for interfacing experiments, its greater speed and feature rich nature poses great complexity in terms of hardware and software to beginners. So this project can be a stepping stone to those thinking of ultimately getting to PCI Bus for interfacing experiments. This project can also be useful for those thinking of making Digital Oscilloscope using PC, A/D and D/A converters, Microcontroller programmer, etc.

Before going into the details of the full project of interfacing the ISA Bus, we have to get familiar with some details given below:

Pin Description

isa pin description

We have considered X(n) as the side that contains components in any standard ISA cards. Similarly, Y(n) is the side that contains the solder. It is very important for you to be clear of the above convention. You will damage your motherboard if you connect just the other way.

The description for most commonly used pins are given below:

SIDE X

D0 - D7 (pins X2 to X9)
They are the 8 data lines representing the 8-Bit data bus.
A0 - A19 (pins X31 to X12)
They are the 20 address lines that contain the address bits. This address bus can address 1MB (2^20=1024 Kbytes)
AEN (pin X11)
It is used by the DMA controller to take over to data and address bus during DMA transfer.

Side Y

GND (pins Y1,Y10,Y31)
They are connected to ground of computer.
+5V (pin Y3)
+5 Volt DC output
-5V (pin Y5)
-5 Volt DC output
+12V (pin Y9)
+12 Volt DC output
-12V (pin Y7)
-12 Volt DC output
MEMW(pin Y11)*
The microprocessor makes this line LOW while doing WRITE TO MEMORY.
MEMR (pin Y12)*
The microprocessor makes this line LOW while doing READ FROM MEMORY.
IOW (pin Y13)
The microprocessor makes this line LOW while doing WRITE TO PORT. (eg: when you write outportb(ADDRESS,BYTE), this line becomes LOW)
IOR (pin Y14)
The microprocessor makes this line LOW while doing READ FROM PORT. (eg: when you write byte = inportb(ADDRESS), this line becomes LOW)
DACK0 - DACK3 (pins Y19,Y17,Y26,Y15)*
The DMA controller signals on these lines to let devices know that that DMA has the control of buses.
DRQ1 - DRQ3 (pins Y18,Y6,Y16)*
These pins allows the peripheral boards to request the use of the buses.
T/C (pin Y27)*
The DMA controller sets this signal to let the peripheral know that the programmed number of bytes has been sent.
IRQ2 - IRQ7 (pins Y4,Y25,Y24,Y23,Y22,Y21)*
Interrupt Signals. The peripheral devices set these signals to request the attention of the microprocessor.
ALE (pin Y28)*
Address Latch Enable. This signal is used by the microprocessor to lock the 16 lower address bus in a latch during a memory or port input/output operation.
CLOCK (pin Y20)*
The system clock
OSC (pin Y30)*
It is a high frequency clock which can be used for the I/O boards.

* these pins will not be used in this project

Getting Four Output lines our of a ISA Bus

getting four 8-Bit output lines

Before going into the details of full project lets explain the part that handles the four 8-Bit output lines only. The addresses in the range 0x338 to 0x33B was not used by any devices for input output operations in our computer.

The three 74LS138 ICs handle the address decoding part. We have connected the address lines in a way such that there is short pulse (CLOCK) in the wires (represented by green wire) whenever the address lines contains the address in the range 0x338 to 0x33B and port output (IOW) is requested.

Whenever the 74LS374 get a CLOCK PULSE it latches-in the 8-Bit data present in the data bus. 74LS245 is a 3-STATE Octal Bus Transreceiver. It reduces DC loading on the data bus and allows isolation of data bus when required.

To know that I/O port address are available for use in this project we examine the contents of ioports in the /proc directoryof our linux system.

[root@thelinuxmaniac~]# cat /proc/ioports
0000-001f: dma1
0020-0021: pic1
0040-0043: timer0
.......................
.......................
01f0-01f7: ide0
0378-037a : parport0
037b-037f : parport0
03c0-03df : vga+
.......................
.......................

It is clear from the above output that the addresses 0x238-0x23B and 0x338-0x33B are not being used by any device. Usually this is the case in most computers. However, if this address is occupied by some device, then you have to change the wiring of address lines to three 74LS138 IC (used for address decoding).We describe the address decoding technique here briefly so that you can setup unique address for I/O device we are trying to build according to the non-used address available in your computer.

ADDRESS DECODING

We use 74LS138, 3-to-8 multiplexer for address decoding. Suppose we want to assign the addresses 0x338-0x33B for four 8-Bit output lines and 0x238-0x23B for four 8-Bit input lines.The binary equivalent of these addresses are:

Address
0x338 0 0 0 0 0 0 1 1 0 0 1 1 1 0 0 0
0x339 0 0 0 0 0 0 1 1 0 0 1 1 1 0 0 1
0x33A 0 0 0 0 0 0 1 1 0 0 1 1 1 0 1 0
0x33B 0 0 0 0 0 0 1 1 0 0 1 1 1 0 1 1
0x238 0 0 0 0 0 0 1 0 0 0 1 1 1 0 0 0
0x239 0 0 0 0 0 0 1 0 0 0 1 1 1 0 0 1
0x23A 0 0 0 0 0 0 1 0 0 0 1 1 1 0 1 0
0x23B 0 0 0 0 0 0 1 0 0 0 1 1 1 0 1 1
Address Lines A15 A14 A13 A12 A11 A10 A9 A8 A7 A6 A5 A4 A3 A2 A1 A0

We observe that address lines A8A1A0 only change in case of all the eight addresses. The whole process of connecting wires to 74LS138 IC is like solving a puzzle. Connect the remaining wires ( A15A14A13A12A11A10A9A7A6A5A4A3A2) to two 74LS138 such that they finally give low output when these lines have the address bits that partially match our addresses (except A8A1A0 ).Now we connect the remaining lines (A8A1A0 A2) to the third 74LS138.All the 8 outputs of this IC is used to select the 74LS374 latches corresponding to input and output addresses after it is NORed with IOR and IOW using 74LS02 to distinguish between memory IO and port IO addressing.

74LS138 Truth Table
G1 G2 C B A Y0 Y1 Y2 Y3 Y4 Y5 Y6 Y7
X H X X X H H H H H H H H
L X X X X H H H H H H H H
H L L L L L H H H H H H H
H L L L H H L H H H H H H
H L L H L H H L H H H H H
H L L H H H H H L H H H H
H L H L L H H H H L H H H
H L H L H H H H H H L H H
H L H H L H H H H H H L H
H L H H H H H H H H H H L
Refer to datasheet of 74LS138 for details

The Real Stuff

Now we are ready to describe the functioning of the complete circuit that will give us 32 general purpose I/O lines.

the complete circuit diagram

Description of IC used in this project

74LS138 and 74LS139
Decoders/De-multiplexers.Used for Address Decoding
74LS245
Octal 3-STATE Buffer/Line Driver/Line Receiver
74LS374
Octal Transparent Latch with 3-STATE outputs; Octal D-TYPE FLIP-FLOP with 3-STATE output
74LS02
QUAD 2-INPUT NOR gate

The three 74LS138 IC are used for address decoding along with the two 74LS02(2 input NOR gate). Whenever a match is found in the address lines, the respective output line, Y(x) of the third 74LS138 IC (connected to the two 74LS02 IC), gets LOW. These lines along with IOW (and IOR) are connected to the NOR gates (74LS02), which gives HIGH only when the two inputs go LOW simultaneously.

Hence,the output is high only when:

  1. a match is found in the address lines
  2. the IOW or IOR lines go LOW, representing the PORT IO operation.

Remember,if we do not consider the second case, our device will conflict with the memory IO operations in the addresses 0x238-0x23B and 0x338-0x33B.

We can see in the circuit diagram that the output lines of NOR gates are connected to the CLOCK pins of 74LS374 latch (represented by green wires).So whenever the above two cases match simultaneously, CLOCK pulse is sent to the respective latch and the data in the data bus is latched-in which appears in the output lines.

Coding - controlling the I/O lines using C

isa.c illustrates the some simple coding methods to control and test the I/O lines of the device created in this project.

if(ioperm(OUTPUT_PORT,LENGTH+1,1))
{
	...
}
if(ioperm(INPUT_PORT,LENGTH+1,1))
{
	...
}
outb(data,port);
data = inb(port);

ioperm() gets the permission to access the specified ports from the kernel. outb() and inb() functions defined in sys/io.h helps us write and read to specified port.

SOME DEBUGGING TECHNIQUES

It is not easy to get something work by just reading an article like this. At some point you will need to debug your hardware.These debugging techniques will help you(as it has helped us a lot) to find the problem in your work.You will need a multimeter, some LEDs. Remember,what we learned while debugging is that LEDs are the best way to debug hardware of this nature when you don't have sophisticated debugging instruments. Some important techniques we discovered while debugging are:

Using simple multimeter for debugging Using LEDs for debugging Using simple multimeter for debugging
Use of Multimeter
Multimeter will be very useful to check the zeros and ones coming across ICs.Verify that expected output is coming at every IC.ZERO will be measured as 0.8V and ONE will be measured as 3.8V (this will vary with computer).This can be used if the address decoding does not work and when unexpected data is seen at output lines.DO NOT CONNECT THE MULTIMETER PROBES DIRECTLY TO DATA BUS OR THE ADDRESS LINES.ALWAYS CONNECT IT ACROSS THE OUTPUT OF RESPECTIVE IC
Use of LEDs
LEDs can be very useful to verify the data bits coming at output lines.The lighting up of LED will be visible across latches. To check whether the clock pulse is going to the right latch, connect a LED across the CLK pin and send data to that port continuously in a loop like:
while(1){
outb(0x80,0x338);
}

There are lots of other debugging techniques which you will probably discover by yourself when you get into problems.Try to ensure that the wiring at the connector that gets into the ISA slot is correct.We checked every part of the device(every IC,all those jumper wires,etc) and after debugging for about one week we found that IOW and IOR wires were connected to some other pins of the ISA slot.So, recheck the wiring.We fortunately did not mistake the 12V pin for a 5V pin ;)


We are not responsible for any loss or damage caused by this article.The probability of frying up your motherboard is more than 100% if you work on this project without using your mind.Keep your eyes open and mind alert while doing the wiring and connecting the ICs and verify all the VCC and GND connection everytime you switch on your computer after connecting this device to ISA slot.YOU HAVE BEEN WARNED :). Fortunately the motherboard used for this experiment is still alive and the experiment was a huge success.


Send in your comments and suggestions to:
TLM , tlm email address
BAD , badri email address
P2P

Some corrections

Last Updated: 03 August, 2006