Home
last modified time | relevance | path

Searched refs:endpoint1 (Results 1 – 5 of 5) sorted by relevance

/openbmc/u-boot/include/fsl-mc/
H A Dfsl_dprc.h343 #define DPRC_CMD_CONNECT(cmd, endpoint1, endpoint2, cfg) \ argument
345 MC_CMD_OP(cmd, 0, 0, 32, int, endpoint1->id); \
346 MC_CMD_OP(cmd, 0, 32, 32, int, endpoint1->if_id); \
349 MC_CMD_OP(cmd, 2, 0, 8, char, endpoint1->type[0]); \
350 MC_CMD_OP(cmd, 2, 8, 8, char, endpoint1->type[1]); \
351 MC_CMD_OP(cmd, 2, 16, 8, char, endpoint1->type[2]); \
409 #define DPRC_CMD_GET_CONNECTION(cmd, endpoint1) \ argument
411 MC_CMD_OP(cmd, 0, 0, 32, int, endpoint1->id); \
412 MC_CMD_OP(cmd, 0, 32, 32, int, endpoint1->if_id); \
902 const struct dprc_endpoint *endpoint1,
[all …]
/openbmc/u-boot/drivers/net/fsl-mc/
H A Ddprc.c296 const struct dprc_endpoint *endpoint1, in dprc_connect() argument
306 DPRC_CMD_CONNECT(cmd, endpoint1, endpoint2, cfg); in dprc_connect()
332 const struct dprc_endpoint *endpoint1, in dprc_get_connection() argument
343 DPRC_CMD_GET_CONNECTION(cmd, endpoint1); in dprc_get_connection()
/openbmc/linux/drivers/bus/fsl-mc/
H A Ddprc.c671 const struct dprc_endpoint *endpoint1, in dprc_get_connection() argument
685 cmd_params->ep1_id = cpu_to_le32(endpoint1->id); in dprc_get_connection()
686 cmd_params->ep1_interface_id = cpu_to_le16(endpoint1->if_id); in dprc_get_connection()
688 cmd_params->ep1_type[i] = endpoint1->type[i]; in dprc_get_connection()
H A Dfsl-mc-bus.c941 struct dprc_endpoint endpoint1 = {{ 0 }}; in fsl_mc_get_endpoint() local
946 strcpy(endpoint1.type, mc_dev->obj_desc.type); in fsl_mc_get_endpoint()
947 endpoint1.id = mc_dev->obj_desc.id; in fsl_mc_get_endpoint()
948 endpoint1.if_id = if_id; in fsl_mc_get_endpoint()
952 &endpoint1, &endpoint2, in fsl_mc_get_endpoint()
H A Dfsl-mc-private.h434 const struct dprc_endpoint *endpoint1,