LCOV - code coverage report
Current view: top level - drivers/gpu/drm/amd/amdgpu - psp_v11_0_8.c (source / functions) Hit Total Coverage
Test: coverage.info Lines: 0 82 0.0 %
Date: 2022-12-09 01:23:36 Functions: 0 7 0.0 %

          Line data    Source code
       1             : /*
       2             :  * Copyright 2021 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 "amdgpu_psp.h"
      25             : #include "amdgpu_ucode.h"
      26             : #include "soc15_common.h"
      27             : #include "psp_v11_0_8.h"
      28             : 
      29             : #include "mp/mp_11_0_8_offset.h"
      30             : 
      31           0 : static int psp_v11_0_8_ring_init(struct psp_context *psp,
      32             :                               enum psp_ring_type ring_type)
      33             : {
      34           0 :         int ret = 0;
      35             :         struct psp_ring *ring;
      36           0 :         struct amdgpu_device *adev = psp->adev;
      37             : 
      38           0 :         ring = &psp->km_ring;
      39             : 
      40           0 :         ring->ring_type = ring_type;
      41             : 
      42             :         /* allocate 4k Page of Local Frame Buffer memory for ring */
      43           0 :         ring->ring_size = 0x1000;
      44           0 :         ret = amdgpu_bo_create_kernel(adev, ring->ring_size, PAGE_SIZE,
      45             :                                       AMDGPU_GEM_DOMAIN_VRAM,
      46             :                                       &adev->firmware.rbuf,
      47           0 :                                       &ring->ring_mem_mc_addr,
      48           0 :                                       (void **)&ring->ring_mem);
      49           0 :         if (ret) {
      50           0 :                 ring->ring_size = 0;
      51           0 :                 return ret;
      52             :         }
      53             : 
      54             :         return 0;
      55             : }
      56             : 
      57           0 : static int psp_v11_0_8_ring_stop(struct psp_context *psp,
      58             :                                enum psp_ring_type ring_type)
      59             : {
      60           0 :         int ret = 0;
      61           0 :         struct amdgpu_device *adev = psp->adev;
      62             : 
      63           0 :         if (amdgpu_sriov_vf(adev)) {
      64             :                 /* Write the ring destroy command*/
      65           0 :                 WREG32_SOC15(MP0, 0, mmMP0_SMN_C2PMSG_101,
      66             :                              GFX_CTRL_CMD_ID_DESTROY_GPCOM_RING);
      67             :                 /* there might be handshake issue with hardware which needs delay */
      68           0 :                 mdelay(20);
      69             :                 /* Wait for response flag (bit 31) */
      70           0 :                 ret = psp_wait_for(psp, SOC15_REG_OFFSET(MP0, 0, mmMP0_SMN_C2PMSG_101),
      71             :                                    0x80000000, 0x80000000, false);
      72             :         } else {
      73             :                 /* Write the ring destroy command*/
      74           0 :                 WREG32_SOC15(MP0, 0, mmMP0_SMN_C2PMSG_64,
      75             :                              GFX_CTRL_CMD_ID_DESTROY_RINGS);
      76             :                 /* there might be handshake issue with hardware which needs delay */
      77           0 :                 mdelay(20);
      78             :                 /* Wait for response flag (bit 31) */
      79           0 :                 ret = psp_wait_for(psp, SOC15_REG_OFFSET(MP0, 0, mmMP0_SMN_C2PMSG_64),
      80             :                                    0x80000000, 0x80000000, false);
      81             :         }
      82             : 
      83           0 :         return ret;
      84             : }
      85             : 
      86           0 : static int psp_v11_0_8_ring_create(struct psp_context *psp,
      87             :                                  enum psp_ring_type ring_type)
      88             : {
      89           0 :         int ret = 0;
      90           0 :         unsigned int psp_ring_reg = 0;
      91           0 :         struct psp_ring *ring = &psp->km_ring;
      92           0 :         struct amdgpu_device *adev = psp->adev;
      93             : 
      94           0 :         if (amdgpu_sriov_vf(adev)) {
      95           0 :                 ret = psp_v11_0_8_ring_stop(psp, ring_type);
      96           0 :                 if (ret) {
      97           0 :                         DRM_ERROR("psp_v11_0_8_ring_stop_sriov failed!\n");
      98           0 :                         return ret;
      99             :                 }
     100             : 
     101             :                 /* Write low address of the ring to C2PMSG_102 */
     102           0 :                 psp_ring_reg = lower_32_bits(ring->ring_mem_mc_addr);
     103           0 :                 WREG32_SOC15(MP0, 0, mmMP0_SMN_C2PMSG_102, psp_ring_reg);
     104             :                 /* Write high address of the ring to C2PMSG_103 */
     105           0 :                 psp_ring_reg = upper_32_bits(ring->ring_mem_mc_addr);
     106           0 :                 WREG32_SOC15(MP0, 0, mmMP0_SMN_C2PMSG_103, psp_ring_reg);
     107             : 
     108             :                 /* Write the ring initialization command to C2PMSG_101 */
     109           0 :                 WREG32_SOC15(MP0, 0, mmMP0_SMN_C2PMSG_101,
     110             :                              GFX_CTRL_CMD_ID_INIT_GPCOM_RING);
     111             : 
     112             :                 /* there might be handshake issue with hardware which needs delay */
     113           0 :                 mdelay(20);
     114             : 
     115             :                 /* Wait for response flag (bit 31) in C2PMSG_101 */
     116           0 :                 ret = psp_wait_for(psp, SOC15_REG_OFFSET(MP0, 0, mmMP0_SMN_C2PMSG_101),
     117             :                                    0x80000000, 0x8000FFFF, false);
     118             : 
     119             :         } else {
     120             :                 /* Wait for sOS ready for ring creation */
     121           0 :                 ret = psp_wait_for(psp, SOC15_REG_OFFSET(MP0, 0, mmMP0_SMN_C2PMSG_64),
     122             :                                    0x80000000, 0x80000000, false);
     123           0 :                 if (ret) {
     124           0 :                         DRM_ERROR("Failed to wait for trust OS ready for ring creation\n");
     125           0 :                         return ret;
     126             :                 }
     127             : 
     128             :                 /* Write low address of the ring to C2PMSG_69 */
     129           0 :                 psp_ring_reg = lower_32_bits(ring->ring_mem_mc_addr);
     130           0 :                 WREG32_SOC15(MP0, 0, mmMP0_SMN_C2PMSG_69, psp_ring_reg);
     131             :                 /* Write high address of the ring to C2PMSG_70 */
     132           0 :                 psp_ring_reg = upper_32_bits(ring->ring_mem_mc_addr);
     133           0 :                 WREG32_SOC15(MP0, 0, mmMP0_SMN_C2PMSG_70, psp_ring_reg);
     134             :                 /* Write size of ring to C2PMSG_71 */
     135           0 :                 psp_ring_reg = ring->ring_size;
     136           0 :                 WREG32_SOC15(MP0, 0, mmMP0_SMN_C2PMSG_71, psp_ring_reg);
     137             :                 /* Write the ring initialization command to C2PMSG_64 */
     138           0 :                 psp_ring_reg = ring_type;
     139           0 :                 psp_ring_reg = psp_ring_reg << 16;
     140           0 :                 WREG32_SOC15(MP0, 0, mmMP0_SMN_C2PMSG_64, psp_ring_reg);
     141             : 
     142             :                 /* there might be handshake issue with hardware which needs delay */
     143           0 :                 mdelay(20);
     144             : 
     145             :                 /* Wait for response flag (bit 31) in C2PMSG_64 */
     146           0 :                 ret = psp_wait_for(psp, SOC15_REG_OFFSET(MP0, 0, mmMP0_SMN_C2PMSG_64),
     147             :                                    0x80000000, 0x8000FFFF, false);
     148             :         }
     149             : 
     150             :         return ret;
     151             : }
     152             : 
     153           0 : static int psp_v11_0_8_ring_destroy(struct psp_context *psp,
     154             :                                   enum psp_ring_type ring_type)
     155             : {
     156           0 :         int ret = 0;
     157           0 :         struct psp_ring *ring = &psp->km_ring;
     158           0 :         struct amdgpu_device *adev = psp->adev;
     159             : 
     160           0 :         ret = psp_v11_0_8_ring_stop(psp, ring_type);
     161           0 :         if (ret)
     162           0 :                 DRM_ERROR("Fail to stop psp ring\n");
     163             : 
     164           0 :         amdgpu_bo_free_kernel(&adev->firmware.rbuf,
     165           0 :                               &ring->ring_mem_mc_addr,
     166           0 :                               (void **)&ring->ring_mem);
     167             : 
     168           0 :         return ret;
     169             : }
     170             : 
     171           0 : static uint32_t psp_v11_0_8_ring_get_wptr(struct psp_context *psp)
     172             : {
     173             :         uint32_t data;
     174           0 :         struct amdgpu_device *adev = psp->adev;
     175             : 
     176           0 :         if (amdgpu_sriov_vf(adev))
     177           0 :                 data = RREG32_SOC15(MP0, 0, mmMP0_SMN_C2PMSG_102);
     178             :         else
     179           0 :                 data = RREG32_SOC15(MP0, 0, mmMP0_SMN_C2PMSG_67);
     180             : 
     181           0 :         return data;
     182             : }
     183             : 
     184           0 : static void psp_v11_0_8_ring_set_wptr(struct psp_context *psp, uint32_t value)
     185             : {
     186           0 :         struct amdgpu_device *adev = psp->adev;
     187             : 
     188           0 :         if (amdgpu_sriov_vf(adev)) {
     189           0 :                 WREG32_SOC15(MP0, 0, mmMP0_SMN_C2PMSG_102, value);
     190           0 :                 WREG32_SOC15(MP0, 0, mmMP0_SMN_C2PMSG_101,
     191             :                              GFX_CTRL_CMD_ID_CONSUME_CMD);
     192             :         } else
     193           0 :                 WREG32_SOC15(MP0, 0, mmMP0_SMN_C2PMSG_67, value);
     194           0 : }
     195             : 
     196             : static const struct psp_funcs psp_v11_0_8_funcs = {
     197             :         .ring_init = psp_v11_0_8_ring_init,
     198             :         .ring_create = psp_v11_0_8_ring_create,
     199             :         .ring_stop = psp_v11_0_8_ring_stop,
     200             :         .ring_destroy = psp_v11_0_8_ring_destroy,
     201             :         .ring_get_wptr = psp_v11_0_8_ring_get_wptr,
     202             :         .ring_set_wptr = psp_v11_0_8_ring_set_wptr,
     203             : };
     204             : 
     205           0 : void psp_v11_0_8_set_psp_funcs(struct psp_context *psp)
     206             : {
     207           0 :         psp->funcs = &psp_v11_0_8_funcs;
     208           0 : }

Generated by: LCOV version 1.14