Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1243464 > unrolled thread
| Started by | Marc Zyngier <marc.zyngier@arm.com> |
|---|---|
| First post | 2015-10-09 17:30 +0200 |
| Last post | 2015-10-09 23:30 +0200 |
| Articles | 3 — 2 participants |
Back to article view | Back to linux.kernel
[PULL] GIC changes for Linux 4.4 Marc Zyngier <marc.zyngier@arm.com> - 2015-10-09 17:30 +0200
Re: [PULL] GIC changes for Linux 4.4 Thomas Gleixner <tglx@linutronix.de> - 2015-10-09 23:00 +0200
Re: [PULL] GIC changes for Linux 4.4 Marc Zyngier <marc.zyngier@arm.com> - 2015-10-09 23:30 +0200
| From | Marc Zyngier <marc.zyngier@arm.com> |
|---|---|
| Date | 2015-10-09 17:30 +0200 |
| Subject | [PULL] GIC changes for Linux 4.4 |
| Message-ID | <qhHMl-63K-3@gated-at.bofh.it> |
Hi Thomas, Jason,
Here's the pull request for the GIC updates I stashed over the past
few weeks. Only real new feature is the 32bit support from
Jean-Philippe, the rest is all about dealing with errata and firmware.
Please pull!
Thanks,
M.
The following changes since commit 049e6dde7e57f0054fdc49102e7ef4830c698b46:
Linux 4.3-rc4 (2015-10-04 16:57:17 +0100)
are available in the git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/maz/arm-platforms.git tags/gic-4.4
for you to fetch changes up to 44a2e8fcc4f41ddf514b7f5e541a64ddb7a00cd7:
arm/arm64: KVM: Only allow 64bit hosts to build VGICv3 (2015-10-09 15:35:11 +0100)
----------------------------------------------------------------
GIC updates for Linux 4.4:
- Enable basic GICv3 support on 32bit ARM (mostly for running VMs with
more than 8 virtual CPUs)
- arm64 changes to deal with firmware limitations that forces a GICv3
to be used as a GICv2
- A GICv2m erratum workaround on Applied Micro X-Gene2
----------------------------------------------------------------
Duc Dang (1):
irqchip/gic-v2m: Add workaround for APM X-Gene GICv2m erratum
Jean-Philippe Brucker (6):
irqchip/gic-v3: Refactor the arm64 specific parts
irqchip/gic-v3: Change unsigned types for AArch32 compatibility
irqchip/gic-v3: Specialize readq and writeq accesses
ARM: add 32bit support to GICv3
ARM: virt: select ARM_GIC_V3
arm/arm64: KVM: Only allow 64bit hosts to build VGICv3
Marc Zyngier (5):
arm64: el2_setup: Make sure ICC_SRE_EL2.SRE sticks before using GICv3 sysregs
irqchip/gic-v3: Make gic_enable_sre an inline function
arm64: cpufeatures: Check ICC_EL1_SRE.SRE before enabling ARM64_HAS_SYSREG_GIC_CPUIF
irqchip/gic: Warn if GICv3 system registers are enabled
arm64: Update booting requirements for GICv3 in GICv2 mode
Documentation/arm64/booting.txt | 11 ++-
arch/arm/Kconfig | 1 +
arch/arm/include/asm/arch_gicv3.h | 188 ++++++++++++++++++++++++++++++++++++
arch/arm64/include/asm/arch_gicv3.h | 148 ++++++++++++++++++++++++++++
arch/arm64/kernel/cpufeature.c | 19 +++-
arch/arm64/kernel/head.S | 2 +
arch/arm64/kvm/Kconfig | 4 +
drivers/irqchip/irq-gic-v2m.c | 22 +++++
drivers/irqchip/irq-gic-v3.c | 94 +++++-------------
drivers/irqchip/irq-gic.c | 15 +++
include/kvm/arm_vgic.h | 4 +-
include/linux/irqchip/arm-gic-v3.h | 102 +++++--------------
virt/kvm/arm/vgic.c | 4 +-
13 files changed, 461 insertions(+), 153 deletions(-)
create mode 100644 arch/arm/include/asm/arch_gicv3.h
create mode 100644 arch/arm64/include/asm/arch_gicv3.h
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[toc] | [next] | [standalone]
| From | Thomas Gleixner <tglx@linutronix.de> |
|---|---|
| Date | 2015-10-09 23:00 +0200 |
| Message-ID | <qhMVI-4VA-9@gated-at.bofh.it> |
| In reply to | #1243464 |
On Fri, 9 Oct 2015, Marc Zyngier wrote: > The following changes since commit 049e6dde7e57f0054fdc49102e7ef4830c698b46: > > Linux 4.3-rc4 (2015-10-04 16:57:17 +0100) That's not the best base. tip irq/core already has gic modifications which conflict. Can you please rebase to tip irq/core? Thanks, tglx -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Marc Zyngier <marc.zyngier@arm.com> |
|---|---|
| Date | 2015-10-09 23:30 +0200 |
| Message-ID | <qhNoJ-5IG-1@gated-at.bofh.it> |
| In reply to | #1243649 |
On Fri, 9 Oct 2015 22:52:48 +0200 Thomas Gleixner <tglx@linutronix.de> wrote: > On Fri, 9 Oct 2015, Marc Zyngier wrote: > > The following changes since commit 049e6dde7e57f0054fdc49102e7ef4830c698b46: > > > > Linux 4.3-rc4 (2015-10-04 16:57:17 +0100) > > That's not the best base. tip irq/core already has gic modifications > which conflict. Can you please rebase to tip irq/core? Damn, completely forgot about the Cavium stuff. Sorry. I'll rebase and resend. Thanks, M. -- Jazz is not dead. It just smells funny. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web