aboutsummaryrefslogtreecommitdiff
path: root/hw
diff options
context:
space:
mode:
authorMilton Miller <miltonm@us.ibm.com>2016-09-02 14:39:58 +1000
committerStewart Smith <stewart@linux.vnet.ibm.com>2016-09-02 15:27:39 +1000
commitac83440c8241902d2c32410050a2fd1e96b20fcf (patch)
tree95f29df3835aca0a7448e789b45b080c691be5f4 /hw
parent8f67ee3b7fa573885c2bda34c7934418e12287db (diff)
downloadskiboot-ac83440c8241902d2c32410050a2fd1e96b20fcf.zip
skiboot-ac83440c8241902d2c32410050a2fd1e96b20fcf.tar.gz
skiboot-ac83440c8241902d2c32410050a2fd1e96b20fcf.tar.bz2
hw/npu: assert the NPU irq min is aligned.
The hardware enforces the buid range is on a 16 irsn boundary even though there are only 8 irqs. Enforce that here and show where the value comes from when programming the lsi source id field in the npu register block. Signed-off-by: Milton Miller <miltonm@us.ibm.com> Signed-off-by: Alistair Popple <alistair@popple.id.au> Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
Diffstat (limited to 'hw')
-rw-r--r--hw/npu.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/hw/npu.c b/hw/npu.c
index 11e8b97..a9a167e 100644
--- a/hw/npu.c
+++ b/hw/npu.c
@@ -26,6 +26,7 @@
#include <device.h>
#include <ccan/str/str.h>
#include <ccan/array_size/array_size.h>
+#include <ccan/build_assert/build_assert.h>
#include <affinity.h>
#include <npu-regs.h>
#include <npu.h>
@@ -800,7 +801,8 @@ static void npu_hw_init(struct npu *p)
{
/* 3 MMIO setup for AT */
out_be64(p->at_regs + NPU_LSI_SOURCE_ID,
- SETFIELD(NPU_LSI_SRC_ID_BASE, 0ul, 0x7f));
+ SETFIELD(NPU_LSI_SRC_ID_BASE, 0ul, NPU_LSI_IRQ_MIN >> 4));
+ BUILD_ASSERT((NPU_LSI_IRQ_MIN & 0x07F0) == NPU_LSI_IRQ_MIN);
out_be64(p->at_regs + NPU_INTREP_TIMER, 0x0ul);
npu_ioda_reset(&p->phb, false);
}