[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 00/15] aspeed queue
From: |
Cédric Le Goater |
Subject: |
[PULL 00/15] aspeed queue |
Date: |
Sun, 21 Jul 2024 10:13:46 +0200 |
The following changes since commit a87a7c449e532130d4fa8faa391ff7e1f04ed660:
Merge tag 'pull-loongarch-20240719' of https://gitlab.com/gaosong/qemu into
staging (2024-07-19 16:28:28 +1000)
are available in the Git repository at:
https://github.com/legoater/qemu/ tags/pull-aspeed-20240721
for you to fetch changes up to 4db1c16441923fc152142ae4bcc1cba23064cb8b:
aspeed: fix coding style (2024-07-21 07:46:38 +0200)
----------------------------------------------------------------
aspeed queue:
* SMC model fix (Coverity)
* AST2600 boot for eMMC support and test
* AST2700 ADC model
* I2C model changes preparing AST2700 I2C support
----------------------------------------------------------------
Cédric Le Goater (10):
aspeed/smc: Fix possible integer overflow
aspeed: Change type of eMMC device
aspeed: Load eMMC first boot area as a boot rom
aspeed/scu: Add boot-from-eMMC HW strapping bit for AST2600 SoC
aspeed: Introduce a AspeedSoCClass 'boot_from_emmc' handler
aspeed: Tune eMMC device properties to reflect HW strapping
aspeed: Add boot-from-eMMC HW strapping bit to rainier-bmc machine
aspeed: Introduce a 'hw_strap1' machine attribute
aspeed: Introduce a 'boot-emmc' machine option
tests/avocado/machine_aspeed.py: Add eMMC boot tests
Jamin Lin (5):
aspeed/adc: Add AST2700 support
aspeed/soc: support ADC for AST2700
hw/i2c/aspeed: support to set the different memory size
hw/i2c/aspeed: rename the I2C class pool attribute to share_pool
aspeed: fix coding style
docs/system/arm/aspeed.rst | 2 +
include/hw/adc/aspeed_adc.h | 1 +
include/hw/arm/aspeed_soc.h | 1 +
include/hw/i2c/aspeed_i2c.h | 6 +--
include/hw/misc/aspeed_scu.h | 4 ++
hw/adc/aspeed_adc.c | 16 ++++++++
hw/arm/aspeed.c | 83 +++++++++++++++++++++++++++++++++--------
hw/arm/aspeed_ast2600.c | 8 ++++
hw/arm/aspeed_ast27x0.c | 12 ++++++
hw/arm/aspeed_soc_common.c | 7 ++++
hw/i2c/aspeed_i2c.c | 45 ++++++++++++----------
hw/ssi/aspeed_smc.c | 3 +-
tests/avocado/machine_aspeed.py | 39 +++++++++++++++++++
13 files changed, 188 insertions(+), 39 deletions(-)
- [PULL 00/15] aspeed queue,
Cédric Le Goater <=
- [PULL 02/15] aspeed: Change type of eMMC device, Cédric Le Goater, 2024/07/21
- [PULL 06/15] aspeed: Tune eMMC device properties to reflect HW strapping, Cédric Le Goater, 2024/07/21
- [PULL 03/15] aspeed: Load eMMC first boot area as a boot rom, Cédric Le Goater, 2024/07/21
- [PULL 01/15] aspeed/smc: Fix possible integer overflow, Cédric Le Goater, 2024/07/21
- [PULL 04/15] aspeed/scu: Add boot-from-eMMC HW strapping bit for AST2600 SoC, Cédric Le Goater, 2024/07/21
- [PULL 05/15] aspeed: Introduce a AspeedSoCClass 'boot_from_emmc' handler, Cédric Le Goater, 2024/07/21
- [PULL 07/15] aspeed: Add boot-from-eMMC HW strapping bit to rainier-bmc machine, Cédric Le Goater, 2024/07/21
- [PULL 09/15] aspeed: Introduce a 'boot-emmc' machine option, Cédric Le Goater, 2024/07/21
- [PULL 08/15] aspeed: Introduce a 'hw_strap1' machine attribute, Cédric Le Goater, 2024/07/21
- [PULL 11/15] aspeed/adc: Add AST2700 support, Cédric Le Goater, 2024/07/21