summaryrefslogtreecommitdiff
path: root/board/xilinx/zynqmp/zynqmp.c
diff options
context:
space:
mode:
authorAlexander Graf <agraf@suse.de>2016-08-16 19:08:46 (GMT)
committerAlexander Graf <agraf@suse.de>2016-10-18 07:08:08 (GMT)
commit51bfb5b6f522b1fbe453c18df03648d72b08131f (patch)
treec5be0a47dee5c0719f1370960f73614ce06802da /board/xilinx/zynqmp/zynqmp.c
parent80a4800ee1526a4a46cd02b3ea2fd37eebb77504 (diff)
downloadu-boot-51bfb5b6f522b1fbe453c18df03648d72b08131f.tar.xz
arm: Disable HVC PSCI calls by default
All systems that are running on armv8 are running bare metal with firmware that implements PSCI running in EL3. That means we don't really need to expose the hypercall variants of them. This patch leaves the code in, but makes the code explicit enough to have the compiler optimize it out. With this we don't need to worry about hvc vs smc calling convention when calling psci helper functions. Signed-off-by: Alexander Graf <agraf@suse.de> Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'board/xilinx/zynqmp/zynqmp.c')
-rw-r--r--board/xilinx/zynqmp/zynqmp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/board/xilinx/zynqmp/zynqmp.c b/board/xilinx/zynqmp/zynqmp.c
index 566b5e8..94132f8 100644
--- a/board/xilinx/zynqmp/zynqmp.c
+++ b/board/xilinx/zynqmp/zynqmp.c
@@ -430,5 +430,5 @@ int board_usb_cleanup(int index, enum usb_init_type init)
void reset_misc(void)
{
- psci_system_reset(true);
+ psci_system_reset();
}