Chapter 10: Memory Interface
Introduction
Simple or complex, every microprocessor-based system has a memory system. Almost all systems contain two main types of memory: read-only memory (ROM) and random access memory (RAM) or read/write memory. This chapter explains how to interface both memory types to the Intel family of microprocessors.
Dr. Imad Alzeer
0701441 Microprocessor Fundamentals
101 MEMORY DEVICES
Before attempting to interface memory to the microprocessor, it is essential to understand the operation of memory components. In this section, we explain functions of the four common types of memory: read-only memory (ROM) Flash memory (EEPROM) Static random access memory (SRAM) dynamic random access memory (DRAM)
Dr. Imad Alzeer
0701441 Microprocessor Fundamentals
Types of Memory Devices
Two main types of memory: ROM - Read Only Memory - Non Volatile data storage (remains valid after power off) - For permanent storage of system software and data - Can be PROM, EPROM or EEPROM (Flash) memory RAM - Random Access Memory (Read/Write) - Volatile data storage (data disappears after power off) - For temporary storage of application software and data - Can be SRAM (static) or DRAM (dynamic)
Dr. Imad Alzeer
0701441 Microprocessor Fundamentals
Memory Pin Connections
address inputs data outputs or input/outputs some type of selection input at least one control input to select a read or write operation
Figure 101 A pseudomemory component illustrating the address, data, and control connections.
Dr. Imad Alzeer 0701441 Microprocessor Fundamentals 5
Address Connections
Memory devices have address inputs to select a memory location within the device. Almost always labeled from A0, the least significant address input, to An A memory device with 10 address pins has its address pins labeled from A0 to A9. if a device has 11 address connections, it has 2048 (2K) internal memory locations Common memory devices have between 1K (1024) to 1G (1,073,741,824) memory locations.
Dr. Imad Alzeer
0701441 Microprocessor Fundamentals
Data Connections
All memory devices have a set of data outputs or I/O.
some devices have bidirectional common I/O pins data connections are points at which data are entered for storage or extracted for reading
Data pins on memory devices are labeled D0 through D7 for an 8-bit-wide (byte-wide) memory.
most devices are currently 8 bits wide, some are 16 bits, 4 bits, or just 1 bit wide
Catalogs of memory devices often refer to memory locations times bits per location (bit capacity), i.e. 1K 8bits.
Dr. Imad Alzeer 0701441 Microprocessor Fundamentals 7
Selection Connections
Each memory device has an input that selects or enables the memory device. sometimes more than one This type of input is most often called a chip select (G2A) chip enable (CE) or simply select (S) input. RAM memory generally has at least one or input, and ROM has at least one If more than one CE connection is present, all must be activated to read or write data.
Dr. Imad Alzeer
0701441 Microprocessor Fundamentals
Control Connections
All memory devices have some form of control input or inputs. ROM usually has one control input, while RAM often has one or two control inputs Control input often found on ROM is the output enable or gate connection, which allows data flow from output data pins. The OE connection enables and disables a set of three-state buffers located in the device and must be active to read data.
Dr. Imad Alzeer
0701441 Microprocessor Fundamentals
RAM has either one or two control inputs. if one control input, it is often called R/W If the RAM has two control inputs, they are usually labeled WE (or W ), and OE (or G ). write enable must be active to perform memory write, and OE active to perform a memory read when the two controls are present, they must never both be active at the same time If both inputs are inactive, data are neither written nor read. the connections are at their high-impedance state
Dr. Imad Alzeer
0701441 Microprocessor Fundamentals
10
Remarks:
A ROM is purchased in mass quantities from a manufacturer. programmed during fabrication at the factory An EPROM is programmed by an EPROM programmer. Also erasable if exposed to high-intensity ultraviolet light. A newer type of read-mostly memory (RMM) is called the flash memory. Flash is electrically erasable in the system, but it requires more time to erase than normal RAM. They are used to store setup information for systems such as the video card in the computer. Flash has replaced the EPROM in most computer systems for the BIOS.
Dr. Imad Alzeer 0701441 Microprocessor Fundamentals 11
Figure 102 The pin-out of the 2716, 2K 8 EPROM. (Courtesy of Intel Corporation.)
2K x 8 read only memory
8 Data outputs
Address
1 bit + 10 bits = 11 Address inputs
Members of the 27XXXX family:
2704 : 512 x 8 2708 : 1K x 8 2716 : 2K x 8 2732 : 4K x 8 2764 : 8K x 8 27128 : 16K x 8 27256 : 32K x 8 27512 : 64K x 8 271024: 128K x 8
Ctrl
All are 8-bit wide
= Memory capacity in K bits
2716
Data
Dr. Imad Alzeer
0701441 Microprocessor Fundamentals
12
The VPP pin must be placed at a logic 1 level for data to be read from the EPROM. In some cases, the VPP pin is in the same position as the WE pin on the SRAM. single socket to hold either an EPROM or an SRAM. The main difference between ROM and RAM is that RAM is written under normal operation, whereas ROM is programmed outside the computer and normally is only read.
Dr. Imad Alzeer
0701441 Microprocessor Fundamentals
13
Figure 103 The timing diagram of AC characteristics of the 2716 EPROM.
For the 8088/86: Max memory access time allowed was 420 ns So, this EPROM needs 1 wait state to be inserted!
A0-A10 from P
RD from P
Memory Access Time = 450 ns Max
Dr. Imad Alzeer
0701441 Microprocessor Fundamentals
14
Figure 104 The pin-out of the TMS4016, 2K 8 static RAM (SRAM). (Courtesy of Texas Instruments Incorporated.)
SRAM is used when the size of the read/write memory is relatively small
Dr. Imad Alzeer
0701441 Microprocessor Fundamentals
15
Dynamic RAM (DRAM) Memory
Available up to 256M 8 (2G bits). DRAM retains data for only 2 or 4 ms on an integrated capacitor. After 2 or 4 ms, the contents of the DRAM must be completely rewritten (refreshed). because the capacitors, which store a logic 1or logic 0, lose their charges In DRAM, the entire contents are refreshed in a 2- or 4-ms interval. also occurs during a write, a read, or during a special refresh cycle DRAM requires so many address pins that manufacturers multiplexed address inputs.
Dr. Imad Alzeer 0701441 Microprocessor Fundamentals 16
Figure 107: The pin-out of the TMS4464, 64K 4 dynamic RAM (DRAM).
64 K x 4 DRAM: 16 bits memory address But only 8 address lines on the chip! 16 address lines split into row and column (8-bit) MS 8-bit row address is first latched in using the RAS input (Row Address Select) Then 8-bit column address is latched in using the CAS input This loads the 16-bit address into a latch on the chip CAS also acts as CS OE is G, WE is W, CS is CAS Access time: Fastest version is 100 ns
Dr. Imad Alzeer
0701441 Microprocessor Fundamentals
17
Figure 108
RAS, CAS and address input timing for the TMS4464 DRAM.
CS
Setup Times
Hold Times Dr. Imad Alzeer 0701441 Microprocessor Fundamentals 18
Figure 109
Address multiplexer for the TMS4464 DRAM.
A8-A15: 8-bit Row Address (MS)
A0-A7: 8-bit Column Address (LS)
S = 0 (Column)) S = 1 (Row)
multiplexers used to strobe column and row addresses into the address pins on a pair of TMS4464 DRAMs. the RAS signal not only strobes the row address into the DRAMs, but it also selects which part of the address is applied to the address inputs.
Select Input Selector
Dr. Imad Alzeer
0701441 Microprocessor Fundamentals
19
Figure 1010 The 41256 dynamic RAM organized as a 256K 1 memory device.
requires as little as 70 ns to access data
Dr. Imad Alzeer
0701441 Microprocessor Fundamentals
20
Figure 1011 The pin-outs of the 30-pin and 72-pin SIMM. (a) A 30-pin SIMM organized as 4M 9 and (b) a 72-pin SIMM organized as 4M 36.
DRAM is often placed on small boards called SIMMs (Single In-Line Memory Modules). The 30-pin SIMM is organized most often as 1M 8 or 1M 9, and 4M 8 or 4M 9. the ninth bit is the parity bit. Also shown is a newer 72 pin SIMM. 72-pin SIMMs are often organized as 1M 32 or 1M 36 (with parity).
Dr. Imad Alzeer
0701441 Microprocessor Fundamentals
21
64-bit-wide DIMMs (Dual In-line Memory Modules) have become the standard. The memory on these modules is organized as 64 bits wide. Common sizes available are from 16M bytes (2M 64) to 1G bytes (128M 64). The latest DRAM is the DDR (double-data rate) memory device and DDR2. DDR transfers data at each edge of the clock, making it operate at twice the speed of SDRAM
Dr. Imad Alzeer
0701441 Microprocessor Fundamentals
22
Figure 1012 The pin-out of a 168-pin DIMM.
The DIMM module is available in DRAM, EDO (Extended Data Output) , SDRAM (Synchronous Dynamic RAM), and DDR (double-data rate) forms, with or without an EPROM.
Dr. Imad Alzeer
0701441 Microprocessor Fundamentals
23
102 ADDRESS DECODING
The 8088 has 20 address connections and the 2716 EPROM has 11 connections. The 8088 sends out a 20-bit memory address whenever it reads or writes data. because the 2716 has only 11 address pins, there is a mismatch that must be corrected The decoder corrects the mismatch by decoding address pins which are not connected to the memory component.
Dr. Imad Alzeer
0701441 Microprocessor Fundamentals
24
Simple NAND Gate Decoder
When the 2K 8 EPROM is used, address connections A10A0 of 8088 are connected to address inputs A10A0 of the EPROM. the remaining nine address pins (A19A11) are connected to a NAND gate decoder The decoder selects the EPROM from one of the 2Kbyte sections of the 1M-byte memory system in the 8088 microprocessor. In this circuit a NAND gate decodes the memory address, as seen in Figure 10-13.
Dr. Imad Alzeer
0701441 Microprocessor Fundamentals
25
Figure 1013 A simple NAND gate decoder that selects a 2716 EPROM for memory location FF800HFFFFFH.
Dr. Imad Alzeer
0701441 Microprocessor Fundamentals
26
Sample Decoder Circuit
The outputs of the decoder in Figure 1015, are connected to eight different 2764 EPROM memory devices. The decoder selects eight 8K-byte blocks of memory for a total capacity of 64K bytes. This figure also illustrates the address range of each memory device and the common connections to the memory devices.
Dr. Imad Alzeer
0701441 Microprocessor Fundamentals
27
Figure 1015 A circuit that uses eight 2764 EPROMs for a 64K 8 section of memory in an 8088 microprocessor-based system. The addresses selected in this circuit are F0000HFFFFFH.
Dr. Imad Alzeer
0701441 Microprocessor Fundamentals
28
The 3-to-8 Line Decoder (74LS138)
Figure 1014 The 74LS138 3-to-8 line decoder and function table.
a common integrated circuit decoder found in many systems is the 74LS138 3-to-8 line decoder.
Dr. Imad Alzeer
0701441 Microprocessor Fundamentals
29
All address connections from the 8088 are connected to this circuit. Decoders outputs are connected to the CE inputs of the EPROMs. the RD signal from the 8088 is connected to the OE inputs of the EPROMs. A three-input NAND gate is connected to address bits A19A17. When all three address inputs are high, the output of this NAND gate goes low and enables input G2B of the 74LS138. Input G1 is connected directly to A16. In order to enable this decoder, the first four address connections (A19A16) must all be high. Address inputs C, B, and A connect to microprocessor address pins A15A13. These address inputs determine which output pin goes low and which EPROM is selected whenever 8088 outputs a memory address within this range to the memory system.
Dr. Imad Alzeer 0701441 Microprocessor Fundamentals 30
PLD Programmable Decoders
Three SPLD (simple PLD) devices function in the same manner but have different names: PLA (programmable logic array) PAL (programmable array logic) GAL (gated array logic) In existence since the mid-70s, they have appeared in memory system and digital designs since the early 1990s.
Dr. Imad Alzeer
0701441 Microprocessor Fundamentals
31
Combinatorial Programmable Logic Arrays
Fig 1018 shows the internal structure of a PAL16L8 constructed with AND/OR gate logic. It has 10 fixed inputs, two fixed outputs, and six pins programmable as inputs or outputs. Programming is accomplished by blowing fuses to connect inputs to the OR gate array. It is ideal as a decoder because of its structure, also because outputs are active low.
Dr. Imad Alzeer
0701441 Microprocessor Fundamentals
32
Figure 1018 The PAL16L8. (Copyright Advanced Micro Devices, Inc., 1988. Reprinted with permission of copyright owner. All rights reserved.)
Dr. Imad Alzeer
0701441 Microprocessor Fundamentals
33
103 8088 and 80188 (8-bit) MEMORY INTERFACE
8088/80188 microprocessors have an 8-bit data bus, which makes them ideal to connect to common 8-bit memory devices available. Fig 1020 shows an 8088/80188 connected to three 27256 EPROMs, 32K 8 devices. 74HCT138 decoder decodes three 32K 8 blocks of memory for a total of 96K 8 bits The decoder is selected for an address range that begins at E8000H and continues through location FFFFFHthe upper 96K bytes of memory.
Dr. Imad Alzeer 0701441 Microprocessor Fundamentals 34
Figure 1020 Three 27256 EPROMs interfaced to the 8088 microprocessor.
Dr. Imad Alzeer
0701441 Microprocessor Fundamentals
35
This section of memory is an EPROM because FFFF0H is where the 8088 starts to execute instructions after a hardware reset.
often called the cold-start location
The software stored in this section of memory would contain a JMP instruction at location FFFF0H that jumps to location E8000H
so the remainder of the program can execute
In this circuit, U1 is decoded at addresses E8000HEFFFFH, U2 is decoded at F0000H F7FFFH, and U3 at F8000HFFFFFH.
Dr. Imad Alzeer 0701441 Microprocessor Fundamentals 36
Interfacing RAM to the 8088
RAM is easier to interface than EPROM as most RAM does not require wait states. ideal section of memory for RAM is the very bottom, which contains vectors for interrupts Interrupt vectors are often modified by software packages, it important to encode this section of the memory with RAM
Dr. Imad Alzeer
0701441 Microprocessor Fundamentals
37
Figure 1021 A 512K-byte static memory system using 16 62255 SRAMs.
this board uses two decoders to select 16 RAM components, and a third to select other decoders for the appropriate memory sections sixteen 32K RAMs fill memory from 00000H through 7FFFFH, for 512K bytes memory.
Dr. Imad Alzeer
0701441 Microprocessor Fundamentals
38
Interfacing Flash Memory
Becoming common place for storing setup information on video cards, and the system BIOS in the personal computer. Flash memory is also found in many other applications to store information that is only changed occasionally.
Dr. Imad Alzeer
0701441 Microprocessor Fundamentals
39
Error Correction
Integrated circuit manufacturers have only recently produced error-correcting circuits. One such is the 74LS636, an 8-bit error correction and detection circuit that corrects any single-bit memory read error and flags any 2-bit error called SECDED (single error correction/double error correction). This device is found in high-end computer systems because of the cost of implementing a system that uses error correction.
Dr. Imad Alzeer
0701441 Microprocessor Fundamentals
40
Newest systems are now using DDR memory with ECC (error-correction code). The 74LS636 corrects errors by storing five parity bits with each byte of memory data. automatic error correction for single-bit errors If more than two bits are in error, this circuit may not detect it. When a memory component fails completely, its bits are all high or all low. In this case, the circuit flags the processor with a multiple-bit error indication.
Dr. Imad Alzeer
0701441 Microprocessor Fundamentals
41
Figure 1026 An error detection and correction circuit using the 74LS636.
a circuit to correct single-bit errors with the 74LS636 and to interrupt the processor through the NMI pin for double-bit errors To simplify we depict only one 2K 8 RAM and a second 2K 8 RAM to store the 5-bit check code
Dr. Imad Alzeer
0701441 Microprocessor Fundamentals
42
104 8086, 80186, 80286, & 80386SX (16-Bit) MEMORY INTERFACE
8086, 80186, 80286, and 80386SX differ from the 8088/80188 in three ways: the data bus is 16 bits instead of 8 bits wide the IO/M pin of the 8088 is replaced with an M/IO pin a new control signal called bus high enable 80286/80386SX contains a 24-bit address bus (A23 A0) instead of A 20-bit address bus (A19A0) of the 8086/80186.
Dr. Imad Alzeer
0701441 Microprocessor Fundamentals
43
16-Bit Bus Control
The data bus of 8086, 80186, 80286, and 80386SX is twice as wide as for the 8088/80188. the wider bus presents a unique set of problems processors must be able to write data to any 16-bit locationor any 8-bit location This means the 16-bit data bus must be divided into two separate sections (or banks) 8 bits wide so that the processor can write to either half (8-bit) or both halves (16-bit).
Dr. Imad Alzeer
0701441 Microprocessor Fundamentals
44
Figure 1027 The high (odd) and low (even) 8-bit memory banks of the 8086/80286/80386SX microprocessors.
one bank (low bank) holds all even-numbered memory locations the other bank (high bank) holds all the odd-numbered memory locations
Dr. Imad Alzeer 0701441 Microprocessor Fundamentals 45
Bank selection is accomplished in two ways: separate write signal is developed to select a write to each bank of the memory separate decoders are used for each bank The first technique is by far the least costly approach to memory interface. The second technique is only used in a system that must achieve the most efficient use of the power supply.
Dr. Imad Alzeer
0701441 Microprocessor Fundamentals
46
Separate Bank Write Strobes
The effective way to handle bank selection is a separate write strobe for each bank. this requires only one decoder to select a 16-bitwide memory, which saves money Fig 1029 depicts generation of separate 8086 write strobes. Separate read strobes for each bank are usually unnecessary because 8086 through 80386SX read only the byte of data they need at any given time from half of the data bus.
Dr. Imad Alzeer
0701441 Microprocessor Fundamentals
47
Figure 1029 The memory bank write selection input signals: HWR (high bank write) and LWR (low bank write).
a memory system that uses separate write strobes is constructed differently from the 8088 or the system using separate memory banks memory in a system using separate write strobes is decoded as 16-bit-wide
Dr. Imad Alzeer 0701441 Microprocessor Fundamentals 48