All of lore.kernel.org
 help / color / mirror / Atom feed
From: Rajesh Bhagat <rajesh.bhagat@nxp.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH v2 17/33] armv8: sec_firmware: change el2_to_aarch32 SMC ID
Date: Sun,  7 Oct 2018 15:29:13 +0530	[thread overview]
Message-ID: <20181007095929.17876-18-rajesh.bhagat@nxp.com> (raw)
In-Reply-To: <20181007095929.17876-1-rajesh.bhagat@nxp.com>

Changes the el2_to_aarch32 SMC ID from 0xc000ff04 to 0xc200ff17,
it is applicable to both TFA and non-TFA boot.

Signed-off-by: Rajesh Bhagat <rajesh.bhagat@nxp.com>
---
Change in v2: None

 arch/arm/cpu/armv8/sec_firmware_asm.S | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/cpu/armv8/sec_firmware_asm.S b/arch/arm/cpu/armv8/sec_firmware_asm.S
index 1c0f963e18..af1b2da072 100644
--- a/arch/arm/cpu/armv8/sec_firmware_asm.S
+++ b/arch/arm/cpu/armv8/sec_firmware_asm.S
@@ -68,7 +68,7 @@ ENTRY(armv8_el2_to_aarch32)
 	mov	x3, x2
 	mov	x2, x1
 	mov	x1, x4
-	ldr	x0, =0xc000ff04
+	ldr	x0, =0xc200ff17
 	smc	#0
 	ret
 ENDPROC(armv8_el2_to_aarch32)
-- 
2.17.1

  parent reply	other threads:[~2018-10-07  9:59 UTC|newest]

Thread overview: 31+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-10-07  9:58 [U-Boot] [PATCH v2 00/33] TF-A Boot support for NXP Chassis 2 platforms Rajesh Bhagat
2018-10-07  9:58 ` [U-Boot] [PATCH v2 01/33] move data structure out of cpu.h Rajesh Bhagat
2018-10-07  9:58 ` [U-Boot] [PATCH v2 02/33] env: allow flash and nand env driver to compile together Rajesh Bhagat
2018-10-07  9:58 ` [U-Boot] [PATCH v2 03/33] env: sf: define API to override sf environment address Rajesh Bhagat
2018-10-07  9:59 ` [U-Boot] [PATCH v2 04/33] env: nand: remove unnecessary env_ptr definition Rajesh Bhagat
2018-10-07  9:59 ` [U-Boot] [PATCH v2 05/33] driver/ifc: replace __ilog2 with LOG2 macro Rajesh Bhagat
2018-10-07  9:59 ` [U-Boot] [PATCH v2 06/33] armv8: layerscape: Enable routing SError exception Rajesh Bhagat
2018-10-07  9:59 ` [U-Boot] [PATCH v2 07/33] armv8: fsl-layerscape: change tlb base from OCRAM to DDR in EL < 3 Rajesh Bhagat
2018-10-07  9:59 ` [U-Boot] [PATCH v2 08/33] drivers: ifc: dynamic chipselect mapping support Rajesh Bhagat
2018-10-07  9:59 ` [U-Boot] [PATCH v2 09/33] armv8: fsl-layerscape: identify boot source from PORSR register Rajesh Bhagat
2018-10-07  9:59 ` [U-Boot] [PATCH v2 10/33] armv8: layerscape: remove EL3 specific erratas for TFABOOT Rajesh Bhagat
2018-10-07  9:59 ` [U-Boot] [PATCH v2 11/33] armv8: fsl-layerscape: bootcmd identification " Rajesh Bhagat
2018-10-07  9:59 ` [U-Boot] [PATCH v2 12/33] armv8: layerscape: secure boot support for environment selection Rajesh Bhagat
2018-10-07  9:59 ` [U-Boot] [PATCH v2 13/33] armv8: layerscape: add SMC calls for DDR size and bank info Rajesh Bhagat
2018-10-07  9:59 ` [U-Boot] [PATCH v2 14/33] armv8: layerscape: skip OCRAM init for TFABOOT Rajesh Bhagat
2018-10-07  9:59 ` [U-Boot] [PATCH v2 15/33] armv8: fsl-layerscape: Update parsing boot source Rajesh Bhagat
2018-10-07  9:59 ` [U-Boot] [PATCH v2 16/33] armv8: fsl-layerscape: add support of MC framework for TFA Rajesh Bhagat
2018-10-07  9:59 ` Rajesh Bhagat [this message]
2018-10-07  9:59 ` [U-Boot] [PATCH v2 18/33] armv8: sec_firmware: return job ring status as true in TFABOOT Rajesh Bhagat
2018-10-07  9:59 ` [U-Boot] [PATCH v2 19/33] net: fm: add TFABOOT support Rajesh Bhagat
2018-10-07  9:59 ` [U-Boot] [PATCH v2 20/33] drivers: qe: " Rajesh Bhagat
2018-10-07  9:59 ` [U-Boot] [PATCH v2 21/33] armv8: ls1046ardb: Add " Rajesh Bhagat
2018-10-07  9:59 ` [U-Boot] [PATCH v2 22/33] armv8: ls1046ardb: Add TFABOOT defconfig for secure boot Rajesh Bhagat
2018-10-07  9:59 ` [U-Boot] [PATCH v2 23/33] armv8: ls1046aqds: Add TFABOOT support Rajesh Bhagat
2018-10-07  9:59 ` [U-Boot] [PATCH v2 24/33] armv8: ls1046aqds: Add TFABOOT defconfig for secure boot Rajesh Bhagat
2018-10-07  9:59 ` [U-Boot] [PATCH v2 25/33] armv8: ls1043ardb: Add TFABOOT support Rajesh Bhagat
2018-10-07  9:59 ` [U-Boot] [PATCH v2 26/33] armv8: ls1043ardb: Add TFABOOT defconfig for secure boot Rajesh Bhagat
2018-10-07  9:59 ` [U-Boot] [PATCH v2 27/33] armv8: ls1043aqds: Add TFABOOT support Rajesh Bhagat
2018-10-07  9:59 ` [U-Boot] [PATCH v2 28/33] armv8: ls1043aqds: Add TFABOOT defconfig for secure boot Rajesh Bhagat
2018-10-07  9:59 ` [U-Boot] [PATCH v2 29/33] armv8: ls1012ardb: Add TFABOOT support Rajesh Bhagat
2018-10-07 10:20 [U-Boot] [PATCH v2 00/33] TF-A Boot support for NXP Chassis 2 platforms Rajesh Bhagat
2018-10-07 10:21 ` [U-Boot] [PATCH v2 17/33] armv8: sec_firmware: change el2_to_aarch32 SMC ID Rajesh Bhagat

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=20181007095929.17876-18-rajesh.bhagat@nxp.com \
    --to=rajesh.bhagat@nxp.com \
    --cc=u-boot@lists.denx.de \
    /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 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.