qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: "Cédric Le Goater" <clg@kaod.org>
To: David Gibson <david@gibson.dropbear.id.au>
Cc: qemu-ppc@nongnu.org, qemu-devel@nongnu.org,
	Benjamin Herrenschmidt <benh@kernel.crashing.org>
Subject: Re: [Qemu-devel] [PATCH 06/25] spapr: introduce a spapr_irq_get_qirq() helper
Date: Fri, 24 Nov 2017 09:01:06 +0100	[thread overview]
Message-ID: <d5adabeb-c533-e870-a810-faa70bbcc2e4@kaod.org> (raw)
In-Reply-To: <20171124031820.GE28000@umbus.fritz.box>

On 11/24/2017 04:18 AM, David Gibson wrote:
> On Thu, Nov 23, 2017 at 02:29:36PM +0100, Cédric Le Goater wrote:
>> xics_get_qirq() is only used by the sPAPR machine. Let's move it there
>> and change its name to reflect its scope. It will be useful for XIVE
>> support which will use its own set of qirqs.
>>
>> Signed-off-by: Cédric Le Goater <clg@kaod.org>
> 
> s/spapr_irq_get_qirq/spapr_qirq/
> 
> for brevity

Sure.
 
> With that change
> 
> Reviewed-by: David Gibson <david@gibson.dropbear.id.au>

Thanks,

C.
 
>> ---
>>  hw/intc/xics.c              | 12 ------------
>>  hw/ppc/spapr.c              | 11 +++++++++++
>>  hw/ppc/spapr_events.c       | 12 +++++-------
>>  hw/ppc/spapr_pci.c          |  2 +-
>>  include/hw/pci-host/spapr.h |  2 +-
>>  include/hw/ppc/spapr.h      |  1 +
>>  include/hw/ppc/spapr_vio.h  |  2 +-
>>  include/hw/ppc/xics.h       |  1 -
>>  8 files changed, 20 insertions(+), 23 deletions(-)
>>
>> diff --git a/hw/intc/xics.c b/hw/intc/xics.c
>> index 0f2e7273bc8f..a78b4dbd033d 100644
>> --- a/hw/intc/xics.c
>> +++ b/hw/intc/xics.c
>> @@ -714,18 +714,6 @@ static const TypeInfo xics_fabric_info = {
>>  /*
>>   * Exported functions
>>   */
>> -qemu_irq xics_get_qirq(XICSFabric *xi, int irq)
>> -{
>> -    XICSFabricClass *xic = XICS_FABRIC_GET_CLASS(xi);
>> -    ICSState *ics = xic->ics_get(xi, irq);
>> -
>> -    if (ics) {
>> -        return ics->qirqs[irq - ics->offset];
>> -    }
>> -
>> -    return NULL;
>> -}
>> -
>>  ICPState *xics_icp_get(XICSFabric *xi, int server)
>>  {
>>      XICSFabricClass *xic = XICS_FABRIC_GET_CLASS(xi);
>> diff --git a/hw/ppc/spapr.c b/hw/ppc/spapr.c
>> index 79f38a9ff4e1..5d3325ca3c88 100644
>> --- a/hw/ppc/spapr.c
>> +++ b/hw/ppc/spapr.c
>> @@ -3689,6 +3689,17 @@ void spapr_irq_free(sPAPRMachineState *spapr, int irq, int num)
>>      }
>>  }
>>  
>> +qemu_irq spapr_irq_get_qirq(sPAPRMachineState *spapr, int irq)
>> +{
>> +    ICSState *ics = spapr->ics;
>> +
>> +    if (ics_valid_irq(ics, irq)) {
>> +        return ics->qirqs[irq - ics->offset];
>> +    }
>> +
>> +    return NULL;
>> +}
>> +
>>  static void spapr_pic_print_info(InterruptStatsProvider *obj,
>>                                   Monitor *mon)
>>  {
>> diff --git a/hw/ppc/spapr_events.c b/hw/ppc/spapr_events.c
>> index cead596f3e7a..0427590e9cac 100644
>> --- a/hw/ppc/spapr_events.c
>> +++ b/hw/ppc/spapr_events.c
>> @@ -472,9 +472,8 @@ static void spapr_powerdown_req(Notifier *n, void *opaque)
>>  
>>      rtas_event_log_queue(spapr, entry);
>>  
>> -    qemu_irq_pulse(xics_get_qirq(XICS_FABRIC(spapr),
>> -                                 rtas_event_log_to_irq(spapr,
>> -                                                       RTAS_LOG_TYPE_EPOW)));
>> +    qemu_irq_pulse(spapr_irq_get_qirq(spapr,
>> +                   rtas_event_log_to_irq(spapr, RTAS_LOG_TYPE_EPOW)));
>>  }
>>  
>>  static void spapr_hotplug_req_event(uint8_t hp_id, uint8_t hp_action,
>> @@ -556,9 +555,8 @@ static void spapr_hotplug_req_event(uint8_t hp_id, uint8_t hp_action,
>>  
>>      rtas_event_log_queue(spapr, entry);
>>  
>> -    qemu_irq_pulse(xics_get_qirq(XICS_FABRIC(spapr),
>> -                                 rtas_event_log_to_irq(spapr,
>> -                                                       RTAS_LOG_TYPE_HOTPLUG)));
>> +    qemu_irq_pulse(spapr_irq_get_qirq(spapr,
>> +                   rtas_event_log_to_irq(spapr, RTAS_LOG_TYPE_HOTPLUG)));
>>  }
>>  
>>  void spapr_hotplug_req_add_by_index(sPAPRDRConnector *drc)
>> @@ -678,7 +676,7 @@ static void check_exception(PowerPCCPU *cpu, sPAPRMachineState *spapr,
>>                  spapr_event_sources_get_source(spapr->event_sources, i);
>>  
>>              g_assert(source->enabled);
>> -            qemu_irq_pulse(xics_get_qirq(XICS_FABRIC(spapr), source->irq));
>> +            qemu_irq_pulse(spapr_irq_get_qirq(spapr, source->irq));
>>          }
>>      }
>>  
>> diff --git a/hw/ppc/spapr_pci.c b/hw/ppc/spapr_pci.c
>> index e0ef77a480e5..a02faa12333e 100644
>> --- a/hw/ppc/spapr_pci.c
>> +++ b/hw/ppc/spapr_pci.c
>> @@ -723,7 +723,7 @@ static void spapr_msi_write(void *opaque, hwaddr addr,
>>  
>>      trace_spapr_pci_msi_write(addr, data, irq);
>>  
>> -    qemu_irq_pulse(xics_get_qirq(XICS_FABRIC(spapr), irq));
>> +    qemu_irq_pulse(spapr_irq_get_qirq(spapr, irq));
>>  }
>>  
>>  static const MemoryRegionOps spapr_msi_ops = {
>> diff --git a/include/hw/pci-host/spapr.h b/include/hw/pci-host/spapr.h
>> index 38470b2f0e5c..3059fdd614e6 100644
>> --- a/include/hw/pci-host/spapr.h
>> +++ b/include/hw/pci-host/spapr.h
>> @@ -108,7 +108,7 @@ static inline qemu_irq spapr_phb_lsi_qirq(struct sPAPRPHBState *phb, int pin)
>>  {
>>      sPAPRMachineState *spapr = SPAPR_MACHINE(qdev_get_machine());
>>  
>> -    return xics_get_qirq(XICS_FABRIC(spapr), phb->lsi_table[pin].irq);
>> +    return spapr_irq_get_qirq(spapr, phb->lsi_table[pin].irq);
>>  }
>>  
>>  PCIHostState *spapr_create_phb(sPAPRMachineState *spapr, int index);
>> diff --git a/include/hw/ppc/spapr.h b/include/hw/ppc/spapr.h
>> index 7a133f80411a..9a3885593c86 100644
>> --- a/include/hw/ppc/spapr.h
>> +++ b/include/hw/ppc/spapr.h
>> @@ -714,5 +714,6 @@ int spapr_irq_alloc(sPAPRMachineState *spapr, int irq_hint, bool lsi,
>>  int spapr_irq_alloc_block(sPAPRMachineState *spapr, int num, bool lsi,
>>                            bool align, Error **errp);
>>  void spapr_irq_free(sPAPRMachineState *spapr, int irq, int num);
>> +qemu_irq spapr_irq_get_qirq(sPAPRMachineState *spapr, int irq);
>>  
>>  #endif /* HW_SPAPR_H */
>> diff --git a/include/hw/ppc/spapr_vio.h b/include/hw/ppc/spapr_vio.h
>> index 2e9685a5d900..404f1de2c046 100644
>> --- a/include/hw/ppc/spapr_vio.h
>> +++ b/include/hw/ppc/spapr_vio.h
>> @@ -87,7 +87,7 @@ static inline qemu_irq spapr_vio_qirq(VIOsPAPRDevice *dev)
>>  {
>>      sPAPRMachineState *spapr = SPAPR_MACHINE(qdev_get_machine());
>>  
>> -    return xics_get_qirq(XICS_FABRIC(spapr), dev->irq);
>> +    return spapr_irq_get_qirq(spapr, dev->irq);
>>  }
>>  
>>  static inline bool spapr_vio_dma_valid(VIOsPAPRDevice *dev, uint64_t taddr,
>> diff --git a/include/hw/ppc/xics.h b/include/hw/ppc/xics.h
>> index cea462bc7f3e..2f1f35294e6d 100644
>> --- a/include/hw/ppc/xics.h
>> +++ b/include/hw/ppc/xics.h
>> @@ -183,7 +183,6 @@ typedef struct XICSFabricClass {
>>  
>>  void spapr_dt_xics(int nr_servers, void *fdt, uint32_t phandle);
>>  
>> -qemu_irq xics_get_qirq(XICSFabric *xi, int irq);
>>  ICPState *xics_icp_get(XICSFabric *xi, int server);
>>  
>>  /* Internal XICS interfaces */
> 

  reply	other threads:[~2017-11-24  8:01 UTC|newest]

Thread overview: 128+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-11-23 13:29 [Qemu-devel] [PATCH 00/25] spapr: Guest exploitation of the XIVE interrupt controller (POWER9) Cédric Le Goater
2017-11-23 13:29 ` [Qemu-devel] [PATCH 01/25] ppc/xics: introduce an icp_create() helper Cédric Le Goater
2017-11-24  2:51   ` David Gibson
2017-11-24  7:57     ` Cédric Le Goater
2017-11-24  9:55     ` [Qemu-devel] [Qemu-ppc] " Greg Kurz
2017-11-27  7:20       ` David Gibson
2017-11-24  9:08   ` Greg Kurz
2017-11-23 13:29 ` [Qemu-devel] [PATCH 02/25] ppc/xics: assign of the CPU 'intc' pointer under the core Cédric Le Goater
2017-11-24  2:57   ` David Gibson
2017-11-24  9:21   ` [Qemu-devel] [Qemu-ppc] " Greg Kurz
2017-11-23 13:29 ` [Qemu-devel] [PATCH 03/25] spapr: introduce a spapr_icp_create() helper Cédric Le Goater
2017-11-24 10:09   ` [Qemu-devel] [Qemu-ppc] " Greg Kurz
2017-11-24 12:26     ` Cédric Le Goater
2017-11-28 10:56       ` Greg Kurz
2017-11-23 13:29 ` [Qemu-devel] [PATCH 04/25] spapr: move the IRQ allocation routines under the machine Cédric Le Goater
2017-11-24  3:13   ` David Gibson
2017-11-28 10:57   ` [Qemu-devel] [Qemu-ppc] " Greg Kurz
2017-11-23 13:29 ` [Qemu-devel] [PATCH 05/25] spapr: introduce a spapr_irq_set() helper Cédric Le Goater
2017-11-24  3:16   ` David Gibson
2017-11-24  8:32     ` Cédric Le Goater
2017-11-23 13:29 ` [Qemu-devel] [PATCH 06/25] spapr: introduce a spapr_irq_get_qirq() helper Cédric Le Goater
2017-11-24  3:18   ` David Gibson
2017-11-24  8:01     ` Cédric Le Goater [this message]
2017-11-23 13:29 ` [Qemu-devel] [PATCH 07/25] migration: add VMSTATE_STRUCT_VARRAY_UINT32_ALLOC Cédric Le Goater
2017-11-23 13:29 ` [Qemu-devel] [PATCH 08/25] spapr: introduce a skeleton for the XIVE interrupt controller Cédric Le Goater
2017-11-28  5:40   ` David Gibson
2017-11-28 10:44     ` Cédric Le Goater
2017-11-29  4:47       ` David Gibson
2017-11-29 11:49   ` [Qemu-devel] [Qemu-ppc] " Greg Kurz
2017-11-29 13:46     ` Cédric Le Goater
2017-11-29 15:51       ` Greg Kurz
2017-11-29 16:41         ` Cédric Le Goater
2017-11-30  4:23       ` David Gibson
2017-11-30  4:22     ` David Gibson
2017-11-23 13:29 ` [Qemu-devel] [PATCH 09/25] spapr: introduce handlers for XIVE interrupt sources Cédric Le Goater
2017-11-28  5:45   ` David Gibson
2017-11-28 18:18     ` Cédric Le Goater
2017-12-02 14:26       ` Benjamin Herrenschmidt
2017-11-23 13:29 ` [Qemu-devel] [PATCH 10/25] spapr: add MMIO handlers for the " Cédric Le Goater
2017-11-28  6:38   ` David Gibson
2017-11-28 18:33     ` Cédric Le Goater
2017-11-29  4:59       ` David Gibson
2017-11-29 13:56         ` Cédric Le Goater
2017-11-29 16:23           ` Cédric Le Goater
2017-11-30  4:28             ` David Gibson
2017-11-30 16:05               ` Cédric Le Goater
2017-12-02 14:33               ` Benjamin Herrenschmidt
2017-12-02 14:28             ` Benjamin Herrenschmidt
2017-12-02 14:47               ` Cédric Le Goater
2017-11-30  4:26           ` David Gibson
2017-11-30 15:40             ` Cédric Le Goater
2017-12-02 14:23     ` Benjamin Herrenschmidt
2017-11-23 13:29 ` [Qemu-devel] [PATCH 11/25] spapr: describe the XIVE interrupt source flags Cédric Le Goater
2017-11-28  6:40   ` David Gibson
2017-11-28 18:23     ` Cédric Le Goater
2017-12-02 14:24     ` Benjamin Herrenschmidt
2017-12-02 14:38       ` Cédric Le Goater
2017-12-02 14:48         ` Benjamin Herrenschmidt
2017-12-02 14:50           ` Cédric Le Goater
2017-11-23 13:29 ` [Qemu-devel] [PATCH 12/25] spapr: introduce a XIVE interrupt presenter model Cédric Le Goater
2017-11-29  5:11   ` David Gibson
2017-11-29  9:55     ` Cédric Le Goater
2017-11-30  4:06       ` David Gibson
2017-11-30 13:44         ` Cédric Le Goater
2017-12-01  4:03           ` David Gibson
2017-12-01  8:02             ` Cédric Le Goater
2017-11-23 13:29 ` [Qemu-devel] [PATCH 13/25] spapr: introduce the XIVE Event Queues Cédric Le Goater
2017-11-23 20:31   ` Benjamin Herrenschmidt
2017-11-24  8:15     ` Cédric Le Goater
2017-11-26 21:52       ` Benjamin Herrenschmidt
2017-11-30  4:38   ` David Gibson
2017-11-30 14:06     ` Cédric Le Goater
2017-11-30 23:35       ` David Gibson
2017-12-01 16:36         ` Cédric Le Goater
2017-12-04  1:09           ` David Gibson
2017-12-04 16:31             ` Cédric Le Goater
2017-12-02 14:39     ` Benjamin Herrenschmidt
2017-12-02 14:41       ` Benjamin Herrenschmidt
2017-11-23 13:29 ` [Qemu-devel] [PATCH 14/25] spapr: push the XIVE EQ data in OS event queue Cédric Le Goater
2017-11-30  4:49   ` David Gibson
2017-11-30 14:16     ` Cédric Le Goater
2017-12-01  4:10       ` David Gibson
2017-12-01 16:43         ` Cédric Le Goater
2017-12-02 14:45         ` Benjamin Herrenschmidt
2017-12-02 14:46           ` Benjamin Herrenschmidt
2017-12-04  1:20             ` David Gibson
2017-12-05 10:58               ` Cédric Le Goater
2017-11-23 13:29 ` [Qemu-devel] [PATCH 15/25] spapr: notify the CPU when the XIVE interrupt priority is more privileged Cédric Le Goater
2017-11-30  5:00   ` David Gibson
2017-11-30 16:17     ` Cédric Le Goater
2017-12-02 14:40     ` Benjamin Herrenschmidt
2017-12-04  1:17       ` David Gibson
2017-12-04 16:09         ` Benjamin Herrenschmidt
2017-12-07 11:55     ` Cédric Le Goater
2017-11-23 13:29 ` [Qemu-devel] [PATCH 16/25] spapr: add support for the SET_OS_PENDING command (XIVE) Cédric Le Goater
2017-11-23 13:29 ` [Qemu-devel] [PATCH 17/25] spapr: add a sPAPRXive object to the machine Cédric Le Goater
2017-11-30  5:55   ` David Gibson
2017-11-30 15:15     ` Cédric Le Goater
2017-12-01  4:14       ` David Gibson
2017-12-01  8:10         ` Cédric Le Goater
2017-12-04  1:59           ` David Gibson
2017-12-04  8:32             ` Cédric Le Goater
2017-12-04  8:40               ` David Gibson
2017-11-30 15:38     ` Cédric Le Goater
2017-12-01  4:17       ` David Gibson
2017-11-23 13:29 ` [Qemu-devel] [PATCH 18/25] spapr: allocate IRQ numbers for the XIVE interrupt mode Cédric Le Goater
2017-11-23 13:29 ` [Qemu-devel] [PATCH 19/25] spapr: add hcalls support " Cédric Le Goater
2017-12-01  4:01   ` David Gibson
2017-12-01 17:46     ` Cédric Le Goater
2017-12-05  7:00       ` David Gibson
2017-12-05 14:50         ` Benjamin Herrenschmidt
2017-12-06  9:20           ` David Gibson
2017-12-06 19:41             ` Benjamin Herrenschmidt
2017-12-05 16:12         ` Cédric Le Goater
2017-11-23 13:29 ` [Qemu-devel] [PATCH 20/25] spapr: add device tree " Cédric Le Goater
2017-12-04  7:49   ` David Gibson
2017-12-04 16:19     ` Cédric Le Goater
2017-12-05  3:38       ` David Gibson
2017-11-23 13:29 ` [Qemu-devel] [PATCH 21/25] spapr: introduce a helper to map the XIVE memory regions Cédric Le Goater
2017-12-04  7:52   ` David Gibson
2017-12-04 15:30     ` Cédric Le Goater
2017-12-05  2:24       ` David Gibson
2017-11-23 13:29 ` [Qemu-devel] [PATCH 22/25] spapr: add XIVE support to spapr_irq_get_qirq() Cédric Le Goater
2017-12-04  7:52   ` David Gibson
2017-11-23 13:29 ` [Qemu-devel] [PATCH 23/25] spapr: toggle the ICP depending on the selected interrupt mode Cédric Le Goater
2017-12-04  7:56   ` David Gibson
2017-11-23 13:29 ` [Qemu-devel] [PATCH 24/25] spapr: add support to dump XIVE information Cédric Le Goater
2017-11-23 13:29 ` [Qemu-devel] [PATCH 25/25] spapr: advertise XIVE exploitation mode in CAS Cédric Le Goater

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=d5adabeb-c533-e870-a810-faa70bbcc2e4@kaod.org \
    --to=clg@kaod.org \
    --cc=benh@kernel.crashing.org \
    --cc=david@gibson.dropbear.id.au \
    --cc=qemu-devel@nongnu.org \
    --cc=qemu-ppc@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).