mbox series

[GIT,PULL] I2C changes for next qemu release

Message ID 20210513215408.GC2921206@minyard.net (mailing list archive)
State New, archived
Headers show
Series [GIT,PULL] I2C changes for next qemu release | expand

Pull-request

https://github.com/cminyard/qemu.git tags/for-qemu-6.1-v1

Message

Corey Minyard May 13, 2021, 9:54 p.m. UTC
This is the addition of a new devices used in a lot of BMCs, and adds
the infrastructure so other devices of it's type can be added.

I will update the Changelog as necessary.

This was through several revisions on the mailing list recently.

Thanks,

-corey

The following changes since commit 8fe9f1f891eff4e37f82622b7480ee748bf4af74:

  Update version for v6.0.0-rc3 release (2021-04-14 22:06:18 +0100)

are available in the Git repository at:

  https://github.com/cminyard/qemu.git tags/for-qemu-6.1-v1

for you to fetch changes up to 065177eeceff552a5316bff9435188b50a2da1b6:

  hw/i2c: add pca954x i2c-mux switch (2021-04-15 07:10:39 -0500)

----------------------------------------------------------------
Add a bus multiplexer device

This patch set adds a bus multiplexer and the necessary infrastructure
in the I2C code to allow it to work.

These are common on systems with lots of I2C devices, like an IPMI BMC.

----------------------------------------------------------------
Patrick Venture (4):
      hw/i2c: name I2CNode list in I2CBus
      hw/i2c: add match method for device search
      hw/i2c: move search to i2c_scan_bus method
      hw/i2c: add pca954x i2c-mux switch

 MAINTAINERS                      |   6 +
 hw/i2c/Kconfig                   |   4 +
 hw/i2c/core.c                    |  55 ++++++--
 hw/i2c/i2c_mux_pca954x.c         | 290 +++++++++++++++++++++++++++++++++++++++
 hw/i2c/meson.build               |   1 +
 hw/i2c/trace-events              |   5 +
 include/hw/i2c/i2c.h             |  17 ++-
 include/hw/i2c/i2c_mux_pca954x.h |  19 +++
 8 files changed, 383 insertions(+), 14 deletions(-)
 create mode 100644 hw/i2c/i2c_mux_pca954x.c
 create mode 100644 include/hw/i2c/i2c_mux_pca954x.h

Comments

Peter Maydell May 14, 2021, 4:19 p.m. UTC | #1
On Thu, 13 May 2021 at 22:54, Corey Minyard <minyard@acm.org> wrote:
>
> This is the addition of a new devices used in a lot of BMCs, and adds
> the infrastructure so other devices of it's type can be added.
>
> I will update the Changelog as necessary.
>
> This was through several revisions on the mailing list recently.
>
> Thanks,
>
> -corey
>
> The following changes since commit 8fe9f1f891eff4e37f82622b7480ee748bf4af74:
>
>   Update version for v6.0.0-rc3 release (2021-04-14 22:06:18 +0100)
>
> are available in the Git repository at:
>
>   https://github.com/cminyard/qemu.git tags/for-qemu-6.1-v1
>
> for you to fetch changes up to 065177eeceff552a5316bff9435188b50a2da1b6:
>
>   hw/i2c: add pca954x i2c-mux switch (2021-04-15 07:10:39 -0500)
>
> ----------------------------------------------------------------
> Add a bus multiplexer device
>
> This patch set adds a bus multiplexer and the necessary infrastructure
> in the I2C code to allow it to work.
>
> These are common on systems with lots of I2C devices, like an IPMI BMC.
>


Applied, thanks.

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

-- PMM