1 /* SPDX-License-Identifier: BSD-2-Clause */ 2 /* 3 * Copyright 2019 Broadcom. 4 */ 5 6 #ifndef BCM_SOTP_H 7 #define BCM_SOTP_H 8 9 #include <stdint.h> 10 #include <tee_api.h> 11 12 TEE_Result bcm_iproc_sotp_mem_read(uint32_t row_addr, uint32_t sotp_add_ecc, 13 uint64_t *rdata); 14 15 #endif 16