Re: [Freedreno] [PATCH 2/4] drm/msm/dsi: Fix compressed word count calculation

2023-05-09 Thread Jessica Zhang
On 5/9/2023 11:02 AM, Abhinav Kumar wrote: On 5/9/2023 4:42 AM, Dmitry Baryshkov wrote: On 09/05/2023 11:54, Konrad Dybcio wrote: On 9.05.2023 10:23, Neil Armstrong wrote: On 09/05/2023 01:27, Dmitry Baryshkov wrote: On 08/05/2023 23:09, Abhinav Kumar wrote: On 5/3/2023 1:26 AM,

Re: [Freedreno] [PATCH 2/4] drm/msm/dsi: Fix compressed word count calculation

2023-05-09 Thread Abhinav Kumar
On 5/9/2023 4:42 AM, Dmitry Baryshkov wrote: On 09/05/2023 11:54, Konrad Dybcio wrote: On 9.05.2023 10:23, Neil Armstrong wrote: On 09/05/2023 01:27, Dmitry Baryshkov wrote: On 08/05/2023 23:09, Abhinav Kumar wrote: On 5/3/2023 1:26 AM, Dmitry Baryshkov wrote: On 03/05/2023 04:19,

Re: [PATCH 2/4] drm/msm/dsi: Fix compressed word count calculation

2023-05-09 Thread Dmitry Baryshkov
On 09/05/2023 11:54, Konrad Dybcio wrote: On 9.05.2023 10:23, Neil Armstrong wrote: On 09/05/2023 01:27, Dmitry Baryshkov wrote: On 08/05/2023 23:09, Abhinav Kumar wrote: On 5/3/2023 1:26 AM, Dmitry Baryshkov wrote: On 03/05/2023 04:19, Jessica Zhang wrote: Currently, word count is

Re: [PATCH 2/4] drm/msm/dsi: Fix compressed word count calculation

2023-05-09 Thread Konrad Dybcio
On 9.05.2023 10:23, Neil Armstrong wrote: > On 09/05/2023 01:27, Dmitry Baryshkov wrote: >> On 08/05/2023 23:09, Abhinav Kumar wrote: >>> >>> >>> On 5/3/2023 1:26 AM, Dmitry Baryshkov wrote: On 03/05/2023 04:19, Jessica Zhang wrote: > Currently, word count is calculated using

Re: [PATCH 2/4] drm/msm/dsi: Fix compressed word count calculation

2023-05-09 Thread Neil Armstrong
On 09/05/2023 01:27, Dmitry Baryshkov wrote: On 08/05/2023 23:09, Abhinav Kumar wrote: On 5/3/2023 1:26 AM, Dmitry Baryshkov wrote: On 03/05/2023 04:19, Jessica Zhang wrote: Currently, word count is calculated using slice_count. This is incorrect as downstream uses slice per packet, which

Re: [PATCH 2/4] drm/msm/dsi: Fix compressed word count calculation

2023-05-09 Thread Konrad Dybcio
On 9.05.2023 01:27, Dmitry Baryshkov wrote: > On 08/05/2023 23:09, Abhinav Kumar wrote: >> >> >> On 5/3/2023 1:26 AM, Dmitry Baryshkov wrote: >>> On 03/05/2023 04:19, Jessica Zhang wrote: Currently, word count is calculated using slice_count. This is incorrect as downstream uses slice

Re: [PATCH 2/4] drm/msm/dsi: Fix compressed word count calculation

2023-05-08 Thread Abhinav Kumar
On 5/8/2023 5:47 PM, Dmitry Baryshkov wrote: On 09/05/2023 03:45, Abhinav Kumar wrote: On 5/8/2023 4:27 PM, Dmitry Baryshkov wrote: On 08/05/2023 23:09, Abhinav Kumar wrote: On 5/3/2023 1:26 AM, Dmitry Baryshkov wrote: On 03/05/2023 04:19, Jessica Zhang wrote: Currently, word count is

Re: [PATCH 2/4] drm/msm/dsi: Fix compressed word count calculation

2023-05-08 Thread Dmitry Baryshkov
On 09/05/2023 03:45, Abhinav Kumar wrote: On 5/8/2023 4:27 PM, Dmitry Baryshkov wrote: On 08/05/2023 23:09, Abhinav Kumar wrote: On 5/3/2023 1:26 AM, Dmitry Baryshkov wrote: On 03/05/2023 04:19, Jessica Zhang wrote: Currently, word count is calculated using slice_count. This is incorrect

Re: [PATCH 2/4] drm/msm/dsi: Fix compressed word count calculation

2023-05-08 Thread Abhinav Kumar
On 5/8/2023 4:27 PM, Dmitry Baryshkov wrote: On 08/05/2023 23:09, Abhinav Kumar wrote: On 5/3/2023 1:26 AM, Dmitry Baryshkov wrote: On 03/05/2023 04:19, Jessica Zhang wrote: Currently, word count is calculated using slice_count. This is incorrect as downstream uses slice per packet,

Re: [PATCH 2/4] drm/msm/dsi: Fix compressed word count calculation

2023-05-08 Thread Dmitry Baryshkov
On 08/05/2023 23:09, Abhinav Kumar wrote: On 5/3/2023 1:26 AM, Dmitry Baryshkov wrote: On 03/05/2023 04:19, Jessica Zhang wrote: Currently, word count is calculated using slice_count. This is incorrect as downstream uses slice per packet, which is different from slice_count. Slice count

Re: [PATCH 2/4] drm/msm/dsi: Fix compressed word count calculation

2023-05-08 Thread Abhinav Kumar
On 5/3/2023 1:26 AM, Dmitry Baryshkov wrote: On 03/05/2023 04:19, Jessica Zhang wrote: Currently, word count is calculated using slice_count. This is incorrect as downstream uses slice per packet, which is different from slice_count. Slice count represents the number of soft slices per

Re: [PATCH 2/4] drm/msm/dsi: Fix compressed word count calculation

2023-05-03 Thread Jessica Zhang
On 5/3/2023 1:26 AM, Dmitry Baryshkov wrote: On 03/05/2023 04:19, Jessica Zhang wrote: Currently, word count is calculated using slice_count. This is incorrect as downstream uses slice per packet, which is different from slice_count. Slice count represents the number of soft slices per

Re: [PATCH 2/4] drm/msm/dsi: Fix compressed word count calculation

2023-05-03 Thread Dmitry Baryshkov
On 03/05/2023 04:19, Jessica Zhang wrote: Currently, word count is calculated using slice_count. This is incorrect as downstream uses slice per packet, which is different from slice_count. Slice count represents the number of soft slices per interface, and its value will not always match that

[PATCH 2/4] drm/msm/dsi: Fix compressed word count calculation

2023-05-02 Thread Jessica Zhang
Currently, word count is calculated using slice_count. This is incorrect as downstream uses slice per packet, which is different from slice_count. Slice count represents the number of soft slices per interface, and its value will not always match that of slice per packet. For example, it is