[PATCH v3 0/5] aspeed: extensions and fixes

Cédric Le Goater posted 5 patches 4 years, 3 months ago
Test docker-mingw@fedora passed
Test checkpatch passed
Test docker-quick@centos7 passed
Test FreeBSD passed
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20200114103433.30534-1-clg@kaod.org
Maintainers: Peter Maydell <peter.maydell@linaro.org>, "Cédric Le Goater" <clg@kaod.org>, Jason Wang <jasowang@redhat.com>, Andrew Jeffery <andrew@aj.id.au>, Joel Stanley <joel@jms.id.au>
include/hw/arm/aspeed.h      |  2 +
include/hw/arm/aspeed_soc.h  |  2 +
include/hw/sd/aspeed_sdhci.h |  1 +
hw/arm/aspeed.c              | 72 +++++++++++++++++++++++------
hw/arm/aspeed_ast2600.c      | 31 +++++++++++--
hw/arm/aspeed_soc.c          |  2 +
hw/misc/pca9552.c            | 90 ++++++++++++++++++++++++++++++++++++
hw/net/ftgmac100.c           | 13 ++++++
hw/sd/aspeed_sdhci.c         | 11 ++++-
9 files changed, 204 insertions(+), 20 deletions(-)
[PATCH v3 0/5] aspeed: extensions and fixes
Posted by Cédric Le Goater 4 years, 3 months ago
Hi,

Here is a short series adding :

 - a new eMMC controller model for the AST2600 SoC (Andrew)
 - accessors to control the led state of the pca9552 device (Joel)
 - a 'execute-in-place' property to boot directly from CE0

Thanks,

C.

Changes since v2:

  - wrote a better commit log for the ftgmac100 fixes 
  - renamed sdhci object names

Changes since v1:

  - removed ternary operator from sdhci_attach_drive()
  - changed object name to "emmc"


Andrew Jeffery (2):
  hw/sd: Configure number of slots exposed by the ASPEED SDHCI model
  hw/arm: ast2600: Wire up the eMMC controller

Cédric Le Goater (2):
  ftgmac100: check RX and TX buffer alignment
  hw/arm/aspeed: add a 'execute-in-place' property to boot directly from
    CE0

Joel Stanley (1):
  misc/pca9552: Add qom set and get

 include/hw/arm/aspeed.h      |  2 +
 include/hw/arm/aspeed_soc.h  |  2 +
 include/hw/sd/aspeed_sdhci.h |  1 +
 hw/arm/aspeed.c              | 72 +++++++++++++++++++++++------
 hw/arm/aspeed_ast2600.c      | 31 +++++++++++--
 hw/arm/aspeed_soc.c          |  2 +
 hw/misc/pca9552.c            | 90 ++++++++++++++++++++++++++++++++++++
 hw/net/ftgmac100.c           | 13 ++++++
 hw/sd/aspeed_sdhci.c         | 11 ++++-
 9 files changed, 204 insertions(+), 20 deletions(-)

-- 
2.21.1


Re: [PATCH v3 0/5] aspeed: extensions and fixes
Posted by Peter Maydell 4 years, 2 months ago
On Tue, 14 Jan 2020 at 10:34, Cédric Le Goater <clg@kaod.org> wrote:
>
> Hi,
>
> Here is a short series adding :
>
>  - a new eMMC controller model for the AST2600 SoC (Andrew)
>  - accessors to control the led state of the pca9552 device (Joel)
>  - a 'execute-in-place' property to boot directly from CE0



Applied to target-arm.next, thanks (I fixed up patch 1 to
use device_class_set_props()).

-- PMM