From: vijay.kilari@gmail.com
To: Ian.Campbell@citrix.com, julien.grall@linaro.org,
stefano.stabellini@eu.citrix.com, stefano.stabellini@citrix.com,
tim@xen.org, xen-devel@lists.xen.org
Cc: Prasun.Kapoor@caviumnetworks.com,
Vijaya Kumar K <Vijaya.Kumar@caviumnetworks.com>,
manish.jaggi@caviumnetworks.com, vijay.kilari@gmail.com
Subject: [PATCH for-4.5 v11 0/7] xen/arm: Add GICv3 support
Date: Fri, 12 Sep 2014 16:39:42 +0530 [thread overview]
Message-ID: <1410520189-9086-1-git-send-email-vijay.kilari@gmail.com> (raw)
From: Vijaya Kumar K <Vijaya.Kumar@caviumnetworks.com>
Add GICv3 support for arm64 platform.
>From v6 version, this patch series is split into v6a and v6.
All the GICv2 and VGIC code refactoring patches of v6a are merged.
The v8 version of GICv3 patches are posted here.
Tested with ARM64 simulator with multicore core
and booted Dom0 kernel.
Major changes in v11:
- use vgic_rank_irq
- rename vgicv3_..() to vgic_v3_..()
Major changes in v10:
- Made irq rank calculation generic
- Fixed issue of rank calculation for 64 bit reg size
- Implemented callback for reading irq priority and
getting vcpu target for vgic-v3
Major changes in v9:
- Rebased on top of Stephano's patches in staging branch
- Added 2 more fixes for generic GICv2 code to make it
generic for GICV3
- Fixed alignment
- Removed unsed PIDR2 macros
Major changes in v8:
- Introduced assembler aliases for GIC system registers
to be able to compile with Linaro toolchain
- Few PIDRn macros definitions are moved to vgic-v3.c
- Introduced 2 more patches. Patch 1 for introducing
sizes.h file and Patch 2 for {READ,WRITE}_SYSREG macro changes
Major changes in v7:
- Introduced vgic callback to handle sysreg emulation
- Coding style fixes
- undef64_exception instead of undef_exception for sysreg error
Vijaya Kumar K (7):
xen/arm: Calculate irq rank from irq number
xen/arm: Add vgic callback to read irq priority
xen/arm: Add support for GIC v3
xen/arm: Add virtual GICv3 support
xen/arm: Update Dom0 GIC dt node with GICv3 information
xen/arm: add SGI handling for GICv3
xen/arm: check for GICv3 platform support
xen/arch/arm/Makefile | 2 +
xen/arch/arm/domain_build.c | 47 +-
xen/arch/arm/gic-v2.c | 51 ++
xen/arch/arm/gic-v3.c | 1285 +++++++++++++++++++++++++++++++++++++
xen/arch/arm/gic.c | 6 +
xen/arch/arm/setup.c | 5 +-
xen/arch/arm/traps.c | 15 +
xen/arch/arm/vgic-v2.c | 35 +-
xen/arch/arm/vgic-v3.c | 1007 +++++++++++++++++++++++++++++
xen/arch/arm/vgic.c | 38 +-
xen/include/asm-arm/cpufeature.h | 1 +
xen/include/asm-arm/domain.h | 8 +
xen/include/asm-arm/gic.h | 24 +
xen/include/asm-arm/gic_v3_defs.h | 161 +++++
xen/include/asm-arm/processor.h | 17 +-
xen/include/asm-arm/sysregs.h | 56 ++
xen/include/asm-arm/vgic.h | 23 +-
17 files changed, 2711 insertions(+), 70 deletions(-)
create mode 100644 xen/arch/arm/gic-v3.c
create mode 100644 xen/arch/arm/vgic-v3.c
create mode 100644 xen/include/asm-arm/gic_v3_defs.h
--
1.7.9.5
next reply other threads:[~2014-09-12 11:09 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-09-12 11:09 vijay.kilari [this message]
2014-09-12 11:09 ` [PATCH for-4.5 v11 1/7] xen/arm: Calculate irq rank from irq number vijay.kilari
2014-09-12 11:09 ` [PATCH for-4.5 v11 2/7] xen/arm: Add vgic callback to read irq priority vijay.kilari
2014-09-12 18:08 ` Stefano Stabellini
2014-09-15 6:15 ` Vijay Kilari
2014-09-15 19:05 ` Stefano Stabellini
2014-09-15 22:09 ` Ian Campbell
2014-09-16 6:49 ` Vijay Kilari
2014-09-23 13:01 ` Stefano Stabellini
2014-09-23 13:09 ` Vijay Kilari
2014-09-12 11:09 ` [PATCH for-4.5 v11 3/7] xen/arm: Add support for GIC v3 vijay.kilari
2014-09-12 11:09 ` [PATCH for-4.5 v11 4/7] xen/arm: Add virtual GICv3 support vijay.kilari
2014-09-12 18:15 ` Stefano Stabellini
2014-09-12 11:09 ` [PATCH for-4.5 v11 5/7] xen/arm: Update Dom0 GIC dt node with GICv3 information vijay.kilari
2014-09-12 11:09 ` [PATCH for-4.5 v11 6/7] xen/arm: add SGI handling for GICv3 vijay.kilari
2014-09-12 11:09 ` [PATCH for-4.5 v11 7/7] xen/arm: check for GICv3 platform support vijay.kilari
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=1410520189-9086-1-git-send-email-vijay.kilari@gmail.com \
--to=vijay.kilari@gmail.com \
--cc=Ian.Campbell@citrix.com \
--cc=Prasun.Kapoor@caviumnetworks.com \
--cc=Vijaya.Kumar@caviumnetworks.com \
--cc=julien.grall@linaro.org \
--cc=manish.jaggi@caviumnetworks.com \
--cc=stefano.stabellini@citrix.com \
--cc=stefano.stabellini@eu.citrix.com \
--cc=tim@xen.org \
--cc=xen-devel@lists.xen.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).