aboutsummaryrefslogtreecommitdiff
path: root/include/npu.h
diff options
context:
space:
mode:
authorGavin Shan <gwshan@linux.vnet.ibm.com>2016-04-26 11:56:52 +1000
committerStewart Smith <stewart@linux.vnet.ibm.com>2016-05-03 17:48:46 +1000
commit00f3d2ca92b325db1c7832e4560b564359977202 (patch)
tree86103015f09d73aedfcbf376ece2b0c25884f6d1 /include/npu.h
parent98b80af1001027cc59dce040831c1f54d41e4f88 (diff)
downloadskiboot-00f3d2ca92b325db1c7832e4560b564359977202.zip
skiboot-00f3d2ca92b325db1c7832e4560b564359977202.tar.gz
skiboot-00f3d2ca92b325db1c7832e4560b564359977202.tar.bz2
PCI: Move PHB lock to generic layer
All kinds of PHBs are maintaining a spinlock. At mean while, the spinlock is acquired or released by backends for phb_ops->lock() or phb_ops->unlock(). There're no difference of the logic on all kinds of PHBs. So it's reasonable to maintain the lock in the generic layer (struct phb). This moves lock from specific PHB to generic one. The spinlock is initialized when the generic PHB is registered in pci_register_phb(). Also, two inline functions phb_{lock, unlock}() are introduced to acquire/release it. No logical changes introduced. Signed-off-by: Gavin Shan <gwshan@linux.vnet.ibm.com> Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
Diffstat (limited to 'include/npu.h')
-rw-r--r--include/npu.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/include/npu.h b/include/npu.h
index 0b2d984..ff6201e 100644
--- a/include/npu.h
+++ b/include/npu.h
@@ -154,7 +154,6 @@ struct npu_dev {
struct npu {
uint32_t flags;
uint32_t index;
- struct lock lock;
uint32_t chip_id;
uint64_t xscom_base;
uint64_t at_xscom;