[PATCH 0/4] initial support for yosemite v4

Alexander Hansen posted 4 patches 3 weeks, 4 days ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20260504165043.213704-2-alexander.hansen@9elements.com
Maintainers: Paolo Bonzini <pbonzini@redhat.com>, Peter Maydell <peter.maydell@linaro.org>, "Cédric Le Goater" <clg@kaod.org>, Steven Lee <steven_lee@aspeedtech.com>, Troy Lee <leetroy@gmail.com>, Jamin Lin <jamin_lin@aspeedtech.com>, Kane Chen <kane_chen@aspeedtech.com>, Andrew Jeffery <andrew@codeconstruct.com.au>, Joel Stanley <joel@jms.id.au>, "Philippe Mathieu-Daudé" <philmd@linaro.org>
There is a newer version of this series
hw/arm/Kconfig                 |   3 +
hw/arm/aspeed_ast2600_fby4.c   | 298 ++++++++++++++++++++
hw/arm/meson.build             |   1 +
hw/sensor/Kconfig              |  12 +
hw/sensor/adc128d818.c         | 414 +++++++++++++++++++++++++++
hw/sensor/max11615.c           | 200 +++++++++++++
hw/sensor/max31790.c           | 497 +++++++++++++++++++++++++++++++++
hw/sensor/meson.build          |   3 +
hw/sensor/trace-events         |  24 ++
include/hw/sensor/adc128d818.h |  20 ++
include/hw/sensor/max11615.h   |  20 ++
include/hw/sensor/max31790.h   |   7 +
12 files changed, 1499 insertions(+)
create mode 100644 hw/arm/aspeed_ast2600_fby4.c
create mode 100644 hw/sensor/adc128d818.c
create mode 100644 hw/sensor/max11615.c
create mode 100644 hw/sensor/max31790.c
create mode 100644 include/hw/sensor/adc128d818.h
create mode 100644 include/hw/sensor/max11615.h
create mode 100644 include/hw/sensor/max31790.h
[PATCH 0/4] initial support for yosemite v4
Posted by Alexander Hansen 3 weeks, 4 days ago
Add initial and incomplete support for yosemite v4 BMC-side emulation.

As part of this effort 3 new sensor ICs are added.

Alexander Hansen (4):
  hw/sensor: MAX31790 support
  hw/sensor: support MAX11615
  hw/sensor: support Texas Instruments ADC128D818
  ast2600: yosemite4 initial support

 hw/arm/Kconfig                 |   3 +
 hw/arm/aspeed_ast2600_fby4.c   | 298 ++++++++++++++++++++
 hw/arm/meson.build             |   1 +
 hw/sensor/Kconfig              |  12 +
 hw/sensor/adc128d818.c         | 414 +++++++++++++++++++++++++++
 hw/sensor/max11615.c           | 200 +++++++++++++
 hw/sensor/max31790.c           | 497 +++++++++++++++++++++++++++++++++
 hw/sensor/meson.build          |   3 +
 hw/sensor/trace-events         |  24 ++
 include/hw/sensor/adc128d818.h |  20 ++
 include/hw/sensor/max11615.h   |  20 ++
 include/hw/sensor/max31790.h   |   7 +
 12 files changed, 1499 insertions(+)
 create mode 100644 hw/arm/aspeed_ast2600_fby4.c
 create mode 100644 hw/sensor/adc128d818.c
 create mode 100644 hw/sensor/max11615.c
 create mode 100644 hw/sensor/max31790.c
 create mode 100644 include/hw/sensor/adc128d818.h
 create mode 100644 include/hw/sensor/max11615.h
 create mode 100644 include/hw/sensor/max31790.h

-- 
2.54.0
Re: [PATCH 0/4] initial support for yosemite v4
Posted by Peter Maydell 3 weeks, 4 days ago
Cc'ing the aspeed maintainers as this is a new aspeed board.

On Mon, 4 May 2026 at 17:52, Alexander Hansen
<alexander.hansen@9elements.com> wrote:
>
> Add initial and incomplete support for yosemite v4 BMC-side emulation.
>
> As part of this effort 3 new sensor ICs are added.
>
> Alexander Hansen (4):
>   hw/sensor: MAX31790 support
>   hw/sensor: support MAX11615
>   hw/sensor: support Texas Instruments ADC128D818
>   ast2600: yosemite4 initial support
>
>  hw/arm/Kconfig                 |   3 +
>  hw/arm/aspeed_ast2600_fby4.c   | 298 ++++++++++++++++++++
>  hw/arm/meson.build             |   1 +
>  hw/sensor/Kconfig              |  12 +
>  hw/sensor/adc128d818.c         | 414 +++++++++++++++++++++++++++
>  hw/sensor/max11615.c           | 200 +++++++++++++
>  hw/sensor/max31790.c           | 497 +++++++++++++++++++++++++++++++++
>  hw/sensor/meson.build          |   3 +
>  hw/sensor/trace-events         |  24 ++
>  include/hw/sensor/adc128d818.h |  20 ++
>  include/hw/sensor/max11615.h   |  20 ++
>  include/hw/sensor/max31790.h   |   7 +
>  12 files changed, 1499 insertions(+)
>  create mode 100644 hw/arm/aspeed_ast2600_fby4.c
>  create mode 100644 hw/sensor/adc128d818.c
>  create mode 100644 hw/sensor/max11615.c
>  create mode 100644 hw/sensor/max31790.c
>  create mode 100644 include/hw/sensor/adc128d818.h
>  create mode 100644 include/hw/sensor/max11615.h
>  create mode 100644 include/hw/sensor/max31790.h
>
> --
> 2.54.0

thanks
-- PMM