I have been trying to understand how CPUs are manufactured with those large and complex circuits. But Making of CPU only talks about projecting transistor diagrams(May be that is the major part). Bu how additional components like diodes, capacitors etc. are added to CPU?
-
http://www.righto.com/2016/02/555-timer-teardown-inside-worlds-most.html has some die shots of resistors in the 555. Diodes are just a PN junction. Capacitors are simply adjoining plate structures: possibly on two different metal layers with a suitable dielectric between. – pjc50 Feb 26 '16 at 16:25
-
Small capacitances, diodes and even some resistances are made like the transistors. Not so much by adding them, semantically speaking, but by not removing them in an etching procedure. – Asmyldof Feb 26 '16 at 16:27
-
2Sometimes it is cheaper (silicon real-estate'wise) to use a transistor eg. switched as a current source instead of actually making a large resistor. Large resistors can take up large amounts of silicon, whereas transistors can be made much smaller. This is not always an option, but in many cases it is. In other words, it can be profitable to make a more complex looking circuit using transistors all over the place instead of using resistors in a simpler looking circuit diagram. – jippie Feb 26 '16 at 17:30
2 Answers
Basically they are fabricated in the same way as transistors.
If you look at the structure of a MOSFET, you will see that it actually has everything you need for resistors, capacitors and diodes.
The channel is made of P-type and N-type doped silicon forming two PN junctions - in fact this can be imagined as two back to back PN junction diodes. So how do you make a diode? you just remove one of the junctions leaving yourself with a PN diode. You can also make Schottky diodes using a metal-semiconductor junction if it is designed correctly. This is also something found in MOSFETs - you see metal joining the source/drain which is essentially a metal-semiconductor junction - though it is designed to not be a diode by diffusing the metal into the semiconductor, but still it's the same structure.
Now look at the gate of a MOSFET. It is a metal-oxide-semiconductor junction (in fact it can also be poly-oxide-semiconductor). The oxide acts as a dielectric forming a capacitor, hence you see talk about gate capacitance for a MOSFET as an important parameter. So you have your capacitor.
Look at the channel of the MOSFET. When conducting, it acts as a resistor. In fact the metal layers themselves are so thin they have a notable resistance, and poly-silicon can also be used as a conductor with quite a high resistivity.
So lets look at the components individually.
Diode
There are different sorts of diodes, of which P-N and Schottky are two common types. How are they made? These are made with the same techniques as a MOSFET. To make a P-N you dope one bit N-Type and a bit next to it P-Type and you have a P-N junction. For a Schottky diode you dope some N-Type silicon and build a metal junction on top.
Resistor
How do you make any resistor? Simply make a trace of resistive material of a specific width and length. This can be poly-silicon or metal in a CMOS device. The former is good for high resistance, the latter for low resistance.
Capacitor
There are two sorts, trench and metal. In the case of trench capacitors you etch down into the silicon, deposit metal, then oxide, then more metal. This forms a relatively high capacitance (for its size) which are commonly used for DDR memory. You can also form metal capacitors using the interconnect layers - basically the interconnects are layers of metal separated by a low-k (low capacitive) oxide layer. If you make that oxide with a higher dielectric strength, you can make a higher capacitance.

- 63,168
- 3
- 139
- 196
Diodes are already there, since they are simply a PN-junction
Capacitors are trickier. Either there are specific process steps to create them or parasitic capacitances of existing structures are used.
Resistors can be made by using the gate material or by using some lowly doped structure.
Depending on how the various components are made their quality can differ making the (analog) circuit design sometimes more difficult.

- 8,145
- 1
- 14
- 19