aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAlexey Kardashevskiy <aik@ozlabs.ru>2017-04-10 17:40:57 +1000
committerStewart Smith <stewart@linux.vnet.ibm.com>2017-04-27 14:16:19 +1000
commitb74841db759d33d6823a8f39603e07319b90103b (patch)
tree2a516a7404c841bebd5e2b1446f19a27e0afce4e /include
parent50e1921f98e4b1b15a748fa7dbc01a71a11b61c4 (diff)
downloadskiboot-b74841db759d33d6823a8f39603e07319b90103b.zip
skiboot-b74841db759d33d6823a8f39603e07319b90103b.tar.gz
skiboot-b74841db759d33d6823a8f39603e07319b90103b.tar.bz2
npu: Implement FLR
As the comment in npu_dev_populate_pcie_cap() says, "We should support FLR" and the NPU device advertises its support. However, when the kernel issues FLR, skiboot does nothing which leaves NPU in a state which does not allow to use NV links again after GPU was reset. This adds basic handling of FLR (function level reset). This does not update hreset/freset handlers as they are not going to be called under any circumstance - EEH is not supported for NPU and the kernel won't issue OPAL reset otherwise. Signed-off-by: Alexey Kardashevskiy <aik@ozlabs.ru> Acked-by: Alistair Popple <alistair@popple.id.au> Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
Diffstat (limited to 'include')
-rw-r--r--include/npu.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/npu.h b/include/npu.h
index 77beca3..a76acdf 100644
--- a/include/npu.h
+++ b/include/npu.h
@@ -167,6 +167,7 @@ int64_t npu_dev_procedure(void *dev, struct pci_cfg_reg_filter *pcrf,
bool write);
void npu_set_fence_state(struct npu *p, bool fence);
+void npu_dev_procedure_reset(struct npu_dev *dev);
#define NPUDBG(p, fmt, a...) prlog(PR_DEBUG, "NPU%d: " fmt, \
(p)->phb.opal_id, ##a)