qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Jean-Christophe DUBOIS <jcd@tribudubois.net>
To: Peter Maydell <peter.maydell@linaro.org>,
	Peter Crosthwaite <crosthwaite.peter@gmail.com>
Cc: QEMU Developers <qemu-devel@nongnu.org>
Subject: Re: [Qemu-devel] [PATCH v2 6/9] i.MX: Add i.MX6 System Reset Controller device.
Date: Sat, 27 Feb 2016 17:57:10 +0100	[thread overview]
Message-ID: <56D1D566.1010400@tribudubois.net> (raw)
In-Reply-To: <CAFEAcA_V_XgAbWKcTKTt0ve_2ZgWpRtSyTSUgq-V_dRAKdCFeA@mail.gmail.com>

Hi Peter and Peter,

I need to test that the changes I did for PSCI (factor out on/off code) 
do not introduce any regression.

On which QEMU target should I test my changes to PSCI to check I didn't 
mess up anything?

Thanks

JC

Le 16/02/2016 16:35, Peter Maydell a écrit :
> On 8 February 2016 at 22:08, Jean-Christophe Dubois <jcd@tribudubois.net> wrote:
>> This controller is also present in i.MX5X devices but they are not
>> yet emulated by QEMU.
>>
>> Signed-off-by: Jean-Christophe Dubois <jcd@tribudubois.net>
>> @@ -0,0 +1,353 @@
>> +/*
>> + * IMX6 System Reset Controller
>> + *
>> + * Copyright (c) 2015 Jean-Christophe Dubois <jcd@tribudubois.net>
>> + *
>> + * This work is licensed under the terms of the GNU GPL, version 2 or later.
>> + * See the COPYING file in the top-level directory.
>> + *
>> + */
>> +
>> +#include "hw/misc/imx6_src.h"
>> +#include "sysemu/sysemu.h"
>> +#include "qemu/bitops.h"
> #include "qemu/osdep.h" as first #include line.
>
>> +static void imx6_src_reset(DeviceState *dev)
>> +{
>> +    IMX6SRCState *s = IMX6_SRC(dev);
>> +
>> +    DPRINTF("\n");
>> +
>> +    /*
>> +     * We only clear the first registers as all GPR registers are preserved
>> +     * over resets
>> +     */
>> +    memset(s->regs, 0, SRC_MAX * sizeof(uint32_t));
> Comment doesn't seem to match code?
>
>> +    /* Set reset values */
>> +    s->regs[SRC_SCR] = 0x521;
>> +    s->regs[SRC_SRSR] = 0x1;
>> +    s->regs[SRC_SIMR] = 0x1F;
>> +}
>> +
>> +static CPUState *imx6_src_get_cpu_by_id(uint32_t id)
>> +{
>> +    CPUState *cpu;
>> +
>> +    DPRINTF("cpu %d\n", id);
>> +
>> +    CPU_FOREACH(cpu) {
>> +        ARMCPU *armcpu = ARM_CPU(cpu);
>> +
>> +        if (armcpu->mp_affinity == id) {
>> +            return cpu;
>> +        }
>> +    }
>> +
>> +    qemu_log_mask(LOG_GUEST_ERROR, "[%s]%s: Resquesting unknown CPU %d\n",
>> +                  TYPE_IMX6_SRC, __func__, id);
>> +
>> +    return NULL;
>> +}
>> +
>> +static void imx6_src_cpu_on(uint32_t cpuid, uint32_t entry, uint32_t context_id)
>> +{
>> +    CPUState *target_cpu_state;
>> +    ARMCPU *target_cpu;
>> +    CPUClass *target_cpu_class;
>> +
>> +    DPRINTF("cpu %d @ 0x%08x with R0 = 0x%08x\n", cpuid, entry, context_id);
>> +
>> +    /* change to the cpu we are powering up */
>> +    target_cpu_state = imx6_src_get_cpu_by_id(cpuid);
>> +    if (!target_cpu_state) {
>> +        return;
>> +    }
>> +    target_cpu = ARM_CPU(target_cpu_state);
>> +    if (!target_cpu->powered_off) {
>> +        qemu_log_mask(LOG_GUEST_ERROR, "[%s]%s: CPU %d is already running\n",
>> +                      TYPE_IMX6_SRC, __func__, cpuid);
>> +        return;
>> +    }
>> +    target_cpu_class = CPU_GET_CLASS(target_cpu);
>> +
>> +    /* Initialize the cpu we are turning on */
>> +    cpu_reset(target_cpu_state);
>> +    target_cpu->powered_off = false;
>> +    target_cpu_state->halted = 0;
>> +
>> +    target_cpu->env.regs[0] = context_id;
>> +    target_cpu->env.thumb = entry & 1;
>> +
>> +    target_cpu_class->set_pc(target_cpu_state, entry);
>> +}
>> +
>> +static void imx6_src_cpu_off(uint32_t cpuid)
>> +{
>> +    CPUState *target_cpu_state;
>> +    ARMCPU *target_cpu;
>> +
>> +    DPRINTF("cpu %d\n", cpuid);
>> +
>> +    /* change to the cpu we are powering up */
>> +    target_cpu_state = imx6_src_get_cpu_by_id(cpuid);
>> +    if (!target_cpu_state) {
>> +        return;
>> +    }
>> +    target_cpu = ARM_CPU(target_cpu_state);
>> +    if (target_cpu->powered_off) {
>> +        qemu_log_mask(LOG_GUEST_ERROR, "[%s]%s: CPU %d is already off\n",
>> +                      TYPE_IMX6_SRC, __func__, cpuid);
>> +        return;
>> +    }
>> +
>> +    target_cpu->powered_off = true;
>> +    target_cpu_state->halted = 1;
>> +    target_cpu_state->exception_index = EXCP_HLT;
>> +    cpu_loop_exit(target_cpu_state);
>> +}
>>
>> +static void imx6_src_cpu_reset(uint32_t cpuid)
>> +{
>> +    CPUState *target_cpu_state;
>> +    ARMCPU *target_cpu;
>> +
>> +    DPRINTF("cpu %d\n", cpuid);
>> +
>> +    /* change to the cpu we are powering up */
>> +    target_cpu_state = imx6_src_get_cpu_by_id(cpuid);
>> +    if (!target_cpu_state) {
>> +        return;
>> +    }
>> +    target_cpu = ARM_CPU(target_cpu_state);
>> +    if (target_cpu->powered_off) {
>> +        qemu_log_mask(LOG_GUEST_ERROR, "[%s]%s: CPU %d is off\n",
>> +                      TYPE_IMX6_SRC, __func__, cpuid);
>> +        return;
>> +    }
>> +
>> +    /* Reset the cpu we are turning on */
>> +    cpu_reset(target_cpu_state);
>> +}
> The code that is messing about with target CPUs to power them up
> and down needs to be abstracted out into a public API in target-arm/,
> so it can be used both by your device and by target-arm/psci.c.
> I don't want variations on this code to duplicate into various
> devices, because chances are good it will need to change for
> multithreaded TCG.
>
>> +static void imx6_src_realize(DeviceState *dev, Error **errp)
>> +{
>> +    IMX6SRCState *s = IMX6_SRC(dev);
>> +
>> +    memory_region_init_io(&s->iomem, OBJECT(dev), &imx6_src_ops, s,
>> +                          TYPE_IMX6_SRC, 0x1000);
>> +    sysbus_init_mmio(SYS_BUS_DEVICE(dev), &s->iomem);
>> +}
>> +
>> +static void imx6_src_class_init(ObjectClass *klass, void *data)
>> +{
>> +    DeviceClass *dc = DEVICE_CLASS(klass);
>> +
>> +    dc->realize = imx6_src_realize;
>> +    dc->reset = imx6_src_reset;
>> +    dc->vmsd = &vmstate_imx6_src;
>> +    dc->desc = "i.MX6 System Reset Controller";
>> +}
>> +/* SRC_SCR */
>> +#define CORE3_ENABLE_SHIFT     (24)
>> +#define CORE3_ENABLE_LENGTH    (1)
>> +#define CORE2_ENABLE_SHIFT     (23)
>> +#define CORE2_ENABLE_LENGTH    (1)
>> +#define CORE1_ENABLE_SHIFT     (22)
>> +#define CORE1_ENABLE_LENGTH    (1)
>> +#define CORE3_RST_SHIFT        (16)
>> +#define CORE3_RST_LENGTH       (1)
>> +#define CORE2_RST_SHIFT        (15)
>> +#define CORE2_RST_LENGTH       (1)
>> +#define CORE1_RST_SHIFT        (14)
>> +#define CORE1_RST_LENGTH       (1)
>> +#define CORE0_RST_SHIFT        (13)
>> +#define CORE0_RST_LENGTH       (1)
>> +#define SW_IPU1_RST_SHIFT      (3)
>> +#define SW_IPU1_RST_LENGTH     (1)
>> +#define SW_IPU2_RST_SHIFT      (12)
>> +#define SW_IPU2_RST_LENGTH     (1)
>> +#define WARM_RST_ENABLE_SHIFT  (0)
>> +#define WARM_RST_ENABLE_LENGTH (1)
> The brackets here are unnecessary.
>
> thanks
> -- PMM
>

  reply	other threads:[~2016-02-27 16:57 UTC|newest]

Thread overview: 47+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-02-08 22:08 [Qemu-devel] [PATCH v2 0/9] Add i.MX6 (Single/Dual/Quad) support Jean-Christophe Dubois
2016-02-08 22:08 ` [Qemu-devel] [PATCH v2 1/9] i.MX: Allow GPT timer to rollover Jean-Christophe Dubois
2016-02-16 15:19   ` Peter Maydell
2016-02-08 22:08 ` [Qemu-devel] [PATCH v2 2/9] i.MX: Rename CCM NOCLK to CLK_NONE for naming consistency Jean-Christophe Dubois
2016-02-16 15:20   ` Peter Maydell
2016-02-08 22:08 ` [Qemu-devel] [PATCH v2 3/9] i.MX: Remove CCM useless clock computation handling Jean-Christophe Dubois
2016-02-16 15:20   ` Peter Maydell
2016-02-08 22:08 ` [Qemu-devel] [PATCH v2 4/9] i.MX: Add the CLK_IPG_HIGH clock Jean-Christophe Dubois
2016-02-16 15:20   ` Peter Maydell
2016-02-08 22:08 ` [Qemu-devel] [PATCH v2 5/9] i.MX: Add i.MX6 CCM and ANALOG device Jean-Christophe Dubois
2016-02-16 15:21   ` Peter Maydell
2016-02-29 17:33   ` Peter Maydell
2016-02-29 20:15     ` Jean-Christophe DUBOIS
2016-02-08 22:08 ` [Qemu-devel] [PATCH v2 6/9] i.MX: Add i.MX6 System Reset Controller device Jean-Christophe Dubois
2016-02-16 15:35   ` Peter Maydell
2016-02-27 16:57     ` Jean-Christophe DUBOIS [this message]
2016-02-27 17:43       ` Peter Maydell
2016-02-28 12:00         ` Jean-Christophe DUBOIS
2016-02-08 22:08 ` [Qemu-devel] [PATCH v2 7/9] i.MX: Add i.MX6 SOC implementation Jean-Christophe Dubois
2016-02-16 15:31   ` Peter Maydell
2016-02-16 20:49     ` Jean-Christophe DUBOIS
2016-02-16 21:06       ` Peter Maydell
2016-02-16 21:47         ` Jean-Christophe DUBOIS
2016-02-16 21:57           ` Peter Maydell
2016-02-18 20:51             ` Jean-Christophe DUBOIS
2016-02-18 21:46               ` Peter Maydell
2016-02-19  6:32                 ` Jean-Christophe DUBOIS
2016-02-19  9:32                   ` Peter Maydell
2016-02-19 21:06                     ` Jean-Christophe DUBOIS
2016-02-20 10:55                       ` Jean-Christophe DUBOIS
2016-02-20 15:30                         ` Peter Crosthwaite
2016-02-20 18:03                           ` Jean-Christophe DUBOIS
2016-02-21  3:42                             ` Peter Crosthwaite
2016-02-21 13:42                               ` Jean-Christophe DUBOIS
2016-02-29 17:58                   ` Peter Maydell
2016-02-29 20:34                     ` Jean-Christophe DUBOIS
2016-02-29 21:14                       ` Peter Maydell
2016-02-29 21:32                         ` Jean-Christophe DUBOIS
2016-03-01 16:19                           ` Peter Maydell
2016-03-01 19:17                             ` Jean-Christophe DUBOIS
2016-02-08 22:08 ` [Qemu-devel] [PATCH v2 8/9] i.MX: Add sabrelite i.MX6 emulation Jean-Christophe Dubois
2016-02-16 15:25   ` Peter Maydell
2016-02-08 22:08 ` [Qemu-devel] [PATCH v2 9/9] i.MX: Add missing descriptions in devices Jean-Christophe Dubois
2016-02-16 15:21   ` Peter Maydell
2016-02-28 20:27 ` [Qemu-devel] [PATCH v2 0/9] Add i.MX6 (Single/Dual/Quad) support Jean-Christophe DUBOIS
2016-03-01 19:18   ` Jean-Christophe DUBOIS
2016-03-01 19:27     ` Peter Maydell

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=56D1D566.1010400@tribudubois.net \
    --to=jcd@tribudubois.net \
    --cc=crosthwaite.peter@gmail.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).