aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStewart Smith <stewart@linux.ibm.com>2019-05-31 16:13:28 +1000
committerStewart Smith <stewart@linux.ibm.com>2019-06-03 10:20:00 +1000
commit0e56e26ab02a8561d9ea0066e2d5ef21885db56e (patch)
treed23e17db4ac54a7e1015f8fd345132109546f54c
parente985764f5734f5e1165ddeee93a67b289a124344 (diff)
downloadskiboot-0e56e26ab02a8561d9ea0066e2d5ef21885db56e.zip
skiboot-0e56e26ab02a8561d9ea0066e2d5ef21885db56e.tar.gz
skiboot-0e56e26ab02a8561d9ea0066e2d5ef21885db56e.tar.bz2
Remove remnants of OPAL_PCI_GET_PHB_DIAG_DATA
Never present in a public OPAL release, and only kernels prior to 3.11 would ever attempt to call it. Signed-off-by: Stewart Smith <stewart@linux.ibm.com> Reviewed-by: Andrew Donnellan <ajd@linux.ibm.com> Signed-off-by: Stewart Smith <stewart@linux.ibm.com>
-rw-r--r--core/pci-opal.c22
-rw-r--r--doc/opal-api/index.rst23
-rw-r--r--doc/opal-api/opal-pci-get-phb-diag-data2-64.rst11
-rw-r--r--hw/npu.c1
-rw-r--r--hw/npu2-opencapi.c1
-rw-r--r--hw/npu2.c1
-rw-r--r--hw/p7ioc-phb.c1
-rw-r--r--hw/phb3.c1
-rw-r--r--hw/phb4.c1
-rw-r--r--include/pci.h2
10 files changed, 22 insertions, 42 deletions
diff --git a/core/pci-opal.c b/core/pci-opal.c
index 043d948..94afc6d 100644
--- a/core/pci-opal.c
+++ b/core/pci-opal.c
@@ -807,28 +807,6 @@ static int64_t opal_pci_set_power_state(uint64_t async_token,
}
opal_call(OPAL_PCI_SET_POWER_STATE, opal_pci_set_power_state, 3);
-static int64_t opal_pci_get_phb_diag_data(uint64_t phb_id,
- void *diag_buffer,
- uint64_t diag_buffer_len)
-{
- struct phb *phb = pci_get_phb(phb_id);
- int64_t rc;
-
- if (!opal_addr_valid(diag_buffer))
- return OPAL_PARAMETER;
-
- if (!phb)
- return OPAL_PARAMETER;
- if (!phb->ops->get_diag_data)
- return OPAL_UNSUPPORTED;
- phb_lock(phb);
- rc = phb->ops->get_diag_data(phb, diag_buffer, diag_buffer_len);
- phb_unlock(phb);
-
- return rc;
-}
-opal_call(OPAL_PCI_GET_PHB_DIAG_DATA, opal_pci_get_phb_diag_data, 3);
-
static int64_t opal_pci_get_phb_diag_data2(uint64_t phb_id,
void *diag_buffer,
uint64_t diag_buffer_len)
diff --git a/doc/opal-api/index.rst b/doc/opal-api/index.rst
index d0e6483..00ec72f 100644
--- a/doc/opal-api/index.rst
+++ b/doc/opal-api/index.rst
@@ -118,7 +118,10 @@ The OPAL API is the interface between an Operating System and OPAL.
+---------------------------------------------+--------------+------------------------+----------+-----------------+
| :ref:`OPAL_PCI_GET_HUB_DIAG_DATA` | 50 | v1.0 (Initial Release) | POWER8 | |
+---------------------------------------------+--------------+------------------------+----------+-----------------+
-| :ref:`OPAL_PCI_GET_PHB_DIAG_DATA` | 51 | v1.0 (Initial Release) | POWER8 | |
+| :ref:`OPAL_PCI_GET_PHB_DIAG_DATA` | 51 | N/A | | Only |
+| | | | | implemented |
+| | | | | prior to public |
+| | | | | release. |
+---------------------------------------------+--------------+------------------------+----------+-----------------+
| :ref:`OPAL_PCI_FENCE_PHB` | 52 | v1.0 (Initial Release) | POWER8 | |
+---------------------------------------------+--------------+------------------------+----------+-----------------+
@@ -397,6 +400,10 @@ removed and no longer supported.
+---------------------------------------------+-------+-----------------------+-----------------------+
| :ref:`OPAL_PCI_GET_XIVE_REISSUE` | 36 | Never | |
+---------------------------------------------+-------+-----------------------+-----------------------+
+| :ref:`OPAL_PCI_GET_PHB_DIAG_DATA` | 51 | pre-v1.0 | pre-v1.0, with last |
+| | | | remnants removed in |
+| | | | :ref:`skiboot-6.4` |
++---------------------------------------------+-------+-----------------------+-----------------------+
| :ref:`OPAL_GET_XIVE_SOURCE` | 38 | v1.0 Initial Release | :ref:`skiboot-6.4` |
+---------------------------------------------+-------+-----------------------+-----------------------+
| :ref:`OPAL_WRITE_OPPANEL` | 43 | pre-v1.0 | pre-v1.0 |
@@ -457,6 +464,20 @@ A remnant of something prior to OPALv3. Never implemented in skiboot and never
used by anyone. Returend :ref:`OPAL_UNSUPPORTED` until :ref:`skiboot-6.4`, where
it was removed.
+.. _OPAL_PCI_GET_PHB_DIAG_DATA:
+
+OPAL_PCI_GET_PHB_DIAG_DATA
+==========================
+
+This call was introduced and functionally removed (all backends for it were)
+before the first public opal release. It has not been used since Linux 3.11-rc1.
+Considering the state of EEH in such old kernels and firmware, removing the
+remnants of this call is considered safe. If for some bizarre reason such an
+old kernel is run on :ref:`skiboot-6.4` or later, an :ref:`OPAL_PARAMETER` error
+will be returned instead of :ref:`OPAL_UNSUPPORTED`.
+
+It is replaced by :ref:`OPAL_PCI_GET_PHB_DIAG_DATA2` instead.
+
.. _OPAL_GET_XIVE_SOURCE:
OPAL_GET_XIVE_SOURCE
diff --git a/doc/opal-api/opal-pci-get-phb-diag-data2-64.rst b/doc/opal-api/opal-pci-get-phb-diag-data2-64.rst
index 7a2f983..ac98bc2 100644
--- a/doc/opal-api/opal-pci-get-phb-diag-data2-64.rst
+++ b/doc/opal-api/opal-pci-get-phb-diag-data2-64.rst
@@ -1,14 +1,3 @@
-.. _OPAL_PCI_GET_PHB_DIAG_DATA:
-
-OPAL_PCI_GET_PHB_DIAG_DATA
-==========================
-
-.. note:: This call is deprecated. It has not been used since Linux 3.11-rc1.
- Use :ref:`OPAL_PCI_GET_PHB_DIAG_DATA2` instead.
-
-.. note:: This call may be removed in the future.
-
-
.. _OPAL_PCI_GET_PHB_DIAG_DATA2:
OPAL_PCI_GET_PHB_DIAG_DATA2
diff --git a/hw/npu.c b/hw/npu.c
index 2c3f19e..2de0747 100644
--- a/hw/npu.c
+++ b/hw/npu.c
@@ -1015,7 +1015,6 @@ static const struct phb_ops npu_ops = {
.eeh_freeze_set = NULL,
.next_error = npu_eeh_next_error,
.err_inject = npu_err_inject,
- .get_diag_data = NULL,
.get_diag_data2 = NULL,
.set_capi_mode = NULL,
.set_capp_recovery = NULL,
diff --git a/hw/npu2-opencapi.c b/hw/npu2-opencapi.c
index 7a90cfa..d6d8996 100644
--- a/hw/npu2-opencapi.c
+++ b/hw/npu2-opencapi.c
@@ -1817,7 +1817,6 @@ static const struct phb_ops npu2_opencapi_ops = {
.eeh_freeze_set = NULL,
.next_error = npu2_opencapi_eeh_next_error,
.err_inject = NULL,
- .get_diag_data = NULL,
.get_diag_data2 = NULL,
.set_capi_mode = NULL,
.set_capp_recovery = NULL,
diff --git a/hw/npu2.c b/hw/npu2.c
index c9c6bd1..ee2b4b2 100644
--- a/hw/npu2.c
+++ b/hw/npu2.c
@@ -1440,7 +1440,6 @@ static const struct phb_ops npu_ops = {
.eeh_freeze_set = NULL,
.next_error = npu2_eeh_next_error,
.err_inject = NULL,
- .get_diag_data = NULL,
.get_diag_data2 = NULL,
.set_capi_mode = NULL,
.set_capp_recovery = NULL,
diff --git a/hw/p7ioc-phb.c b/hw/p7ioc-phb.c
index 97730a0..ac01103 100644
--- a/hw/p7ioc-phb.c
+++ b/hw/p7ioc-phb.c
@@ -2304,7 +2304,6 @@ static const struct phb_ops p7ioc_phb_ops = {
.eeh_freeze_clear = p7ioc_eeh_freeze_clear,
.eeh_freeze_set = p7ioc_eeh_freeze_set,
.err_inject = p7ioc_err_inject,
- .get_diag_data = NULL,
.get_diag_data2 = p7ioc_get_diag_data,
.next_error = p7ioc_eeh_next_error,
.phb_mmio_enable = p7ioc_phb_mmio_enable,
diff --git a/hw/phb3.c b/hw/phb3.c
index ee98fd5..3042c3e 100644
--- a/hw/phb3.c
+++ b/hw/phb3.c
@@ -3793,7 +3793,6 @@ static const struct phb_ops phb3_ops = {
.eeh_freeze_set = phb3_eeh_freeze_set,
.next_error = phb3_eeh_next_error,
.err_inject = phb3_err_inject,
- .get_diag_data = NULL,
.get_diag_data2 = phb3_get_diag_data,
.set_capi_mode = phb3_set_capi_mode,
.set_capp_recovery = phb3_set_capp_recovery,
diff --git a/hw/phb4.c b/hw/phb4.c
index 3ae96f2..f29729b 100644
--- a/hw/phb4.c
+++ b/hw/phb4.c
@@ -4797,7 +4797,6 @@ static const struct phb_ops phb4_ops = {
.eeh_freeze_set = phb4_eeh_freeze_set,
.next_error = phb4_eeh_next_error,
.err_inject = phb4_err_inject,
- .get_diag_data = NULL,
.get_diag_data2 = phb4_get_diag_data,
.tce_kill = phb4_tce_kill,
.set_capi_mode = phb4_set_capi_mode,
diff --git a/include/pci.h b/include/pci.h
index b63b119..2b7a3c2 100644
--- a/include/pci.h
+++ b/include/pci.h
@@ -268,8 +268,6 @@ struct phb_ops {
int64_t (*err_inject)(struct phb *phb, uint64_t pe_number,
uint32_t type, uint32_t func, uint64_t addr,
uint64_t mask);
- int64_t (*get_diag_data)(struct phb *phb, void *diag_buffer,
- uint64_t diag_buffer_len);
int64_t (*get_diag_data2)(struct phb *phb, void *diag_buffer,
uint64_t diag_buffer_len);
int64_t (*next_error)(struct phb *phb, uint64_t *first_frozen_pe,