Base Voltage Rails For GPUs Explained and MediaWiki:Citizen.css: Difference between pages

From Repair Wiki
(Difference between pages)
No edit summary
 
No edit summary
 
Line 1: Line 1:
{{Explanatory Guide
.infobox {
|Device=Computer Graphics Cards
  margin-bottom: var( --space-md );
|Type=Circuit
  background: var( --color-surface-2 );
|Difficulty=1. Easy
  border-radius: var( --border-radius--medium );
}}
  display: block;
This page explains base voltages on [[Desktop_Computers#Graphics_Cards_(GPU)|Desktop Graphics Cards]]. While most cards work in the same principle, some might have different design. This page should be applicable on most consumer GPUs.
  max-width: 30em;
  border-collapse: collapse;
  float: right;
  clear: right;
}


'''Base Voltage Rails are the rails that get supplied to the card externally.'''
.infobox tbody tr {
  border-top: 1px solid var(--border-color-base);
}


==12V_BUS and 12V_EXT==
.infobox tbody tr:nth-child(1) { border: none; }
On most Nvidia GPUs, the 12V_Bus is used to power the first 2 phases for the Vcore and every other minor rail such as 5V, meaning powering on the card without the external 8-pin connectors will put the card in a bootable state which shows a text saying "please power off the computer and connect the external 8-pin connectors". The 12V_Ext is used to feed the rest of the Vcore phases. On most AMD GPUs however, the card will not turn on at all if the 8-pin connector isn't inserted as it is used as a signal to power on some ICs.
.infobox tbody tr * {
[[File:PCIe Slot Pinout.jpg|none|thumb|PCIe slot pinout (Figure 1)]]
  vertical-align: middle;
[[File:8 and 6 pin PCI-E connectors.jpg|none|thumb|6 and 8 pin PCIe power connector (Figure 2)]]
  padding: var(--space-sm) 0;
[[File:RX 590 Nitro+.jpg|none|thumb|709x709px|RX 590 Nitro+ PCB (Figure 3) ''From of TechPowerUp'']]
}
From Figure 1, you can see the card gets its 12V_Bus from first 3 pins from the front and 2nd and 3rd pin from the back, they're all connected together and usually pass through a 0Ohm resistor that acts as a fuse or in some cards an actual fuse before going through the card (Figure 3).
.infobox tbody tr th {
  width: 40%;
  text-align: left;
  padding-left: 1em;
}


In case of a short, those fuses are the first to go out to protect the card. Sometimes they can malfunction and either have a high resistance where the 12v drops to a lower voltage or simply blow and become open.
.infobox tbody tr td {
 
  width: 60%;
Make sure to check both ends of the fuse for a short to ground before replacing, it's usually rare that they blow up for no reason.
  padding-right: 1em;
 
}
The fuses are usually the 10-15Amp variety.
 
In Figure 2, the 4th pin for the 8-pin PCIe connector is used for detection while for the 6-pin connector, the 5th is used for that purpose. When those detection pins are shorted to GND (i.e. when you connect the connector itself), the card thinks that the connector is plugged in.
 
== 3.3V_BUS==
[[File:GTX 1080.jpg|none|thumb|711x711px|GTX 1080 Ref PCB (Figure 4) ''From TechPowerUp'']]
The 3.3V rail comes only from the PCIe connector, 8th pin from the front, and 9-10th pins from the back. 3.3V is used as the enable voltage for some ICs and as Voltage In for others e.g. the bios chip. The card does not pull a lot of current through this rail so it does not usually come with a fuse, shunt resistor or a coil but sometimes it does as shown in Figure 4.

Revision as of 15:08, 12 November 2023

.infobox {
  margin-bottom: var( --space-md );
  background: var( --color-surface-2 );
  border-radius: var( --border-radius--medium );
  display: block;
  max-width: 30em;
  border-collapse: collapse;
  float: right;
  clear: right;
}

.infobox tbody tr {
  border-top: 1px solid var(--border-color-base);
}

.infobox tbody tr:nth-child(1) { border: none; }
.infobox tbody tr * {
  vertical-align: middle;
  padding: var(--space-sm) 0;
}
.infobox tbody tr th {
  width: 40%;
  text-align: left;
  padding-left: 1em;
}

.infobox tbody tr td {
  width: 60%;
  padding-right: 1em;
}