diff mbox series

[06/11] armv7m: Make NVIC expose a memory region rather than mapping itself

Message ID 1487604965-23220-7-git-send-email-peter.maydell@linaro.org
State Superseded
Headers show
Series ARMv7M: QOMify | expand

Commit Message

Peter Maydell Feb. 20, 2017, 3:36 p.m. UTC
Make the NVIC device expose a memory region for its users
to map, rather than mapping itself into the system memory
space on realize, and get the one user (the ARMv7M object)
to do this.

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>

---
 hw/arm/armv7m.c       | 7 ++++++-
 hw/intc/armv7m_nvic.c | 7 ++-----
 2 files changed, 8 insertions(+), 6 deletions(-)

-- 
2.7.4

Comments

Alex Bennée Feb. 28, 2017, 2:04 p.m. UTC | #1
Peter Maydell <peter.maydell@linaro.org> writes:

> Make the NVIC device expose a memory region for its users

> to map, rather than mapping itself into the system memory

> space on realize, and get the one user (the ARMv7M object)

> to do this.

>

> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>


Reviewed-by: Alex Bennée <alex.bennee@linaro.org>


> ---

>  hw/arm/armv7m.c       | 7 ++++++-

>  hw/intc/armv7m_nvic.c | 7 ++-----

>  2 files changed, 8 insertions(+), 6 deletions(-)

>

> diff --git a/hw/arm/armv7m.c b/hw/arm/armv7m.c

> index 638c597..fb21f74 100644

> --- a/hw/arm/armv7m.c

> +++ b/hw/arm/armv7m.c

> @@ -172,6 +172,7 @@ static void armv7m_realize(DeviceState *dev, Error **errp)

>  {

>      /* here realize our children */

>      ARMv7MState *s = ARMV7M(dev);

> +    SysBusDevice *sbd;

>      Error *err = NULL;

>      int i;

>      char **cpustr;

> @@ -233,10 +234,14 @@ static void armv7m_realize(DeviceState *dev, Error **errp)

>      qdev_pass_gpios(DEVICE(&s->nvic), dev, "SYSRESETREQ");

>

>      /* Wire the NVIC up to the CPU */

> -    sysbus_connect_irq(SYS_BUS_DEVICE(&s->nvic), 0,

> +    sbd = SYS_BUS_DEVICE(&s->nvic);

> +    sysbus_connect_irq(sbd, 0,

>                         qdev_get_gpio_in(DEVICE(s->cpu), ARM_CPU_IRQ));

>      s->cpu->env.nvic = &s->nvic;

>

> +    memory_region_add_subregion(&s->container, 0xe000e000,

> +                                sysbus_mmio_get_region(sbd, 0));

> +

>      for (i = 0; i < ARRAY_SIZE(s->bitband); i++) {

>          Object *obj = OBJECT(&s->bitband[i]);

>          SysBusDevice *sbd = SYS_BUS_DEVICE(&s->bitband[i]);

> diff --git a/hw/intc/armv7m_nvic.c b/hw/intc/armv7m_nvic.c

> index f2ada39..c814e16 100644

> --- a/hw/intc/armv7m_nvic.c

> +++ b/hw/intc/armv7m_nvic.c

> @@ -19,7 +19,6 @@

>  #include "hw/arm/arm.h"

>  #include "hw/arm/armv7m_nvic.h"

>  #include "target/arm/cpu.h"

> -#include "exec/address-spaces.h"

>  #include "qemu/log.h"

>  #include "trace.h"

>

> @@ -1043,10 +1042,8 @@ static void armv7m_nvic_realize(DeviceState *dev, Error **errp)

>                            "nvic_sysregs", 0x1000);

>      memory_region_add_subregion(&s->container, 0, &s->sysregmem);

>

> -    /* Map the whole thing into system memory at the location required

> -     * by the v7M architecture.

> -     */

> -    memory_region_add_subregion(get_system_memory(), 0xe000e000, &s->container);

> +    sysbus_init_mmio(SYS_BUS_DEVICE(dev), &s->container);

> +

>      s->systick.timer = timer_new_ns(QEMU_CLOCK_VIRTUAL, systick_timer_tick, s);

>  }



--
Alex Bennée
Philippe Mathieu-Daudé April 17, 2017, 3:26 a.m. UTC | #2
On 02/20/2017 12:36 PM, Peter Maydell wrote:
> Make the NVIC device expose a memory region for its users

> to map, rather than mapping itself into the system memory

> space on realize, and get the one user (the ARMv7M object)

> to do this.

>

> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>


Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>


> ---

>  hw/arm/armv7m.c       | 7 ++++++-

>  hw/intc/armv7m_nvic.c | 7 ++-----

>  2 files changed, 8 insertions(+), 6 deletions(-)

>

> diff --git a/hw/arm/armv7m.c b/hw/arm/armv7m.c

> index 638c597..fb21f74 100644

> --- a/hw/arm/armv7m.c

> +++ b/hw/arm/armv7m.c

> @@ -172,6 +172,7 @@ static void armv7m_realize(DeviceState *dev, Error **errp)

>  {

>      /* here realize our children */

>      ARMv7MState *s = ARMV7M(dev);

> +    SysBusDevice *sbd;

>      Error *err = NULL;

>      int i;

>      char **cpustr;

> @@ -233,10 +234,14 @@ static void armv7m_realize(DeviceState *dev, Error **errp)

>      qdev_pass_gpios(DEVICE(&s->nvic), dev, "SYSRESETREQ");

>

>      /* Wire the NVIC up to the CPU */

> -    sysbus_connect_irq(SYS_BUS_DEVICE(&s->nvic), 0,

> +    sbd = SYS_BUS_DEVICE(&s->nvic);

> +    sysbus_connect_irq(sbd, 0,

>                         qdev_get_gpio_in(DEVICE(s->cpu), ARM_CPU_IRQ));

>      s->cpu->env.nvic = &s->nvic;

>

> +    memory_region_add_subregion(&s->container, 0xe000e000,

> +                                sysbus_mmio_get_region(sbd, 0));

> +

>      for (i = 0; i < ARRAY_SIZE(s->bitband); i++) {

>          Object *obj = OBJECT(&s->bitband[i]);

>          SysBusDevice *sbd = SYS_BUS_DEVICE(&s->bitband[i]);

> diff --git a/hw/intc/armv7m_nvic.c b/hw/intc/armv7m_nvic.c

> index f2ada39..c814e16 100644

> --- a/hw/intc/armv7m_nvic.c

> +++ b/hw/intc/armv7m_nvic.c

> @@ -19,7 +19,6 @@

>  #include "hw/arm/arm.h"

>  #include "hw/arm/armv7m_nvic.h"

>  #include "target/arm/cpu.h"

> -#include "exec/address-spaces.h"

>  #include "qemu/log.h"

>  #include "trace.h"

>

> @@ -1043,10 +1042,8 @@ static void armv7m_nvic_realize(DeviceState *dev, Error **errp)

>                            "nvic_sysregs", 0x1000);

>      memory_region_add_subregion(&s->container, 0, &s->sysregmem);

>

> -    /* Map the whole thing into system memory at the location required

> -     * by the v7M architecture.

> -     */

> -    memory_region_add_subregion(get_system_memory(), 0xe000e000, &s->container);

> +    sysbus_init_mmio(SYS_BUS_DEVICE(dev), &s->container);

> +

>      s->systick.timer = timer_new_ns(QEMU_CLOCK_VIRTUAL, systick_timer_tick, s);

>  }

>

>
diff mbox series

Patch

diff --git a/hw/arm/armv7m.c b/hw/arm/armv7m.c
index 638c597..fb21f74 100644
--- a/hw/arm/armv7m.c
+++ b/hw/arm/armv7m.c
@@ -172,6 +172,7 @@  static void armv7m_realize(DeviceState *dev, Error **errp)
 {
     /* here realize our children */
     ARMv7MState *s = ARMV7M(dev);
+    SysBusDevice *sbd;
     Error *err = NULL;
     int i;
     char **cpustr;
@@ -233,10 +234,14 @@  static void armv7m_realize(DeviceState *dev, Error **errp)
     qdev_pass_gpios(DEVICE(&s->nvic), dev, "SYSRESETREQ");
 
     /* Wire the NVIC up to the CPU */
-    sysbus_connect_irq(SYS_BUS_DEVICE(&s->nvic), 0,
+    sbd = SYS_BUS_DEVICE(&s->nvic);
+    sysbus_connect_irq(sbd, 0,
                        qdev_get_gpio_in(DEVICE(s->cpu), ARM_CPU_IRQ));
     s->cpu->env.nvic = &s->nvic;
 
+    memory_region_add_subregion(&s->container, 0xe000e000,
+                                sysbus_mmio_get_region(sbd, 0));
+
     for (i = 0; i < ARRAY_SIZE(s->bitband); i++) {
         Object *obj = OBJECT(&s->bitband[i]);
         SysBusDevice *sbd = SYS_BUS_DEVICE(&s->bitband[i]);
diff --git a/hw/intc/armv7m_nvic.c b/hw/intc/armv7m_nvic.c
index f2ada39..c814e16 100644
--- a/hw/intc/armv7m_nvic.c
+++ b/hw/intc/armv7m_nvic.c
@@ -19,7 +19,6 @@ 
 #include "hw/arm/arm.h"
 #include "hw/arm/armv7m_nvic.h"
 #include "target/arm/cpu.h"
-#include "exec/address-spaces.h"
 #include "qemu/log.h"
 #include "trace.h"
 
@@ -1043,10 +1042,8 @@  static void armv7m_nvic_realize(DeviceState *dev, Error **errp)
                           "nvic_sysregs", 0x1000);
     memory_region_add_subregion(&s->container, 0, &s->sysregmem);
 
-    /* Map the whole thing into system memory at the location required
-     * by the v7M architecture.
-     */
-    memory_region_add_subregion(get_system_memory(), 0xe000e000, &s->container);
+    sysbus_init_mmio(SYS_BUS_DEVICE(dev), &s->container);
+
     s->systick.timer = timer_new_ns(QEMU_CLOCK_VIRTUAL, systick_timer_tick, s);
 }