Home
last modified time | relevance | path

Searched refs:dpcd_read (Results 1 – 3 of 3) sorted by relevance

/linux-6.15/drivers/gpu/drm/tests/
H A Ddrm_dp_mst_helper_test.c291 .u.dpcd_read.port_number = 0xf,
298 .u.dpcd_read.dpcd_address = 0xfedcb,
305 .u.dpcd_read.num_bytes = U8_MAX,
/linux-6.15/drivers/gpu/drm/display/
H A Ddrm_dp_mst_topology.c388 buf[idx] = (req->u.dpcd_read.port_number & 0xf) << 4; in drm_dp_encode_sideband_req()
389 buf[idx] |= ((req->u.dpcd_read.dpcd_address & 0xf0000) >> 16) & 0xf; in drm_dp_encode_sideband_req()
391 buf[idx] = (req->u.dpcd_read.dpcd_address & 0xff00) >> 8; in drm_dp_encode_sideband_req()
393 buf[idx] = (req->u.dpcd_read.dpcd_address & 0xff); in drm_dp_encode_sideband_req()
395 buf[idx] = (req->u.dpcd_read.num_bytes); in drm_dp_encode_sideband_req()
508 struct drm_dp_remote_dpcd_read *r = &req->u.dpcd_read; in drm_dp_decode_sideband_req()
645 req->u.dpcd_read.port_number, req->u.dpcd_read.dpcd_address, in drm_dp_dump_sideband_msg_req_body()
646 req->u.dpcd_read.num_bytes); in drm_dp_dump_sideband_msg_req_body()
2727 req.u.dpcd_read.port_number = port_num; in build_dpcd_read()
2728 req.u.dpcd_read.dpcd_address = offset; in build_dpcd_read()
[all …]
/linux-6.15/include/drm/display/
H A Ddrm_dp_mst_helper.h454 struct drm_dp_remote_dpcd_read dpcd_read; member