All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/14] target-arm queue
@ 2016-09-06 13:07 Peter Maydell
  2016-09-06 13:07 ` [Qemu-devel] [PULL 01/14] ast2400: add a memory controller device model Peter Maydell
                   ` (14 more replies)
  0 siblings, 15 replies; 23+ messages in thread
From: Peter Maydell @ 2016-09-06 13:07 UTC (permalink / raw)
  To: qemu-devel

First ARM pull request of 2.8; biggest thing here is the ast2500
work; otherwise just a few bugfixes.

thanks
-- PMM

The following changes since commit 30e7d092b26146eb2abb77e0a0952aea012e36bf:

  Merge remote-tracking branch 'remotes/stefanha/tags/tracing-pull-request' into staging (2016-09-06 12:41:24 +0100)

are available in the git repository at:

  git://git.linaro.org/people/pmaydell/qemu-arm.git tags/pull-target-arm-20160906

for you to fetch changes up to da41ac9ca3fd378c8a5854da3b2376524010bea4:

  block: m25p80: Fix vmstate structure name (2016-09-06 14:01:56 +0100)

----------------------------------------------------------------
target-arm queue:
 * new ast2500 SoC model
 * fix incorrect LPAE bit in FSR for alignment faults
 * ACPI: fix the AML ID format for CPU devices to work for
   large numbers of CPUs
 * ast2400: add memory controller device model
 * m25p80: fix the vmstate structure name (migration break)

----------------------------------------------------------------
Cédric Le Goater (11):
      ast2400: add a memory controller device model
      ast2400: rename the Aspeed SoC files to aspeed_soc
      ast2400: replace ast2400 with aspeed_soc
      aspeed-soc: provide a framework to add new SoCs
      palmetto-bmc: rename the Aspeed board file to aspeed.c
      palmetto-bmc: replace palmetto_bmc with aspeed
      palmetto-bmc: add board specific configuration
      hw/misc: use macros to define hw-strap1 register on the AST2400 Aspeed SoC
      aspeed: add a ast2500 SoC and support to the SCU and SDMC controllers
      arm: add support for an ast2500 evaluation board
      palmetto-bmc: remove extra no_sdcard assignement

Marcin Krzeminski (1):
      block: m25p80: Fix vmstate structure name

Sergey Sorokin (1):
      target-arm: Fix lpae bit in FSR on an alignment fault

Wei Huang (1):
      ARM: ACPI: fix the AML ID format for CPU devices

 hw/arm/Makefile.objs               |   2 +-
 hw/arm/aspeed.c                    | 187 ++++++++++++++++++++++++++
 hw/arm/{ast2400.c => aspeed_soc.c} | 133 ++++++++++++-------
 hw/arm/palmetto-bmc.c              | 102 --------------
 hw/arm/virt-acpi-build.c           |   2 +-
 hw/block/m25p80.c                  |  29 ++--
 hw/misc/Makefile.objs              |   2 +-
 hw/misc/aspeed_scu.c               |  45 ++++++-
 hw/misc/aspeed_sdmc.c              | 264 +++++++++++++++++++++++++++++++++++++
 include/hw/arm/aspeed_soc.h        |  59 +++++++++
 include/hw/arm/ast2400.h           |  42 ------
 include/hw/misc/aspeed_scu.h       | 193 +++++++++++++++++++++++++++
 include/hw/misc/aspeed_sdmc.h      |  31 +++++
 target-arm/op_helper.c             |   2 +-
 14 files changed, 881 insertions(+), 212 deletions(-)
 create mode 100644 hw/arm/aspeed.c
 rename hw/arm/{ast2400.c => aspeed_soc.c} (55%)
 delete mode 100644 hw/arm/palmetto-bmc.c
 create mode 100644 hw/misc/aspeed_sdmc.c
 create mode 100644 include/hw/arm/aspeed_soc.h
 delete mode 100644 include/hw/arm/ast2400.h
 create mode 100644 include/hw/misc/aspeed_sdmc.h

^ permalink raw reply	[flat|nested] 23+ messages in thread
* [Qemu-devel] [PULL 00/14] target-arm queue
@ 2014-06-19 17:36 Peter Maydell
  2014-06-20 17:00 ` Peter Maydell
  0 siblings, 1 reply; 23+ messages in thread
From: Peter Maydell @ 2014-06-19 17:36 UTC (permalink / raw)
  To: qemu-devel

target-arm queue: mostly fairly minor stuff, apart from the PSCI
patches, which have been on the list for some time.

I meant to put this out earlier in the week but got hit by an
urgent deadline...

thanks
-- PMM

The following changes since commit 6baa963f4dcc211801608ebe1e0482b51653350c:

  Merge remote-tracking branch 'remotes/bonzini/scsi-next' into staging (2014-06-19 16:18:04 +0100)

are available in the git repository at:


  git://git.linaro.org/people/pmaydell/qemu-arm.git tags/pull-target-arm-20140619

for you to fetch changes up to b6fb3a89e3cd173153f1edc4edbf970987b4ebdd:

  armv7m_nvic: fix AIRCR implementation (2014-06-19 18:33:05 +0100)

----------------------------------------------------------------
target-arm:
 * Support PSCI 0.2 when using KVM
 * fix AIRCR reset value for v7M CPUs
 * report correct size information for pflash_cfi01
 * minor coverity fixes
 * avoid warnings on Windows builds due to #define clash
 * implement TTBCR PD0/PD1 bits

----------------------------------------------------------------
Fabian Aggeler (1):
      target-arm: implement PD0/PD1 bits for TTBCR

Oran Avraham (1):
      armv7m_nvic: fix AIRCR implementation

Peter Maydell (6):
      hw/arm/spitz: Avoid clash with Windows header symbol MOD_SHIFT
      target-arm: Add ULL suffix to calculation of page size
      target-arm/translate-a64.c: Remove dead ?: in disas_simd_3same_int()
      target-arm/translate-a64.c: Fix dead ?: in handle_simd_shift_fpint_conv()
      hw/arm/vexpress: Forbid specifying flash contents in two ways at once
      hw/block/pflash_cfi01: Report correct size info for parallel configs

Pranavkumar Sawargaonkar (6):
      kvm: Handle exit reason KVM_EXIT_SYSTEM_EVENT
      target-arm: Common kvm_arm_vcpu_init() for KVM ARM and KVM ARM64
      target-arm: Enable KVM_ARM_VCPU_PSCI_0_2 feature when possible
      target-arm: Implement kvm_arch_reset_vcpu() for KVM ARM64
      target-arm: Introduce per-CPU field for PSCI version
      Use PSCI v0.2 compatible string when KVM or TCG provides it

 hw/arm/spitz.c             | 108 ++++++++++++++++++++++++---------------------
 hw/arm/vexpress.c          |  10 ++++-
 hw/arm/virt.c              |  16 ++++++-
 hw/block/pflash_cfi01.c    |  20 +++++++--
 hw/intc/armv7m_nvic.c      |   5 ++-
 kvm-all.c                  |  16 +++++++
 target-arm/cpu-qom.h       |   9 ++++
 target-arm/cpu.c           |   1 +
 target-arm/cpu.h           |  16 +++++++
 target-arm/helper.c        |  64 +++++++++++++++++++--------
 target-arm/kvm.c           |  11 +++++
 target-arm/kvm32.c         |  16 ++++---
 target-arm/kvm64.c         |  26 ++++++++---
 target-arm/kvm_arm.h       |  12 +++++
 target-arm/translate-a64.c |   5 ++-
 15 files changed, 246 insertions(+), 89 deletions(-)

^ permalink raw reply	[flat|nested] 23+ messages in thread

end of thread, other threads:[~2016-09-06 18:52 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-09-06 13:07 [Qemu-devel] [PULL 00/14] target-arm queue Peter Maydell
2016-09-06 13:07 ` [Qemu-devel] [PULL 01/14] ast2400: add a memory controller device model Peter Maydell
2016-09-06 14:59   ` Peter Maydell
2016-09-06 15:52     ` Cédric Le Goater
2016-09-06 16:07       ` Peter Maydell
2016-09-06 16:21         ` Cédric Le Goater
2016-09-06 13:07 ` [Qemu-devel] [PULL 02/14] target-arm: Fix lpae bit in FSR on an alignment fault Peter Maydell
2016-09-06 13:07 ` [Qemu-devel] [PULL 03/14] ARM: ACPI: fix the AML ID format for CPU devices Peter Maydell
2016-09-06 13:07 ` [Qemu-devel] [PULL 04/14] ast2400: rename the Aspeed SoC files to aspeed_soc Peter Maydell
2016-09-06 13:07 ` [Qemu-devel] [PULL 05/14] ast2400: replace ast2400 with aspeed_soc Peter Maydell
2016-09-06 13:07 ` [Qemu-devel] [PULL 06/14] aspeed-soc: provide a framework to add new SoCs Peter Maydell
2016-09-06 18:51   ` Peter Maydell
2016-09-06 13:08 ` [Qemu-devel] [PULL 07/14] palmetto-bmc: rename the Aspeed board file to aspeed.c Peter Maydell
2016-09-06 13:08 ` [Qemu-devel] [PULL 08/14] palmetto-bmc: replace palmetto_bmc with aspeed Peter Maydell
2016-09-06 13:08 ` [Qemu-devel] [PULL 09/14] palmetto-bmc: add board specific configuration Peter Maydell
2016-09-06 13:08 ` [Qemu-devel] [PULL 10/14] hw/misc: use macros to define hw-strap1 register on the AST2400 Aspeed SoC Peter Maydell
2016-09-06 13:08 ` [Qemu-devel] [PULL 11/14] aspeed: add a ast2500 SoC and support to the SCU and SDMC controllers Peter Maydell
2016-09-06 13:08 ` [Qemu-devel] [PULL 12/14] arm: add support for an ast2500 evaluation board Peter Maydell
2016-09-06 13:08 ` [Qemu-devel] [PULL 13/14] palmetto-bmc: remove extra no_sdcard assignement Peter Maydell
2016-09-06 13:08 ` [Qemu-devel] [PULL 14/14] block: m25p80: Fix vmstate structure name Peter Maydell
2016-09-06 14:01 ` [Qemu-devel] [PULL 00/14] target-arm queue no-reply
  -- strict thread matches above, loose matches on Subject: below --
2014-06-19 17:36 Peter Maydell
2014-06-20 17:00 ` Peter Maydell

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.