gf117.c 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  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. #include <nvif/class.h>
  27. /*******************************************************************************
  28. * PGRAPH register lists
  29. ******************************************************************************/
  30. static const struct gf100_gr_init
  31. gf117_gr_init_pe_0[] = {
  32. { 0x41980c, 1, 0x04, 0x00000010 },
  33. { 0x419844, 1, 0x04, 0x00000000 },
  34. { 0x41984c, 1, 0x04, 0x00005bc8 },
  35. { 0x419850, 3, 0x04, 0x00000000 },
  36. {}
  37. };
  38. const struct gf100_gr_init
  39. gf117_gr_init_pes_0[] = {
  40. { 0x41be04, 1, 0x04, 0x00000000 },
  41. { 0x41be08, 1, 0x04, 0x00000004 },
  42. { 0x41be0c, 1, 0x04, 0x00000000 },
  43. { 0x41be10, 1, 0x04, 0x003b8bc7 },
  44. { 0x41be14, 2, 0x04, 0x00000000 },
  45. {}
  46. };
  47. const struct gf100_gr_init
  48. gf117_gr_init_wwdx_0[] = {
  49. { 0x41bfd4, 1, 0x04, 0x00800000 },
  50. { 0x41bfdc, 1, 0x04, 0x00000000 },
  51. { 0x41bff8, 2, 0x04, 0x00000000 },
  52. {}
  53. };
  54. const struct gf100_gr_init
  55. gf117_gr_init_cbm_0[] = {
  56. { 0x41becc, 1, 0x04, 0x00000000 },
  57. { 0x41bee8, 2, 0x04, 0x00000000 },
  58. {}
  59. };
  60. static const struct gf100_gr_pack
  61. gf117_gr_pack_mmio[] = {
  62. { gf100_gr_init_main_0 },
  63. { gf100_gr_init_fe_0 },
  64. { gf100_gr_init_pri_0 },
  65. { gf100_gr_init_rstr2d_0 },
  66. { gf119_gr_init_pd_0 },
  67. { gf119_gr_init_ds_0 },
  68. { gf100_gr_init_scc_0 },
  69. { gf119_gr_init_prop_0 },
  70. { gf108_gr_init_gpc_unk_0 },
  71. { gf100_gr_init_setup_0 },
  72. { gf100_gr_init_crstr_0 },
  73. { gf108_gr_init_setup_1 },
  74. { gf100_gr_init_zcull_0 },
  75. { gf119_gr_init_gpm_0 },
  76. { gf119_gr_init_gpc_unk_1 },
  77. { gf100_gr_init_gcc_0 },
  78. { gf100_gr_init_tpccs_0 },
  79. { gf119_gr_init_tex_0 },
  80. { gf117_gr_init_pe_0 },
  81. { gf100_gr_init_l1c_0 },
  82. { gf100_gr_init_mpc_0 },
  83. { gf119_gr_init_sm_0 },
  84. { gf117_gr_init_pes_0 },
  85. { gf117_gr_init_wwdx_0 },
  86. { gf117_gr_init_cbm_0 },
  87. { gf100_gr_init_be_0 },
  88. { gf119_gr_init_fe_1 },
  89. {}
  90. };
  91. /*******************************************************************************
  92. * PGRAPH engine/subdev functions
  93. ******************************************************************************/
  94. #include "fuc/hubgf117.fuc3.h"
  95. static struct gf100_gr_ucode
  96. gf117_gr_fecs_ucode = {
  97. .code.data = gf117_grhub_code,
  98. .code.size = sizeof(gf117_grhub_code),
  99. .data.data = gf117_grhub_data,
  100. .data.size = sizeof(gf117_grhub_data),
  101. };
  102. #include "fuc/gpcgf117.fuc3.h"
  103. static struct gf100_gr_ucode
  104. gf117_gr_gpccs_ucode = {
  105. .code.data = gf117_grgpc_code,
  106. .code.size = sizeof(gf117_grgpc_code),
  107. .data.data = gf117_grgpc_data,
  108. .data.size = sizeof(gf117_grgpc_data),
  109. };
  110. static const struct gf100_gr_func
  111. gf117_gr = {
  112. .init = gf100_gr_init,
  113. .mmio = gf117_gr_pack_mmio,
  114. .fecs.ucode = &gf117_gr_fecs_ucode,
  115. .gpccs.ucode = &gf117_gr_gpccs_ucode,
  116. .rops = gf100_gr_rops,
  117. .ppc_nr = 1,
  118. .grctx = &gf117_grctx,
  119. .sclass = {
  120. { -1, -1, FERMI_TWOD_A },
  121. { -1, -1, FERMI_MEMORY_TO_MEMORY_FORMAT_A },
  122. { -1, -1, FERMI_A, &gf100_fermi },
  123. { -1, -1, FERMI_B, &gf100_fermi },
  124. { -1, -1, FERMI_C, &gf100_fermi },
  125. { -1, -1, FERMI_COMPUTE_A },
  126. { -1, -1, FERMI_COMPUTE_B },
  127. {}
  128. }
  129. };
  130. int
  131. gf117_gr_new(struct nvkm_device *device, int index, struct nvkm_gr **pgr)
  132. {
  133. return gf100_gr_new_(&gf117_gr, device, index, pgr);
  134. }