Top Banner
Chapter 5 Internal Memory
31

Chapter 5 Internal Memory. Semiconductor Memory Types.

Jan 01, 2016

Download

Documents

Caren Wilkerson
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: Chapter 5 Internal Memory. Semiconductor Memory Types.

Chapter 5Internal Memory

Page 2: Chapter 5 Internal Memory. Semiconductor Memory Types.

Semiconductor Memory Types

Page 3: Chapter 5 Internal Memory. Semiconductor Memory Types.

Semiconductor Memory

16Mbit DRAM

Page 4: Chapter 5 Internal Memory. Semiconductor Memory Types.

Static RAM (SRAM)

• Desired for main memory• Used in cache• Basically an array of flip-flops• Simple to interface and control

• Fast• Relatively low density - complex• Relatively expensive

Page 5: Chapter 5 Internal Memory. Semiconductor Memory Types.

Static RAM model

Page 6: Chapter 5 Internal Memory. Semiconductor Memory Types.

Dynamic RAM (DRAM)

• Used in main memory

• Bits stored as charge in capacitors Essentially analog device Charges leak• Need refreshing even when powered Need refresh circuits

• Higher density (more bits per chip)• Slower than Static RAM• Less expensive

Page 7: Chapter 5 Internal Memory. Semiconductor Memory Types.

Dynamic RAM model

Page 8: Chapter 5 Internal Memory. Semiconductor Memory Types.

Read Only Memory (ROM)

• Permanent storage—Nonvolatile

• Microprogramming (see later)• Library subroutines• Systems programs (BIOS)• Function tables

Page 9: Chapter 5 Internal Memory. Semiconductor Memory Types.

Types of ROM

• ROM: Written during manufacture— Very expensive for small runs

• PROM: Programmable (once)—Needs special equipment to program

• Read “mostly”—EPROM: Erasable Programmable

– Erased by UV

—EEPROM: Electrically Erasable– Takes much longer to write than read

—Flash memory– Erase whole memory (block) electrically

Page 10: Chapter 5 Internal Memory. Semiconductor Memory Types.

EPROM

Page 11: Chapter 5 Internal Memory. Semiconductor Memory Types.

Memory Organization

• A 16Mbit chip can be organised as 1M of 16 bit words

• A bit per chip system has 16 lots of 1Mbit chip with bit 1 of each word in chip 1 and so on

• A 16Mbit chip can be organised as a 2048 x 2048 x 4bit array—Reduces number of address pins

– Multiplex row address and column address– 11 pins to address (211=2048)– Adding one more pin doubles range of values so x4

capacity

Page 12: Chapter 5 Internal Memory. Semiconductor Memory Types.

Typical 16 Mb DRAM (4M x 4)

Page 13: Chapter 5 Internal Memory. Semiconductor Memory Types.

Semiconductor Memory

16Mbit DRAM

Page 14: Chapter 5 Internal Memory. Semiconductor Memory Types.

Refreshing

• Refresh circuit is included on the chip

• Count through rows• Read & Write back

• Chip must be disabled during refresh• Takes time• Slows down apparent performance

Page 15: Chapter 5 Internal Memory. Semiconductor Memory Types.

256kByte Module Organisation

Page 16: Chapter 5 Internal Memory. Semiconductor Memory Types.

1MByte Module Organisation

Page 17: Chapter 5 Internal Memory. Semiconductor Memory Types.

Error Detection/Correction

Errors:• Hard Failure

—Permanent defect

• Soft Error—Random, non-destructive—No permanent damage to memory

• Coding (example Hamming code) can be used for

- Error detection - Error correcting

Page 18: Chapter 5 Internal Memory. Semiconductor Memory Types.

Error Correcting Code Function

Page 19: Chapter 5 Internal Memory. Semiconductor Memory Types.

Hamming Code

Visualizing:

Word: With even parity:

With Error: Identifying error:

Page 20: Chapter 5 Internal Memory. Semiconductor Memory Types.

Hamming Code

To store an M bit word with detection/correction takes M+K bit words

If K =1, we can detect single bit errors but not correct them

If 2K - 1 >= M + K , we can detect and correct single bit errors, i.e. detect an error and identify which bit it is.

Example: for M = 8: for K = 3: 23 – 1 < 8 + 3 for K = 4: 24 – 1 > 8 + 4 Therefore, choose K =4

Page 21: Chapter 5 Internal Memory. Semiconductor Memory Types.

Increased word length for error correcting

Page 22: Chapter 5 Internal Memory. Semiconductor Memory Types.

Layout of Data and Check Bits

Bit position 12 11 10 9 8 7 6 5 4 3 2 1

Bit number 1100 1011 1010 1001 1000 0111 0110 0101 0100 0011 0010 0001

Data bit D8 D7 D6 D5 D4 D3 D2 D1

Check bit C8 C4 C2 C1

C1 is a parity check on every data bit whose position is xxx1

C2 is a parity check on every data bit whose position is xx1x

C4 is a parity check on every data bit whose position is x1xx

C8 is a parity check on every data bit whose position is 1xxx

Why? Because we want the syndrome, the Hamming test word, to yield the address of the error.

Page 23: Chapter 5 Internal Memory. Semiconductor Memory Types.

Improvements in memory

RAM – continually gets denser.

DRAM – Several improvements: SDRAM – synchronous DRAM DDR-SDRAM - doubles transfer speed RDRAM – asynchronous one transfer per clock cycle

Page 24: Chapter 5 Internal Memory. Semiconductor Memory Types.

Comparison of improved DRAM

Conventional DRAM – 40 to 100 MB/S transfer rate?

Page 25: Chapter 5 Internal Memory. Semiconductor Memory Types.

Synchronous DRAM (SDRAM)

• Access is synchronized with an external clock• Address is presented to RAM• RAM finds data (CPU waits in conventional DRAM)• Since SDRAM moves data in time with system

clock, CPU knows when data will be ready• CPU does not have to wait, it can do something

else• Burst mode allows SDRAM to set up stream of

data and fire it out in block• DDR-SDRAM sends data twice per clock cycle

(leading & trailing edge)

Page 26: Chapter 5 Internal Memory. Semiconductor Memory Types.

SDRAM Read Timing

Page 27: Chapter 5 Internal Memory. Semiconductor Memory Types.

SDRAM

Page 28: Chapter 5 Internal Memory. Semiconductor Memory Types.

DDR SDRAM

• SDRAM can only send data once per clock• Double-data-rate SDRAM can send data

twice per clock cycle—Rising edge and falling edge

Page 29: Chapter 5 Internal Memory. Semiconductor Memory Types.

RAMBUS

• Adopted by Intel for Pentium & Itanium• Main competitor to SDRAM

• Separate bus (hence the name RAMBUS)• Bus addresses up to 320 RDRAM chips at

1.6Gbps• Asynchronous block protocol

—Precise control signal timing—480ns access time—Then 1.6 Gbps

Page 30: Chapter 5 Internal Memory. Semiconductor Memory Types.

RAMBUS Diagram

Page 31: Chapter 5 Internal Memory. Semiconductor Memory Types.