drm/nouveau/gr/gm200: switch over to using sw_method_init from firmware
[deliverable/linux.git] / drivers / gpu / drm / nouveau / nvkm / engine / gr / ctxgm200.c
CommitLineData
3fed3ea9
BS
1/*
2 * Copyright 2015 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 "ctxgf100.h"
25
3fed3ea9
BS
26/*******************************************************************************
27 * PGRAPH context implementation
28 ******************************************************************************/
29
a032fb9d 30void
9ec28052 31gm200_grctx_generate_tpcid(struct gf100_gr *gr)
3fed3ea9 32{
276836d4 33 struct nvkm_device *device = gr->base.engine.subdev.device;
3fed3ea9
BS
34 int gpc, tpc, id;
35
36 for (tpc = 0, id = 0; tpc < 4; tpc++) {
bfee3f3d
BS
37 for (gpc = 0; gpc < gr->gpc_nr; gpc++) {
38 if (tpc < gr->tpc_nr[gpc]) {
276836d4
BS
39 nvkm_wr32(device, TPC_UNIT(gpc, tpc, 0x698), id);
40 nvkm_wr32(device, GPC_UNIT(gpc, 0x0c10 + tpc * 4), id);
41 nvkm_wr32(device, TPC_UNIT(gpc, tpc, 0x088), id);
3fed3ea9
BS
42 id++;
43 }
44 }
45 }
46}
47
48static void
9ec28052 49gm200_grctx_generate_rop_active_fbps(struct gf100_gr *gr)
3fed3ea9 50{
276836d4
BS
51 struct nvkm_device *device = gr->base.engine.subdev.device;
52 const u32 fbp_count = nvkm_rd32(device, 0x12006c);
53 nvkm_mask(device, 0x408850, 0x0000000f, fbp_count); /* zrop */
54 nvkm_mask(device, 0x408958, 0x0000000f, fbp_count); /* crop */
3fed3ea9
BS
55}
56
a032fb9d 57void
9ec28052 58gm200_grctx_generate_405b60(struct gf100_gr *gr)
3fed3ea9 59{
276836d4 60 struct nvkm_device *device = gr->base.engine.subdev.device;
bfee3f3d
BS
61 const u32 dist_nr = DIV_ROUND_UP(gr->tpc_total, 4);
62 u32 dist[TPC_MAX / 4] = {};
3fed3ea9
BS
63 u32 gpcs[GPC_MAX] = {};
64 u8 tpcnr[GPC_MAX];
65 int tpc, gpc, i;
66
bfee3f3d 67 memcpy(tpcnr, gr->tpc_nr, sizeof(gr->tpc_nr));
3fed3ea9
BS
68
69 /* won't result in the same distribution as the binary driver where
70 * some of the gpcs have more tpcs than others, but this shall do
71 * for the moment. the code for earlier gpus has this issue too.
72 */
bfee3f3d 73 for (gpc = -1, i = 0; i < gr->tpc_total; i++) {
3fed3ea9 74 do {
bfee3f3d 75 gpc = (gpc + 1) % gr->gpc_nr;
3fed3ea9 76 } while(!tpcnr[gpc]);
bfee3f3d 77 tpc = gr->tpc_nr[gpc] - tpcnr[gpc]--;
3fed3ea9
BS
78
79 dist[i / 4] |= ((gpc << 4) | tpc) << ((i % 4) * 8);
80 gpcs[gpc] |= i << (tpc * 8);
81 }
82
83 for (i = 0; i < dist_nr; i++)
276836d4 84 nvkm_wr32(device, 0x405b60 + (i * 4), dist[i]);
bfee3f3d 85 for (i = 0; i < gr->gpc_nr; i++)
276836d4 86 nvkm_wr32(device, 0x405ba0 + (i * 4), gpcs[i]);
3fed3ea9
BS
87}
88
426b20e4 89void
9ec28052 90gm200_grctx_generate_main(struct gf100_gr *gr, struct gf100_grctx *info)
3fed3ea9 91{
276836d4 92 struct nvkm_device *device = gr->base.engine.subdev.device;
27f3d6cf 93 const struct gf100_grctx_func *grctx = gr->func->grctx;
3fed3ea9
BS
94 u32 tmp;
95 int i;
96
43bc83b9 97 gf100_gr_mmio(gr, gr->fuc_sw_ctx);
3fed3ea9 98
276836d4 99 nvkm_wr32(device, 0x404154, 0x00000000);
3fed3ea9 100
27f3d6cf
BS
101 grctx->bundle(info);
102 grctx->pagepool(info);
103 grctx->attrib(info);
104 grctx->unkn(gr);
3fed3ea9 105
9ec28052 106 gm200_grctx_generate_tpcid(gr);
bfee3f3d
BS
107 gf100_grctx_generate_r406028(gr);
108 gk104_grctx_generate_r418bb8(gr);
3fed3ea9
BS
109
110 for (i = 0; i < 8; i++)
276836d4
BS
111 nvkm_wr32(device, 0x4064d0 + (i * 0x04), 0x00000000);
112 nvkm_wr32(device, 0x406500, 0x00000000);
3fed3ea9 113
276836d4 114 nvkm_wr32(device, 0x405b00, (gr->tpc_total << 8) | gr->gpc_nr);
3fed3ea9 115
9ec28052 116 gm200_grctx_generate_rop_active_fbps(gr);
3fed3ea9 117
bfee3f3d
BS
118 for (tmp = 0, i = 0; i < gr->gpc_nr; i++)
119 tmp |= ((1 << gr->tpc_nr[i]) - 1) << (i * 4);
276836d4 120 nvkm_wr32(device, 0x4041c4, tmp);
3fed3ea9 121
9ec28052 122 gm200_grctx_generate_405b60(gr);
3fed3ea9 123
c0e8550d 124 gf100_gr_icmd(gr, gr->fuc_bundle);
276836d4 125 nvkm_wr32(device, 0x404154, 0x00000800);
d4a43a61 126 gf100_gr_mthd(gr, gr->fuc_method);
3fed3ea9 127
276836d4
BS
128 nvkm_mask(device, 0x418e94, 0xffffffff, 0xc4230000);
129 nvkm_mask(device, 0x418e4c, 0xffffffff, 0x70000000);
3fed3ea9
BS
130}
131
27f3d6cf 132const struct gf100_grctx_func
9ec28052
BS
133gm200_grctx = {
134 .main = gm200_grctx_generate_main,
3fed3ea9 135 .unkn = gk104_grctx_generate_unkn,
3fed3ea9
BS
136 .bundle = gm107_grctx_generate_bundle,
137 .bundle_size = 0x3000,
138 .bundle_min_gpm_fifo_depth = 0x180,
139 .bundle_token_limit = 0x780,
140 .pagepool = gm107_grctx_generate_pagepool,
141 .pagepool_size = 0x20000,
142 .attrib = gm107_grctx_generate_attrib,
143 .attrib_nr_max = 0x600,
144 .attrib_nr = 0x400,
145 .alpha_nr_max = 0x1800,
146 .alpha_nr = 0x1000,
27f3d6cf 147};
This page took 0.079248 seconds and 5 git commands to generate.