drm/nouveau/ltc: cosmetic changes
[cascardo/linux.git] / drivers / gpu / drm / nouveau / nvkm / subdev / ltc / base.c
1 /*
2  * Copyright 2014 Red Hat Inc.
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining a
5  * copy of this software and associated documentation files (the "Software"),
6  * to deal in the Software without restriction, including without limitation
7  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8  * and/or sell copies of the Software, and to permit persons to whom the
9  * Software is furnished to do so, subject to the following conditions:
10  *
11  * The above copyright notice and this permission notice shall be included in
12  * all copies or substantial portions of the Software.
13  *
14  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
17  * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20  * OTHER DEALINGS IN THE SOFTWARE.
21  *
22  * Authors: Ben Skeggs <bskeggs@redhat.com>
23  */
24 #include "priv.h"
25
26 static int
27 nvkm_ltc_tags_alloc(struct nvkm_ltc *obj, u32 n, struct nvkm_mm_node **pnode)
28 {
29         struct nvkm_ltc_priv *ltc = container_of(obj, typeof(*ltc), base);
30         int ret;
31
32         ret = nvkm_mm_head(&ltc->tags, 0, 1, n, n, 1, pnode);
33         if (ret)
34                 *pnode = NULL;
35
36         return ret;
37 }
38
39 static void
40 nvkm_ltc_tags_free(struct nvkm_ltc *obj, struct nvkm_mm_node **pnode)
41 {
42         struct nvkm_ltc_priv *ltc = container_of(obj, typeof(*ltc), base);
43         nvkm_mm_free(&ltc->tags, pnode);
44 }
45
46 static void
47 nvkm_ltc_tags_clear(struct nvkm_ltc *obj, u32 first, u32 count)
48 {
49         struct nvkm_ltc_priv *ltc = container_of(obj, typeof(*ltc), base);
50         const struct nvkm_ltc_impl *impl = (void *)nv_oclass(ltc);
51         const u32 limit = first + count - 1;
52
53         BUG_ON((first > limit) || (limit >= ltc->num_tags));
54
55         impl->cbc_clear(ltc, first, limit);
56         impl->cbc_wait(ltc);
57 }
58
59 static int
60 nvkm_ltc_zbc_color_get(struct nvkm_ltc *obj, int index, const u32 color[4])
61 {
62         struct nvkm_ltc_priv *ltc = container_of(obj, typeof(*ltc), base);
63         const struct nvkm_ltc_impl *impl = (void *)nv_oclass(ltc);
64         memcpy(ltc->zbc_color[index], color, sizeof(ltc->zbc_color[index]));
65         impl->zbc_clear_color(ltc, index, color);
66         return index;
67 }
68
69 static int
70 nvkm_ltc_zbc_depth_get(struct nvkm_ltc *obj, int index, const u32 depth)
71 {
72         struct nvkm_ltc_priv *ltc = container_of(obj, typeof(*ltc), base);
73         const struct nvkm_ltc_impl *impl = (void *)nv_oclass(ltc);
74         ltc->zbc_depth[index] = depth;
75         impl->zbc_clear_depth(ltc, index, depth);
76         return index;
77 }
78
79 int
80 _nvkm_ltc_init(struct nvkm_object *object)
81 {
82         struct nvkm_ltc_priv *ltc = (void *)object;
83         const struct nvkm_ltc_impl *impl = (void *)nv_oclass(object);
84         int ret, i;
85
86         ret = nvkm_subdev_init(&ltc->base.subdev);
87         if (ret)
88                 return ret;
89
90         for (i = ltc->base.zbc_min; i <= ltc->base.zbc_max; i++) {
91                 impl->zbc_clear_color(ltc, i, ltc->zbc_color[i]);
92                 impl->zbc_clear_depth(ltc, i, ltc->zbc_depth[i]);
93         }
94
95         return 0;
96 }
97
98 int
99 nvkm_ltc_create_(struct nvkm_object *parent, struct nvkm_object *engine,
100                  struct nvkm_oclass *oclass, int length, void **pobject)
101 {
102         const struct nvkm_ltc_impl *impl = (void *)oclass;
103         struct nvkm_ltc_priv *ltc;
104         int ret;
105
106         ret = nvkm_subdev_create_(parent, engine, oclass, 0, "PLTCG",
107                                   "l2c", length, pobject);
108         ltc = *pobject;
109         if (ret)
110                 return ret;
111
112         memset(ltc->zbc_color, 0x00, sizeof(ltc->zbc_color));
113         memset(ltc->zbc_depth, 0x00, sizeof(ltc->zbc_depth));
114
115         ltc->base.subdev.intr = impl->intr;
116         ltc->base.tags_alloc = nvkm_ltc_tags_alloc;
117         ltc->base.tags_free = nvkm_ltc_tags_free;
118         ltc->base.tags_clear = nvkm_ltc_tags_clear;
119         ltc->base.zbc_min = 1; /* reserve 0 for disabled */
120         ltc->base.zbc_max = min(impl->zbc, NVKM_LTC_MAX_ZBC_CNT) - 1;
121         ltc->base.zbc_color_get = nvkm_ltc_zbc_color_get;
122         ltc->base.zbc_depth_get = nvkm_ltc_zbc_depth_get;
123         return 0;
124 }