Home
last modified time | relevance | path

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

/OK3568_Linux_fs/u-boot/include/fsl-mc/
H A Dfsl_dprc.h345 #define DPRC_CMD_CONNECT(cmd, endpoint1, endpoint2, cfg) \ argument
347 MC_CMD_OP(cmd, 0, 0, 32, int, endpoint1->id); \
348 MC_CMD_OP(cmd, 0, 32, 16, uint16_t, endpoint1->if_id); \
351 MC_CMD_OP(cmd, 2, 0, 8, char, endpoint1->type[0]); \
352 MC_CMD_OP(cmd, 2, 8, 8, char, endpoint1->type[1]); \
353 MC_CMD_OP(cmd, 2, 16, 8, char, endpoint1->type[2]); \
354 MC_CMD_OP(cmd, 2, 24, 8, char, endpoint1->type[3]); \
355 MC_CMD_OP(cmd, 2, 32, 8, char, endpoint1->type[4]); \
356 MC_CMD_OP(cmd, 2, 40, 8, char, endpoint1->type[5]); \
357 MC_CMD_OP(cmd, 2, 48, 8, char, endpoint1->type[6]); \
[all …]
/OK3568_Linux_fs/u-boot/drivers/net/fsl-mc/
H A Ddprc.c297 const struct dprc_endpoint *endpoint1, in dprc_connect() argument
307 DPRC_CMD_CONNECT(cmd, endpoint1, endpoint2, cfg); in dprc_connect()
333 const struct dprc_endpoint *endpoint1, in dprc_get_connection() argument
344 DPRC_CMD_GET_CONNECTION(cmd, endpoint1); in dprc_get_connection()
/OK3568_Linux_fs/kernel/drivers/bus/fsl-mc/
H A Ddprc.c669 const struct dprc_endpoint *endpoint1, in dprc_get_connection() argument
683 cmd_params->ep1_id = cpu_to_le32(endpoint1->id); in dprc_get_connection()
684 cmd_params->ep1_interface_id = cpu_to_le16(endpoint1->if_id); in dprc_get_connection()
686 cmd_params->ep1_type[i] = endpoint1->type[i]; in dprc_get_connection()
H A Dfsl-mc-bus.c833 struct dprc_endpoint endpoint1 = {{ 0 }}; in fsl_mc_get_endpoint() local
838 strcpy(endpoint1.type, mc_dev->obj_desc.type); in fsl_mc_get_endpoint()
839 endpoint1.id = mc_dev->obj_desc.id; in fsl_mc_get_endpoint()
843 &endpoint1, &endpoint2, in fsl_mc_get_endpoint()
H A Dfsl-mc-private.h433 const struct dprc_endpoint *endpoint1,