Alexey Romanov | 9ec6db3 | 2023-09-21 11:13:35 +0300 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
2 | /* | ||||
3 | * Copyright (c) 2023 SberDevices, Inc. | ||||
4 | * | ||||
5 | * Author: Alexey Romanov <avromanov@salutedevices.com> | ||||
6 | */ | ||||
7 | |||||
8 | #ifndef __SANDBOX_SM_H__ | ||||
9 | #define __SANDBOX_SM_H__ | ||||
10 | |||||
11 | enum sandbox_smc_cmd { | ||||
12 | SANDBOX_SMC_CMD_READ_MEM, | ||||
13 | SANDBOX_SMC_CMD_WRITE_MEM, | ||||
14 | SANDBOX_SMC_CMD_COMMON, | ||||
15 | SANDBOX_SMC_CMD_COUNT, | ||||
16 | }; | ||||
17 | |||||
18 | #endif |