]> git.karo-electronics.de Git - karo-tx-linux.git/commit
powerpc/powernv: Fix XSCOM address mangling for form 1 indirect
authorMichael Neuling <mikey@neuling.org>
Fri, 24 Mar 2017 10:20:56 +0000 (21:20 +1100)
committerMichael Ellerman <mpe@ellerman.id.au>
Mon, 27 Mar 2017 23:52:03 +0000 (10:52 +1100)
commit517c27570cf38f182e7a688d50a9b978333f8ea8
treed25bc3ab29f42b018b0662563e54754271e9f603
parentc3a08e93d66e9ba59ffbfb610af2f76b82200185
powerpc/powernv: Fix XSCOM address mangling for form 1 indirect

POWER9 adds form 1 scoms. The form of the indirection is specified in
the top nibble of the scom address.

Currently we do some (ugly) bit mangling so that we can fit a 64 bit
scom address into the debugfs interface. The current code only shifts
the top bit (indirect bit).

This patch changes it to shift the whole top nibble so that the form
of the indirection is also shifted.

This patch is backwards compatible with older scoms.

(This change isn't required in the arch/powerpc/platforms/powernv/opal-prd.c
scom interface as it passes the whole 64bit scom address without any bit
mangling)

Signed-off-by: Michael Neuling <mikey@neuling.org>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
arch/powerpc/platforms/powernv/opal-xscom.c