[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 0/7] Add Qualcomm BMC machines
From: |
Jae Hyun Yoo |
Subject: |
[PATCH v2 0/7] Add Qualcomm BMC machines |
Date: |
Mon, 27 Jun 2022 08:46:56 -0700 |
Hello,
I'm sending a series to add Qualcomm BMC machines that are equipped with
Aspeed AST2600 SoC. Also, this series adds MAX31785 fan controller device
emulation. Please help to review.
Thanks,
Jae
Changes in v2:
* Fixed a typo in QCOM DC-SCM V1 HW strap value comment. (Rebecca)
* Removed a useless change which is reverted by the next patch. (Joel)
* Changed machine name to 'qcom-firework-bmc'. (Cedric)
* Dropped FRU eeprom initialization part. (Patrick)
* Fixed comment for a case of PB_ALL_PAGES. (Titus)
* Removed an error log printing when it handles PB_ALL_PAGES. (Jae)
* Fixed a typo in copyright in max31785.c. (Rebecca)
* Fixed indentation issues in max31785.c. (Titus)
* Fixed license identifier style and refined indentation of defines. (Jae)
* Added PMBUS and MAX31785 config selection under ASPEED_SOC. (Titus)
* Moved machine updating part from the previous patch. (Cedric)
* Refined code to avoid retouching by the next patch. (Joel)
Graeme Gregory (1):
hw/arm/aspeed: add Qualcomm Firework BMC machine
Jae Hyun Yoo (2):
hw/arm/aspeed: add support for the Qualcomm DC-SCM v1 board
hw/arm/aspeed: firework: add I2C MUXes for VR channels
Maheswara Kurapati (4):
hw/i2c: pmbus: Page #255 is valid page for read requests.
hw/sensor: add Maxim MAX31785 device
hw/arm/aspeed: Add MAX31785 Fan controllers
hw/arm/aspeed: firework: Add Thermal Diodes
hw/arm/Kconfig | 2 +
hw/arm/aspeed.c | 95 ++++++-
hw/i2c/pmbus_device.c | 6 +-
hw/sensor/Kconfig | 4 +
hw/sensor/max31785.c | 573 ++++++++++++++++++++++++++++++++++++++++++
hw/sensor/meson.build | 1 +
6 files changed, 674 insertions(+), 7 deletions(-)
create mode 100644 hw/sensor/max31785.c
--
2.25.1
- [PATCH v2 0/7] Add Qualcomm BMC machines,
Jae Hyun Yoo <=
- [PATCH v2 2/7] hw/arm/aspeed: add Qualcomm Firework BMC machine, Jae Hyun Yoo, 2022/06/27
- [PATCH v2 3/7] hw/i2c: pmbus: Page #255 is valid page for read requests., Jae Hyun Yoo, 2022/06/27
- [PATCH v2 5/7] hw/arm/aspeed: Add MAX31785 Fan controllers, Jae Hyun Yoo, 2022/06/27
- [PATCH v2 4/7] hw/sensor: add Maxim MAX31785 device, Jae Hyun Yoo, 2022/06/27
- [PATCH v2 6/7] hw/arm/aspeed: firework: Add Thermal Diodes, Jae Hyun Yoo, 2022/06/27