Home
last modified time | relevance | path

Searched refs:RPC_U32 (Results 1 – 2 of 2) sorted by relevance

/u-boot/drivers/misc/imx8/
A Dscu_api.c33 RPC_U32(&msg, 0U) = *(u32 *)rate; in sc_pm_set_clock_rate()
43 *rate = RPC_U32(&msg, 0U); in sc_pm_set_clock_rate()
71 *rate = RPC_U32(&msg, 0U); in sc_pm_get_clock_rate()
214 RPC_U32(&msg, 0U) = (u32)val; in sc_pad_set()
306 *val = RPC_U32(&msg, 0U); in sc_misc_get_control()
425 *build = RPC_U32(&msg, 0); in sc_misc_build_info()
427 *commit = RPC_U32(&msg, 4); in sc_misc_build_info()
443 RPC_U32(&msg, 0) = word; in sc_misc_otp_fuse_read()
451 *val = RPC_U32(&msg, 0U); in sc_misc_otp_fuse_read()
596 RPC_U32(&msg, 4U); in sc_rm_get_memreg_info()
[all …]
/u-boot/arch/arm/include/asm/arch-imx8/sci/
A Drpc.h25 #define RPC_I64(MSG, IDX) ((s64)(RPC_U32((MSG), (IDX))) << 32ULL) | \
26 (s64)(RPC_U32((MSG), (IDX) + 4U))
30 #define RPC_U64(MSG, IDX) ((u64)(RPC_U32((MSG), (IDX))) << 32ULL) | \
31 (u64)(RPC_U32((MSG), (IDX) + 4U))
32 #define RPC_U32(MSG, IDX) ((MSG)->DATA.u32[(IDX) / 4U]) macro

Completed in 6 milliseconds