All of lore.kernel.org
 help / color / mirror / Atom feed
* [PULL 00/18] aspeed queue
@ 2021-10-12  7:37 Cédric Le Goater
  2021-10-12  7:37 ` [PULL 01/18] aspeed/smc: Add watchdog Control/Status Registers Cédric Le Goater
                   ` (18 more replies)
  0 siblings, 19 replies; 20+ messages in thread
From: Cédric Le Goater @ 2021-10-12  7:37 UTC (permalink / raw)
  To: Peter Maydell
  Cc: Andrew Jeffery, Cédric Le Goater, qemu-arm, Joel Stanley,
	qemu-devel

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


^ permalink raw reply	[flat|nested] 20+ messages in thread

end of thread, other threads:[~2021-10-12 13:19 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-10-12  7:37 [PULL 00/18] aspeed queue Cédric Le Goater
2021-10-12  7:37 ` [PULL 01/18] aspeed/smc: Add watchdog Control/Status Registers Cédric Le Goater
2021-10-12  7:37 ` [PULL 02/18] aspeed/smc: Introduce aspeed_smc_error() helper Cédric Le Goater
2021-10-12  7:37 ` [PULL 03/18] aspeed/smc: Stop using the model name for the memory regions Cédric Le Goater
2021-10-12  7:37 ` [PULL 04/18] aspeed/smc: Drop AspeedSMCController structure Cédric Le Goater
2021-10-12  7:37 ` [PULL 05/18] aspeed/smc: Remove the 'flash' attribute from AspeedSMCFlash Cédric Le Goater
2021-10-12  7:37 ` [PULL 06/18] aspeed/smc: Remove the 'size' " Cédric Le Goater
2021-10-12  7:37 ` [PULL 07/18] aspeed/smc: Rename AspeedSMCFlash 'id' to 'cs' Cédric Le Goater
2021-10-12  7:37 ` [PULL 08/18] aspeed/smc: QOMify AspeedSMCFlash Cédric Le Goater
2021-10-12  7:37 ` [PULL 09/18] aspeed/smc: Add default reset values Cédric Le Goater
2021-10-12  7:37 ` [PULL 10/18] aspeed/smc: Introduce a new addr_width() class handler Cédric Le Goater
2021-10-12  7:37 ` [PULL 11/18] aspeed/smc: Remove unused attribute 'irqline' Cédric Le Goater
2021-10-12  7:37 ` [PULL 12/18] aspeed/i2c: QOMify AspeedI2CBus Cédric Le Goater
2021-10-12  7:37 ` [PULL 13/18] hw: aspeed_gpio: Fix pin I/O type declarations Cédric Le Goater
2021-10-12  7:37 ` [PULL 14/18] hw: aspeed_gpio: Fix GPIO array indexing Cédric Le Goater
2021-10-12  7:37 ` [PULL 15/18] hw/adc: Add basic Aspeed ADC model Cédric Le Goater
2021-10-12  7:37 ` [PULL 16/18] hw/arm: Integrate ADC model into Aspeed SoC Cédric Le Goater
2021-10-12  7:37 ` [PULL 17/18] aspeed/wdt: Add trace events Cédric Le Goater
2021-10-12  7:37 ` [PULL 18/18] aspeed/smc: Dump address offset in " Cédric Le Goater
2021-10-12 13:15 ` [PULL 00/18] aspeed queue Richard Henderson

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.