diff options
Diffstat (limited to 'roms/skiboot/doc/opal-api/opal-prd-msg-113.rst')
-rw-r--r-- | roms/skiboot/doc/opal-api/opal-prd-msg-113.rst | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/roms/skiboot/doc/opal-api/opal-prd-msg-113.rst b/roms/skiboot/doc/opal-api/opal-prd-msg-113.rst new file mode 100644 index 000000000..91d30aca7 --- /dev/null +++ b/roms/skiboot/doc/opal-api/opal-prd-msg-113.rst @@ -0,0 +1,19 @@ +.. _OPAL_PRD_MSG: + +OPAL_PRD_MSG +============ + +.. code-block:: c + + #define OPAL_PRD_MSG 113 + + int64_t opal_prd_msg(struct opal_prd_msg *msg); + +The OPAL_PRD_MSG call is used to pass a struct opal_prd_msg from the HBRT +code into opal, and is paired with the :ref:`OPAL_PRD_MSG` message type. + +Parameters +---------- + +``struct opal_msg *msg`` + Passes an opal_msg, of type OPAL_PRD_MSG, from the OS to OPAL. |