0% found this document useful (0 votes)
25 views11 pages

4 Microprocessors

Uploaded by

Daniel Mesafint
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
25 views11 pages

4 Microprocessors

Uploaded by

Daniel Mesafint
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 11

Computer Hardware Microprocessors Chapter - 4

Chapter-
Chapter-4 Microprocessors
Microprocessor History
A microprocessor -- also known as a CPU or central processing unit -- is a complete
computation engine that is fabricated on a single chip. The first microprocessor was the
Intel 4004, introduced in 1971. The 4004 was not very powerful -- all it could do was add
and subtract, and it could only do that 4 bits at a time. But it was amazing that everything
was on one chip. Prior to the 4004, engineers built computers either from collections of
chips or from discrete components (transistors wired one at a time). The 4004 powered
one of the first portable electronic calculators.

The first microprocessor to make it into a home computer was the Intel 8080, a complete
8-bit computer on one chip, introduced in 1974. The first microprocessor to make a real
splash in the market was the Intel 8088, introduced in 1979 and incorporated into the
IBM PC (which first appeared around 1982). If you are familiar with the PC market and
its history, you know that the PC market moved from the 8088 to the 80286 to the 80386
to the 80486 to the Pentium to the Pentium II to the Pentium III to the Pentium 4. All of
these microprocessors are made by Intel and all of them are improvements on the basic
design of the 8088. The Pentium 4 can execute any piece of code that ran on the original
8088, but it does it about 5,000 times faster!

A chip is also called an integrated circuit. Generally it is a small, thin piece of silicon
onto which the transistors making up the microprocessor have been etched. A chip might
be as large as an inch on a side and can contain tens of millions of transistors. Simpler
processors might consist of a few thousand transistors etched onto a chip just a few
millimeters square.

The following table helps you to understand the differences between the different
processors that Intel has introduced over the years.

Clock Data
Name Date Transistors Microns MIPS
speed width
8080 1974 6,000 6 2 MHz 8 bits 0.64
16 bits
8088 1979 29,000 3 5 MHz 8-bit 0.33
bus
80286 1982 134,000 1.5 6 MHz 16 bits 1
16
80386 1985 275,000 1.5 32 bits 5
MHz
25
80486 1989 1,200,000 1 32 bits 20
MHz

AAsan, Dept.of Computer Science, FBE, Mekelle University Page 1 of 1


Computer Hardware Microprocessors Chapter - 4

32 bits
60
Pentium 1993 3,100,000 0.8 64-bit 100
MHz
bus
32 bits
233
Pentium II 1997 7,500,000 0.35 64-bit ~300
MHz
bus
32 bits
450
Pentium III 1999 9,500,000 0.25 64-bit ~510
MHz
bus
32 bits
1.5
Pentium 4 2000 42,000,000 0.18 64-bit ~1,700
GHz
bus

Information about this table:

• The date is the year that the processor was first introduced. Many processors are
re-introduced at higher clock speeds for many years after the original release date.
• Transistors are the number of transistors on the chip. You can see that the
number of transistors on a single chip has risen steadily over the years.
• Microns is the width, in microns, of the smallest wire on the chip. For
comparison, a human hair is 100 microns thick. As the feature size on the chip
goes down, the number of transistors rises.
• Clock speed is the maximum rate that the chip can be clocked at. Clock speed
will make more sense in the next section.
• Data Width is the width of the ALU. An 8-bit ALU can
add/subtract/multiply/etc. two 8-bit numbers, while a 32-bit ALU can manipulate
32-bit numbers. An 8-bit ALU would have to execute four instructions to add two
32-bit numbers, while a 32-bit ALU can do it in one instruction. In many cases,
the external data bus is the same width as the ALU, but not always. The 8088 had
a 16-bit ALU and an 8-bit bus, while the modern Pentiums fetch data 64 bits at a
time for their 32-bit ALUs.
• MIPS stands for "millions of instructions per second" and is a rough measure of
the performance of a CPU.

From this table you can see that, in general, there is a relationship between clock
speed and MIPS. The maximum clock speed is a function of the manufacturing
process and delays within the chip. There is also a relationship between the number of
transistors and MIPS. For example, the 8088 clocked at 5 MHz but only executed at
0.33 MIPS (about one instruction per 15 clock cycles). Modern processors can often
execute at a rate of two instructions per clock cycle. That improvement is directly
related to the number of transistors on the chip and will make more sense in the next
section.

AAsan, Dept.of Computer Science, FBE, Mekelle University Page 2 of 2


Computer Hardware Microprocessors Chapter - 4

Inside a Microprocessor

To understand how a microprocessor works, it is helpful to look inside and learn about
the logic used to create one. In the process you can also learn about assembly language -
- the native language of a microprocessor -- and many of the things that engineers can do
to boost the speed of a processor.

A microprocessor executes a collection of machine instructions that tell the processor


what to do. Based on the instructions, a microprocessor does three basic things:

• Using its ALU (Arithmetic/Logic Unit), a microprocessor can perform


mathematical operations like addition, subtraction, multiplication and division.
Modern microprocessors contain complete floating-point processors that can
perform extremely sophisticated operations on large floating-point numbers.
• A microprocessor can move data from one memory location to another.
• A microprocessor can make decisions and jump to a new set of instructions based
on those decisions.

There may be very sophisticated things that a microprocessor does, but those are its three
basic activities.

Microprocessor Instructions

Even the incredibly simple microprocessor shown in the previous example will have a
fairly large set of instructions that it can perform. The collection of instructions is
implemented as bit patterns, each one of which has a different meaning when loaded into
the instruction register. Humans are not particularly good at remembering bit patterns, so
a set of short words are defined to represent the different bit patterns. This collection of
words is called the assembly language of the processor. An assembler can translate the
words into their bit patterns very easily, and then the output of the assembler is placed in
memory for the microprocessor to execute.

Microprocessor Performance

The number of transistors available has a huge effect on the performance of a processor.
As seen earlier, a typical instruction in a processor like an 8088 took 15 clock cycles to
execute. Because of the design of the multiplier, it took approximately 80 cycles just to
do one 16-bit multiplication on the 8088. With more transistors, much more powerful
multipliers capable of single-cycle speeds become possible.

More transistors also allow for a technology called pipelining. In a pipelined


architecture, instruction execution overlaps. So even though it might take five clock
cycles to execute each instruction, there can be five instructions in various stages of
execution simultaneously. That way it looks like one instruction completes every clock
cycle.

AAsan, Dept.of Computer Science, FBE, Mekelle University Page 3 of 3


Computer Hardware Microprocessors Chapter - 4

Many modern processors have multiple instruction decoders, each with its own pipeline.
This allows for multiple instruction streams, which means that more than one instruction
can complete during each clock cycle. This technique can be quite complex to
implement, so it takes lots of transistors.

Intel Microprocessors
8086/8088 (1978/1979)
The 29,000-transistor 8086 marked the first 16-bit microprocessor - that is, there are 16
data bits available from the CPU itself. This immediately offered twice the data
throughput of earlier 8-bit CPUs. Each of the 24 registers in the 8086/8088 is expanded to
16 bits, rather than just 8. Twenty address lines allow direct access to 1,048,576 bytes
(1MB) of external system memory. Although 1MB of RAM is considered almost
negligible today, IC designers at the time never suspected that more than 1MB would
ever be needed. Both the 8086 and 8088 (as well as all subsequent Intel CPUs) can
address 64KB of I/O space (as opposed to RAM space). The 8086 was available for four
clock speeds; 5MHz, 6MHz, 8MHz, and 10MHz. Three clock speeds allowed the 8086 to
process 0.33, 0.66, and 0.75 MIPS (Millions of Instructions Per Second), respectively.

80186 (1980)
The 16-bit 80186 built on the x86 foundation to offer additional features, such as an
internal clock generator, system controller, interrupt controller, Direct Memory Access
(DMA) controller, and timer/counter circuitry right on the CPU itself. No Intel CPU
before or since has offered so much integration in a single CPU. The x186 was also first
to abandon 5MHz clock speeds in favor of 8MHz, 10MHz, and 12.5MHz. Aside from
these advances, however, the x186 remained similar to the 8086/8088 with 24 registers
and 20 address lines to access up to 1MB of RAM. The x186 were used as CPUs in
embedded applications and never saw service in personal computers. The limitations of
the early x86 architecture in the PC demanded a much faster CPU capable of accessing
far more than 1MB of RAM.

80286 (1982)
The 24-register, 134,000-transistor 80286 CPU (first used in the IBM PC/AT and
compatibles) offered some substantial advantages over older CPUs. Design advances
allow the i286 to operate at 1.2 MIPS, 1.5 MIPS, and 2.66 MIPS (for 8, 10, and
12.5MHz, respectively). The i286 also breaks the 1MB RAM barrier by offering 24
address lines, instead of 20, which allow it to directly address 16MB of RAM. In addition
to 16MB of directly accessible RAM, the i286 can handle up to 1GB (gigabytes) of
virtual memory, which allows blocks of program code and data to be swapped between
the i286’s real memory (up to 16MB) and a secondary (or “virtual”) storage location,
such as a hard disk. To maintain backward compatibility with the 8086/8088, which can
only address 1MB of RAM, the i286 can operate in a real mode. One of the great failings
of the i286 is that it can switch from real-mode to protected-mode, but it cannot switch

AAsan, Dept.of Computer Science, FBE, Mekelle University Page 4 of 4


Computer Hardware Microprocessors Chapter - 4

back to real-mode without a warm reboot of the system. The i286 uses a stand-alone math
co-processor, the 80287.

80386 (1985–1990)
The next major microprocessor released by Intel was the 275,000-transistor, 32-register,
80386DX CPU in 1985. With a full 32-bit data bus, data throughput is immediately
double that of the 80286. The 16, 20, 25, and 33MHz versions allow data throughput up
to 50MB/s and processing power up to 11.4 MIPS at 33MHz. A full 32-bit address bus
allows direct access to an unprecedented 4GB of RAM in addition to a staggering 64 TB
(tera bytes) of virtual memory capacity. The i386 was the first Intel CPU to enhance
processing through the use of instruction pipelining, which allows the CPU to start
working on a new instruction while waiting for the current instruction to finish. A new
operating mode (called the virtual real-mode) enables the CPU to run several real-mode
sessions simultaneously under operating systems such as Windows.

Intel took a small step backward in 1988 to produce the 80386SX CPU. The i386SX uses
24 address lines for 16MB of addressable RAM and an external data bus of 16 bits,
instead of full 32 bits from the DX. Correspondingly, the processing power for the
i386SX is only 3.6 MIPS at 33MHz. In spite of these compromises, this offered a
significantly less-expensive CPU, which helped to propagate the i386 family into desktop
and portable computers. Aside from changes to the address and bus width, the i386
architecture is virtually unchanged from that of the i386DX. By 1990, Intel integrated the
i386 into an 855,000-transistor, low-power version, called the 80386SL. The i386SL
incorporated an ISA-compatible chip set along with power-management circuitry that
optimized the i386 for use in mobile computers. The i386SL resembled the i386SX
version in its 24 address lines and 16-bit external data bus.

Each member of the i386 family uses stand-alone math co-processors (80387DX,
80387SX, and 80387SL, respectively). All versions of the 80386 can switch between
real-mode and protected-mode, as needed, so they will run the same software as (and are
backwardly compatible with) the 80286 and the 8086/8088.

80486 (1989–1994)
The consistent push for higher speed and performance resulted in the development of
Intel’s 1.2 million-transistor, 29-register, 32-bit microprocessor, called the 80486DX, in
1989. The i486DX provides full 32-bit addressing for access to 4GB of physical RAM
and up to 64TB (tera bytes) of virtual memory. The i486DX offers twice the performance
of the i386DX with 26.9 MIPS at 33MHz. Two initial versions (25 and 33MHz) were
available. As with the i386 family, the i486 series uses pipelining to improve instruction
execution, but the i486 series also adds 8KB of cache memory right on the IC. Cache
saves memory access time by predicting the next instructions that will be needed by the
CPU and loading them into the cache memory before the CPU actually needs them. If the
needed instruction is indeed in cache, the CPU can access the information from cache
without wasting time waiting for memory access. Another improvement of the i486DX is
the inclusion of a floating-point unit (an MCP) in the CPU itself, rather than requiring a

AAsan, Dept.of Computer Science, FBE, Mekelle University Page 5 of 5


Computer Hardware Microprocessors Chapter - 4

separate co-processor IC. This is not true of all members of the i486 family, however. A
third departure for the i486DX is that it is offered in 5- and 3-V versions. The 3-V
version is intended for laptop, notebook, and other low-power mobile computing
applications. Finally, the i486DX is upgradeable. Up to 1989/1990, personal computers
were limited by their CPU - when the CPU became obsolete, so did the computer (more
specifically the motherboard).

Intel Pentium Processors


Intel's first processor to break away from the x86 naming
convention was the Pentium (586) released in 1993.
Pentium processors had a Dual Independent Bus
Architecture and, as a result, were capable of parallel
processing (using two sets of instructions at the same
time). Pentium processors came in such speeds as 60, 66,
75, 90,100,120,133,150, and 166 MHz.

Pentium processors transmitted data 64-bits at a time, via


the 64-bit data bus, located within the processor. The 32-bit address bus of the Pentium
processor enabled it to address up to 4GB of memory. Pentium processors have 16K
Level 1 (L1) cache memory, and can also access between 256K and 512K of Level 2
(L2) cache.

Pentium 60 and 66 MHz


Pentium 60 and 66 MHz processors connected to the motherboard via Socket 4. This
processor had a 273-pin Pin Grid Array (PGA) and used 5 volts DC. (The term PGA is
used to explain the pin orientation of a processor.)

Pentium 75-200 MHz


Pentium 75-200 MHz processors came in a 296-pin PGA format and connected the
processor to the motherboard via Socket 7. These processors used 3.3 volts DC and could
use an active or a passive heat sink.

Intel Pentium Pro Processors


Intel created the Pentium Pro in 1995 to compete in the high-end server market. The
Pentium Pro wasn't meant to replace the Pentium in the
company's mainstream market. This processor had a 387-pin
SPGA format and connected to the motherboard via Socket 8.
The extra pins on this processor generated a lot of heat and an
onboard fan was necessary.
The Pentium Pro had a 64-bit data bus and a 36-bit address
bus. Intel released the Pentium Pro in speeds of 150,166,180,
and 200 MHz. All speeds used 3.3 volts DC, except the 150
MHz version of the processor, which used 3.1 volts DC.

AAsan, Dept.of Computer Science, FBE, Mekelle University Page 6 of 6


Computer Hardware Microprocessors Chapter - 4

Pentium Pro processors could handle four pipelines simultaneously and, as a result, were
capable of performing the equivalent of three simultaneous processes.

In addition to a 16K L1 cache, the Pentium Pro processor also had an onboard L2 cache
of 256K, 512K, or 1MB. This new onboard L2 cache ran at the same speed as the
processor and, thus, provided an excellent boost in processing efficiency.

Intel Pentium MMX Processors


Intel created the Pentium MMX, which provided 57 more instructions for multimedia
and communication capabilities. This processor had a 321-pin SPGA format and
connected to the motherboard using Socket 7. Aside from markings on the chip, the
MMX version looks the same as the earlier Pentiums.
This processor was available in speeds of 166, 200, and 233 MHz and ran under two
voltages. One voltage drove the processor and the other voltage provided the pins with
power. Additionally, a 32K L1 cache was available onboard and this processor could
support 256-512K L2 cache.

Intel Pentium II Processors


Intel first introduced the Pentium II processor in 1997.
This processor, as shown in Figure 5-3, had a new
package layout or form factor called Single Edge
Contact (SEC) and used Slot 1 to connect to the
motherboard.

The Pentium II processor has a 64-bit wide data bus


and a 36-bit wide address bus (effectively 32-bit RAM
support). Intel shipped the Pentium II in speeds of 233,
266, 300, and 333 with a system bus speed of 66 MHz; and later shipped Pentium II
processors that ran on a 100 MHz bus at core speeds of 350, 400, and 450 MHz.
Regardless of the speed, and even running on only 3.3 volts DC, all Pentium II processors
require special cooling fans. In addition, the Pentium II contains 32K of L1 cache and
512K L2 cache that runs at half the speed of the processor core.

Intel Celeron Processors


The Intel Celeron was designed to cash in on the popularity of the Pentium II chip. The
Pentium II processor was a technological breakthrough at the time, but not everyone
could afford it. Intel undoubtedly wanted to dominate the market and introduced a lower-
end processor called the Celeron.
Intel released the relatively inexpensive
Celeron in speeds of 266 and 300 MHz.
The Celeron had a form factor design
similar to that of the Pentium II, but
without a protective casing, so it's referred
to as a Single Edge Processor (SEP)
package. Later Celerons come in a PGA

AAsan, Dept.of Computer Science, FBE, Mekelle University Page 7 of 7


Computer Hardware Microprocessors Chapter - 4

package and plug into Socket 370 motherboards.


The original Celeron contained no onboard L2 cache and
consumers avoided it like the plague. Intel quickly released a
redesigned 300 MHz model with 128MB L2 cache that ran at the
same speed as the processor core, called the Celeron 300A. The
improved Celeron has proved remarkably popular, so Intel has
kept the model in production since then, increasing the clock speed
to keep up with competing CPUs.

Intel Pentium III Processors


Intel released the Pentium III processor in 1999 to replace the aging Pentium II. The
Pentium III initially came out in a 242-pin SEC package, but Intel eventually released the
370-pin PGA form factor. The 242-pin SEC connected to the motherboard using Slot 1
and used 2 volts DC. The 370-pin PGA connected to the motherboard using the PG370
ZIF socket, often referred to as simply Socket 370. Figure 5-6 shows an SEC Pentium
III.
Pentium III processors came out in a
wide variety of core speeds and motherboard
system speeds. Initially released at 450 MHz
with a 100 MHz system speed, Intel kept
cranking up the speeds until the P-III topped
out at 1.3 GHz and a 133 MHz system speed.
Other variations exist as well. The Pentium
IIIB techs introduced onboard Advanced
Transfer Cache (ATC). Usually both technologies were desired to greatly improve speed
and performance. Note that, content with mere speed and performance increases, Intel
also equipped the Pentium III with an enhanced version of MMX, called SSE (Streaming
SIMD Extensions), to handle the many multimedia chores required by the important
applications-games!
Pentium III processors have a 64-bit data bus and a 36-bit address bus, like the
Pentium II. And, like the Pentium II, the Pentium III can handle up to 4GB of memory.
These processors have 32K of L1 cache and 512K of L2 cache.

Intel Pentium IV Processors


The Pentium 4 is a seventh-generation x86 architecture
microprocessor produced by Intel and is their first all-
new CPU design, called the NetBurst architecture, since
the Pentium Pro of 1995. The original Pentium 4,
codenamed "Willamette", ran at 1.4 and 1.5 GHz and
was released in November 2000 on the Socket 423
platform.

Unlike the Pentium II, Pentium III, and various

AAsan, Dept.of Computer Science, FBE, Mekelle University Page 8 of 8


Computer Hardware Microprocessors Chapter - 4

Celerons, the architecture owed little to the Pentium Pro design, and was new from the
ground up. Notable with the introduction of the Pentium 4 was the very fast 400 MHz
FSB; it was actually a 100 MHz Quad-pumped bus, but the theoretical bandwidth was 4x
that of a normal bus, and so it was considered to run at 400 MHz- the fastest competition
was running at 266 MHz (133 MHz Double-pumped).

To the surprise of most industry observers, the Pentium 4 did not improve on the old P6
design in either of the normal two key performance measures: integer processing speed or
floating-point performance. Instead, it sacrificed per-cycle performance in order to gain
two things: very high clock speeds, and SSE performance. As is traditional with Intel's
flagship chips, the Pentium 4 also comes in a low-end Celeron version (often referred to
as Celeron 4) and a high-end Xeon version intended for SMP configurations.

The design goal of the Pentium 4 was to easily scale to fast clock speeds because
consumers were beginning to purchase computers based on GHz ratings. Intel used a
deep instruction pipeline to implement this goal, which reduced the amount of real work
that the Pentium 4 could do per clock cycle compared to other CPUs like the Pentium III
and Athlon.

The Pentium 4 design was initially expected to scale 10 GHz, but it had unsolvable
thermal problems at 4 GHz. Intel abandoned development of the Pentium 4 in mid-2005
to focus on the cooler running Pentium M, which was repositioned for the desktop
computer and small server markets. In retrospect, the Pentium III core was
technologically superior to Pentium 4. Only the system bus of the Pentium 4 is still used
in current system designs.

AMD Processors

Since the days of the Intel 486, Advanced Micro Devices (AMD) has released CPUs to
compete with Intel products. In more recent days, AMD has arguably caught up and, in
some cases, surpassed Intel in the capability of its products, a feat no one (outside of AMD)
would have thought possible even a year or two ago. Let's check out AMD's A+ offerings.

AMD K5 Processors
The AMD K5 processor was released by AMD in 1995 to compete with the Pentium
processor. The K5 processor had a 296-pin PGA and used Socket 7 to connect to the
motherboard. This processor was available in 75, 90, 100, and 116 MHz and required you
to use an active heat sink.
The AMD K5 processor had a 64-bit wide data bus and the 32-bit address bus allowed this
processor to address up to 4GB of RAM. This processor used 3.52 volts DC and only
supported 8K of L1 cache. Aside from markings on the chip, the K5 looked identical to a
Pentium.

AAsan, Dept.of Computer Science, FBE, Mekelle University Page 9 of 9


Computer Hardware Microprocessors Chapter - 4

AMD K6 Series of Processors


AMD K6 series of processors had a 296-pin PGA form factor
and connected to the motherboard using an enhanced socket 7
ZIF socket, called a Super Socket 7. All of the series-K6, K6-
2, K6-2+, and K6-111-shared the same physical features of a
64-bit data bus and a 32-bit address bus. Initially available in
speeds of 166-266 MHz, these processors used 3.3 Volts DC.
By the end of production, the K6 series processors had
reached core speeds of 550 MHz with 1 MB of onboard L1 cache, and ran off only 2.2
volts DC. Figure 5-7 shows one of the last K6 models, the K6-2+ processor.

AMD Athlon Processors


AMD didn't sit still while Intel unveiled the Pentium II and Pentium III. Aside from
developing the K6 series, in 1999, AMD released the Athlon processor in an SEC form
factor-called Slot A-to compete directly with Intel's offerings. AMD later released the
Athlon in a PGA form factor using Socket A. Slot A and Intel's Slot 1 resemble each
other, but are not pin compatible. The same is true of Socket A and Socket 370. You
cannot swap processors between the current AMD and Intel-specific motherboards.
Figure 5-8 shows an early Slot A Athlon and Figure 5-9 shows a Socket A version.
Originally released at speeds of 550, 600, and 650 MHz, the Athlon was the first x86
processor to break the 1 GHz mark and has continued to develop since then. Athlons have
128K of L1 cache and either 256 MB or 512K L2 cache on die (that is, integrated into the
CPU package).

AMD Duron Processors


AMD released the Duron processor, shown in
Figure 5-10, to compete on the lower end of the
CPU spectrum with Intel's Celeron CPU.
Basically a cut-down Athlon, the Duron has the
same 128K of L1 cache, but has only 64K of L2
cache. Other improvements (such as a 200 MHz
frontside bus) make the Duron slightly faster than a comparative Celeron. The Duron
debuted at 600 MHz and has continued to climb in clock speed ever since. Durons come
in a Socket A PGA form factor.

FIGURE Athlon Socket A

AAsan, Dept.of Computer Science, FBE, Mekelle University Page 10 of 10


Computer Hardware Microprocessors Chapter - 4

FIGURE AMD Duron

Cyrix Processors
Cyrix has produced competitive CPUs since the days of the 486
(the predecessor to the Pentium), but concentrates on the lower
end of the CPU spectrum. Cyrix had a worthy, pin-compatible
alternative to the Pentium, called the 6x86 line, that ranged in
P-Rating (that is, effective clock speed) from 166 MHz to 233
MHz. The chipset giant VIA Technologies bought Cyrix a few
years ago and has continued to release lower-end CPUs under
the Cyrix label, such as the Cyrix M-II and VIA C3. Both CPUs
are pin-compatible with Intel CPUs. The M-II plugs into later
Socket 7 motherboards and the C3 plugs into Socket 370 motherboards.

@@@@@

AAsan, Dept.of Computer Science, FBE, Mekelle University Page 11 of 11

You might also like