mbox

[PULL,00/20] aspeed queue

Message ID 20200901124525.220252-1-clg@kaod.org
State New
Headers show

Pull-request

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

Message

Cédric Le Goater Sept. 1, 2020, 12:45 p.m. UTC
The following changes since commit 2f4c51c0f384d7888a04b4815861e6d5fd244d75:

  Merge remote-tracking branch 'remotes/kraxel/tags/usb-20200831-pull-request' into staging (2020-08-31 19:39:13 +0100)

are available in the Git repository at:

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

for you to fetch changes up to ddd8ab19749b8639fc08bfe4d0df0204eec049f0:

  hw: add a number of SPI-flash's of m25p80 family (2020-09-01 14:21:51 +0200)

----------------------------------------------------------------
Various fixes of Aspeed machines :

* New Supermicro X11 BMC machine (Erik)
* Fixed valid access size on AST2400 SCU
* Improved robustness of the ftgmac100 model.
* New flash models in m25p80 (Igor)
* Fixed reset sequence of SDHCI/eMMC controllers
* Improved support of the AST2600 SDMC  (Joel)
* Couple of SMC cleanups

----------------------------------------------------------------
Cédric Le Goater (15):
      m25p80: Return the JEDEC ID twice for mx25l25635e
      m25p80: Add support for n25q512ax3
      aspeed/scu: Fix valid access size on AST2400
      aspeed/smc: Fix MemoryRegionOps definition
      aspeed/smc: Fix max_slaves of the legacy SMC device
      aspeed/sdhci: Fix reset sequence
      ftgmac100: Fix registers that can be read
      ftgmac100: Fix interrupt status "Packet transmitted on ethernet"
      ftgmac100: Fix interrupt status "Packet moved to RX FIFO"
      ftgmac100: Change interrupt status when a DMA error occurs
      ftgmac100: Check for invalid len and address before doing a DMA transfer
      ftgmac100: Fix integer overflow in ftgmac100_do_tx()
      ftgmac100: Improve software reset
      aspeed/sdmc: Simplify calculation of RAM bits
      aspeed/smc: Open AHB window of the second chip of the AST2600 FMC controller

Erik Smit (1):
      hw/arm/aspeed: Add board model for Supermicro X11 BMC

Igor Kononenko (2):
      arm: aspeed: add strap define `25HZ` of AST2500
      hw: add a number of SPI-flash's of m25p80 family

Joel Stanley (2):
      aspeed/sdmc: Perform memory training
      aspeed/sdmc: Allow writes to unprotected registers

 include/hw/misc/aspeed_scu.h  |   1 +
 include/hw/misc/aspeed_sdmc.h |  13 ++++-
 hw/arm/aspeed.c               |  35 ++++++++++++
 hw/block/m25p80.c             |   5 +-
 hw/misc/aspeed_scu.c          |   9 +--
 hw/misc/aspeed_sdmc.c         | 125 +++++++++++++++++++++++-------------------
 hw/net/ftgmac100.c            |  95 +++++++++++++++++++++++---------
 hw/sd/aspeed_sdhci.c          |  14 ++++-
 hw/ssi/aspeed_smc.c           |   6 +-
 9 files changed, 208 insertions(+), 95 deletions(-)

Comments

Peter Maydell Sept. 3, 2020, 3:58 p.m. UTC | #1
On Tue, 1 Sep 2020 at 13:45, Cédric Le Goater <clg@kaod.org> wrote:
>
> The following changes since commit 2f4c51c0f384d7888a04b4815861e6d5fd244d75:
>
>   Merge remote-tracking branch 'remotes/kraxel/tags/usb-20200831-pull-request' into staging (2020-08-31 19:39:13 +0100)
>
> are available in the Git repository at:
>
>   https://github.com/legoater/qemu/ tags/pull-aspeed-20200901
>
> for you to fetch changes up to ddd8ab19749b8639fc08bfe4d0df0204eec049f0:
>
>   hw: add a number of SPI-flash's of m25p80 family (2020-09-01 14:21:51 +0200)
>
> ----------------------------------------------------------------
> Various fixes of Aspeed machines :
>
> * New Supermicro X11 BMC machine (Erik)
> * Fixed valid access size on AST2400 SCU
> * Improved robustness of the ftgmac100 model.
> * New flash models in m25p80 (Igor)
> * Fixed reset sequence of SDHCI/eMMC controllers
> * Improved support of the AST2600 SDMC  (Joel)
> * Couple of SMC cleanups


Applied, thanks.

Please update the changelog at https://wiki.qemu.org/ChangeLog/5.2
for any user-visible changes.

-- PMM