Bipolar Junction Transistor and CPU

In summary, CPUs don't use bipolar transistors, they use CMOS. A BJT-based CPU would require constant current in all those logic elements, however, so power consumption would be completely impractical.
  • #1
fredreload
250
6
I am looking at the Bipolar junction transistor, but I cannot seem to correlate with how the design would work for the CPU in terms of 0 and 1s. I am looking mainly at the transistor diagram from Wikipeida https://en.wikipedia.org/wiki/Transistor. Can someone tell me what Vcc, Vin, and Vout are as well as how they are incorporated into the CPU design. You have voltage input from base which controls the flow of a larger current from collector to emitter thanks to the Semiconductor Physics but you would have to manually control Vin for the base supply voltage to turn the larger current on or off as 0 and 1s. Do you use logic gates to control these transistors? Why would modern electronic device needs a few million of these transistors and how are they paired, in a tree structure? I know my questions seem kind of vague but if someone can enlighten me with the answer it would be cool. After all a few million of these transistors fit into a computer in the present day.
 
Engineering news on Phys.org
  • #2
CPUs don't use bipolar transistors, they use CMOS.

It is possible to make the standard logic components out of bipolar transistors (e.g. AND), so a BJT-based CPU would be possible in theory. It would require constant current in all those logic elements, however, so power consumption would be completely impractical.
 
  • #3
A long time ago, they did use discrete bipolar transistors for computers. For example, the famous IBM 360.

Here is an article http://ieeexplore.ieee.org/xpl/login.jsp?tp=&arnumber=5215804&url=http%3A%2F%2Fieeexplore.ieee.org%2Fiel5%2F6%2F5215778%2F05215804.pdf%3Farnumber%3D5215804, from 1967.

In the 1970's I worked with a bipolar Honeywell Sigma 8 computer. It needed 75 tons of air conditioning.
 
  • #4
BJT's (or CMOS FETs) can be used as individual switching devices (on or off). You need to understand how that can be used to do simple logic functions.

These switches are used as the basic components in logic gates (https://en.wikipedia.org/wiki/Logic_gate)

Millions of logic gates are combined to design "Integrated circuits". ( https://en.wikipedia.org/wiki/Integrated_circuit).

Dozens to hundreds of integrated circuits are combined to build computer components (motherboards, power supplies, hard drives, etc).
The processor architecture is one part of the system https://en.wikipedia.org/wiki/Computer_architecture

Your PC power supply supplies 3.3V and 12V which is used by various power control systems in the computer to supply the voltages needed by the individual transistors.

It is a long road from transistor to computer.
 
  • #5
You can still buy BJT logic devices but their corner is pretty narrow today. You can still see it (ECL) used in applications that need low noise logic like cryptographic devices with a requirement for very low operational signal emissions to reduce side-channel attacks and It's still a common interface in high speed video networks as PECL, etc... http://pdfserv.maximintegrated.com/en/an/AN291.pdf
 
  • Like
Likes Jeff Rosenbury
  • #6

I was looking at this video in how Global Foundaries turn a Silicon wafer into CPU. At around 3:50 it is explained that the circuit is etched onto the wafer with a photo lithographic process and tiny transistors are formed, but it doesn't really show how it works at an atomic level. If someone has more information about how Silicon wafer works as a transistor on an atomic level after the doping process, 5:32, and after the copper is wired on Silicon disk (7:00), it would be cool. From what I can see the circuit and copper wire is all layered on top of the original Silicon wafer, that means when the current is running in the copper wire it would run through these Silicon transistors? How do these billions of transistors work together?
Here's the Intel one, it seems to have more steps than Global Foundaries, but without explanations.

P.S. I found the answer, sorry for all the excessive video posts.
 
Last edited:
  • #7
Nevermind I still can't find how CPU utilize every single transistor on the board. I mean the integrated circuit imprinted onto the wafer is bigger than a transistor right? Do they actually shape like it is shown in the Youtube video below?



P.S. Wait I really found it this time, the integrated circuit is built on top of the transistors, I thought it's burned onto it with the lithographic process.
 
Last edited:
  • #8
The integrated circuit consists of millions of transistors connected by wires. It is the combination of the transistors and how they are connected.

You could (and some old gate arrays did this) start with a circuit that consisted of an array of transistors. You could then put down a layer of metal and etch out what you don't want to give you a circuit consisting of transistors connected by metal "wires", analogous to a PCB.

The process starts with a silicon wafer. Many many things happen (hundreds of steps), one after the other, to leave you with millions of transistors connected by wires.
Connecting all those transistors in a way that produces meaningful functional behavior is a MASSIVE expansion of that AND function video.
 
  • #9
meBigGuy said:
The integrated circuit consists of millions of transistors connected by wires. It is the combination of the transistors and how they are connected.

You could (and some old gate arrays did this) start with a circuit that consisted of an array of transistors. You could then put down a layer of metal and etch out what you don't want to give you a circuit consisting of transistors connected by metal "wires", analogous to a PCB.

The process starts with a silicon wafer. Many many things happen (hundreds of steps), one after the other, to leave you with millions of transistors connected by wires.
Connecting all those transistors in a way that produces meaningful functional behavior is a MASSIVE expansion of that AND function video.
Well, not "wires" in the conventional sense. More like conducting channels which are part of the integrated circuit.

https://en.wikipedia.org/wiki/Integrated_circuit_design
 
  • #10
SteamKing said:
Well, not "wires" in the conventional sense. More like conducting channels which are part of the integrated circuit.

Wires in the same way that you can consider PCB traces as wire.
Do you call the innerlayer traces in a PCB "channels"?
Copper or aluminum is deposited and etched and vias are created to wire together the components. Then a layer of insulator is applied, another layer of metal, and more etching (ignoring the steps for via formation)

When I read a summary report for our small 3mm x 3mm 180nm IC's I see 14 meters of "wire" (which blows my mind).

If you choose to not call metal based interconnect "wire" that is your choice. The industry calls it "wire".

Do a search on "ASIC wire length"

http://asic-soc.blogspot.com/2008/10/net-delay.html for example

I have designed ASIC's for a living for many years, and I am still amazed by what it represents. Take this slab of crystallized glass, expose it to chemicals and deposit stuff on it and when you get it back it does almost exactly what the simulators said it would do. Like I said, 9mm^2 with 14 meters of wire (one old 180nm mixed signal example I remembered the numbers for).

The lineup of tools and technology to make that happens is beyond comprehension, from the semiconductor process designers, to the epi reactor and metal deposition machine designers, to the simulation and layout tools, to the functional emulation and verification systems, to the testing and verification flows, and on and on and on.
Everytime an IC comes back and the processor boots first time just like it did on the FPGA based emulation system and data flows as it should, I get this sense of seeing Magic.
 
  • Like
Likes mfb
  • #11
meBigGuy said:
Wires in the same way that you can consider PCB traces as wire.
Do you call the innerlayer traces in a PCB "channels"?
Copper or aluminum is deposited and etched and vias are created to wire together the components. Then a layer of insulator is applied, another layer of metal, and more etching (ignoring the steps for via formation)

When I read a summary report for our small 3mm x 3mm 180nm IC's I see 14 meters of "wire" (which blows my mind).

If you choose to not call metal based interconnect "wire" that is your choice. The industry calls it "wire".
Yes, the industry may call it "wire", but not everyone at PF is in the industry.

If this were ICforum, you would have a point, but there are a lot of people who use PF who are not technical types and may not understand all the nuances of industry jargon.
 
  • #12
SteamKing said:
If this were ICforum, you would have a point, but there are a lot of people who use PF who are not technical types and may not understand all the nuances of industry jargon.

So, let's develop some ambiguous and incorrect jargon of our own to keep them totally confused.

I think PCB traces present a simple and accurate analogy. A technically neutral term would be "metal interconnect". I had a serious issue with the connotations of "conducting channel" which sort of implies other things like something that was dug and filled, or the conducting diffusion channel in a FET, or polysilicon. Also, in an IC, "routing channels" specifically means regions of the chip set aside for groups of metal interconnect.

Do these, or the pictures in post #6 look like "conducting channels"? ( from https://en.wikipedia.org/wiki/Integrated_circuit which BTW, does not even contain the word "channel")
220px-Silicon_chip_3d.png


PS, your link in the post where you present your concept of "conducting channels" also does not contain the words "channel" or "channels"
 

1. What is a bipolar junction transistor (BJT) and how does it work?

A BJT is a type of transistor that consists of three doped semiconductor layers, known as the emitter, base, and collector. It works by using the flow of current between the emitter and collector to control the larger current flowing through the device. This allows for amplification and switching of electronic signals.

2. What is the role of a BJT in a CPU?

A BJT is an essential component of a CPU as it allows for the amplification and switching of electrical signals, which is necessary for processing data and performing calculations. BJTs are used in the logic gates of a CPU to control the flow of data and instructions throughout the system.

3. What are the differences between a BJT and a MOSFET?

BJTs and MOSFETs are both types of transistors, but they have distinct differences. BJTs are current-controlled devices, while MOSFETs are voltage-controlled devices. BJTs have a lower input impedance and higher output impedance, whereas MOSFETs have a higher input impedance and lower output impedance. Additionally, MOSFETs have a higher switching speed and can handle higher power levels compared to BJTs.

4. How does the size of a BJT affect its performance?

The size of a BJT has a significant impact on its performance. Generally, a smaller BJT will have faster switching speeds and lower power dissipation. However, a larger BJT can handle higher currents and voltages. The specific application and design considerations will determine the optimal size for a BJT in a given circuit.

5. What are the advantages and disadvantages of using BJTs in a CPU?

The main advantages of using BJTs in a CPU are their high current-handling capacity and high gain, which allows for efficient amplification and switching of signals. Additionally, BJTs have been extensively studied and are well-understood, making them a reliable component in electronic circuits. However, BJTs also have some disadvantages, including higher power consumption and the potential for thermal runaway under certain conditions. They also require precise biasing and temperature control to maintain stable performance.

Similar threads

  • Electrical Engineering
Replies
15
Views
829
Replies
80
Views
3K
Replies
68
Views
4K
  • Electrical Engineering
Replies
3
Views
797
Replies
5
Views
2K
  • Electrical Engineering
Replies
5
Views
2K
  • Electrical Engineering
Replies
2
Views
1K
Replies
10
Views
1K
  • Electrical Engineering
Replies
11
Views
1K
  • Electrical Engineering
Replies
28
Views
3K
Back
Top