Change the signature of Raw PostCode property

- On IBM systems, typically the progress code is of size 72bytes
  which includes an 8-byte primary reference code along with a
  section of additional hex words that are used during boot hangs
  e.t.c to provide additional debug data.

- Unlike Intel Postcodes, IBM Hosts would use pldm to send these
  progress codes down to BMC.

- The intent behind this commit is to extend the raw progress codes
  structure to accommodate (8 bytes)Primary progress code & a secondary
  code(array[byte]).

- On IBM systems, the secondary code would be filled with the complete
  72-byte buffer. And on Intel systems, the secondary code would be just
  an empty array.

Signed-off-by: Manojkiran Eda <manojkiran.eda@gmail.com>
Change-Id: I5f46823a7ce553c934fe8da15fb85a831b11c214
1 file changed
tree: c969bc591ccb2a881e978b773355c69daf2621b3
  1. com/
  2. gen/
  3. org/
  4. subprojects/
  5. xyz/
  6. .gitignore
  7. LICENSE
  8. MAINTAINERS
  9. meson.build
  10. meson_options.txt
  11. README.md
README.md

phosphor-dbus-interfaces

YAML descriptors of standard D-Bus interfaces. The format is described by the sdbusplus binding generation tool sdbus++.

Building

This project can be built with meson. The typical meson workflow is: meson builddir && ninja -C builddir.

The meson files used to handle the YAML files are automatically generated and found under the gen subdirectory. When adding or removing YAML files, this must be regenerated. This can be done with the helper script found in the gen subdirectory: cd gen && ./regenerate-meson.

Configuration

Only the xyz/openbmc_project interfaces are built by default. Other interfaces can be enabled by meson options:

  • com/ibm - -Ddata_com_ibm=true
  • org/open_power - -Ddata_org_open_power=true

Example: meson builddir -Ddata_com_ibm=true && ninja -C builddir

References