1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #ifndef __PSP_PLATFORM_ACCESS_H
4 #define __PSP_PLATFORM_ACCESS_H
8 enum psp_platform_access_msg
{
10 PSP_CMD_HSTI_QUERY
= 0x14,
11 PSP_I2C_REQ_BUS_CMD
= 0x64,
12 PSP_DYNAMIC_BOOST_GET_NONCE
,
13 PSP_DYNAMIC_BOOST_SET_UID
,
14 PSP_DYNAMIC_BOOST_GET_PARAMETER
,
15 PSP_DYNAMIC_BOOST_SET_PARAMETER
,
18 struct psp_req_buffer_hdr
{
24 struct psp_req_buffer_hdr header
;
29 * psp_send_platform_access_msg() - Send a message to control platform features
31 * This function is intended to be used by drivers outside of ccp to communicate
36 * -%EBUSY: mailbox in recovery or in use
37 * -%ENODEV: driver not bound with PSP device
38 * -%ETIMEDOUT: request timed out
39 * -%EIO: unknown error (see kernel log)
41 int psp_send_platform_access_msg(enum psp_platform_access_msg
, struct psp_request
*req
);
44 * psp_ring_platform_doorbell() - Ring platform doorbell
46 * This function is intended to be used by drivers outside of ccp to ring the
47 * platform doorbell with a message.
51 * -%EBUSY: mailbox in recovery or in use
52 * -%ENODEV: driver not bound with PSP device
53 * -%ETIMEDOUT: request timed out
54 * -%EIO: error will be stored in result argument
56 int psp_ring_platform_doorbell(int msg
, u32
*result
);
59 * psp_check_platform_access_status() - Checks whether platform features is ready
61 * This function is intended to be used by drivers outside of ccp to determine
62 * if platform features has initialized.
65 * 0 platform features is ready
66 * -%ENODEV platform features is not ready or present
68 int psp_check_platform_access_status(void);
70 #endif /* __PSP_PLATFORM_ACCESS_H */