All of lore.kernel.org
 help / color / mirror / Atom feed
* [PULL 0/8] PPC PR for 11.1 Soft-freeze
@ 2026-07-06  8:24 Harsh Prateek Bora
  2026-07-06  8:24 ` [PULL 1/8] tests/functional: Add remote interrupts test for PowerNV Harsh Prateek Bora
                   ` (8 more replies)
  0 siblings, 9 replies; 10+ messages in thread
From: Harsh Prateek Bora @ 2026-07-06  8:24 UTC (permalink / raw)
  To: qemu-devel

The following changes since commit 4ee536fac748b70e6f3d8568ddd20cfbaa9cf7bf:

  Merge tag 'firmware-20260704-pull-request' of https://gitlab.com/kraxel/qemu into staging (2026-07-05 08:42:47 +0200)

are available in the Git repository at:

  https://gitlab.com/harshpb/qemu.git tags/pull-ppc-for-11.1-sf-20260706

for you to fetch changes up to b44a3c71f237eaf3cb28344598bc547a65f22ddf:

  MAINTAINERS: Add self as maintainer for PowerNV (2026-07-06 12:06:47 +0530)

----------------------------------------------------------------
PPC PR for 11.1 Soft-freeze

* Testcase improvements for PowerNV
* Remove deprecated Power8E and 8NVL CPUs
* MAINTAINERS: Aditya transitioning from PowerNV reviewer to maintainer.

-----BEGIN PGP SIGNATURE-----

iQIzBAABCAAdFiEEa4EM1tK+EPOIPSFCRUTplPnWj7sFAmpLZTwACgkQRUTplPnW
j7vb/w//XmleEwlL+p+YKndc4Su+qj9c3lApEFEiFi78biATrXpFTNbOxhOpWdv4
jaI1kWyINrTPgnXgHEKNJuhhsSjy5/HURCgkivPnnvhK95mWMi/0f1SzICmc9DCo
hjDeQfHw5zhF6hu6QknTfcworpsdA9uVtbx0+8s0lMMDmWze2WLg6f9OXioxhseN
vJoRaJoEo1f/vwwDFOdGngz36p0xD+eUynPTRlOymMJfW271KtNlZqouCCryI92I
ksaYa+jorE16l608SyG1Yhf/oDSlj9BufFHmgAngvlDwPFglhoJx0kPeKIrT7QE0
oGzwnOwXJH0lGuwQwISvgrtquD8unY9gTZvrF6NPIPtpMJSE+TGluoNdf/Sr2c3l
xMG/+yIwHehgXa/Lh4UN3G7yALaIjVdkcSdexuo1pfFemUCwLYPDMGoaksda+SZd
m4Xd05ZCvp2RZHRNbWheu6TxZKEHKWO8UV8U0zNgKZTz7muVURrtLpoQJFLRq9V7
krqyeLOePZtGC15a8unAbIVJVK2vOOnoqQPbuqZ57GTVqcmmcTSIEkRDcbMTADKo
Qv8WEqOWo9OYQvGF/BMP+ed1UiNzGXY2WnVrF40D3K/I/wT11mHbuKZY3gbFZ5At
1y2I59EvV/xYHdjBmDoT8smzuQwywSKZnzeKptbIVGFbuPPVFFs=
=icWo
-----END PGP SIGNATURE-----

----------------------------------------------------------------
Aditya Gupta (8):
      tests/functional: Add remote interrupts test for PowerNV
      tests/qtest/pnv_spi: Test Power11 PNV_SPI
      tests/qtest: Add Power11 chip & machine to qtests
      tests/functional: Use default powernv machine instead of power10
      ppc/pnv: Replace Power8E with Power11 for 'none' machine test
      ppc/pnv: Remove Power8E and Power8NVL pnv chips
      ppc/pnv: Remove Power8E and Power8NVL CPUs
      MAINTAINERS: Add self as maintainer for PowerNV

 MAINTAINERS                            |  2 +-
 docs/about/deprecated.rst              |  9 ----
 docs/about/removed-features.rst        |  8 +++
 docs/system/ppc/powernv.rst            |  2 +-
 docs/system/ppc/pseries.rst            |  2 +-
 include/hw/ppc/pnv.h                   |  8 ---
 target/ppc/cpu-models.h                |  4 --
 tests/qtest/pnv-xscom.h                | 38 +++++++++-----
 hw/ppc/pnv.c                           | 62 ----------------------
 hw/ppc/pnv_core.c                      |  2 -
 hw/ppc/spapr_cpu_core.c                |  2 -
 target/ppc/cpu-models.c                |  6 ---
 target/ppc/cpu_init.c                  |  6 ---
 target/ppc/kvm.c                       |  4 +-
 tests/qtest/machine-none-test.c        |  2 +-
 tests/qtest/pnv-host-i2c-test.c        | 10 ++--
 tests/qtest/pnv-spi-seeprom-test.c     | 20 ++++---
 tests/qtest/pnv-xive2-test.c           | 21 ++++++--
 tests/qtest/pnv-xscom-test.c           | 22 ++------
 tests/functional/ppc64/test_fadump.py  |  2 +-
 tests/functional/ppc64/test_powernv.py | 95 ++++++++++++++++++++++++++++++++++
 21 files changed, 175 insertions(+), 152 deletions(-)


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

end of thread, other threads:[~2026-07-07  5:05 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-07-06  8:24 [PULL 0/8] PPC PR for 11.1 Soft-freeze Harsh Prateek Bora
2026-07-06  8:24 ` [PULL 1/8] tests/functional: Add remote interrupts test for PowerNV Harsh Prateek Bora
2026-07-06  8:24 ` [PULL 2/8] tests/qtest/pnv_spi: Test Power11 PNV_SPI Harsh Prateek Bora
2026-07-06  8:24 ` [PULL 3/8] tests/qtest: Add Power11 chip & machine to qtests Harsh Prateek Bora
2026-07-06  8:24 ` [PULL 4/8] tests/functional: Use default powernv machine instead of power10 Harsh Prateek Bora
2026-07-06  8:24 ` [PULL 5/8] ppc/pnv: Replace Power8E with Power11 for 'none' machine test Harsh Prateek Bora
2026-07-06  8:24 ` [PULL 6/8] ppc/pnv: Remove Power8E and Power8NVL pnv chips Harsh Prateek Bora
2026-07-06  8:24 ` [PULL 7/8] ppc/pnv: Remove Power8E and Power8NVL CPUs Harsh Prateek Bora
2026-07-06  8:24 ` [PULL 8/8] MAINTAINERS: Add self as maintainer for PowerNV Harsh Prateek Bora
2026-07-07  5:04 ` [PULL 0/8] PPC PR for 11.1 Soft-freeze Stefan Hajnoczi

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.