All of lore.kernel.org
 help / color / mirror / Atom feed
* [Bug 1856724] [NEW] SB.PCI0.SMB0 device drivers unavailable
@ 2019-12-17 15:32 Rafal Kupiec
  2019-12-21 16:10 ` [Bug 1856724] " Anastasios Vacharakis
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: Rafal Kupiec @ 2019-12-17 15:32 UTC (permalink / raw)
  To: qemu-devel

Public bug reported:

QEMU 4.2 introduces new device with this code:

static void build_smb0(Aml *table, I2CBus *smbus, int devnr, int func)
{
    Aml *scope = aml_scope("_SB.PCI0");
    Aml *dev = aml_device("SMB0");

    aml_append(dev, aml_name_decl("_HID", aml_eisaid("APP0005")));
    aml_append(dev, aml_name_decl("_ADR", aml_int(devnr << 16 | func)));
    build_acpi_ipmi_devices(dev, BUS(smbus), "\\_SB.PCI0.SMB0");
    aml_append(scope, dev);
    aml_append(table, scope);
}

It is detected by Windows 10 as 'Unknown Device' and there is no driver available.
Please provide a working Windows driver or give ability to disable this device.

** Affects: qemu
     Importance: Undecided
         Status: New

-- 
You received this bug notification because you are a member of qemu-
devel-ml, which is subscribed to QEMU.
https://bugs.launchpad.net/bugs/1856724

Title:
  SB.PCI0.SMB0 device drivers unavailable

Status in QEMU:
  New

Bug description:
  QEMU 4.2 introduces new device with this code:

  static void build_smb0(Aml *table, I2CBus *smbus, int devnr, int func)
  {
      Aml *scope = aml_scope("_SB.PCI0");
      Aml *dev = aml_device("SMB0");

      aml_append(dev, aml_name_decl("_HID", aml_eisaid("APP0005")));
      aml_append(dev, aml_name_decl("_ADR", aml_int(devnr << 16 | func)));
      build_acpi_ipmi_devices(dev, BUS(smbus), "\\_SB.PCI0.SMB0");
      aml_append(scope, dev);
      aml_append(table, scope);
  }

  It is detected by Windows 10 as 'Unknown Device' and there is no driver available.
  Please provide a working Windows driver or give ability to disable this device.

To manage notifications about this bug go to:
https://bugs.launchpad.net/qemu/+bug/1856724/+subscriptions


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

* [Bug 1856724] Re: SB.PCI0.SMB0 device drivers unavailable
  2019-12-17 15:32 [Bug 1856724] [NEW] SB.PCI0.SMB0 device drivers unavailable Rafal Kupiec
@ 2019-12-21 16:10 ` Anastasios Vacharakis
  2019-12-29 11:10 ` Deorder
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Anastasios Vacharakis @ 2019-12-21 16:10 UTC (permalink / raw)
  To: qemu-devel

what is this shit?

-- 
You received this bug notification because you are a member of qemu-
devel-ml, which is subscribed to QEMU.
https://bugs.launchpad.net/bugs/1856724

Title:
  SB.PCI0.SMB0 device drivers unavailable

Status in QEMU:
  New

Bug description:
  QEMU 4.2 introduces new device with this code:

  static void build_smb0(Aml *table, I2CBus *smbus, int devnr, int func)
  {
      Aml *scope = aml_scope("_SB.PCI0");
      Aml *dev = aml_device("SMB0");

      aml_append(dev, aml_name_decl("_HID", aml_eisaid("APP0005")));
      aml_append(dev, aml_name_decl("_ADR", aml_int(devnr << 16 | func)));
      build_acpi_ipmi_devices(dev, BUS(smbus), "\\_SB.PCI0.SMB0");
      aml_append(scope, dev);
      aml_append(table, scope);
  }

  It is detected by Windows 10 as 'Unknown Device' and there is no driver available.
  Please provide a working Windows driver or give ability to disable this device.

To manage notifications about this bug go to:
https://bugs.launchpad.net/qemu/+bug/1856724/+subscriptions


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

* [Bug 1856724] Re: SB.PCI0.SMB0 device drivers unavailable
  2019-12-17 15:32 [Bug 1856724] [NEW] SB.PCI0.SMB0 device drivers unavailable Rafal Kupiec
  2019-12-21 16:10 ` [Bug 1856724] " Anastasios Vacharakis
@ 2019-12-29 11:10 ` Deorder
  2020-01-28 20:57 ` Rafal Kupiec
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Deorder @ 2019-12-29 11:10 UTC (permalink / raw)
  To: qemu-devel

I noticed this as well. Apparently it was introduced in the following
commit:

https://github.com/qemu/qemu/commit/ebe15582cafeb944a1c6e99aa526e81a1551c567

Saying:

---
pc: Add an SMB0 ACPI device to q35

This is so I2C devices can be found in the ACPI namespace.  Currently
that's only IPMI, but devices can be easily added now.

Adding the devices required some PCI information, and the bus itself
to be added to the PCMachineState structure.

Note that this only works on Q35, the ACPI for PIIX4 is not capable
of handling an SMBus device.

Cc: Michael S. Tsirkin <mst@redhat.com>
Cc: Igor Mammedov <imammedo@redhat.com>
Signed-off-by: Corey Minyard <cminyard@mvista.com>
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
---

-- 
You received this bug notification because you are a member of qemu-
devel-ml, which is subscribed to QEMU.
https://bugs.launchpad.net/bugs/1856724

Title:
  SB.PCI0.SMB0 device drivers unavailable

Status in QEMU:
  New

Bug description:
  QEMU 4.2 introduces new device with this code:

  static void build_smb0(Aml *table, I2CBus *smbus, int devnr, int func)
  {
      Aml *scope = aml_scope("_SB.PCI0");
      Aml *dev = aml_device("SMB0");

      aml_append(dev, aml_name_decl("_HID", aml_eisaid("APP0005")));
      aml_append(dev, aml_name_decl("_ADR", aml_int(devnr << 16 | func)));
      build_acpi_ipmi_devices(dev, BUS(smbus), "\\_SB.PCI0.SMB0");
      aml_append(scope, dev);
      aml_append(table, scope);
  }

  It is detected by Windows 10 as 'Unknown Device' and there is no driver available.
  Please provide a working Windows driver or give ability to disable this device.

To manage notifications about this bug go to:
https://bugs.launchpad.net/qemu/+bug/1856724/+subscriptions


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

* [Bug 1856724] Re: SB.PCI0.SMB0 device drivers unavailable
  2019-12-17 15:32 [Bug 1856724] [NEW] SB.PCI0.SMB0 device drivers unavailable Rafal Kupiec
  2019-12-21 16:10 ` [Bug 1856724] " Anastasios Vacharakis
  2019-12-29 11:10 ` Deorder
@ 2020-01-28 20:57 ` Rafal Kupiec
  2020-01-29 21:11 ` Eric Corriveau
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Rafal Kupiec @ 2020-01-28 20:57 UTC (permalink / raw)
  To: qemu-devel

Any progress? When will you provide a Windows driver for this and/or
ability to disable this device in Qemu?

-- 
You received this bug notification because you are a member of qemu-
devel-ml, which is subscribed to QEMU.
https://bugs.launchpad.net/bugs/1856724

Title:
  SB.PCI0.SMB0 device drivers unavailable

Status in QEMU:
  New

Bug description:
  QEMU 4.2 introduces new device with this code:

  static void build_smb0(Aml *table, I2CBus *smbus, int devnr, int func)
  {
      Aml *scope = aml_scope("_SB.PCI0");
      Aml *dev = aml_device("SMB0");

      aml_append(dev, aml_name_decl("_HID", aml_eisaid("APP0005")));
      aml_append(dev, aml_name_decl("_ADR", aml_int(devnr << 16 | func)));
      build_acpi_ipmi_devices(dev, BUS(smbus), "\\_SB.PCI0.SMB0");
      aml_append(scope, dev);
      aml_append(table, scope);
  }

  It is detected by Windows 10 as 'Unknown Device' and there is no driver available.
  Please provide a working Windows driver or give ability to disable this device.

To manage notifications about this bug go to:
https://bugs.launchpad.net/qemu/+bug/1856724/+subscriptions


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

* [Bug 1856724] Re: SB.PCI0.SMB0 device drivers unavailable
  2019-12-17 15:32 [Bug 1856724] [NEW] SB.PCI0.SMB0 device drivers unavailable Rafal Kupiec
                   ` (2 preceding siblings ...)
  2020-01-28 20:57 ` Rafal Kupiec
@ 2020-01-29 21:11 ` Eric Corriveau
  2020-01-30 19:16 ` John Snow
  2020-04-30 13:40 ` Laurent Vivier
  5 siblings, 0 replies; 7+ messages in thread
From: Eric Corriveau @ 2020-01-29 21:11 UTC (permalink / raw)
  To: qemu-devel

I'm also having this issue on a Win 10 VM running on a unRaid server.

-- 
You received this bug notification because you are a member of qemu-
devel-ml, which is subscribed to QEMU.
https://bugs.launchpad.net/bugs/1856724

Title:
  SB.PCI0.SMB0 device drivers unavailable

Status in QEMU:
  New

Bug description:
  QEMU 4.2 introduces new device with this code:

  static void build_smb0(Aml *table, I2CBus *smbus, int devnr, int func)
  {
      Aml *scope = aml_scope("_SB.PCI0");
      Aml *dev = aml_device("SMB0");

      aml_append(dev, aml_name_decl("_HID", aml_eisaid("APP0005")));
      aml_append(dev, aml_name_decl("_ADR", aml_int(devnr << 16 | func)));
      build_acpi_ipmi_devices(dev, BUS(smbus), "\\_SB.PCI0.SMB0");
      aml_append(scope, dev);
      aml_append(table, scope);
  }

  It is detected by Windows 10 as 'Unknown Device' and there is no driver available.
  Please provide a working Windows driver or give ability to disable this device.

To manage notifications about this bug go to:
https://bugs.launchpad.net/qemu/+bug/1856724/+subscriptions


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

* [Bug 1856724] Re: SB.PCI0.SMB0 device drivers unavailable
  2019-12-17 15:32 [Bug 1856724] [NEW] SB.PCI0.SMB0 device drivers unavailable Rafal Kupiec
                   ` (3 preceding siblings ...)
  2020-01-29 21:11 ` Eric Corriveau
@ 2020-01-30 19:16 ` John Snow
  2020-04-30 13:40 ` Laurent Vivier
  5 siblings, 0 replies; 7+ messages in thread
From: John Snow @ 2020-01-30 19:16 UTC (permalink / raw)
  To: qemu-devel

Hi, although this isn't my area of expertise, the bug caught my eye.
Peter Maydell points out that there is a commit that addresses this
issue:
https://github.com/qemu/qemu/commit/aefcaf9d1b3ebb30981627bd08f595211a648a62

It just never made its way back here to launchpad.

** Changed in: qemu
       Status: New => Fix Committed

-- 
You received this bug notification because you are a member of qemu-
devel-ml, which is subscribed to QEMU.
https://bugs.launchpad.net/bugs/1856724

Title:
  SB.PCI0.SMB0 device drivers unavailable

Status in QEMU:
  Fix Committed

Bug description:
  QEMU 4.2 introduces new device with this code:

  static void build_smb0(Aml *table, I2CBus *smbus, int devnr, int func)
  {
      Aml *scope = aml_scope("_SB.PCI0");
      Aml *dev = aml_device("SMB0");

      aml_append(dev, aml_name_decl("_HID", aml_eisaid("APP0005")));
      aml_append(dev, aml_name_decl("_ADR", aml_int(devnr << 16 | func)));
      build_acpi_ipmi_devices(dev, BUS(smbus), "\\_SB.PCI0.SMB0");
      aml_append(scope, dev);
      aml_append(table, scope);
  }

  It is detected by Windows 10 as 'Unknown Device' and there is no driver available.
  Please provide a working Windows driver or give ability to disable this device.

To manage notifications about this bug go to:
https://bugs.launchpad.net/qemu/+bug/1856724/+subscriptions


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

* [Bug 1856724] Re: SB.PCI0.SMB0 device drivers unavailable
  2019-12-17 15:32 [Bug 1856724] [NEW] SB.PCI0.SMB0 device drivers unavailable Rafal Kupiec
                   ` (4 preceding siblings ...)
  2020-01-30 19:16 ` John Snow
@ 2020-04-30 13:40 ` Laurent Vivier
  5 siblings, 0 replies; 7+ messages in thread
From: Laurent Vivier @ 2020-04-30 13:40 UTC (permalink / raw)
  To: qemu-devel

** Changed in: qemu
       Status: Fix Committed => Fix Released

-- 
You received this bug notification because you are a member of qemu-
devel-ml, which is subscribed to QEMU.
https://bugs.launchpad.net/bugs/1856724

Title:
  SB.PCI0.SMB0 device drivers unavailable

Status in QEMU:
  Fix Released

Bug description:
  QEMU 4.2 introduces new device with this code:

  static void build_smb0(Aml *table, I2CBus *smbus, int devnr, int func)
  {
      Aml *scope = aml_scope("_SB.PCI0");
      Aml *dev = aml_device("SMB0");

      aml_append(dev, aml_name_decl("_HID", aml_eisaid("APP0005")));
      aml_append(dev, aml_name_decl("_ADR", aml_int(devnr << 16 | func)));
      build_acpi_ipmi_devices(dev, BUS(smbus), "\\_SB.PCI0.SMB0");
      aml_append(scope, dev);
      aml_append(table, scope);
  }

  It is detected by Windows 10 as 'Unknown Device' and there is no driver available.
  Please provide a working Windows driver or give ability to disable this device.

To manage notifications about this bug go to:
https://bugs.launchpad.net/qemu/+bug/1856724/+subscriptions


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

end of thread, other threads:[~2020-04-30 14:01 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-12-17 15:32 [Bug 1856724] [NEW] SB.PCI0.SMB0 device drivers unavailable Rafal Kupiec
2019-12-21 16:10 ` [Bug 1856724] " Anastasios Vacharakis
2019-12-29 11:10 ` Deorder
2020-01-28 20:57 ` Rafal Kupiec
2020-01-29 21:11 ` Eric Corriveau
2020-01-30 19:16 ` John Snow
2020-04-30 13:40 ` Laurent Vivier

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.