ARM: pmu: add support for interrupt-affinity property
[linux/fpc-iii.git] / drivers / gpu / drm / nouveau / nvkm / subdev / ltc / gm107.c
blob6b3f6f4ce1076a65dc06fa66b36c228ec9f8e2c6
1 /*
2 * Copyright 2014 Red Hat Inc.
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:
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
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.
22 * Authors: Ben Skeggs
24 #include "priv.h"
26 #include <subdev/fb.h>
27 #include <subdev/timer.h>
29 static void
30 gm107_ltc_cbc_clear(struct nvkm_ltc_priv *priv, u32 start, u32 limit)
32 nv_wr32(priv, 0x17e270, start);
33 nv_wr32(priv, 0x17e274, limit);
34 nv_wr32(priv, 0x17e26c, 0x00000004);
37 static void
38 gm107_ltc_cbc_wait(struct nvkm_ltc_priv *priv)
40 int c, s;
41 for (c = 0; c < priv->ltc_nr; c++) {
42 for (s = 0; s < priv->lts_nr; s++)
43 nv_wait(priv, 0x14046c + c * 0x2000 + s * 0x200, ~0, 0);
47 static void
48 gm107_ltc_zbc_clear_color(struct nvkm_ltc_priv *priv, int i, const u32 color[4])
50 nv_mask(priv, 0x17e338, 0x0000000f, i);
51 nv_wr32(priv, 0x17e33c, color[0]);
52 nv_wr32(priv, 0x17e340, color[1]);
53 nv_wr32(priv, 0x17e344, color[2]);
54 nv_wr32(priv, 0x17e348, color[3]);
57 static void
58 gm107_ltc_zbc_clear_depth(struct nvkm_ltc_priv *priv, int i, const u32 depth)
60 nv_mask(priv, 0x17e338, 0x0000000f, i);
61 nv_wr32(priv, 0x17e34c, depth);
64 static void
65 gm107_ltc_lts_isr(struct nvkm_ltc_priv *priv, int ltc, int lts)
67 u32 base = 0x140000 + (ltc * 0x2000) + (lts * 0x400);
68 u32 stat = nv_rd32(priv, base + 0x00c);
70 if (stat) {
71 nv_info(priv, "LTC%d_LTS%d: 0x%08x\n", ltc, lts, stat);
72 nv_wr32(priv, base + 0x00c, stat);
76 static void
77 gm107_ltc_intr(struct nvkm_subdev *subdev)
79 struct nvkm_ltc_priv *priv = (void *)subdev;
80 u32 mask;
82 mask = nv_rd32(priv, 0x00017c);
83 while (mask) {
84 u32 lts, ltc = __ffs(mask);
85 for (lts = 0; lts < priv->lts_nr; lts++)
86 gm107_ltc_lts_isr(priv, ltc, lts);
87 mask &= ~(1 << ltc);
91 static int
92 gm107_ltc_init(struct nvkm_object *object)
94 struct nvkm_ltc_priv *priv = (void *)object;
95 u32 lpg128 = !(nv_rd32(priv, 0x100c80) & 0x00000001);
96 int ret;
98 ret = nvkm_ltc_init(priv);
99 if (ret)
100 return ret;
102 nv_wr32(priv, 0x17e27c, priv->ltc_nr);
103 nv_wr32(priv, 0x17e278, priv->tag_base);
104 nv_mask(priv, 0x17e264, 0x00000002, lpg128 ? 0x00000002 : 0x00000000);
105 return 0;
108 static int
109 gm107_ltc_ctor(struct nvkm_object *parent, struct nvkm_object *engine,
110 struct nvkm_oclass *oclass, void *data, u32 size,
111 struct nvkm_object **pobject)
113 struct nvkm_fb *pfb = nvkm_fb(parent);
114 struct nvkm_ltc_priv *priv;
115 u32 parts, mask;
116 int ret, i;
118 ret = nvkm_ltc_create(parent, engine, oclass, &priv);
119 *pobject = nv_object(priv);
120 if (ret)
121 return ret;
123 parts = nv_rd32(priv, 0x022438);
124 mask = nv_rd32(priv, 0x021c14);
125 for (i = 0; i < parts; i++) {
126 if (!(mask & (1 << i)))
127 priv->ltc_nr++;
129 priv->lts_nr = nv_rd32(priv, 0x17e280) >> 28;
131 ret = gf100_ltc_init_tag_ram(pfb, priv);
132 if (ret)
133 return ret;
135 return 0;
138 struct nvkm_oclass *
139 gm107_ltc_oclass = &(struct nvkm_ltc_impl) {
140 .base.handle = NV_SUBDEV(LTC, 0xff),
141 .base.ofuncs = &(struct nvkm_ofuncs) {
142 .ctor = gm107_ltc_ctor,
143 .dtor = gf100_ltc_dtor,
144 .init = gm107_ltc_init,
145 .fini = _nvkm_ltc_fini,
147 .intr = gm107_ltc_intr,
148 .cbc_clear = gm107_ltc_cbc_clear,
149 .cbc_wait = gm107_ltc_cbc_wait,
150 .zbc = 16,
151 .zbc_clear_color = gm107_ltc_zbc_clear_color,
152 .zbc_clear_depth = gm107_ltc_zbc_clear_depth,
153 }.base;