diff options
author | Stewart Smith <stewart@linux.ibm.com> | 2019-05-31 16:12:55 +1000 |
---|---|---|
committer | Stewart Smith <stewart@linux.ibm.com> | 2019-06-03 10:19:59 +1000 |
commit | c78419dca251eb9a697d36646fa82baa442a5263 (patch) | |
tree | 617f6a00ff485340a87cfb067d6996b569d3ddc6 | |
parent | 1fbddac373ef1439f13c2dd825b112c865f1e1d5 (diff) | |
download | skiboot-c78419dca251eb9a697d36646fa82baa442a5263.zip skiboot-c78419dca251eb9a697d36646fa82baa442a5263.tar.gz skiboot-c78419dca251eb9a697d36646fa82baa442a5263.tar.bz2 |
doc: flesh out and prettify OPAL_LPC_(READ|WRITE)
Signed-off-by: Stewart Smith <stewart@linux.ibm.com>
-rw-r--r-- | doc/opal-api/opal-lpc-read-write-67-68.rst | 92 |
1 files changed, 62 insertions, 30 deletions
diff --git a/doc/opal-api/opal-lpc-read-write-67-68.rst b/doc/opal-api/opal-lpc-read-write-67-68.rst index 7841474..52d3778 100644 --- a/doc/opal-api/opal-lpc-read-write-67-68.rst +++ b/doc/opal-api/opal-lpc-read-write-67-68.rst @@ -1,11 +1,30 @@ +.. _OPAL_LPC_READ: + OPAL_LPC_READ ============= -:: - This function related to Low Pin Count (LPC) bus. This function reads the - data from IDSEL register for ``chip_id``, which has LPC information. - From ``addr`` for ``addr_type`` with read size ``sz`` bytes in to a - variable named ``data``. +.. code-block:: c + + #define OPAL_LPC_READ 67 + + /* + * Address cycle types for LPC accesses. These also correspond + * to the content of the first cell of the "reg" property for + * device nodes on the LPC bus + */ + enum OpalLPCAddressType { + OPAL_LPC_MEM = 0, + OPAL_LPC_IO = 1, + OPAL_LPC_FW = 2, + }; + + int64_t opal_lpc_read(uint32_t chip_id, enum OpalLPCAddressType addr_type, + uint32_t addr, uint32_t *data, uint32_t sz); + +This function related to Low Pin Count (LPC) bus. This function reads the +data from IDSEL register for ``chip_id``, which has LPC information. +From ``addr`` for ``addr_type`` with read size ``sz`` bytes in to a +variable named ``data``. Parameters ---------- @@ -13,40 +32,56 @@ Parameters ``chip_id`` The ``chip_id`` parameter contains value of the chip number identified at boot time. - ``addr_type`` The ``addr_type`` is one of the LPC supported address types. - Supported address types are - - LPC memory, - LPC IO and - LPC firmware. + Supported address types are: + + - LPC memory, + - LPC IO and + - LPC firmware. ``addr`` The ``addr`` from which the data has to be read. - ``data`` The ``data`` will be used to store the read data. - ``sz`` How many ``sz`` bytes to be read in to ``data``. Return Codes ------------ -``OPAL_PARAMETER`` +:ref:`OPAL_PARAMETER` Indicates either ``chip_id`` not found or ``chip_id`` doesn’t contain LPC information. - -``OPAL_SUCCESS`` +:ref:`OPAL_SUCCESS` Indicates Success! +.. _OPAL_LPC_WRITE: + OPAL_LPC_WRITE ============== -:: - This function related to Low Pin Count (LPC) bus. This function writes the - ``data`` in to ECCB register for ``chip_id``, which has LPC information. - From ``addr`` for ``addr_type`` with write size ``sz`` bytes. +.. code-block:: c + + #define OPAL_LPC_WRITE 68 + + /* + * Address cycle types for LPC accesses. These also correspond + * to the content of the first cell of the "reg" property for + * device nodes on the LPC bus + */ + enum OpalLPCAddressType { + OPAL_LPC_MEM = 0, + OPAL_LPC_IO = 1, + OPAL_LPC_FW = 2, + }; + + int64_t opal_lpc_write(uint32_t chip_id, enum OpalLPCAddressType addr_type, + uint32_t addr, uint32_t data, uint32_t sz); + +This function related to Low Pin Count (LPC) bus. This function writes the +``data`` in to ECCB register for ``chip_id``, which has LPC information. +From ``addr`` for ``addr_type`` with write size ``sz`` bytes. Parameters ---------- @@ -54,29 +89,26 @@ Parameters ``chip_id`` The ``chip_id`` parameter contains value of the chip number identified at boot time. - ``addr_type`` The ``addr_type`` is one of the address types LPC supported. - Supported address types are - - LPC memory, - LPC IO and - LPC firmware. + Supported address types are: + + - LPC memory, + - LPC IO and + - LPC firmware. ``addr`` The ``addr`` to where the ``data`` need to be written. - ``data`` The ``data`` for writing. - ``sz`` How many ``sz`` bytes to write. Return Codes ------------ -``OPAL_PARAMETER`` +:ref:`OPAL_PARAMETER` Indicates either ``chip_id`` not found or ``chip_id`` doesn’t contain LPC information. - -``OPAL_SUCCESS`` - Indicates Success! +:ref:`OPAL_SUCCESS` + Indicates Success! |