1 /* SPDX-License-Identifier: BSD-2-Clause */
2 /*
3  * Copyright (c) 2021, Microchip
4  */
5 
6 #ifndef SMC_IDS_H
7 #define SMC_IDS_H
8 
9 #define SAMA5_SMC_SIP_SFR_SET_USB_SUSPEND	0x300
10 
11 #define SAMA5_SMC_SIP_SET_SUSPEND_MODE	0x400
12 #define SAMA5_SMC_SIP_GET_SUSPEND_MODE	0x401
13 
14 /* SAMA5 SMC return codes */
15 #define SAMA5_SMC_SIP_RETURN_SUCCESS	0x0
16 #define SAMA5_SMC_SIP_RETURN_EINVAL	0x1
17 
18 #endif /* SMC_IDS_H */
19