mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-17 18:28:55 +00:00
04cd0a0fa0
Signed-off-by: Suneel Garapati <sgarapati@marvell.com>
32 lines
753 B
C
32 lines
753 B
C
/* SPDX-License-Identifier: GPL-2.0
|
|
*
|
|
* Copyright (C) 2018 Marvell International Ltd.
|
|
*
|
|
* https://spdx.org/licenses
|
|
*/
|
|
|
|
#ifndef __SMC_ID_H__
|
|
#define __SMC_ID_H__
|
|
|
|
/* SMC function IDs for general purpose queries */
|
|
|
|
#define OCTEONTX2_SVC_CALL_COUNT 0xc200ff00
|
|
#define OCTEONTX2_SVC_UID 0xc200ff01
|
|
|
|
#define OCTEONTX2_SVC_VERSION 0xc200ff03
|
|
|
|
/* OcteonTX Service Calls version numbers */
|
|
#define OCTEONTX2_VERSION_MAJOR 0x1
|
|
#define OCTEONTX2_VERSION_MINOR 0x0
|
|
|
|
/* x1 - node number */
|
|
#define OCTEONTX2_DRAM_SIZE 0xc2000301
|
|
#define OCTEONTX2_NODE_COUNT 0xc2000601
|
|
#define OCTEONTX2_DISABLE_RVU_LFS 0xc2000b01
|
|
|
|
#define OCTEONTX2_CONFIG_OOO 0xc2000b04
|
|
|
|
/* fail safe */
|
|
#define OCTEONTX2_FSAFE_PR_BOOT_SUCCESS 0xc2000b02
|
|
|
|
#endif /* __SMC_ID_H__ */
|