diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2017-09-13 11:51:54 +0100 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2017-09-13 13:27:20 +0100 |
commit | 7ce5b6850b47824a2b8d0a17b5fe75f9942e5cd1 (patch) | |
tree | 519363302f8b9d6ebd65278975a48ddb99ce6e99 /drivers/gpu/drm/i915/selftests/i915_random.h | |
parent | 3123698f50fe4ac9ddb775dcd2b34a1d9cdd603f (diff) | |
download | talos-obmc-linux-7ce5b6850b47824a2b8d0a17b5fe75f9942e5cd1.tar.gz talos-obmc-linux-7ce5b6850b47824a2b8d0a17b5fe75f9942e5cd1.zip |
drm/i915/selftests: Use mul_u32_u32() for 32b x 32b -> 64b result
As realised by commit 9e3d6223d209 ("math64, timers: Fix 32bit
mul_u64_u32_shr() and friends"), GCC does not always generate ideal code
for performing a 32b x 32b multiply returning a 64b result (i.e. where
we idiomatically use u64 result = (u64)x * (u32)x).
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Link: https://patchwork.freedesktop.org/patch/msgid/20170913105154.2910-2-chris@chris-wilson.co.uk
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Diffstat (limited to 'drivers/gpu/drm/i915/selftests/i915_random.h')
-rw-r--r-- | drivers/gpu/drm/i915/selftests/i915_random.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/gpu/drm/i915/selftests/i915_random.h b/drivers/gpu/drm/i915/selftests/i915_random.h index 6c9379871384..7dffedc501ca 100644 --- a/drivers/gpu/drm/i915/selftests/i915_random.h +++ b/drivers/gpu/drm/i915/selftests/i915_random.h @@ -43,6 +43,11 @@ u64 i915_prandom_u64_state(struct rnd_state *rnd); +static inline u32 i915_prandom_u32_max_state(u32 ep_ro, struct rnd_state *state) +{ + return upper_32_bits(mul_u32_u32(prandom_u32_state(state), ep_ro)); +} + unsigned int *i915_random_order(unsigned int count, struct rnd_state *state); void i915_random_reorder(unsigned int *order, |