aboutsummaryrefslogtreecommitdiff
path: root/include/xive.h
diff options
context:
space:
mode:
authorBenjamin Herrenschmidt <benh@kernel.crashing.org>2017-01-15 22:36:24 -0600
committerStewart Smith <stewart@linux.vnet.ibm.com>2017-02-02 18:22:41 +1100
commit7d2501a1884b412b097bbf48c2894cd239bd09f4 (patch)
tree15142fc00c4a3d341a976e7107a9dafd06edcf19 /include/xive.h
parent0b006637dc3a26f94a562d67bd49560b7779595e (diff)
downloadskiboot-7d2501a1884b412b097bbf48c2894cd239bd09f4.zip
skiboot-7d2501a1884b412b097bbf48c2894cd239bd09f4.tar.gz
skiboot-7d2501a1884b412b097bbf48c2894cd239bd09f4.tar.bz2
xive: Fix definition of VC_SCRUB_OFFSET
Off by one on one bit Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org> Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
Diffstat (limited to 'include/xive.h')
-rw-r--r--include/xive.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/xive.h b/include/xive.h
index be976f2..ab5ab80 100644
--- a/include/xive.h
+++ b/include/xive.h
@@ -204,7 +204,7 @@
#define VC_SCRUB_WANT_DISABLE PPC_BIT(1)
#define VC_SCRUB_WANT_INVAL PPC_BIT(2) /* EQC and SBC only */
#define VC_SCRUB_BLOCK_ID PPC_BITMASK(28,31)
-#define VC_SCRUB_OFFSET PPC_BITMASK(41,63)
+#define VC_SCRUB_OFFSET PPC_BITMASK(40,63)
#define X_VC_IVC_CACHE_ENABLE 0x221
#define VC_IVC_CACHE_ENABLE 0x988
#define VC_IVC_CACHE_EN_MASK PPC_BITMASK(0,15)