xen-devel.lists.xenproject.org archive mirror
 help / color / mirror / Atom feed
From: Julien Grall <julien.grall@arm.com>
To: Stefano Stabellini <sstabellini@kernel.org>
Cc: edgar.iglesias@xilinx.com,
	Stefano Stabellini <stefanos@xilinx.com>, nd <nd@arm.com>,
	Stefano Stabellini <stefano.stabellini@xilinx.com>,
	xen-devel@lists.xen.org
Subject: Re: [PATCH v3 5/6] xen/arm: zynqmp: implement zynqmp_eemi
Date: Tue, 16 Oct 2018 14:44:55 +0100	[thread overview]
Message-ID: <e755f5d7-a5b9-b91c-b6e9-2c40fd080935@arm.com> (raw)
In-Reply-To: <alpine.DEB.2.10.1810161446200.5150@sstabellini-ThinkPad-X260>

Hi,

On 10/16/2018 07:48 AM, Stefano Stabellini wrote:
> On Mon, 15 Oct 2018, Julien Grall wrote:
>> (Resending the e-mail using a different smtp)
>>
>> On 15/10/2018 08:32, Julien Grall wrote:
>>> Hi,
>>>
>>> On 10/10/2018 11:49 PM, Stefano Stabellini wrote:
>>>> On Tue, 28 Aug 2018, Julien Grall wrote:
>>>>> Hi Stefano,
>>>>>
>>>>> On 11/08/18 01:01, Stefano Stabellini wrote:
>>>>>> From: "Edgar E. Iglesias" <edgar.iglesias@xilinx.com>
>>>>>>
>>>>>> From: Edgar E. Iglesias <edgar.iglesias@xilinx.com>
>>>>>>
>>>>>> zynqmp_eemi uses the defined functions and structs to decide whether
>>>>>> to
>>>>>> make a call to the firmware, or to simply return a predefined value.
>>>>>>
>>>>>> Signed-off-by: Edgar E. Iglesias <edgar.iglesias@xilinx.com>
>>>>>> Signed-off-by: Stefano Stabellini <stefanos@xilinx.com>
>>>>>> ---e
>>>>>>     xen/arch/arm/platforms/xilinx-zynqmp-eemi.c | 143
>>>>>> +++++++++++++++++++++++++++-
>>>>>>     1 file changed, 142 insertions(+), 1 deletion(-)
>>>>>>
>>>>>> diff --git a/xen/arch/arm/platforms/xilinx-zynqmp-eemi.c
>>>>>> b/xen/arch/arm/platforms/xilinx-zynqmp-eemi.c
>>>>>> index 62cc15c..1dbdf04 100644
>>>>>> --- a/xen/arch/arm/platforms/xilinx-zynqmp-eemi.c
>>>>>> +++ b/xen/arch/arm/platforms/xilinx-zynqmp-eemi.c
>>>>>> @@ -808,7 +808,148 @@ static bool domain_has_mmio_access(struct domain
>>>>>> *d,
>>>>>>       bool zynqmp_eemi(struct cpu_user_regs *regs)
>>>>>>     {
>>>>>> -    return false;
>>>>>> +    struct arm_smccc_res res;
>>>>>> +    bool is_mmio_write = false;
>>>>>> +    uint32_t fid = get_user_reg(regs, 0);
>>>>>> +    uint32_t nodeid = get_user_reg(regs, 1);
>>>>>> +    unsigned int pm_fn = fid & 0xFFFF;
>>>>>
>>>>> Here you will receive all the function ID for the SIP subsystem. Can you
>>>>> confirm the EEMI can be accessed from both SMC32 and SMC64 convention?
>>>>
>>>> Yep
>>>
>>> Can you point me to the documentation? For instance, CALL_COUNT, UID and
>>> VERSION are only accessible via SMC32.
> 
> https://www.xilinx.com/support/documentation/user_guides/ug1200-eemi-api.pdf
> 
> I am checking if there is a newer version of it.

I am afraid I can't find the function ID in that documentation nor any 
mention of the SMC calling convention. I am surprised that EEMI would 
ignore tops bits of the ID given they convey different information (e.g 
fast/yielding call, 32/64-bit convention).

Looking at the branch you mentioned earlier on, zynqmp_pm_invoke_fn 
(drivers/firmware/xilinx/zynqmp.c) is definitely using the SMC64 calling 
convention as described in the documentation above the function.

Cheers,

-- 
Julien Grall

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

  reply	other threads:[~2018-10-16 13:44 UTC|newest]

Thread overview: 29+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-08-11  0:01 [PATCH v3 0/6] zynqmp: Add forwarding of platform specific firmware calls Stefano Stabellini
2018-08-11  0:01 ` [PATCH v3 1/6] xen/arm: introduce platform_smc Stefano Stabellini
2018-08-23 15:37   ` Julien Grall
2018-08-23 23:40     ` Stefano Stabellini
2018-08-11  0:01 ` [PATCH v3 2/6] xen/arm: zynqmp: Forward plaform specific firmware calls Stefano Stabellini
2018-08-23 15:41   ` Julien Grall
2018-08-23 23:56     ` Stefano Stabellini
2018-08-24  9:01       ` Julien Grall
2018-10-10 21:50         ` Stefano Stabellini
2018-08-11  0:01 ` [PATCH v3 3/6] xen/arm: zynqmp: introduce zynqmp specific defines Stefano Stabellini
2018-08-11  0:01 ` [PATCH v3 4/6] xen/arm: zynqmp: eemi access control Stefano Stabellini
2018-08-28 16:05   ` Julien Grall
2018-10-10 22:35     ` Stefano Stabellini
2018-10-15  7:25       ` Julien Grall
2018-10-15 13:00         ` Julien Grall
2018-10-16  2:39           ` Stefano Stabellini
2018-10-16 13:23             ` Julien Grall
2018-10-17 13:58               ` Stefano Stabellini
2018-10-16 13:29             ` Julien Grall
2018-10-17 14:03               ` Stefano Stabellini
2018-10-17 14:26                 ` Julien Grall
2018-08-11  0:01 ` [PATCH v3 5/6] xen/arm: zynqmp: implement zynqmp_eemi Stefano Stabellini
2018-08-28 16:29   ` Julien Grall
2018-10-10 22:49     ` Stefano Stabellini
2018-10-15  7:32       ` Julien Grall
2018-10-15 13:01         ` Julien Grall
2018-10-16  6:48           ` Stefano Stabellini
2018-10-16 13:44             ` Julien Grall [this message]
2018-08-11  0:01 ` [PATCH v3 6/6] xen/arm: zynqmp: Remove blacklist of ZynqMP's PM node Stefano Stabellini

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=e755f5d7-a5b9-b91c-b6e9-2c40fd080935@arm.com \
    --to=julien.grall@arm.com \
    --cc=edgar.iglesias@xilinx.com \
    --cc=nd@arm.com \
    --cc=sstabellini@kernel.org \
    --cc=stefano.stabellini@xilinx.com \
    --cc=stefanos@xilinx.com \
    --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 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).