1 /* SPDX-License-Identifier: GPL-2.0+ */
3 * Copyright 2020 Broadcom.
10 #include <linux/compiler.h>
13 * Chimp binary has health status like initialization complete,
14 * crash or running fine
16 #define BCM_CHIMP_RUNNIG_GOOD 0x8000
19 CHIMP_HANDSHAKE_SUCCESS = 0,
20 CHIMP_HANDSHAKE_WAIT_ERROR,
21 CHIMP_HANDSHAKE_WAIT_TIMEOUT,
25 * chimp_fastboot_optee() - api to load bnxt firmware
27 * @return: 0 on success and -ve on failure
29 int chimp_fastboot_optee(void);
32 * chimp_health_status_optee() - get chimp health status
34 * Chimp health status could be firmware is in good condition or
35 * bad condition because of crash/hang.
37 * @status: pointer to get chimp health status
39 * @return: 0 on success and -ve on failure
41 int chimp_health_status_optee(u32 *status);
44 * chimp_handshake_status_optee() - get chimp handshake status.
46 * To know firmware is loaded and running.
48 * @timeout: timeout value, if 0 then default timeout is considered by op-tee
49 * @hstatus: pointer to chimp handshake status
51 * @return: 0 on success and -ve on failure
53 int chimp_handshake_status_optee(u32 timeout, u32 *hstatus);