1 /* 2 * Copyright (c) 2019-2020, NVIDIA CORPORATION. All rights reserved. 3 * 4 * SPDX-License-Identifier: BSD-3-Clause 5 */ 6 7 #ifndef SE_H 8 #define SE_H 9 10 int32_t tegra_se_calculate_save_sha256(uint64_t src_addr, 11 uint32_t src_len_inbyte); 12 int32_t tegra_se_suspend(void); 13 void tegra_se_resume(void); 14 15 #endif /* SE_H */ 16