All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [RFC v2 1/2] arm: Add the cortex-a9 CPU to the a9mpcore device
@ 2014-06-17  4:18 Alistair Francis
  2014-06-17  4:18 ` [Qemu-devel] [RFC v2 2/2] zynq: Update Zynq to init the CPU in " Alistair Francis
  2014-06-17  5:57 ` [Qemu-devel] [RFC v2 1/2] arm: Add the cortex-a9 CPU to " Alistair Francis
  0 siblings, 2 replies; 7+ messages in thread
From: Alistair Francis @ 2014-06-17  4:18 UTC (permalink / raw)
  To: qemu-devel; +Cc: peter.maydell, peter.crosthwaite, afaerber, alistair.francis

This patch adds the Cortex-A9 ARM CPU to the A9MPCore.

The CPU is only created if the num-cpu property is set.

This patch relies on Stefan Hajnoczi's v3 'virtio-blk:
use alias properties in transport devices' patch. This is
used to pass the CPU properties through to the mpcore.

This patch allows the midr and reset-cbar properties to be set

Signed-off-by: Alistair Francis <alistair.francis@xilinx.com>
---
V2: - Small fixes thanks to Peter Crosthwaite
    - Properties are now passed through
    - CPUs are no longer inited in the realize
      function, instead it uses a property listening function
        - Thanks to Maydell, Crosthwaite and Andreas
V1: First Release

 hw/cpu/a9mpcore.c         |   62 ++++++++++++++++++++++++++++++++++++++++++++-
 include/hw/cpu/a9mpcore.h |    3 ++
 2 files changed, 64 insertions(+), 1 deletions(-)

diff --git a/hw/cpu/a9mpcore.c b/hw/cpu/a9mpcore.c
index c09358c..3d22b86 100644
--- a/hw/cpu/a9mpcore.c
+++ b/hw/cpu/a9mpcore.c
@@ -17,10 +17,54 @@ static void a9mp_priv_set_irq(void *opaque, int irq, int level)
     qemu_set_irq(qdev_get_gpio_in(DEVICE(&s->gic), irq), level);
 }
 
+static void a9mpcore_init_cpus(Object *obj, Visitor *v,
+                               void *opaque, const char *name,
+                               Error **errp)
+{
+    A9MPPrivState *s = A9MPCORE_PRIV(obj);
+    ObjectClass *cpu_oc;
+    Error *err = NULL;
+    int i;
+    int64_t value;
+
+    visit_type_int(v, &value, name, &err);
+    if (err) {
+        error_propagate(errp, err);
+        return;
+    }
+    s->num_cpu = value;
+
+    s->cpu = g_new0(ARMCPU, s->num_cpu);
+    cpu_oc = cpu_class_by_name(TYPE_ARM_CPU, "cortex-a9");
+
+    for (i = 0; i < s->num_cpu; i++) {
+        object_initialize(&s->cpu[i], sizeof(*s->cpu),
+                          object_class_get_name(cpu_oc));
+
+        object_property_add_alias(obj, "midr", OBJECT(&s->cpu[i]),
+                                  "midr", NULL);
+        object_property_add_alias(obj, "reset-cbar", OBJECT(&s->cpu[i]),
+                                  "reset-cbar", NULL);
+        /* This fails to pass through thte reset-cbar property
+         * The qdev_alias_all_properties() also fails with multiple CPUs
+         * Hence the code above is used instead
+         * qdev_alias_all_properties(DEVICE(&s->cpu[i]), obj);
+         */
+    }
+}
+
 static void a9mp_priv_initfn(Object *obj)
 {
     A9MPPrivState *s = A9MPCORE_PRIV(obj);
 
+    /* Set up the CPU to be initiated */
+    object_property_add(obj, "num-cpu", "int",
+                        NULL, a9mpcore_init_cpus,
+                        NULL, NULL, NULL);
+    /* Use this as the default */
+    s->cpu = NULL;
+    s->num_cpu = 1;
+
     memory_region_init(&s->container, obj, "a9mp-priv-container", 0x2000);
     sysbus_init_mmio(SYS_BUS_DEVICE(obj), &s->container);
 
@@ -50,6 +94,17 @@ static void a9mp_priv_realize(DeviceState *dev, Error **errp)
     Error *err = NULL;
     int i;
 
+    if (s->cpu) {
+        for (i = 0; i < s->num_cpu; i++) {
+            object_property_set_bool(OBJECT(&s->cpu[i]), true,
+                                     "realized", &err);
+            if (err) {
+                error_propagate(errp, err);
+                return;
+            }
+        }
+    }
+
     scudev = DEVICE(&s->scu);
     qdev_prop_set_uint32(scudev, "num-cpu", s->num_cpu);
     object_property_set_bool(OBJECT(&s->scu), true, "realized", &err);
@@ -75,6 +130,12 @@ static void a9mp_priv_realize(DeviceState *dev, Error **errp)
     /* Pass through inbound GPIO lines to the GIC */
     qdev_init_gpio_in(dev, a9mp_priv_set_irq, s->num_irq - 32);
 
+    /* Connect the GIC to the first CPU */
+    if (s->cpu) {
+        sysbus_connect_irq(SYS_BUS_DEVICE(dev), 0,
+                           qdev_get_gpio_in(DEVICE(s->cpu), ARM_CPU_IRQ));
+    }
+
     gtimerdev = DEVICE(&s->gtimer);
     qdev_prop_set_uint32(gtimerdev, "num-cpu", s->num_cpu);
     object_property_set_bool(OBJECT(&s->gtimer), true, "realized", &err);
@@ -144,7 +205,6 @@ static void a9mp_priv_realize(DeviceState *dev, Error **errp)
 }
 
 static Property a9mp_priv_properties[] = {
-    DEFINE_PROP_UINT32("num-cpu", A9MPPrivState, num_cpu, 1),
     /* The Cortex-A9MP may have anything from 0 to 224 external interrupt
      * IRQ lines (with another 32 internal). We default to 64+32, which
      * is the number provided by the Cortex-A9MP test chip in the
diff --git a/include/hw/cpu/a9mpcore.h b/include/hw/cpu/a9mpcore.h
index 5d67ca2..2e57116 100644
--- a/include/hw/cpu/a9mpcore.h
+++ b/include/hw/cpu/a9mpcore.h
@@ -15,6 +15,7 @@
 #include "hw/misc/a9scu.h"
 #include "hw/timer/arm_mptimer.h"
 #include "hw/timer/a9gtimer.h"
+#include "qapi/visitor.h"
 
 #define TYPE_A9MPCORE_PRIV "a9mpcore_priv"
 #define A9MPCORE_PRIV(obj) \
@@ -29,6 +30,8 @@ typedef struct A9MPPrivState {
     MemoryRegion container;
     uint32_t num_irq;
 
+    ARMCPU *cpu;
+
     A9SCUState scu;
     GICState gic;
     A9GTimerState gtimer;
-- 
1.7.1

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [Qemu-devel] [RFC v2 2/2] zynq: Update Zynq to init the CPU in the a9mpcore device
  2014-06-17  4:18 [Qemu-devel] [RFC v2 1/2] arm: Add the cortex-a9 CPU to the a9mpcore device Alistair Francis
@ 2014-06-17  4:18 ` Alistair Francis
  2014-06-17  5:57 ` [Qemu-devel] [RFC v2 1/2] arm: Add the cortex-a9 CPU to " Alistair Francis
  1 sibling, 0 replies; 7+ messages in thread
From: Alistair Francis @ 2014-06-17  4:18 UTC (permalink / raw)
  To: qemu-devel; +Cc: peter.maydell, peter.crosthwaite, afaerber, alistair.francis

This patch removes the initialisation of the ARM Cortex-A9
in Zynq and instead allows the a9mpcore device to init the
CPU. This also updates components that rely on the CPU
and GIC, as they are now initialised in a slightly different
way

Signed-off-by: Alistair Francis <alistair.francis@xilinx.com>
---
V2: - Small changes based on comments from Peter Crosthwaite
    - Updates to be compatible with the new MPCore implementation
V1: Initial Release

 hw/arm/xilinx_zynq.c |   47 ++++++++++++++++-------------------------------
 1 files changed, 16 insertions(+), 31 deletions(-)

diff --git a/hw/arm/xilinx_zynq.c b/hw/arm/xilinx_zynq.c
index ba5aa82..f5de2d8 100644
--- a/hw/arm/xilinx_zynq.c
+++ b/hw/arm/xilinx_zynq.c
@@ -26,6 +26,7 @@
 #include "hw/loader.h"
 #include "hw/ssi.h"
 #include "qemu/error-report.h"
+#include "hw/cpu/a9mpcore.h"
 
 #define NUM_SPI_FLASHES 4
 #define NUM_QSPI_FLASHES 2
@@ -104,12 +105,10 @@ static inline void zynq_init_spi_flashes(uint32_t base_addr, qemu_irq irq,
 static void zynq_init(MachineState *machine)
 {
     ram_addr_t ram_size = machine->ram_size;
-    const char *cpu_model = machine->cpu_model;
     const char *kernel_filename = machine->kernel_filename;
     const char *kernel_cmdline = machine->kernel_cmdline;
     const char *initrd_filename = machine->initrd_filename;
-    ObjectClass *cpu_oc;
-    ARMCPU *cpu;
+    A9MPPrivState *mpcore;
     MemoryRegion *address_space_mem = get_system_memory();
     MemoryRegion *ext_ram = g_new(MemoryRegion, 1);
     MemoryRegion *ocm_ram = g_new(MemoryRegion, 1);
@@ -119,27 +118,8 @@ static void zynq_init(MachineState *machine)
     Error *err = NULL;
     int n;
 
-    if (!cpu_model) {
-        cpu_model = "cortex-a9";
-    }
-    cpu_oc = cpu_class_by_name(TYPE_ARM_CPU, cpu_model);
-
-    cpu = ARM_CPU(object_new(object_class_get_name(cpu_oc)));
-
-    object_property_set_int(OBJECT(cpu), ZYNQ_BOARD_MIDR, "midr", &err);
-    if (err) {
-        error_report("%s", error_get_pretty(err));
-        exit(1);
-    }
-
-    object_property_set_int(OBJECT(cpu), MPCORE_PERIPHBASE, "reset-cbar", &err);
-    if (err) {
-        error_report("%s", error_get_pretty(err));
-        exit(1);
-    }
-    object_property_set_bool(OBJECT(cpu), true, "realized", &err);
-    if (err) {
-        error_report("%s", error_get_pretty(err));
+    if (machine->cpu_model) {
+        error_report("Zynq does not support CPU model override!\n");
         exit(1);
     }
 
@@ -171,16 +151,21 @@ static void zynq_init(MachineState *machine)
     qdev_init_nofail(dev);
     sysbus_mmio_map(SYS_BUS_DEVICE(dev), 0, 0xF8000000);
 
-    dev = qdev_create(NULL, "a9mpcore_priv");
-    qdev_prop_set_uint32(dev, "num-cpu", 1);
-    qdev_init_nofail(dev);
-    busdev = SYS_BUS_DEVICE(dev);
+    mpcore = A9MPCORE_PRIV(object_new("a9mpcore_priv"));
+    qdev_prop_set_uint32(DEVICE(mpcore), "num-cpu", 1);
+    qdev_prop_set_uint32(DEVICE(mpcore), "midr", ZYNQ_BOARD_MIDR);
+    qdev_prop_set_uint64(DEVICE(mpcore), "reset-cbar", MPCORE_PERIPHBASE);
+    object_property_set_bool(OBJECT(mpcore), true, "realized", &err);
+    if (err != NULL) {
+        error_report("Couldn't realize the Zynq A9MPCore: %s",
+                     error_get_pretty(err));
+        exit(1);
+    }
+    busdev = SYS_BUS_DEVICE(DEVICE(mpcore));
     sysbus_mmio_map(busdev, 0, MPCORE_PERIPHBASE);
-    sysbus_connect_irq(busdev, 0,
-                       qdev_get_gpio_in(DEVICE(cpu), ARM_CPU_IRQ));
 
     for (n = 0; n < 64; n++) {
-        pic[n] = qdev_get_gpio_in(dev, n);
+        pic[n] = qdev_get_gpio_in(DEVICE(mpcore), n);
     }
 
     zynq_init_spi_flashes(0xE0006000, pic[58-IRQ_OFFSET], false);
-- 
1.7.1

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* Re: [Qemu-devel] [RFC v2 1/2] arm: Add the cortex-a9 CPU to the a9mpcore device
  2014-06-17  4:18 [Qemu-devel] [RFC v2 1/2] arm: Add the cortex-a9 CPU to the a9mpcore device Alistair Francis
  2014-06-17  4:18 ` [Qemu-devel] [RFC v2 2/2] zynq: Update Zynq to init the CPU in " Alistair Francis
@ 2014-06-17  5:57 ` Alistair Francis
  2014-06-23  1:38   ` Alistair Francis
  1 sibling, 1 reply; 7+ messages in thread
From: Alistair Francis @ 2014-06-17  5:57 UTC (permalink / raw)
  To: stefanha
  Cc: Peter Maydell, Peter Crosthwaite,
	qemu-devel@nongnu.org Developers, Andreas Färber

Add Stefan Hajnoczi as it relies on his work
(http://lists.gnu.org/archive/html/qemu-devel/2014-05/msg06489.html)

On Tue, Jun 17, 2014 at 2:18 PM, Alistair Francis
<alistair.francis@xilinx.com> wrote:
> This patch adds the Cortex-A9 ARM CPU to the A9MPCore.
>
> The CPU is only created if the num-cpu property is set.
>
> This patch relies on Stefan Hajnoczi's v3 'virtio-blk:
> use alias properties in transport devices' patch. This is
> used to pass the CPU properties through to the mpcore.
>
> This patch allows the midr and reset-cbar properties to be set
>
> Signed-off-by: Alistair Francis <alistair.francis@xilinx.com>
> ---
> V2: - Small fixes thanks to Peter Crosthwaite
>     - Properties are now passed through
>     - CPUs are no longer inited in the realize
>       function, instead it uses a property listening function
>         - Thanks to Maydell, Crosthwaite and Andreas
> V1: First Release
>
>  hw/cpu/a9mpcore.c         |   62 ++++++++++++++++++++++++++++++++++++++++++++-
>  include/hw/cpu/a9mpcore.h |    3 ++
>  2 files changed, 64 insertions(+), 1 deletions(-)
>
> diff --git a/hw/cpu/a9mpcore.c b/hw/cpu/a9mpcore.c
> index c09358c..3d22b86 100644
> --- a/hw/cpu/a9mpcore.c
> +++ b/hw/cpu/a9mpcore.c
> @@ -17,10 +17,54 @@ static void a9mp_priv_set_irq(void *opaque, int irq, int level)
>      qemu_set_irq(qdev_get_gpio_in(DEVICE(&s->gic), irq), level);
>  }
>
> +static void a9mpcore_init_cpus(Object *obj, Visitor *v,
> +                               void *opaque, const char *name,
> +                               Error **errp)
> +{
> +    A9MPPrivState *s = A9MPCORE_PRIV(obj);
> +    ObjectClass *cpu_oc;
> +    Error *err = NULL;
> +    int i;
> +    int64_t value;
> +
> +    visit_type_int(v, &value, name, &err);
> +    if (err) {
> +        error_propagate(errp, err);
> +        return;
> +    }
> +    s->num_cpu = value;
> +
> +    s->cpu = g_new0(ARMCPU, s->num_cpu);
> +    cpu_oc = cpu_class_by_name(TYPE_ARM_CPU, "cortex-a9");
> +
> +    for (i = 0; i < s->num_cpu; i++) {
> +        object_initialize(&s->cpu[i], sizeof(*s->cpu),
> +                          object_class_get_name(cpu_oc));
> +
> +        object_property_add_alias(obj, "midr", OBJECT(&s->cpu[i]),
> +                                  "midr", NULL);
> +        object_property_add_alias(obj, "reset-cbar", OBJECT(&s->cpu[i]),
> +                                  "reset-cbar", NULL);
> +        /* This fails to pass through thte reset-cbar property
> +         * The qdev_alias_all_properties() also fails with multiple CPUs
> +         * Hence the code above is used instead
> +         * qdev_alias_all_properties(DEVICE(&s->cpu[i]), obj);
> +         */
> +    }
> +}
> +
>  static void a9mp_priv_initfn(Object *obj)
>  {
>      A9MPPrivState *s = A9MPCORE_PRIV(obj);
>
> +    /* Set up the CPU to be initiated */
> +    object_property_add(obj, "num-cpu", "int",
> +                        NULL, a9mpcore_init_cpus,
> +                        NULL, NULL, NULL);
> +    /* Use this as the default */
> +    s->cpu = NULL;
> +    s->num_cpu = 1;
> +
>      memory_region_init(&s->container, obj, "a9mp-priv-container", 0x2000);
>      sysbus_init_mmio(SYS_BUS_DEVICE(obj), &s->container);
>
> @@ -50,6 +94,17 @@ static void a9mp_priv_realize(DeviceState *dev, Error **errp)
>      Error *err = NULL;
>      int i;
>
> +    if (s->cpu) {
> +        for (i = 0; i < s->num_cpu; i++) {
> +            object_property_set_bool(OBJECT(&s->cpu[i]), true,
> +                                     "realized", &err);
> +            if (err) {
> +                error_propagate(errp, err);
> +                return;
> +            }
> +        }
> +    }
> +
>      scudev = DEVICE(&s->scu);
>      qdev_prop_set_uint32(scudev, "num-cpu", s->num_cpu);
>      object_property_set_bool(OBJECT(&s->scu), true, "realized", &err);
> @@ -75,6 +130,12 @@ static void a9mp_priv_realize(DeviceState *dev, Error **errp)
>      /* Pass through inbound GPIO lines to the GIC */
>      qdev_init_gpio_in(dev, a9mp_priv_set_irq, s->num_irq - 32);
>
> +    /* Connect the GIC to the first CPU */
> +    if (s->cpu) {
> +        sysbus_connect_irq(SYS_BUS_DEVICE(dev), 0,
> +                           qdev_get_gpio_in(DEVICE(s->cpu), ARM_CPU_IRQ));
> +    }
> +
>      gtimerdev = DEVICE(&s->gtimer);
>      qdev_prop_set_uint32(gtimerdev, "num-cpu", s->num_cpu);
>      object_property_set_bool(OBJECT(&s->gtimer), true, "realized", &err);
> @@ -144,7 +205,6 @@ static void a9mp_priv_realize(DeviceState *dev, Error **errp)
>  }
>
>  static Property a9mp_priv_properties[] = {
> -    DEFINE_PROP_UINT32("num-cpu", A9MPPrivState, num_cpu, 1),
>      /* The Cortex-A9MP may have anything from 0 to 224 external interrupt
>       * IRQ lines (with another 32 internal). We default to 64+32, which
>       * is the number provided by the Cortex-A9MP test chip in the
> diff --git a/include/hw/cpu/a9mpcore.h b/include/hw/cpu/a9mpcore.h
> index 5d67ca2..2e57116 100644
> --- a/include/hw/cpu/a9mpcore.h
> +++ b/include/hw/cpu/a9mpcore.h
> @@ -15,6 +15,7 @@
>  #include "hw/misc/a9scu.h"
>  #include "hw/timer/arm_mptimer.h"
>  #include "hw/timer/a9gtimer.h"
> +#include "qapi/visitor.h"
>
>  #define TYPE_A9MPCORE_PRIV "a9mpcore_priv"
>  #define A9MPCORE_PRIV(obj) \
> @@ -29,6 +30,8 @@ typedef struct A9MPPrivState {
>      MemoryRegion container;
>      uint32_t num_irq;
>
> +    ARMCPU *cpu;
> +
>      A9SCUState scu;
>      GICState gic;
>      A9GTimerState gtimer;
> --
> 1.7.1
>

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [Qemu-devel] [RFC v2 1/2] arm: Add the cortex-a9 CPU to the a9mpcore device
  2014-06-17  5:57 ` [Qemu-devel] [RFC v2 1/2] arm: Add the cortex-a9 CPU to " Alistair Francis
@ 2014-06-23  1:38   ` Alistair Francis
  2014-06-26  5:09     ` Alistair Francis
  0 siblings, 1 reply; 7+ messages in thread
From: Alistair Francis @ 2014-06-23  1:38 UTC (permalink / raw)
  To: Alistair Francis
  Cc: Peter Maydell, Peter Crosthwaite,
	qemu-devel@nongnu.org Developers, Stefan Hajnoczi,
	Andreas Färber

Ping

On Tue, Jun 17, 2014 at 3:57 PM, Alistair Francis
<alistair.francis@xilinx.com> wrote:
> Add Stefan Hajnoczi as it relies on his work
> (http://lists.gnu.org/archive/html/qemu-devel/2014-05/msg06489.html)
>
> On Tue, Jun 17, 2014 at 2:18 PM, Alistair Francis
> <alistair.francis@xilinx.com> wrote:
>> This patch adds the Cortex-A9 ARM CPU to the A9MPCore.
>>
>> The CPU is only created if the num-cpu property is set.
>>
>> This patch relies on Stefan Hajnoczi's v3 'virtio-blk:
>> use alias properties in transport devices' patch. This is
>> used to pass the CPU properties through to the mpcore.
>>
>> This patch allows the midr and reset-cbar properties to be set
>>
>> Signed-off-by: Alistair Francis <alistair.francis@xilinx.com>
>> ---
>> V2: - Small fixes thanks to Peter Crosthwaite
>>     - Properties are now passed through
>>     - CPUs are no longer inited in the realize
>>       function, instead it uses a property listening function
>>         - Thanks to Maydell, Crosthwaite and Andreas
>> V1: First Release
>>
>>  hw/cpu/a9mpcore.c         |   62 ++++++++++++++++++++++++++++++++++++++++++++-
>>  include/hw/cpu/a9mpcore.h |    3 ++
>>  2 files changed, 64 insertions(+), 1 deletions(-)
>>
>> diff --git a/hw/cpu/a9mpcore.c b/hw/cpu/a9mpcore.c
>> index c09358c..3d22b86 100644
>> --- a/hw/cpu/a9mpcore.c
>> +++ b/hw/cpu/a9mpcore.c
>> @@ -17,10 +17,54 @@ static void a9mp_priv_set_irq(void *opaque, int irq, int level)
>>      qemu_set_irq(qdev_get_gpio_in(DEVICE(&s->gic), irq), level);
>>  }
>>
>> +static void a9mpcore_init_cpus(Object *obj, Visitor *v,
>> +                               void *opaque, const char *name,
>> +                               Error **errp)
>> +{
>> +    A9MPPrivState *s = A9MPCORE_PRIV(obj);
>> +    ObjectClass *cpu_oc;
>> +    Error *err = NULL;
>> +    int i;
>> +    int64_t value;
>> +
>> +    visit_type_int(v, &value, name, &err);
>> +    if (err) {
>> +        error_propagate(errp, err);
>> +        return;
>> +    }
>> +    s->num_cpu = value;
>> +
>> +    s->cpu = g_new0(ARMCPU, s->num_cpu);
>> +    cpu_oc = cpu_class_by_name(TYPE_ARM_CPU, "cortex-a9");
>> +
>> +    for (i = 0; i < s->num_cpu; i++) {
>> +        object_initialize(&s->cpu[i], sizeof(*s->cpu),
>> +                          object_class_get_name(cpu_oc));
>> +
>> +        object_property_add_alias(obj, "midr", OBJECT(&s->cpu[i]),
>> +                                  "midr", NULL);
>> +        object_property_add_alias(obj, "reset-cbar", OBJECT(&s->cpu[i]),
>> +                                  "reset-cbar", NULL);
>> +        /* This fails to pass through thte reset-cbar property
>> +         * The qdev_alias_all_properties() also fails with multiple CPUs
>> +         * Hence the code above is used instead
>> +         * qdev_alias_all_properties(DEVICE(&s->cpu[i]), obj);
>> +         */
>> +    }
>> +}
>> +
>>  static void a9mp_priv_initfn(Object *obj)
>>  {
>>      A9MPPrivState *s = A9MPCORE_PRIV(obj);
>>
>> +    /* Set up the CPU to be initiated */
>> +    object_property_add(obj, "num-cpu", "int",
>> +                        NULL, a9mpcore_init_cpus,
>> +                        NULL, NULL, NULL);
>> +    /* Use this as the default */
>> +    s->cpu = NULL;
>> +    s->num_cpu = 1;
>> +
>>      memory_region_init(&s->container, obj, "a9mp-priv-container", 0x2000);
>>      sysbus_init_mmio(SYS_BUS_DEVICE(obj), &s->container);
>>
>> @@ -50,6 +94,17 @@ static void a9mp_priv_realize(DeviceState *dev, Error **errp)
>>      Error *err = NULL;
>>      int i;
>>
>> +    if (s->cpu) {
>> +        for (i = 0; i < s->num_cpu; i++) {
>> +            object_property_set_bool(OBJECT(&s->cpu[i]), true,
>> +                                     "realized", &err);
>> +            if (err) {
>> +                error_propagate(errp, err);
>> +                return;
>> +            }
>> +        }
>> +    }
>> +
>>      scudev = DEVICE(&s->scu);
>>      qdev_prop_set_uint32(scudev, "num-cpu", s->num_cpu);
>>      object_property_set_bool(OBJECT(&s->scu), true, "realized", &err);
>> @@ -75,6 +130,12 @@ static void a9mp_priv_realize(DeviceState *dev, Error **errp)
>>      /* Pass through inbound GPIO lines to the GIC */
>>      qdev_init_gpio_in(dev, a9mp_priv_set_irq, s->num_irq - 32);
>>
>> +    /* Connect the GIC to the first CPU */
>> +    if (s->cpu) {
>> +        sysbus_connect_irq(SYS_BUS_DEVICE(dev), 0,
>> +                           qdev_get_gpio_in(DEVICE(s->cpu), ARM_CPU_IRQ));
>> +    }
>> +
>>      gtimerdev = DEVICE(&s->gtimer);
>>      qdev_prop_set_uint32(gtimerdev, "num-cpu", s->num_cpu);
>>      object_property_set_bool(OBJECT(&s->gtimer), true, "realized", &err);
>> @@ -144,7 +205,6 @@ static void a9mp_priv_realize(DeviceState *dev, Error **errp)
>>  }
>>
>>  static Property a9mp_priv_properties[] = {
>> -    DEFINE_PROP_UINT32("num-cpu", A9MPPrivState, num_cpu, 1),
>>      /* The Cortex-A9MP may have anything from 0 to 224 external interrupt
>>       * IRQ lines (with another 32 internal). We default to 64+32, which
>>       * is the number provided by the Cortex-A9MP test chip in the
>> diff --git a/include/hw/cpu/a9mpcore.h b/include/hw/cpu/a9mpcore.h
>> index 5d67ca2..2e57116 100644
>> --- a/include/hw/cpu/a9mpcore.h
>> +++ b/include/hw/cpu/a9mpcore.h
>> @@ -15,6 +15,7 @@
>>  #include "hw/misc/a9scu.h"
>>  #include "hw/timer/arm_mptimer.h"
>>  #include "hw/timer/a9gtimer.h"
>> +#include "qapi/visitor.h"
>>
>>  #define TYPE_A9MPCORE_PRIV "a9mpcore_priv"
>>  #define A9MPCORE_PRIV(obj) \
>> @@ -29,6 +30,8 @@ typedef struct A9MPPrivState {
>>      MemoryRegion container;
>>      uint32_t num_irq;
>>
>> +    ARMCPU *cpu;
>> +
>>      A9SCUState scu;
>>      GICState gic;
>>      A9GTimerState gtimer;
>> --
>> 1.7.1
>>

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [Qemu-devel] [RFC v2 1/2] arm: Add the cortex-a9 CPU to the a9mpcore device
  2014-06-23  1:38   ` Alistair Francis
@ 2014-06-26  5:09     ` Alistair Francis
  2014-06-26 14:58       ` Peter Maydell
  0 siblings, 1 reply; 7+ messages in thread
From: Alistair Francis @ 2014-06-26  5:09 UTC (permalink / raw)
  To: Alistair Francis
  Cc: Peter Maydell, Peter Crosthwaite,
	qemu-devel@nongnu.org Developers, Stefan Hajnoczi,
	Andreas Färber

Ping^2

On Mon, Jun 23, 2014 at 11:38 AM, Alistair Francis
<alistair.francis@xilinx.com> wrote:
> Ping
>
> On Tue, Jun 17, 2014 at 3:57 PM, Alistair Francis
> <alistair.francis@xilinx.com> wrote:
>> Add Stefan Hajnoczi as it relies on his work
>> (http://lists.gnu.org/archive/html/qemu-devel/2014-05/msg06489.html)
>>
>> On Tue, Jun 17, 2014 at 2:18 PM, Alistair Francis
>> <alistair.francis@xilinx.com> wrote:
>>> This patch adds the Cortex-A9 ARM CPU to the A9MPCore.
>>>
>>> The CPU is only created if the num-cpu property is set.
>>>
>>> This patch relies on Stefan Hajnoczi's v3 'virtio-blk:
>>> use alias properties in transport devices' patch. This is
>>> used to pass the CPU properties through to the mpcore.
>>>
>>> This patch allows the midr and reset-cbar properties to be set
>>>
>>> Signed-off-by: Alistair Francis <alistair.francis@xilinx.com>
>>> ---
>>> V2: - Small fixes thanks to Peter Crosthwaite
>>>     - Properties are now passed through
>>>     - CPUs are no longer inited in the realize
>>>       function, instead it uses a property listening function
>>>         - Thanks to Maydell, Crosthwaite and Andreas
>>> V1: First Release
>>>
>>>  hw/cpu/a9mpcore.c         |   62 ++++++++++++++++++++++++++++++++++++++++++++-
>>>  include/hw/cpu/a9mpcore.h |    3 ++
>>>  2 files changed, 64 insertions(+), 1 deletions(-)
>>>
>>> diff --git a/hw/cpu/a9mpcore.c b/hw/cpu/a9mpcore.c
>>> index c09358c..3d22b86 100644
>>> --- a/hw/cpu/a9mpcore.c
>>> +++ b/hw/cpu/a9mpcore.c
>>> @@ -17,10 +17,54 @@ static void a9mp_priv_set_irq(void *opaque, int irq, int level)
>>>      qemu_set_irq(qdev_get_gpio_in(DEVICE(&s->gic), irq), level);
>>>  }
>>>
>>> +static void a9mpcore_init_cpus(Object *obj, Visitor *v,
>>> +                               void *opaque, const char *name,
>>> +                               Error **errp)
>>> +{
>>> +    A9MPPrivState *s = A9MPCORE_PRIV(obj);
>>> +    ObjectClass *cpu_oc;
>>> +    Error *err = NULL;
>>> +    int i;
>>> +    int64_t value;
>>> +
>>> +    visit_type_int(v, &value, name, &err);
>>> +    if (err) {
>>> +        error_propagate(errp, err);
>>> +        return;
>>> +    }
>>> +    s->num_cpu = value;
>>> +
>>> +    s->cpu = g_new0(ARMCPU, s->num_cpu);
>>> +    cpu_oc = cpu_class_by_name(TYPE_ARM_CPU, "cortex-a9");
>>> +
>>> +    for (i = 0; i < s->num_cpu; i++) {
>>> +        object_initialize(&s->cpu[i], sizeof(*s->cpu),
>>> +                          object_class_get_name(cpu_oc));
>>> +
>>> +        object_property_add_alias(obj, "midr", OBJECT(&s->cpu[i]),
>>> +                                  "midr", NULL);
>>> +        object_property_add_alias(obj, "reset-cbar", OBJECT(&s->cpu[i]),
>>> +                                  "reset-cbar", NULL);
>>> +        /* This fails to pass through thte reset-cbar property
>>> +         * The qdev_alias_all_properties() also fails with multiple CPUs
>>> +         * Hence the code above is used instead
>>> +         * qdev_alias_all_properties(DEVICE(&s->cpu[i]), obj);
>>> +         */
>>> +    }
>>> +}
>>> +
>>>  static void a9mp_priv_initfn(Object *obj)
>>>  {
>>>      A9MPPrivState *s = A9MPCORE_PRIV(obj);
>>>
>>> +    /* Set up the CPU to be initiated */
>>> +    object_property_add(obj, "num-cpu", "int",
>>> +                        NULL, a9mpcore_init_cpus,
>>> +                        NULL, NULL, NULL);
>>> +    /* Use this as the default */
>>> +    s->cpu = NULL;
>>> +    s->num_cpu = 1;
>>> +
>>>      memory_region_init(&s->container, obj, "a9mp-priv-container", 0x2000);
>>>      sysbus_init_mmio(SYS_BUS_DEVICE(obj), &s->container);
>>>
>>> @@ -50,6 +94,17 @@ static void a9mp_priv_realize(DeviceState *dev, Error **errp)
>>>      Error *err = NULL;
>>>      int i;
>>>
>>> +    if (s->cpu) {
>>> +        for (i = 0; i < s->num_cpu; i++) {
>>> +            object_property_set_bool(OBJECT(&s->cpu[i]), true,
>>> +                                     "realized", &err);
>>> +            if (err) {
>>> +                error_propagate(errp, err);
>>> +                return;
>>> +            }
>>> +        }
>>> +    }
>>> +
>>>      scudev = DEVICE(&s->scu);
>>>      qdev_prop_set_uint32(scudev, "num-cpu", s->num_cpu);
>>>      object_property_set_bool(OBJECT(&s->scu), true, "realized", &err);
>>> @@ -75,6 +130,12 @@ static void a9mp_priv_realize(DeviceState *dev, Error **errp)
>>>      /* Pass through inbound GPIO lines to the GIC */
>>>      qdev_init_gpio_in(dev, a9mp_priv_set_irq, s->num_irq - 32);
>>>
>>> +    /* Connect the GIC to the first CPU */
>>> +    if (s->cpu) {
>>> +        sysbus_connect_irq(SYS_BUS_DEVICE(dev), 0,
>>> +                           qdev_get_gpio_in(DEVICE(s->cpu), ARM_CPU_IRQ));
>>> +    }
>>> +
>>>      gtimerdev = DEVICE(&s->gtimer);
>>>      qdev_prop_set_uint32(gtimerdev, "num-cpu", s->num_cpu);
>>>      object_property_set_bool(OBJECT(&s->gtimer), true, "realized", &err);
>>> @@ -144,7 +205,6 @@ static void a9mp_priv_realize(DeviceState *dev, Error **errp)
>>>  }
>>>
>>>  static Property a9mp_priv_properties[] = {
>>> -    DEFINE_PROP_UINT32("num-cpu", A9MPPrivState, num_cpu, 1),
>>>      /* The Cortex-A9MP may have anything from 0 to 224 external interrupt
>>>       * IRQ lines (with another 32 internal). We default to 64+32, which
>>>       * is the number provided by the Cortex-A9MP test chip in the
>>> diff --git a/include/hw/cpu/a9mpcore.h b/include/hw/cpu/a9mpcore.h
>>> index 5d67ca2..2e57116 100644
>>> --- a/include/hw/cpu/a9mpcore.h
>>> +++ b/include/hw/cpu/a9mpcore.h
>>> @@ -15,6 +15,7 @@
>>>  #include "hw/misc/a9scu.h"
>>>  #include "hw/timer/arm_mptimer.h"
>>>  #include "hw/timer/a9gtimer.h"
>>> +#include "qapi/visitor.h"
>>>
>>>  #define TYPE_A9MPCORE_PRIV "a9mpcore_priv"
>>>  #define A9MPCORE_PRIV(obj) \
>>> @@ -29,6 +30,8 @@ typedef struct A9MPPrivState {
>>>      MemoryRegion container;
>>>      uint32_t num_irq;
>>>
>>> +    ARMCPU *cpu;
>>> +
>>>      A9SCUState scu;
>>>      GICState gic;
>>>      A9GTimerState gtimer;
>>> --
>>> 1.7.1
>>>

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [Qemu-devel] [RFC v2 1/2] arm: Add the cortex-a9 CPU to the a9mpcore device
  2014-06-26  5:09     ` Alistair Francis
@ 2014-06-26 14:58       ` Peter Maydell
  2014-12-16  1:54         ` Alistair Francis
  0 siblings, 1 reply; 7+ messages in thread
From: Peter Maydell @ 2014-06-26 14:58 UTC (permalink / raw)
  To: Alistair Francis
  Cc: Peter Crosthwaite, qemu-devel@nongnu.org Developers,
	Stefan Hajnoczi, Andreas Färber

On 26 June 2014 06:09, Alistair Francis <alistair.francis@xilinx.com> wrote:
> Ping^2

Hi. This is still on my must-review queue but I think it is
too late for 2.1.

Thanks
-- PMM

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [Qemu-devel] [RFC v2 1/2] arm: Add the cortex-a9 CPU to the a9mpcore device
  2014-06-26 14:58       ` Peter Maydell
@ 2014-12-16  1:54         ` Alistair Francis
  0 siblings, 0 replies; 7+ messages in thread
From: Alistair Francis @ 2014-12-16  1:54 UTC (permalink / raw)
  To: Peter Maydell
  Cc: Peter Crosthwaite, Andreas Färber,
	qemu-devel@nongnu.org Developers, Stefan Hajnoczi,
	Alistair Francis

It's been a while, but ping^3

As it's only an RFC I haven't bothered re-basing it, I can if anyone
wants it rebased.

Thanks,

Alistair

On Fri, Jun 27, 2014 at 12:58 AM, Peter Maydell
<peter.maydell@linaro.org> wrote:
> On 26 June 2014 06:09, Alistair Francis <alistair.francis@xilinx.com> wrote:
>> Ping^2
>
> Hi. This is still on my must-review queue but I think it is
> too late for 2.1.
>
> Thanks
> -- PMM
>

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2014-12-16  1:55 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-06-17  4:18 [Qemu-devel] [RFC v2 1/2] arm: Add the cortex-a9 CPU to the a9mpcore device Alistair Francis
2014-06-17  4:18 ` [Qemu-devel] [RFC v2 2/2] zynq: Update Zynq to init the CPU in " Alistair Francis
2014-06-17  5:57 ` [Qemu-devel] [RFC v2 1/2] arm: Add the cortex-a9 CPU to " Alistair Francis
2014-06-23  1:38   ` Alistair Francis
2014-06-26  5:09     ` Alistair Francis
2014-06-26 14:58       ` Peter Maydell
2014-12-16  1:54         ` Alistair Francis

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.