qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [RESEND][PATCH 2/2] qemu: bios: Make boot prompt optional
@ 2009-06-27  8:11 Jan Kiszka
  2009-06-28 20:01 ` [Qemu-devel] Re: [Bochs-developers] [RESEND][PATCH 2/2] qemu: bios: Make boot promptoptional Sebastian Herbszt
  0 siblings, 1 reply; 2+ messages in thread
From: Jan Kiszka @ 2009-06-27  8:11 UTC (permalink / raw)
  To: Anthony Liguori; +Cc: bochs developers, qemu-devel

[-- Attachment #1: Type: text/plain, Size: 2775 bytes --]

[ Note: Applies on top of qemu's current patch series. ]

Check via QEMU's firmware configuration interface if the boot prompt
should be given. This allows to disable the prompt with its several
seconds long delay, speeding up the common boot case.

Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
---

 bios/rombios.c   |   19 +++++++++++++++++++
 bios/rombios.h   |   11 +++++++++++
 bios/rombios32.c |   10 ----------
 3 files changed, 30 insertions(+), 10 deletions(-)

diff --git a/bios/rombios.c b/bios/rombios.c
index 0f13b53..3b7a5f0 100644
--- a/bios/rombios.c
+++ b/bios/rombios.c
@@ -2015,6 +2015,21 @@ Bit16u i; ipl_entry_t *e;
 }
 
 #if BX_ELTORITO_BOOT
+#ifdef BX_QEMU
+int
+qemu_cfg_probe_bootkey()
+{
+  outw(QEMU_CFG_CTL_PORT, QEMU_CFG_SIGNATURE);
+  if (inb(QEMU_CFG_DATA_PORT) != 'Q' ||
+      inb(QEMU_CFG_DATA_PORT) != 'E' ||
+      inb(QEMU_CFG_DATA_PORT) != 'M' ||
+      inb(QEMU_CFG_DATA_PORT) != 'U') return 1;
+
+  outw(QEMU_CFG_CTL_PORT, QEMU_CFG_BOOT_INTERACTIVE);
+  return inb(QEMU_CFG_DATA_PORT);
+}
+#endif // BX_QEMU
+
   void
 interactive_bootkey()
 {
@@ -2026,6 +2041,10 @@ interactive_bootkey()
   Bit16u ss = get_SS();
   Bit16u valid_choice = 0;
 
+#ifdef BX_QEMU
+  if (!qemu_cfg_probe_bootkey()) return;
+#endif
+
   while (check_for_keystroke())
     get_keystroke();
 
diff --git a/bios/rombios.h b/bios/rombios.h
index 6f9cbb1..038b4a0 100644
--- a/bios/rombios.h
+++ b/bios/rombios.h
@@ -58,6 +58,17 @@
 #define SMB_IO_BASE       0xb100
 #define SMP_MSR_ADDR      0x0510
 
+#define QEMU_CFG_CTL_PORT         0x510
+#define QEMU_CFG_DATA_PORT        0x511
+#define QEMU_CFG_SIGNATURE        0x00
+#define QEMU_CFG_ID               0x01
+#define QEMU_CFG_UUID             0x02
+#define QEMU_CFG_NUMA             0x0d
+#define QEMU_CFG_BOOT_INTERACTIVE 0x0e
+#define QEMU_CFG_ARCH_LOCAL       0x8000
+#define QEMU_CFG_ACPI_TABLES      (QEMU_CFG_ARCH_LOCAL + 0)
+#define QEMU_CFG_SMBIOS_ENTRIES   (QEMU_CFG_ARCH_LOCAL + 1)
+
   // Define the application NAME
 #if defined(BX_QEMU)
 #  define BX_APPNAME "QEMU"
diff --git a/bios/rombios32.c b/bios/rombios32.c
index f861f81..3fe4e48 100644
--- a/bios/rombios32.c
+++ b/bios/rombios32.c
@@ -468,16 +468,6 @@ void wrmsr_smp(uint32_t index, uint64_t val)
 }
 
 #ifdef BX_QEMU
-#define QEMU_CFG_CTL_PORT 0x510
-#define QEMU_CFG_DATA_PORT 0x511
-#define QEMU_CFG_SIGNATURE  0x00
-#define QEMU_CFG_ID         0x01
-#define QEMU_CFG_UUID       0x02
-#define QEMU_CFG_NUMA       0x0D
-#define QEMU_CFG_ARCH_LOCAL     0x8000
-#define QEMU_CFG_ACPI_TABLES  (QEMU_CFG_ARCH_LOCAL + 0)
-#define QEMU_CFG_SMBIOS_ENTRIES  (QEMU_CFG_ARCH_LOCAL + 1)
-
 int qemu_cfg_port;
 
 void qemu_cfg_select(int f)


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 257 bytes --]

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

* [Qemu-devel] Re: [Bochs-developers] [RESEND][PATCH 2/2] qemu: bios: Make boot promptoptional
  2009-06-27  8:11 [Qemu-devel] [RESEND][PATCH 2/2] qemu: bios: Make boot prompt optional Jan Kiszka
@ 2009-06-28 20:01 ` Sebastian Herbszt
  0 siblings, 0 replies; 2+ messages in thread
From: Sebastian Herbszt @ 2009-06-28 20:01 UTC (permalink / raw)
  To: Jan Kiszka, Anthony Liguori; +Cc: bochs developers, qemu-devel

Jan Kiszka wrote:
> [ Note: Applies on top of qemu's current patch series. ]
> 
> Check via QEMU's firmware configuration interface if the boot prompt
> should be given. This allows to disable the prompt with its several
> seconds long delay, speeding up the common boot case.
> 
> Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>

What about splitting this patch into two?
One moving QEMU_CFG_* to rombios.h and one adding the new functionality.

- Sebastian

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

end of thread, other threads:[~2009-06-28 20:01 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-06-27  8:11 [Qemu-devel] [RESEND][PATCH 2/2] qemu: bios: Make boot prompt optional Jan Kiszka
2009-06-28 20:01 ` [Qemu-devel] Re: [Bochs-developers] [RESEND][PATCH 2/2] qemu: bios: Make boot promptoptional Sebastian Herbszt

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).