Thread (13 messages) 13 messages, 4 authors, 2021-01-21

Re: [PATCH v7 2/5] media: rkisp1: stats: remove a wrong cast to u8

From: Dafna Hirschfeld <hidden>
Date: 2021-01-21 11:48:03
Also in: linux-media


Am 21.01.21 um 11:07 schrieb Tomasz Figa:
Hi Dafna,

On Thu, Jan 21, 2021 at 1:45 AM Dafna Hirschfeld
[off-list ref] wrote:
quoted
hist_bins is an array of type __u32. Each entry represent
a 20 bit fixed point value as documented inline.
The cast to u8 when setting the values is wrong. Remove it.
Thanks for the patch. See my comment inline.
quoted
Signed-off-by: Dafna Hirschfeld <redacted>
---
  drivers/media/platform/rockchip/rkisp1/rkisp1-stats.c | 3 +--
  1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/drivers/media/platform/rockchip/rkisp1/rkisp1-stats.c b/drivers/media/platform/rockchip/rkisp1/rkisp1-stats.c
index 3ddab8fa8f2d..4cdb180fa64d 100644
--- a/drivers/media/platform/rockchip/rkisp1/rkisp1-stats.c
+++ b/drivers/media/platform/rockchip/rkisp1/rkisp1-stats.c
@@ -235,8 +235,7 @@ static void rkisp1_stats_get_hst_meas(struct rkisp1_stats *stats,
         pbuf->meas_type |= RKISP1_CIF_ISP_STAT_HIST;
         for (i = 0; i < RKISP1_CIF_ISP_HIST_BIN_N_MAX; i++)
                 pbuf->params.hist.hist_bins[i] =
-                       (u8)rkisp1_read(rkisp1,
-                                       RKISP1_CIF_ISP_HIST_BIN_0 + i * 4);
+                       rkisp1_read(rkisp1, RKISP1_CIF_ISP_HIST_BIN_0 + i * 4);
Is the register guaranteed to return 0 for the upper unused 12 bits?
Should we mask them instead?
I printed the values and I always see 0 for the last 12 bits. But the datasheet
does not say that explicitly.
I can add a mask to be on the safe side.

Thanks,
Dafna
Best regards,
Tomasz
_______________________________________________
Linux-rockchip mailing list
Linux-rockchip@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-rockchip
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help