Difference between revisions of "OpenPOWER Firmware"

From RCS Wiki
Jump to navigation Jump to search
(add ref)
(19 intermediate revisions by 3 users not shown)
Line 1: Line 1:
'''OpenPOWER Firmware''' is an open-source alternative to OpenFirmware and proprietary IBM firmware used on Power machines.<ref>Kerr, Jeremy. [https://lca2015.linux.org.au/schedule/30305/view_talk OpenPOWER: building an open-source software stack from bare metal]. LCA 2015</ref><ref>Smith, Stewart. [http://lca2016.linux.org.au/schedule/30215/view_talk Adventures in OpenPOWER Firmware]. LCA 2016</ref>
+
'''OpenPOWER Firmware''' is an open-source alternative to OpenFirmware and proprietary IBM firmware used on Power machines.<ref>Kerr, Jeremy. [https://lca2015.linux.org.au/schedule/30305/view_talk OpenPOWER: building an open-source software stack from bare metal]. LCA 2015 - [https://www.youtube.com/watch?v=DigNr08GVss video on YouTube]</ref> It is a general name for many separate pieces of software used to start recent Power Architecture chips made by IBM.<ref>Smith, Stewart. [http://lca2016.linux.org.au/schedule/30215/view_talk Adventures in OpenPOWER Firmware]. LCA 2016 - [https://www.youtube.com/watch?v=a4XGvssR-ag video on YouTube]</ref>
 +
 
 +
[[OpenBMC|OpenBMC]] is a separate project that creates firmware for the [[BMC|Baseboard Management Controller]].
 +
 
 +
== Components ==
 +
 
 +
{| class="wikitable sortable"
 +
! Firmware
 +
! Executed on
 +
! Loaded from
 +
! Function
 +
|-
 +
| [[OTPROM|OTPROM]]
 +
| SBE core (on CPU chip)
 +
| eFuses
 +
[https://git.raptorcs.com/git/talos-sbe/tree/src/boot/otprom_init.S Source]
 +
|
 +
* very first instructions executed
 +
* loads SBE firmware from SEEPROM into SBE core
 +
|-
 +
| [[Self-Boot Engine|Self-Boot Engine]] (SBE) firmware
 +
| SBE core (on CPU chip)
 +
| SBE SEEPROM
 +
[https://git.raptorcs.com/git/talos-sbe/tree/ Source]
 +
|
 +
* initialises CPU core
 +
* loads Hostboot Bootloader
 +
* backup copy stored on PNOR SPI Flash, used to stage SBE firmware updates
 +
|-
 +
| Hostboot Bootloader (HBBL)
 +
| CPU core
 +
| SBE SEEPROM
 +
[https://git.raptorcs.com/git/talos-hostboot/tree/src/bootloader Source]
 +
|
 +
* first code which runs on main CPU cores; loads and executes rest of Hostboot
 +
* responsible for verifying integrity of Hostboot when secure boot is enabled, so this part of Hostboot is stored on the SBE SEEPROM, even though its source code lives inside the Hostboot repository
 +
|-
 +
| [[Hostboot|Hostboot]]
 +
| CPU core
 +
| PNOR SPI Flash
 +
[https://git.raptorcs.com/git/talos-hostboot/tree/ Source]
 +
|
 +
* initialises DRAM (memory training, zeroing of ECC memory, etc.), processor bus, memory buffers
 +
* finally, chainloads Skiboot
 +
|-
 +
| [[Skiboot|Skiboot]]
 +
| CPU core
 +
| PNOR SPI Flash
 +
[https://git.raptorcs.com/git/talos-skiboot/tree/ Source]
 +
|
 +
* initialises PCIe controllers, device trees, real time clock, NVlink, sensors
 +
* loads OCC firmware and starts OCC running
 +
* implements [[OpenPOWER Abstraction Layer|OpenPOWER Abstraction Layer]] (OPAL) for OS runtime services; remains resident in RAM after OS boot
 +
* finally, chainloads Skiroot
 +
|-
 +
| [[Skiroot]]/[[Petitboot|Petitboot]]
 +
| CPU core
 +
| PNOR SPI Flash
 +
[https://git.raptorcs.com/git/talos-petitboot/ Source]
 +
|
 +
* [[Skiroot]] refers to the Linux kernel and initramfs which runs from RAM
 +
* Contains [[Petitboot]], a userspace application which provides a boot menu
 +
* [[Petitboot]] loads operating system via kexec
 +
|-
 +
| [[On-Chip Controller|On-Chip Controller]] (OCC) firmware
 +
| OCC core (on CPU chip)
 +
| PNOR SPI Flash
 +
[https://git.raptorcs.com/git/talos-occ/tree/ Source]
 +
|
 +
* thermal regulation of CPU chip, turbo frequency selection, voltage ID selection, power measurement, etc.
 +
|-
 +
| [[CME]] [[HCODE]]
 +
| [[CME]] cores (on CPU chip)
 +
| PNOR SPI Flash
 +
[https://git.raptorcs.com/git/talos-hcode/tree/ Source]
 +
|
 +
* The [[Core Management Engine|Core Management Engines]] are auxillary cores used for power management purposes. They are ultimately responsible to the OCC. There is one CME for every two SMT4 cores.
 +
|-
 +
| [[SGPE]] and [[PGPE]] [[HCODE]]
 +
| [[GPE|General Purpose Engine]] cores (on CPU chip)
 +
| PNOR SPI Flash
 +
[https://git.raptorcs.com/git/talos-hcode/tree/ Source]
 +
|
 +
* Auxillary cores which assist, and are managed by, the OCC.
 +
* The [[SGPE|Stop GPEs]] (SGPEs) are part of the mechanism for resuming execution after a STOP instruction is executed (which is a Power ISA instruction which halts the processor).
 +
* The [[PGPE|Pstate GPEs]] (PGPEs) perform pstate management.
 +
|-
 +
| [[IOPPE]] [[HCODE]]
 +
| [[IOPPE]] cores (on CPU chip)
 +
| PNOR SPI Flash
 +
[https://git.raptorcs.com/git/talos-hcode/tree/ Source]
 +
|
 +
* Involved in CAPI support.
 +
|- style="background-color:#e0e0e0;"
 +
| [[OpenBMC]]
 +
| BMC chip
 +
| BMC SPI Flash
 +
[https://git.raptorcs.com/git/talos-openbmc/tree/ Source]
 +
|
 +
<small>(This is not part of OpenPOWER firmware, but is mentioned to give a picture of the division of responsibilities. Not all POWER9 systems use a BMC; IBM systems use a [[FSP]].)</small>
 +
* Turns system power rails on and off to energise and deenergise CPU modules, RAM, etc.
 +
* Sends commands to CPU modules over [[FSI]] to commence booting.
 +
* Provides access to PNOR SPI flash containing host firmware via LPC.
 +
* Receives core temperature information from the [[OCC]]; decides and sets fan speeds.
 +
* Powers off system if [[OCC]] indicates catastrophic temperature.
 +
|}
 +
 
 +
[[File:P9_ppe_instances.png|thumb|Diagram of main and auxillary cores on [[POWER9]]]]
 +
 
 +
== Process ==
 +
 
 +
# SBE executes [[OTPROM|OTPROM]], which loads SEEPROM firmware into SBE PIBMEM
 +
# SBE executes SEEPROM firmware
 +
# [[OpenBMC|OpenBMC]] uses [[FSI|FSI]] interface to start SBE
 +
# [[Self-Boot Engine|SBE]] loads Hostboot 
 +
# [[Hostboot|Hostboot]] loads Skiboot
 +
# [[Skiboot|Skiboot]] loads [[OCC]], [[Skiroot]]
 +
# [[Petitboot|Petitboot]] application within [[Skiroot]] loads the operating system
 +
# OS talks to firmware through [[OpenPOWER Abstraction Layer|OPAL]]
 +
 
 +
== References ==
 +
 
 +
<references/>
 +
 
 +
== See also ==
 +
 
 +
* [[OpenBMC|OpenBMC]]
 +
* [[OpenPOWER|OpenPOWER]]
 +
 
 +
== External Links ==
 +
 
 +
* [https://github.com/open-power/docs OpenPOWER firmware source code on GitHub]
 +
* '''For a better understanding of OpenPOWER firmware and boot processes, see:'''
 +
** [https://github.com/open-power/docs/blob/master/hostboot/HostBoot_PG.md Overview of Boot Process]
 +
** [https://github.com/open-power/docs/blob/master/hostboot/P9_Boot_Flow_OpenPOWER.pdf P9 Boot Flow]
 +
** [https://github.com/open-power/docs More OpenPOWER firmware documentation]
 +
** [https://blog.jms.id.au/2015/07/openpower-firmware-stack/ OpenPOWER Firmware Stack] - Joel's Weblog
 +
 
 +
[[Category:Firmware]]

Revision as of 13:35, 2 August 2018

OpenPOWER Firmware is an open-source alternative to OpenFirmware and proprietary IBM firmware used on Power machines.[1] It is a general name for many separate pieces of software used to start recent Power Architecture chips made by IBM.[2]

OpenBMC is a separate project that creates firmware for the Baseboard Management Controller.

Components

Firmware Executed on Loaded from Function
OTPROM SBE core (on CPU chip) eFuses

Source

  • very first instructions executed
  • loads SBE firmware from SEEPROM into SBE core
Self-Boot Engine (SBE) firmware SBE core (on CPU chip) SBE SEEPROM

Source

  • initialises CPU core
  • loads Hostboot Bootloader
  • backup copy stored on PNOR SPI Flash, used to stage SBE firmware updates
Hostboot Bootloader (HBBL) CPU core SBE SEEPROM

Source

  • first code which runs on main CPU cores; loads and executes rest of Hostboot
  • responsible for verifying integrity of Hostboot when secure boot is enabled, so this part of Hostboot is stored on the SBE SEEPROM, even though its source code lives inside the Hostboot repository
Hostboot CPU core PNOR SPI Flash

Source

  • initialises DRAM (memory training, zeroing of ECC memory, etc.), processor bus, memory buffers
  • finally, chainloads Skiboot
Skiboot CPU core PNOR SPI Flash

Source

  • initialises PCIe controllers, device trees, real time clock, NVlink, sensors
  • loads OCC firmware and starts OCC running
  • implements OpenPOWER Abstraction Layer (OPAL) for OS runtime services; remains resident in RAM after OS boot
  • finally, chainloads Skiroot
Skiroot/Petitboot CPU core PNOR SPI Flash

Source

  • Skiroot refers to the Linux kernel and initramfs which runs from RAM
  • Contains Petitboot, a userspace application which provides a boot menu
  • Petitboot loads operating system via kexec
On-Chip Controller (OCC) firmware OCC core (on CPU chip) PNOR SPI Flash

Source

  • thermal regulation of CPU chip, turbo frequency selection, voltage ID selection, power measurement, etc.
CME HCODE CME cores (on CPU chip) PNOR SPI Flash

Source

  • The Core Management Engines are auxillary cores used for power management purposes. They are ultimately responsible to the OCC. There is one CME for every two SMT4 cores.
SGPE and PGPE HCODE General Purpose Engine cores (on CPU chip) PNOR SPI Flash

Source

  • Auxillary cores which assist, and are managed by, the OCC.
  • The Stop GPEs (SGPEs) are part of the mechanism for resuming execution after a STOP instruction is executed (which is a Power ISA instruction which halts the processor).
  • The Pstate GPEs (PGPEs) perform pstate management.
IOPPE HCODE IOPPE cores (on CPU chip) PNOR SPI Flash

Source

  • Involved in CAPI support.
OpenBMC BMC chip BMC SPI Flash

Source

(This is not part of OpenPOWER firmware, but is mentioned to give a picture of the division of responsibilities. Not all POWER9 systems use a BMC; IBM systems use a FSP.)

  • Turns system power rails on and off to energise and deenergise CPU modules, RAM, etc.
  • Sends commands to CPU modules over FSI to commence booting.
  • Provides access to PNOR SPI flash containing host firmware via LPC.
  • Receives core temperature information from the OCC; decides and sets fan speeds.
  • Powers off system if OCC indicates catastrophic temperature.
Diagram of main and auxillary cores on POWER9

Process

  1. SBE executes OTPROM, which loads SEEPROM firmware into SBE PIBMEM
  2. SBE executes SEEPROM firmware
  3. OpenBMC uses FSI interface to start SBE
  4. SBE loads Hostboot
  5. Hostboot loads Skiboot
  6. Skiboot loads OCC, Skiroot
  7. Petitboot application within Skiroot loads the operating system
  8. OS talks to firmware through OPAL

References

See also

External Links