kernel: update kernel 4.4 to 4.4.59
[openwrt/openwrt.git] / target / linux / brcm2708 / patches-4.4 / 0586-drm-vc4-Fulfill-user-BO-creation-requests-from-the-k.patch
1 From 6b7250b2393653e5d08deed591b78b41a2ee8d43 Mon Sep 17 00:00:00 2001
2 From: Eric Anholt <eric@anholt.net>
3 Date: Wed, 8 Feb 2017 15:00:54 -0800
4 Subject: [PATCH] drm/vc4: Fulfill user BO creation requests from the kernel BO
5 cache.
6
7 The from_cache flag was actually "the BO is invisible to userspace",
8 so we can repurpose to just zero out a cached BO and return it to
9 userspace.
10
11 Improves wall time for a loop of 5 glsl-algebraic-add-add-1 by
12 -1.44989% +/- 0.862891% (n=28, 1 outlier removed from each that
13 appeared to be other system noise)
14
15 Note that there's an intel-gpu-tools test to check for the proper
16 zeroing behavior here, which we continue to pass.
17
18 Signed-off-by: Eric Anholt <eric@anholt.net>
19 ---
20 drivers/gpu/drm/vc4/vc4_bo.c | 13 +++++++------
21 1 file changed, 7 insertions(+), 6 deletions(-)
22
23 --- a/drivers/gpu/drm/vc4/vc4_bo.c
24 +++ b/drivers/gpu/drm/vc4/vc4_bo.c
25 @@ -208,22 +208,23 @@ struct drm_gem_object *vc4_create_object
26 }
27
28 struct vc4_bo *vc4_bo_create(struct drm_device *dev, size_t unaligned_size,
29 - bool from_cache)
30 + bool allow_unzeroed)
31 {
32 size_t size = roundup(unaligned_size, PAGE_SIZE);
33 struct vc4_dev *vc4 = to_vc4_dev(dev);
34 struct drm_gem_cma_object *cma_obj;
35 int pass, ret;
36 + struct vc4_bo *bo;
37
38 if (size == 0)
39 return ERR_PTR(-EINVAL);
40
41 /* First, try to get a vc4_bo from the kernel BO cache. */
42 - if (from_cache) {
43 - struct vc4_bo *bo = vc4_bo_get_from_cache(dev, size);
44 -
45 - if (bo)
46 - return bo;
47 + bo = vc4_bo_get_from_cache(dev, size);
48 + if (bo) {
49 + if (!allow_unzeroed)
50 + memset(bo->base.vaddr, 0, bo->base.base.size);
51 + return bo;
52 }
53
54 /* Otherwise, make a new BO. */