All of lore.kernel.org
 help / color / mirror / Atom feed
From: Stefano Stabellini <sstabellini@kernel.org>
To: Bhupinder Thakur <bhupinder.thakur@linaro.org>
Cc: xen-devel@lists.xenproject.org,
	Julien Grall <julien.grall@arm.com>,
	Stefano Stabellini <sstabellini@kernel.org>,
	Ian Jackson <ian.jackson@eu.citrix.com>,
	Wei Liu <wei.liu2@citrix.com>
Subject: Re: [PATCH 06/25 v6] xen/arm: vpl011: Add a new domctl API to initialize vpl011
Date: Tue, 18 Jul 2017 12:42:48 -0700 (PDT)	[thread overview]
Message-ID: <alpine.DEB.2.10.1707181240190.2841@sstabellini-ThinkPad-X260> (raw)
In-Reply-To: <1500296815-10243-7-git-send-email-bhupinder.thakur@linaro.org>

On Mon, 17 Jul 2017, Bhupinder Thakur wrote:
> Add a new domctl API to initialize vpl011. It takes the GFN and console
> backend domid as input and returns an event channel to be used for
> sending and receiving events from Xen.
> 
> Xen will communicate with xenconsole using GFN as the ring buffer and
> the event channel to transmit and receive pl011 data on the guest domain's
> behalf.
> 
> Signed-off-by: Bhupinder Thakur <bhupinder.thakur@linaro.org>
> ---
> CC: Ian Jackson <ian.jackson@eu.citrix.com>
> CC: Wei Liu <wei.liu2@citrix.com>
> CC: Stefano Stabellini <sstabellini@kernel.org>
> CC: Julien Grall <julien.grall@arm.com>
> 
> Changes since v5:
> - xc_dom_vpl011_init() will be compiled for both x86/arm architectures as there
>   is nothing architecture specific in this function. This function will return 
>   error when called for x86.
> - Fixed coding style issues in libxl.
> 
> Changes since v4:
> - Removed libxl__arch_domain_create_finish().
> - Added a new function libxl__arch_build_dom_finish(), which is called at the last
>   in libxl__build_dom(). This function calls the vpl011 initialization function now.
> 
> Changes since v3:
> - Added a new arch specific function libxl__arch_domain_create_finish(), which
>   calls the vpl011 initialization function. For x86 this function does not do
>   anything.
> - domain_vpl011_init() takes a pointer to a structure which contains all the 
>   required information such as console_domid, gfn instead of passing parameters
>   separately.
> - Dropped a DOMCTL API defined for de-initializing vpl011 as that should be
>   taken care when the domain is destroyed (and not dependent on userspace 
>   libraries/applications).
> 
> Changes since v2:
> - Replaced the DOMCTL APIs defined for get/set of event channel and GFN with 
>   a set of DOMCTL APIs for initializing and de-initializing vpl011 emulation.
> 
>  tools/libxc/include/xenctrl.h | 18 ++++++++++++++++++
>  tools/libxc/xc_domain.c       | 24 ++++++++++++++++++++++++
>  tools/libxl/libxl_arch.h      |  6 ++++++
>  tools/libxl/libxl_arm.c       | 20 ++++++++++++++++++++
>  tools/libxl/libxl_dom.c       |  4 ++++
>  tools/libxl/libxl_x86.c       |  8 ++++++++
>  xen/arch/arm/domain.c         |  5 +++++
>  xen/arch/arm/domctl.c         | 37 +++++++++++++++++++++++++++++++++++++
>  xen/include/public/domctl.h   | 21 +++++++++++++++++++++
>  9 files changed, 143 insertions(+)
> 
> diff --git a/tools/libxc/include/xenctrl.h b/tools/libxc/include/xenctrl.h
> index c51bb3b..423c6f3 100644
> --- a/tools/libxc/include/xenctrl.h
> +++ b/tools/libxc/include/xenctrl.h
> @@ -886,6 +886,24 @@ int xc_vcpu_getcontext(xc_interface *xch,
>                         vcpu_guest_context_any_t *ctxt);
>  
>  /**
> + * This function initializes the vpl011 emulation and returns
> + * the event to be used by the backend for communicating with
> + * the emulation code.
> + *
> + * @parm xch a handle to an open hypervisor interface
> + * @parm domid the domain to get information from
> + * @parm console_domid the domid of the backend console
> + * @parm gfn the guest pfn to be used as the ring buffer
> + * @parm evtchn the event channel to be used for events
> + * @return 0 on success, negative error on failure
> + */
> +int xc_dom_vpl011_init(xc_interface *xch,
> +                       domid_t domid,
> +                       uint32_t console_domid,

Why is this uint32_t instead of domid_t?


> +                       xen_pfn_t gfn,
> +                       evtchn_port_t *evtchn);
> +
> +/**
>   * This function returns information about the XSAVE state of a particular
>   * vcpu of a domain. If extstate->size and extstate->xfeature_mask are 0,
>   * the call is considered a query to retrieve them and the buffer is not
> diff --git a/tools/libxc/xc_domain.c b/tools/libxc/xc_domain.c
> index 3bab4e8..fab3c5e 100644
> --- a/tools/libxc/xc_domain.c
> +++ b/tools/libxc/xc_domain.c
> @@ -343,6 +343,30 @@ int xc_domain_get_guest_width(xc_interface *xch, uint32_t domid,
>      return 0;
>  }
>  
> +int xc_dom_vpl011_init(xc_interface *xch,
> +                       domid_t domid,
> +                       uint32_t console_domid,

same here of course


> +                       xen_pfn_t gfn,
> +                       evtchn_port_t *evtchn)
> +{
> +    DECLARE_DOMCTL;
> +    int rc = 0;
> +
> +    domctl.cmd = XEN_DOMCTL_vuart_op;
> +    domctl.domain = (domid_t)domid;
> +    domctl.u.vuart_op.cmd = XEN_DOMCTL_VUART_OP_INIT;
> +    domctl.u.vuart_op.type = XEN_DOMCTL_VUART_TYPE_VPL011;
> +    domctl.u.vuart_op.console_domid = console_domid;
> +    domctl.u.vuart_op.gfn = gfn;
> +
> +    if ( (rc = do_domctl(xch, &domctl)) < 0 )
> +        return rc;
> +
> +    *evtchn = domctl.u.vuart_op.evtchn;
> +
> +    return rc;
> +}
> +
>  int xc_domain_getinfo(xc_interface *xch,
>                        uint32_t first_domid,
>                        unsigned int max_doms,
> diff --git a/tools/libxl/libxl_arch.h b/tools/libxl/libxl_arch.h
> index 5e1fc60..118b92c 100644
> --- a/tools/libxl/libxl_arch.h
> +++ b/tools/libxl/libxl_arch.h
> @@ -44,6 +44,12 @@ int libxl__arch_domain_finalise_hw_description(libxl__gc *gc,
>                                        libxl_domain_build_info *info,
>                                        struct xc_dom_image *dom);
>  
> +/* perform any pending hardware initialization */
> +int libxl__arch_build_dom_finish(libxl__gc *gc,
> +                                 libxl_domain_build_info *info,
> +                                 struct xc_dom_image *dom,
> +                                 libxl__domain_build_state *state);
> +
>  /* build vNUMA vmemrange with arch specific information */
>  _hidden
>  int libxl__arch_vnuma_build_vmemrange(libxl__gc *gc,
> diff --git a/tools/libxl/libxl_arm.c b/tools/libxl/libxl_arm.c
> index d842d88..e3e5791 100644
> --- a/tools/libxl/libxl_arm.c
> +++ b/tools/libxl/libxl_arm.c
> @@ -1038,6 +1038,26 @@ int libxl__arch_domain_finalise_hw_description(libxl__gc *gc,
>      return 0;
>  }
>  
> +int libxl__arch_build_dom_finish(libxl__gc *gc,
> +                                 libxl_domain_build_info *info,
> +                                 struct xc_dom_image *dom,
> +                                 libxl__domain_build_state *state)
> +{
> +    int ret = 0;
> +
> +    if (info->arch_arm.vuart) {
> +        ret = xc_dom_vpl011_init(CTX->xch,
> +                                 dom->guest_domid,
> +                                 dom->console_domid,
> +                                 dom->vuart_gfn,
> +                                 &state->vuart_port);
> +        if (ret < 0)
> +            LOG(ERROR, "xc_dom_vpl011_init failed\n");
> +    }
> +
> +    return ret;
> +}
> +
>  int libxl__arch_vnuma_build_vmemrange(libxl__gc *gc,
>                                        uint32_t domid,
>                                        libxl_domain_build_info *info,
> diff --git a/tools/libxl/libxl_dom.c b/tools/libxl/libxl_dom.c
> index e0f0d78..5f92023 100644
> --- a/tools/libxl/libxl_dom.c
> +++ b/tools/libxl/libxl_dom.c
> @@ -702,6 +702,10 @@ static int libxl__build_dom(libxl__gc *gc, uint32_t domid,
>          LOGE(ERROR, "xc_dom_gnttab_init failed");
>          goto out;
>      }
> +    if ((ret = libxl__arch_build_dom_finish(gc, info, dom, state)) != 0) {
> +        LOGE(ERROR, "libxl__arch_build_dom_finish failed");
> +        goto out;
> +    }
>  
>  out:
>      return ret != 0 ? ERROR_FAIL : 0;
> diff --git a/tools/libxl/libxl_x86.c b/tools/libxl/libxl_x86.c
> index 455f6f0..0aaeded 100644
> --- a/tools/libxl/libxl_x86.c
> +++ b/tools/libxl/libxl_x86.c
> @@ -391,6 +391,14 @@ int libxl__arch_domain_finalise_hw_description(libxl__gc *gc,
>      return rc;
>  }
>  
> +int libxl__arch_build_dom_finish(libxl__gc *gc,
> +                                 libxl_domain_build_info *info,
> +                                 struct xc_dom_image *dom,
> +                                 libxl__domain_build_state *state)
> +{
> +    return 0;
> +}
> +
>  /* Return 0 on success, ERROR_* on failure. */
>  int libxl__arch_vnuma_build_vmemrange(libxl__gc *gc,
>                                        uint32_t domid,
> diff --git a/xen/arch/arm/domain.c b/xen/arch/arm/domain.c
> index 2dc8b0a..a1cf0b3 100644
> --- a/xen/arch/arm/domain.c
> +++ b/xen/arch/arm/domain.c
> @@ -672,6 +672,11 @@ fail:
>  
>  void arch_domain_destroy(struct domain *d)
>  {
> +    /*
> +     * vpl011 is initialized via a DOMCTL call XEN_DOMCTL_vuart_op.
> +     */
> +    domain_vpl011_deinit(d);
> +
>      /* IOMMU page table is shared with P2M, always call
>       * iommu_domain_destroy() before p2m_teardown().
>       */
> diff --git a/xen/arch/arm/domctl.c b/xen/arch/arm/domctl.c
> index db6838d..64a4366 100644
> --- a/xen/arch/arm/domctl.c
> +++ b/xen/arch/arm/domctl.c
> @@ -5,9 +5,11 @@
>   */
>  
>  #include <xen/errno.h>
> +#include <xen/guest_access.h>
>  #include <xen/hypercall.h>
>  #include <xen/iocap.h>
>  #include <xen/lib.h>
> +#include <xen/mm.h>
>  #include <xen/sched.h>
>  #include <xen/types.h>
>  #include <xsm/xsm.h>
> @@ -119,6 +121,41 @@ long arch_do_domctl(struct xen_domctl *domctl, struct domain *d,
>          d->disable_migrate = domctl->u.disable_migrate.disable;
>          return 0;
>  
> +    case XEN_DOMCTL_vuart_op:
> +    {
> +        int rc;
> +        struct xen_domctl_vuart_op *vuart_op = &domctl->u.vuart_op;
> +
> +        switch(vuart_op->cmd)
> +        {
> +        case XEN_DOMCTL_VUART_OP_INIT:
> +
> +            if ( !d->creation_finished )
> +            {
> +                struct vpl011_init_info info;
> +
> +                info.console_domid = vuart_op->console_domid;
> +                info.gfn = _gfn(vuart_op->gfn);
> +
> +                rc = domain_vpl011_init(d, &info);
> +                if ( !rc )
> +                {
> +                    vuart_op->evtchn = info.evtchn;
> +                    rc = __copy_to_guest(u_domctl, domctl, 1);
> +                }
> +            }
> +            else
> +                rc = - EPERM;
> +
> +            break;
> +
> +        default:
> +            rc = -EINVAL;
> +            break;
> +        }
> +
> +        return rc;
> +    }
>      default:
>      {
>          int rc;
> diff --git a/xen/include/public/domctl.h b/xen/include/public/domctl.h
> index ff39762..f70b7a4 100644
> --- a/xen/include/public/domctl.h
> +++ b/xen/include/public/domctl.h
> @@ -36,6 +36,7 @@
>  #include "grant_table.h"
>  #include "hvm/save.h"
>  #include "memory.h"
> +#include "event_channel.h"
>  
>  #define XEN_DOMCTL_INTERFACE_VERSION 0x0000000e
>  
> @@ -1146,6 +1147,24 @@ struct xen_domctl_psr_cat_op {
>      uint32_t target;    /* IN */
>      uint64_t data;      /* IN/OUT */
>  };
> +
> +struct xen_domctl_vuart_op {
> +#define XEN_DOMCTL_VUART_OP_INIT  0
> +        uint32_t cmd;           /* XEN_DOMCTL_VUART_OP_* */
> +        uint32_t console_domid; /* IN */

shouldn't this be domid_t?


> +#define XEN_DOMCTL_VUART_TYPE_VPL011 0
> +        uint32_t type;          /* IN - type of vuart.
> +                                 *      Currently only vpl011 supported.
> +                                 */
> +        xen_pfn_t gfn;          /* IN - guest gfn to be used as a
> +                                 *      ring buffer.
> +                                 */
> +        evtchn_port_t evtchn;   /* OUT - remote port of the event
> +                                 *       channel used for sending
> +                                 *       ring buffer events.
> +                                 */
> +};
> +
>  typedef struct xen_domctl_psr_cat_op xen_domctl_psr_cat_op_t;
>  DEFINE_XEN_GUEST_HANDLE(xen_domctl_psr_cat_op_t);
>  
> @@ -1226,6 +1245,7 @@ struct xen_domctl {
>  #define XEN_DOMCTL_monitor_op                    77
>  #define XEN_DOMCTL_psr_cat_op                    78
>  #define XEN_DOMCTL_soft_reset                    79
> +#define XEN_DOMCTL_vuart_op                      80
>  #define XEN_DOMCTL_gdbsx_guestmemio            1000
>  #define XEN_DOMCTL_gdbsx_pausevcpu             1001
>  #define XEN_DOMCTL_gdbsx_unpausevcpu           1002
> @@ -1288,6 +1308,7 @@ struct xen_domctl {
>          struct xen_domctl_psr_cmt_op        psr_cmt_op;
>          struct xen_domctl_monitor_op        monitor_op;
>          struct xen_domctl_psr_cat_op        psr_cat_op;
> +        struct xen_domctl_vuart_op          vuart_op;
>          uint8_t                             pad[128];
>      } u;
>  };
> -- 
> 2.7.4
> 

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
https://lists.xen.org/xen-devel

  parent reply	other threads:[~2017-07-18 19:42 UTC|newest]

Thread overview: 73+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-07-17 13:06 [PATCH 00/25 v6] SBSA UART emulation support in Xen Bhupinder Thakur
2017-07-17 13:06 ` [PATCH 01/25 v6] xen/arm: vpl011: Define common ring buffer helper functions in console.h Bhupinder Thakur
2017-07-17 13:06 ` [PATCH 02/25 v6] xen/arm: vpl011: Add SBSA UART emulation in Xen Bhupinder Thakur
2017-07-17 16:39   ` Julien Grall
2017-07-18 19:35   ` Stefano Stabellini
2017-07-17 13:06 ` [PATCH 03/25 v6] xen/arm: vpl011: Allocate a new GFN in the toolstack for vuart Bhupinder Thakur
2017-07-17 13:06 ` [PATCH 04/25 v6] xen/arm: vpl011: Add support for vuart in libxl Bhupinder Thakur
2017-07-18 11:19   ` Julien Grall
2017-07-18 11:30     ` Wei Liu
2017-07-25 17:38       ` Bhupinder Thakur
2017-07-28 13:49         ` Wei Liu
2017-07-28 14:14           ` Julien Grall
2017-07-28 14:42             ` Wei Liu
2017-07-28 14:46               ` Julien Grall
2017-07-17 13:06 ` [PATCH 05/25 v6] xen/arm: vpl011: Rearrange xen header includes in alphabetical order in domctl.c Bhupinder Thakur
2017-07-17 16:42   ` Julien Grall
2017-07-17 13:06 ` [PATCH 06/25 v6] xen/arm: vpl011: Add a new domctl API to initialize vpl011 Bhupinder Thakur
2017-07-17 17:03   ` Julien Grall
2017-07-18 19:42   ` Stefano Stabellini [this message]
2017-07-17 13:06 ` [PATCH 07/25 v6] xen/arm: vpl011: Add a new vuart node in the xenstore Bhupinder Thakur
2017-07-17 13:06 ` [PATCH 08/25 v6] xen/arm: vpl011: Modify xenconsole to define and use a new console structure Bhupinder Thakur
2017-07-17 13:06 ` [PATCH 09/25 v6] xen/arm: vpl011: Rename the console structure field conspath to xspath Bhupinder Thakur
2017-07-17 13:06 ` [PATCH 10/25 v6] xen/arm: vpl011: Modify xenconsole functions to take console structure as input Bhupinder Thakur
2017-07-17 13:06 ` [PATCH 11/25 v6] xen/arm: vpl011: Add a new console_init function in xenconsole Bhupinder Thakur
2017-07-18 11:40   ` Wei Liu
2017-08-07  5:32     ` Bhupinder Thakur
2017-07-17 13:06 ` [PATCH 12/25 v6] xen/arm: vpl011: Add a new buffer_available " Bhupinder Thakur
2017-07-18 11:40   ` Wei Liu
2017-07-18 19:47   ` Stefano Stabellini
2017-07-17 13:06 ` [PATCH 13/25 v6] xen/arm: vpl011: Add a new add_console_evtchn_fd " Bhupinder Thakur
2017-07-18 11:52   ` Wei Liu
2017-07-20 13:55     ` Bhupinder Thakur
2017-07-17 13:06 ` [PATCH 14/25 v6] xen/arm: vpl011: Add a new add_console_tty_fd " Bhupinder Thakur
2017-07-18 11:52   ` Wei Liu
2017-07-18 19:48   ` Stefano Stabellini
2017-07-17 13:06 ` [PATCH 15/25 v6] xen/arm: vpl011: Add a new console_evtchn_unmask " Bhupinder Thakur
2017-07-18 11:57   ` Wei Liu
2017-07-17 13:06 ` [PATCH 16/25 v6] xen/arm: vpl011: Add a new handle_console_ring " Bhupinder Thakur
2017-07-18 13:12   ` Wei Liu
2017-07-18 19:51   ` Stefano Stabellini
2017-07-17 13:06 ` [PATCH 17/25 v6] xen/arm: vpl011: Add a new handle_console_tty " Bhupinder Thakur
2017-07-18 13:13   ` Wei Liu
2017-07-18 19:51   ` Stefano Stabellini
2017-07-17 13:06 ` [PATCH 18/25 v6] xen/arm: vpl011: Add a new console_cleanup " Bhupinder Thakur
2017-07-18 13:14   ` Wei Liu
2017-07-18 19:54   ` Stefano Stabellini
2017-07-17 13:06 ` [PATCH 19/25 v6] xen/arm: vpl011: Add a new console_open_log " Bhupinder Thakur
2017-07-18 19:55   ` Stefano Stabellini
2017-07-17 13:06 ` [PATCH 20/25 v6] xen/arm: vpl011: Add a new console_close_evtchn " Bhupinder Thakur
2017-07-18 13:14   ` Wei Liu
2017-07-18 19:56   ` Stefano Stabellini
2017-07-17 13:06 ` [PATCH 21/25 v6] xen/arm: vpl011: Add support for multiple consoles " Bhupinder Thakur
2017-07-18 13:24   ` Wei Liu
2017-07-18 20:01   ` Stefano Stabellini
2017-07-17 13:06 ` [PATCH 22/25 v6] xen/arm: vpl011: Add support for vuart console " Bhupinder Thakur
2017-07-18 13:27   ` Wei Liu
2017-07-18 20:07   ` Stefano Stabellini
2017-07-21  6:02     ` Bhupinder Thakur
2017-07-21  9:51     ` Julien Grall
2017-07-21 19:44       ` Stefano Stabellini
2017-07-25  9:06         ` Bhupinder Thakur
2017-07-25 17:44           ` Stefano Stabellini
2017-07-25 12:29         ` Julien Grall
2017-07-25 17:39           ` Stefano Stabellini
2017-07-17 13:06 ` [PATCH 23/25 v6] xen/arm: vpl011: Add a new vuart console type to xenconsole client Bhupinder Thakur
2017-07-17 13:06 ` [PATCH 24/25 v6] xen/arm: vpl011: Add a pl011 uart DT node in the guest device tree Bhupinder Thakur
2017-07-18 11:04   ` Julien Grall
2017-07-21  6:35     ` Bhupinder Thakur
2017-07-17 13:06 ` [PATCH 25/25 v6] xen/arm: vpl011: Update documentation for vuart console support Bhupinder Thakur
2017-07-18 11:11   ` Julien Grall
2017-07-19 15:27 ` [PATCH 00/25 v6] SBSA UART emulation support in Xen Julien Grall
2017-07-20  9:40   ` Bhupinder Thakur
2017-07-20 10:04     ` Julien Grall

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=alpine.DEB.2.10.1707181240190.2841@sstabellini-ThinkPad-X260 \
    --to=sstabellini@kernel.org \
    --cc=bhupinder.thakur@linaro.org \
    --cc=ian.jackson@eu.citrix.com \
    --cc=julien.grall@arm.com \
    --cc=wei.liu2@citrix.com \
    --cc=xen-devel@lists.xenproject.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.