diff options
author | Dave Airlie <airlied@redhat.com> | 2023-01-30 14:17:06 +1000 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2023-01-30 14:24:52 +1000 |
commit | dae437d568bbc3d4211b88d23fa0868a5019caf6 (patch) | |
tree | ebce0628697e03ef89cc8c187b0b16c756c00730 /drivers/gpu/host1x/hw/hw_host1x08_uclass.h | |
parent | 54587d9943c906dd8ec2732dca3e9fd791aa789e (diff) | |
parent | 2abdd44e3126e29cc310cbf5f1eda7ca7d979df3 (diff) |
Merge tag 'drm/tegra/for-6.3-rc1' of https://gitlab.freedesktop.org/drm/tegra into drm-next
drm/tegra: Changes for v6.3-rc1
This set of changes includes a rework of the custom syncpoint interrupt
code to take better advantage of existing DRM/KMS infrastructure.
There's also various bits of cleanup and fixes included.
Signed-off-by: Dave Airlie <airlied@redhat.com>
From: Thierry Reding <thierry.reding@gmail.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20230127170119.495943-1-thierry.reding@gmail.com
Diffstat (limited to 'drivers/gpu/host1x/hw/hw_host1x08_uclass.h')
-rw-r--r-- | drivers/gpu/host1x/hw/hw_host1x08_uclass.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/host1x/hw/hw_host1x08_uclass.h b/drivers/gpu/host1x/hw/hw_host1x08_uclass.h index 724cccd71aa1..4fb1d090edae 100644 --- a/drivers/gpu/host1x/hw/hw_host1x08_uclass.h +++ b/drivers/gpu/host1x/hw/hw_host1x08_uclass.h @@ -53,7 +53,7 @@ static inline u32 host1x_uclass_incr_syncpt_cond_f(u32 v) host1x_uclass_incr_syncpt_cond_f(v) static inline u32 host1x_uclass_incr_syncpt_indx_f(u32 v) { - return (v & 0xff) << 0; + return (v & 0x3ff) << 0; } #define HOST1X_UCLASS_INCR_SYNCPT_INDX_F(v) \ host1x_uclass_incr_syncpt_indx_f(v) |