All of lore.kernel.org
 help / color / mirror / Atom feed
From: Julien Grall <julien.grall@linaro.org>
To: parth.dixit@linaro.org, xen-devel@lists.xen.org
Cc: ian.campbell@citrix.com,
	Graeme Gregory <graeme.gregory@linaro.org>,
	Naresh Bhat <naresh.bhat@linaro.org>,
	tim@xen.org, Tomasz Nowicki <tomasz.nowicki@linaro.org>,
	stefano.stabellini@citrix.com, Hanjun Guo <hanjun.guo@linaro.org>,
	jbeulich@suse.com, christoffer.dall@linaro.org
Subject: Re: [PATCH RFC 19/35] ACPI / GICv2: Add GIC specific ACPI boot support
Date: Thu, 05 Feb 2015 03:41:16 +0000	[thread overview]
Message-ID: <54D2E65C.1040308@linaro.org> (raw)
In-Reply-To: <1423058539-26403-20-git-send-email-parth.dixit@linaro.org>

Hi Parth,

On 04/02/2015 14:02, parth.dixit@linaro.org wrote:
> From: Naresh Bhat <naresh.bhat@linaro.org>
>
> ACPI on Xen hypervisor uses MADT table for proper GIC initialization.
> It needs to parse GIC related subtables, collect CPU interface and distributor
> addresses and call driver initialization function (which is hardware
> abstraction agnostic). In a similar way, FDT initialize GICv1/2.

No need to spec about GICv1, we don't support it on Xen.

> NOTE: This commit allow to initialize GICv1/2 only.

Ditto.

>
> Signed-off-by: Tomasz Nowicki <tomasz.nowicki@linaro.org>
> Signed-off-by: Graeme Gregory <graeme.gregory@linaro.org>
> Signed-off-by: Hanjun Guo <hanjun.guo@linaro.org>
> Signed-off-by: Naresh Bhat <naresh.bhat@linaro.org>
> Signed-off-by: Parth Dixit <parth.dixit@linaro.org>
>
> Conflicts:
>
> 	xen/arch/arm/irq.c

This may have come via a conflicted merge.

> ---
>   xen/arch/arm/gic-v2.c      | 271 +++++++++++++++++++++++++++++++++++++++++++++
>   xen/arch/arm/setup.c       |   3 +-
>   xen/include/asm-arm/acpi.h |   2 +
>   3 files changed, 275 insertions(+), 1 deletion(-)
>
> diff --git a/xen/arch/arm/gic-v2.c b/xen/arch/arm/gic-v2.c
> index faad1ff..cb1d205 100644
> --- a/xen/arch/arm/gic-v2.c
> +++ b/xen/arch/arm/gic-v2.c
> @@ -777,6 +777,277 @@ DT_DEVICE_START(gicv2, "GICv2:", DEVICE_GIC)
>           .init = gicv2_init,
>   DT_DEVICE_END
>
> +#if defined(CONFIG_ARM_64) && defined(CONFIG_ACPI)
> +
> +#include <xen/acpi.h>
> +#include <xen/errno.h>
> +#include <xen/vmap.h>
> +#include <asm/acpi.h>

Please no include in the middle of the file.

> +
> +/*
> + * Hard code here, we can not get memory size from MADT (but FDT does),
> + * this size can be inferred from GICv2 spec
> + */
> +
> +#define ACPI_GIC_DIST_MEM_SIZE   0x00010000 // (SZ_64K)
> +#define ACPI_GIC_CPU_IF_MEM_SIZE 0x00002000 // (SZ_8K)

Why don't you use the proper define (SZ_64K/SZ_8k) rather than 
hardcoding it?

> +
> +static DEFINE_PER_CPU(u64, gic_percpu_cpu_base);
> +static cpumask_t gic_acpi_cpu_mask;
> +static u64 dist_phy_base;
> +
> +static int __init
> +gic_acpi_parse_madt_cpu(struct acpi_subtable_header *header,
> +                        const unsigned long end)
> +{
> +        struct acpi_madt_generic_interrupt *processor;
> +        unsigned int cpu;
> +
> +        processor = (struct acpi_madt_generic_interrupt *)header;
> +
> +        if (BAD_MADT_ENTRY(processor, end))
if ( ... )

> +                return -EINVAL;
> +        for_each_possible_cpu(cpu) {

for_each_possible( ... )
{

Please checking the coding style within this patch. I won't tell more 
foo ( ... )
{

in this patch.

> +        /*
> +         * FIXME: This condition is failing.
> +         * In Xen we first want to bring/initialize the GIC in hypervisor with single CPU
> +         * if (processor->mpidr == cpu_logical_map(cpu))
> +         */
> +                        goto find;
> +        }

Looking at the code in this function, this whole loop doesn't seem 
useful. It make the code more complicate to read. Why don't you validate 
directly the GIC addresses in this function?

This is what Linux does and it's divide by 5 the produced code.

> +
> +        printk("\nUnable to find CPU corresponding to GIC CPU entry [mpdir %lx]\n",
> +                (long)processor->mpidr);
> +
> +        return 0;
> +
> +find:
> +        /* Read from APIC table and fill up the GIC variables */
> +        gicv2.dbase = processor->redist_base_address;
> +        gicv2.cbase = processor->base_address;
> +        gicv2.hbase = processor->gich_base_address;
> +        gicv2.vbase = processor->gicv_base_address;
> +        gicv2_info.maintenance_irq = processor->vgic_maintenance_interrupt;
> +        if( processor->flags & ACPI_MADT_ENABLED )
> +        {
> +            if( processor->flags & ACPI_MADT_VGIC )
> +                acpi_set_irq(gicv2_info.maintenance_irq, DT_IRQ_TYPE_EDGE_BOTH);
> +            else
> +                acpi_set_irq(gicv2_info.maintenance_irq, DT_IRQ_TYPE_LEVEL_MASK);
> +        }
> +
> +        /*
> +         * Do not validate CPU i/f base, we can still use "Local Interrupt
> +         * Controller Address" from MADT header instead.
> +         */
> +        per_cpu(gic_percpu_cpu_base, cpu) = processor->base_address;
> +        cpumask_set_cpu(cpu, &gic_acpi_cpu_mask);
> +
> +        return 0;
> +}
> +
> +static int __init
> +gic_acpi_parse_madt_distributor(struct acpi_subtable_header *header,
> +                                const unsigned long end)
> +{
> +        struct acpi_madt_generic_distributor *dist;
> +
> +        dist = (struct acpi_madt_generic_distributor *)header;
> +
> +        if (BAD_MADT_ENTRY(dist, end))
> +                return -EINVAL;
> +
> +        dist_phy_base = dist->base_address;
> +
> +        return 0;
> +}
> +
> +static int gic_acpi_validate_init(u64 madt_cpu_addr)
> +{
> +        void __iomem *cpu_base, *dist_base;
> +        u64 gic_cpu_base = 0;
> +        unsigned int cpu;
> +
> +        /* Process all GICC entries delivered by MADT */
> +        if (!cpumask_empty(&gic_acpi_cpu_mask)) {
> +                /*
> +                 * If MADT contains at least one GICC entry, it must be BSP
> +                 * dedicated.
> +                 */
> +                if (!cpumask_test_cpu(0, &gic_acpi_cpu_mask)) {
> +                        printk("GICC entries exist but unable to find BSP GICC "
> +                                "address\n");
> +                        goto madt_cpu_base;
> +                }
> +
> +                /*
> +                 * There is no support for non-banked GICv1/2 register in ACPI
> +                 * spec. All CPU interface addresses have to be the same.
> +                 */
> +                gic_cpu_base = per_cpu(gic_percpu_cpu_base, 0);
> +                for_each_cpu (cpu, &gic_acpi_cpu_mask) {
> +                        if (gic_cpu_base != per_cpu(gic_percpu_cpu_base, cpu)) {
> +                                printk("GICC addresses are different, no support"
> +                                        "for non-banked GICC registers !!!\n");
> +                                gic_cpu_base = 0;
> +                                goto madt_cpu_base;
> +                        }
> +                }
> +        }

Based on what I say above, this could be validate when fetch the GICC 
information.

> +
> +madt_cpu_base:
> +        /* If no GICC address provided, use address from MADT header */
> +        if (!gic_cpu_base) {
> +                if (!madt_cpu_addr) {
> +                        printk("Unable to find GICC address\n");
> +                        return -EINVAL;
> +                }
> +
> +                printk("Attempt to use Local Interrupt Controller Address"
> +                        "as GICC base address\n");
> +                gic_cpu_base = madt_cpu_addr;
> +        }
> +
> +        cpu_base = ioremap(gic_cpu_base, ACPI_GIC_CPU_IF_MEM_SIZE);
> +        if (!cpu_base) {
> +                printk("Unable to map GICC registers\n");
> +                return -ENOMEM;
> +        }
> +
> +        dist_base = ioremap(dist_phy_base, ACPI_GIC_DIST_MEM_SIZE);
> +        if (!dist_base) {
> +                printk("Unable to map GICD registers\n");
> +                iounmap(cpu_base);
> +                return -ENOMEM;
> +        }
> +
> +        /*
> +         * FIXME: Initialize zero GIC instance (no multi-GIC support) based on
> +         * addresses obtained from MADT. Also, set GIC as default IRQ domain
> +         * to allow for GSI registration and GSI to IRQ number translation
> +         * (see acpi_register_gsi() and acpi_gsi_to_irq()).
> +         *
> +         * gic_init_bases(0, -1, dist_base, cpu_base, 0, NULL);
> +         * irq_set_default_host(gic_data[0].domain);
> +         */
> +
> +    /* TODO: Add check on distributor, cpu size */

Indentation ... All the code below could be shared with the DT version. 
Please create an helper to avoid duplication.

> +
> +    printk("GICv2 initialization from ACPI MADT table :\n"
> +              "        gic_dist_addr=%"PRIpaddr"\n"
> +              "        gic_cpu_addr=%"PRIpaddr"\n"
> +              "        gic_hyp_addr=%"PRIpaddr"\n"
> +              "        gic_vcpu_addr=%"PRIpaddr"\n"
> +              "        gic_maintenance_irq=%u\n",
> +              gicv2.dbase, gicv2.cbase, gicv2.hbase, gicv2.vbase,
> +              gicv2_info.maintenance_irq);
> +
> +    if ( (gicv2.dbase & ~PAGE_MASK) || (gicv2.cbase & ~PAGE_MASK) ||
> +         (gicv2.hbase & ~PAGE_MASK) || (gicv2.vbase & ~PAGE_MASK) )
> +        panic("GICv2 interfaces not page aligned");
> +
> +    gicv2.map_dbase = ioremap_nocache(gicv2.dbase, PAGE_SIZE);
> +    if ( !gicv2.map_dbase )
> +        panic("GICv2: Failed to ioremap for GIC distributor\n");
> +
> +    gicv2.map_cbase[0] = ioremap_nocache(gicv2.cbase, PAGE_SIZE);
> +
> +    if ( platform_has_quirk(PLATFORM_QUIRK_GIC_64K_STRIDE) )
> +        gicv2.map_cbase[1] = ioremap_nocache(gicv2.cbase + PAGE_SIZE * 0x10,
> +                                           PAGE_SIZE);
> +    else
> +        gicv2.map_cbase[1] = ioremap_nocache(gicv2.cbase + PAGE_SIZE, PAGE_SIZE);
> +
> +    if ( !gicv2.map_cbase[0] || !gicv2.map_cbase[1] )
> +        panic("GICv2: Failed to ioremap for GIC CPU interface\n");
> +
> +    gicv2.map_hbase = ioremap_nocache(gicv2.hbase, PAGE_SIZE);
> +    if ( !gicv2.map_hbase )
> +        panic("GICv2: Failed to ioremap for GIC Virtual interface\n");
> +
> +    /* Global settings: interrupt distributor */
> +    spin_lock_init(&gicv2.lock);
> +    spin_lock(&gicv2.lock);
> +
> +    gicv2_dist_init();
> +    gicv2_cpu_init();
> +    gicv2_hyp_init();
> +
> +    spin_unlock(&gicv2.lock);
> +
> +    gicv2_info.hw_version = GIC_V2;
> +    register_gic_ops(&gicv2_ops);
> +
> +    return 0;
> +}
> +
> +int __init
> +gic_v2_acpi_init(struct acpi_table_header *table)
> +{
> +        struct acpi_table_madt *madt;
> +        int count;
> +
> +        /* Collect CPU base addresses */
> +        count = acpi_parse_entries(sizeof(struct acpi_table_madt),
> +                                   gic_acpi_parse_madt_cpu, table,
> +                                   ACPI_MADT_TYPE_GENERIC_INTERRUPT,
> +                                   MAX_GIC_CPU_INTERFACE);
> +        if (count <= 0) {
> +                printk("Error during GICC entries parsing\n");
> +                return -EINVAL;
> +        }
> +
> +        /*
> +         * Find distributor base address. We expect one distributor entry since
> +         * ACPI 5.0 spec neither support multi-GIC instances nor GIC cascade.
> +         */
> +        count = acpi_parse_entries(sizeof(struct acpi_table_madt),
> +                                   gic_acpi_parse_madt_distributor, table,
> +                                   ACPI_MADT_TYPE_GENERIC_DISTRIBUTOR,
> +                                   MAX_GIC_DISTRIBUTOR);
> +        if (count <= 0) {
> +                printk("Error during GICD entries parsing\n");
> +                return -EINVAL;
> +        }

There should be only one Distributor. Please check count is always equal 
to 1.

> +
> +        madt = (struct acpi_table_madt *)table;
> +        return gic_acpi_validate_init((u64)madt->address);
> +}
> +
> +static int __init acpi_parse_madt(struct acpi_table_header *table)
> +{
> +        struct acpi_table_madt *madt = NULL;
> +        madt = (struct acpi_table_madt *)table;
> +
> +        if (!madt)
> +                return 1;
> +        else
> +                printk("Local APIC address 0x%08x\n", madt->address);
> +
> +        return 0;
> +}
> +
> +int __init acpi_gic_init()
> +{
> +       acpi_status status;
> +       int err;
> +
> +       status = acpi_table_parse(ACPI_SIG_MADT, acpi_parse_madt);
> +
> +       if (ACPI_FAILURE(status)) {
> +               const char *msg = acpi_format_exception(status);
> +               printk("\nFailed to get MADT table, %s\n", msg);
> +               return 1;
> +       }
> +
> +       err = acpi_table_parse(ACPI_SIG_MADT, gic_v2_acpi_init);
> +       if (err)
> +             printk("\nFailed to initialize GIC IRQ controller\n");
> +
> +       return 0;
> +}

I will make the same comment as on the UART driver. We should use a 
generic framework (maybe base on device). This is more cleaner and will 
make easy the support of GICv3/GICv2m.

> +#endif
> +
>   /*
>    * Local variables:
>    * mode: C
> diff --git a/xen/arch/arm/setup.c b/xen/arch/arm/setup.c
> index 317b985..93c8a8a 100644
> --- a/xen/arch/arm/setup.c
> +++ b/xen/arch/arm/setup.c
> @@ -784,11 +784,12 @@ void __init start_xen(unsigned long boot_phys_offset,
>   /* Comment for now take it after GIC initialization */
>   #if defined(CONFIG_ACPI) && defined(CONFIG_ARM_64)
>      init_xen_acpi_time();
> +   acpi_gic_init();
>   #else
>       init_xen_time();
> +    gic_init();
>   #endif

Same remark as the timer, a same binary should work for ACPI and DT.

gic_init should be able to know if we use ACPI or DT and, based on it, 
correctly initialized the the GIC.

> diff --git a/xen/include/asm-arm/acpi.h b/xen/include/asm-arm/acpi.h
> index c2d25db..01ce28d 100644
> --- a/xen/include/asm-arm/acpi.h
> +++ b/xen/include/asm-arm/acpi.h
> @@ -106,5 +106,7 @@ static inline void acpi_disable_pci(void)
>   #endif
>
>   #define MAX_GIC_CPU_INTERFACE 65535
> +#define MAX_GIC_DISTRIBUTOR   1                /* should be the same as MAX_GIC_NR */
> +extern int __init acpi_gic_init(void);
>
>   #endif /*_ASM_ARM_ACPI_H*/
>

Regards,

-- 
Julien Grall

  parent reply	other threads:[~2015-02-05  3:41 UTC|newest]

Thread overview: 166+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-02-04 14:01 [PATCH RFC 00/35] Add ACPI support for arm64 on Xen parth.dixit
2015-02-04 14:01 ` [PATCH RFC 01/35] xen: acpi: Build numa and pmstate x86 only parth.dixit
2015-02-04 17:03   ` Julien Grall
2015-02-04 14:01 ` [PATCH RFC 02/35] xen: arm64: ACPI: Support common ACPI drivers parth.dixit
2015-02-04 17:34   ` Stefano Stabellini
2015-02-04 17:36   ` Julien Grall
2015-02-05 11:04     ` Ian Campbell
2015-02-05 11:35       ` Jan Beulich
2015-02-05 11:57         ` Ian Campbell
2015-02-05 12:01           ` Jan Beulich
2015-02-05 14:05       ` Julien Grall
2015-02-05 11:34     ` Jan Beulich
2015-02-05 11:56       ` Ian Campbell
2015-02-04 14:01 ` [PATCH RFC 03/35] xen: arm64: ACPI: Add basic ACPI initialization parth.dixit
2015-02-04 17:40   ` Stefano Stabellini
2015-02-04 21:00   ` Julien Grall
2015-02-04 14:01 ` [PATCH RFC 04/35] ACPI / ACPICA: Introduce ARM Boot Architecture Flags in FADT parth.dixit
2015-02-04 17:42   ` Stefano Stabellini
2015-02-04 21:03   ` Julien Grall
2015-02-05 11:06     ` Ian Campbell
2015-02-05 14:09       ` Julien Grall
2015-02-05 14:10       ` Julien Grall
2015-02-04 14:01 ` [PATCH RFC 05/35] ARM64 / ACPI: Parse FADT table to get PSCI flags parth.dixit
2015-02-04 17:45   ` Stefano Stabellini
2015-02-05  3:56     ` Hanjun Guo
2015-02-05 11:09     ` Ian Campbell
2015-02-04 21:14   ` Julien Grall
2015-02-04 14:01 ` [PATCH RFC 06/35] ACPI: Add Generic Interrupt and Distributor struct parth.dixit
2015-02-04 17:52   ` Stefano Stabellini
2015-02-04 21:16   ` Julien Grall
2015-02-04 14:01 ` [PATCH RFC 07/35] ACPI / ACPICA: Add new features for MADT which introduced by ACPI 5.1 parth.dixit
2015-02-04 17:52   ` Stefano Stabellini
2015-02-08 14:27   ` Tomasz Nowicki
2015-02-04 14:01 ` [PATCH RFC 08/35] ACPI / table: Print GIC information when MADT is parsed parth.dixit
2015-02-04 14:01 ` [PATCH RFC 09/35] Add cpumask_next_zero set_cpu_present and possible parth.dixit
2015-02-04 18:47   ` Stefano Stabellini
2015-02-05 11:47     ` Jan Beulich
2015-02-04 21:28   ` Julien Grall
2015-02-04 14:01 ` [PATCH RFC 10/35] asm / arm: Introduce cputype.h parth.dixit
2015-02-04 18:56   ` Stefano Stabellini
2015-02-04 21:33   ` Julien Grall
2015-02-04 14:01 ` [PATCH RFC 11/35] ARM64 / ACPI: Parse MADT to map logical cpu to MPIDR and get cpu_possible/present_map parth.dixit
2015-02-04 21:44   ` Julien Grall
2015-02-04 14:01 ` [PATCH RFC 12/35] ARM64: Initialization of cpu_logical_map(0) parth.dixit
2015-02-04 21:45   ` Julien Grall
2015-02-05 10:26   ` Stefano Stabellini
2015-02-11  5:09     ` Julien Grall
2015-02-04 14:01 ` [PATCH RFC 13/35] ACPI: Introduce acpi_parse_entries parth.dixit
2015-02-05 10:29   ` Stefano Stabellini
2015-02-11  5:26     ` Julien Grall
2015-02-04 14:01 ` [PATCH RFC 14/35] ACPI / ACPICA: Add GTDT support updated by ACPI 5.1 parth.dixit
2015-02-05 13:22   ` Stefano Stabellini
2015-02-04 14:01 ` [PATCH RFC 15/35] ARM64 / ACPI: Define ACPI_IRQ_MODEL_GIC needed for arm parth.dixit
2015-02-05 14:39   ` Stefano Stabellini
2015-02-04 14:02 ` [PATCH RFC 16/35] ARM64 / ACPI: Parse GTDT to initialize timer parth.dixit
2015-02-04 21:51   ` Julien Grall
2015-02-05 11:39     ` Ian Campbell
2015-02-05 14:26       ` Julien Grall
2015-02-05 14:51       ` Stefano Stabellini
2015-02-05 14:55         ` Ian Campbell
2015-02-05 14:46   ` Stefano Stabellini
2015-02-04 14:02 ` [PATCH RFC 17/35] pl011: Initialize serial from ACPI SPCR table parth.dixit
2015-02-04 21:57   ` Julien Grall
2015-02-05 11:42     ` Ian Campbell
2015-02-05 14:29       ` Julien Grall
2015-02-05 14:52         ` Ian Campbell
2015-02-11  6:10           ` Julien Grall
2015-02-05 15:27   ` Stefano Stabellini
2015-02-05 15:32     ` Ian Campbell
2015-02-04 14:02 ` [PATCH RFC 18/35] arm : add helper function for setting interrupt type parth.dixit
2015-02-04 21:59   ` Julien Grall
2015-02-05 15:33   ` Stefano Stabellini
2015-02-11  6:12     ` Julien Grall
2015-02-04 14:02 ` [PATCH RFC 19/35] ACPI / GICv2: Add GIC specific ACPI boot support parth.dixit
2015-02-04 14:43   ` G Gregory
2015-02-05  6:26     ` Parth Dixit
2015-02-05  3:41   ` Julien Grall [this message]
2015-02-05 15:54   ` Stefano Stabellini
2015-02-04 14:02 ` [PATCH RFC 20/35] xen/arm: Prepare a min DT for DOM0 parth.dixit
2015-02-05  3:48   ` Julien Grall
2015-02-05 15:58   ` Stefano Stabellini
2015-02-04 14:02 ` [PATCH RFC 21/35] xen/arm: Create memory node " parth.dixit
2015-02-05  3:51   ` Julien Grall
2015-02-05 16:01   ` Stefano Stabellini
2015-02-11  6:27     ` Julien Grall
2015-02-04 14:02 ` [PATCH RFC 22/35] xen/arm: Create chosen " parth.dixit
2015-02-05 16:09   ` Stefano Stabellini
2015-02-06  0:29     ` Julien Grall
2015-02-06 14:09       ` Stefano Stabellini
2015-02-04 14:02 ` [PATCH RFC 23/35] arm: acpi add status override table parth.dixit
2015-02-05 16:14   ` Stefano Stabellini
2015-02-04 14:02 ` [PATCH RFC 24/35] arm : acpi add xen environment table parth.dixit
2015-02-05 16:16   ` Stefano Stabellini
2015-02-04 14:02 ` [PATCH RFC 25/35] arm: acpi add helper functions to map memory regions parth.dixit
2015-02-05  4:03   ` Julien Grall
2015-02-05 16:21     ` Stefano Stabellini
2015-02-06  0:35       ` Julien Grall
2015-02-06 14:12         ` Stefano Stabellini
2015-02-11  6:49           ` Julien Grall
2015-02-04 14:02 ` [PATCH RFC 26/35] arm : acpi read mmio tables from uefi parth.dixit
2015-02-05  4:17   ` Julien Grall
2015-02-05 16:34   ` Stefano Stabellini
2015-02-06  0:38     ` Julien Grall
2015-02-06 14:17       ` Stefano Stabellini
2015-02-11  9:14         ` Julien Grall
2015-02-04 14:02 ` [PATCH RFC 27/35] arm: acpi map mmio regions to dom0 parth.dixit
2015-02-05 16:49   ` Stefano Stabellini
2015-02-05 19:40     ` Parth Dixit
2015-02-06  0:44       ` Julien Grall
2015-02-06 14:21         ` Stefano Stabellini
2015-02-11  9:26   ` Julien Grall
2015-02-04 14:02 ` [PATCH RFC 28/35] arm: acpi map acpi tables in dom0 parth.dixit
2015-02-05  4:29   ` Julien Grall
2015-02-05 16:55   ` Stefano Stabellini
2015-02-05 19:38     ` Parth Dixit
2015-02-06 14:23       ` Stefano Stabellini
2015-02-04 14:02 ` [PATCH RFC 29/35] arm : acpi enable PSCI and hvc in acpi FADT table parth.dixit
2015-02-05  4:33   ` Julien Grall
2015-02-05 17:12   ` Stefano Stabellini
2015-02-06  0:47     ` Julien Grall
2015-02-06 15:13       ` Stefano Stabellini
2015-02-04 14:02 ` [PATCH RFC 30/35] arm : acpi map XSDT table to dom0 parth.dixit
2015-02-05  4:46   ` Julien Grall
2015-02-05 17:24   ` Stefano Stabellini
2015-02-04 14:02 ` [PATCH RFC 31/35] arm : acpi map status override " parth.dixit
2015-02-05  5:24   ` Julien Grall
2015-02-05 10:57     ` Parth Dixit
2015-02-05 11:47       ` Ian Campbell
2015-02-11  9:45         ` Julien Grall
2015-02-12  6:50           ` Stefano Stabellini
2015-02-05 14:39       ` Julien Grall
2015-02-05 17:39         ` Stefano Stabellini
2015-02-06  0:54           ` Julien Grall
2015-02-06 14:32             ` Stefano Stabellini
2015-02-05 17:27   ` Stefano Stabellini
2015-02-04 14:02 ` [PATCH RFC 32/35] arm : acpi map xen environment " parth.dixit
2015-02-05  5:29   ` Julien Grall
2015-02-05 10:49     ` Parth Dixit
2015-02-05 17:36   ` Stefano Stabellini
2015-02-06  0:57     ` Julien Grall
2015-02-04 14:02 ` [PATCH RFC 33/35] arm : acpi enable efi for acpi parth.dixit
2015-02-05  5:31   ` Julien Grall
2015-02-05 10:32     ` Parth Dixit
2015-02-05 11:58     ` Jan Beulich
2015-02-05 12:05       ` Ian Campbell
2015-02-11  9:57         ` Julien Grall
2015-02-11 10:31           ` Jan Beulich
2015-02-11 14:34             ` Julien Grall
2015-02-11  9:51   ` Usage of efi_enabled - Was: " Julien Grall
2015-02-11 10:28     ` Jan Beulich
2015-02-11 10:49       ` Ian Campbell
2015-02-11 11:22         ` Jan Beulich
2015-02-12  4:18           ` Ian Campbell
2015-02-04 14:02 ` [PATCH RFC 34/35] arm : acpi workarounds for firmware/linux dependencies parth.dixit
2015-02-05  5:38   ` Julien Grall
2015-02-05 10:30     ` Parth Dixit
2015-02-05 14:59       ` Julien Grall
2015-02-10  9:38         ` Julien Grall
2015-02-10 10:01           ` Jan Beulich
2015-02-10 10:26             ` Julien Grall
2015-02-05 17:48   ` Stefano Stabellini
2015-02-05 19:30     ` Parth Dixit
2015-02-06 14:38       ` Stefano Stabellini
2015-02-06 14:49         ` Jan Beulich
2015-02-04 14:02 ` [PATCH RFC 35/35] xen: arm64: Add ACPI support parth.dixit
2015-02-04 16:38 ` [PATCH RFC 00/35] Add ACPI support for arm64 on Xen Julien Grall

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=54D2E65C.1040308@linaro.org \
    --to=julien.grall@linaro.org \
    --cc=christoffer.dall@linaro.org \
    --cc=graeme.gregory@linaro.org \
    --cc=hanjun.guo@linaro.org \
    --cc=ian.campbell@citrix.com \
    --cc=jbeulich@suse.com \
    --cc=naresh.bhat@linaro.org \
    --cc=parth.dixit@linaro.org \
    --cc=stefano.stabellini@citrix.com \
    --cc=tim@xen.org \
    --cc=tomasz.nowicki@linaro.org \
    --cc=xen-devel@lists.xen.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 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.