/*1* smccc.h2*3* SMC/HVC interface in accordance with SMC Calling Convention.4*5* Permission is hereby granted, free of charge, to any person obtaining a copy6* of this software and associated documentation files (the "Software"), to7* deal in the Software without restriction, including without limitation the8* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or9* sell copies of the Software, and to permit persons to whom the Software is10* furnished to do so, subject to the following conditions:11*12* The above copyright notice and this permission notice shall be included in13* all copies or substantial portions of the Software.14*15* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR16* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,17* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE18* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER19* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING20* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER21* DEALINGS IN THE SOFTWARE.22*23* Copyright 2017 (C) EPAM Systems24*/2526#ifndef __XEN_PUBLIC_ARCH_ARM_SMCCC_H__27#define __XEN_PUBLIC_ARCH_ARM_SMCCC_H__2829#include "public/xen.h"3031/*32* Hypervisor Service version.33*34* We can't use XEN version here, because of SMCCC requirements:35* Major revision should change every time SMC/HVC function is removed.36* Minor revision should change every time SMC/HVC function is added.37* So, it is SMCCC protocol revision code, not XEN version.38*39* Those values are subjected to change, when interface will be extended.40*/41#define XEN_SMCCC_MAJOR_REVISION 042#define XEN_SMCCC_MINOR_REVISION 14344/* Hypervisor Service UID. Randomly generated with uuidgen. */45#define XEN_SMCCC_UID XEN_DEFINE_UUID(0xa71812dc, 0xc698, 0x4369, 0x9acf, \460x79, 0xd1, 0x8d, 0xde, 0xe6, 0x67)4748/* Standard Service Service Call version. */49#define SSSC_SMCCC_MAJOR_REVISION 050#define SSSC_SMCCC_MINOR_REVISION 15152/* Standard Service Call UID. Randomly generated with uuidgen. */53#define SSSC_SMCCC_UID XEN_DEFINE_UUID(0xf863386f, 0x4b39, 0x4cbd, 0x9220,\540xce, 0x16, 0x41, 0xe5, 0x9f, 0x6f)5556#endif /* __XEN_PUBLIC_ARCH_ARM_SMCCC_H__ */5758/*59* Local variables:60* mode: C61* c-file-style: "BSD"62* c-basic-offset: 463* indent-tabs-mode: nil64* End:b65*/666768