All of lore.kernel.org
 help / color / mirror / Atom feed
From: Kumar Gala <kumar.gala@freescale.com>
To: Timur Tabi <timur@freescale.com>
Cc: <benh@kernel.crashing.org>, <greg@kroah.com>, <akpm@kernel.org>,
	<linuxppc-dev@lists.ozlabs.org>, <linux-kernel@vger.kernel.org>,
	<linux-console@vger.kernel.org>
Subject: Re: [PATCH 3/7] powerpc: introduce the ePAPR embedded hypervisor vmpic driver
Date: Wed, 22 Jun 2011 06:41:41 -0500	[thread overview]
Message-ID: <735A6D65-99B3-40BE-A842-F37D8D7D5D5B@freescale.com> (raw)
In-Reply-To: <1305813272-31826-4-git-send-email-timur@freescale.com>


On May 19, 2011, at 8:54 AM, Timur Tabi wrote:

> From: Ashish Kalra <ashish.kalra@freescale.com>
> 
> The Freescale ePAPR reference hypervisor provides interrupt controller services
> via a hypercall interface, instead of emulating the MPIC controller.  This is
> called the VMPIC.
> 
> The ePAPR "virtual interrupt controller" provides interrupt controller services
> for external interrupts.  External interrupts received by a partition can come
> from two sources:
> 
>  - Hardware interrupts - hardware interrupts come from external
>    interrupt lines or on-chip I/O devices.
>  - Virtual interrupts - virtual interrupts are generated by the hypervisor
>    as part of some hypervisor service or hypervisor-created virtual device.
> 
> Both types of interrupts are processed using the same programming model and
> same set of hypercalls.
> 
> Signed-off-by: Ashish Kalra <ashish.kalra@freescale.com>
> Signed-off-by: Timur Tabi <timur@freescale.com>
> ---
> arch/powerpc/include/asm/ehv_pic.h |   40 +++++
> arch/powerpc/platforms/Kconfig     |    4 +
> arch/powerpc/sysdev/Makefile       |    1 +
> arch/powerpc/sysdev/ehv_pic.c      |  302 ++++++++++++++++++++++++++++++++++++
> 4 files changed, 347 insertions(+), 0 deletions(-)
> create mode 100644 arch/powerpc/include/asm/ehv_pic.h
> create mode 100644 arch/powerpc/sysdev/ehv_pic.c

applied to next

- k

WARNING: multiple messages have this Message-ID (diff)
From: Kumar Gala <kumar.gala@freescale.com>
To: Timur Tabi <timur@freescale.com>
Cc: linux-kernel@vger.kernel.org, akpm@kernel.org,
	linux-console@vger.kernel.org, greg@kroah.com,
	linuxppc-dev@lists.ozlabs.org
Subject: Re: [PATCH 3/7] powerpc: introduce the ePAPR embedded hypervisor vmpic driver
Date: Wed, 22 Jun 2011 06:41:41 -0500	[thread overview]
Message-ID: <735A6D65-99B3-40BE-A842-F37D8D7D5D5B@freescale.com> (raw)
In-Reply-To: <1305813272-31826-4-git-send-email-timur@freescale.com>


On May 19, 2011, at 8:54 AM, Timur Tabi wrote:

> From: Ashish Kalra <ashish.kalra@freescale.com>
>=20
> The Freescale ePAPR reference hypervisor provides interrupt controller =
services
> via a hypercall interface, instead of emulating the MPIC controller.  =
This is
> called the VMPIC.
>=20
> The ePAPR "virtual interrupt controller" provides interrupt controller =
services
> for external interrupts.  External interrupts received by a partition =
can come
> from two sources:
>=20
>  - Hardware interrupts - hardware interrupts come from external
>    interrupt lines or on-chip I/O devices.
>  - Virtual interrupts - virtual interrupts are generated by the =
hypervisor
>    as part of some hypervisor service or hypervisor-created virtual =
device.
>=20
> Both types of interrupts are processed using the same programming =
model and
> same set of hypercalls.
>=20
> Signed-off-by: Ashish Kalra <ashish.kalra@freescale.com>
> Signed-off-by: Timur Tabi <timur@freescale.com>
> ---
> arch/powerpc/include/asm/ehv_pic.h |   40 +++++
> arch/powerpc/platforms/Kconfig     |    4 +
> arch/powerpc/sysdev/Makefile       |    1 +
> arch/powerpc/sysdev/ehv_pic.c      |  302 =
++++++++++++++++++++++++++++++++++++
> 4 files changed, 347 insertions(+), 0 deletions(-)
> create mode 100644 arch/powerpc/include/asm/ehv_pic.h
> create mode 100644 arch/powerpc/sysdev/ehv_pic.c

applied to next

- k=

WARNING: multiple messages have this Message-ID (diff)
From: Kumar Gala <kumar.gala@freescale.com>
To: Timur Tabi <timur@freescale.com>
Cc: benh@kernel.crashing.org, greg@kroah.com, akpm@kernel.org,
	linuxppc-dev@lists.ozlabs.org, linux-kernel@vger.kernel.org,
	linux-console@vger.kernel.org
Subject: Re: [PATCH 3/7] powerpc: introduce the ePAPR embedded hypervisor vmpic driver
Date: Wed, 22 Jun 2011 06:41:41 -0500	[thread overview]
Message-ID: <735A6D65-99B3-40BE-A842-F37D8D7D5D5B@freescale.com> (raw)
In-Reply-To: <1305813272-31826-4-git-send-email-timur@freescale.com>


On May 19, 2011, at 8:54 AM, Timur Tabi wrote:

> From: Ashish Kalra <ashish.kalra@freescale.com>
> 
> The Freescale ePAPR reference hypervisor provides interrupt controller services
> via a hypercall interface, instead of emulating the MPIC controller.  This is
> called the VMPIC.
> 
> The ePAPR "virtual interrupt controller" provides interrupt controller services
> for external interrupts.  External interrupts received by a partition can come
> from two sources:
> 
>  - Hardware interrupts - hardware interrupts come from external
>    interrupt lines or on-chip I/O devices.
>  - Virtual interrupts - virtual interrupts are generated by the hypervisor
>    as part of some hypervisor service or hypervisor-created virtual device.
> 
> Both types of interrupts are processed using the same programming model and
> same set of hypercalls.
> 
> Signed-off-by: Ashish Kalra <ashish.kalra@freescale.com>
> Signed-off-by: Timur Tabi <timur@freescale.com>
> ---
> arch/powerpc/include/asm/ehv_pic.h |   40 +++++
> arch/powerpc/platforms/Kconfig     |    4 +
> arch/powerpc/sysdev/Makefile       |    1 +
> arch/powerpc/sysdev/ehv_pic.c      |  302 ++++++++++++++++++++++++++++++++++++
> 4 files changed, 347 insertions(+), 0 deletions(-)
> create mode 100644 arch/powerpc/include/asm/ehv_pic.h
> create mode 100644 arch/powerpc/sysdev/ehv_pic.c

applied to next

- k

  reply	other threads:[~2011-06-22 11:41 UTC|newest]

Thread overview: 85+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-05-19 13:54 [PATCH 0/7] This patchset adds support for running Linux under the Freescale hypervisor, Timur Tabi
2011-05-19 13:54 ` Timur Tabi
2011-05-19 13:54 ` [PATCH 1/7] powerpc: make irq_choose_cpu() available to all PIC drivers Timur Tabi
2011-05-19 13:54   ` Timur Tabi
2011-06-22 11:41   ` Kumar Gala
2011-06-22 11:41     ` Kumar Gala
2011-06-22 11:41     ` Kumar Gala
2011-05-19 13:54 ` [PATCH 2/7] powerpc: introduce ePAPR embedded hypervisor hcall interface Timur Tabi
2011-05-19 13:54   ` Timur Tabi
2011-06-22 11:41   ` Kumar Gala
2011-06-22 11:41     ` Kumar Gala
2011-06-22 11:41     ` Kumar Gala
2011-05-19 13:54 ` [PATCH 3/7] powerpc: introduce the ePAPR embedded hypervisor vmpic driver Timur Tabi
2011-05-19 13:54   ` Timur Tabi
2011-06-22 11:41   ` Kumar Gala [this message]
2011-06-22 11:41     ` Kumar Gala
2011-06-22 11:41     ` Kumar Gala
2011-05-19 13:54 ` [PATCH 4/7] powerpc: add Freescale hypervisor partition control functions Timur Tabi
2011-05-19 13:54   ` Timur Tabi
2011-06-22 11:41   ` Kumar Gala
2011-06-22 11:41     ` Kumar Gala
2011-06-22 11:41     ` Kumar Gala
2011-05-19 13:54 ` [PATCH 5/7] powerpc/85xx: add board support for the Freescale hypervisor Timur Tabi
2011-05-19 13:54   ` Timur Tabi
2011-06-22 11:42   ` Kumar Gala
2011-06-22 11:42     ` Kumar Gala
2011-06-22 11:42     ` Kumar Gala
2011-05-19 13:54 ` [PATCH 6/7] tty/powerpc: introduce the ePAPR embedded hypervisor byte channel driver Timur Tabi
2011-05-19 13:54   ` Timur Tabi
2011-05-19 14:22   ` Greg KH
2011-05-19 14:22     ` Greg KH
2011-05-19 14:27     ` Timur Tabi
2011-05-19 14:27       ` Timur Tabi
2011-05-19 14:27       ` Timur Tabi
2011-05-19 14:36     ` Alan Cox
2011-05-19 14:36       ` Alan Cox
2011-05-19 14:33   ` Alan Cox
2011-05-19 14:33     ` Alan Cox
2011-05-19 14:33     ` Alan Cox
2011-05-19 15:14     ` Timur Tabi
2011-05-19 15:14       ` Timur Tabi
2011-05-19 15:14       ` Timur Tabi
2011-05-19 15:50       ` Alan Cox
2011-05-19 15:50         ` Alan Cox
2011-05-19 15:50         ` Alan Cox
2011-05-19 15:54         ` Timur Tabi
2011-05-19 15:54           ` Timur Tabi
2011-05-19 15:54           ` Timur Tabi
2011-05-19 16:00           ` Alan Cox
2011-05-19 16:00             ` Alan Cox
2011-05-19 16:00             ` Alan Cox
2011-05-19 16:02           ` Greg KH
2011-05-19 16:02             ` Greg KH
2011-05-19 16:18             ` Timur Tabi
2011-05-19 16:18               ` Timur Tabi
2011-05-19 16:18               ` Timur Tabi
2011-05-19 16:05     ` Timur Tabi
2011-05-19 16:05       ` Timur Tabi
2011-05-19 16:05       ` Timur Tabi
2011-05-20  9:54       ` Alan Cox
2011-05-20  9:54         ` Alan Cox
2011-05-20  9:54         ` Alan Cox
2011-05-19 16:31     ` Timur Tabi
2011-05-19 16:31       ` Timur Tabi
2011-05-19 16:31       ` Timur Tabi
2011-05-19 17:25       ` Alan Cox
2011-05-19 17:25         ` Alan Cox
2011-05-19 17:25         ` Alan Cox
2011-05-19 15:02   ` Arnd Bergmann
2011-05-19 15:02     ` Arnd Bergmann
2011-05-19 15:09     ` Timur Tabi
2011-05-19 15:09       ` Timur Tabi
2011-05-19 15:09       ` Timur Tabi
2011-05-19 13:54 ` [PATCH 7/7] drivers/misc: introduce Freescale hypervisor management driver Timur Tabi
2011-05-19 13:54   ` Timur Tabi
2011-05-19 13:56 ` [PATCH 0/7] This patchset adds support for running Linux under the Freescale hypervisor, Timur Tabi
2011-05-19 13:56   ` Timur Tabi
2011-05-20 20:29 ` Kumar Gala
2011-05-20 20:29   ` Kumar Gala
2011-05-20 20:29   ` Kumar Gala
2011-05-23 21:09   ` Tabi Timur-B04825
2011-05-23 21:09     ` Tabi Timur-B04825
2011-05-23 21:09     ` Tabi Timur-B04825
2011-05-23 22:27     ` Kumar Gala
2011-05-23 22:27       ` Kumar Gala

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=735A6D65-99B3-40BE-A842-F37D8D7D5D5B@freescale.com \
    --to=kumar.gala@freescale.com \
    --cc=akpm@kernel.org \
    --cc=benh@kernel.crashing.org \
    --cc=greg@kroah.com \
    --cc=linux-console@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linuxppc-dev@lists.ozlabs.org \
    --cc=timur@freescale.com \
    /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.