[PULL 00/13] ppc-for-6.0 queue 20210119

David Gibson posted 13 patches 3 years, 3 months ago
Test checkpatch passed
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20210119062318.13857-1-david@gibson.dropbear.id.au
Maintainers: David Gibson <david@gibson.dropbear.id.au>, BALATON Zoltan <balaton@eik.bme.hu>, Greg Kurz <groug@kaod.org>
hw/intc/ppc-uic.c           |   2 +-
hw/ppc/Kconfig              |   6 +-
hw/ppc/ppc405.h             |   8 +-
hw/ppc/ppc405_boards.c      |   8 +-
hw/ppc/ppc405_uc.c          | 415 +++++---------------------------------------
hw/ppc/ppc4xx_devs.c        |  38 ----
hw/ppc/sam460ex.c           |  76 +++++---
hw/ppc/spapr.c              |  24 +--
hw/ppc/spapr_cpu_core.c     |  12 +-
hw/ppc/spapr_events.c       |   3 +-
hw/ppc/spapr_hcall.c        |   1 +
hw/ppc/spapr_ovec.c         |   7 +
hw/ppc/spapr_rtas.c         |   6 +-
include/hw/intc/ppc-uic.h   |   7 +
include/hw/ppc/ppc4xx.h     |   9 -
include/hw/ppc/spapr.h      |   9 +-
include/hw/ppc/spapr_ovec.h |   1 +
17 files changed, 146 insertions(+), 486 deletions(-)
[PULL 00/13] ppc-for-6.0 queue 20210119
Posted by David Gibson 3 years, 3 months ago
The following changes since commit e43d564fa3a0d1e133935c8180ad4f4ccf699f33:

  Merge remote-tracking branch 'remotes/vivier2/tags/trivial-branch-for-6.0-pull-request' into staging (2021-01-18 15:19:06 +0000)

are available in the Git repository at:

  https://gitlab.com/dgibson/qemu.git tags/ppc-for-6.0-20210119

for you to fetch changes up to 2a05350e90ba09b6f42f5cff81f4aa7580a998be:

  spapr_cpu_core.c: use g_auto* in spapr_create_vcpu() (2021-01-19 10:20:29 +1100)

----------------------------------------------------------------
ppc patch queue 2021-01-19

Next pull request for qemu-6.0.  Not a huge amount here, but it does
have some important fixes from Greg Kurz.  Includes:

 * A number of minor cleanups from Daniel Barboza (preliminaries for
   some hotplug changes that are still under review)
 * Improved handling of memory hotplug from Greg Kurz
 * A number of fixes for sam460ex and other 440 based platforms from
   Zolan Balaton
 * Some fixes for the QOMification of the PPC 4xx UIC interrupt
   controller from Peter Maydell

----------------------------------------------------------------
BALATON Zoltan (3):
      Revert "sam460ex: Remove FDT_PPC dependency from KConfig"
      Revert "ppc4xx: Move common dependency on serial to common option"
      sam460ex: Use type cast macro instead of simple cast

Daniel Henrique Barboza (4):
      spapr.h: fix trailing whitespace in phb_placement
      spapr_hcall.c: make do_client_architecture_support static
      spapr_rtas.c: fix identation of rtas_ibm_suspend_me() args
      spapr_cpu_core.c: use g_auto* in spapr_create_vcpu()

Greg Kurz (1):
      spapr: Improve handling of memory unplug with old guests

Peter Maydell (5):
      hw/ppc/sam460ex: Drop use of ppcuic_init()
      hw/ppc: Delete unused ppc405cr_init() code
      hw/intc/ppc-uic: Make default dcr-base 0xc0, not 0x30
      hw/ppc/ppc405_uc: Drop use of ppcuic_init()
      hw/ppc: Remove unused ppcuic_init()

 hw/intc/ppc-uic.c           |   2 +-
 hw/ppc/Kconfig              |   6 +-
 hw/ppc/ppc405.h             |   8 +-
 hw/ppc/ppc405_boards.c      |   8 +-
 hw/ppc/ppc405_uc.c          | 415 +++++---------------------------------------
 hw/ppc/ppc4xx_devs.c        |  38 ----
 hw/ppc/sam460ex.c           |  76 +++++---
 hw/ppc/spapr.c              |  24 +--
 hw/ppc/spapr_cpu_core.c     |  12 +-
 hw/ppc/spapr_events.c       |   3 +-
 hw/ppc/spapr_hcall.c        |   1 +
 hw/ppc/spapr_ovec.c         |   7 +
 hw/ppc/spapr_rtas.c         |   6 +-
 include/hw/intc/ppc-uic.h   |   7 +
 include/hw/ppc/ppc4xx.h     |   9 -
 include/hw/ppc/spapr.h      |   9 +-
 include/hw/ppc/spapr_ovec.h |   1 +
 17 files changed, 146 insertions(+), 486 deletions(-)

Re: [PULL 00/13] ppc-for-6.0 queue 20210119
Posted by Peter Maydell 3 years, 3 months ago
On Tue, 19 Jan 2021 at 06:23, David Gibson <david@gibson.dropbear.id.au> wrote:
>
> The following changes since commit e43d564fa3a0d1e133935c8180ad4f4ccf699f33:
>
>   Merge remote-tracking branch 'remotes/vivier2/tags/trivial-branch-for-6.0-pull-request' into staging (2021-01-18 15:19:06 +0000)
>
> are available in the Git repository at:
>
>   https://gitlab.com/dgibson/qemu.git tags/ppc-for-6.0-20210119
>
> for you to fetch changes up to 2a05350e90ba09b6f42f5cff81f4aa7580a998be:
>
>   spapr_cpu_core.c: use g_auto* in spapr_create_vcpu() (2021-01-19 10:20:29 +1100)
>
> ----------------------------------------------------------------
> ppc patch queue 2021-01-19
>
> Next pull request for qemu-6.0.  Not a huge amount here, but it does
> have some important fixes from Greg Kurz.  Includes:
>
>  * A number of minor cleanups from Daniel Barboza (preliminaries for
>    some hotplug changes that are still under review)
>  * Improved handling of memory hotplug from Greg Kurz
>  * A number of fixes for sam460ex and other 440 based platforms from
>    Zolan Balaton
>  * Some fixes for the QOMification of the PPC 4xx UIC interrupt
>    controller from Peter Maydell


Applied, thanks.

Please update the changelog at https://wiki.qemu.org/ChangeLog/6.0
for any user-visible changes.

-- PMM