Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1472839 > unrolled thread
| Started by | Andy Gross <andy.gross@linaro.org> |
|---|---|
| First post | 2016-08-30 22:20 +0200 |
| Last post | 2016-08-31 16:40 +0200 |
| Articles | 2 — 2 participants |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
Re: [PATCH 1/2] arm64: kernel: Add SMC Session ID to results Andy Gross <andy.gross@linaro.org> - 2016-08-30 22:20 +0200
Re: [PATCH 1/2] arm64: kernel: Add SMC Session ID to results Will Deacon <will.deacon@arm.com> - 2016-08-31 16:40 +0200
| From | Andy Gross <andy.gross@linaro.org> |
|---|---|
| Date | 2016-08-30 22:20 +0200 |
| Subject | Re: [PATCH 1/2] arm64: kernel: Add SMC Session ID to results |
| Message-ID | <sbXFM-1b9-23@gated-at.bofh.it> |
On Tue, Aug 23, 2016 at 11:38:41AM +0100, Lorenzo Pieralisi wrote: > On Mon, Aug 22, 2016 at 05:38:31PM -0700, Stephen Boyd wrote: > > [...] > > > This all comes about because the firmware generates a session id > > for the SMC call and jams it in x6. The assembly on the > > non-secure side is written with a tight loop around the smc > > instruction so that when the return value indicates > > "interrupted", x6 is kept intact and the non-secure OS can jump > > back to the secure OS without register reloading. Perhaps > > referring to x6 as result value is not correct because it's > > really a session id that's irrelevant once the smc call > > completes. > > Sorry I missed this bit. The session id is _generated_ by secure > firmware (probably only when the value passed in x6 == 0 (?)) > and actually returned to the caller so that subsequent (interrupted) > calls can re-issue the same value, is that correct ? > > If that's the case the value in x6 is a result value from an SMCCC > perspective and your current FW is not SMCCC compliant. > So is Will's solution to this ok? If so I will respin with the minor change to get it working and resend. If not, do I roll my own smccc wrapper? Regards, Andy
[toc] | [next] | [standalone]
| From | Will Deacon <will.deacon@arm.com> |
|---|---|
| Date | 2016-08-31 16:40 +0200 |
| Message-ID | <sceQi-3B0-29@gated-at.bofh.it> |
| In reply to | #1472839 |
On Tue, Aug 30, 2016 at 03:16:42PM -0500, Andy Gross wrote:
> On Tue, Aug 23, 2016 at 11:38:41AM +0100, Lorenzo Pieralisi wrote:
> > On Mon, Aug 22, 2016 at 05:38:31PM -0700, Stephen Boyd wrote:
> >
> > [...]
> >
> > > This all comes about because the firmware generates a session id
> > > for the SMC call and jams it in x6. The assembly on the
> > > non-secure side is written with a tight loop around the smc
> > > instruction so that when the return value indicates
> > > "interrupted", x6 is kept intact and the non-secure OS can jump
> > > back to the secure OS without register reloading. Perhaps
> > > referring to x6 as result value is not correct because it's
> > > really a session id that's irrelevant once the smc call
> > > completes.
> >
> > Sorry I missed this bit. The session id is _generated_ by secure
> > firmware (probably only when the value passed in x6 == 0 (?))
> > and actually returned to the caller so that subsequent (interrupted)
> > calls can re-issue the same value, is that correct ?
> >
> > If that's the case the value in x6 is a result value from an SMCCC
> > perspective and your current FW is not SMCCC compliant.
> >
>
> So is Will's solution to this ok? If so I will respin with the minor change to
> get it working and resend. If not, do I roll my own smccc wrapper?
Obviously I'm biased, but I prefer to handle this as a quirk to make it
clear that it's a vendor-specific extension to the SMCCC, so if you
could post a patch based on the diff I sent, that would be great.
You'll also need to:
(1) Make sure you don't break 32-bit ARM
(2) Make sure that struct arm_smccc_res is always zero-initialised by
its other users (to ensure that QUIRK_NONE is set). In fact, it
might be nicer to pass the quirk structure as a separate argument,
rather than embed it in arm_smccc_res.
Will
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web