diff options
author | Cédric Le Goater | 2019-03-06 09:50:09 +0100 |
---|---|---|
committer | David Gibson | 2019-03-12 04:33:04 +0100 |
commit | a58a18adee0421bd704265ec14a6805f734d3dab (patch) | |
tree | 61b2e5c2217e1349f3eff88133ae556e2157881b /hw/intc | |
parent | ppc/xive: export the TIMA memory accessors (diff) | |
download | qemu-a58a18adee0421bd704265ec14a6805f734d3dab.tar.gz qemu-a58a18adee0421bd704265ec14a6805f734d3dab.tar.xz qemu-a58a18adee0421bd704265ec14a6805f734d3dab.zip |
ppc/pnv: export the xive_router_notify() routine
The PowerNV machine with need to encode the block id in the source
interrupt number before forwarding the source event notification to
the Router.
Signed-off-by: Cédric Le Goater <clg@kaod.org>
Message-Id: <20190306085032.15744-5-clg@kaod.org>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Diffstat (limited to 'hw/intc')
-rw-r--r-- | hw/intc/xive.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/intc/xive.c b/hw/intc/xive.c index 3d7de864e9..7d7992c0ce 100644 --- a/hw/intc/xive.c +++ b/hw/intc/xive.c @@ -1404,7 +1404,7 @@ static void xive_router_end_notify(XiveRouter *xrtr, uint8_t end_blk, /* TODO: Auto EOI. */ } -static void xive_router_notify(XiveNotifier *xn, uint32_t lisn) +void xive_router_notify(XiveNotifier *xn, uint32_t lisn) { XiveRouter *xrtr = XIVE_ROUTER(xn); uint8_t eas_blk = XIVE_SRCNO_BLOCK(lisn); |