summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAurelien Jarno <aurelien@aurel32.net>2009-09-15 01:17:57 +0200
committerAurelien Jarno <aurelien@aurel32.net>2009-09-15 01:17:57 +0200
commitffabf0371832aa398f647bc18b4d3c50609c1493 (patch)
treead05ceaf42bb3392f9c1782c9920ced21e54143e
parent387f4a5a7193e8f8df17d2cfc360a4067dd2d675 (diff)
downloadqemu-ffabf0371832aa398f647bc18b4d3c50609c1493.tar.gz
mips malta: ensure that the serial ports are associated with a device
The serial ports should be present even if associated with a null device as some firmware wants to initialize them. Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
-rw-r--r--hw/mips_malta.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/hw/mips_malta.c b/hw/mips_malta.c
index 25e32bf73f..0a6eaa479a 100644
--- a/hw/mips_malta.c
+++ b/hw/mips_malta.c
@@ -781,6 +781,15 @@ void mips_malta_init (ram_addr_t ram_size,
int fl_idx = 0;
int fl_sectors = 0;
+ /* Make sure the first 3 serial ports are associated with a device. */
+ for(i = 0; i < 3; i++) {
+ if (!serial_hds[i]) {
+ char label[32];
+ snprintf(label, sizeof(label), "serial%d", i);
+ serial_hds[i] = qemu_chr_open(label, "null", NULL);
+ }
+ }
+
/* init CPUs */
if (cpu_model == NULL) {
#ifdef TARGET_MIPS64