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 #include "gf100.h" 25 #include "ctxgf100.h" 26 27 /******************************************************************************* 28 * PGRAPH register lists 29 ******************************************************************************/ 30 31 static const struct gf100_gr_init 32 gk110b_gr_init_l1c_0[] = { 33 { 0x419c98, 1, 0x04, 0x00000000 }, 34 { 0x419ca8, 1, 0x04, 0x00000000 }, 35 { 0x419cb0, 1, 0x04, 0x09000000 }, 36 { 0x419cb4, 1, 0x04, 0x00000000 }, 37 { 0x419cb8, 1, 0x04, 0x00b08bea }, 38 { 0x419c84, 1, 0x04, 0x00010384 }, 39 { 0x419cbc, 1, 0x04, 0x281b3646 }, 40 { 0x419cc0, 2, 0x04, 0x00000000 }, 41 { 0x419c80, 1, 0x04, 0x00020230 }, 42 { 0x419ccc, 2, 0x04, 0x00000000 }, 43 {} 44 }; 45 46 static const struct gf100_gr_init 47 gk110b_gr_init_sm_0[] = { 48 { 0x419e00, 1, 0x04, 0x00000080 }, 49 { 0x419ea0, 1, 0x04, 0x00000000 }, 50 { 0x419ee4, 1, 0x04, 0x00000000 }, 51 { 0x419ea4, 1, 0x04, 0x00000100 }, 52 { 0x419ea8, 1, 0x04, 0x00000000 }, 53 { 0x419eb4, 1, 0x04, 0x00000000 }, 54 { 0x419ebc, 2, 0x04, 0x00000000 }, 55 { 0x419edc, 1, 0x04, 0x00000000 }, 56 { 0x419f00, 1, 0x04, 0x00000000 }, 57 { 0x419ed0, 1, 0x04, 0x00002616 }, 58 { 0x419f74, 1, 0x04, 0x00015555 }, 59 { 0x419f80, 4, 0x04, 0x00000000 }, 60 {} 61 }; 62 63 static const struct gf100_gr_pack 64 gk110b_gr_pack_mmio[] = { 65 { gk104_gr_init_main_0 }, 66 { gk110_gr_init_fe_0 }, 67 { gf100_gr_init_pri_0 }, 68 { gf100_gr_init_rstr2d_0 }, 69 { gf119_gr_init_pd_0 }, 70 { gk110_gr_init_ds_0 }, 71 { gf100_gr_init_scc_0 }, 72 { gk110_gr_init_sked_0 }, 73 { gk110_gr_init_cwd_0 }, 74 { gf119_gr_init_prop_0 }, 75 { gf108_gr_init_gpc_unk_0 }, 76 { gf100_gr_init_setup_0 }, 77 { gf100_gr_init_crstr_0 }, 78 { gf108_gr_init_setup_1 }, 79 { gf100_gr_init_zcull_0 }, 80 { gf119_gr_init_gpm_0 }, 81 { gk110_gr_init_gpc_unk_1 }, 82 { gf100_gr_init_gcc_0 }, 83 { gk104_gr_init_tpccs_0 }, 84 { gk110_gr_init_tex_0 }, 85 { gk104_gr_init_pe_0 }, 86 { gk110b_gr_init_l1c_0 }, 87 { gf100_gr_init_mpc_0 }, 88 { gk110b_gr_init_sm_0 }, 89 { gf117_gr_init_pes_0 }, 90 { gf117_gr_init_wwdx_0 }, 91 { gf117_gr_init_cbm_0 }, 92 { gk104_gr_init_be_0 }, 93 { gf100_gr_init_fe_1 }, 94 {} 95 }; 96 97 /******************************************************************************* 98 * PGRAPH engine/subdev functions 99 ******************************************************************************/ 100 101 struct nvkm_oclass * 102 gk110b_gr_oclass = &(struct gf100_gr_oclass) { 103 .base.handle = NV_ENGINE(GR, 0xf1), 104 .base.ofuncs = &(struct nvkm_ofuncs) { 105 .ctor = gk104_gr_ctor, 106 .dtor = gf100_gr_dtor, 107 .init = gk104_gr_init, 108 .fini = _nvkm_gr_fini, 109 }, 110 .cclass = &gk110b_grctx_oclass, 111 .sclass = gk110_gr_sclass, 112 .mmio = gk110b_gr_pack_mmio, 113 .fecs.ucode = &gk110_gr_fecs_ucode, 114 .gpccs.ucode = &gk110_gr_gpccs_ucode, 115 .ppc_nr = 2, 116 }.base; 117