The following changes since commit c09124dcb8401a0d635b4a52b295e9b3fc12392a:
Merge remote-tracking branch 'remotes/stefanha/tags/block-pull-request' into staging (2021-10-11 08:15:32 -0700) are available in the Git repository at: https://github.com/legoater/qemu/ tags/pull-aspeed-20211012 for you to fetch changes up to e2804a1ec97ceede14b69a2a6e9a8b5dfa0b15c2: aspeed/smc: Dump address offset in trace events (2021-10-12 08:20:08 +0200) ---------------------------------------------------------------- Aspeed patches : * I2C QOMify (Cedric) * SMC model cleanup and QOMify (Cedric) * ADC model (Peter and Andrew) * GPIO fixes (Peter) ---------------------------------------------------------------- Andrew Jeffery (2): hw/adc: Add basic Aspeed ADC model hw/arm: Integrate ADC model into Aspeed SoC Cédric Le Goater (14): aspeed/smc: Add watchdog Control/Status Registers aspeed/smc: Introduce aspeed_smc_error() helper aspeed/smc: Stop using the model name for the memory regions aspeed/smc: Drop AspeedSMCController structure aspeed/smc: Remove the 'flash' attribute from AspeedSMCFlash aspeed/smc: Remove the 'size' attribute from AspeedSMCFlash aspeed/smc: Rename AspeedSMCFlash 'id' to 'cs' aspeed/smc: QOMify AspeedSMCFlash aspeed/smc: Add default reset values aspeed/smc: Introduce a new addr_width() class handler aspeed/smc: Remove unused attribute 'irqline' aspeed/i2c: QOMify AspeedI2CBus aspeed/wdt: Add trace events aspeed/smc: Dump address offset in trace events Peter Delevoryas (2): hw: aspeed_gpio: Fix pin I/O type declarations hw: aspeed_gpio: Fix GPIO array indexing include/hw/adc/aspeed_adc.h | 55 ++ include/hw/arm/aspeed_soc.h | 2 + include/hw/gpio/aspeed_gpio.h | 5 +- include/hw/i2c/aspeed_i2c.h | 8 +- include/hw/ssi/aspeed_smc.h | 82 ++- hw/adc/aspeed_adc.c | 427 ++++++++++++++++ hw/arm/aspeed.c | 18 +- hw/arm/aspeed_ast2600.c | 22 +- hw/arm/aspeed_soc.c | 15 +- hw/gpio/aspeed_gpio.c | 88 ++-- hw/i2c/aspeed_i2c.c | 101 +++- hw/ssi/aspeed_smc.c | 1134 +++++++++++++++++++++++------------------ hw/watchdog/wdt_aspeed.c | 5 + hw/adc/meson.build | 1 + hw/adc/trace-events | 3 + hw/watchdog/trace-events | 4 + 16 files changed, 1352 insertions(+), 618 deletions(-) create mode 100644 include/hw/adc/aspeed_adc.h create mode 100644 hw/adc/aspeed_adc.c