Searched refs:dpcd_read (Results 1 – 3 of 3) sorted by relevance
202 in.u.dpcd_read.port_number = 0xf; in igt_dp_mst_sideband_msg_req_decode()204 in.u.dpcd_read.dpcd_address = 0xfedcb; in igt_dp_mst_sideband_msg_req_decode()206 in.u.dpcd_read.num_bytes = U8_MAX; in igt_dp_mst_sideband_msg_req_decode()
375 buf[idx] = (req->u.dpcd_read.port_number & 0xf) << 4; in drm_dp_encode_sideband_req()376 buf[idx] |= ((req->u.dpcd_read.dpcd_address & 0xf0000) >> 16) & 0xf; in drm_dp_encode_sideband_req()378 buf[idx] = (req->u.dpcd_read.dpcd_address & 0xff00) >> 8; in drm_dp_encode_sideband_req()380 buf[idx] = (req->u.dpcd_read.dpcd_address & 0xff); in drm_dp_encode_sideband_req()382 buf[idx] = (req->u.dpcd_read.num_bytes); in drm_dp_encode_sideband_req()495 struct drm_dp_remote_dpcd_read *r = &req->u.dpcd_read; in drm_dp_decode_sideband_req()632 req->u.dpcd_read.port_number, req->u.dpcd_read.dpcd_address, in drm_dp_dump_sideband_msg_req_body()633 req->u.dpcd_read.num_bytes); in drm_dp_dump_sideband_msg_req_body()2762 req.u.dpcd_read.port_number = port_num; in build_dpcd_read()2763 req.u.dpcd_read.dpcd_address = offset; in build_dpcd_read()[all …]
457 struct drm_dp_remote_dpcd_read dpcd_read; member