To execute an instruction, the control unit of the CPU must generate the required control signal in the proper sequence. As for example, during the fetch phase, CPU has to generate PCout signal along with other required signal in the first clock pulse. In the second clock pulse CPU has to generate PCin signal along with other required signals. So, during fetch phase, the proper sequence for generating the signal to retrieve from and store to PC is PCout  and   PCin.

To generate the control signal in proper sequence, a wide variety of techniques exist. Most of these techniques, however, fall into one of the two categories,

  1. Hardwired Control
  2. Micro programmed Control.

Hardwired Control

In this hardwired control techniques, the control signals are generated by means of hardwired circuit. The main objective of control unit is to generate the control signal in proper sequence.

Consider the sequence of control signal required to execute the ADD instruction that is explained in previous lecture. It is obvious that eight non-overlapping time slots are required for proper execution of the instruction represented by this sequence.

Each time slot must be at least long enough for the function specified in the corresponding step to be completed.  Since, the control unit is implemented by hardwired device and every device is having a propagation delay, due to which it requires some time to get the stable output signal at the output port after giving the input signal. So, to find out the time slot is a complicated design task.

For the moment, for simplicity, let us assume that all slots are equal in time duration. Therefore the required controller may be implemented based upon the use of a counter driven by a clock.

Each state, or count, of this counter corresponds to one of the steps of the control sequence of the instructions of the CPU.

In the previous lecture, we have mentioned control sequence for execution of two instructions only (one is for add and other one is for branch). Like that we need to design the control sequence of all the instructions.

By looking into the design of the CPU,  we may say that there are various instruction for add operation.  As for example,

ADD NUM R1
Add the contents of memory location specified by NUM to the contents
of register R1 .
ADD R2 R1
Add the contents of register R2 to the contents of register R1.

The control sequence for execution of these two ADD instructions are different. Of course, the fetch phase of all the instructions remain same.

It is clear that control signals depend on the instruction, i.e., the contents of the instruction register. It is also observed that execution of some of the instructions depend on the contents of condition code or status flag register, where the control sequence depends in conditional branch instruction.

Hence, the required control signals are uniquely determined by the following information:

    • Contents of the control counter.
    • Contents of the instruction register.
    • Contents of the condition code and other status flags.

The external inputs represent the state of the CPU and various control lines connected to it, such asMFC status signal. The condition codes/ status flags indicates the state of the CPU. These includes the status flags like carry, overflow, zero, etc.

l4_1

 Organization of control unit.

The structure of control unit can be represented in a simplified view by putting it in block diagram. The detailed hardware involved may be explored step by step. The simplified view of the control unit is given in the Figure 5.10.

The decoder/encoder block is simply a combinational circuit that generates the required control outputs depending on the state of all its input.

The decoder part of decoder/encoder part provide a separate signal line for each control step, or time slot in the control sequence. Similarly, the output of the instructor decoder consists of a separate line for each machine instruction loaded in the IR, one of the output line INS1  to  INSm  is set to 1 and all other lines are set to 0.

The detailed view of the control unit organization is shown in the Figure below

l4_2

Detailed view of Control Unit organization

Programmable  Logic  Array In this discussion, we have presented a simplified view of the way in which the sequence of control signals needed to fetch and execute instructions may be generated.It is observed from the discussion that as the number of instruction increases the number of required control signals will also increase.

In VLSI technology, structure that involve regular interconnection patterns are much easier to implement than the random connections.

One such regular structure is PLA ( programmable logic array ). PLAs are nothing but the arrays of AND gates followed by array of OR gates.  If the control signals are expressed as sum of product form then with the help of PLA it can be implemented.

The PLA implementation of control unit is shown in the Figure .

l4_7

Micro-programmed Control

In hardwired control, we saw how all the control signals required inside the CPU can be generated using a state counter and a PLA circuit.

There is an alternative approach by which the control signals required inside the CPU can be generated . This alternative approach is known as micro-programmed control unit.

In micro-programmed control unit, the logic of the control unit is specified by a micro-program.

A micro-program consists of a sequence of instructions in a micro programming language. These are instructions that specify micro-operations.

A micro-programmed control unit is a relatively simple logic circuit that is capable of (1) sequencing through micro-instructions and (2) generating control signals to execute each micro-instruction.

The concept of micro-program is similar to computer program. In computer program the complete instructions of the program is stored in main memory and during execution it fetches the instructions from main memory one after another. The sequence of instruction fetch is controlled by program counter (PC) .

Micro-program are stored in micro-program memory and the execution is controlled by micro-program counter (PC).

Micro-program consists of micro-instructions which are nothing but the strings of 0’s and 1’s. In a particular instance, we read the contents of one location of micro-program memory, which is nothing but a micro-instruction. Each output line ( data line ) of micro-program memory corresponds to one control signal. If the contents of the memory cell is 0, it indicates that the signal is not generated and if the contents of memory cell is 1, it indicates to generate that control signal at that instant of time.

First let me define the different terminologies that are related to micro-programmed control unit.

Control Word (CW) :

Control word is defined as a word whose individual bits represent the various control signal. Therefore
each of the control steps in the control sequence of an instruction defines a unique combination of 0s and 1s in the CW.

A sequence of control words (CWs) corresponding to the control sequence of a machine instruction constitutes the micro-program for that instruction.

The individual control words in this micro-program are referred to as micro-instructions.

The micro-programs corresponding to the instruction set of a computer are stored in a a special memory which will be referred to as the micro-program memory. The control words related to an instructions are stored in micro-program memory.

The control unit can generate the control signals for any instruction by sequentially reading the CWs of the corresponding micro-program from the micro-program memory. To read the control word sequentially from the micro-program memory a micro-program counter (PC) is needed.

The basic organization of a micro-programmed control unit is shown in the Figure

The “starting address generator” block is responsible for loading the starting address of the micro-program into the PC every-time a new instruction is loaded in the IR.

The PC is then automatically incremented by the clock, and it reads the successive micro-instruction from memory.

pic1

Basic organization of a micro-programmed control

Each micro-instruction basically provides the required control signal at that time step. The micro-program counter ensures that the control signal will be delivered to the various parts of the CPU in correct sequence.

We have some instructions whose execution depends on the status of condition codes and status flag, as for example, the branch instruction. During branch instruction execution, it is required to take the decision between the alternative action.

To handle such type of instructions with micro-programmed control, the design of control unit is based on the concept of conditional branching in the micro-program. For that it is required to include some conditional branch micro-instructions.

In conditional micro-instructions, it is required to specify the address of the micro-program memory to which the control must direct. It is known as branch address. Apart from branch address, these micro-instructions can specify which of the states flags, condition codes, or possibly, bits of the instruction register should be checked as a condition for branching to take place.

To support micro-program branching, the organization of control unit should be modified to accommodate the branching decision.

To generate the branch address, it is required to know the status of the condition codes and status flag. To generate the starting address, we need the instruction which is present in IR. But for branch address generation we have to check the content of condition codes and status flag.

The organization of control unit to enable conditional branching in the micro-program is shown in the Figure below.

pic2

Figure : Organization of micro-programmed control with conditional branching.

The control bits of the micro-instructions word which specify the branch conditions and address are fed to the “Starting and branch address generator” block.

This block performs the function of loading a new address into the PC when the condition of branch instruction is satisfied.

In a computer program we have seen that execution of every instruction consists of two part – fetch phase and execution phase of the instruction. It is also observed that the fetch phase of all instruction is same.

In micro-programmed controlled control unit, a common micro-program is used to fetch the instruction. This micro-program is stored in a specific location and execution of each instruction start from that memory location.

At the end of fetch micro-program, the starting address generator unit calculate the appropriate starting address of the micro-program for the instruction which is currently present in IR. After the PC controls the execution of micro-program which generates the appropriate control signal in proper sequence.

During the execution of a micro-program, the PC is always incremented every-time a new micro-instruction is fetched from the micro-program memory, except in the following situations :

  1. When an End instruction is encountered, the PC is loaded with the address of the first CW in the micro-program for the instruction fetch cycle.
    1. loaded with the branch address.

Let us examine the contents of micro-program memory and how the micro-program of each instruction is stored or organized in micro-program memory. Consider the two example that are used in our previous lecture . First example is the control sequence for execution of the instruction “Add contents of memory location addressed in memory direct mode to register R1”.

Steps

Actions

1.
 PCout,  MARin,  Read,  Clear  Y,  Set carry-in to ALU,  Add, Zin
2.
 Zout,  PCin,   Wait  For MFC
3.
 MDRout,  IRin
4.
 Address-field-of-IRout, MARin,  Read
5.
 R1out,  Yin,  Wait for MFC
6.
 MDRout,  Add,  Zin
7.
 Zout,  R1in
8.
 END

Control sequence for Conditional Branch instruction (BRN) Branch on negative)

Steps

Actions

1.
 PCout,  MARin, Read,  Clear Y,  Set Carry-in to ALU,  Add ,  Zin
2.
 Zout,  PCin,  Wait for MFC
3.
  MDRout,  IRin
4.
  PCout,  Yin
5.
  Address field-of IRout,  Add,  Zin
6.
  Zout,  PCin
7.
  End

First consider the control signal required for fetch instruction , which is same for all the instruction, we are listing them in a particular order.

PCout
MARin
Read
Clear Y
Set Carry to ALU
Add
Zin
Zout
PCin
WMFC
MDRout
IRin

The control word for the first three steps of the above two instruction are : ( which are the fetch cycle of each instruction as follows ):

Step1
1
1
1
1
1
1
1
0
0
0
0
0
– – –
Step2
0
0
0
0
0
0
0
1
1
1
0
0
– – –
Step3
0
0
0
0
0
0
0
0
0
0
1
1
– – –

We are storing this three CW in memory location 0, 1 and 2. Each instruction starts from memory location 0. After executing up-to third step, i.e., the contents of micro-program memory location 2, this control word stores the instruction in IR. The starting address generator circuit now calculate the starting address of the micro-program for the instruction which is available in IR.

Consider that the micro-program for add instruction is stored from memory location 50 of micro-program memory. So the partial contents from memory location 50 are as follows :

Location 50
0
1
1
0
0
0
0
0
0
0
0
0
– –
– –
– –
51
0
0
0
0
0
0
0
0
0
1
0
0
– –
– –
– –
and so on . . . .

When the micro-program executes the End micro-instruction of an instruction, then it generates the End control signal. This End control signal is used to load the PC with the starting address of fetch instruction ( In our case it is address 0 of micro-program memory). Now the CPU is ready to fetch the next instruction from main memory.

From the discussion, it is clear that micro-programs are similar to computer program, but it is in one level
lower, that’s why it is called micro-program.

For each instruction of the instruction set of the CPU, we will have a micro-program.

While executing a computer program, we fetch instruction by instruction from main memory which is controlled by program counter(PC).

When we fetch an instruction from main memory, to execute that instruction , we execute the micro program for that instruction. Micro programs are nothing but the collection of micro instructions. These micro instructions will be fetched from micro program memory one after another and its sequence is maintained by PC. Fetching of micro-instruction basically provides the required control signal at that time instant.

For Offline Study you can Download pdf file from below link
Download Computer Organization and Architecture Control unit design PDF File

Share with : Share on Linkedin Share on Twitter Share on WhatsApp Share on Facebook