Home
last modified time | relevance | path

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

/Linux-v5.10/drivers/gpu/drm/i915/display/
Dintel_dp_hdcp.c441 len = bytes_to_write > DP_AUX_MAX_PAYLOAD_BYTES ? in intel_dp_hdcp2_write_msg()
442 DP_AUX_MAX_PAYLOAD_BYTES : bytes_to_write; in intel_dp_hdcp2_write_msg()
515 len = bytes_to_recv > DP_AUX_MAX_PAYLOAD_BYTES ? in intel_dp_hdcp2_read_msg()
516 DP_AUX_MAX_PAYLOAD_BYTES : bytes_to_recv; in intel_dp_hdcp2_read_msg()
/Linux-v5.10/drivers/gpu/drm/
Ddrm_dp_aux_dev.c158 uint8_t buf[DP_AUX_MAX_PAYLOAD_BYTES]; in auxdev_read_iter()
201 uint8_t buf[DP_AUX_MAX_PAYLOAD_BYTES]; in auxdev_write_iter()
Ddrm_dp_helper.c1426 static int dp_aux_i2c_transfer_size __read_mostly = DP_AUX_MAX_PAYLOAD_BYTES;
1440 dp_aux_i2c_transfer_size = clamp(dp_aux_i2c_transfer_size, 1, DP_AUX_MAX_PAYLOAD_BYTES); in drm_dp_i2c_xfer()
/Linux-v5.10/drivers/gpu/drm/bridge/
Dtc358767.c305 u32 auxwdata[DP_AUX_MAX_PAYLOAD_BYTES / sizeof(u32)] = { 0 }; in tc_aux_write_data()
319 u32 auxrdata[DP_AUX_MAX_PAYLOAD_BYTES / sizeof(u32)]; in tc_aux_read_data()
347 size_t size = min_t(size_t, DP_AUX_MAX_PAYLOAD_BYTES - 1, msg->size); in tc_aux_transfer()
/Linux-v5.10/include/drm/
Ddrm_dp_helper.h90 #define DP_AUX_MAX_PAYLOAD_BYTES 16 macro