mirror of
https://github.com/torvalds/linux.git
synced 2026-05-24 23:22:31 +02:00
platform/chrome: cros_typec_vdm: Fix VDO copy
The usage of memcpy() affects the representation of the VDOs as they are
copied to the EC Host Command buffer. Specifically, all higher order
bits get dropped (for example: a VDO of 0x406 just gets copied as 0x6).
Avoid this by explicitly copying each VDO in the array. The number of
VDOs generated by alternate mode drivers in their VDMs is almost always
just 1 (apart from the header) so this doesn't affect performance in a
meaningful way).
Fixes: 40a9b13a09 ("platform/chrome: cros_typec_vdm: Add VDM send support")
Signed-off-by: Prashant Malani <pmalani@chromium.org>
Reviewed-by: Benson Leung <bleung@chromium.org>
Link: https://lore.kernel.org/r/20230113182626.1149539-1-pmalani@chromium.org
Signed-off-by: Prashant Malani <pmalani@chromium.org>
This commit is contained in:
parent
13aba1e532
commit
478f32ab4d
|
|
@ -86,10 +86,12 @@ static int cros_typec_port_amode_vdm(struct typec_altmode *amode, const u32 hdr,
|
|||
.command = TYPEC_CONTROL_COMMAND_SEND_VDM_REQ,
|
||||
};
|
||||
struct typec_vdm_req vdm_req = {};
|
||||
int i;
|
||||
|
||||
vdm_req.vdm_data[0] = hdr;
|
||||
vdm_req.vdm_data_objects = cnt;
|
||||
memcpy(&vdm_req.vdm_data[1], vdo, cnt - 1);
|
||||
for (i = 1; i < cnt; i++)
|
||||
vdm_req.vdm_data[i] = vdo[i-1];
|
||||
vdm_req.partner_type = TYPEC_PARTNER_SOP;
|
||||
req.vdm_req_params = vdm_req;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user