63
CENG3420 Lecture 07: Memory Organization Bei Yu (Latest update: March 19, 2020) Spring 2020 1 / 49

CUHKredCENG3420 Lecture 07: Memory Organizationbyu/CENG3420/2020Spring/slides/L07-memory.pdf · SimplifiedView Datatransfertakesplacethrough I MAR:memoryaddressregister I MDR:memorydataregister

  • Upload
    others

  • View
    14

  • Download
    0

Embed Size (px)

Citation preview

Page 1: CUHKredCENG3420 Lecture 07: Memory Organizationbyu/CENG3420/2020Spring/slides/L07-memory.pdf · SimplifiedView Datatransfertakesplacethrough I MAR:memoryaddressregister I MDR:memorydataregister

CENG3420Lecture 07: Memory Organization

Bei Yu

(Latest update: March 19, 2020)

Spring 2020

1 / 49

Page 2: CUHKredCENG3420 Lecture 07: Memory Organizationbyu/CENG3420/2020Spring/slides/L07-memory.pdf · SimplifiedView Datatransfertakesplacethrough I MAR:memoryaddressregister I MDR:memorydataregister

Overview

Introduction

Random Access Memory (RAM)

Interleaving

Secondary Memory

Conclusion

2 / 49

Page 3: CUHKredCENG3420 Lecture 07: Memory Organizationbyu/CENG3420/2020Spring/slides/L07-memory.pdf · SimplifiedView Datatransfertakesplacethrough I MAR:memoryaddressregister I MDR:memorydataregister

Overview

Introduction

Random Access Memory (RAM)

Interleaving

Secondary Memory

Conclusion

3 / 49

Page 4: CUHKredCENG3420 Lecture 07: Memory Organizationbyu/CENG3420/2020Spring/slides/L07-memory.pdf · SimplifiedView Datatransfertakesplacethrough I MAR:memoryaddressregister I MDR:memorydataregister

Review: Major Components of a Computer

Processor

Control

Datapath

Memory

Devices

Input

Output

Cache

Main

Mem

ory

Secondary M

emory

(Disk)

3 / 49

Page 5: CUHKredCENG3420 Lecture 07: Memory Organizationbyu/CENG3420/2020Spring/slides/L07-memory.pdf · SimplifiedView Datatransfertakesplacethrough I MAR:memoryaddressregister I MDR:memorydataregister

Why We Need Memory?

Combinational Circuit:I Always gives the same output for a given set of inputs

I E.g., adders

Sequential Circuit:I Store information

I Output depends on stored information

I E.g., counter

I Need a storage element

4 / 49

Page 6: CUHKredCENG3420 Lecture 07: Memory Organizationbyu/CENG3420/2020Spring/slides/L07-memory.pdf · SimplifiedView Datatransfertakesplacethrough I MAR:memoryaddressregister I MDR:memorydataregister

Who Cares About the Memory Hierarchy?

Processor60%/yr.(2x/1.5  yr)

DRAM9%/yr.(2x/10  yrs)1

10

100

1000

1980

1981

1983

1984

1985

1986

1987

1988

1989

1990

1991

1992

1993

1994

1995

1996

1997

1998

1999

2000

DRAM

CPU

1982

Processor-­MemoryPerformance  Gap:(grows  50%  /  year)

Performance

Time

“Moore’s  Law”Processor  Growth  Curve  follows

Processor-DRAM Memory Performance Gap

5 / 49

Page 7: CUHKredCENG3420 Lecture 07: Memory Organizationbyu/CENG3420/2020Spring/slides/L07-memory.pdf · SimplifiedView Datatransfertakesplacethrough I MAR:memoryaddressregister I MDR:memorydataregister

6 / 49

Page 8: CUHKredCENG3420 Lecture 07: Memory Organizationbyu/CENG3420/2020Spring/slides/L07-memory.pdf · SimplifiedView Datatransfertakesplacethrough I MAR:memoryaddressregister I MDR:memorydataregister

7 / 49

Page 9: CUHKredCENG3420 Lecture 07: Memory Organizationbyu/CENG3420/2020Spring/slides/L07-memory.pdf · SimplifiedView Datatransfertakesplacethrough I MAR:memoryaddressregister I MDR:memorydataregister

Memory System Revisted

I Maximum size of memory is determined by addressing scheme

E.g.

16-bit addresses can only address 216 = 65536 memory locations

I Most machines are byte-addressableI each memory address location refers to a byteI Most machines retrieve/store data in wordsI Common abbreviations

I 1k ≈ 210 (kilo)I 1M ≈ 220 (Mega)I 1G ≈ 230 (Giga)I 1T ≈ 240 (Tera)

8 / 49

Page 10: CUHKredCENG3420 Lecture 07: Memory Organizationbyu/CENG3420/2020Spring/slides/L07-memory.pdf · SimplifiedView Datatransfertakesplacethrough I MAR:memoryaddressregister I MDR:memorydataregister

Simplified ViewData transfer takes place throughI MAR: memory address registerI MDR: memory data register

Up to 2k addressableMDR

MAR

k-bitaddress bus

n -bitdata bus

Control lines( , MFC, etc.)

Processor Memory

locations

Word length = n bits

WR /

Several  addressablelocations  (bytes)  are  grouped  into  a  word

9 / 49

Page 11: CUHKredCENG3420 Lecture 07: Memory Organizationbyu/CENG3420/2020Spring/slides/L07-memory.pdf · SimplifiedView Datatransfertakesplacethrough I MAR:memoryaddressregister I MDR:memorydataregister

Big Picture

Processor usually runs much faster than main memory:I Small memories are fast, large memories are slow.I Use a cache memory to store data in the processor that is likely to be used.

Main memory is limited:I Use virtual memory to increase the apparent size of physical memory by moving

unused sections of memory to disk (automatically).I A translation between virtual and physical addresses is done by a memory

management unit (MMU)I To be discussed in later lectures

10 / 49

Page 12: CUHKredCENG3420 Lecture 07: Memory Organizationbyu/CENG3420/2020Spring/slides/L07-memory.pdf · SimplifiedView Datatransfertakesplacethrough I MAR:memoryaddressregister I MDR:memorydataregister

Characteristics of the Memory Hierarchy

Increasing distance from the processor in accesstime

L1$

L2$

Main Memory

Secondary Memory

Processor

(Relative) size of the memory at each level

Inclusive–what is in L1$ is a subset of what is in L2$ is a subset of what is in MM that is a subset of is in SM

4-8 bytes (word)

1 to 4 blocks

1,024+ bytes (disk sector = page)

8-32 bytes (block)

11 / 49

Page 13: CUHKredCENG3420 Lecture 07: Memory Organizationbyu/CENG3420/2020Spring/slides/L07-memory.pdf · SimplifiedView Datatransfertakesplacethrough I MAR:memoryaddressregister I MDR:memorydataregister

Memory Hierarchy: Why Does it Work?

Temporal Locality (locality in time)

If a memory location is referenced then it will tend to be referenced again soon

I Keep most recently accessed data items closer to the processor

Spatial Locality (locality in space)

If a memory location is referenced, the locations with nearby addresses will tend to bereferenced soon

I Move blocks consisting of contiguous words closer to the processor

12 / 49

Page 14: CUHKredCENG3420 Lecture 07: Memory Organizationbyu/CENG3420/2020Spring/slides/L07-memory.pdf · SimplifiedView Datatransfertakesplacethrough I MAR:memoryaddressregister I MDR:memorydataregister

Memory Hierarchy: Why Does it Work?

Temporal Locality (locality in time)

If a memory location is referenced then it will tend to be referenced again soon

I Keep most recently accessed data items closer to the processor

Spatial Locality (locality in space)

If a memory location is referenced, the locations with nearby addresses will tend to bereferenced soon

I Move blocks consisting of contiguous words closer to the processor

12 / 49

Page 15: CUHKredCENG3420 Lecture 07: Memory Organizationbyu/CENG3420/2020Spring/slides/L07-memory.pdf · SimplifiedView Datatransfertakesplacethrough I MAR:memoryaddressregister I MDR:memorydataregister

Memory Hierarchy

Taking advantage of the principle of locality:I Present the user with as much memory as is available in the cheapest technology.I Provide access at the speed offered by the fastest technology

Control

Datapath

SecondaryStorage(Disk)

Processor

Registers

MainMemory(DRAM)

SecondLevelCache

(SRAM)

On-C

hipC

ache

Speed:Hundreds Tera'sSize (bytes): Mega's Giga's

TertiaryStorage(Tape)

~1 ns Tens msTens ns Hundreds ns – 1 us Tens sec

13 / 49

Page 16: CUHKredCENG3420 Lecture 07: Memory Organizationbyu/CENG3420/2020Spring/slides/L07-memory.pdf · SimplifiedView Datatransfertakesplacethrough I MAR:memoryaddressregister I MDR:memorydataregister

https://youtu.be/p3q5zWCw8J4

14 / 49

Page 17: CUHKredCENG3420 Lecture 07: Memory Organizationbyu/CENG3420/2020Spring/slides/L07-memory.pdf · SimplifiedView Datatransfertakesplacethrough I MAR:memoryaddressregister I MDR:memorydataregister

Terminology

Random Access Memory (RAM)

Property: comparable access time for any memory locations

Block (or line)

the minimum unit of information that is present (or not) in a cache

15 / 49

Page 18: CUHKredCENG3420 Lecture 07: Memory Organizationbyu/CENG3420/2020Spring/slides/L07-memory.pdf · SimplifiedView Datatransfertakesplacethrough I MAR:memoryaddressregister I MDR:memorydataregister

Terminology

I Hit Rate: the fraction of memory accesses found in a level of the memory hierarchyI Miss Rate: the fraction of memory accesses not found in a level of the memory

hierarchy, i.e. 1 - (Hit Rate)

Hit TimeTime to access the block + Time to determine hit/miss

Miss Penalty

Time to replace a block in that level with the corresponding block from a lower level

Hit Time << Miss Penalty

16 / 49

Page 19: CUHKredCENG3420 Lecture 07: Memory Organizationbyu/CENG3420/2020Spring/slides/L07-memory.pdf · SimplifiedView Datatransfertakesplacethrough I MAR:memoryaddressregister I MDR:memorydataregister

Bandwidth v.s. Latency

Example

I Mary acts FAST but she’s always LATE.I Peter is always PUNCTUAL but he is SLOW.

Bandwidth:I talking about the “number of bits/bytes per second” when transferring a block of data

steadily.Latency:I amount of time to transfer the first word of a block after issuing the access signal.I Usually measure in “number of clock cycles” or in ns/µs.

17 / 49

Page 20: CUHKredCENG3420 Lecture 07: Memory Organizationbyu/CENG3420/2020Spring/slides/L07-memory.pdf · SimplifiedView Datatransfertakesplacethrough I MAR:memoryaddressregister I MDR:memorydataregister

Bandwidth v.s. Latency

Example

I Mary acts FAST but she’s always LATE.I Peter is always PUNCTUAL but he is SLOW.

Bandwidth:I talking about the “number of bits/bytes per second” when transferring a block of data

steadily.Latency:I amount of time to transfer the first word of a block after issuing the access signal.I Usually measure in “number of clock cycles” or in ns/µs.

17 / 49

Page 21: CUHKredCENG3420 Lecture 07: Memory Organizationbyu/CENG3420/2020Spring/slides/L07-memory.pdf · SimplifiedView Datatransfertakesplacethrough I MAR:memoryaddressregister I MDR:memorydataregister

Question:Suppose the clock rate is 500 MHz. What is the latency and what is the bandwidth,assuming that each data is 64 bits?

Clock

RowAccessStrobe

Data d0 d1 d2

18 / 49

Page 22: CUHKredCENG3420 Lecture 07: Memory Organizationbyu/CENG3420/2020Spring/slides/L07-memory.pdf · SimplifiedView Datatransfertakesplacethrough I MAR:memoryaddressregister I MDR:memorydataregister

Overview

Introduction

Random Access Memory (RAM)

Interleaving

Secondary Memory

Conclusion

19 / 49

Page 23: CUHKredCENG3420 Lecture 07: Memory Organizationbyu/CENG3420/2020Spring/slides/L07-memory.pdf · SimplifiedView Datatransfertakesplacethrough I MAR:memoryaddressregister I MDR:memorydataregister

Storage based on FeedbackI What if we add feedback to a pair of inverters?

I Usually drawn as a ring of cross-coupled invertersI Stable way to store one bit of information (w. power)

19 / 49

Page 24: CUHKredCENG3420 Lecture 07: Memory Organizationbyu/CENG3420/2020Spring/slides/L07-memory.pdf · SimplifiedView Datatransfertakesplacethrough I MAR:memoryaddressregister I MDR:memorydataregister

Storage based on FeedbackI What if we add feedback to a pair of inverters?

I Usually drawn as a ring of cross-coupled invertersI Stable way to store one bit of information (w. power)

19 / 49

Page 25: CUHKredCENG3420 Lecture 07: Memory Organizationbyu/CENG3420/2020Spring/slides/L07-memory.pdf · SimplifiedView Datatransfertakesplacethrough I MAR:memoryaddressregister I MDR:memorydataregister

How to change the value stored?

I Replace inverter with NOR gateI SR-Latch

20 / 49

Page 26: CUHKredCENG3420 Lecture 07: Memory Organizationbyu/CENG3420/2020Spring/slides/L07-memory.pdf · SimplifiedView Datatransfertakesplacethrough I MAR:memoryaddressregister I MDR:memorydataregister

QUESTION:What’s the Q value based on different R, S inputs?

I R=S=1:

I S=0, R=1:

I S=1, R=0:

I R=S=0:

21 / 49

Page 27: CUHKredCENG3420 Lecture 07: Memory Organizationbyu/CENG3420/2020Spring/slides/L07-memory.pdf · SimplifiedView Datatransfertakesplacethrough I MAR:memoryaddressregister I MDR:memorydataregister

SRAM CellI At least 6 transistors (6T)I Used in most commercial chipsI A pair of weak cross-coupled invertersI Data stored in cross-coupled inverters

bit bit_b

word

22 / 49

Page 28: CUHKredCENG3420 Lecture 07: Memory Organizationbyu/CENG3420/2020Spring/slides/L07-memory.pdf · SimplifiedView Datatransfertakesplacethrough I MAR:memoryaddressregister I MDR:memorydataregister

Classical SRAM Organization

Row

Decoder

rowaddress

data bit or word

RAM CellArray

word (row) line

bit (data) lines

Each intersection represents a 6-T SRAM cell

Column Selector &I/O Circuits

columnaddress

One memory row holds a block of data, so the column address selects the requested bit or wordfrom that block

23 / 49

Page 29: CUHKredCENG3420 Lecture 07: Memory Organizationbyu/CENG3420/2020Spring/slides/L07-memory.pdf · SimplifiedView Datatransfertakesplacethrough I MAR:memoryaddressregister I MDR:memorydataregister

Classical SRAM OrganizationLatch based memory

n

D D D.$.$.

D D D.$.$.

D D D.$.$..$.$.

m

Memory$Data$Out

mMemory$Data$In

Read$Address$Decoder

Memory$Read$Address

n

Write$Address$Decoder

Memory$WriteAddress

GatedD8latch

D Q

WERead$bitlines

Write$bitlines

Write$word$line

Read$word$line

.$.$.

.$.$.

WE

24 / 49

Page 30: CUHKredCENG3420 Lecture 07: Memory Organizationbyu/CENG3420/2020Spring/slides/L07-memory.pdf · SimplifiedView Datatransfertakesplacethrough I MAR:memoryaddressregister I MDR:memorydataregister

DRAM Cell

I 1 Transistor (1T)I Requires presence of an extra capacitorI Modifications in the manufacturing process.I Higher densityI Write: Charged or discharged the capacitor (slow)I Read: Charge redistribution takes place between bit line and storage capacitance

25 / 49

Page 31: CUHKredCENG3420 Lecture 07: Memory Organizationbyu/CENG3420/2020Spring/slides/L07-memory.pdf · SimplifiedView Datatransfertakesplacethrough I MAR:memoryaddressregister I MDR:memorydataregister

Classical DRAM Organization

data bitdata bit

Row

Decoder

rowaddress

Column Selector &I/O Circuits

columnaddress

data bit

word (row) line

bit (data) lines

Each intersection represents a 1-T DRAM cell

Thecolumnaddressselectstherequestedbit fromtherowineachplane

RAM CellArray

26 / 49

Page 32: CUHKredCENG3420 Lecture 07: Memory Organizationbyu/CENG3420/2020Spring/slides/L07-memory.pdf · SimplifiedView Datatransfertakesplacethrough I MAR:memoryaddressregister I MDR:memorydataregister

Synchronous DRAM (SDRAM)

I The common type used today as it uses a clock to synchronize the operation.

I The refresh operation becomes transparent to the users.

I All control signals needed are generated inside the chip.

I The initial commercial SDRAM in the1990s were designed for clock speed of up to133MHz.

I Today’s SDRAM chips operate with clock speeds exceeding 1 GHz.

Memory modules are used to hold several SDRAM chips and are thestandard type used in a computer’s motherboard, of size like 4GB ormore.

27 / 49

Page 33: CUHKredCENG3420 Lecture 07: Memory Organizationbyu/CENG3420/2020Spring/slides/L07-memory.pdf · SimplifiedView Datatransfertakesplacethrough I MAR:memoryaddressregister I MDR:memorydataregister

Double Data Rate (DDR) SDRAM

I normal SDRAMs only operate once per clock cycle

I Double Data Rate (DDR) SDRAM transfers data on both clock edges

I DDR-2 (4x basic memory clock) and DDR-3 (8x basic memory clock) are in the market.

I They offer increased storage capacity, lower power and faster clock speeds.

I For example, DDR2 can operate at clock frequencies of 400 and 800 MHz. Therefore,they can transfer data at effective clock speed of 800 and 1600 MHz.

28 / 49

Page 34: CUHKredCENG3420 Lecture 07: Memory Organizationbyu/CENG3420/2020Spring/slides/L07-memory.pdf · SimplifiedView Datatransfertakesplacethrough I MAR:memoryaddressregister I MDR:memorydataregister

Performance of SDRAM

1 Hertz1 Cycle per second

RAM Type Theoretical Maximum BandwidthSDRAM 100 MHz (PC100) 100 MHz X 64 bit/ cycle = 800 MByte/sec

SDRAM 133 MHz (PC133) 133 MHz X 64 bit/ cycle = 1064 MByte/sec

DDR SDRAM 200 MHz (PC1600) 2 X 100 MHz X 64 bit/ cycle ~= 1600 MByte/sec

DDR SDRAM 266 MHz (PC2100) 2 X 133 MHz X 64 bit/ cycle ~= 2100 MByte/sec

DDR SDRAM 333 MHz (PC2600) 2 X 166 MHz X 64 bit/ cycle ~= 2600 MByte/sec

DDR-2 SDRAM 667 MHz (PC2-5400) 2 X 2 X 166 MHz X 64 bit/ cycle ~= 5400 MByte/sec

DDR-2 SDRAM 800 MHz (PC2-6400) 2 X 2 X 200 MHz X 64 bit/ cycle ~= 6400 MByte/sec

Bandwidth comparison. However, due to latencies, SDRAM does not perform as good as the figures shown.29 / 49

Page 35: CUHKredCENG3420 Lecture 07: Memory Organizationbyu/CENG3420/2020Spring/slides/L07-memory.pdf · SimplifiedView Datatransfertakesplacethrough I MAR:memoryaddressregister I MDR:memorydataregister

SRAM v.s. DRAM

Static RAM (SRAM)I Capable of retaining the state as long as power is applied.I They are fast, low power (current flows only when accessing the cells) but costly

(require several transistors), so the capacity is small.I They are the Level 1 cache and Level 2 cache inside a processor, of size 3 MB or more.

Dynamic RAM (DRAM)I store data as electric charge on a capacitor.I Charge leaks away with time, so DRAMs must be refreshed.I In return for this trouble, much higher density (simpler cells).

30 / 49

Page 36: CUHKredCENG3420 Lecture 07: Memory Organizationbyu/CENG3420/2020Spring/slides/L07-memory.pdf · SimplifiedView Datatransfertakesplacethrough I MAR:memoryaddressregister I MDR:memorydataregister

Memory Hierarchy

I Aim: to produce fast, bigand cheap memory

I L1, L2 cache are usuallySRAM

I Main memory is DRAM

I Relies on locality ofreference

Processor

Primarycache

Secondarycache

Main

Magnetic disk

memory

Increasingsize

Increasingspeed

secondarymemory

Increasingcost per bit

Registers

L1

L2

Increasinglatency

31 / 49

Page 37: CUHKredCENG3420 Lecture 07: Memory Organizationbyu/CENG3420/2020Spring/slides/L07-memory.pdf · SimplifiedView Datatransfertakesplacethrough I MAR:memoryaddressregister I MDR:memorydataregister

Mix-and-Match: Best of Both

By taking advantages of the principle of locality:I Present the user with as much memory as is available in the cheapest technology.I Provide access at the speed offered by the fastest technology.

DRAM is slow but cheap and dense:I Good choice for presenting the user with a BIG memory system – main memory

SRAM is fast but expensive and not very dense:I Good choice for providing the user FAST access time – L1 and L2 cache

32 / 49

Page 38: CUHKredCENG3420 Lecture 07: Memory Organizationbyu/CENG3420/2020Spring/slides/L07-memory.pdf · SimplifiedView Datatransfertakesplacethrough I MAR:memoryaddressregister I MDR:memorydataregister

Overview

Introduction

Random Access Memory (RAM)

Interleaving

Secondary Memory

Conclusion

33 / 49

Page 39: CUHKredCENG3420 Lecture 07: Memory Organizationbyu/CENG3420/2020Spring/slides/L07-memory.pdf · SimplifiedView Datatransfertakesplacethrough I MAR:memoryaddressregister I MDR:memorydataregister

Memory ControllerI A memory controller is normally used to interface between the memory and the

processor.I DRAMs have a slightly more complex interface as they need refreshing and they

usually have time-multiplex signals to reduce pin number.I SRAM interfaces are simpler and may not need a memory controller.

Processor

RAS

CAS

R/ W

Clock

AddressRow/Columnaddress

Memorycontroller

R/ W

Clock

Request

CS

Data

Memory

RAS (CAS) = Row (Column) Address Strobe; CS = Chip Select

33 / 49

Page 40: CUHKredCENG3420 Lecture 07: Memory Organizationbyu/CENG3420/2020Spring/slides/L07-memory.pdf · SimplifiedView Datatransfertakesplacethrough I MAR:memoryaddressregister I MDR:memorydataregister

Memory Controller

I The memory controller accepts a complete address and the R/W signal from theprocessor.

I The controller generates the RAS (Row Access Strobe) and CAS (Column AccessStrobe) signals.

I The high-order address bits, which select a row in the cell array, are provided firstunder the control of the RAS (Row Access Strobe) signal.

I Then the low-order address bits, which select a column, are provided on the sameaddress pins under the control of the CAS (Column Access Strobe) signal.

I The right memory module will be selected based on the address. Data lines areconnected directly between the processor and the memory.

I SDRAM needs refresh, but the refresh overhead is only less than 1 percent of the totaltime available to access the memory.

34 / 49

Page 41: CUHKredCENG3420 Lecture 07: Memory Organizationbyu/CENG3420/2020Spring/slides/L07-memory.pdf · SimplifiedView Datatransfertakesplacethrough I MAR:memoryaddressregister I MDR:memorydataregister

Memory Controller

I The memory controller accepts a complete address and the R/W signal from theprocessor.

I The controller generates the RAS (Row Access Strobe) and CAS (Column AccessStrobe) signals.

I The high-order address bits, which select a row in the cell array, are provided firstunder the control of the RAS (Row Access Strobe) signal.

I Then the low-order address bits, which select a column, are provided on the sameaddress pins under the control of the CAS (Column Access Strobe) signal.

I The right memory module will be selected based on the address. Data lines areconnected directly between the processor and the memory.

I SDRAM needs refresh, but the refresh overhead is only less than 1 percent of the totaltime available to access the memory.

34 / 49

Page 42: CUHKredCENG3420 Lecture 07: Memory Organizationbyu/CENG3420/2020Spring/slides/L07-memory.pdf · SimplifiedView Datatransfertakesplacethrough I MAR:memoryaddressregister I MDR:memorydataregister

Memory Controller

I The memory controller accepts a complete address and the R/W signal from theprocessor.

I The controller generates the RAS (Row Access Strobe) and CAS (Column AccessStrobe) signals.

I The high-order address bits, which select a row in the cell array, are provided firstunder the control of the RAS (Row Access Strobe) signal.

I Then the low-order address bits, which select a column, are provided on the sameaddress pins under the control of the CAS (Column Access Strobe) signal.

I The right memory module will be selected based on the address. Data lines areconnected directly between the processor and the memory.

I SDRAM needs refresh, but the refresh overhead is only less than 1 percent of the totaltime available to access the memory.

34 / 49

Page 43: CUHKredCENG3420 Lecture 07: Memory Organizationbyu/CENG3420/2020Spring/slides/L07-memory.pdf · SimplifiedView Datatransfertakesplacethrough I MAR:memoryaddressregister I MDR:memorydataregister

Memory Module InterleavingI Processor and cache are fast, main memory is slow.I Try to hide access latency by interleaving memory accesses across several memory

modules.I Each memory module has own Address Buffer Register (ABR) and Data Buffer

Register (DBR)

Which scheme below can be better interleaved?

m bits

Address in module MMaddress

i

k bits

Module Module Module

Module

DBRABR DBRABR ABR DBR

0 n 1-

(a) Consecutive words in amodule

i

k bits

0ModuleModuleModule

Module MM address

DBRABRABR DBRABR DBR

Address in module

2k 1-

m bits

(b) Consecutive words indifferent modules

35 / 49

Page 44: CUHKredCENG3420 Lecture 07: Memory Organizationbyu/CENG3420/2020Spring/slides/L07-memory.pdf · SimplifiedView Datatransfertakesplacethrough I MAR:memoryaddressregister I MDR:memorydataregister

Memory Module InterleavingI Processor and cache are fast, main memory is slow.I Try to hide access latency by interleaving memory accesses across several memory

modules.I Each memory module has own Address Buffer Register (ABR) and Data Buffer

Register (DBR)

Which scheme below can be better interleaved?

m bits

Address in module MMaddress

i

k bits

Module Module Module

Module

DBRABR DBRABR ABR DBR

0 n 1-

(a) Consecutive words in amodule

i

k bits

0ModuleModuleModule

Module MM address

DBRABRABR DBRABR DBR

Address in module

2k 1-

m bits

(b) Consecutive words indifferent modules

35 / 49

Page 45: CUHKredCENG3420 Lecture 07: Memory Organizationbyu/CENG3420/2020Spring/slides/L07-memory.pdf · SimplifiedView Datatransfertakesplacethrough I MAR:memoryaddressregister I MDR:memorydataregister

Memory Module InterleavingI Two or more compatible (identical the best) memory modules are used.

I Within a memory module, several chips are used in “parallel”.

I E.g. 8 modules, and within each module 8 chips are used in “parallel’. Achieve a8× 8 = 64-bit memory bus.

I Memory interleaving can be realized in technology such as “Dual Channel MemoryArchitecture”.

data bitdata bit

Row

Decoder

rowaddress

Column Selector &I/O Circuits

columnaddress

data bit

word (row) line

bit (data) lines

Each intersection represents a 1-T DRAM cell

Thecolumnaddressselectstherequestedbit fromtherowineachplane

RAM CellArray

36 / 49

Page 46: CUHKredCENG3420 Lecture 07: Memory Organizationbyu/CENG3420/2020Spring/slides/L07-memory.pdf · SimplifiedView Datatransfertakesplacethrough I MAR:memoryaddressregister I MDR:memorydataregister

Non-Interleaving v.s. Interleaving

CPU

Cache

DRAMMemory

bus

on-chip

(a) Non-Interleaving

CPU

Cache

DRAMMemorybank 1

bus

on-chip

DRAMMemorybank 0

DRAMMemorybank 2

DRAMMemorybank 3

(b) Interleaving

37 / 49

Page 47: CUHKredCENG3420 Lecture 07: Memory Organizationbyu/CENG3420/2020Spring/slides/L07-memory.pdf · SimplifiedView Datatransfertakesplacethrough I MAR:memoryaddressregister I MDR:memorydataregister

Example

I Suppose we have a cache read miss and need to load from main memory

I Assume cache with 8-word block, i.e., cache line size = 8 words (bytes)

I Assume it takes one clock to send address to DRAM memory and one clock to senddata back.

I In addition, DRAM has 6 cycle latency for first word

I Good that each of subsequent words in same row takes only 4 cycles

Single Memory Read: 1 + 6 + 1 = 8 Cycles

1 6 1

38 / 49

Page 48: CUHKredCENG3420 Lecture 07: Memory Organizationbyu/CENG3420/2020Spring/slides/L07-memory.pdf · SimplifiedView Datatransfertakesplacethrough I MAR:memoryaddressregister I MDR:memorydataregister

Example: Non-Interleaving1 6 1

I First byte DRAM needs 6 cycle (same as single memory read)

I All subsequent words DRAM needs 4 cycleI Non-overlappings in cache accessI Assumption: all words are in the same row

Non-Interleaving Cycle#1 + 1× 6 + 7× 4 + 1 = 36

39 / 49

Page 49: CUHKredCENG3420 Lecture 07: Memory Organizationbyu/CENG3420/2020Spring/slides/L07-memory.pdf · SimplifiedView Datatransfertakesplacethrough I MAR:memoryaddressregister I MDR:memorydataregister

Example: Non-Interleaving1 6 1

1 4 1

1 4 1

1 4 1

I First byte DRAM needs 6 cycle (same as single memory read)I All subsequent words DRAM needs 4 cycleI Non-overlappings in cache accessI Assumption: all words are in the same row

Non-Interleaving Cycle#1 + 1× 6 + 7× 4 + 1 = 36

39 / 49

Page 50: CUHKredCENG3420 Lecture 07: Memory Organizationbyu/CENG3420/2020Spring/slides/L07-memory.pdf · SimplifiedView Datatransfertakesplacethrough I MAR:memoryaddressregister I MDR:memorydataregister

Example: Non-Interleaving1 6 1

1 4 1

1 4 1

1 4 1

I First byte DRAM needs 6 cycle (same as single memory read)I All subsequent words DRAM needs 4 cycleI Non-overlappings in cache accessI Assumption: all words are in the same row

Non-Interleaving Cycle#1 + 1× 6 + 7× 4 + 1 = 36

39 / 49

Page 51: CUHKredCENG3420 Lecture 07: Memory Organizationbyu/CENG3420/2020Spring/slides/L07-memory.pdf · SimplifiedView Datatransfertakesplacethrough I MAR:memoryaddressregister I MDR:memorydataregister

Example: Four Module Interleaving

1

1 6 1

1 6 1

1 6 1

1 6

Interleaving Cycle#1 + 6 + 1× 8 = 15

40 / 49

Page 52: CUHKredCENG3420 Lecture 07: Memory Organizationbyu/CENG3420/2020Spring/slides/L07-memory.pdf · SimplifiedView Datatransfertakesplacethrough I MAR:memoryaddressregister I MDR:memorydataregister

Example: Four Module Interleaving

1 4 1

1 4 1

1 4 1

1 4 1

1

1 6 1

1 6 1

1 6 1

1 6

Interleaving Cycle#1 + 6 + 1× 8 = 15

40 / 49

Page 53: CUHKredCENG3420 Lecture 07: Memory Organizationbyu/CENG3420/2020Spring/slides/L07-memory.pdf · SimplifiedView Datatransfertakesplacethrough I MAR:memoryaddressregister I MDR:memorydataregister

Question:To transfer 8 bytes, what is the cycle# if just have TWO-module interleaved?

41 / 49

Page 54: CUHKredCENG3420 Lecture 07: Memory Organizationbyu/CENG3420/2020Spring/slides/L07-memory.pdf · SimplifiedView Datatransfertakesplacethrough I MAR:memoryaddressregister I MDR:memorydataregister

Overview

Introduction

Random Access Memory (RAM)

Interleaving

Secondary Memory

Conclusion

42 / 49

Page 55: CUHKredCENG3420 Lecture 07: Memory Organizationbyu/CENG3420/2020Spring/slides/L07-memory.pdf · SimplifiedView Datatransfertakesplacethrough I MAR:memoryaddressregister I MDR:memorydataregister

Major Components of A Computer

Processor

Control

Datapath

Memory

Devices

Input

Output

Cache

Main

Mem

ory

Secondary M

emory

(Disk)

42 / 49

Page 56: CUHKredCENG3420 Lecture 07: Memory Organizationbyu/CENG3420/2020Spring/slides/L07-memory.pdf · SimplifiedView Datatransfertakesplacethrough I MAR:memoryaddressregister I MDR:memorydataregister

Magnetic Disk

I Long term, nonvolatile storageI Lowest level memory: slow; large; inexpensiveI A rotating platter coated with a magnetic surfaceI A moveable read/write head to access the information

Track

SectorSector

Cylinder

PlatterHead

TrackController+

Cache

43 / 49

Page 57: CUHKredCENG3420 Lecture 07: Memory Organizationbyu/CENG3420/2020Spring/slides/L07-memory.pdf · SimplifiedView Datatransfertakesplacethrough I MAR:memoryaddressregister I MDR:memorydataregister

Magnetic Disk (cont.)I Latency: average seek time plus the rotational latencyI Bandwidth: peak transfer time of formatted data from the media (not from the cache)

Year of Introduction

Bandwidth (MB/s)

Latency (msec)

I In the time the bandwidth doubles, latency improves by a factor of only around 1.2

44 / 49

Page 58: CUHKredCENG3420 Lecture 07: Memory Organizationbyu/CENG3420/2020Spring/slides/L07-memory.pdf · SimplifiedView Datatransfertakesplacethrough I MAR:memoryaddressregister I MDR:memorydataregister

Read-Only Memory (ROM)

I Memory content fixed and cannot be changed easily.I Useful to bootstrap a computer since RAM is volatile (i.e. lost memory) when power

removed.I We need to store a small program in such a memory, to be used to start the process of

loading the OS from a hard disk into the main memory.

PROM/EPROM/EEPROM

45 / 49

Page 59: CUHKredCENG3420 Lecture 07: Memory Organizationbyu/CENG3420/2020Spring/slides/L07-memory.pdf · SimplifiedView Datatransfertakesplacethrough I MAR:memoryaddressregister I MDR:memorydataregister

Flash Storage

I First credible challenger to disksI Nonvolatile, and 100×−1000× faster than disksI Wear leveling to overcome wear out problem

46 / 49

Page 60: CUHKredCENG3420 Lecture 07: Memory Organizationbyu/CENG3420/2020Spring/slides/L07-memory.pdf · SimplifiedView Datatransfertakesplacethrough I MAR:memoryaddressregister I MDR:memorydataregister

FLASH Memory

I Flash devices have greater density, higher capacity and lower cost per bit.

I Can be read and written

I This is normally used for non-volatile storage

I Typical applications include cell phones, digital cameras, MP3 players, etc.

47 / 49

Page 61: CUHKredCENG3420 Lecture 07: Memory Organizationbyu/CENG3420/2020Spring/slides/L07-memory.pdf · SimplifiedView Datatransfertakesplacethrough I MAR:memoryaddressregister I MDR:memorydataregister

FLASH Cards

I Flash cards are made from FLASH chips

I Flash cards with standard interface are usable in a variety of products.

I Flash cards with USB interface are widely used – memory keys.

I Larger cards may hold 32GB. A minute of music can be stored in about 1MB ofmemory, hence 32GB can hold 500 hours of music.

48 / 49

Page 62: CUHKredCENG3420 Lecture 07: Memory Organizationbyu/CENG3420/2020Spring/slides/L07-memory.pdf · SimplifiedView Datatransfertakesplacethrough I MAR:memoryaddressregister I MDR:memorydataregister

Overview

Introduction

Random Access Memory (RAM)

Interleaving

Secondary Memory

Conclusion

49 / 49

Page 63: CUHKredCENG3420 Lecture 07: Memory Organizationbyu/CENG3420/2020Spring/slides/L07-memory.pdf · SimplifiedView Datatransfertakesplacethrough I MAR:memoryaddressregister I MDR:memorydataregister

Conclusion

I Processor usually runs much faster than main memory

I Common RAM types:SRAM, DRAM, SDRAM, DDR SDRAM

I Principle of locality: Temporal and SpatialI Present the user with as much memory as is available in the cheapest technology.I Provide access at the speed offered by the fastest technology.

I Memory hierarchy:I Register→ Cache→ Main Memory→ Disk→ Tape

49 / 49