• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright 2013 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 
25 #include "nvc0.h"
26 #include "ctxnvc0.h"
27 
28 /*******************************************************************************
29  * Graphics object classes
30  ******************************************************************************/
31 
32 struct nouveau_oclass
33 nvc8_graph_sclass[] = {
34 	{ 0x902d, &nouveau_object_ofuncs },
35 	{ 0x9039, &nouveau_object_ofuncs },
36 	{ FERMI_A, &nvc0_fermi_ofuncs, nvc0_graph_9097_omthds },
37 	{ FERMI_B, &nvc0_fermi_ofuncs, nvc0_graph_9097_omthds },
38 	{ FERMI_C, &nvc0_fermi_ofuncs, nvc0_graph_9097_omthds },
39 	{ FERMI_COMPUTE_A, &nouveau_object_ofuncs, nvc0_graph_90c0_omthds },
40 	{}
41 };
42 
43 /*******************************************************************************
44  * PGRAPH register lists
45  ******************************************************************************/
46 
47 static const struct nvc0_graph_init
48 nvc8_graph_init_sm_0[] = {
49 	{ 0x419e00,   1, 0x04, 0x00000000 },
50 	{ 0x419ea0,   1, 0x04, 0x00000000 },
51 	{ 0x419ea4,   1, 0x04, 0x00000100 },
52 	{ 0x419ea8,   1, 0x04, 0x00001100 },
53 	{ 0x419eac,   1, 0x04, 0x11100f02 },
54 	{ 0x419eb0,   1, 0x04, 0x00000003 },
55 	{ 0x419eb4,   4, 0x04, 0x00000000 },
56 	{ 0x419ec8,   1, 0x04, 0x06060618 },
57 	{ 0x419ed0,   1, 0x04, 0x0eff0e38 },
58 	{ 0x419ed4,   1, 0x04, 0x011104f1 },
59 	{ 0x419edc,   1, 0x04, 0x00000000 },
60 	{ 0x419f00,   1, 0x04, 0x00000000 },
61 	{ 0x419f2c,   1, 0x04, 0x00000000 },
62 	{}
63 };
64 
65 static const struct nvc0_graph_pack
66 nvc8_graph_pack_mmio[] = {
67 	{ nvc0_graph_init_main_0 },
68 	{ nvc0_graph_init_fe_0 },
69 	{ nvc0_graph_init_pri_0 },
70 	{ nvc0_graph_init_rstr2d_0 },
71 	{ nvc0_graph_init_pd_0 },
72 	{ nvc0_graph_init_ds_0 },
73 	{ nvc0_graph_init_scc_0 },
74 	{ nvc0_graph_init_prop_0 },
75 	{ nvc0_graph_init_gpc_unk_0 },
76 	{ nvc0_graph_init_setup_0 },
77 	{ nvc0_graph_init_crstr_0 },
78 	{ nvc1_graph_init_setup_1 },
79 	{ nvc0_graph_init_zcull_0 },
80 	{ nvc0_graph_init_gpm_0 },
81 	{ nvc0_graph_init_gpc_unk_1 },
82 	{ nvc0_graph_init_gcc_0 },
83 	{ nvc0_graph_init_tpccs_0 },
84 	{ nvc0_graph_init_tex_0 },
85 	{ nvc0_graph_init_pe_0 },
86 	{ nvc0_graph_init_l1c_0 },
87 	{ nvc0_graph_init_wwdx_0 },
88 	{ nvc0_graph_init_tpccs_1 },
89 	{ nvc0_graph_init_mpc_0 },
90 	{ nvc8_graph_init_sm_0 },
91 	{ nvc0_graph_init_be_0 },
92 	{ nvc0_graph_init_fe_1 },
93 	{ nvc0_graph_init_pe_1 },
94 	{}
95 };
96 
97 /*******************************************************************************
98  * PGRAPH engine/subdev functions
99  ******************************************************************************/
100 
101 struct nouveau_oclass *
102 nvc8_graph_oclass = &(struct nvc0_graph_oclass) {
103 	.base.handle = NV_ENGINE(GR, 0xc8),
104 	.base.ofuncs = &(struct nouveau_ofuncs) {
105 		.ctor = nvc0_graph_ctor,
106 		.dtor = nvc0_graph_dtor,
107 		.init = nvc0_graph_init,
108 		.fini = _nouveau_graph_fini,
109 	},
110 	.cclass = &nvc8_grctx_oclass,
111 	.sclass = nvc8_graph_sclass,
112 	.mmio = nvc8_graph_pack_mmio,
113 	.fecs.ucode = &nvc0_graph_fecs_ucode,
114 	.gpccs.ucode = &nvc0_graph_gpccs_ucode,
115 }.base;
116