qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Benjamin Herrenschmidt <benh@kernel.crashing.org>
To: minyard@acm.org
Cc: Corey Minyard <cminyard@mvista.com>, qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH 12/16] ipmi: Add SMBIOS table entry
Date: Thu, 19 Feb 2015 13:53:36 +1100	[thread overview]
Message-ID: <1424314416.26254.25.camel@kernel.crashing.org> (raw)
In-Reply-To: <1418411751-3614-13-git-send-email-minyard@acm.org>

On Fri, 2014-12-12 at 13:15 -0600, minyard@acm.org wrote:
> From: Corey Minyard <cminyard@mvista.com>
> 
> Add an IPMI table entry to the SMBIOS.

Can this be made optional ? I'd like to use the BMC on an OpenPower
model I'm working on but that has no smbios..

Cheers,
Ben.

> Signed-off-by: Corey Minyard <cminyard@mvista.com>
> ---
>  hw/ipmi/isa_ipmi.c | 43 +++++++++++++++++++++++++++++++++++++++++++
>  1 file changed, 43 insertions(+)
> 
> diff --git a/hw/ipmi/isa_ipmi.c b/hw/ipmi/isa_ipmi.c
> index e62f744..83ea706 100644
> --- a/hw/ipmi/isa_ipmi.c
> +++ b/hw/ipmi/isa_ipmi.c
> @@ -27,6 +27,7 @@
>  #include "qemu/timer.h"
>  #include "sysemu/char.h"
>  #include "sysemu/sysemu.h"
> +#include "hw/i386/smbios.h"
>  #include "ipmi.h"
>  
>  /* This is the type the user specifies on the -device command line */
> @@ -36,13 +37,50 @@
>  typedef struct ISAIPMIDevice {
>      ISADevice dev;
>      char *interface;
> +    int intftype;
>      uint32_t iobase;
>      int32 isairq;
>      uint8_t slave_addr;
> +    uint8_t version;
>      CharDriverState *chr;
>      IPMIInterface *intf;
>  } ISAIPMIDevice;
>  
> +/* SMBIOS type 38 - IPMI */
> +struct smbios_type_38 {
> +    struct smbios_structure_header header;
> +    uint8_t interface_type;
> +    uint8_t ipmi_spec_revision;
> +    uint8_t i2c_slave_address;
> +    uint8_t nv_storage_device_address;
> +    uint64_t base_address;
> +    uint8_t base_address_modifier;
> +    uint8_t interrupt_number;
> +} QEMU_PACKED;
> +
> +static void ipmi_encode_smbios(void *opaque)
> +{
> +    ISAIPMIDevice *info = opaque;
> +    struct smbios_type_38 smb38;
> +
> +    smb38.header.type = 38;
> +    smb38.header.length = sizeof(smb38);
> +    smb38.header.handle = cpu_to_le16(0x3000);
> +    smb38.interface_type = info->intftype;
> +    smb38.ipmi_spec_revision = info->version;
> +    smb38.i2c_slave_address = info->slave_addr;
> +    smb38.nv_storage_device_address = 0;
> +
> +    /* or 1 to set it to I/O space */
> +    smb38.base_address = cpu_to_le64(info->iobase | 1);
> +
> +     /* 1-byte boundaries, addr bit0=0, level triggered irq */
> +    smb38.base_address_modifier = 1;
> +    smb38.interrupt_number = info->isairq;
> +    smbios_table_entry_add((struct smbios_structure_header *) &smb38,
> +                           sizeof(smb38), true);
> +}
> +
>  static void ipmi_isa_realizefn(DeviceState *dev, Error **errp)
>  {
>      ISADevice *isadev = ISA_DEVICE(dev);
> @@ -50,6 +88,7 @@ static void ipmi_isa_realizefn(DeviceState *dev, Error **errp)
>      char typename[20];
>      Object *intfobj;
>      IPMIInterface *intf;
> +    IPMIInterfaceClass *intfk;
>      Object *bmcobj;
>      IPMIBmc *bmc;
>  
> @@ -68,10 +107,13 @@ static void ipmi_isa_realizefn(DeviceState *dev, Error **errp)
>               TYPE_IPMI_INTERFACE_PREFIX "%s", ipmi->interface);
>      intfobj = object_new(typename);
>      intf = IPMI_INTERFACE(intfobj);
> +    intfk = IPMI_INTERFACE_GET_CLASS(intf);
>      bmc->intf = intf;
>      intf->bmc = bmc;
>      intf->io_base = ipmi->iobase;
>      intf->slave_addr = ipmi->slave_addr;
> +    ipmi->intftype = intfk->smbios_type;
> +    ipmi->version = 0x20; /* Version 2.0 */
>      ipmi_interface_init(intf, errp);
>      if (*errp) {
>          return;
> @@ -103,6 +145,7 @@ static void ipmi_isa_realizefn(DeviceState *dev, Error **errp)
>      qdev_set_legacy_instance_id(dev, intf->io_base, intf->io_length);
>  
>      isa_register_ioport(isadev, &intf->io, intf->io_base);
> +    smbios_register_device_table_handler(ipmi_encode_smbios, ipmi);
>  }
>  
>  static void ipmi_isa_reset(DeviceState *qdev)

  reply	other threads:[~2015-02-19  2:54 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-12-12 19:15 [Qemu-devel] [PATCH 00/16] Add an IPMI device to qemu minyard
2014-12-12 19:15 ` [Qemu-devel] [PATCH 01/16] Add a base IPMI interface minyard
2014-12-12 19:15 ` [Qemu-devel] [PATCH 02/16] ipmi: Add a PC ISA type structure minyard
2014-12-12 19:15 ` [Qemu-devel] [PATCH 03/16] ipmi: Add a KCS low-level interface minyard
2014-12-12 19:15 ` [Qemu-devel] [PATCH 04/16] ipmi: Add a BT " minyard
2014-12-12 19:15 ` [Qemu-devel] [PATCH 05/16] ipmi: Add a local BMC simulation minyard
2014-12-12 19:15 ` [Qemu-devel] [PATCH 06/16] ipmi: Add an external connection simulation interface minyard
2014-12-12 19:15 ` [Qemu-devel] [PATCH 07/16] ipmi: Add tests minyard
2014-12-12 19:15 ` [Qemu-devel] [PATCH 08/16] ipmi: Add documentation minyard
2014-12-12 19:15 ` [Qemu-devel] [PATCH 09/16] ipmi: Add migration capability to the IPMI device minyard
2014-12-12 19:15 ` [Qemu-devel] [PATCH 10/16] pc: Postpone adding ACPI and SMBIOS to fw_cfg minyard
2014-12-12 19:15 ` [Qemu-devel] [PATCH 11/16] smbios: Add a function to directly add an entry minyard
2014-12-12 19:15 ` [Qemu-devel] [PATCH 12/16] ipmi: Add SMBIOS table entry minyard
2015-02-19  2:53   ` Benjamin Herrenschmidt [this message]
2014-12-12 19:15 ` [Qemu-devel] [PATCH 13/16] acpi: Add a way to extend tables minyard
2014-12-12 19:15 ` [Qemu-devel] [PATCH 14/16] acpi: Add table construction tools minyard
2014-12-12 19:15 ` [Qemu-devel] [PATCH 15/16] ipmi: Add ACPI table entries for BMCs minyard
2015-02-19  2:54   ` Benjamin Herrenschmidt
2015-02-20  3:16     ` Corey Minyard
2015-02-22 20:48       ` Benjamin Herrenschmidt
2014-12-12 19:15 ` [Qemu-devel] [PATCH 16/16] ipmi: Add a thread to better simulate a BMC minyard
2014-12-15 21:11   ` Paolo Bonzini
2014-12-15 21:33     ` Corey Minyard
2014-12-15 21:21 ` [Qemu-devel] [PATCH 00/16] Add an IPMI device to qemu Paolo Bonzini

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1424314416.26254.25.camel@kernel.crashing.org \
    --to=benh@kernel.crashing.org \
    --cc=cminyard@mvista.com \
    --cc=minyard@acm.org \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).