Peripheral Interfacing Unit Iii: Mr. S. Vinod Lecturer Eee Department
Peripheral Interfacing Unit Iii: Mr. S. Vinod Lecturer Eee Department
Peripheral Interfacing Unit Iii: Mr. S. Vinod Lecturer Eee Department
UNIT III
Mr. S. VINOD
LECTURER
EEE DEPARTMENT
• Study of Architecture and programming of ICs:
8255 PPI,
8259 PIC,
8251 USART,
8279 Key board display controller and
8253 Timer/ Counter – Interfacing with
8085 - A/D and D/A converter interfacing.
Block Diagram of 8255
It has a 40 pins of 4 groups.
Mode 1:
— Ports A and B are programmed as input or output ports
— Port C is used for handshaking
PA[7:0] PA[7:0]
PC4 STBA PC7 OBFA
PC5 IBFA PC6 ACKA
PC3 INTRA PC3 INTRA
8255 PB[7:0] 8255 PB[7:0]
PC2 STBB PC2 OBFB
PC1 IBFB PC1 ACKB
PC0 INTRB PC0 INTRB
PC6, 7 PC4, 5
Programming 8255
Mode 2:
— Port A is programmed to be bi-directional
— Port C is for handshaking
— Port B can be either input or output in mode 0 or mode 1
PA[7:0]
PC7 OBFA
PC6 ACKA
PC4 STBA
8255 PC5 IBFA
PC3 INTRA
PC0
PC0
PC0
PB[7:0]
11-15
CONROL WORD
example 1 -Keyboard
11-18
Bouncing Problem
11-19
Bouncing
11-20
example 2 –stepper motor
• Unipolar full step Stepper motor:
• INPUT SEQUENCE: X Y X Y
1100
0110
0011
1001
• 8255 CONTROL WORD: 1 0 0 0 0 0 0 0 =80H
• control register – 0F
• PORT ADDRESS
port A - 0C
port B - 0D
port C - 0E
MVI A, 80 DELAY: MVI C, FFH
OUT 0F LOOP: DCR C
START: MVI A, 0C JNZ LOOP
OUT 0C RET
CALL DELAY
MVI A, 06
OUT 0C
CALL DELAY
MVI A, 03
OUT 0C
CALL DELAY
MVI A, 09
OUT 0C
JMP START
TRAFFIC LIGHT CONTROLLER
• Common Cathode: 1 – ON
0 – OFF
• uses 8255 .
• To make all ports as O/P ports: Control word 80H
• 8255 port addresses:
• If 8255 Chip is loaded in PCB left port:
• Port A 0CH
• Port B 0DH
• Port C 0EH
• Control register Address 0FH
•
• If 8255 Chip is loaded in PCB right port:
• Port A 14H
• Port B 15H
• Port C 16H
• Control register Address 17H
MVI A, 80 DELAY: MVI B, 05
OUT 0F S1: MVI D ,FF
S: MVI C, 03 S2: MVI E, FF
S3: DCR E
LXI H, 4200 JNZ S3
L: MOV A, M DCR D
OUT 0C JNZ S2
INX H DCR B
JNZ S1
MOV A,M
RET
OUT 0D
INX H TEST PROGRAM
MOV A, M MVI A, 80
OUT 0E OUT 0F
MVI 01
INX H
OUT 0C
DCR C DATA 01, 02, 04, 08, 10, 20, 40, 80
JNZ L
JMP S
LOOP UP TABLE:
Address Data
4200
4201
4202
4203
4204
4205
4206
4207
4208
8279
Programmable Keyboard/Display
Interface
• A programmable keyboard and display interfacing chip.
• Scans and encodes up to a 64-key keyboard. And Controls up
to a 16 digit numerical display.
• Keyboard section has a built-in FIFO 8 character buffer.
• The display is controlled from an internal 16x8 RAM that
stores the coded display information.
• 8279 has 8 control words to be considered before It is
programmed
I/O Interface
Basic Description of the 8279
• This mode is valid only under the N-Key rollover mode. This mode is
programmed using end interrupt / error mode set command. If during a
single debounce period ( two keyboard scans ) two keys are found pressed ,
this is considered a simultaneous depression and an error flagis set.
• This flag, if set, prevents further writing in FIFO but allows the generation of
further interrupts to the CPU for FIFO read. The error flag can be read by
reading the FIFO status word. The error Flag is set by sending normal clear
command with CF = 1.
(iv)Sensor Matrix Mode :
• In the sensor matrix mode, the debounce logic is inhibited. The 8-byte FIFO
RAM now acts as 8 * 8 bit memory matrix. The status of the sensor switch
matrix is fed directly to sensor RAM matrix. Thus the sensor RAM bits
contains the row wise and column wise status of the sensors in the sensor
matrix.
• The IRQ line goes high, if any change in sensor value is detected at the end of
a sensor matrix scan or the sensor RAM has a previous entry to be read by
the CPU. The IRQ line is reset by the first data read operation, if AI = 0,
otherwise, by issuing the end interrupt command. AI is a bit in read sensor
RAM word.
Output (Display) Modes : 8279 provides two output modes for selecting the
display options. These are discussed briefly.
1. Display Scan : In this mode 8279 provides 8 or 16character multiplexed
displays those can be organized as dual 4- bit or single 8-bit display units.
2. Display Entry : ( right entry or left entry mode ) 8279 allows options for
data entry on the displays. The display data is entered for display either
from the right side or from the left side.
Command Words of 8279
• All the command words or status words are written or read
with A0 = 1 and CS = 0 to or from 8279. This section
describes the various command available in 8279.
d c B a dp e g f
command word
JNZ LOP3
RET
Address Opcode Comment
4200 98 H
4201 68 E
4202 7A L
4203 C8 P
4204 FF Blank
4205 FF Blank
4300 FF Blank
4301 FF Blank
4302 FF Blank
4303 FF Blank
4304 FF Blank
4305 FF Blank
ACCEPT A KEY AND DISPLAY
MVI B, 08 ANI 07
MVI A, 00 JZ LOP
OUT CNT ; set mode and MVI A, 40 ; set to read FIFO
display
OUT CNT
MVI A, 0CC;set clear display
IN DAT
OUT CNT
ANI 0F ; get the
MVI A, 90 ; write display corresponding
OUT CNT MOV L, A : code from look up table
MVI A, 0FF ;clear the display MVI H, 42
BACK: OUT DAT MOV A,M
DCR B OUT DAT
JNZ BACK JMP LOP
LOP: IN CNT ; lop for the pressing of key
Address Opcode
4200 OC 9F 4A 0B
4204 99 29 28 8F
4208 08 09 88 38
420C 6C 1A 68 E8
• CNT C2 01
• DAT C0 00
8259
Programmable Interrupt Controller
8259 Programmable Interrupt Controller
PRIORITY RESOLVER
This logic block determines the priorities of the bits set in the IRR. The highest priority
is selected and stroed into the corresponding bit of the ISR during INTA pulse.
INT (INTERRUPT)
This output goes directly to the CPU interrupt input. The V level on this line is
designed to be fully compatible with the 8080A, 8085A and 8086 input
levels.
INTA (INTERRUPT ACKNOWLEDGE)
INTA pulses will cause the 8259A to release vectoring information onto the data bus. The format of
this data depends on the system mode (mPM) of the 8259A.
DATA BUS BUFFER
This 3-state, bidirectional 8-bit buffer is used to interface the 8259A to the system Data Bus. Control
words and status information are transferred through the Data Bus Buffer.
READ/WRITE CONTROL LOGIC
The function of this block is to accept Output commands from the CPU. It contains the Initialization
Command Word (ICW) registers and Operation Command Word (OCW) registers which store the
various control formats for device operation. This function block also allows the status of the 8259A to
be transferred onto the Data Bus.
CS (CHIP SELECT)
A LOW on this input enables the 8259A. No reading or writing of the chip will occur unless the device
is selected.
WR (WRITE)
A LOW on this input enables the CPU to write control words (ICWs and OCWs) to the 8259A.
RD (READ)
A LOW on this input enables the 8259A to send the status of the Interrupt Request Register (IRR), In
Service Register (ISR), the Interrupt Mask Register (IMR), or the Interrupt level onto the Data Bus.
A0
This input signal is used in conjunction with WR and RD signals to write commands into the various
command registers, as well as reading the various status registers of the chip. This line can be tied
directly to one of the address lines
.
INTERRUPT SEQUENCE
The events occur as follows in an MCS-80/85 system:
1. One or more of the INTERRUPT REQUEST lines (IR7±0) are raised high, setting the
corresponding IRR bit(s).
2. The 8259A evaluates these requests, and sends an INT to the CPU, if appropriate.
3. The CPU acknowledges the INT and responds with an INTA pulse.
4. Upon receiving an INTA from the CPU group, the highest priority ISR bit is set, and the
corresponding IRR bit is reset. The 8259A will also release a CALL instruction code
(11001101) onto the 8-bitData Bus through its D7±0 pins.
5. This CALL instruction will initiate two more INTA pulses to be sent to the 8259A from the
CPU group.
6. These two INTA pulses allow the 8259A to release its preprogrammed subroutine address
onto the Data Bus. The lower 8-bit address is released at the first INTA pulse and the higher
8-bitaddress is released at the second INTA pulse.
7. This completes the 3-byte CALL instruction released by the 8259A. In the AEOI mode the
ISR bit is reset at the end of the third INTA pulse. Otherwise, the ISR bit remains set until an
appropriate EOI command is issued at the end of the interrupt sequence.
PROGRAMMING THE 8259A
The 8259A accepts two types of command words generated by the CPU:
1. Initialization Command Words (ICWs):
Before normal operation can begin, each 8259A in the system must be brought to a
starting point -by WR pulses.
2. Operation Command Words (OCWs): These are the command words which
command the 8259A to operate in various interrupt modes.
These modes are:
a. Fully nested mode
b. Rotating priority mode
c. Special mask mode
d. Polled mode
The OCWs can be written into the 8259A anytime after initialization .
Initialization Sequence
INITIALISATION COMMAND WORDS
ICW1
• A5±A15: Page starting address of service routines .In an MCS 80/85
system, the 8 request levels will generate CALLs to 8 locations equally
spaced in memory. These can be programmed to be spaced at intervals of
4 or 8 memory locations, thus the 8 routines will occupy a page of 32 or
64 bytes, respectively. The address format is 2 bytes long (A0±A15). When
the routine interval is 4, A0±A4 are automatically inserted by the 8259A,
while A5±A15 are programmed externally. When the routine interval is 8,
A0±A5 are automatically inserted by the 8259A, while A6±A15 are
programmed externally.
• T: If LTIM e 1, then the 8259A will operate in the level interrupt mode.
Edge detect logic on the interrupt inputs will be disabled.
• ADI: CALL address interval. ADI = 1 then interval = 4; ADI e 0 then interval
e 8.
• SNGL: Single. Means that this is the only 8259A in the system. If SNGL = 1
no ICW3 will be issued.
• IC4: If this bit is setÐICW4 has to be read. IfICW4 is not needed, set IC4 = 0.
ICW 2
ICW 3
This word is read only when there is more than one 8259A in the system and cascading is used, in
which case SNGL e 0. It will load the 8-bit slave register.
The functions of this register are:
• a. In the master mode (either when SP = 1, or in buffered mode when M/S = 1 in ICW4) a ``1''
is set for each slave in the system. The master then will release byte 1 of the call sequence
(for MCS- 80/85 system) and will enable the corresponding slave to release bytes 2 and 3 (for
8086 only byte 2) through the cascade lines.
• b. In the slave mode (either when SP e 0, or if BUF e 1 and M/S e 0 in ICW4) bits 2±0 identify
the slave. The slave compares its cascade input with these bits and, if they are equal, bytes 2
and 3 of the call sequence (or just byte 2 for 8086) are released by it on the Data Bus. d only
when there is more than one 8259A in the system and cascading is used, in which
If BUF=0,M/S is to be neglected.
Programmable Interval
Timer 8253
• The Intel 8253 is a programmable counter /
timer chip designed for use as an Intel
microcomputer peripheral. It uses N-MOS
technology with a single +5V supply and is
packaged in a 24-pin plastic DIP.
• It is organized as 3 independent 16-bit
counters, each with a counter rate up to 2
MHz . All modes of operation are software
programmable.
• Clock This is the clock input for the counter.
The counter is 16 bits. The maximum clock
frequency is 1 / 380 nanoseconds or 2.6
megahertz. The minimum clock frequency is
DC or static operation.
• Out This single output line is the signal that is
the final programmed output of the device.
Actual operation of the out line depends on
how the device has been programmed.
• Gate This input can act as a gate for the clock
input line, or it can act as a start pulse,
depending on the programmed mode of the
counter.
Block diagram of 8253
Data Bus Buffer :
• This tri-state, bi-directional, 8-bit buffer is used to interface the 8253/54 to the
system data bus. The Data bus buffer has three basic functions.
1. Programming the modes of 8253/54.
2. Loading the count registers.
3. Reading the count values.
Read/Write Logic : The Read/Write logic has five signals : RD, WR, CS and the
• address lines A0 and A1. In the peripheral I/O mode, the RD, and WR signals are
connected to IOR and IOW, respectively. In memory-mapped I/O, these are
connected to MEMR and MEMW. Address lines A0 and A1 of the CPU are usually
connected to lines A0 and A1 of the 8253/54, and CS is tied to a decoded address.
The control word register and counters are selected according to the signals on
lines A0 and A1.
Control Word Register :
This register is accessed when lines A0 and A1 are at logic 1. It is used to
write a command word which specifies the counter to be used (binary or
BCD), its mode, and either a read or write operation.
Counters :
These three functional blocks are identical in operation. Each counter
• consists of a single, 16 bit, pre-settable, down counter. The counter can
operate in either binary or BCD and its input, gate and output are
configured by the selection of modes stored in the control word register.
The counters are fully independent. The programmer can read the
contents of any of the three counters without disturbing the actual count
in process.
Programming the 8253/54 :
• Each counter of the 8253/54 is individually programmed by writing a control word
into the control word register (A0 - A1 = 11).
WRITE Operation :
1. Write a control word into control register.
2. Load the low-order byte of a count in the counter register.
3. Load the high-order byte of count in the counter register.
READ Operation :
In some applications, especially in event counters, it is necessary to read the value
of the count in process. This can be done by two possible methods:
1. Simple Read :
It involves reading a count after inhibiting the counter by controlling the gate input
or the clock input of the selected counter, and two I/O read operations are
performed by the CPU. The first I/O operation reads the low-order byte, and the
second I/O operation reads the high order byte.
2. Counter Latch Command :
In the second method, an appropriate control word is written into the control
register to latch a count in the output latch, and two I/O read operations are
performed by the CPU. The first I/O operation reads the low-order byte, and the
second I/O operation reads the high order byte.
MODES OF 8253
• Mode 0 : Interrupt on terminal count
• MODE 1 : Hardware Retrigger able One-shot
• MODE 2 : Rate generator
• MODE 3 : Square Wave Rate Generator
• MODE 4 : Software Triggered Strobe.
• MODE 5 : Hardware triggered strobe (Retrigger able).
Mode 0 : Interrupt on terminal count
• 1) The output will be initially low after the mode set operation.
• 2) After the count is loaded into the selected count Register the output
will remain low and the counter will count.
• 3) When the terminal count is reached the output will go high and
remain high until the selected count is reloaded.
• 1)Gate = 1 enables counting.
• 2) Gate = 0 disables counting.
Let us set channel 0 in mode 0
START: MVI A, 30
OUT 0CEH
MVI A, 05
OUT 0C8H
MVI A, 00
OUT 0C8H
HLT
Observe, using an CRO that the output of channel 0 is initially low. After giving six
clock pulse the output goes high
MODE 1 : Hardware Retrigger able One-shot
a) Normal operation
1) The output will be initially high
2) The output will go low on the CLK pulse following the rising edge at the
gate input.
3) The output will go high on the terminal count and remain high until the
next rising edge at the gate input.
b) Retriggering
The one shot is retrigger able, hence the output will remain low for the
full count after any rising edge of the gate input.
c) New count
If the counter is loaded during one shot pulse, the current one shot is not
affected unless the counter is retriggered. If retriggered, the counter is
loaded with the new count and the one-shot pulse continues until the
new count expires.
START: MVI A, 32
OUT 0CEH
MVI A, 05
OUT 0C8H
MVI A, 00
OUT 0C8H
OUT 0D0H ;triggers gate 0
HLT
MODE 2 : Rate generator
This mode functions like a divide by-N counter.
a) Normal Operation
1) The output will be initially high.
2) The output will go low for one clock pulse before the terminal count.
3) The output then goes high, the counter reloads the initial count and the
process is repeated.
4) The period from one output pulse to the next equals the number of input
counts in the count register.
b) Gate Disable
1) If Gate = 1 it enables a counting otherwise it disables counting (Gate = 0 ).
2) If Gate goes low during an low output pulse, output is set immediately
high. A trigger reloads the count and the normal sequence is repeated.
c) New count The current counting sequence does not affect when the new
count is written. If a trigger is received after writing a new count but
before the end of the current period, the new count will be loaded with
the new count on the next CLK pulse and counting will continue from the
new count. Otherwise, the new count will be loaded at the end of the
current counting cycle.
Using mode 2, divide the clock preset
at channel 1 by 10
START: MVI A, 74
OUT 0CEH ;channel 1 in mode 2
MVI A, 0AH ;LSB of count
OUT 0CAH
MVI A, 00H ;MSB of count
OUT 0CAH
HLT
Mode 3 Square Wave Rate Generator
a)Normal operation
1) Initially output is high.
2) For even count, counter is decremented by 2 on the falling edge of each clock pulse. When the
counter reaches terminal count, the state of the output is changed and the counter is
reloaded with the full count and the whole process is repeated.
3) If the count is odd and the output is high the first clock pulse (after the count is loaded)
decrements the count by 1. Subsequent clock pulses decrement the clock by 2. After timeout,
the output goes low and the full count is reloaded. The first clock pulse (following the reload)
decrements the count by 3 and subsequent clock pulse decrement the count by two. Then
the whole process is repeated. In this way, if the count is odd, the output will be high for
(n+1)/2 counts and low for (n-1)/2 counts.
b) Gate Disable
If Gate is 1 counting is enabled otherwise it is disabled. If Gate goes low while output is low,
output is set high immediately. After this, When Gate goes high, the counter is loaded with
the initial count on the next clock pulse and the sequence is repeated.
c) New Count
The current counting sequence does not affect when the new count is written. If a trigger is
received after writing a new count but before the end of the current half-cycle of the square
wave, the counter will be loaded with the new count on the next CLK pulse and counting will
continue from the new count. otherwise, the new count will be loaded at end of the current
half-cycle.
To generate a square wave of
frequency 150 KHz at channel
START: MVI A, 36
OUT 0CEH
MVI A, 0A
OUT 0C8H
MVI A, 00
OUT 0C8H
HLT
Vary the frequency by varying the count . Here the maximum count is FFFF. Thus with
the clock frequency of 1.5 MHZ, which corresponds to 0.6 micro sec
MODE 4 : Software Triggered Strobe
a) Normal operation
1) The output will be initially high
2) The output will go low for one CLK pulse after the terminal count (TC).
3) And become high again
b) Gate Disable
• If Gate is one the counting is enabled otherwise it is disabled. The Gate
has no effect on the output.
c) New count
• If a new count is written during counting, it will be loaded on the next CLK
pulse and counting will continue from the new count. If the count is two
byte then
1) Writing the first byte has no effect on counting.
2) Writing the second byte allows the new count to be loaded on the next
CLK pulse.
MODE 5 : Hardware triggered strobe
Retriggerable
a) Normal operation
• 1) The output will be initially high.
• 2) The counting is triggered by the rising edge of the Gate.
• 3) The output will go low for one CLK pulse after the terminal count (TC).
b) Retriggering
If the triggering occurs on the Gate input during the counting, the initial count is
loaded on the next CLK pulse and the counting will be continued until the terminal
count is reached.
• c) New count
• If a new count is written during counting, the current counting sequence will
not be affected. If the trigger occurs after the new count is written but before the
terminal count, the counter will be loaded with the new count on the next CLK
pulse and counting will continue from there.
ADC
• ADC0808/ADC0809 8-Bit μP Compatible A/D Converters with
8-Channel Multiplexer
• The 8-bit A/D converter uses successive approximation as the
conversion technique.
• The 8-channel multiplexer can directly access any of 8-single-
ended analog signals.
• Key Specifications:
Resolution 8 Bits
Single Supply 5 VDC
Low Power 15 mW
Conversion Time 100 μs
successive approximation
The successive approximation circuit typically consists of four block:
– A sample and hold circuit to acquire the input voltage (Vin).
– An analog voltage comparator that compares Vin to the
output of the internal DAC and outputs the result of the
comparison to the successive approximation register (SAR).
– A successive approximation register block designed to
supply an approximate digital code of Vin to the internal
DAC.
– An internal reference DAC that supplies the comparator with
an analog voltage equivalent of the digital code output of
the SAR for comparison with Vin.
The successive approximation register is initialized so that the (MSB) is equal
to a digital 1. This code is fed into the DAC which then supplies the
analog equivalent of this digital code (Vref/2) into the comparator
circuit for comparison with the sampled input voltage. If this analog
voltage exceeds Vin the comparator causes the SAR to reset this bit;
otherwise, the bit is left a 1. Then the next bit is set to 1 and do the
same test, continuing this binary search until every bit in the SAR has
been tested. The resulting code is the digital approximation of the
sampled input voltage and is finally output by the DAC at the end of the
conversion (EOC).
Program for analog to digital conversion
MVI A, 10H ; CHANNEL 0
OUT CE
MVI A, 18H ; CONTROL WORD
OUT CE
MVI A, 01 ;START PULSE
XRA A
XRA A
XRA A
XRA A
MVI A, 00 ;STOP PULSE
LOOP: IN D8 ;END OF CONVERSION
ANI 01
CPI 01
JNZ LOOP
INC0
STA 4200
HLT
Program for digital to analog conversion
square wave
There are special IC chips made for serial data communications. These chip is
called UART (universal asynchronous receiver transmitter) and USART
(universal synchronous-asynchronous receiver-transmitter) 8251.
Transfer Types
• DTE
– data terminal equipment
– e.g. computer, terminal
• DCE
– data communication equipment
– connects DTE to communication lines
– e.g. modem
• RS-232C
A widely accepted interface standard originally developed to foster data communication on
public telephone network through a modem
This has been adapted to the communication of terminals (PCs) directly to computers.
DTE Connections
25-Pin RS232 Connector
9-Pin RS232 Connector
TTL to RS-232
RS-232 Frame Format
Example
Start bit
0 b0 b1 …
bn p s1 s2
ASCII
Parity Stop bit
111101000001111
Idle A
8251 Block Diagram
• The UART is a universal asynchronous receiver/transmitter, which is
modeled on the real-world Intel® 8251 peripheral interface adapter
component. In the model we are considering, the UART consists of three
main blocks.
• a serial transmit block
• a serial receive block and
• a CPU Interface (I/F) block.
Mode Instruction (Asynchronous)
Mode Instruction (Synchronous)
Command Register
Status Register