Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

8254 Control Word and Operating modes

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

Prerequisite – 8254 Programmable Interval Timer After power-up, the state of the 8254 is undefined. The Mode, count value, and output of all Counters are undefined. How each counter operates is determined when it is programmed. Each counter must be programmed before it can be used. Unused counters need not be programmed. Counters are programmed by writing a Control Word and then an initial count. 

Control Word of 8254 – The format of Control Word of 8254 is:  

Here by using the value of SC1 and SC0 we select a specific counter:

SC1SC0SELECTION
00C0
01C1
10C2
11Read back status

The values of RW1 and RW0 are used to decide the Read – Write operation:

RW1RW0SELECTION
00Counter Latch Command
01Read/Write lower byte
10Read/Write higher byte
11Read/Write lower byte followed by higher byte

The values of M2, M1, M0 are used to decide the operating modes of 8254:

M2M1M0OPERATING MODE
000MODE 0
001MODE 1
X (0/1)10MODE 2
X (0/1)11MODE 3
100MODE 4
101MODE 5

The LSB of Control Word is used to select whether the counter is Binary or BCD. If the bit is 0 it works as binary counter and if its value is 1 it works as BCD counter. Operating Modes of 8254:

  1. Mode 0 (Interrupt on Terminal Count) – Mode 0 is typically used for event counting. After the Control Word is written, OUT is initially low, and will remain low until the counter reaches zero it is decremented by 1 after every clock cycle. OUT then goes high and remains high until a new count or a new Mode 0 Control Word is written into the counter. GATE = 1 enables counting, GATE = 0 disables counting.
  2. Mode 1 (Hardware Retriggerable One Shot) – OUT will be initially high. OUT will go low on the CLK pulse following a trigger to begin the one-shot pulse, and will remain low until the counter reaches zero.
  3. Mode 2 (Rate Generator) – Initially value of OUT is low. When counting is enabled, it becomes high and this process repeats periodically. Value of count = Input Frequency / Output Frequency. This mode works as a frequency divider.
  4. Mode 3 (Square Wave Generator) – Counting is enabled when GATE = 1 and disabled when GATE = 0. This mode is used to generate square waveform and time period (equal to count) is generated. If N is count and is even then ontime of wave = N/2 and offtime = N/2 If N is odd the ontime = (N + 1) / 2 and offtime = (N – 1) / 2
  5. Mode 4 (Software Triggered Strobe) – In this mode counting is enabled by using GATE = 1 and disabled by GATE = 0. Initially value of OUT is high and becomes low when value of count is at last stage. Count is reloaded again for subsequent clock pulse.
  6. Mode 5 (Hardware Triggered Strobe) – OUT will initially be high. Counting is triggered by a rising edge of GATE. When the initial count has expired, OUT will go low for one clock pulse and then go high again. After writing the Control Word and initial count, the counter will not be loaded until the clock pulse after a trigger.
My Personal Notes arrow_drop_up
Last Updated : 02 Jun, 2022
Like Article
Save Article
Similar Reads