[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH v6 12/20] ppc/xive: Extend the TIMA operation with a XivePres
From: |
David Gibson |
Subject: |
Re: [PATCH v6 12/20] ppc/xive: Extend the TIMA operation with a XivePresenter parameter |
Date: |
Wed, 27 Nov 2019 16:24:19 +1100 |
User-agent: |
Mutt/1.12.1 (2019-06-15) |
On Mon, Nov 25, 2019 at 07:58:12AM +0100, Cédric Le Goater wrote:
> The TIMA operations are performed on behalf of the XIVE IVPE sub-engine
> (Presenter) on the thread interrupt context registers. The current
> operations supported by the model are simple and do not require access
> to the controller but more complex operations will need access to the
> controller NVT table and to its configuration.
>
> Reviewed-by: Greg Kurz <address@hidden>
> Signed-off-by: Cédric Le Goater <address@hidden>
Applied to ppc-for-5.0.
> ---
> include/hw/ppc/xive.h | 7 +++---
> hw/intc/pnv_xive.c | 4 +--
> hw/intc/xive.c | 58 ++++++++++++++++++++++++-------------------
> 3 files changed, 38 insertions(+), 31 deletions(-)
>
> diff --git a/include/hw/ppc/xive.h b/include/hw/ppc/xive.h
> index b00af988779b..97bbcddb381d 100644
> --- a/include/hw/ppc/xive.h
> +++ b/include/hw/ppc/xive.h
> @@ -463,9 +463,10 @@ typedef struct XiveENDSource {
> #define XIVE_TM_USER_PAGE 0x3
>
> extern const MemoryRegionOps xive_tm_ops;
> -void xive_tctx_tm_write(XiveTCTX *tctx, hwaddr offset, uint64_t value,
> - unsigned size);
> -uint64_t xive_tctx_tm_read(XiveTCTX *tctx, hwaddr offset, unsigned size);
> +void xive_tctx_tm_write(XivePresenter *xptr, XiveTCTX *tctx, hwaddr offset,
> + uint64_t value, unsigned size);
> +uint64_t xive_tctx_tm_read(XivePresenter *xptr, XiveTCTX *tctx, hwaddr
> offset,
> + unsigned size);
>
> void xive_tctx_pic_print_info(XiveTCTX *tctx, Monitor *mon);
> Object *xive_tctx_create(Object *cpu, XiveRouter *xrtr, Error **errp);
> diff --git a/hw/intc/pnv_xive.c b/hw/intc/pnv_xive.c
> index b2ab2ccc91e7..95e9de312cd9 100644
> --- a/hw/intc/pnv_xive.c
> +++ b/hw/intc/pnv_xive.c
> @@ -1436,7 +1436,7 @@ static void xive_tm_indirect_write(void *opaque, hwaddr
> offset,
> {
> XiveTCTX *tctx = pnv_xive_get_indirect_tctx(PNV_XIVE(opaque));
>
> - xive_tctx_tm_write(tctx, offset, value, size);
> + xive_tctx_tm_write(XIVE_PRESENTER(opaque), tctx, offset, value, size);
> }
>
> static uint64_t xive_tm_indirect_read(void *opaque, hwaddr offset,
> @@ -1444,7 +1444,7 @@ static uint64_t xive_tm_indirect_read(void *opaque,
> hwaddr offset,
> {
> XiveTCTX *tctx = pnv_xive_get_indirect_tctx(PNV_XIVE(opaque));
>
> - return xive_tctx_tm_read(tctx, offset, size);
> + return xive_tctx_tm_read(XIVE_PRESENTER(opaque), tctx, offset, size);
> }
>
> static const MemoryRegionOps xive_tm_indirect_ops = {
> diff --git a/hw/intc/xive.c b/hw/intc/xive.c
> index 8e683847bf81..9e7e5ea57c5c 100644
> --- a/hw/intc/xive.c
> +++ b/hw/intc/xive.c
> @@ -144,19 +144,20 @@ static inline uint32_t xive_tctx_word2(uint8_t *ring)
> * XIVE Thread Interrupt Management Area (TIMA)
> */
>
> -static void xive_tm_set_hv_cppr(XiveTCTX *tctx, hwaddr offset,
> - uint64_t value, unsigned size)
> +static void xive_tm_set_hv_cppr(XivePresenter *xptr, XiveTCTX *tctx,
> + hwaddr offset, uint64_t value, unsigned size)
> {
> xive_tctx_set_cppr(tctx, TM_QW3_HV_PHYS, value & 0xff);
> }
>
> -static uint64_t xive_tm_ack_hv_reg(XiveTCTX *tctx, hwaddr offset, unsigned
> size)
> +static uint64_t xive_tm_ack_hv_reg(XivePresenter *xptr, XiveTCTX *tctx,
> + hwaddr offset, unsigned size)
> {
> return xive_tctx_accept(tctx, TM_QW3_HV_PHYS);
> }
>
> -static uint64_t xive_tm_pull_pool_ctx(XiveTCTX *tctx, hwaddr offset,
> - unsigned size)
> +static uint64_t xive_tm_pull_pool_ctx(XivePresenter *xptr, XiveTCTX *tctx,
> + hwaddr offset, unsigned size)
> {
> uint32_t qw2w2_prev = xive_tctx_word2(&tctx->regs[TM_QW2_HV_POOL]);
> uint32_t qw2w2;
> @@ -166,13 +167,14 @@ static uint64_t xive_tm_pull_pool_ctx(XiveTCTX *tctx,
> hwaddr offset,
> return qw2w2;
> }
>
> -static void xive_tm_vt_push(XiveTCTX *tctx, hwaddr offset,
> +static void xive_tm_vt_push(XivePresenter *xptr, XiveTCTX *tctx, hwaddr
> offset,
> uint64_t value, unsigned size)
> {
> tctx->regs[TM_QW3_HV_PHYS + TM_WORD2] = value & 0xff;
> }
>
> -static uint64_t xive_tm_vt_poll(XiveTCTX *tctx, hwaddr offset, unsigned size)
> +static uint64_t xive_tm_vt_poll(XivePresenter *xptr, XiveTCTX *tctx,
> + hwaddr offset, unsigned size)
> {
> return tctx->regs[TM_QW3_HV_PHYS + TM_WORD2] & 0xff;
> }
> @@ -315,13 +317,14 @@ static uint64_t xive_tm_raw_read(XiveTCTX *tctx, hwaddr
> offset, unsigned size)
> * state changes (side effects) in addition to setting/returning the
> * interrupt management area context of the processor thread.
> */
> -static uint64_t xive_tm_ack_os_reg(XiveTCTX *tctx, hwaddr offset, unsigned
> size)
> +static uint64_t xive_tm_ack_os_reg(XivePresenter *xptr, XiveTCTX *tctx,
> + hwaddr offset, unsigned size)
> {
> return xive_tctx_accept(tctx, TM_QW1_OS);
> }
>
> -static void xive_tm_set_os_cppr(XiveTCTX *tctx, hwaddr offset,
> - uint64_t value, unsigned size)
> +static void xive_tm_set_os_cppr(XivePresenter *xptr, XiveTCTX *tctx,
> + hwaddr offset, uint64_t value, unsigned size)
> {
> xive_tctx_set_cppr(tctx, TM_QW1_OS, value & 0xff);
> }
> @@ -330,8 +333,8 @@ static void xive_tm_set_os_cppr(XiveTCTX *tctx, hwaddr
> offset,
> * Adjust the IPB to allow a CPU to process event queues of other
> * priorities during one physical interrupt cycle.
> */
> -static void xive_tm_set_os_pending(XiveTCTX *tctx, hwaddr offset,
> - uint64_t value, unsigned size)
> +static void xive_tm_set_os_pending(XivePresenter *xptr, XiveTCTX *tctx,
> + hwaddr offset, uint64_t value, unsigned
> size)
> {
> ipb_update(&tctx->regs[TM_QW1_OS], value & 0xff);
> xive_tctx_notify(tctx, TM_QW1_OS);
> @@ -366,8 +369,8 @@ static void xive_tctx_set_os_cam(XiveTCTX *tctx, uint32_t
> qw1w2)
> memcpy(&tctx->regs[TM_QW1_OS + TM_WORD2], &qw1w2, 4);
> }
>
> -static uint64_t xive_tm_pull_os_ctx(XiveTCTX *tctx, hwaddr offset,
> - unsigned size)
> +static uint64_t xive_tm_pull_os_ctx(XivePresenter *xptr, XiveTCTX *tctx,
> + hwaddr offset, unsigned size)
> {
> uint32_t qw1w2;
> uint32_t qw1w2_new;
> @@ -396,9 +399,11 @@ typedef struct XiveTmOp {
> uint8_t page_offset;
> uint32_t op_offset;
> unsigned size;
> - void (*write_handler)(XiveTCTX *tctx, hwaddr offset, uint64_t value,
> - unsigned size);
> - uint64_t (*read_handler)(XiveTCTX *tctx, hwaddr offset, unsigned size);
> + void (*write_handler)(XivePresenter *xptr, XiveTCTX *tctx,
> + hwaddr offset,
> + uint64_t value, unsigned size);
> + uint64_t (*read_handler)(XivePresenter *xptr, XiveTCTX *tctx, hwaddr
> offset,
> + unsigned size);
> } XiveTmOp;
>
> static const XiveTmOp xive_tm_operations[] = {
> @@ -444,8 +449,8 @@ static const XiveTmOp *xive_tm_find_op(hwaddr offset,
> unsigned size, bool write)
> /*
> * TIMA MMIO handlers
> */
> -void xive_tctx_tm_write(XiveTCTX *tctx, hwaddr offset, uint64_t value,
> - unsigned size)
> +void xive_tctx_tm_write(XivePresenter *xptr, XiveTCTX *tctx, hwaddr offset,
> + uint64_t value, unsigned size)
> {
> const XiveTmOp *xto;
>
> @@ -462,7 +467,7 @@ void xive_tctx_tm_write(XiveTCTX *tctx, hwaddr offset,
> uint64_t value,
> qemu_log_mask(LOG_GUEST_ERROR, "XIVE: invalid write access at
> TIMA "
> "@%"HWADDR_PRIx"\n", offset);
> } else {
> - xto->write_handler(tctx, offset, value, size);
> + xto->write_handler(xptr, tctx, offset, value, size);
> }
> return;
> }
> @@ -472,7 +477,7 @@ void xive_tctx_tm_write(XiveTCTX *tctx, hwaddr offset,
> uint64_t value,
> */
> xto = xive_tm_find_op(offset, size, true);
> if (xto) {
> - xto->write_handler(tctx, offset, value, size);
> + xto->write_handler(xptr, tctx, offset, value, size);
> return;
> }
>
> @@ -482,7 +487,8 @@ void xive_tctx_tm_write(XiveTCTX *tctx, hwaddr offset,
> uint64_t value,
> xive_tm_raw_write(tctx, offset, value, size);
> }
>
> -uint64_t xive_tctx_tm_read(XiveTCTX *tctx, hwaddr offset, unsigned size)
> +uint64_t xive_tctx_tm_read(XivePresenter *xptr, XiveTCTX *tctx, hwaddr
> offset,
> + unsigned size)
> {
> const XiveTmOp *xto;
>
> @@ -500,7 +506,7 @@ uint64_t xive_tctx_tm_read(XiveTCTX *tctx, hwaddr offset,
> unsigned size)
> "@%"HWADDR_PRIx"\n", offset);
> return -1;
> }
> - return xto->read_handler(tctx, offset, size);
> + return xto->read_handler(xptr, tctx, offset, size);
> }
>
> /*
> @@ -508,7 +514,7 @@ uint64_t xive_tctx_tm_read(XiveTCTX *tctx, hwaddr offset,
> unsigned size)
> */
> xto = xive_tm_find_op(offset, size, false);
> if (xto) {
> - return xto->read_handler(tctx, offset, size);
> + return xto->read_handler(xptr, tctx, offset, size);
> }
>
> /*
> @@ -522,14 +528,14 @@ static void xive_tm_write(void *opaque, hwaddr offset,
> {
> XiveTCTX *tctx = xive_router_get_tctx(XIVE_ROUTER(opaque), current_cpu);
>
> - xive_tctx_tm_write(tctx, offset, value, size);
> + xive_tctx_tm_write(XIVE_PRESENTER(opaque), tctx, offset, value, size);
> }
>
> static uint64_t xive_tm_read(void *opaque, hwaddr offset, unsigned size)
> {
> XiveTCTX *tctx = xive_router_get_tctx(XIVE_ROUTER(opaque), current_cpu);
>
> - return xive_tctx_tm_read(tctx, offset, size);
> + return xive_tctx_tm_read(XIVE_PRESENTER(opaque), tctx, offset, size);
> }
>
> const MemoryRegionOps xive_tm_ops = {
--
David Gibson | I'll have my music baroque, and my code
david AT gibson.dropbear.id.au | minimalist, thank you. NOT _the_ _other_
| _way_ _around_!
http://www.ozlabs.org/~dgibson
signature.asc
Description: PGP signature
- [PATCH v6 06/20] ppc/pnv: Introduce a pnv_xive_is_cpu_enabled() helper, (continued)
- [PATCH v6 06/20] ppc/pnv: Introduce a pnv_xive_is_cpu_enabled() helper, Cédric Le Goater, 2019/11/25
- [PATCH v6 07/20] ppc/pnv: Fix TIMA indirect access, Cédric Le Goater, 2019/11/25
- [PATCH v6 08/20] ppc/xive: Introduce a XiveFabric interface, Cédric Le Goater, 2019/11/25
- [PATCH v6 09/20] ppc/pnv: Implement the XiveFabric interface, Cédric Le Goater, 2019/11/25
- [PATCH v6 10/20] ppc/spapr: Implement the XiveFabric interface, Cédric Le Goater, 2019/11/25
- [PATCH v6 11/20] ppc/xive: Use the XiveFabric and XivePresenter interfaces, Cédric Le Goater, 2019/11/25
- [PATCH v6 12/20] ppc/xive: Extend the TIMA operation with a XivePresenter parameter, Cédric Le Goater, 2019/11/25
- Re: [PATCH v6 12/20] ppc/xive: Extend the TIMA operation with a XivePresenter parameter,
David Gibson <=
- [PATCH v6 13/20] ppc/pnv: Clarify how the TIMA is accessed on a multichip system, Cédric Le Goater, 2019/11/25
- [PATCH v6 14/20] ppc/xive: Move the TIMA operations to the controller model, Cédric Le Goater, 2019/11/25
- [PATCH v6 15/20] ppc/xive: Remove the get_tctx() XiveRouter handler, Cédric Le Goater, 2019/11/25
- [PATCH v6 16/20] ppc/xive: Introduce a xive_tctx_ipb_update() helper, Cédric Le Goater, 2019/11/25