qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Anthony Liguori <aliguori@us.ibm.com>
To: Jan Kiszka <jan.kiszka@siemens.com>
Cc: kvm@vger.kernel.org, "Michael S. Tsirkin" <mst@redhat.com>,
	Marcelo Tosatti <mtosatti@redhat.com>,
	qemu-devel <qemu-devel@nongnu.org>,
	Blue Swirl <blauwirbel@gmail.com>, Avi Kivity <avi@redhat.com>
Subject: Re: [Qemu-devel] [PATCH v6 09/18] i8259: Factor out base class for KVM reuse
Date: Fri, 13 Jan 2012 15:19:32 -0600	[thread overview]
Message-ID: <4F109FE4.3020707@us.ibm.com> (raw)
In-Reply-To: <f5be56d9368c4a6044b1bae60e72ffb62aa6d374.1326476111.git.jan.kiszka@siemens.com>

On 01/13/2012 11:35 AM, Jan Kiszka wrote:
> Analogously to the APIC, we will reuse some parts of the user space
> i8259 model for KVM. In this case it is a common device state, a common
> vmstate, the property list, a reset core and some init bits.
>
> This also introduces a common helper to instantiate a single i8259 chip
> from the cascade-creating i8259_init function.
>
> Signed-off-by: Jan Kiszka<jan.kiszka@siemens.com>
> ---
> diff --git a/hw/i8259_internal.h b/hw/i8259_internal.h
> new file mode 100644
> index 0000000..aedd55f
> --- /dev/null
> +++ b/hw/i8259_internal.h
> @@ -0,0 +1,76 @@
> +/*
> + * QEMU 8259 - internal interfaces
> + *
> + * Copyright (c) 2011 Jan Kiszka, Siemens AG
> + *
> + * Permission is hereby granted, free of charge, to any person obtaining a copy
> + * of this software and associated documentation files (the "Software"), to deal
> + * in the Software without restriction, including without limitation the rights
> + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
> + * copies of the Software, and to permit persons to whom the Software is
> + * furnished to do so, subject to the following conditions:
> + *
> + * The above copyright notice and this permission notice shall be included in
> + * all copies or substantial portions of the Software.
> + *
> + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
> + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
> + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
> + * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
> + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
> + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
> + * THE SOFTWARE.
> + */
> +
> +#ifndef QEMU_I8259_INTERNAL_H
> +#define QEMU_I8259_INTERNAL_H
> +
> +#include "hw.h"
> +#include "pc.h"
> +#include "isa.h"
> +
> +typedef struct PICCommonState PICCommonState;
> +
> +struct PICCommonState {
> +    ISADevice dev;
> +    uint8_t last_irr; /* edge detection */
> +    uint8_t irr; /* interrupt request register */
> +    uint8_t imr; /* interrupt mask register */
> +    uint8_t isr; /* interrupt service register */
> +    uint8_t priority_add; /* highest irq priority */
> +    uint8_t irq_base;
> +    uint8_t read_reg_select;
> +    uint8_t poll;
> +    uint8_t special_mask;
> +    uint8_t init_state;
> +    uint8_t auto_eoi;
> +    uint8_t rotate_on_auto_eoi;
> +    uint8_t special_fully_nested_mode;
> +    uint8_t init4; /* true if 4 byte init */
> +    uint8_t single_mode; /* true if slave pic is not initialized */
> +    uint8_t elcr; /* PIIX edge/trigger selection*/
> +    uint8_t elcr_mask;
> +    qemu_irq int_out[1];
> +    uint32_t master; /* reflects /SP input pin */
> +    uint32_t iobase;
> +    uint32_t elcr_addr;
> +    MemoryRegion base_io;
> +    MemoryRegion elcr_io;
> +};
> +
> +#define PIC_VMSTATE_VERSION 1
> +
> +extern const VMStateDescription vmstate_pic_common;
> +
> +#define PIC_PROPERTIES_COMMON(cont_type, cont_var)                      \
> +    DEFINE_PROP_HEX32("iobase", cont_type, cont_var.iobase,  -1),       \
> +    DEFINE_PROP_HEX32("elcr_addr", cont_type, cont_var.elcr_addr,  -1), \
> +    DEFINE_PROP_HEX8("elcr_mask", cont_type, cont_var.elcr_mask,  -1),  \
> +    DEFINE_PROP_BIT("master", cont_type, cont_var.master,  0, false)
> +
> +void pic_init_common(PICCommonState *s);
> +void pic_reset_common(PICCommonState *s);
> +
> +ISADevice *i8259_init_chip(const char *name, ISABus *bus, bool master);

Same feedback here re: i8259_qdev_register().

Regards,

Anthony Liguori

> +#endif /* !QEMU_I8259_INTERNAL_H */

  reply	other threads:[~2012-01-13 21:19 UTC|newest]

Thread overview: 25+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-01-13 17:34 [Qemu-devel] [PATCH v6 00/18] uq/master: Introduce basic irqchip support Jan Kiszka
2012-01-13 17:34 ` [Qemu-devel] [PATCH v6 01/18] msi: Generalize msix_supported to msi_supported Jan Kiszka
2012-01-13 17:34 ` [Qemu-devel] [PATCH v6 02/18] kvm: Move kvmclock into hw/kvm folder Jan Kiszka
2012-01-13 17:34 ` [Qemu-devel] [PATCH v6 03/18] apic: Stop timer on reset Jan Kiszka
2012-01-13 17:34 ` [Qemu-devel] [PATCH v6 04/18] apic: Inject external NMI events via LINT1 Jan Kiszka
2012-01-13 17:35 ` [Qemu-devel] [PATCH v6 05/18] apic: Introduce apic_report_irq_delivered Jan Kiszka
2012-01-13 17:35 ` [Qemu-devel] [PATCH v6 06/18] apic: Factor out base class for KVM reuse Jan Kiszka
2012-01-13 21:18   ` Anthony Liguori
2012-01-13 22:19     ` Jan Kiszka
2012-01-13 17:35 ` [Qemu-devel] [PATCH v6 07/18] apic: Open-code timer save/restore Jan Kiszka
2012-01-13 17:35 ` [Qemu-devel] [PATCH v6 08/18] i8259: Completely privatize PicState Jan Kiszka
2012-01-13 17:35 ` [Qemu-devel] [PATCH v6 09/18] i8259: Factor out base class for KVM reuse Jan Kiszka
2012-01-13 21:19   ` Anthony Liguori [this message]
2012-01-13 17:35 ` [Qemu-devel] [PATCH v6 10/18] ioapic: Drop post-load irr initialization Jan Kiszka
2012-01-13 17:35 ` [Qemu-devel] [PATCH v6 11/18] ioapic: Factor out base class for KVM reuse Jan Kiszka
2012-01-13 17:35 ` [Qemu-devel] [PATCH v6 12/18] memory: Introduce memory_region_init_reservation Jan Kiszka
2012-01-13 17:35 ` [Qemu-devel] [PATCH v6 13/18] kvm: Introduce core services for in-kernel irqchip support Jan Kiszka
2012-01-13 17:35 ` [Qemu-devel] [PATCH v6 14/18] kvm: x86: Establish IRQ0 override control Jan Kiszka
2012-01-13 17:35 ` [Qemu-devel] [PATCH v6 15/18] kvm: x86: Add user space part for in-kernel APIC Jan Kiszka
2012-01-13 17:35 ` [Qemu-devel] [PATCH v6 16/18] kvm: x86: Add user space part for in-kernel i8259 Jan Kiszka
2012-01-13 17:35 ` [Qemu-devel] [PATCH v6 17/18] kvm: x86: Add user space part for in-kernel IOAPIC Jan Kiszka
2012-01-13 17:35 ` [Qemu-devel] [PATCH v6 18/18] kvm: Arm in-kernel irqchip support Jan Kiszka
2012-01-13 18:49   ` Peter Maydell
2012-01-13 19:04     ` Jan Kiszka
2012-01-13 19:36       ` Andreas Färber

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=4F109FE4.3020707@us.ibm.com \
    --to=aliguori@us.ibm.com \
    --cc=avi@redhat.com \
    --cc=blauwirbel@gmail.com \
    --cc=jan.kiszka@siemens.com \
    --cc=kvm@vger.kernel.org \
    --cc=mst@redhat.com \
    --cc=mtosatti@redhat.com \
    --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).