All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH v8 0/3] tests: add RTAS protocol
@ 2016-09-13 12:52 Laurent Vivier
  2016-09-13 12:52 ` [Qemu-devel] [PATCH v8 1/3] qtest: replace strtoXX() by qemu_strtoXX() Laurent Vivier
                   ` (3 more replies)
  0 siblings, 4 replies; 10+ messages in thread
From: Laurent Vivier @ 2016-09-13 12:52 UTC (permalink / raw)
  To: david; +Cc: thuth, lvivier, qemu-ppc, qemu-devel, groug

This series allows to call RTAS commands from the qtest framework,
and defines a first test to call RTAS command "get-time-of-day"
to validate the protocol and test RTAS.

RTAS command parameters are passed to the guest via the
guest memory, so we also need to implement the guest memory
management functions for SPAPR target.

RTAS commands will be needed later to test PCI from the qtest framework
with SPAPR virtual machines: PCI configuration is read/written with
RTAS commands "ibm,read-pci-config", "ibm,write-pci-config".

v8:
- exit if RTAS is not started with qemu-system-ppc64

v7:
- don't allocate twice the memory for the RTAS call
- add "-machine pseries" in rtas-test to be sure to use 
  the good machine type (with RTAS support).

v6:
- rebase
- remove useless include

v5:
- replace "ppc64" by "spapr"
- define and use qtest_spapr_vboot()/qtest_spapr_boot()/qtest_spapr_shutdown()

v4:
- use qemu_strtoXXX() instead strtoXX(),
  add a patch in the series to change all strtoXX() in qtest.c

v3:
- use mktimegm() instead of timegm()

v2:
- remove useless parenthesis, inline
- add a missing space in qrtas_call() prototype

Laurent Vivier (3):
  qtest: replace strtoXX() by qemu_strtoXX()
  libqos: define SPAPR libqos functions
  tests: add RTAS command in the protocol

 hw/ppc/spapr_rtas.c         | 19 ++++++++++++
 include/hw/ppc/spapr_rtas.h | 10 +++++++
 qtest.c                     | 66 ++++++++++++++++++++++++++---------------
 tests/Makefile.include      |  5 ++++
 tests/libqos/libqos-pc.c    |  2 ++
 tests/libqos/libqos-spapr.c | 30 +++++++++++++++++++
 tests/libqos/libqos-spapr.h | 10 +++++++
 tests/libqos/libqos.c       |  1 -
 tests/libqos/malloc-spapr.c | 38 ++++++++++++++++++++++++
 tests/libqos/malloc-spapr.h | 17 +++++++++++
 tests/libqos/rtas.c         | 71 +++++++++++++++++++++++++++++++++++++++++++++
 tests/libqos/rtas.h         | 11 +++++++
 tests/libqtest.c            | 10 +++++++
 tests/libqtest.h            | 15 ++++++++++
 tests/rtas-test.c           | 41 ++++++++++++++++++++++++++
 15 files changed, 322 insertions(+), 24 deletions(-)
 create mode 100644 include/hw/ppc/spapr_rtas.h
 create mode 100644 tests/libqos/libqos-spapr.c
 create mode 100644 tests/libqos/libqos-spapr.h
 create mode 100644 tests/libqos/malloc-spapr.c
 create mode 100644 tests/libqos/malloc-spapr.h
 create mode 100644 tests/libqos/rtas.c
 create mode 100644 tests/libqos/rtas.h
 create mode 100644 tests/rtas-test.c

-- 
2.5.5

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

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

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-09-13 12:52 [Qemu-devel] [PATCH v8 0/3] tests: add RTAS protocol Laurent Vivier
2016-09-13 12:52 ` [Qemu-devel] [PATCH v8 1/3] qtest: replace strtoXX() by qemu_strtoXX() Laurent Vivier
2016-09-13 12:52 ` [Qemu-devel] [PATCH v8 2/3] libqos: define SPAPR libqos functions Laurent Vivier
2016-09-13 12:52 ` [Qemu-devel] [PATCH v8 3/3] tests: add RTAS command in the protocol Laurent Vivier
2016-09-14  3:22   ` David Gibson
2016-09-14  9:05     ` [Qemu-devel] [Qemu-ppc] " Greg Kurz
2016-09-14 10:51       ` David Gibson
2016-09-14  3:23 ` [Qemu-devel] [PATCH v8 0/3] tests: add RTAS protocol David Gibson
2016-09-14  9:07   ` [Qemu-devel] [Qemu-ppc] " Greg Kurz
2016-09-14 10:51     ` David Gibson

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.