qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PULL 00/20] aspeed queue
@ 2020-09-01 12:45 Cédric Le Goater
  2020-09-01 12:45 ` [PULL 01/20] m25p80: Return the JEDEC ID twice for mx25l25635e Cédric Le Goater
                   ` (20 more replies)
  0 siblings, 21 replies; 22+ messages in thread
From: Cédric Le Goater @ 2020-09-01 12:45 UTC (permalink / raw)
  To: qemu-devel; +Cc: Peter Maydell, Cédric Le Goater

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(-)


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

end of thread, other threads:[~2020-09-03 15:59 UTC | newest]

Thread overview: 22+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-09-01 12:45 [PULL 00/20] aspeed queue Cédric Le Goater
2020-09-01 12:45 ` [PULL 01/20] m25p80: Return the JEDEC ID twice for mx25l25635e Cédric Le Goater
2020-09-01 12:45 ` [PULL 02/20] m25p80: Add support for n25q512ax3 Cédric Le Goater
2020-09-01 12:45 ` [PULL 03/20] aspeed/scu: Fix valid access size on AST2400 Cédric Le Goater
2020-09-01 12:45 ` [PULL 04/20] hw/arm/aspeed: Add board model for Supermicro X11 BMC Cédric Le Goater
2020-09-01 12:45 ` [PULL 05/20] aspeed/smc: Fix MemoryRegionOps definition Cédric Le Goater
2020-09-01 12:45 ` [PULL 06/20] aspeed/smc: Fix max_slaves of the legacy SMC device Cédric Le Goater
2020-09-01 12:45 ` [PULL 07/20] aspeed/sdhci: Fix reset sequence Cédric Le Goater
2020-09-01 12:45 ` [PULL 08/20] ftgmac100: Fix registers that can be read Cédric Le Goater
2020-09-01 12:45 ` [PULL 09/20] ftgmac100: Fix interrupt status "Packet transmitted on ethernet" Cédric Le Goater
2020-09-01 12:45 ` [PULL 10/20] ftgmac100: Fix interrupt status "Packet moved to RX FIFO" Cédric Le Goater
2020-09-01 12:45 ` [PULL 11/20] ftgmac100: Change interrupt status when a DMA error occurs Cédric Le Goater
2020-09-01 12:45 ` [PULL 12/20] ftgmac100: Check for invalid len and address before doing a DMA transfer Cédric Le Goater
2020-09-01 12:45 ` [PULL 13/20] ftgmac100: Fix integer overflow in ftgmac100_do_tx() Cédric Le Goater
2020-09-01 12:45 ` [PULL 14/20] ftgmac100: Improve software reset Cédric Le Goater
2020-09-01 12:45 ` [PULL 15/20] aspeed/sdmc: Perform memory training Cédric Le Goater
2020-09-01 12:45 ` [PULL 16/20] aspeed/sdmc: Allow writes to unprotected registers Cédric Le Goater
2020-09-01 12:45 ` [PULL 17/20] aspeed/sdmc: Simplify calculation of RAM bits Cédric Le Goater
2020-09-01 12:45 ` [PULL 18/20] aspeed/smc: Open AHB window of the second chip of the AST2600 FMC controller Cédric Le Goater
2020-09-01 12:45 ` [PULL 19/20] arm: aspeed: add strap define `25HZ` of AST2500 Cédric Le Goater
2020-09-01 12:45 ` [PULL 20/20] hw: add a number of SPI-flash's of m25p80 family Cédric Le Goater
2020-09-03 15:58 ` [PULL 00/20] aspeed queue Peter Maydell

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).