All of lore.kernel.org
 help / color / mirror / Atom feed
* [PULL 00/11] aspeed queue
@ 2023-03-02 17:41 Cédric Le Goater
  2023-03-02 17:41 ` [PULL 01/11] readline: fix hmp completion issue Cédric Le Goater
                   ` (12 more replies)
  0 siblings, 13 replies; 19+ messages in thread
From: Cédric Le Goater @ 2023-03-02 17:41 UTC (permalink / raw)
  To: qemu-arm, qemu-devel; +Cc: Peter Maydell, Cédric Le Goater

The following changes since commit a2b5f8b8ab7b2c947823088103a40f0ff11fe06b:

  Merge tag 'pull-tcg-20230301' of https://gitlab.com/rth7680/qemu into staging (2023-03-01 19:19:20 +0000)

are available in the Git repository at:

  https://github.com/legoater/qemu/ tags/pull-aspeed-20230302

for you to fetch changes up to b22a2d409b1acfdf0d63d1bb3595194ceb3d94da:

  aspeed/smc: Replace SysBus IRQs with GPIO lines (2023-03-02 13:57:50 +0100)

----------------------------------------------------------------
aspeed queue:

* fix for the Aspeed I2C slave mode
* a new I2C echo device from Klaus and its associated test in avocado.
* initial SoC cleanups to allow the use of block devices instead of
  drives on the command line.
* new facebook machines and eeprom fixes for the Fuji
* readline fix

----------------------------------------------------------------
Cédric Le Goater (4):
      tests/avocado/machine_aspeed.py: Add an I2C slave test
      aspeed: Introduce a spi_boot region under the SoC
      aspeed: Add a boot_rom overlap region in the SoC spi_boot container
      aspeed/smc: Replace SysBus IRQs with GPIO lines

Dongli Zhang (1):
      readline: fix hmp completion issue

Karthikeyan Pasupathi (2):
      hw/arm/aspeed: Adding new machine Yosemitev2 in QEMU
      hw/arm/aspeed: Adding new machine Tiogapass in QEMU

Klaus Jensen (2):
      hw/i2c: only schedule pending master when bus is idle
      hw/misc: add a toy i2c echo device

Sittisak Sinprem (2):
      hw/at24c : modify at24c to support 1 byte address mode
      aspeed/fuji : correct the eeprom size

 docs/system/arm/aspeed.rst      |   2 +
 hw/arm/aspeed_eeprom.h          |   6 ++
 include/hw/arm/aspeed_soc.h     |   5 ++
 include/hw/i2c/i2c.h            |   2 +
 hw/arm/aspeed.c                 | 159 ++++++++++++++++++++++++++++------------
 hw/arm/aspeed_ast2600.c         |  13 ++++
 hw/arm/aspeed_eeprom.c          |  45 ++++++++++++
 hw/arm/aspeed_soc.c             |  14 ++++
 hw/arm/fby35.c                  |   8 +-
 hw/i2c/aspeed_i2c.c             |   2 +
 hw/i2c/core.c                   |  37 ++++++----
 hw/misc/i2c-echo.c              | 156 +++++++++++++++++++++++++++++++++++++++
 hw/nvram/eeprom_at24c.c         |  30 +++++++-
 hw/ssi/aspeed_smc.c             |   5 +-
 monitor/hmp.c                   |   8 +-
 hw/misc/meson.build             |   2 +
 tests/avocado/machine_aspeed.py |  10 +++
 17 files changed, 421 insertions(+), 83 deletions(-)
 create mode 100644 hw/misc/i2c-echo.c


^ permalink raw reply	[flat|nested] 19+ messages in thread
* [PULL 00/11] aspeed queue
@ 2022-03-08 12:21 Cédric Le Goater
  2022-03-09 19:56 ` Peter Maydell
  0 siblings, 1 reply; 19+ messages in thread
From: Cédric Le Goater @ 2022-03-08 12:21 UTC (permalink / raw)
  To: qemu-arm, qemu-devel; +Cc: Peter Maydell, Cédric Le Goater

The following changes since commit b49872aa8fc0f3f5a3036cc37aa2cb5c92866f33:

  Merge remote-tracking branch 'remotes/hreitz-gitlab/tags/pull-block-2022-03-07' into staging (2022-03-07 17:14:09 +0000)

are available in the Git repository at:

  https://github.com/legoater/qemu/ tags/pull-aspeed-20220308

for you to fetch changes up to 46179776c292f83848df90de60da5ae1a965ce6a:

  hw: aspeed_gpio: Cleanup stray semicolon after switch (2022-03-08 09:18:11 +0100)

----------------------------------------------------------------
aspeed queue:

* Fix for a potential memory leak
* Aspeed SMC cleanups on the definition of the number of flash devices
* New bletchley-bmc machine, AST2600 based

----------------------------------------------------------------
Andrew Jeffery (1):
      hw: aspeed_gpio: Cleanup stray semicolon after switch

Cédric Le Goater (6):
      aspeed/smc: Use max number of CE instead of 'num_cs'
      aspeed: Rework aspeed_board_init_flashes() interface
      aspeed/smc: Remove 'num_cs' field
      aspeed/smc: Rename 'max_peripherals' to 'cs_num_max'
      aspeed/smc: Let the SSI core layer define the bus name
      aspeed/smc: Fix error log

Patrick Williams (3):
      hw/block: m25p80: Add support for w25q01jvq
      hw/arm/aspeed: allow missing spi_model
      hw/arm/aspeed: add Bletchley machine type

Wentao_Liang (1):
      aspeed: Fix a potential memory leak bug in write_boot_rom()

 include/hw/ssi/aspeed_smc.h |   3 +-
 hw/arm/aspeed.c             | 100 ++++++++++++++++++++++++++++++++++++++------
 hw/arm/aspeed_ast2600.c     |   2 -
 hw/arm/aspeed_soc.c         |   2 -
 hw/block/m25p80.c           |   1 +
 hw/gpio/aspeed_gpio.c       |   2 +-
 hw/ssi/aspeed_smc.c         |  53 ++++++++++-------------
 7 files changed, 114 insertions(+), 49 deletions(-)


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

end of thread, other threads:[~2023-03-04 14:01 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-03-02 17:41 [PULL 00/11] aspeed queue Cédric Le Goater
2023-03-02 17:41 ` [PULL 01/11] readline: fix hmp completion issue Cédric Le Goater
2023-03-02 17:41 ` [PULL 02/11] hw/i2c: only schedule pending master when bus is idle Cédric Le Goater
2023-03-02 17:41 ` [PULL 03/11] hw/misc: add a toy i2c echo device Cédric Le Goater
2023-03-02 17:41 ` [PULL 04/11] tests/avocado/machine_aspeed.py: Add an I2C slave test Cédric Le Goater
2023-03-02 17:42 ` [PULL 05/11] hw/arm/aspeed: Adding new machine Yosemitev2 in QEMU Cédric Le Goater
2023-03-02 17:42 ` [PULL 06/11] hw/arm/aspeed: Adding new machine Tiogapass " Cédric Le Goater
2023-03-02 17:42 ` [PULL 07/11] hw/at24c : modify at24c to support 1 byte address mode Cédric Le Goater
2023-03-02 17:42 ` [PULL 08/11] aspeed/fuji : correct the eeprom size Cédric Le Goater
2023-03-02 17:42 ` [PULL 09/11] aspeed: Introduce a spi_boot region under the SoC Cédric Le Goater
2023-03-02 17:42 ` [PULL 10/11] aspeed: Add a boot_rom overlap region in the SoC spi_boot container Cédric Le Goater
2023-03-02 17:42 ` [PULL 11/11] aspeed/smc: Replace SysBus IRQs with GPIO lines Cédric Le Goater
2023-03-03 13:23 ` [PULL 00/11] aspeed queue Cédric Le Goater
2023-03-03 13:34   ` Peter Maydell
2023-03-03 14:08     ` Cédric Le Goater
2023-03-03 14:28       ` Peter Maydell
2023-03-04 14:00 ` Peter Maydell
  -- strict thread matches above, loose matches on Subject: below --
2022-03-08 12:21 Cédric Le Goater
2022-03-09 19:56 ` Peter Maydell

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.