]> Git Repo - qemu.git/commitdiff
hw/misc/allwinner-h3-dramc: enforce 64-bit multiply when calculating row mirror address
authorNiek Linnenbank <[email protected]>
Mon, 30 Mar 2020 12:18:58 +0000 (13:18 +0100)
committerPeter Maydell <[email protected]>
Mon, 30 Mar 2020 12:18:58 +0000 (13:18 +0100)
The allwinner_h3_dramc_map_rows function simulates row addressing behavior
when bootloader software attempts to detect the amount of available SDRAM.

Currently the line that calculates the 64-bit address of the mirrored row
uses a signed 32-bit multiply operation that in theory could result in the
upper 32-bit be all 1s. This commit ensures that the row mirror address
is calculated using only 64-bit operations.

Reported-by: Peter Maydell <[email protected]>
Signed-off-by: Niek Linnenbank <[email protected]>
Message-id: 20200323192944[email protected]
Reviewed-by: Peter Maydell <[email protected]>
Signed-off-by: Peter Maydell <[email protected]>
hw/misc/allwinner-h3-dramc.c

index 2b5260260e7fa22d85adc2eb4c07467278aea767..1d37cf422cd21bac801dbb1a47c5448915db9d1e 100644 (file)
@@ -85,8 +85,8 @@ static void allwinner_h3_dramc_map_rows(AwH3DramCtlState *s, uint8_t row_bits,
 
     } else if (row_bits_actual) {
         /* Row bits not matching ram_size, install the rows mirror */
-        hwaddr row_mirror = s->ram_addr + ((1 << (row_bits_actual +
-                                                  bank_bits)) * page_size);
+        hwaddr row_mirror = s->ram_addr + ((1ULL << (row_bits_actual +
+                                                     bank_bits)) * page_size);
 
         memory_region_set_enabled(&s->row_mirror_alias, true);
         memory_region_set_address(&s->row_mirror_alias, row_mirror);
This page took 0.024436 seconds and 4 git commands to generate.