Memory and CPUs on PCI?
-
- Posts: 24
- Joined: Thu Jul 14, 2022 10:46 am
- Libera.chat IRC: json
- Location: Canada
- Contact:
Memory and CPUs on PCI?
Hey all! In our PCI docs, https://wiki.osdev.org/PCI we have RAM (class 5, subclass 0) and Processors (class 0xB) listed as attachable devices. Does that mean one could get a PCI-to-CPU-socket or PCI-to-DDR adapter? I checked online and i couldn't find anything of that sort...
Thanks in advance!
Thanks in advance!
- bellezzasolo
- Member
- Posts: 110
- Joined: Sun Feb 20, 2011 2:01 pm
Re: Memory and CPUs on PCI?
Yes, CPUs can be attatched by PCI. For a real world example, https://en.wikipedia.org/wiki/Xeon_Phi, or of course GPUs, although they show as a graphics card.jaihsonk wrote:Hey all! In our PCI docs, https://wiki.osdev.org/PCI we have RAM (class 5, subclass 0) and Processors (class 0xB) listed as attachable devices. Does that mean one could get a PCI-to-CPU-socket or PCI-to-DDR adapter? I checked online and i couldn't find anything of that sort...
Thanks in advance!
But as far as I can tell, this is used in the world of asymmetric coprocessing. Coprocessing was newfangled when PCI came in, so it was natural to try and design in some forward compatibility.
Whoever said you can't do OS development on Windows?
https://github.com/ChaiSoft/ChaiOS
https://github.com/ChaiSoft/ChaiOS
-
- Posts: 24
- Joined: Thu Jul 14, 2022 10:46 am
- Libera.chat IRC: json
- Location: Canada
- Contact:
Re: Memory and CPUs on PCI?
What about RAM?
Can I take out the regular CPU from my desktop, plug in the Xeon Phi (or another PCI CPU) and have that running by itself?
What should an OS do when it comes across a PCI CPU?
Can I take out the regular CPU from my desktop, plug in the Xeon Phi (or another PCI CPU) and have that running by itself?
What should an OS do when it comes across a PCI CPU?
-
- Posts: 24
- Joined: Thu Jul 14, 2022 10:46 am
- Libera.chat IRC: json
- Location: Canada
- Contact:
Re: Memory and CPUs on PCI?
Also, Can a PCI CPU and a regular CPU run simultaneously? If so, would that be considered a supercomputer?
-
- Member
- Posts: 424
- Joined: Tue Apr 03, 2018 2:44 am
Re: Memory and CPUs on PCI?
Probably not. PCs are designed to bootstrap using the main processor.jaihsonk wrote:What about RAM?
Can I take out the regular CPU from my desktop, plug in the Xeon Phi (or another PCI CPU) and have that running by itself?
Some platforms do something similar though. The RaspberryPi, for example, is bootstrapped by the GPU, which then starts the "main" CPU(s) to run your OS. But this isn't the mainstream way of doing things, certainly on anything like a PC or similar machine.
But then this depends on where you draw the line. Some Intel chipsets contain a complete embedded computer, running a private copy of Minix OS, to run the Management Engine, completely seperately to the main CPU. I'm not sure if this Minix gets control before your main CPU is booted and is involved in booting the CPU, in a manner similar to the RPi.
This video might answer that (I've not watched it yet.)
Absent a specific example, it's hard to say, other than to ignore the PCI card if the OS doesn't have a driver for it.jaihsonk wrote: What should an OS do when it comes across a PCI CPU?
-
- Member
- Posts: 5512
- Joined: Mon Mar 25, 2013 7:01 pm
Re: Memory and CPUs on PCI?
PCI is old enough that class 0x05 may have originally been intended for RAM expansion cards, but nowadays it's only used as a way to access the chipset's memory controller.jaihsonk wrote:What about RAM?
As far as I know, no PCI RAM expansion cards exist.
No. A PCI CPU can't initialize the rest of the PC.jaihsonk wrote:Can I take out the regular CPU from my desktop, plug in the Xeon Phi (or another PCI CPU) and have that running by itself?
Ask the user to send you documentation so you can write a driver for it.jaihsonk wrote:What should an OS do when it comes across a PCI CPU?
Yes.jaihsonk wrote:Also, Can a PCI CPU and a regular CPU run simultaneously?
No. Regular PC CPUs are already made of multiple smaller CPUs stuck together, so adding one more doesn't make that big of a difference.jaihsonk wrote:If so, would that be considered a supercomputer?
- bellezzasolo
- Member
- Posts: 110
- Joined: Sun Feb 20, 2011 2:01 pm
Re: Memory and CPUs on PCI?
To be clear, a Xeon Phi can have 72 cores.Octocontrabass wrote:No. Regular PC CPUs are already made of multiple smaller CPUs stuck together, so adding one more doesn't make that big of a difference.jaihsonk wrote:If so, would that be considered a supercomputer?
Consider a server board, the SUPERMICRO MBD-H8QG6+-F-O
That'll take 4x 16-core AMD Opteron 6300s, for a total of 64 cores. Now add a Xeon Phi, or two. That's a lot of cores!
But this is still not supercomputer territory, not these days.
Whoever said you can't do OS development on Windows?
https://github.com/ChaiSoft/ChaiOS
https://github.com/ChaiSoft/ChaiOS
-
- Posts: 24
- Joined: Thu Jul 14, 2022 10:46 am
- Libera.chat IRC: json
- Location: Canada
- Contact:
Re: Memory and CPUs on PCI?
OK I had the old definition of a supercomputer as being 2+ processors working off the same memory.
Thanks for your help
Thanks for your help
Re: Memory and CPUs on PCI?
I want a motherboard like that for experimentation.bellezzasolo wrote:To be clear, a Xeon Phi can have 72 cores.Octocontrabass wrote:No. Regular PC CPUs are already made of multiple smaller CPUs stuck together, so adding one more doesn't make that big of a difference.jaihsonk wrote:If so, would that be considered a supercomputer?
Consider a server board, the SUPERMICRO MBD-H8QG6+-F-O
That'll take 4x 16-core AMD Opteron 6300s, for a total of 64 cores. Now add a Xeon Phi, or two. That's a lot of cores!
But this is still not supercomputer territory, not these days.
When I actually researched for a new "super-computer", I looked at multi-socket motherboards, but in the end I concluded that the high cost didn't seem to correlate well with performance, so I built my system around a single 12-core AMD thread ripper CPU with 128 GB of memory instead.
-
- Posts: 24
- Joined: Thu Jul 14, 2022 10:46 am
- Libera.chat IRC: json
- Location: Canada
- Contact:
Re: Memory and CPUs on PCI?
I'm having a hard time understanding PCI. I'm not a fast learner and I'm not good with docs lol Does anyone have a good implementation I can study?
Which PCI slot does CONFIG_ADDRESS and CONFIG_DATA address/read from? Or am I talking to some PCI master controller?
Where can I read the PCI device structure from? Or is the structure composed of data from multiple ports?
Sorry if these are foolish questions, I understand things better when people and real examples (as opposed to documents) tell me how things work
Which PCI slot does CONFIG_ADDRESS and CONFIG_DATA address/read from? Or am I talking to some PCI master controller?
Where can I read the PCI device structure from? Or is the structure composed of data from multiple ports?
Sorry if these are foolish questions, I understand things better when people and real examples (as opposed to documents) tell me how things work
-
- Member
- Posts: 5512
- Joined: Mon Mar 25, 2013 7:01 pm
Re: Memory and CPUs on PCI?
You're talking to "some PCI master controller" - it's called a PCI host bridge. You write an address to CONFIG_ADDRESS and the PCI host bridge connects that address to CONFIG_DATA for you to read and write. (The address selects the slot, among other things.)jaihsonk wrote:Which PCI slot does CONFIG_ADDRESS and CONFIG_DATA address/read from? Or am I talking to some PCI master controller?
You read it from CONFIG_DATA.jaihsonk wrote:Where can I read the PCI device structure from? Or is the structure composed of data from multiple ports?