]> git.proxmox.com Git - mirror_qemu.git/commitdiff
hw/xtensa/xtfpga: treat uImage load address as virtual
authorMax Filippov <jcmvbkbc@gmail.com>
Sun, 19 Oct 2014 04:39:10 +0000 (08:39 +0400)
committerMax Filippov <jcmvbkbc@gmail.com>
Sun, 2 Nov 2014 22:00:37 +0000 (01:00 +0300)
U-boot for xtensa always treats uImage load address as virtual address.
This is important when booting uImage on xtensa core with MMUv2, because
MMUv2 has fixed non-identity virtual-to-physical mapping after reset.

Always do virtual-to-physical translation of uImage load address and
load uImage at the translated address. This fixes booting uImage kernels
on dc232b and other MMUv2 cores.

Cc: qemu-stable@nongnu.org
Reported-by: Waldemar Brodkorb <mail@waldemar-brodkorb.de>
Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
hw/xtensa/xtfpga.c

index a9b33bc4ee6dc2d9d3ea85b7649944b0f60a7bb4..e5a6bba7830f75c7433e9a3b673e3dd6d4d2c5c8 100644 (file)
@@ -329,7 +329,7 @@ static void lx_init(const LxBoardDesc *board, MachineState *machine)
             hwaddr ep;
             int is_linux;
             success = load_uimage(kernel_filename, &ep, NULL, &is_linux,
-                                  NULL, NULL);
+                                  translate_phys_addr, cpu);
             if (success > 0 && is_linux) {
                 entry_point = ep;
             } else {