/* SPDX-License-Identifier: GPL-2.0-only */1/*2* Copied from omap44xx-smc.S Copyright (C) 2010 Texas Instruments, Inc.3* Copyright 2012 Calxeda, Inc.4*/56#include <linux/linkage.h>78/*9* This is common routine to manage secure monitor API10* used to modify the PL310 secure registers.11* 'r0' contains the value to be modified and 'r12' contains12* the monitor API number.13* Function signature : void highbank_smc1(u32 fn, u32 arg)14*/15.arch armv7-a16.arch_extension sec17ENTRY(highbank_smc1)18stmfd sp!, {r4-r11, lr}19mov r12, r020mov r0, r121dsb22smc #023ldmfd sp!, {r4-r11, pc}24ENDPROC(highbank_smc1)252627