Must a CPU have a GPU if the motherboard provides a display port (when there isn't any separate video card)?

38

4

There is such a configuration: MSI A320M PRO-M2 V2 + AMD Ryzen 5 1400 BOX and there isn't any separate video card. When the PC is switched on, the monitor shows nothing. The MSI tech support said:

There is no GPU in the CPU Ryzen 5 1400, and the onboard VGA port cannot work with this CPU. It is necessary to install a PCIe graphics card.

And added that

Whether it is Intel motherboard or AMD motherboard, the onboard integrated GPU is in the CPU, not in motherboard. The motherboard only provides the display port. There is no GPU in the Ryzen Summit Ridge CPU; only Raven Ridge and Bristol Ridge CPUs support a GPU.

What I don't understand is that I have another configuration, ASRock 960GC-GS FX + AMD Phenom(tm) II X4 810. Again there is no separate video card. As I found out, AMD Phenom(tm) II X4 810 doesn't have any GPU. But the video works and this question I post using this configuration. How can this be explained?

Pavel

Posted 2019-06-11T08:51:20.790

Reputation: 445

4Your Ryzen system probably could boot headless, as a server with no graphics output. (i.e. not having any graphics hardware at all probably doesn't stop it from booting. But it makes it hard to configure the BIOS.) – Peter Cordes – 2019-06-11T17:25:50.773

24

FWIW, the specs of the motherboards seem to be rather clearly written on this. The 960GC-GS FX says "Graphics: Integrated AMD Radeon 3000 graphics" while the A320M PRO-M2 V2 says "Onboard graphics: (...) Only support when using Ryzen ™ with Radeon ™ Vega Graphics/ Athlon ™ with Radeon ™ Vega Graphics and A-series processors."

– ilkkachu – 2019-06-11T17:43:43.773

<pedant>CPUs and GPUs are different components, AFAIK; neither contains the other, but they may both be present on the same board.</pedant> – Agi Hammerthief – 2019-06-13T06:59:30.110

11@AgiHammerthief: You're wrong; many modern CPU's do in fact contain an integrated GPU. That's the exact case we're dealing with here. – MSalters – 2019-06-13T09:20:40.873

4I once had a disagreement elsewhere on what exactly is a “CPU”. The other person argued that basically only the ALU is the CPU, denying cache, PCIe lanes, ... are part of it. My takeaway: It’s pointless to argue about this. – Daniel B – 2019-06-13T16:43:25.263

The old Cyrix MediaGX processor family was claimed to have integrated graphics. As it turned out, the "companion chip" installed on all MediaGX-compatible motherboards actually contained the GPU. This was back before integrated graphics became ubiquitous. – Kriston – 2019-06-13T20:19:20.033

@DanielB They were partially correct. PCIe lanes (assuming you're talking about the PCH) are not part of the CPU, but part of the chipset, the physical chip that you mount onto a socket. That chipset contains many components, including the CPU(s), the shared cache, the PCH, ICH, MCH, CSME, integrated GPU, etc. However it's not correct that only the ALU makes up the CPU. It's been a long time since the physical chipset could be called a plain CPU. – forest – 2019-06-15T08:06:38.240

Answers

110

Today, motherboard-integrated graphics are basically gone (in the consumer sector, anyway). It’s either CPU-integrated graphics or dedicated graphics. Both Intel and AMD still sell CPUs without integrated graphics, even with the same socket. If you install one of these, you won’t be able to use the display connectors on the motherboard.

In the past, CPUs did not have integrated graphics at all. Instead, the graphics unit was integrated with the motherboard (typically directly with the chipset). Your older Phenom II configuration comes from this time. It has motherboard-integrated graphics.

Daniel B

Posted 2019-06-11T08:51:20.790

Reputation: 40 502

3"In the past..." I'd appreciate it if you can elaborate a little bit on that! – Ahmed Abdelhameed – 2019-06-13T01:44:23.387

2To clarify further. The AMD 760G Northbridge chipset on this motherboard has a build-in AMD Radeon 3000 series GPU. It is the big chip under the heat-sink in the middle of the board. – Tonny – 2019-06-13T13:39:50.073

2

@AhmedAbdelhameed In the non-so-distant past, Intel's first processors with integrated graphics were the from the Westmere microarchitecture of 2010 (overview), and AMD's first processors with integrated graphics were from 2011 (overview)

– Chris O – 2019-06-13T23:38:17.600

If memory serves, on intel - the integrated GPU shared the AGP or PCIe port meant for the video card, so you couldn't use both at once. This only changed with sandy bridge with its on die GPU – Journeyman Geek – 2019-06-14T02:33:24.950

Some specific years for "today" and "in the past" would help. – OrangeDog – 2019-06-14T10:37:03.783

2There are no specific years. It varies wildly across CPU makers and model lines. – Daniel B – 2019-06-14T10:44:24.080

Intel introduced their first mainstream desktop/laptop CPUs with integrated graphics in early 2010, but the initial models were only dual core and so mostly confined to laptops and low end desktops. In early 2011 Intel released their first quad core CPUs with integrated graphics and later that year they removed the old core 2 products (which had used chipset based graphics) from their official price lists. – plugwash – 2019-08-19T03:14:11.237

AMD were slightly later, releasing their first mainstream desktop/laptop APUs in mid 2011. Afaict by 2012 or so if you bought a computer with integrated graphics and it wasn't old stock you were probablly getting CPU based graphics rather than chipset based graphics. – plugwash – 2019-08-19T03:33:08.013

10

If you want your monitor to work there has to be a graphics controller in the system somewhere. That graphics controller needs fast reliable access to a section of RAM to use as a frame buffer. Even if you don't want your monitor to work you may well find your motherboard won't boot without a graphics controller. A graphics controller is a pretty key part of the traditional PC hardware though I see reports that the dependency may have weakened in recent years.

Depending on the system, the graphics controller may be in a few different places.

  • A separate device with its own dedicated ram.
  • Integrated as part of the CPU
  • Integrated as part of the chipset
  • Integrated as part of the management controller (note that such graphics controllers are intended to provide a graphics output for installation and initial setup, their performance/features are terrible by modern standards).

On AMD AM2/2+/3/3+ and Intel LGA775, the onboard graphics were normally provided by the northbridge. So they would work with any CPU the motherboard works with.

On Intel LGA1366 and LGA2xxx, there is no provision for integrated graphics in either the CPU or the chipset. Most boards with these sockets will not have onboard graphics at all. The main exception being server boards that have the graphics controller integrated with the management chipset.

On Intel LGA115x and AMD AM4, the graphics controller is integrated with the CPU and not all CPU models offer it. So generally on boards with these sockets, if you want to use the onboard graphics you have to use a CPU that provides a graphics controller. The exception again being some server boards that have a graphics controller as part of the management chipset.

plugwash

Posted 2019-06-11T08:51:20.790

Reputation: 4 587

5There has to be a graphics controller in the system somewhere - wrong. headless systems needs no such thing. – hanshenrik – 2019-06-13T08:52:46.277

2Not what the OP cares about, but IIRC, 'back in the day' CPU of the the Sinclair ZX80 did all the graphics processing and did all the other computations during the retrace time. So "integrated as part of the CPU" could even mean "just software". – UnconditionallyReinstateMonica – 2019-06-13T11:47:54.627

@mickeyf: Yeah, early PC video cards were also just dumb framebuffers that you had to draw on using the CPU. But the video hardware does need to read video RAM in scan order; this is usually not practical for software (although https://en.wikipedia.org/wiki/Video_display_controller#Types says some early systems did get bytes from the CPU and shifted them 1 bit at a time, presumably for 1bpp graphics). So you need some hardware dedicated to graphics, including generating memory loads. And also producing the right electrical signals on the right pins.

– Peter Cordes – 2019-06-13T20:45:32.547

-2

the MSI tech support is wrong, the system does not need a GPU at all, at least Linux systems can run completely headless, and a quick google search suggests that "Windows Nano Server" can do the same.

i wouldn't be surprised if windows Desktop OS's requires a GPU, like Windows 10 Home. also note that there are some linux systems that requires a GPU and refuse to install without one, for example Manjaro Linux requires a GPU. (the installer refuse to start without one)

but no, computers are not required to have a GPU to function. i am managing several headless Linux Servers that doesn't have any GPU at all, which are managed over SSH.

(obviously non-exhaustive) examples of Operating Systems that can run without a GPU:

Arch Linux
Debian Linux
Ubuntu Linux (at least Ubuntu Server Edition, idk about the desktop distribution)
Windows Nano Server

(also if you need to run desktop programs on a headless system in Linux, you can install x.org with the xserver-xorg-video-dummy driver, which emulates graphics memory with your normal system memory, for example to get a LXDE-Lubuntu system running without a GPU on Ubuntu Server, run sudo apt install xserver-xorg xserver-xorg-video-dummy lxdm lxde-core x11vnc, and save this config file as /etc/X11/xorg.conf and upon reboot a desktop IS running in-ram, which can be accessed over VNC with x11vnc server started as sudo x11vnc -display :0 -auth /var/run/lxdm/lxdm-:0.auth which in turn are perfectly capable of running desktop programs like Firefox, LibreOffice, and VMWare Player, thanks to the emulated GPU of xserver-xorg-video-dummy. )

hanshenrik

Posted 2019-06-11T08:51:20.790

Reputation: 447

5-1. Where did MSI tech support say that system needs GPU to boot/work/whatever? It's clear that OP wants to connect a display to this PC, not run it headless. You are technically correct, but your answer is completely out of place and not helpful at all. – gronostaj – 2019-06-13T10:26:06.040

@gronostaj the answer to the question Must a CPU have a GPU if the motherboard provides a display port (when there isn't any separate video card)? is no. and the MSI tech support said It is necessary to install a PCIe graphics card., and.. no, that's not really necessary. – hanshenrik – 2019-06-13T11:10:28.500

5OP is confused because they thought that if their Ryzen fits the socket and the motherboard has a DisplayPort, they can simply connect a display and it will work. They are surprised that it didn't, hence the question. The answer to OP's actual problem is: not all fitting CPUs have an iGPU and in these cases you need a dedicated one to drive a display. As I said, your answer is factually correct, but it doesn't solve their problem. They don't intend to run this machine headlessly, if that was the case, there would be no confusion in the 1st place. They wouldn't even notice that DP doesn't work. – gronostaj – 2019-06-13T12:01:18.753

4Regarding MSI tech support's response, you've missed the "and the onboard VGA port cannot work with this CPU" part. That's the essence of this issue: motherboard's video outputs don't work because there's no iGPU. You're pulling the next sequence out of context. That person was right that "it is necessary to install a PCIe graphics card" to have functional video outputs, which was the goal. – gronostaj – 2019-06-13T12:03:47.570

2MSI tech support wasn't wrong; telling the OP about the concept of headless systems would be unhelpful when that's clearly not what they want. It's the OP that ended up with an incorrect statement (in their question here) that leaves out the "if you want graphics output at all" part. If you edit your answer to account for that, it would be potentially useful to cover that aspect of how the question was phrased. – Peter Cordes – 2019-06-13T20:49:37.397