mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 07:43:54 -06:00
hw/openrisc: Mark devices as big-endian
The openrisc little-endian control is in a control register: SR[LEE] (which we do not implement at present). These devices are only used by the OpenRISC target, which is only built as big-endian. Therefore the DEVICE_NATIVE_ENDIAN definition expand to DEVICE_BIG_ENDIAN (besides, the DEVICE_LITTLE_ENDIAN case isn't tested). Simplify directly using DEVICE_BIG_ENDIAN. Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Thomas Huth <huth@tuxfamily.org> Message-Id: <20241106184612.71897-5-philmd@linaro.org>
This commit is contained in:
parent
625a975f67
commit
e72eee9684
2 changed files with 2 additions and 2 deletions
|
@ -266,7 +266,7 @@ static void openrisc_sim_serial_init(Or1ksimState *state, hwaddr base,
|
|||
}
|
||||
serial_mm_init(get_system_memory(), base, 0, serial_irq, 115200,
|
||||
serial_hd(uart_idx),
|
||||
DEVICE_NATIVE_ENDIAN);
|
||||
DEVICE_BIG_ENDIAN);
|
||||
|
||||
/* Add device tree node for serial. */
|
||||
nodename = g_strdup_printf("/serial@%" HWADDR_PRIx, base);
|
||||
|
|
|
@ -236,7 +236,7 @@ static void openrisc_virt_serial_init(OR1KVirtState *state, hwaddr base,
|
|||
qemu_irq serial_irq = get_per_cpu_irq(cpus, num_cpus, irq_pin);
|
||||
|
||||
serial_mm_init(get_system_memory(), base, 0, serial_irq, 115200,
|
||||
serial_hd(0), DEVICE_NATIVE_ENDIAN);
|
||||
serial_hd(0), DEVICE_BIG_ENDIAN);
|
||||
|
||||
/* Add device tree node for serial. */
|
||||
nodename = g_strdup_printf("/serial@%" HWADDR_PRIx, base);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue