qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: "Andreas Färber" <afaerber@suse.de>
To: Paolo Bonzini <pbonzini@redhat.com>,
	Peter Crosthwaite <peter.crosthwaite@xilinx.com>,
	qemu-devel@nongnu.org
Cc: peter.maydell@linaro.org, agraf@suse.de
Subject: Re: [Qemu-devel] [PATCH qom v3 00/14] GPIO/IRQ QOMification: Phase 2 - Getting rid of SYSBUS IRQs
Date: Fri, 26 Sep 2014 15:17:55 +0200	[thread overview]
Message-ID: <54256783.4020600@suse.de> (raw)
In-Reply-To: <5425667C.5020300@redhat.com>

Am 26.09.2014 um 15:13 schrieb Paolo Bonzini:
> Il 26/09/2014 07:16, Peter Crosthwaite ha scritto:
>> Hi All,
>>
>> So phase one was the QOMification of qemu_irq. This is the next step.
>> We start to setup GPIOs as proper QOM objects. Inputs are child objects
>> of their device. Outputs are settable Links and connection is made
>> via proper setting of a QOM link.
>>
>> We then cleanup Sysbus to simply re-use device level GPIOs and get rid
>> of it's special IRQ handling code.
>>
>> CHanged since v2:
>> Remove num_irq from sysbus (P14)
>> Removed out of tree deps.
>> Changed since v1:
>> Addressed Alex review
>> Dropped IRQ g_new0 changes
>>
>>
>>
>> Peter Crosthwaite (14):
>>   qdev: gpio: Don't allow name share between I and O
>>   qdev: gpio: Register GPIO inputs as child objects
>>   qdev: gpio: Register GPIO outputs as QOM links
>>   qmp: qstring: Handle NULL strings
>>   qom: Allow clearing of a Link property
>>   qom: Demote already-has-a-parent to a regular error
>>   qdev: gpio: Re-impement qdev_connect_gpio QOM style
>>   qdev: gpio: Add API for intercepting a GPIO
>>   qtest/irq: Rework IRQ interception
>>   irq: Remove qemu_irq_intercept_out
>>   qdev: gpio: delete NamedGPIOList::out
>>   qdev: gpio: Remove qdev_init_gpio_out x1 restriction
>>   qdev: gpio: Define qdev_pass_gpios()
>>   sysbus: Use TYPE_DEVICE GPIO functionality
>>
>>  hw/core/irq.c          |  8 +----
>>  hw/core/qdev.c         | 90 ++++++++++++++++++++++++++++++++++++++++++++++----
>>  hw/core/sysbus.c       | 20 ++---------
>>  include/hw/irq.h       |  1 -
>>  include/hw/qdev-core.h |  6 +++-
>>  include/hw/sysbus.h    |  7 ++--
>>  qobject/qstring.c      | 12 ++++---
>>  qom/object.c           | 10 ++++--
>>  qtest.c                | 15 ++++++---
>>  9 files changed, 120 insertions(+), 49 deletions(-)
>>
> 
> Apart from the couple of patches I replied to,
> 
> Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
> 
> Alex, do you want to pick it up and send it together with your sysbus
> patches?

I had started picking up the initial ones from v2 after Alex' ping...

Andreas

-- 
SUSE LINUX Products GmbH, Maxfeldstr. 5, 90409 Nürnberg, Germany
GF: Jeff Hawn, Jennifer Guild, Felix Imendörffer; HRB 16746 AG Nürnberg

      reply	other threads:[~2014-09-26 13:18 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-09-26  5:16 [Qemu-devel] [PATCH qom v3 00/14] GPIO/IRQ QOMification: Phase 2 - Getting rid of SYSBUS IRQs Peter Crosthwaite
2014-09-26  5:17 ` [Qemu-devel] [PATCH qom v3 01/14] qdev: gpio: Don't allow name share between I and O Peter Crosthwaite
2014-09-26  5:17 ` [Qemu-devel] [PATCH qom v3 02/14] qdev: gpio: Register GPIO inputs as child objects Peter Crosthwaite
2014-09-26  5:18 ` [Qemu-devel] [PATCH qom v3 03/14] qdev: gpio: Register GPIO outputs as QOM links Peter Crosthwaite
2014-09-26  5:18 ` [Qemu-devel] [PATCH qom v3 04/14] qmp: qstring: Handle NULL strings Peter Crosthwaite
2014-09-26 13:27   ` Paolo Bonzini
2014-09-29 15:08     ` Andreas Färber
2014-09-26  5:19 ` [Qemu-devel] [PATCH qom v3 05/14] qom: Allow clearing of a Link property Peter Crosthwaite
2014-09-26 12:59   ` Paolo Bonzini
2014-09-26 13:42   ` Igor Mammedov
2014-09-26  5:19 ` [Qemu-devel] [PATCH qom v3 06/14] qom: Demote already-has-a-parent to a regular error Peter Crosthwaite
2014-09-26  5:20 ` [Qemu-devel] [PATCH qom v3 07/14] qdev: gpio: Re-impement qdev_connect_gpio QOM style Peter Crosthwaite
2014-09-26 13:04   ` Paolo Bonzini
2014-09-26  5:20 ` [Qemu-devel] [PATCH qom v3 08/14] qdev: gpio: Add API for intercepting a GPIO Peter Crosthwaite
2014-09-26  5:21 ` [Qemu-devel] [PATCH qom v3 09/14] qtest/irq: Rework IRQ interception Peter Crosthwaite
2014-09-26  5:22 ` [Qemu-devel] [PATCH qom v3 10/14] irq: Remove qemu_irq_intercept_out Peter Crosthwaite
2014-09-26  5:22 ` [Qemu-devel] [PATCH qom v3 11/14] qdev: gpio: delete NamedGPIOList::out Peter Crosthwaite
2014-09-26  5:23 ` [Qemu-devel] [PATCH qom v3 12/14] qdev: gpio: Remove qdev_init_gpio_out x1 restriction Peter Crosthwaite
2014-09-26  5:23 ` [Qemu-devel] [PATCH qom v3 13/14] qdev: gpio: Define qdev_pass_gpios() Peter Crosthwaite
2014-09-26  5:24 ` [Qemu-devel] [PATCH qom v3 14/14] sysbus: Use TYPE_DEVICE GPIO functionality Peter Crosthwaite
2014-09-26 13:13 ` [Qemu-devel] [PATCH qom v3 00/14] GPIO/IRQ QOMification: Phase 2 - Getting rid of SYSBUS IRQs Paolo Bonzini
2014-09-26 13:17   ` Andreas Färber [this message]

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=54256783.4020600@suse.de \
    --to=afaerber@suse.de \
    --cc=agraf@suse.de \
    --cc=pbonzini@redhat.com \
    --cc=peter.crosthwaite@xilinx.com \
    --cc=peter.maydell@linaro.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).