hw/adc/stm32f2xx_adc: Correct memory region size and access size
commitd04bf49c9ee8fa3e8f2961462a9f053c3faa8548
authorPhilippe Mathieu-Daudé <f4bug@amsat.org>
Wed, 3 Jun 2020 05:59:15 +0000 (3 07:59 +0200)
committerPeter Maydell <peter.maydell@linaro.org>
Fri, 5 Jun 2020 16:23:09 +0000 (5 17:23 +0100)
tree81e0e018e45a75ef87eeb7dd244aaebcb5252735
parent43fa36c96c24349145497adc1b451f9caf74e344
hw/adc/stm32f2xx_adc: Correct memory region size and access size

The ADC region size is 256B, split as:
 - [0x00 - 0x4f] defined
 - [0x50 - 0xff] reserved

All registers are 32-bit (thus when the datasheet mentions the
last defined register is 0x4c, it means its address range is
0x4c .. 0x4f.

This model implementation is also 32-bit. Set MemoryRegionOps
'impl' fields.

See:
  'RM0033 Reference manual Rev 8', Table 10.13.18 "ADC register map".

Reported-by: Seth Kintigh <skintigh@gmail.com>
Reviewed-by: Alistair Francis <alistair.francis@wdc.com>
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Message-id: 20200603055915.17678-1-f4bug@amsat.org
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
hw/adc/stm32f2xx_adc.c