aboutsummaryrefslogtreecommitdiff
path: root/hw/arm
diff options
context:
space:
mode:
authorPhilippe Mathieu-Daudé <philmd@linaro.org>2023-01-09 12:53:14 +0100
committerPeter Maydell <peter.maydell@linaro.org>2023-01-12 17:03:14 +0000
commit96c85ef86bc049e8dc0fb92447e88612a19919b0 (patch)
tree474a62593b011d9007d949056bd08b04b7c7593c /hw/arm
parentd7f1bd196e308812c6ad709aa66994b6fdcac3f5 (diff)
downloadqemu-96c85ef86bc049e8dc0fb92447e88612a19919b0.zip
qemu-96c85ef86bc049e8dc0fb92447e88612a19919b0.tar.gz
qemu-96c85ef86bc049e8dc0fb92447e88612a19919b0.tar.bz2
hw/arm/z2: Use the IEC binary prefix definitions
IEC binary prefixes ease code review: the unit is explicit. Add the FLASH_SECTOR_SIZE definition. Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-id: 20230109115316.2235-12-philmd@linaro.org Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'hw/arm')
-rw-r--r--hw/arm/z2.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/hw/arm/z2.c b/hw/arm/z2.c
index 8eb6f49..839be3c 100644
--- a/hw/arm/z2.c
+++ b/hw/arm/z2.c
@@ -12,6 +12,7 @@
*/
#include "qemu/osdep.h"
+#include "qemu/units.h"
#include "hw/arm/pxa.h"
#include "hw/arm/boot.h"
#include "hw/i2c/i2c.h"
@@ -297,9 +298,10 @@ static const TypeInfo aer915_info = {
.class_init = aer915_class_init,
};
+#define FLASH_SECTOR_SIZE (64 * KiB)
+
static void z2_init(MachineState *machine)
{
- uint32_t sector_len = 0x10000;
PXA2xxState *mpu;
DriveInfo *dinfo;
void *z2_lcd;
@@ -312,7 +314,7 @@ static void z2_init(MachineState *machine)
dinfo = drive_get(IF_PFLASH, 0, 0);
if (!pflash_cfi01_register(Z2_FLASH_BASE, "z2.flash0", Z2_FLASH_SIZE,
dinfo ? blk_by_legacy_dinfo(dinfo) : NULL,
- sector_len, 4, 0, 0, 0, 0, 0)) {
+ FLASH_SECTOR_SIZE, 4, 0, 0, 0, 0, 0)) {
error_report("Error registering flash memory");
exit(1);
}