]> Git Repo - qemu.git/commitdiff
PPC: e500: Only create dt entries for existing serial ports
authorAlexander Graf <[email protected]>
Wed, 4 Jun 2014 11:48:18 +0000 (13:48 +0200)
committerAlexander Graf <[email protected]>
Fri, 27 Jun 2014 11:48:27 +0000 (13:48 +0200)
When the user specifies -nodefaults he can tell us that he doesn't want any
serial ports spawned by default. While we do honor that wish, we still create
device tree entries for those non-existent devices.

Make device tree generation depend on whether the device is actually available.

Signed-off-by: Alexander Graf <[email protected]>
hw/ppc/e500.c

index a973c18d88546304b89a8a42890da61157dd4c1f..bb2e75fe1bc20d48da856efe5a2216fbcdb45742 100644 (file)
@@ -316,10 +316,15 @@ static int ppce500_load_device_tree(MachineState *machine,
      * device it finds in the dt as serial output device. And we generate
      * devices in reverse order to the dt.
      */
-    dt_serial_create(fdt, MPC8544_SERIAL1_REGS_OFFSET,
-                     soc, mpic, "serial1", 1, false);
-    dt_serial_create(fdt, MPC8544_SERIAL0_REGS_OFFSET,
-                     soc, mpic, "serial0", 0, true);
+    if (serial_hds[1]) {
+        dt_serial_create(fdt, MPC8544_SERIAL1_REGS_OFFSET,
+                         soc, mpic, "serial1", 1, false);
+    }
+
+    if (serial_hds[0]) {
+        dt_serial_create(fdt, MPC8544_SERIAL0_REGS_OFFSET,
+                         soc, mpic, "serial0", 0, true);
+    }
 
     snprintf(gutil, sizeof(gutil), "%s/global-utilities@%llx", soc,
              MPC8544_UTIL_OFFSET);
This page took 0.030823 seconds and 4 git commands to generate.