KM
My hypothesis is that the code is shared across several generations of GPU architectures. In the comment, Vega, Polaris, and Navi are mentioned. When Navi was released, spatial dithering was accidentally forced at 10-bit in this function. However, it was later set to truncation because this function is also used for other architectures where spatial dithering may not be acceptable at 10-bit.
I can't find where temporal dithering is forced on for Navi in the amdgpu kernel module. I mean where the options for temporal dithering are set; I only see where they are checked. But I'm not very familiar with the module's code, so I might be missing something.
Because it almost sounds like by default the amdgpu driver uses spatial dithering (not temporal dithering) regardless of the GPU type.
Judging by the code, if we reach the switch statement mentioned in the comment in the commit where the fix was made, the temporal dithering is not enabled in the same method: https://github.com/torvalds/linux/blob/11066801dd4b7c4d75fce65c812723a80c1481ae/drivers/gpu/drm/amd/display/dc/core/dc_resource.c#L4667. But how it works in reality remains a question.