qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH 00/10] S390: Enhance s390 BIOS to enable bootdevice selection
@ 2013-04-26 12:12 Dominik Dingel
  2013-04-26 12:12 ` [Qemu-devel] [PATCH 01/10] Common: Add a default bootindex for all applicable devices Dominik Dingel
                   ` (10 more replies)
  0 siblings, 11 replies; 52+ messages in thread
From: Dominik Dingel @ 2013-04-26 12:12 UTC (permalink / raw)
  To: qemu-devel; +Cc: Christian Borntraeger, Alexander Graf, Dominik Dingel

Ths patchset enhance the common code to assign every device a bootindex,
and provide a function to return the device.
The device will be then used in the ipl code to provide the s390-ccw bios
explicit information from which device the user wants to boot from.
It will also return a load_parm to specify which boot entry it should use.
It also includes the working s390-ccw.img fixes from Cornelia.

In case there is some hesitation against the program selection code,
I can provide a patchset excluding this function.

Christian Paro (1):
  S390: Pass per-device loadparm values for CCW blk and net devs.

Cornelia Huck (4):
  s390-ccw.img: Detect devices with stsch.
  s390-ccw.img: Enhance drain_irqs().
  s390-ccw.img: Rudimentary error checking.
  s390-ccw.img: Get queue config from host.

Dominik Dingel (5):
  Common: Add a default bootindex for all applicable devices
  Common: Add quick access to first boot device
  S390: Check Bootdevice Type
  S390: check if BIOS is available and create links
  S390: Enabling device and program selection

 configure                   |    1 +
 hw/s390x/ipl.c              |   36 +++++++++++++++++++++++++++++++++--
 hw/s390x/virtio-ccw.c       |    2 ++
 hw/s390x/virtio-ccw.h       |    1 +
 include/sysemu/sysemu.h     |    2 ++
 pc-bios/s390-ccw.img        |  Bin 9432 -> 17528 bytes
 pc-bios/s390-ccw/Makefile   |    1 +
 pc-bios/s390-ccw/bootmap.c  |    4 ++--
 pc-bios/s390-ccw/main.c     |   29 ++++++++++++++++++++++------
 pc-bios/s390-ccw/s390-ccw.h |    2 +-
 pc-bios/s390-ccw/virtio.c   |   44 ++++++++++++++++++++++++++++++++-----------
 pc-bios/s390-ccw/virtio.h   |    5 +++++
 vl.c                        |   35 +++++++++++++++++++++++++++++++---
 13 files changed, 137 insertions(+), 25 deletions(-)

-- 
1.7.9.5

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

end of thread, other threads:[~2013-04-27  5:45 UTC | newest]

Thread overview: 52+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-04-26 12:12 [Qemu-devel] [PATCH 00/10] S390: Enhance s390 BIOS to enable bootdevice selection Dominik Dingel
2013-04-26 12:12 ` [Qemu-devel] [PATCH 01/10] Common: Add a default bootindex for all applicable devices Dominik Dingel
2013-04-26 15:19   ` Alexander Graf
2013-04-26 16:36   ` Anthony Liguori
2013-04-26 18:01     ` Dominik Dingel
2013-04-26 18:55       ` Anthony Liguori
2013-04-26 19:13         ` Gleb Natapov
2013-04-26 21:34           ` Dominik Dingel
2013-04-27  5:44             ` Gleb Natapov
2013-04-26 19:38       ` Christian Borntraeger
2013-04-26 12:12 ` [Qemu-devel] [PATCH 02/10] Common: Add quick access to first boot device Dominik Dingel
2013-04-26 16:37   ` Anthony Liguori
2013-04-26 12:12 ` [Qemu-devel] [PATCH 03/10] S390: Check Bootdevice Type Dominik Dingel
2013-04-26 15:22   ` Alexander Graf
2013-04-26 15:36     ` Dominik Dingel
2013-04-26 15:42     ` Christian Borntraeger
2013-04-26 15:48       ` Alexander Graf
2013-04-26 16:01         ` Christian Borntraeger
2013-04-26 16:05           ` Alexander Graf
2013-04-26 16:10             ` Dominik Dingel
2013-04-26 16:13               ` Alexander Graf
2013-04-26 16:11             ` Christian Borntraeger
2013-04-26 16:13               ` Alexander Graf
2013-04-26 16:45                 ` Anthony Liguori
2013-04-26 16:04         ` Dominik Dingel
2013-04-26 16:07           ` Alexander Graf
2013-04-26 16:50   ` Alexander Graf
2013-04-26 12:12 ` [Qemu-devel] [PATCH 04/10] S390: check if BIOS is available and create links Dominik Dingel
2013-04-26 15:23   ` Alexander Graf
2013-04-26 15:48     ` Dominik Dingel
2013-04-26 15:57       ` Alexander Graf
2013-04-26 16:20         ` Dominik Dingel
2013-04-26 16:22           ` Alexander Graf
2013-04-26 16:38         ` Anthony Liguori
2013-04-26 18:03           ` Dominik Dingel
2013-04-26 18:04             ` Alexander Graf
2013-04-26 12:12 ` [Qemu-devel] [PATCH 05/10] s390-ccw.img: Detect devices with stsch Dominik Dingel
2013-04-26 12:12 ` [Qemu-devel] [PATCH 06/10] s390-ccw.img: Enhance drain_irqs() Dominik Dingel
2013-04-26 12:12 ` [Qemu-devel] [PATCH 07/10] s390-ccw.img: Rudimentary error checking Dominik Dingel
2013-04-26 12:12 ` [Qemu-devel] [PATCH 08/10] s390-ccw.img: Get queue config from host Dominik Dingel
2013-04-26 12:12 ` [Qemu-devel] [PATCH 09/10] S390: Pass per-device loadparm values for CCW blk and net devs Dominik Dingel
2013-04-26 16:52   ` Alexander Graf
2013-04-26 18:08     ` Dominik Dingel
2013-04-26 18:14       ` Alexander Graf
2013-04-26 19:54         ` Christian Borntraeger
2013-04-26 12:12 ` [Qemu-devel] [PATCH 10/10] S390: Enabling device and program selection Dominik Dingel
2013-04-26 15:29   ` Alexander Graf
2013-04-26 16:56   ` Alexander Graf
2013-04-26 17:55     ` Dominik Dingel
2013-04-26 17:56       ` Alexander Graf
2013-04-26 16:19 ` [Qemu-devel] [PATCH 00/10] S390: Enhance s390 BIOS to enable bootdevice selection Alexander Graf
2013-04-26 16:22   ` Dominik Dingel

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).