* re: drm/tegra: Add hardware cursor support
@ 2014-10-17 11:31 Dan Carpenter
2014-10-17 13:15 ` Thierry Reding
0 siblings, 1 reply; 2+ messages in thread
From: Dan Carpenter @ 2014-10-17 11:31 UTC (permalink / raw)
To: treding-DDmLM1+adcrQT0dZR+AlfA; +Cc: linux-tegra-u79uwXL29TY76Z2rM5mHXA
Hello Thierry Reding,
The patch e687651bc1ed: "drm/tegra: Add hardware cursor support" from
Dec 20, 2013, leads to the following static checker warning:
drivers/gpu/drm/tegra/dc.c:597 tegra_dc_cursor_set2()
warn: mask and shift to zero
drivers/gpu/drm/tegra/dc.c
594 if (bo) {
595 unsigned long addr = (bo->paddr & 0xfffffc00) >> 10;
596 #ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
597 unsigned long high = (bo->paddr & 0xfffffffc) >> 32;
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
I'm not sure what the correct mask is.
598 #endif
599
regards,
dan carpenter
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: drm/tegra: Add hardware cursor support
2014-10-17 11:31 drm/tegra: Add hardware cursor support Dan Carpenter
@ 2014-10-17 13:15 ` Thierry Reding
0 siblings, 0 replies; 2+ messages in thread
From: Thierry Reding @ 2014-10-17 13:15 UTC (permalink / raw)
To: Dan Carpenter; +Cc: linux-tegra-u79uwXL29TY76Z2rM5mHXA
[-- Attachment #1: Type: text/plain, Size: 1369 bytes --]
On Fri, Oct 17, 2014 at 02:31:23PM +0300, Dan Carpenter wrote:
> Hello Thierry Reding,
>
> The patch e687651bc1ed: "drm/tegra: Add hardware cursor support" from
> Dec 20, 2013, leads to the following static checker warning:
>
> drivers/gpu/drm/tegra/dc.c:597 tegra_dc_cursor_set2()
> warn: mask and shift to zero
>
> drivers/gpu/drm/tegra/dc.c
> 594 if (bo) {
> 595 unsigned long addr = (bo->paddr & 0xfffffc00) >> 10;
> 596 #ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
> 597 unsigned long high = (bo->paddr & 0xfffffffc) >> 32;
How timely. I'm in fact revising this code at this very moment. =)
The masking here is indeed somewhat fishy. While it does the right
thing, it's also needless to some degree. A better version would be:
addr = (bo->paddr >> 10) & 0x3fffff;
Since this is written to a register where the upper 10 bits (actually
only 8 because bits 22 and 23 are reserved) are used for additional
control parameters (cursor size and clipping region). The above will
properly write bits 31:10 into bits 21:0 of addr.
For the upper 32 bits the mask is completely redundant. According to the
register documentation, bits 1:0 should correspond to bits 33:32 of the
physical address, so something like:
high = (bo->paddr >> 32) & 0x3;
would be more correct.
Thierry
[-- Attachment #2: Type: application/pgp-signature, Size: 819 bytes --]
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2014-10-17 13:15 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-10-17 11:31 drm/tegra: Add hardware cursor support Dan Carpenter
2014-10-17 13:15 ` Thierry Reding
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.