df_v1_7.c 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. /*
  2. * Copyright 2018 Advanced Micro Devices, 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. */
  23. #include "amdgpu.h"
  24. #include "df_v1_7.h"
  25. #include "df/df_1_7_default.h"
  26. #include "df/df_1_7_offset.h"
  27. #include "df/df_1_7_sh_mask.h"
  28. static u32 df_v1_7_channel_number[] = {1, 2, 0, 4, 0, 8, 0, 16, 2};
  29. static void df_v1_7_init (struct amdgpu_device *adev)
  30. {
  31. }
  32. static void df_v1_7_enable_broadcast_mode(struct amdgpu_device *adev,
  33. bool enable)
  34. {
  35. u32 tmp;
  36. if (enable) {
  37. tmp = RREG32_SOC15(DF, 0, mmFabricConfigAccessControl);
  38. tmp &= ~FabricConfigAccessControl__CfgRegInstAccEn_MASK;
  39. WREG32_SOC15(DF, 0, mmFabricConfigAccessControl, tmp);
  40. } else
  41. WREG32_SOC15(DF, 0, mmFabricConfigAccessControl,
  42. mmFabricConfigAccessControl_DEFAULT);
  43. }
  44. static u32 df_v1_7_get_fb_channel_number(struct amdgpu_device *adev)
  45. {
  46. u32 tmp;
  47. tmp = RREG32_SOC15(DF, 0, mmDF_CS_AON0_DramBaseAddress0);
  48. tmp &= DF_CS_AON0_DramBaseAddress0__IntLvNumChan_MASK;
  49. tmp >>= DF_CS_AON0_DramBaseAddress0__IntLvNumChan__SHIFT;
  50. return tmp;
  51. }
  52. static u32 df_v1_7_get_hbm_channel_number(struct amdgpu_device *adev)
  53. {
  54. int fb_channel_number;
  55. fb_channel_number = adev->df_funcs->get_fb_channel_number(adev);
  56. return df_v1_7_channel_number[fb_channel_number];
  57. }
  58. static void df_v1_7_update_medium_grain_clock_gating(struct amdgpu_device *adev,
  59. bool enable)
  60. {
  61. u32 tmp;
  62. /* Put DF on broadcast mode */
  63. adev->df_funcs->enable_broadcast_mode(adev, true);
  64. if (enable && (adev->cg_flags & AMD_CG_SUPPORT_DF_MGCG)) {
  65. tmp = RREG32_SOC15(DF, 0, mmDF_PIE_AON0_DfGlobalClkGater);
  66. tmp &= ~DF_PIE_AON0_DfGlobalClkGater__MGCGMode_MASK;
  67. tmp |= DF_V1_7_MGCG_ENABLE_15_CYCLE_DELAY;
  68. WREG32_SOC15(DF, 0, mmDF_PIE_AON0_DfGlobalClkGater, tmp);
  69. } else {
  70. tmp = RREG32_SOC15(DF, 0, mmDF_PIE_AON0_DfGlobalClkGater);
  71. tmp &= ~DF_PIE_AON0_DfGlobalClkGater__MGCGMode_MASK;
  72. tmp |= DF_V1_7_MGCG_DISABLE;
  73. WREG32_SOC15(DF, 0, mmDF_PIE_AON0_DfGlobalClkGater, tmp);
  74. }
  75. /* Exit boradcast mode */
  76. adev->df_funcs->enable_broadcast_mode(adev, false);
  77. }
  78. static void df_v1_7_get_clockgating_state(struct amdgpu_device *adev,
  79. u32 *flags)
  80. {
  81. u32 tmp;
  82. /* AMD_CG_SUPPORT_DF_MGCG */
  83. tmp = RREG32_SOC15(DF, 0, mmDF_PIE_AON0_DfGlobalClkGater);
  84. if (tmp & DF_V1_7_MGCG_ENABLE_15_CYCLE_DELAY)
  85. *flags |= AMD_CG_SUPPORT_DF_MGCG;
  86. }
  87. static void df_v1_7_enable_ecc_force_par_wr_rmw(struct amdgpu_device *adev,
  88. bool enable)
  89. {
  90. WREG32_FIELD15(DF, 0, DF_CS_AON0_CoherentSlaveModeCtrlA0,
  91. ForceParWrRMW, enable);
  92. }
  93. const struct amdgpu_df_funcs df_v1_7_funcs = {
  94. .init = df_v1_7_init,
  95. .enable_broadcast_mode = df_v1_7_enable_broadcast_mode,
  96. .get_fb_channel_number = df_v1_7_get_fb_channel_number,
  97. .get_hbm_channel_number = df_v1_7_get_hbm_channel_number,
  98. .update_medium_grain_clock_gating = df_v1_7_update_medium_grain_clock_gating,
  99. .get_clockgating_state = df_v1_7_get_clockgating_state,
  100. .enable_ecc_force_par_wr_rmw = df_v1_7_enable_ecc_force_par_wr_rmw,
  101. };