DigitalLogic ComputerOrganization L14 Memories Handout

You might also like

Download as pdf or txt
Download as pdf or txt
You are on page 1of 25

DIGITAL LOGIC AND

COMPUTER ORGANIZATION
Lecture 14: Memories
ELEC3010
ACKNOWLEGEMENT

I would like to express my special thanks to Professor Zhiru Zhang


School of Electrical and Computer Engineering, Cornell University
and Prof. Rudy Lauwereins, KU Leuven for sharing their teaching
materials.

2
COVERED IN THIS COURSE
❑ Binary numbers and logic gates
❑ Boolean algebra and combinational logic
❑ Sequential logic and state machines
❑ Binary arithmetic
Digital logic
❑ Memories

❑ Instruction set architecture


❑ Processor organization Computer
❑ Caches and virtual memory
❑ Input/output Organization
❑ Advanced topics
3
MOTIVATION EXAMPLE 1

Wi-Fi/GPS/ 6 ARM-based 64 4 Apple


Bluetooth bit microprocessor designed Audio
modules cores GPU cores
Broadcom codec

Qualcomm
RF front
Snapdragon X55M
end Super Retina
5G modem 16-core
AMX blocks XDR OLED
Neural Engine
LG
Sensor Fabricated by TSMC
modules
4GB/6GB 64GB/28GB/256GB
12M Cameras LPDDR4X RAM NAND flash Battery and Power
LG Innotek Micron Samsung module

4
MOTIVATION EXAMPLE 2

5
GENERAL MEMORY ORGANIZATION
❑ Two dimensional array of bit cells
▪ Each bit cell stores 1 bit
❑ Address selects a word with multiple bit cells

6
GENERAL MEMORY STRUCTURE

7
TYPES OF MEMORIES
❑ Read-Only Memory (ROM)
▪ Truly read-only
• Written in the factory, and never written after installation
▪ Mostly read and rarely written (PROM, EPROM, EEPROM, Flash …)
• Much faster to read than write
▪ Usually non-volatile
❑ Random Access Memory (RAM)
▪ Dynamic RAM (DRAM), Static RAM (SRAM)
▪ Read and write any location at similar speeds
▪ Typically volatile: loses contents when powered off
• New classes of non-volatile/persistent RAMs are emerging
8
READ-ONLY MEMORY (ROM) STRUCTURE

9
EXAMPLE TRULY READ-ONLY ROM IMPLEMENTATION

10
APPLICATIONS OF ROM

❑ Data & program storage


▪ e.g., Boot configuration for personal computers or application
code for embedded systems
❑ Combinational logic functions
▪ Lookup table
• Address inputs = function inputs
• Data outputs = function outputs

11
USING ROMS FOR COMBINATIONAL LOGIC

12
TYPES OF MEMORIES
❑ Read-Only Memory (ROM)
▪ Truly read-only
• Written in the factory, and never written after installation
▪ Mostly read and rarely written (PROM, EPROM, EEPROM, Flash …)
• Much faster to read than write
▪ Usually non-volatile
❑ Random Access Memory (RAM)
▪ Dynamic RAM (DRAM), Static RAM (SRAM)
▪ Read and write any location at similar speeds
▪ Typically volatile: loses contents when powered off
• New classes of non-volatile/persistent RAMs are emerging
13
DRAM BIT CELL

❑ Capacitor accessed through a transistor


❑ Capacitor is charged or discharged to
produce a 1 or a 0
❑ DRAM cells loses their state overtime
and must be refreshed periodically,
hence the name dynamic

14
DRAM WRITE

❑ Word line is asserted


❑ Bit line is driven with the desired value
▪ Capacitor is charged by the bit
line to store a 1
▪ Or discharged by the bit line to store a 0

15
DRAM READ

❑ Word line is asserted


❑ Bit line precharged halfway between 0
and 1
▪ Capacitor voltage pulls the bit line slightly
higher or lower
▪ Sense amplifier detects this small change (1
or 0)
❑ Read destroys the stored value
▪ Need to rewrite the value afterwards

16
COMMON DRAM STRUCTURE
❑ Multiplexed address inputs (log2n bits)
▪ Row and column address share the same
pins
• Row address (addr) bits arrive first;
followed by column addr
▪ Row-address strobe (RAS)
• RAS loads Address into row addr latch to
select 1 row
▪ Column-address strobe (CAS)
• CAS loads Address into col addr latch to
select 1 column bit
▪ Row and column address bits combined
form the complete address
17
READ ACCESS TO A DRAM ARRAY

18
BIDIRECTIONAL INPUT/OUTPUT VIA TRI-STATE DRIVERS

19
DRAM REFRESH

❑ Capacitors discharge over time


❑ Refresh cycles recharge each memory bit
▪ Refresh an entire row at a time
• Each row periodically accessed using RAS, which restores the charge

20
STATIC RAM (SRAM) BIT CELL

❑ One cell requires six transistors


▪ The core is two cross-coupled inverters
❑ Maintaining the state of the cell requires a constant power
▪ The cell is stable; no refresh cycles needed

21
SRAM WRITE

❑ Drive one bit line high, the other low (depending on the
desired value)
❑ Then turn on word line
❑ Bit lines over power cell with new value

22
SRAM READ

❑ Precharge both bit lines high


❑ Then turn on word line
❑ One of the two bit lines will be
pulled down by the cell
▪ Change detected by sense amplifier

23
SRAM ARCHITECTURE

24
BEFORE NEXT CLASS

• Textbook: 7.3.2-7.3.4
• Next time: Single Cycle
Microprocessor

25

You might also like