Linux Audio

Check our new training course

Loading...
v4.17
  1/*
  2 * Copyright 2016 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 * Author: Huang Rui
 23 *
 24 */
 25
 26#include <linux/firmware.h>
 27#include <drm/drmP.h>
 
 
 28#include "amdgpu.h"
 29#include "amdgpu_psp.h"
 30#include "amdgpu_ucode.h"
 31#include "soc15_common.h"
 32#include "psp_v3_1.h"
 33#include "psp_v10_0.h"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 34
 35static void psp_set_funcs(struct amdgpu_device *adev);
 36
 37static int psp_early_init(void *handle)
 38{
 39	struct amdgpu_device *adev = (struct amdgpu_device *)handle;
 40
 41	psp_set_funcs(adev);
 
 42
 43	return 0;
 
 
 44}
 45
 46static int psp_sw_init(void *handle)
 47{
 48	struct amdgpu_device *adev = (struct amdgpu_device *)handle;
 49	struct psp_context *psp = &adev->psp;
 50	int ret;
 51
 52	switch (adev->asic_type) {
 53	case CHIP_VEGA10:
 54	case CHIP_VEGA12:
 55		psp_v3_1_set_psp_funcs(psp);
 
 56		break;
 57	case CHIP_RAVEN:
 58		psp_v10_0_set_psp_funcs(psp);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 59		break;
 60	default:
 61		return -EINVAL;
 62	}
 63
 64	psp->adev = adev;
 65
 66	if (adev->firmware.load_type != AMDGPU_FW_LOAD_PSP)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 67		return 0;
 
 68
 69	ret = psp_init_microcode(psp);
 70	if (ret) {
 71		DRM_ERROR("Failed to load psp firmware!\n");
 72		return ret;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 73	}
 74
 75	return 0;
 76}
 77
 78static int psp_sw_fini(void *handle)
 79{
 80	struct amdgpu_device *adev = (struct amdgpu_device *)handle;
 81
 82	if (adev->firmware.load_type != AMDGPU_FW_LOAD_PSP)
 83		return 0;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 84
 85	release_firmware(adev->psp.sos_fw);
 86	adev->psp.sos_fw = NULL;
 87	release_firmware(adev->psp.asd_fw);
 88	adev->psp.asd_fw = NULL;
 89	return 0;
 90}
 91
 92int psp_wait_for(struct psp_context *psp, uint32_t reg_index,
 93		 uint32_t reg_val, uint32_t mask, bool check_changed)
 94{
 95	uint32_t val;
 96	int i;
 97	struct amdgpu_device *adev = psp->adev;
 98
 
 
 
 99	for (i = 0; i < adev->usec_timeout; i++) {
100		val = RREG32(reg_index);
101		if (check_changed) {
102			if (val != reg_val)
103				return 0;
104		} else {
105			if ((val & mask) == reg_val)
106				return 0;
107		}
108		udelay(1);
109	}
110
111	return -ETIME;
112}
113
114static int
115psp_cmd_submit_buf(struct psp_context *psp,
116		   struct amdgpu_firmware_info *ucode,
117		   struct psp_gfx_cmd_resp *cmd, uint64_t fence_mc_addr,
118		   int index)
119{
120	int ret;
 
 
 
 
 
 
 
 
 
 
 
 
121
122	memset(psp->cmd_buf_mem, 0, PSP_CMD_BUFFER_SIZE);
123
124	memcpy(psp->cmd_buf_mem, cmd, sizeof(struct psp_gfx_cmd_resp));
125
126	ret = psp_cmd_submit(psp, ucode, psp->cmd_buf_mc_addr,
127			     fence_mc_addr, index);
 
 
 
 
128
 
129	while (*((unsigned int *)psp->fence_buf) != index) {
130		msleep(1);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
131	}
132
 
 
 
133	return ret;
134}
135
136static void psp_prep_tmr_cmd_buf(struct psp_gfx_cmd_resp *cmd,
137				 uint64_t tmr_mc, uint32_t size)
 
138{
139	cmd->cmd_id = GFX_CMD_ID_SETUP_TMR;
 
 
 
 
 
 
 
140	cmd->cmd.cmd_setup_tmr.buf_phy_addr_lo = lower_32_bits(tmr_mc);
141	cmd->cmd.cmd_setup_tmr.buf_phy_addr_hi = upper_32_bits(tmr_mc);
142	cmd->cmd.cmd_setup_tmr.buf_size = size;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
143}
144
145/* Set up Trusted Memory Region */
146static int psp_tmr_init(struct psp_context *psp)
147{
148	int ret;
 
 
 
149
150	/*
151	 * Allocate 3M memory aligned to 1M from Frame Buffer (local
152	 * physical).
153	 *
154	 * Note: this memory need be reserved till the driver
155	 * uninitializes.
156	 */
157	ret = amdgpu_bo_create_kernel(psp->adev, 0x300000, 0x100000,
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
158				      AMDGPU_GEM_DOMAIN_VRAM,
159				      &psp->tmr_bo, &psp->tmr_mc_addr, &psp->tmr_buf);
160
161	return ret;
162}
163
 
 
 
 
 
 
 
 
 
 
 
 
164static int psp_tmr_load(struct psp_context *psp)
165{
166	int ret;
167	struct psp_gfx_cmd_resp *cmd;
168
 
 
 
 
 
 
169	cmd = kzalloc(sizeof(struct psp_gfx_cmd_resp), GFP_KERNEL);
170	if (!cmd)
171		return -ENOMEM;
172
173	psp_prep_tmr_cmd_buf(cmd, psp->tmr_mc_addr, 0x300000);
 
 
174
175	ret = psp_cmd_submit_buf(psp, NULL, cmd,
176				 psp->fence_buf_mc_addr, 1);
177	if (ret)
178		goto failed;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
179
180	kfree(cmd);
181
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
182	return 0;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
183
184failed:
185	kfree(cmd);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
186	return ret;
187}
188
189static void psp_prep_asd_cmd_buf(struct psp_gfx_cmd_resp *cmd,
190				 uint64_t asd_mc, uint64_t asd_mc_shared,
191				 uint32_t size, uint32_t shared_size)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
192{
193	cmd->cmd_id = GFX_CMD_ID_LOAD_ASD;
194	cmd->cmd.cmd_load_ta.app_phy_addr_lo = lower_32_bits(asd_mc);
195	cmd->cmd.cmd_load_ta.app_phy_addr_hi = upper_32_bits(asd_mc);
196	cmd->cmd.cmd_load_ta.app_len = size;
197
198	cmd->cmd.cmd_load_ta.cmd_buf_phy_addr_lo = lower_32_bits(asd_mc_shared);
199	cmd->cmd.cmd_load_ta.cmd_buf_phy_addr_hi = upper_32_bits(asd_mc_shared);
200	cmd->cmd.cmd_load_ta.cmd_buf_len = shared_size;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
201}
202
203static int psp_asd_init(struct psp_context *psp)
204{
205	int ret;
206
207	/*
208	 * Allocate 16k memory aligned to 4k from Frame Buffer (local
209	 * physical) for shared ASD <-> Driver
210	 */
211	ret = amdgpu_bo_create_kernel(psp->adev, PSP_ASD_SHARED_MEM_SIZE,
212				      PAGE_SIZE, AMDGPU_GEM_DOMAIN_VRAM,
213				      &psp->asd_shared_bo,
214				      &psp->asd_shared_mc_addr,
215				      &psp->asd_shared_buf);
216
217	return ret;
218}
219
220static int psp_asd_load(struct psp_context *psp)
 
 
 
 
 
 
 
 
 
 
 
221{
222	int ret;
223	struct psp_gfx_cmd_resp *cmd;
224
225	/* If PSP version doesn't match ASD version, asd loading will be failed.
226	 * add workaround to bypass it for sriov now.
227	 * TODO: add version check to make it common
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
228	 */
229	if (amdgpu_sriov_vf(psp->adev))
230		return 0;
231
232	cmd = kzalloc(sizeof(struct psp_gfx_cmd_resp), GFP_KERNEL);
233	if (!cmd)
234		return -ENOMEM;
235
236	memset(psp->fw_pri_buf, 0, PSP_1_MEG);
237	memcpy(psp->fw_pri_buf, psp->asd_start_addr, psp->asd_ucode_size);
238
239	psp_prep_asd_cmd_buf(cmd, psp->fw_pri_mc_addr, psp->asd_shared_mc_addr,
240			     psp->asd_ucode_size, PSP_ASD_SHARED_MEM_SIZE);
 
 
 
 
 
 
 
 
 
 
241
242	ret = psp_cmd_submit_buf(psp, NULL, cmd,
243				 psp->fence_buf_mc_addr, 2);
 
 
 
 
 
 
 
 
 
 
 
 
244
245	kfree(cmd);
246
247	return ret;
248}
249
250static int psp_hw_start(struct psp_context *psp)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
251{
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
252	struct amdgpu_device *adev = psp->adev;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
253	int ret;
254
255	if (!amdgpu_sriov_vf(adev) || !adev->in_gpu_reset) {
256		ret = psp_bootloader_load_sysdrv(psp);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
257		if (ret)
258			return ret;
 
259
260		ret = psp_bootloader_load_sos(psp);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
261		if (ret)
262			return ret;
263	}
264
265	ret = psp_ring_create(psp, PSP_RING_TYPE__KM);
266	if (ret)
267		return ret;
268
269	ret = psp_tmr_load(psp);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
270	if (ret)
271		return ret;
272
273	ret = psp_asd_load(psp);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
274	if (ret)
275		return ret;
276
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
277	return 0;
278}
279
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
280static int psp_np_fw_load(struct psp_context *psp)
281{
282	int i, ret;
283	struct amdgpu_firmware_info *ucode;
284	struct amdgpu_device* adev = psp->adev;
 
 
 
 
 
 
 
285
286	for (i = 0; i < adev->firmware.max_ucodes; i++) {
287		ucode = &adev->firmware.ucode[i];
288		if (!ucode->fw)
289			continue;
290
291		if (ucode->ucode_id == AMDGPU_UCODE_ID_SMC &&
292		    psp_smu_reload_quirk(psp))
 
 
 
293			continue;
294		if (amdgpu_sriov_vf(adev) &&
295		   (ucode->ucode_id == AMDGPU_UCODE_ID_SDMA0
296		    || ucode->ucode_id == AMDGPU_UCODE_ID_SDMA1
297		    || ucode->ucode_id == AMDGPU_UCODE_ID_RLC_G))
298			/*skip ucode loading in SRIOV VF */
299			continue;
300
301		ret = psp_prep_cmd_buf(ucode, psp->cmd);
302		if (ret)
303			return ret;
 
 
 
 
 
 
 
 
304
305		ret = psp_cmd_submit_buf(psp, ucode, psp->cmd,
306					 psp->fence_buf_mc_addr, i + 3);
307		if (ret)
308			return ret;
309
310#if 0
311		/* check if firmware loaded sucessfully */
312		if (!amdgpu_psp_check_fw_loading_status(adev, i))
313			return -EINVAL;
314#endif
 
 
 
 
315	}
316
317	return 0;
318}
319
320static int psp_load_fw(struct amdgpu_device *adev)
321{
322	int ret;
323	struct psp_context *psp = &adev->psp;
324
325	if (amdgpu_sriov_vf(adev) && adev->in_gpu_reset != 0)
 
326		goto skip_memalloc;
 
327
328	psp->cmd = kzalloc(sizeof(struct psp_gfx_cmd_resp), GFP_KERNEL);
329	if (!psp->cmd)
330		return -ENOMEM;
331
332	ret = amdgpu_bo_create_kernel(adev, PSP_1_MEG, PSP_1_MEG,
333					AMDGPU_GEM_DOMAIN_GTT,
334					&psp->fw_pri_bo,
335					&psp->fw_pri_mc_addr,
336					&psp->fw_pri_buf);
 
 
 
 
 
 
 
 
 
337	if (ret)
338		goto failed;
339
340	ret = amdgpu_bo_create_kernel(adev, PSP_FENCE_BUFFER_SIZE, PAGE_SIZE,
341					AMDGPU_GEM_DOMAIN_VRAM,
342					&psp->fence_buf_bo,
343					&psp->fence_buf_mc_addr,
344					&psp->fence_buf);
345	if (ret)
346		goto failed_mem2;
347
348	ret = amdgpu_bo_create_kernel(adev, PSP_CMD_BUFFER_SIZE, PAGE_SIZE,
349				      AMDGPU_GEM_DOMAIN_VRAM,
350				      &psp->cmd_buf_bo, &psp->cmd_buf_mc_addr,
351				      (void **)&psp->cmd_buf_mem);
352	if (ret)
353		goto failed_mem1;
354
355	memset(psp->fence_buf, 0, PSP_FENCE_BUFFER_SIZE);
356
357	ret = psp_ring_init(psp, PSP_RING_TYPE__KM);
358	if (ret)
359		goto failed_mem;
360
361	ret = psp_tmr_init(psp);
362	if (ret)
363		goto failed_mem;
364
365	ret = psp_asd_init(psp);
366	if (ret)
367		goto failed_mem;
368
369skip_memalloc:
370	ret = psp_hw_start(psp);
371	if (ret)
372		goto failed_mem;
373
374	ret = psp_np_fw_load(psp);
375	if (ret)
376		goto failed_mem;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
377
378	return 0;
379
380failed_mem:
381	amdgpu_bo_free_kernel(&psp->cmd_buf_bo,
382			      &psp->cmd_buf_mc_addr,
383			      (void **)&psp->cmd_buf_mem);
384failed_mem1:
385	amdgpu_bo_free_kernel(&psp->fence_buf_bo,
386			      &psp->fence_buf_mc_addr, &psp->fence_buf);
387failed_mem2:
388	amdgpu_bo_free_kernel(&psp->fw_pri_bo,
389			      &psp->fw_pri_mc_addr, &psp->fw_pri_buf);
390failed:
391	kfree(psp->cmd);
392	psp->cmd = NULL;
 
 
 
393	return ret;
394}
395
396static int psp_hw_init(void *handle)
397{
398	int ret;
399	struct amdgpu_device *adev = (struct amdgpu_device *)handle;
400
401
402	if (adev->firmware.load_type != AMDGPU_FW_LOAD_PSP)
403		return 0;
404
405	mutex_lock(&adev->firmware.mutex);
406	/*
407	 * This sequence is just used on hw_init only once, no need on
408	 * resume.
409	 */
410	ret = amdgpu_ucode_init_bo(adev);
411	if (ret)
412		goto failed;
413
414	ret = psp_load_fw(adev);
415	if (ret) {
416		DRM_ERROR("PSP firmware loading failed\n");
417		goto failed;
418	}
419
420	mutex_unlock(&adev->firmware.mutex);
421	return 0;
422
423failed:
424	adev->firmware.load_type = AMDGPU_FW_LOAD_DIRECT;
425	mutex_unlock(&adev->firmware.mutex);
426	return -EINVAL;
427}
428
429static int psp_hw_fini(void *handle)
430{
431	struct amdgpu_device *adev = (struct amdgpu_device *)handle;
432	struct psp_context *psp = &adev->psp;
433
434	if (adev->firmware.load_type != AMDGPU_FW_LOAD_PSP)
435		return 0;
 
 
 
 
 
436
437	amdgpu_ucode_fini_bo(adev);
438
 
439	psp_ring_destroy(psp, PSP_RING_TYPE__KM);
440
441	amdgpu_bo_free_kernel(&psp->tmr_bo, &psp->tmr_mc_addr, &psp->tmr_buf);
442	amdgpu_bo_free_kernel(&psp->fw_pri_bo,
443			      &psp->fw_pri_mc_addr, &psp->fw_pri_buf);
444	amdgpu_bo_free_kernel(&psp->fence_buf_bo,
445			      &psp->fence_buf_mc_addr, &psp->fence_buf);
446	amdgpu_bo_free_kernel(&psp->asd_shared_bo, &psp->asd_shared_mc_addr,
447			      &psp->asd_shared_buf);
448	amdgpu_bo_free_kernel(&psp->cmd_buf_bo, &psp->cmd_buf_mc_addr,
449			      (void **)&psp->cmd_buf_mem);
450
451	kfree(psp->cmd);
452	psp->cmd = NULL;
453
454	return 0;
455}
456
457static int psp_suspend(void *handle)
458{
459	int ret;
460	struct amdgpu_device *adev = (struct amdgpu_device *)handle;
461	struct psp_context *psp = &adev->psp;
462
463	if (adev->firmware.load_type != AMDGPU_FW_LOAD_PSP)
464		return 0;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
465
466	ret = psp_ring_stop(psp, PSP_RING_TYPE__KM);
467	if (ret) {
468		DRM_ERROR("PSP ring stop failed\n");
469		return ret;
470	}
471
472	return 0;
473}
474
475static int psp_resume(void *handle)
476{
477	int ret;
478	struct amdgpu_device *adev = (struct amdgpu_device *)handle;
479	struct psp_context *psp = &adev->psp;
480
481	if (adev->firmware.load_type != AMDGPU_FW_LOAD_PSP)
482		return 0;
483
484	DRM_INFO("PSP is resuming...\n");
485
 
 
 
 
 
 
 
 
486	mutex_lock(&adev->firmware.mutex);
487
488	ret = psp_hw_start(psp);
489	if (ret)
490		goto failed;
491
492	ret = psp_np_fw_load(psp);
493	if (ret)
494		goto failed;
495
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
496	mutex_unlock(&adev->firmware.mutex);
497
498	return 0;
499
500failed:
501	DRM_ERROR("PSP resume failed\n");
502	mutex_unlock(&adev->firmware.mutex);
503	return ret;
504}
505
506int psp_gpu_reset(struct amdgpu_device *adev)
507{
 
 
508	if (adev->firmware.load_type != AMDGPU_FW_LOAD_PSP)
509		return 0;
510
511	return psp_mode1_reset(&adev->psp);
 
 
 
 
512}
513
514static bool psp_check_fw_loading_status(struct amdgpu_device *adev,
515					enum AMDGPU_UCODE_ID ucode_type)
516{
517	struct amdgpu_firmware_info *ucode = NULL;
 
518
519	if (adev->firmware.load_type != AMDGPU_FW_LOAD_PSP) {
520		DRM_INFO("firmware is not loaded by PSP\n");
521		return true;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
522	}
523
524	if (!adev->firmware.fw_size)
525		return false;
526
527	ucode = &adev->firmware.ucode[ucode_type];
528	if (!ucode->fw || !ucode->ucode_size)
529		return false;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
530
531	return psp_compare_sram_data(&adev->psp, ucode, ucode_type);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
532}
533
534static int psp_set_clockgating_state(void *handle,
535				     enum amd_clockgating_state state)
536{
537	return 0;
538}
539
540static int psp_set_powergating_state(void *handle,
541				     enum amd_powergating_state state)
542{
543	return 0;
544}
545
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
546const struct amd_ip_funcs psp_ip_funcs = {
547	.name = "psp",
548	.early_init = psp_early_init,
549	.late_init = NULL,
550	.sw_init = psp_sw_init,
551	.sw_fini = psp_sw_fini,
552	.hw_init = psp_hw_init,
553	.hw_fini = psp_hw_fini,
554	.suspend = psp_suspend,
555	.resume = psp_resume,
556	.is_idle = NULL,
557	.check_soft_reset = NULL,
558	.wait_for_idle = NULL,
559	.soft_reset = NULL,
560	.set_clockgating_state = psp_set_clockgating_state,
561	.set_powergating_state = psp_set_powergating_state,
562};
563
564static const struct amdgpu_psp_funcs psp_funcs = {
565	.check_fw_loading_status = psp_check_fw_loading_status,
566};
567
568static void psp_set_funcs(struct amdgpu_device *adev)
 
 
 
 
 
 
569{
570	if (NULL == adev->firmware.funcs)
571		adev->firmware.funcs = &psp_funcs;
572}
573
574const struct amdgpu_ip_block_version psp_v3_1_ip_block =
575{
576	.type = AMD_IP_BLOCK_TYPE_PSP,
577	.major = 3,
578	.minor = 1,
579	.rev = 0,
580	.funcs = &psp_ip_funcs,
581};
582
583const struct amdgpu_ip_block_version psp_v10_0_ip_block =
584{
585	.type = AMD_IP_BLOCK_TYPE_PSP,
586	.major = 10,
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
587	.minor = 0,
588	.rev = 0,
589	.funcs = &psp_ip_funcs,
590};
v5.14.15
   1/*
   2 * Copyright 2016 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 * Author: Huang Rui
  23 *
  24 */
  25
  26#include <linux/firmware.h>
  27#include <linux/dma-mapping.h>
  28#include <drm/drm_drv.h>
  29
  30#include "amdgpu.h"
  31#include "amdgpu_psp.h"
  32#include "amdgpu_ucode.h"
  33#include "soc15_common.h"
  34#include "psp_v3_1.h"
  35#include "psp_v10_0.h"
  36#include "psp_v11_0.h"
  37#include "psp_v12_0.h"
  38#include "psp_v13_0.h"
  39
  40#include "amdgpu_ras.h"
  41#include "amdgpu_securedisplay.h"
  42#include "amdgpu_atomfirmware.h"
  43
  44#include <drm/drm_drv.h>
  45
  46static int psp_sysfs_init(struct amdgpu_device *adev);
  47static void psp_sysfs_fini(struct amdgpu_device *adev);
  48
  49static int psp_load_smu_fw(struct psp_context *psp);
  50
  51/*
  52 * Due to DF Cstate management centralized to PMFW, the firmware
  53 * loading sequence will be updated as below:
  54 *   - Load KDB
  55 *   - Load SYS_DRV
  56 *   - Load tOS
  57 *   - Load PMFW
  58 *   - Setup TMR
  59 *   - Load other non-psp fw
  60 *   - Load ASD
  61 *   - Load XGMI/RAS/HDCP/DTM TA if any
  62 *
  63 * This new sequence is required for
  64 *   - Arcturus and onwards
  65 *   - Navi12 and onwards
  66 */
  67static void psp_check_pmfw_centralized_cstate_management(struct psp_context *psp)
  68{
  69	struct amdgpu_device *adev = psp->adev;
  70
  71	psp->pmfw_centralized_cstate_management = false;
  72
  73	if (amdgpu_sriov_vf(adev))
  74		return;
 
  75
  76	if (adev->flags & AMD_IS_APU)
  77		return;
  78
  79	if ((adev->asic_type >= CHIP_ARCTURUS) ||
  80	    (adev->asic_type >= CHIP_NAVI12))
  81		psp->pmfw_centralized_cstate_management = true;
  82}
  83
  84static int psp_early_init(void *handle)
  85{
  86	struct amdgpu_device *adev = (struct amdgpu_device *)handle;
  87	struct psp_context *psp = &adev->psp;
 
  88
  89	switch (adev->asic_type) {
  90	case CHIP_VEGA10:
  91	case CHIP_VEGA12:
  92		psp_v3_1_set_psp_funcs(psp);
  93		psp->autoload_supported = false;
  94		break;
  95	case CHIP_RAVEN:
  96		psp_v10_0_set_psp_funcs(psp);
  97		psp->autoload_supported = false;
  98		break;
  99	case CHIP_VEGA20:
 100	case CHIP_ARCTURUS:
 101		psp_v11_0_set_psp_funcs(psp);
 102		psp->autoload_supported = false;
 103		break;
 104	case CHIP_NAVI10:
 105	case CHIP_NAVI14:
 106	case CHIP_NAVI12:
 107	case CHIP_SIENNA_CICHLID:
 108	case CHIP_NAVY_FLOUNDER:
 109	case CHIP_VANGOGH:
 110	case CHIP_DIMGREY_CAVEFISH:
 111	case CHIP_BEIGE_GOBY:
 112		psp_v11_0_set_psp_funcs(psp);
 113		psp->autoload_supported = true;
 114		break;
 115	case CHIP_RENOIR:
 116		psp_v12_0_set_psp_funcs(psp);
 117		break;
 118	case CHIP_ALDEBARAN:
 119		psp_v13_0_set_psp_funcs(psp);
 120		break;
 121	case CHIP_YELLOW_CARP:
 122		psp_v13_0_set_psp_funcs(psp);
 123		psp->autoload_supported = true;
 124		break;
 125	default:
 126		return -EINVAL;
 127	}
 128
 129	psp->adev = adev;
 130
 131	psp_check_pmfw_centralized_cstate_management(psp);
 132
 133	return 0;
 134}
 135
 136static void psp_memory_training_fini(struct psp_context *psp)
 137{
 138	struct psp_memory_training_context *ctx = &psp->mem_train_ctx;
 139
 140	ctx->init = PSP_MEM_TRAIN_NOT_SUPPORT;
 141	kfree(ctx->sys_cache);
 142	ctx->sys_cache = NULL;
 143}
 144
 145static int psp_memory_training_init(struct psp_context *psp)
 146{
 147	int ret;
 148	struct psp_memory_training_context *ctx = &psp->mem_train_ctx;
 149
 150	if (ctx->init != PSP_MEM_TRAIN_RESERVE_SUCCESS) {
 151		DRM_DEBUG("memory training is not supported!\n");
 152		return 0;
 153	}
 154
 155	ctx->sys_cache = kzalloc(ctx->train_data_size, GFP_KERNEL);
 156	if (ctx->sys_cache == NULL) {
 157		DRM_ERROR("alloc mem_train_ctx.sys_cache failed!\n");
 158		ret = -ENOMEM;
 159		goto Err_out;
 160	}
 161
 162	DRM_DEBUG("train_data_size:%llx,p2c_train_data_offset:%llx,c2p_train_data_offset:%llx.\n",
 163		  ctx->train_data_size,
 164		  ctx->p2c_train_data_offset,
 165		  ctx->c2p_train_data_offset);
 166	ctx->init = PSP_MEM_TRAIN_INIT_SUCCESS;
 167	return 0;
 168
 169Err_out:
 170	psp_memory_training_fini(psp);
 171	return ret;
 172}
 173
 174/*
 175 * Helper funciton to query psp runtime database entry
 176 *
 177 * @adev: amdgpu_device pointer
 178 * @entry_type: the type of psp runtime database entry
 179 * @db_entry: runtime database entry pointer
 180 *
 181 * Return false if runtime database doesn't exit or entry is invalid
 182 * or true if the specific database entry is found, and copy to @db_entry
 183 */
 184static bool psp_get_runtime_db_entry(struct amdgpu_device *adev,
 185				     enum psp_runtime_entry_type entry_type,
 186				     void *db_entry)
 187{
 188	uint64_t db_header_pos, db_dir_pos;
 189	struct psp_runtime_data_header db_header = {0};
 190	struct psp_runtime_data_directory db_dir = {0};
 191	bool ret = false;
 192	int i;
 193
 194	db_header_pos = adev->gmc.mc_vram_size - PSP_RUNTIME_DB_OFFSET;
 195	db_dir_pos = db_header_pos + sizeof(struct psp_runtime_data_header);
 196
 197	/* read runtime db header from vram */
 198	amdgpu_device_vram_access(adev, db_header_pos, (uint32_t *)&db_header,
 199			sizeof(struct psp_runtime_data_header), false);
 200
 201	if (db_header.cookie != PSP_RUNTIME_DB_COOKIE_ID) {
 202		/* runtime db doesn't exist, exit */
 203		dev_warn(adev->dev, "PSP runtime database doesn't exist\n");
 204		return false;
 205	}
 206
 207	/* read runtime database entry from vram */
 208	amdgpu_device_vram_access(adev, db_dir_pos, (uint32_t *)&db_dir,
 209			sizeof(struct psp_runtime_data_directory), false);
 210
 211	if (db_dir.entry_count >= PSP_RUNTIME_DB_DIAG_ENTRY_MAX_COUNT) {
 212		/* invalid db entry count, exit */
 213		dev_warn(adev->dev, "Invalid PSP runtime database entry count\n");
 214		return false;
 215	}
 216
 217	/* look up for requested entry type */
 218	for (i = 0; i < db_dir.entry_count && !ret; i++) {
 219		if (db_dir.entry_list[i].entry_type == entry_type) {
 220			switch (entry_type) {
 221			case PSP_RUNTIME_ENTRY_TYPE_BOOT_CONFIG:
 222				if (db_dir.entry_list[i].size < sizeof(struct psp_runtime_boot_cfg_entry)) {
 223					/* invalid db entry size */
 224					dev_warn(adev->dev, "Invalid PSP runtime database entry size\n");
 225					return false;
 226				}
 227				/* read runtime database entry */
 228				amdgpu_device_vram_access(adev, db_header_pos + db_dir.entry_list[i].offset,
 229							  (uint32_t *)db_entry, sizeof(struct psp_runtime_boot_cfg_entry), false);
 230				ret = true;
 231				break;
 232			default:
 233				ret = false;
 234				break;
 235			}
 236		}
 237	}
 238
 239	return ret;
 240}
 241
 242static int psp_sw_init(void *handle)
 243{
 244	struct amdgpu_device *adev = (struct amdgpu_device *)handle;
 245	struct psp_context *psp = &adev->psp;
 246	int ret;
 247	struct psp_runtime_boot_cfg_entry boot_cfg_entry;
 248	struct psp_memory_training_context *mem_training_ctx = &psp->mem_train_ctx;
 249
 250	if (!amdgpu_sriov_vf(adev)) {
 251		ret = psp_init_microcode(psp);
 252		if (ret) {
 253			DRM_ERROR("Failed to load psp firmware!\n");
 254			return ret;
 255		}
 256	} else if (amdgpu_sriov_vf(adev) && adev->asic_type == CHIP_ALDEBARAN) {
 257		ret = psp_init_ta_microcode(psp, "aldebaran");
 258		if (ret) {
 259			DRM_ERROR("Failed to initialize ta microcode!\n");
 260			return ret;
 261		}
 262	}
 263
 264	memset(&boot_cfg_entry, 0, sizeof(boot_cfg_entry));
 265	if (psp_get_runtime_db_entry(adev,
 266				PSP_RUNTIME_ENTRY_TYPE_BOOT_CONFIG,
 267				&boot_cfg_entry)) {
 268		psp->boot_cfg_bitmask = boot_cfg_entry.boot_cfg_bitmask;
 269		if ((psp->boot_cfg_bitmask) &
 270		    BOOT_CFG_FEATURE_TWO_STAGE_DRAM_TRAINING) {
 271			/* If psp runtime database exists, then
 272			 * only enable two stage memory training
 273			 * when TWO_STAGE_DRAM_TRAINING bit is set
 274			 * in runtime database */
 275			mem_training_ctx->enable_mem_training = true;
 276		}
 277
 278	} else {
 279		/* If psp runtime database doesn't exist or
 280		 * is invalid, force enable two stage memory
 281		 * training */
 282		mem_training_ctx->enable_mem_training = true;
 283	}
 284
 285	if (mem_training_ctx->enable_mem_training) {
 286		ret = psp_memory_training_init(psp);
 287		if (ret) {
 288			DRM_ERROR("Failed to initialize memory training!\n");
 289			return ret;
 290		}
 291
 292		ret = psp_mem_training(psp, PSP_MEM_TRAIN_COLD_BOOT);
 293		if (ret) {
 294			DRM_ERROR("Failed to process memory training!\n");
 295			return ret;
 296		}
 297	}
 298
 299	if (adev->asic_type == CHIP_NAVI10 || adev->asic_type == CHIP_SIENNA_CICHLID) {
 300		ret= psp_sysfs_init(adev);
 301		if (ret) {
 302			return ret;
 303		}
 304	}
 305
 306	return 0;
 307}
 308
 309static int psp_sw_fini(void *handle)
 310{
 311	struct amdgpu_device *adev = (struct amdgpu_device *)handle;
 312
 313	psp_memory_training_fini(&adev->psp);
 314	if (adev->psp.sos_fw) {
 315		release_firmware(adev->psp.sos_fw);
 316		adev->psp.sos_fw = NULL;
 317	}
 318	if (adev->psp.asd_fw) {
 319		release_firmware(adev->psp.asd_fw);
 320		adev->psp.asd_fw = NULL;
 321	}
 322	if (adev->psp.ta_fw) {
 323		release_firmware(adev->psp.ta_fw);
 324		adev->psp.ta_fw = NULL;
 325	}
 326
 327	if (adev->asic_type == CHIP_NAVI10 ||
 328	    adev->asic_type == CHIP_SIENNA_CICHLID)
 329		psp_sysfs_fini(adev);
 330
 
 
 
 
 331	return 0;
 332}
 333
 334int psp_wait_for(struct psp_context *psp, uint32_t reg_index,
 335		 uint32_t reg_val, uint32_t mask, bool check_changed)
 336{
 337	uint32_t val;
 338	int i;
 339	struct amdgpu_device *adev = psp->adev;
 340
 341	if (psp->adev->no_hw_access)
 342		return 0;
 343
 344	for (i = 0; i < adev->usec_timeout; i++) {
 345		val = RREG32(reg_index);
 346		if (check_changed) {
 347			if (val != reg_val)
 348				return 0;
 349		} else {
 350			if ((val & mask) == reg_val)
 351				return 0;
 352		}
 353		udelay(1);
 354	}
 355
 356	return -ETIME;
 357}
 358
 359static int
 360psp_cmd_submit_buf(struct psp_context *psp,
 361		   struct amdgpu_firmware_info *ucode,
 362		   struct psp_gfx_cmd_resp *cmd, uint64_t fence_mc_addr)
 
 363{
 364	int ret;
 365	int index, idx;
 366	int timeout = 20000;
 367	bool ras_intr = false;
 368	bool skip_unsupport = false;
 369
 370	if (psp->adev->no_hw_access)
 371		return 0;
 372
 373	if (!drm_dev_enter(&psp->adev->ddev, &idx))
 374		return 0;
 375
 376	mutex_lock(&psp->mutex);
 377
 378	memset(psp->cmd_buf_mem, 0, PSP_CMD_BUFFER_SIZE);
 379
 380	memcpy(psp->cmd_buf_mem, cmd, sizeof(struct psp_gfx_cmd_resp));
 381
 382	index = atomic_inc_return(&psp->fence_value);
 383	ret = psp_ring_cmd_submit(psp, psp->cmd_buf_mc_addr, fence_mc_addr, index);
 384	if (ret) {
 385		atomic_dec(&psp->fence_value);
 386		goto exit;
 387	}
 388
 389	amdgpu_device_invalidate_hdp(psp->adev, NULL);
 390	while (*((unsigned int *)psp->fence_buf) != index) {
 391		if (--timeout == 0)
 392			break;
 393		/*
 394		 * Shouldn't wait for timeout when err_event_athub occurs,
 395		 * because gpu reset thread triggered and lock resource should
 396		 * be released for psp resume sequence.
 397		 */
 398		ras_intr = amdgpu_ras_intr_triggered();
 399		if (ras_intr)
 400			break;
 401		usleep_range(10, 100);
 402		amdgpu_device_invalidate_hdp(psp->adev, NULL);
 403	}
 404
 405	/* We allow TEE_ERROR_NOT_SUPPORTED for VMR command and PSP_ERR_UNKNOWN_COMMAND in SRIOV */
 406	skip_unsupport = (psp->cmd_buf_mem->resp.status == TEE_ERROR_NOT_SUPPORTED ||
 407		psp->cmd_buf_mem->resp.status == PSP_ERR_UNKNOWN_COMMAND) && amdgpu_sriov_vf(psp->adev);
 408
 409	memcpy((void*)&cmd->resp, (void*)&psp->cmd_buf_mem->resp, sizeof(struct psp_gfx_resp));
 410
 411	/* In some cases, psp response status is not 0 even there is no
 412	 * problem while the command is submitted. Some version of PSP FW
 413	 * doesn't write 0 to that field.
 414	 * So here we would like to only print a warning instead of an error
 415	 * during psp initialization to avoid breaking hw_init and it doesn't
 416	 * return -EINVAL.
 417	 */
 418	if (!skip_unsupport && (psp->cmd_buf_mem->resp.status || !timeout) && !ras_intr) {
 419		if (ucode)
 420			DRM_WARN("failed to load ucode id (%d) ",
 421				  ucode->ucode_id);
 422		DRM_WARN("psp command (0x%X) failed and response status is (0x%X)\n",
 423			 psp->cmd_buf_mem->cmd_id,
 424			 psp->cmd_buf_mem->resp.status);
 425		if (!timeout) {
 426			ret = -EINVAL;
 427			goto exit;
 428		}
 429	}
 430
 431	if (ucode) {
 432		ucode->tmr_mc_addr_lo = psp->cmd_buf_mem->resp.fw_addr_lo;
 433		ucode->tmr_mc_addr_hi = psp->cmd_buf_mem->resp.fw_addr_hi;
 434	}
 435
 436exit:
 437	mutex_unlock(&psp->mutex);
 438	drm_dev_exit(idx);
 439	return ret;
 440}
 441
 442static void psp_prep_tmr_cmd_buf(struct psp_context *psp,
 443				 struct psp_gfx_cmd_resp *cmd,
 444				 uint64_t tmr_mc, struct amdgpu_bo *tmr_bo)
 445{
 446	struct amdgpu_device *adev = psp->adev;
 447	uint32_t size = amdgpu_bo_size(tmr_bo);
 448	uint64_t tmr_pa = amdgpu_gmc_vram_pa(adev, tmr_bo);
 449
 450	if (amdgpu_sriov_vf(psp->adev))
 451		cmd->cmd_id = GFX_CMD_ID_SETUP_VMR;
 452	else
 453		cmd->cmd_id = GFX_CMD_ID_SETUP_TMR;
 454	cmd->cmd.cmd_setup_tmr.buf_phy_addr_lo = lower_32_bits(tmr_mc);
 455	cmd->cmd.cmd_setup_tmr.buf_phy_addr_hi = upper_32_bits(tmr_mc);
 456	cmd->cmd.cmd_setup_tmr.buf_size = size;
 457	cmd->cmd.cmd_setup_tmr.bitfield.virt_phy_addr = 1;
 458	cmd->cmd.cmd_setup_tmr.system_phy_addr_lo = lower_32_bits(tmr_pa);
 459	cmd->cmd.cmd_setup_tmr.system_phy_addr_hi = upper_32_bits(tmr_pa);
 460}
 461
 462static void psp_prep_load_toc_cmd_buf(struct psp_gfx_cmd_resp *cmd,
 463				      uint64_t pri_buf_mc, uint32_t size)
 464{
 465	cmd->cmd_id = GFX_CMD_ID_LOAD_TOC;
 466	cmd->cmd.cmd_load_toc.toc_phy_addr_lo = lower_32_bits(pri_buf_mc);
 467	cmd->cmd.cmd_load_toc.toc_phy_addr_hi = upper_32_bits(pri_buf_mc);
 468	cmd->cmd.cmd_load_toc.toc_size = size;
 469}
 470
 471/* Issue LOAD TOC cmd to PSP to part toc and calculate tmr size needed */
 472static int psp_load_toc(struct psp_context *psp,
 473			uint32_t *tmr_size)
 474{
 475	int ret;
 476	struct psp_gfx_cmd_resp *cmd;
 477
 478	cmd = kzalloc(sizeof(struct psp_gfx_cmd_resp), GFP_KERNEL);
 479	if (!cmd)
 480		return -ENOMEM;
 481	/* Copy toc to psp firmware private buffer */
 482	psp_copy_fw(psp, psp->toc_start_addr, psp->toc_bin_size);
 483
 484	psp_prep_load_toc_cmd_buf(cmd, psp->fw_pri_mc_addr, psp->toc_bin_size);
 485
 486	ret = psp_cmd_submit_buf(psp, NULL, cmd,
 487				 psp->fence_buf_mc_addr);
 488	if (!ret)
 489		*tmr_size = psp->cmd_buf_mem->resp.tmr_size;
 490	kfree(cmd);
 491	return ret;
 492}
 493
 494/* Set up Trusted Memory Region */
 495static int psp_tmr_init(struct psp_context *psp)
 496{
 497	int ret;
 498	int tmr_size;
 499	void *tmr_buf;
 500	void **pptr;
 501
 502	/*
 503	 * According to HW engineer, they prefer the TMR address be "naturally
 504	 * aligned" , e.g. the start address be an integer divide of TMR size.
 505	 *
 506	 * Note: this memory need be reserved till the driver
 507	 * uninitializes.
 508	 */
 509	tmr_size = PSP_TMR_SIZE(psp->adev);
 510
 511	/* For ASICs support RLC autoload, psp will parse the toc
 512	 * and calculate the total size of TMR needed */
 513	if (!amdgpu_sriov_vf(psp->adev) &&
 514	    psp->toc_start_addr &&
 515	    psp->toc_bin_size &&
 516	    psp->fw_pri_buf) {
 517		ret = psp_load_toc(psp, &tmr_size);
 518		if (ret) {
 519			DRM_ERROR("Failed to load toc\n");
 520			return ret;
 521		}
 522	}
 523
 524	pptr = amdgpu_sriov_vf(psp->adev) ? &tmr_buf : NULL;
 525	ret = amdgpu_bo_create_kernel(psp->adev, tmr_size, PSP_TMR_SIZE(psp->adev),
 526				      AMDGPU_GEM_DOMAIN_VRAM,
 527				      &psp->tmr_bo, &psp->tmr_mc_addr, pptr);
 528
 529	return ret;
 530}
 531
 532static bool psp_skip_tmr(struct psp_context *psp)
 533{
 534	switch (psp->adev->asic_type) {
 535	case CHIP_NAVI12:
 536	case CHIP_SIENNA_CICHLID:
 537	case CHIP_ALDEBARAN:
 538		return true;
 539	default:
 540		return false;
 541	}
 542}
 543
 544static int psp_tmr_load(struct psp_context *psp)
 545{
 546	int ret;
 547	struct psp_gfx_cmd_resp *cmd;
 548
 549	/* For Navi12 and CHIP_SIENNA_CICHLID SRIOV, do not set up TMR.
 550	 * Already set up by host driver.
 551	 */
 552	if (amdgpu_sriov_vf(psp->adev) && psp_skip_tmr(psp))
 553		return 0;
 554
 555	cmd = kzalloc(sizeof(struct psp_gfx_cmd_resp), GFP_KERNEL);
 556	if (!cmd)
 557		return -ENOMEM;
 558
 559	psp_prep_tmr_cmd_buf(psp, cmd, psp->tmr_mc_addr, psp->tmr_bo);
 560	DRM_INFO("reserve 0x%lx from 0x%llx for PSP TMR\n",
 561		 amdgpu_bo_size(psp->tmr_bo), psp->tmr_mc_addr);
 562
 563	ret = psp_cmd_submit_buf(psp, NULL, cmd,
 564				 psp->fence_buf_mc_addr);
 565
 566	kfree(cmd);
 567
 568	return ret;
 569}
 570
 571static void psp_prep_tmr_unload_cmd_buf(struct psp_context *psp,
 572					struct psp_gfx_cmd_resp *cmd)
 573{
 574	if (amdgpu_sriov_vf(psp->adev))
 575		cmd->cmd_id = GFX_CMD_ID_DESTROY_VMR;
 576	else
 577		cmd->cmd_id = GFX_CMD_ID_DESTROY_TMR;
 578}
 579
 580static int psp_tmr_unload(struct psp_context *psp)
 581{
 582	int ret;
 583	struct psp_gfx_cmd_resp *cmd;
 584
 585	cmd = kzalloc(sizeof(struct psp_gfx_cmd_resp), GFP_KERNEL);
 586	if (!cmd)
 587		return -ENOMEM;
 588
 589	psp_prep_tmr_unload_cmd_buf(psp, cmd);
 590	DRM_INFO("free PSP TMR buffer\n");
 591
 592	ret = psp_cmd_submit_buf(psp, NULL, cmd,
 593				 psp->fence_buf_mc_addr);
 594
 595	kfree(cmd);
 596
 597	return ret;
 598}
 599
 600static int psp_tmr_terminate(struct psp_context *psp)
 601{
 602	int ret;
 603	void *tmr_buf;
 604	void **pptr;
 605
 606	ret = psp_tmr_unload(psp);
 607	if (ret)
 608		return ret;
 609
 610	/* free TMR memory buffer */
 611	pptr = amdgpu_sriov_vf(psp->adev) ? &tmr_buf : NULL;
 612	amdgpu_bo_free_kernel(&psp->tmr_bo, &psp->tmr_mc_addr, pptr);
 613
 614	return 0;
 615}
 616
 617int psp_get_fw_attestation_records_addr(struct psp_context *psp,
 618					uint64_t *output_ptr)
 619{
 620	int ret;
 621	struct psp_gfx_cmd_resp *cmd;
 622
 623	if (!output_ptr)
 624		return -EINVAL;
 625
 626	if (amdgpu_sriov_vf(psp->adev))
 627		return 0;
 628
 629	cmd = kzalloc(sizeof(struct psp_gfx_cmd_resp), GFP_KERNEL);
 630	if (!cmd)
 631		return -ENOMEM;
 632
 633	cmd->cmd_id = GFX_CMD_ID_GET_FW_ATTESTATION;
 634
 635	ret = psp_cmd_submit_buf(psp, NULL, cmd,
 636				 psp->fence_buf_mc_addr);
 637
 638	if (!ret) {
 639		*output_ptr = ((uint64_t)cmd->resp.uresp.fwar_db_info.fwar_db_addr_lo) +
 640			      ((uint64_t)cmd->resp.uresp.fwar_db_info.fwar_db_addr_hi << 32);
 641	}
 642
 
 643	kfree(cmd);
 644
 645	return ret;
 646}
 647
 648static int psp_boot_config_get(struct amdgpu_device *adev, uint32_t *boot_cfg)
 649{
 650	struct psp_context *psp = &adev->psp;
 651	struct psp_gfx_cmd_resp *cmd = psp->cmd;
 652	int ret;
 653
 654	if (amdgpu_sriov_vf(adev))
 655		return 0;
 656
 657	memset(cmd, 0, sizeof(struct psp_gfx_cmd_resp));
 658
 659	cmd->cmd_id = GFX_CMD_ID_BOOT_CFG;
 660	cmd->cmd.boot_cfg.sub_cmd = BOOTCFG_CMD_GET;
 661
 662	ret = psp_cmd_submit_buf(psp, NULL, cmd, psp->fence_buf_mc_addr);
 663	if (!ret) {
 664		*boot_cfg =
 665			(cmd->resp.uresp.boot_cfg.boot_cfg & BOOT_CONFIG_GECC) ? 1 : 0;
 666	}
 667
 668	return ret;
 669}
 670
 671static int psp_boot_config_set(struct amdgpu_device *adev, uint32_t boot_cfg)
 672{
 673	struct psp_context *psp = &adev->psp;
 674	struct psp_gfx_cmd_resp *cmd = psp->cmd;
 675
 676	if (amdgpu_sriov_vf(adev))
 677		return 0;
 678
 679	memset(cmd, 0, sizeof(struct psp_gfx_cmd_resp));
 680
 681	cmd->cmd_id = GFX_CMD_ID_BOOT_CFG;
 682	cmd->cmd.boot_cfg.sub_cmd = BOOTCFG_CMD_SET;
 683	cmd->cmd.boot_cfg.boot_config = boot_cfg;
 684	cmd->cmd.boot_cfg.boot_config_valid = boot_cfg;
 685
 686	return psp_cmd_submit_buf(psp, NULL, cmd, psp->fence_buf_mc_addr);
 687}
 688
 689static int psp_rl_load(struct amdgpu_device *adev)
 690{
 691	struct psp_context *psp = &adev->psp;
 692	struct psp_gfx_cmd_resp *cmd = psp->cmd;
 693
 694	if (psp->rl_bin_size == 0)
 695		return 0;
 696
 697	memset(psp->fw_pri_buf, 0, PSP_1_MEG);
 698	memcpy(psp->fw_pri_buf, psp->rl_start_addr, psp->rl_bin_size);
 699
 700	memset(cmd, 0, sizeof(struct psp_gfx_cmd_resp));
 701
 702	cmd->cmd_id = GFX_CMD_ID_LOAD_IP_FW;
 703	cmd->cmd.cmd_load_ip_fw.fw_phy_addr_lo = lower_32_bits(psp->fw_pri_mc_addr);
 704	cmd->cmd.cmd_load_ip_fw.fw_phy_addr_hi = upper_32_bits(psp->fw_pri_mc_addr);
 705	cmd->cmd.cmd_load_ip_fw.fw_size = psp->rl_bin_size;
 706	cmd->cmd.cmd_load_ip_fw.fw_type = GFX_FW_TYPE_REG_LIST;
 707
 708	return psp_cmd_submit_buf(psp, NULL, cmd, psp->fence_buf_mc_addr);
 709}
 710
 711static void psp_prep_asd_load_cmd_buf(struct psp_gfx_cmd_resp *cmd,
 712				uint64_t asd_mc, uint32_t size)
 713{
 714	cmd->cmd_id = GFX_CMD_ID_LOAD_ASD;
 715	cmd->cmd.cmd_load_ta.app_phy_addr_lo = lower_32_bits(asd_mc);
 716	cmd->cmd.cmd_load_ta.app_phy_addr_hi = upper_32_bits(asd_mc);
 717	cmd->cmd.cmd_load_ta.app_len = size;
 718
 719	cmd->cmd.cmd_load_ta.cmd_buf_phy_addr_lo = 0;
 720	cmd->cmd.cmd_load_ta.cmd_buf_phy_addr_hi = 0;
 721	cmd->cmd.cmd_load_ta.cmd_buf_len = 0;
 722}
 723
 724static int psp_asd_load(struct psp_context *psp)
 725{
 726	int ret;
 727	struct psp_gfx_cmd_resp *cmd;
 728
 729	/* If PSP version doesn't match ASD version, asd loading will be failed.
 730	 * add workaround to bypass it for sriov now.
 731	 * TODO: add version check to make it common
 732	 */
 733	if (amdgpu_sriov_vf(psp->adev) || !psp->asd_ucode_size)
 734		return 0;
 735
 736	cmd = kzalloc(sizeof(struct psp_gfx_cmd_resp), GFP_KERNEL);
 737	if (!cmd)
 738		return -ENOMEM;
 739
 740	psp_copy_fw(psp, psp->asd_start_addr, psp->asd_ucode_size);
 741
 742	psp_prep_asd_load_cmd_buf(cmd, psp->fw_pri_mc_addr,
 743				  psp->asd_ucode_size);
 744
 745	ret = psp_cmd_submit_buf(psp, NULL, cmd,
 746				 psp->fence_buf_mc_addr);
 747	if (!ret) {
 748		psp->asd_context.asd_initialized = true;
 749		psp->asd_context.session_id = cmd->resp.session_id;
 750	}
 751
 752	kfree(cmd);
 753
 754	return ret;
 755}
 756
 757static void psp_prep_ta_unload_cmd_buf(struct psp_gfx_cmd_resp *cmd,
 758				       uint32_t session_id)
 759{
 760	cmd->cmd_id = GFX_CMD_ID_UNLOAD_TA;
 761	cmd->cmd.cmd_unload_ta.session_id = session_id;
 762}
 763
 764static int psp_asd_unload(struct psp_context *psp)
 765{
 766	int ret;
 767	struct psp_gfx_cmd_resp *cmd;
 768
 769	if (amdgpu_sriov_vf(psp->adev))
 770		return 0;
 771
 772	if (!psp->asd_context.asd_initialized)
 773		return 0;
 774
 775	cmd = kzalloc(sizeof(struct psp_gfx_cmd_resp), GFP_KERNEL);
 776	if (!cmd)
 777		return -ENOMEM;
 778
 779	psp_prep_ta_unload_cmd_buf(cmd, psp->asd_context.session_id);
 780
 781	ret = psp_cmd_submit_buf(psp, NULL, cmd,
 782				 psp->fence_buf_mc_addr);
 783	if (!ret)
 784		psp->asd_context.asd_initialized = false;
 785
 786	kfree(cmd);
 787
 788	return ret;
 789}
 790
 791static void psp_prep_reg_prog_cmd_buf(struct psp_gfx_cmd_resp *cmd,
 792		uint32_t id, uint32_t value)
 793{
 794	cmd->cmd_id = GFX_CMD_ID_PROG_REG;
 795	cmd->cmd.cmd_setup_reg_prog.reg_value = value;
 796	cmd->cmd.cmd_setup_reg_prog.reg_id = id;
 797}
 798
 799int psp_reg_program(struct psp_context *psp, enum psp_reg_prog_id reg,
 800		uint32_t value)
 801{
 802	struct psp_gfx_cmd_resp *cmd = NULL;
 803	int ret = 0;
 804
 805	if (reg >= PSP_REG_LAST)
 806		return -EINVAL;
 807
 808	cmd = kzalloc(sizeof(struct psp_gfx_cmd_resp), GFP_KERNEL);
 809	if (!cmd)
 810		return -ENOMEM;
 811
 812	psp_prep_reg_prog_cmd_buf(cmd, reg, value);
 813	ret = psp_cmd_submit_buf(psp, NULL, cmd, psp->fence_buf_mc_addr);
 814	if (ret)
 815		DRM_ERROR("PSP failed to program reg id %d", reg);
 816
 817	kfree(cmd);
 818	return ret;
 819}
 820
 821static void psp_prep_ta_load_cmd_buf(struct psp_gfx_cmd_resp *cmd,
 822				     uint64_t ta_bin_mc,
 823				     uint32_t ta_bin_size,
 824				     uint64_t ta_shared_mc,
 825				     uint32_t ta_shared_size)
 826{
 827	cmd->cmd_id				= GFX_CMD_ID_LOAD_TA;
 828	cmd->cmd.cmd_load_ta.app_phy_addr_lo 	= lower_32_bits(ta_bin_mc);
 829	cmd->cmd.cmd_load_ta.app_phy_addr_hi	= upper_32_bits(ta_bin_mc);
 830	cmd->cmd.cmd_load_ta.app_len		= ta_bin_size;
 831
 832	cmd->cmd.cmd_load_ta.cmd_buf_phy_addr_lo = lower_32_bits(ta_shared_mc);
 833	cmd->cmd.cmd_load_ta.cmd_buf_phy_addr_hi = upper_32_bits(ta_shared_mc);
 834	cmd->cmd.cmd_load_ta.cmd_buf_len	 = ta_shared_size;
 835}
 836
 837static int psp_xgmi_init_shared_buf(struct psp_context *psp)
 838{
 839	int ret;
 840
 841	/*
 842	 * Allocate 16k memory aligned to 4k from Frame Buffer (local
 843	 * physical) for xgmi ta <-> Driver
 844	 */
 845	ret = amdgpu_bo_create_kernel(psp->adev, PSP_XGMI_SHARED_MEM_SIZE,
 846				      PAGE_SIZE, AMDGPU_GEM_DOMAIN_VRAM,
 847				      &psp->xgmi_context.xgmi_shared_bo,
 848				      &psp->xgmi_context.xgmi_shared_mc_addr,
 849				      &psp->xgmi_context.xgmi_shared_buf);
 850
 851	return ret;
 852}
 853
 854static void psp_prep_ta_invoke_cmd_buf(struct psp_gfx_cmd_resp *cmd,
 855				       uint32_t ta_cmd_id,
 856				       uint32_t session_id)
 857{
 858	cmd->cmd_id				= GFX_CMD_ID_INVOKE_CMD;
 859	cmd->cmd.cmd_invoke_cmd.session_id	= session_id;
 860	cmd->cmd.cmd_invoke_cmd.ta_cmd_id	= ta_cmd_id;
 861}
 862
 863static int psp_ta_invoke(struct psp_context *psp,
 864		  uint32_t ta_cmd_id,
 865		  uint32_t session_id)
 866{
 867	int ret;
 868	struct psp_gfx_cmd_resp *cmd;
 869
 870	cmd = kzalloc(sizeof(struct psp_gfx_cmd_resp), GFP_KERNEL);
 871	if (!cmd)
 872		return -ENOMEM;
 873
 874	psp_prep_ta_invoke_cmd_buf(cmd, ta_cmd_id, session_id);
 875
 876	ret = psp_cmd_submit_buf(psp, NULL, cmd,
 877				 psp->fence_buf_mc_addr);
 878
 879	kfree(cmd);
 880
 881	return ret;
 882}
 883
 884static int psp_xgmi_load(struct psp_context *psp)
 885{
 886	int ret;
 887	struct psp_gfx_cmd_resp *cmd;
 888
 889	/*
 890	 * TODO: bypass the loading in sriov for now
 891	 */
 892
 893	cmd = kzalloc(sizeof(struct psp_gfx_cmd_resp), GFP_KERNEL);
 894	if (!cmd)
 895		return -ENOMEM;
 896
 897	psp_copy_fw(psp, psp->ta_xgmi_start_addr, psp->ta_xgmi_ucode_size);
 898
 899	psp_prep_ta_load_cmd_buf(cmd,
 900				 psp->fw_pri_mc_addr,
 901				 psp->ta_xgmi_ucode_size,
 902				 psp->xgmi_context.xgmi_shared_mc_addr,
 903				 PSP_XGMI_SHARED_MEM_SIZE);
 904
 905	ret = psp_cmd_submit_buf(psp, NULL, cmd,
 906				 psp->fence_buf_mc_addr);
 907
 908	if (!ret) {
 909		psp->xgmi_context.initialized = 1;
 910		psp->xgmi_context.session_id = cmd->resp.session_id;
 911	}
 912
 913	kfree(cmd);
 914
 915	return ret;
 916}
 917
 918static int psp_xgmi_unload(struct psp_context *psp)
 919{
 920	int ret;
 921	struct psp_gfx_cmd_resp *cmd;
 922	struct amdgpu_device *adev = psp->adev;
 923
 924	/* XGMI TA unload currently is not supported on Arcturus/Aldebaran A+A */
 925	if (adev->asic_type == CHIP_ARCTURUS ||
 926		(adev->asic_type == CHIP_ALDEBARAN && adev->gmc.xgmi.connected_to_cpu))
 927		return 0;
 928
 929	/*
 930	 * TODO: bypass the unloading in sriov for now
 931	 */
 932
 933	cmd = kzalloc(sizeof(struct psp_gfx_cmd_resp), GFP_KERNEL);
 934	if (!cmd)
 935		return -ENOMEM;
 936
 937	psp_prep_ta_unload_cmd_buf(cmd, psp->xgmi_context.session_id);
 938
 939	ret = psp_cmd_submit_buf(psp, NULL, cmd,
 940				 psp->fence_buf_mc_addr);
 941
 942	kfree(cmd);
 943
 944	return ret;
 945}
 946
 947int psp_xgmi_invoke(struct psp_context *psp, uint32_t ta_cmd_id)
 948{
 949	return psp_ta_invoke(psp, ta_cmd_id, psp->xgmi_context.session_id);
 950}
 951
 952int psp_xgmi_terminate(struct psp_context *psp)
 953{
 954	int ret;
 955
 956	if (!psp->xgmi_context.initialized)
 957		return 0;
 958
 959	ret = psp_xgmi_unload(psp);
 960	if (ret)
 961		return ret;
 962
 963	psp->xgmi_context.initialized = 0;
 964
 965	/* free xgmi shared memory */
 966	amdgpu_bo_free_kernel(&psp->xgmi_context.xgmi_shared_bo,
 967			&psp->xgmi_context.xgmi_shared_mc_addr,
 968			&psp->xgmi_context.xgmi_shared_buf);
 969
 970	return 0;
 971}
 972
 973int psp_xgmi_initialize(struct psp_context *psp)
 974{
 975	struct ta_xgmi_shared_memory *xgmi_cmd;
 976	int ret;
 977
 978	if (!psp->adev->psp.ta_fw ||
 979	    !psp->adev->psp.ta_xgmi_ucode_size ||
 980	    !psp->adev->psp.ta_xgmi_start_addr)
 981		return -ENOENT;
 982
 983	if (!psp->xgmi_context.initialized) {
 984		ret = psp_xgmi_init_shared_buf(psp);
 985		if (ret)
 986			return ret;
 987	}
 988
 989	/* Load XGMI TA */
 990	ret = psp_xgmi_load(psp);
 991	if (ret)
 992		return ret;
 993
 994	/* Initialize XGMI session */
 995	xgmi_cmd = (struct ta_xgmi_shared_memory *)(psp->xgmi_context.xgmi_shared_buf);
 996	memset(xgmi_cmd, 0, sizeof(struct ta_xgmi_shared_memory));
 997	xgmi_cmd->cmd_id = TA_COMMAND_XGMI__INITIALIZE;
 998
 999	ret = psp_xgmi_invoke(psp, xgmi_cmd->cmd_id);
1000
1001	return ret;
1002}
1003
1004int psp_xgmi_get_hive_id(struct psp_context *psp, uint64_t *hive_id)
1005{
1006	struct ta_xgmi_shared_memory *xgmi_cmd;
1007	int ret;
1008
1009	xgmi_cmd = (struct ta_xgmi_shared_memory *)psp->xgmi_context.xgmi_shared_buf;
1010	memset(xgmi_cmd, 0, sizeof(struct ta_xgmi_shared_memory));
1011
1012	xgmi_cmd->cmd_id = TA_COMMAND_XGMI__GET_HIVE_ID;
1013
1014	/* Invoke xgmi ta to get hive id */
1015	ret = psp_xgmi_invoke(psp, xgmi_cmd->cmd_id);
1016	if (ret)
1017		return ret;
1018
1019	*hive_id = xgmi_cmd->xgmi_out_message.get_hive_id.hive_id;
1020
1021	return 0;
1022}
1023
1024int psp_xgmi_get_node_id(struct psp_context *psp, uint64_t *node_id)
1025{
1026	struct ta_xgmi_shared_memory *xgmi_cmd;
1027	int ret;
1028
1029	xgmi_cmd = (struct ta_xgmi_shared_memory *)psp->xgmi_context.xgmi_shared_buf;
1030	memset(xgmi_cmd, 0, sizeof(struct ta_xgmi_shared_memory));
1031
1032	xgmi_cmd->cmd_id = TA_COMMAND_XGMI__GET_NODE_ID;
1033
1034	/* Invoke xgmi ta to get the node id */
1035	ret = psp_xgmi_invoke(psp, xgmi_cmd->cmd_id);
1036	if (ret)
1037		return ret;
1038
1039	*node_id = xgmi_cmd->xgmi_out_message.get_node_id.node_id;
1040
1041	return 0;
1042}
1043
1044int psp_xgmi_get_topology_info(struct psp_context *psp,
1045			       int number_devices,
1046			       struct psp_xgmi_topology_info *topology)
1047{
1048	struct ta_xgmi_shared_memory *xgmi_cmd;
1049	struct ta_xgmi_cmd_get_topology_info_input *topology_info_input;
1050	struct ta_xgmi_cmd_get_topology_info_output *topology_info_output;
1051	int i;
1052	int ret;
1053
1054	if (!topology || topology->num_nodes > TA_XGMI__MAX_CONNECTED_NODES)
1055		return -EINVAL;
1056
1057	xgmi_cmd = (struct ta_xgmi_shared_memory *)psp->xgmi_context.xgmi_shared_buf;
1058	memset(xgmi_cmd, 0, sizeof(struct ta_xgmi_shared_memory));
1059
1060	/* Fill in the shared memory with topology information as input */
1061	topology_info_input = &xgmi_cmd->xgmi_in_message.get_topology_info;
1062	xgmi_cmd->cmd_id = TA_COMMAND_XGMI__GET_GET_TOPOLOGY_INFO;
1063	topology_info_input->num_nodes = number_devices;
1064
1065	for (i = 0; i < topology_info_input->num_nodes; i++) {
1066		topology_info_input->nodes[i].node_id = topology->nodes[i].node_id;
1067		topology_info_input->nodes[i].num_hops = topology->nodes[i].num_hops;
1068		topology_info_input->nodes[i].is_sharing_enabled = topology->nodes[i].is_sharing_enabled;
1069		topology_info_input->nodes[i].sdma_engine = topology->nodes[i].sdma_engine;
1070	}
1071
1072	/* Invoke xgmi ta to get the topology information */
1073	ret = psp_xgmi_invoke(psp, TA_COMMAND_XGMI__GET_GET_TOPOLOGY_INFO);
1074	if (ret)
1075		return ret;
1076
1077	/* Read the output topology information from the shared memory */
1078	topology_info_output = &xgmi_cmd->xgmi_out_message.get_topology_info;
1079	topology->num_nodes = xgmi_cmd->xgmi_out_message.get_topology_info.num_nodes;
1080	for (i = 0; i < topology->num_nodes; i++) {
1081		topology->nodes[i].node_id = topology_info_output->nodes[i].node_id;
1082		topology->nodes[i].num_hops = topology_info_output->nodes[i].num_hops;
1083		topology->nodes[i].is_sharing_enabled = topology_info_output->nodes[i].is_sharing_enabled;
1084		topology->nodes[i].sdma_engine = topology_info_output->nodes[i].sdma_engine;
1085	}
1086
1087	return 0;
1088}
1089
1090int psp_xgmi_set_topology_info(struct psp_context *psp,
1091			       int number_devices,
1092			       struct psp_xgmi_topology_info *topology)
1093{
1094	struct ta_xgmi_shared_memory *xgmi_cmd;
1095	struct ta_xgmi_cmd_get_topology_info_input *topology_info_input;
1096	int i;
1097
1098	if (!topology || topology->num_nodes > TA_XGMI__MAX_CONNECTED_NODES)
1099		return -EINVAL;
1100
1101	xgmi_cmd = (struct ta_xgmi_shared_memory *)psp->xgmi_context.xgmi_shared_buf;
1102	memset(xgmi_cmd, 0, sizeof(struct ta_xgmi_shared_memory));
1103
1104	topology_info_input = &xgmi_cmd->xgmi_in_message.get_topology_info;
1105	xgmi_cmd->cmd_id = TA_COMMAND_XGMI__SET_TOPOLOGY_INFO;
1106	topology_info_input->num_nodes = number_devices;
1107
1108	for (i = 0; i < topology_info_input->num_nodes; i++) {
1109		topology_info_input->nodes[i].node_id = topology->nodes[i].node_id;
1110		topology_info_input->nodes[i].num_hops = topology->nodes[i].num_hops;
1111		topology_info_input->nodes[i].is_sharing_enabled = 1;
1112		topology_info_input->nodes[i].sdma_engine = topology->nodes[i].sdma_engine;
1113	}
1114
1115	/* Invoke xgmi ta to set topology information */
1116	return psp_xgmi_invoke(psp, TA_COMMAND_XGMI__SET_TOPOLOGY_INFO);
1117}
1118
1119// ras begin
1120static int psp_ras_init_shared_buf(struct psp_context *psp)
1121{
1122	int ret;
1123
1124	/*
1125	 * Allocate 16k memory aligned to 4k from Frame Buffer (local
1126	 * physical) for ras ta <-> Driver
1127	 */
1128	ret = amdgpu_bo_create_kernel(psp->adev, PSP_RAS_SHARED_MEM_SIZE,
1129			PAGE_SIZE, AMDGPU_GEM_DOMAIN_VRAM,
1130			&psp->ras.ras_shared_bo,
1131			&psp->ras.ras_shared_mc_addr,
1132			&psp->ras.ras_shared_buf);
1133
1134	return ret;
1135}
1136
1137static int psp_ras_load(struct psp_context *psp)
1138{
1139	int ret;
1140	struct psp_gfx_cmd_resp *cmd;
1141	struct ta_ras_shared_memory *ras_cmd;
1142
1143	/*
1144	 * TODO: bypass the loading in sriov for now
1145	 */
1146	if (amdgpu_sriov_vf(psp->adev))
1147		return 0;
1148
1149	cmd = kzalloc(sizeof(struct psp_gfx_cmd_resp), GFP_KERNEL);
1150	if (!cmd)
1151		return -ENOMEM;
1152
1153	psp_copy_fw(psp, psp->ta_ras_start_addr, psp->ta_ras_ucode_size);
 
1154
1155	ras_cmd = (struct ta_ras_shared_memory *)psp->ras.ras_shared_buf;
1156
1157	if (psp->adev->gmc.xgmi.connected_to_cpu)
1158		ras_cmd->ras_in_message.init_flags.poison_mode_en = 1;
1159	else
1160		ras_cmd->ras_in_message.init_flags.dgpu_mode = 1;
1161
1162	psp_prep_ta_load_cmd_buf(cmd,
1163				 psp->fw_pri_mc_addr,
1164				 psp->ta_ras_ucode_size,
1165				 psp->ras.ras_shared_mc_addr,
1166				 PSP_RAS_SHARED_MEM_SIZE);
1167
1168	ret = psp_cmd_submit_buf(psp, NULL, cmd,
1169			psp->fence_buf_mc_addr);
1170
1171	if (!ret) {
1172		psp->ras.session_id = cmd->resp.session_id;
1173
1174		if (!ras_cmd->ras_status)
1175			psp->ras.ras_initialized = true;
1176		else
1177			dev_warn(psp->adev->dev, "RAS Init Status: 0x%X\n", ras_cmd->ras_status);
1178	}
1179
1180	if (ret || ras_cmd->ras_status)
1181		amdgpu_ras_fini(psp->adev);
1182
1183	kfree(cmd);
1184
1185	return ret;
1186}
1187
1188static int psp_ras_unload(struct psp_context *psp)
1189{
1190	int ret;
1191	struct psp_gfx_cmd_resp *cmd;
1192
1193	/*
1194	 * TODO: bypass the unloading in sriov for now
1195	 */
1196	if (amdgpu_sriov_vf(psp->adev))
1197		return 0;
1198
1199	cmd = kzalloc(sizeof(struct psp_gfx_cmd_resp), GFP_KERNEL);
1200	if (!cmd)
1201		return -ENOMEM;
1202
1203	psp_prep_ta_unload_cmd_buf(cmd, psp->ras.session_id);
1204
1205	ret = psp_cmd_submit_buf(psp, NULL, cmd,
1206			psp->fence_buf_mc_addr);
1207
1208	kfree(cmd);
1209
1210	return ret;
1211}
1212
1213int psp_ras_invoke(struct psp_context *psp, uint32_t ta_cmd_id)
1214{
1215	struct ta_ras_shared_memory *ras_cmd;
1216	int ret;
1217
1218	ras_cmd = (struct ta_ras_shared_memory *)psp->ras.ras_shared_buf;
1219
1220	/*
1221	 * TODO: bypass the loading in sriov for now
1222	 */
1223	if (amdgpu_sriov_vf(psp->adev))
1224		return 0;
1225
1226	ret = psp_ta_invoke(psp, ta_cmd_id, psp->ras.session_id);
1227
1228	if (amdgpu_ras_intr_triggered())
1229		return ret;
1230
1231	if (ras_cmd->if_version > RAS_TA_HOST_IF_VER)
1232	{
1233		DRM_WARN("RAS: Unsupported Interface");
1234		return -EINVAL;
1235	}
1236
1237	if (!ret) {
1238		if (ras_cmd->ras_out_message.flags.err_inject_switch_disable_flag) {
1239			dev_warn(psp->adev->dev, "ECC switch disabled\n");
1240
1241			ras_cmd->ras_status = TA_RAS_STATUS__ERROR_RAS_NOT_AVAILABLE;
1242		}
1243		else if (ras_cmd->ras_out_message.flags.reg_access_failure_flag)
1244			dev_warn(psp->adev->dev,
1245				 "RAS internal register access blocked\n");
1246	}
1247
1248	return ret;
1249}
1250
1251static int psp_ras_status_to_errno(struct amdgpu_device *adev,
1252					 enum ta_ras_status ras_status)
1253{
1254	int ret = -EINVAL;
1255
1256	switch (ras_status) {
1257	case TA_RAS_STATUS__SUCCESS:
1258		ret = 0;
1259		break;
1260	case TA_RAS_STATUS__RESET_NEEDED:
1261		ret = -EAGAIN;
1262		break;
1263	case TA_RAS_STATUS__ERROR_RAS_NOT_AVAILABLE:
1264		dev_warn(adev->dev, "RAS WARN: ras function unavailable\n");
1265		break;
1266	case TA_RAS_STATUS__ERROR_ASD_READ_WRITE:
1267		dev_warn(adev->dev, "RAS WARN: asd read or write failed\n");
1268		break;
1269	default:
1270		dev_err(adev->dev, "RAS ERROR: ras function failed ret 0x%X\n", ret);
1271	}
1272
1273	return ret;
1274}
1275
1276int psp_ras_enable_features(struct psp_context *psp,
1277		union ta_ras_cmd_input *info, bool enable)
1278{
1279	struct ta_ras_shared_memory *ras_cmd;
1280	int ret;
1281
1282	if (!psp->ras.ras_initialized)
1283		return -EINVAL;
1284
1285	ras_cmd = (struct ta_ras_shared_memory *)psp->ras.ras_shared_buf;
1286	memset(ras_cmd, 0, sizeof(struct ta_ras_shared_memory));
1287
1288	if (enable)
1289		ras_cmd->cmd_id = TA_RAS_COMMAND__ENABLE_FEATURES;
1290	else
1291		ras_cmd->cmd_id = TA_RAS_COMMAND__DISABLE_FEATURES;
1292
1293	ras_cmd->ras_in_message = *info;
1294
1295	ret = psp_ras_invoke(psp, ras_cmd->cmd_id);
1296	if (ret)
1297		return -EINVAL;
1298
1299	return psp_ras_status_to_errno(psp->adev, ras_cmd->ras_status);
1300}
1301
1302static int psp_ras_terminate(struct psp_context *psp)
1303{
1304	int ret;
1305
1306	/*
1307	 * TODO: bypass the terminate in sriov for now
1308	 */
1309	if (amdgpu_sriov_vf(psp->adev))
1310		return 0;
1311
1312	if (!psp->ras.ras_initialized)
1313		return 0;
1314
1315	ret = psp_ras_unload(psp);
1316	if (ret)
1317		return ret;
1318
1319	psp->ras.ras_initialized = false;
1320
1321	/* free ras shared memory */
1322	amdgpu_bo_free_kernel(&psp->ras.ras_shared_bo,
1323			&psp->ras.ras_shared_mc_addr,
1324			&psp->ras.ras_shared_buf);
1325
1326	return 0;
1327}
1328
1329static int psp_ras_initialize(struct psp_context *psp)
1330{
1331	int ret;
1332	uint32_t boot_cfg = 0xFF;
1333	struct amdgpu_device *adev = psp->adev;
1334
1335	/*
1336	 * TODO: bypass the initialize in sriov for now
1337	 */
1338	if (amdgpu_sriov_vf(adev))
1339		return 0;
1340
1341	if (!adev->psp.ta_ras_ucode_size ||
1342	    !adev->psp.ta_ras_start_addr) {
1343		dev_info(adev->dev, "RAS: optional ras ta ucode is not available\n");
1344		return 0;
1345	}
1346
1347	if (amdgpu_atomfirmware_dynamic_boot_config_supported(adev)) {
1348		/* query GECC enablement status from boot config
1349		 * boot_cfg: 1: GECC is enabled or 0: GECC is disabled
1350		 */
1351		ret = psp_boot_config_get(adev, &boot_cfg);
1352		if (ret)
1353			dev_warn(adev->dev, "PSP get boot config failed\n");
1354
1355		if (!amdgpu_ras_is_supported(psp->adev, AMDGPU_RAS_BLOCK__UMC)) {
1356			if (!boot_cfg) {
1357				dev_info(adev->dev, "GECC is disabled\n");
1358			} else {
1359				/* disable GECC in next boot cycle if ras is
1360				 * disabled by module parameter amdgpu_ras_enable
1361				 * and/or amdgpu_ras_mask, or boot_config_get call
1362				 * is failed
1363				 */
1364				ret = psp_boot_config_set(adev, 0);
1365				if (ret)
1366					dev_warn(adev->dev, "PSP set boot config failed\n");
1367				else
1368					dev_warn(adev->dev, "GECC will be disabled in next boot cycle "
1369						 "if set amdgpu_ras_enable and/or amdgpu_ras_mask to 0x0\n");
1370			}
1371		} else {
1372			if (1 == boot_cfg) {
1373				dev_info(adev->dev, "GECC is enabled\n");
1374			} else {
1375				/* enable GECC in next boot cycle if it is disabled
1376				 * in boot config, or force enable GECC if failed to
1377				 * get boot configuration
1378				 */
1379				ret = psp_boot_config_set(adev, BOOT_CONFIG_GECC);
1380				if (ret)
1381					dev_warn(adev->dev, "PSP set boot config failed\n");
1382				else
1383					dev_warn(adev->dev, "GECC will be enabled in next boot cycle\n");
1384			}
1385		}
1386	}
1387
1388	if (!psp->ras.ras_initialized) {
1389		ret = psp_ras_init_shared_buf(psp);
1390		if (ret)
1391			return ret;
1392	}
1393
1394	ret = psp_ras_load(psp);
1395	if (ret)
1396		return ret;
1397
1398	return 0;
1399}
1400
1401int psp_ras_trigger_error(struct psp_context *psp,
1402			  struct ta_ras_trigger_error_input *info)
1403{
1404	struct ta_ras_shared_memory *ras_cmd;
1405	int ret;
1406
1407	if (!psp->ras.ras_initialized)
1408		return -EINVAL;
1409
1410	ras_cmd = (struct ta_ras_shared_memory *)psp->ras.ras_shared_buf;
1411	memset(ras_cmd, 0, sizeof(struct ta_ras_shared_memory));
1412
1413	ras_cmd->cmd_id = TA_RAS_COMMAND__TRIGGER_ERROR;
1414	ras_cmd->ras_in_message.trigger_error = *info;
1415
1416	ret = psp_ras_invoke(psp, ras_cmd->cmd_id);
1417	if (ret)
1418		return -EINVAL;
1419
1420	/* If err_event_athub occurs error inject was successful, however
1421	   return status from TA is no long reliable */
1422	if (amdgpu_ras_intr_triggered())
1423		return 0;
1424
1425	return psp_ras_status_to_errno(psp->adev, ras_cmd->ras_status);
1426}
1427// ras end
1428
1429// HDCP start
1430static int psp_hdcp_init_shared_buf(struct psp_context *psp)
1431{
1432	int ret;
1433
1434	/*
1435	 * Allocate 16k memory aligned to 4k from Frame Buffer (local
1436	 * physical) for hdcp ta <-> Driver
1437	 */
1438	ret = amdgpu_bo_create_kernel(psp->adev, PSP_HDCP_SHARED_MEM_SIZE,
1439				      PAGE_SIZE, AMDGPU_GEM_DOMAIN_VRAM,
1440				      &psp->hdcp_context.hdcp_shared_bo,
1441				      &psp->hdcp_context.hdcp_shared_mc_addr,
1442				      &psp->hdcp_context.hdcp_shared_buf);
1443
1444	return ret;
1445}
1446
1447static int psp_hdcp_load(struct psp_context *psp)
1448{
1449	int ret;
1450	struct psp_gfx_cmd_resp *cmd;
1451
1452	/*
1453	 * TODO: bypass the loading in sriov for now
1454	 */
1455	if (amdgpu_sriov_vf(psp->adev))
1456		return 0;
1457
1458	cmd = kzalloc(sizeof(struct psp_gfx_cmd_resp), GFP_KERNEL);
1459	if (!cmd)
1460		return -ENOMEM;
1461
1462	psp_copy_fw(psp, psp->ta_hdcp_start_addr,
1463		    psp->ta_hdcp_ucode_size);
1464
1465	psp_prep_ta_load_cmd_buf(cmd,
1466				 psp->fw_pri_mc_addr,
1467				 psp->ta_hdcp_ucode_size,
1468				 psp->hdcp_context.hdcp_shared_mc_addr,
1469				 PSP_HDCP_SHARED_MEM_SIZE);
1470
1471	ret = psp_cmd_submit_buf(psp, NULL, cmd, psp->fence_buf_mc_addr);
1472
1473	if (!ret) {
1474		psp->hdcp_context.hdcp_initialized = true;
1475		psp->hdcp_context.session_id = cmd->resp.session_id;
1476		mutex_init(&psp->hdcp_context.mutex);
1477	}
1478
1479	kfree(cmd);
1480
1481	return ret;
1482}
1483static int psp_hdcp_initialize(struct psp_context *psp)
1484{
1485	int ret;
1486
1487	/*
1488	 * TODO: bypass the initialize in sriov for now
1489	 */
1490	if (amdgpu_sriov_vf(psp->adev))
1491		return 0;
1492
1493	if (!psp->adev->psp.ta_hdcp_ucode_size ||
1494	    !psp->adev->psp.ta_hdcp_start_addr) {
1495		dev_info(psp->adev->dev, "HDCP: optional hdcp ta ucode is not available\n");
1496		return 0;
1497	}
1498
1499	if (!psp->hdcp_context.hdcp_initialized) {
1500		ret = psp_hdcp_init_shared_buf(psp);
1501		if (ret)
1502			return ret;
1503	}
1504
1505	ret = psp_hdcp_load(psp);
1506	if (ret)
1507		return ret;
1508
1509	return 0;
1510}
1511
1512static int psp_hdcp_unload(struct psp_context *psp)
1513{
1514	int ret;
1515	struct psp_gfx_cmd_resp *cmd;
1516
1517	/*
1518	 * TODO: bypass the unloading in sriov for now
1519	 */
1520	if (amdgpu_sriov_vf(psp->adev))
1521		return 0;
1522
1523	cmd = kzalloc(sizeof(struct psp_gfx_cmd_resp), GFP_KERNEL);
1524	if (!cmd)
1525		return -ENOMEM;
1526
1527	psp_prep_ta_unload_cmd_buf(cmd, psp->hdcp_context.session_id);
1528
1529	ret = psp_cmd_submit_buf(psp, NULL, cmd, psp->fence_buf_mc_addr);
1530
1531	kfree(cmd);
1532
1533	return ret;
1534}
1535
1536int psp_hdcp_invoke(struct psp_context *psp, uint32_t ta_cmd_id)
1537{
1538	/*
1539	 * TODO: bypass the loading in sriov for now
1540	 */
1541	if (amdgpu_sriov_vf(psp->adev))
1542		return 0;
1543
1544	return psp_ta_invoke(psp, ta_cmd_id, psp->hdcp_context.session_id);
1545}
1546
1547static int psp_hdcp_terminate(struct psp_context *psp)
1548{
1549	int ret;
1550
1551	/*
1552	 * TODO: bypass the terminate in sriov for now
1553	 */
1554	if (amdgpu_sriov_vf(psp->adev))
1555		return 0;
1556
1557	if (!psp->hdcp_context.hdcp_initialized) {
1558		if (psp->hdcp_context.hdcp_shared_buf)
1559			goto out;
1560		else
1561			return 0;
1562	}
1563
1564	ret = psp_hdcp_unload(psp);
1565	if (ret)
1566		return ret;
1567
1568	psp->hdcp_context.hdcp_initialized = false;
1569
1570out:
1571	/* free hdcp shared memory */
1572	amdgpu_bo_free_kernel(&psp->hdcp_context.hdcp_shared_bo,
1573			      &psp->hdcp_context.hdcp_shared_mc_addr,
1574			      &psp->hdcp_context.hdcp_shared_buf);
1575
1576	return 0;
1577}
1578// HDCP end
1579
1580// DTM start
1581static int psp_dtm_init_shared_buf(struct psp_context *psp)
1582{
1583	int ret;
1584
1585	/*
1586	 * Allocate 16k memory aligned to 4k from Frame Buffer (local
1587	 * physical) for dtm ta <-> Driver
1588	 */
1589	ret = amdgpu_bo_create_kernel(psp->adev, PSP_DTM_SHARED_MEM_SIZE,
1590				      PAGE_SIZE, AMDGPU_GEM_DOMAIN_VRAM,
1591				      &psp->dtm_context.dtm_shared_bo,
1592				      &psp->dtm_context.dtm_shared_mc_addr,
1593				      &psp->dtm_context.dtm_shared_buf);
1594
1595	return ret;
1596}
1597
1598static int psp_dtm_load(struct psp_context *psp)
1599{
1600	int ret;
1601	struct psp_gfx_cmd_resp *cmd;
1602
1603	/*
1604	 * TODO: bypass the loading in sriov for now
1605	 */
1606	if (amdgpu_sriov_vf(psp->adev))
1607		return 0;
1608
1609	cmd = kzalloc(sizeof(struct psp_gfx_cmd_resp), GFP_KERNEL);
1610	if (!cmd)
1611		return -ENOMEM;
1612
1613	psp_copy_fw(psp, psp->ta_dtm_start_addr, psp->ta_dtm_ucode_size);
1614
1615	psp_prep_ta_load_cmd_buf(cmd,
1616				 psp->fw_pri_mc_addr,
1617				 psp->ta_dtm_ucode_size,
1618				 psp->dtm_context.dtm_shared_mc_addr,
1619				 PSP_DTM_SHARED_MEM_SIZE);
1620
1621	ret = psp_cmd_submit_buf(psp, NULL, cmd, psp->fence_buf_mc_addr);
1622
1623	if (!ret) {
1624		psp->dtm_context.dtm_initialized = true;
1625		psp->dtm_context.session_id = cmd->resp.session_id;
1626		mutex_init(&psp->dtm_context.mutex);
1627	}
1628
1629	kfree(cmd);
1630
1631	return ret;
1632}
1633
1634static int psp_dtm_initialize(struct psp_context *psp)
1635{
1636	int ret;
1637
1638	/*
1639	 * TODO: bypass the initialize in sriov for now
1640	 */
1641	if (amdgpu_sriov_vf(psp->adev))
1642		return 0;
1643
1644	if (!psp->adev->psp.ta_dtm_ucode_size ||
1645	    !psp->adev->psp.ta_dtm_start_addr) {
1646		dev_info(psp->adev->dev, "DTM: optional dtm ta ucode is not available\n");
1647		return 0;
1648	}
1649
1650	if (!psp->dtm_context.dtm_initialized) {
1651		ret = psp_dtm_init_shared_buf(psp);
1652		if (ret)
1653			return ret;
1654	}
1655
1656	ret = psp_dtm_load(psp);
1657	if (ret)
1658		return ret;
1659
1660	return 0;
1661}
1662
1663static int psp_dtm_unload(struct psp_context *psp)
1664{
1665	int ret;
1666	struct psp_gfx_cmd_resp *cmd;
1667
1668	/*
1669	 * TODO: bypass the unloading in sriov for now
1670	 */
1671	if (amdgpu_sriov_vf(psp->adev))
1672		return 0;
1673
1674	cmd = kzalloc(sizeof(struct psp_gfx_cmd_resp), GFP_KERNEL);
1675	if (!cmd)
1676		return -ENOMEM;
1677
1678	psp_prep_ta_unload_cmd_buf(cmd, psp->dtm_context.session_id);
1679
1680	ret = psp_cmd_submit_buf(psp, NULL, cmd, psp->fence_buf_mc_addr);
1681
1682	kfree(cmd);
1683
1684	return ret;
1685}
1686
1687int psp_dtm_invoke(struct psp_context *psp, uint32_t ta_cmd_id)
1688{
1689	/*
1690	 * TODO: bypass the loading in sriov for now
1691	 */
1692	if (amdgpu_sriov_vf(psp->adev))
1693		return 0;
1694
1695	return psp_ta_invoke(psp, ta_cmd_id, psp->dtm_context.session_id);
1696}
1697
1698static int psp_dtm_terminate(struct psp_context *psp)
1699{
1700	int ret;
1701
1702	/*
1703	 * TODO: bypass the terminate in sriov for now
1704	 */
1705	if (amdgpu_sriov_vf(psp->adev))
1706		return 0;
1707
1708	if (!psp->dtm_context.dtm_initialized) {
1709		if (psp->dtm_context.dtm_shared_buf)
1710			goto out;
1711		else
1712			return 0;
1713	}
1714
1715	ret = psp_dtm_unload(psp);
1716	if (ret)
1717		return ret;
1718
1719	psp->dtm_context.dtm_initialized = false;
1720
1721out:
1722	/* free hdcp shared memory */
1723	amdgpu_bo_free_kernel(&psp->dtm_context.dtm_shared_bo,
1724			      &psp->dtm_context.dtm_shared_mc_addr,
1725			      &psp->dtm_context.dtm_shared_buf);
1726
1727	return 0;
1728}
1729// DTM end
1730
1731// RAP start
1732static int psp_rap_init_shared_buf(struct psp_context *psp)
1733{
1734	int ret;
1735
1736	/*
1737	 * Allocate 16k memory aligned to 4k from Frame Buffer (local
1738	 * physical) for rap ta <-> Driver
1739	 */
1740	ret = amdgpu_bo_create_kernel(psp->adev, PSP_RAP_SHARED_MEM_SIZE,
1741				      PAGE_SIZE, AMDGPU_GEM_DOMAIN_VRAM,
1742				      &psp->rap_context.rap_shared_bo,
1743				      &psp->rap_context.rap_shared_mc_addr,
1744				      &psp->rap_context.rap_shared_buf);
1745
1746	return ret;
1747}
1748
1749static int psp_rap_load(struct psp_context *psp)
1750{
1751	int ret;
1752	struct psp_gfx_cmd_resp *cmd;
1753
1754	cmd = kzalloc(sizeof(struct psp_gfx_cmd_resp), GFP_KERNEL);
1755	if (!cmd)
1756		return -ENOMEM;
1757
1758	psp_copy_fw(psp, psp->ta_rap_start_addr, psp->ta_rap_ucode_size);
1759
1760	psp_prep_ta_load_cmd_buf(cmd,
1761				 psp->fw_pri_mc_addr,
1762				 psp->ta_rap_ucode_size,
1763				 psp->rap_context.rap_shared_mc_addr,
1764				 PSP_RAP_SHARED_MEM_SIZE);
1765
1766	ret = psp_cmd_submit_buf(psp, NULL, cmd, psp->fence_buf_mc_addr);
1767
1768	if (!ret) {
1769		psp->rap_context.rap_initialized = true;
1770		psp->rap_context.session_id = cmd->resp.session_id;
1771		mutex_init(&psp->rap_context.mutex);
1772	}
1773
1774	kfree(cmd);
1775
1776	return ret;
1777}
1778
1779static int psp_rap_unload(struct psp_context *psp)
1780{
1781	int ret;
1782	struct psp_gfx_cmd_resp *cmd;
1783
1784	cmd = kzalloc(sizeof(struct psp_gfx_cmd_resp), GFP_KERNEL);
1785	if (!cmd)
1786		return -ENOMEM;
1787
1788	psp_prep_ta_unload_cmd_buf(cmd, psp->rap_context.session_id);
1789
1790	ret = psp_cmd_submit_buf(psp, NULL, cmd, psp->fence_buf_mc_addr);
1791
1792	kfree(cmd);
1793
1794	return ret;
1795}
1796
1797static int psp_rap_initialize(struct psp_context *psp)
1798{
1799	int ret;
1800	enum ta_rap_status status = TA_RAP_STATUS__SUCCESS;
1801
1802	/*
1803	 * TODO: bypass the initialize in sriov for now
1804	 */
1805	if (amdgpu_sriov_vf(psp->adev))
1806		return 0;
1807
1808	if (!psp->adev->psp.ta_rap_ucode_size ||
1809	    !psp->adev->psp.ta_rap_start_addr) {
1810		dev_info(psp->adev->dev, "RAP: optional rap ta ucode is not available\n");
1811		return 0;
1812	}
1813
1814	if (!psp->rap_context.rap_initialized) {
1815		ret = psp_rap_init_shared_buf(psp);
1816		if (ret)
1817			return ret;
1818	}
1819
1820	ret = psp_rap_load(psp);
1821	if (ret)
1822		return ret;
1823
1824	ret = psp_rap_invoke(psp, TA_CMD_RAP__INITIALIZE, &status);
1825	if (ret || status != TA_RAP_STATUS__SUCCESS) {
1826		psp_rap_unload(psp);
1827
1828		amdgpu_bo_free_kernel(&psp->rap_context.rap_shared_bo,
1829			      &psp->rap_context.rap_shared_mc_addr,
1830			      &psp->rap_context.rap_shared_buf);
1831
1832		psp->rap_context.rap_initialized = false;
1833
1834		dev_warn(psp->adev->dev, "RAP TA initialize fail (%d) status %d.\n",
1835			 ret, status);
1836
1837		return ret;
1838	}
1839
1840	return 0;
1841}
1842
1843static int psp_rap_terminate(struct psp_context *psp)
1844{
1845	int ret;
1846
1847	if (!psp->rap_context.rap_initialized)
1848		return 0;
1849
1850	ret = psp_rap_unload(psp);
1851
1852	psp->rap_context.rap_initialized = false;
1853
1854	/* free rap shared memory */
1855	amdgpu_bo_free_kernel(&psp->rap_context.rap_shared_bo,
1856			      &psp->rap_context.rap_shared_mc_addr,
1857			      &psp->rap_context.rap_shared_buf);
1858
1859	return ret;
1860}
1861
1862int psp_rap_invoke(struct psp_context *psp, uint32_t ta_cmd_id, enum ta_rap_status *status)
1863{
1864	struct ta_rap_shared_memory *rap_cmd;
1865	int ret = 0;
1866
1867	if (!psp->rap_context.rap_initialized)
1868		return 0;
1869
1870	if (ta_cmd_id != TA_CMD_RAP__INITIALIZE &&
1871	    ta_cmd_id != TA_CMD_RAP__VALIDATE_L0)
1872		return -EINVAL;
1873
1874	mutex_lock(&psp->rap_context.mutex);
1875
1876	rap_cmd = (struct ta_rap_shared_memory *)
1877		  psp->rap_context.rap_shared_buf;
1878	memset(rap_cmd, 0, sizeof(struct ta_rap_shared_memory));
1879
1880	rap_cmd->cmd_id = ta_cmd_id;
1881	rap_cmd->validation_method_id = METHOD_A;
1882
1883	ret = psp_ta_invoke(psp, rap_cmd->cmd_id, psp->rap_context.session_id);
1884	if (ret)
1885		goto out_unlock;
1886
1887	if (status)
1888		*status = rap_cmd->rap_status;
1889
1890out_unlock:
1891	mutex_unlock(&psp->rap_context.mutex);
1892
1893	return ret;
1894}
1895// RAP end
1896
1897/* securedisplay start */
1898static int psp_securedisplay_init_shared_buf(struct psp_context *psp)
1899{
1900	int ret;
1901
1902	/*
1903	 * Allocate 16k memory aligned to 4k from Frame Buffer (local
1904	 * physical) for sa ta <-> Driver
1905	 */
1906	ret = amdgpu_bo_create_kernel(psp->adev, PSP_SECUREDISPLAY_SHARED_MEM_SIZE,
1907				      PAGE_SIZE, AMDGPU_GEM_DOMAIN_VRAM,
1908				      &psp->securedisplay_context.securedisplay_shared_bo,
1909				      &psp->securedisplay_context.securedisplay_shared_mc_addr,
1910				      &psp->securedisplay_context.securedisplay_shared_buf);
1911
1912	return ret;
1913}
1914
1915static int psp_securedisplay_load(struct psp_context *psp)
1916{
1917	int ret;
1918	struct psp_gfx_cmd_resp *cmd;
1919
1920	cmd = kzalloc(sizeof(struct psp_gfx_cmd_resp), GFP_KERNEL);
1921	if (!cmd)
1922		return -ENOMEM;
1923
1924	memset(psp->fw_pri_buf, 0, PSP_1_MEG);
1925	memcpy(psp->fw_pri_buf, psp->ta_securedisplay_start_addr, psp->ta_securedisplay_ucode_size);
1926
1927	psp_prep_ta_load_cmd_buf(cmd,
1928				 psp->fw_pri_mc_addr,
1929				 psp->ta_securedisplay_ucode_size,
1930				 psp->securedisplay_context.securedisplay_shared_mc_addr,
1931				 PSP_SECUREDISPLAY_SHARED_MEM_SIZE);
1932
1933	ret = psp_cmd_submit_buf(psp, NULL, cmd, psp->fence_buf_mc_addr);
1934
1935	if (ret)
1936		goto failed;
1937
1938	psp->securedisplay_context.securedisplay_initialized = true;
1939	psp->securedisplay_context.session_id = cmd->resp.session_id;
1940	mutex_init(&psp->securedisplay_context.mutex);
1941
1942failed:
1943	kfree(cmd);
1944	return ret;
1945}
1946
1947static int psp_securedisplay_unload(struct psp_context *psp)
1948{
1949	int ret;
1950	struct psp_gfx_cmd_resp *cmd;
1951
1952	cmd = kzalloc(sizeof(struct psp_gfx_cmd_resp), GFP_KERNEL);
1953	if (!cmd)
1954		return -ENOMEM;
1955
1956	psp_prep_ta_unload_cmd_buf(cmd, psp->securedisplay_context.session_id);
1957
1958	ret = psp_cmd_submit_buf(psp, NULL, cmd, psp->fence_buf_mc_addr);
1959
1960	kfree(cmd);
1961
1962	return ret;
1963}
1964
1965static int psp_securedisplay_initialize(struct psp_context *psp)
1966{
1967	int ret;
1968	struct securedisplay_cmd *securedisplay_cmd;
1969
1970	/*
1971	 * TODO: bypass the initialize in sriov for now
1972	 */
1973	if (amdgpu_sriov_vf(psp->adev))
1974		return 0;
1975
1976	if (!psp->adev->psp.ta_securedisplay_ucode_size ||
1977	    !psp->adev->psp.ta_securedisplay_start_addr) {
1978		dev_info(psp->adev->dev, "SECUREDISPLAY: securedisplay ta ucode is not available\n");
1979		return 0;
1980	}
1981
1982	if (!psp->securedisplay_context.securedisplay_initialized) {
1983		ret = psp_securedisplay_init_shared_buf(psp);
1984		if (ret)
1985			return ret;
1986	}
1987
1988	ret = psp_securedisplay_load(psp);
1989	if (ret)
1990		return ret;
1991
1992	psp_prep_securedisplay_cmd_buf(psp, &securedisplay_cmd,
1993			TA_SECUREDISPLAY_COMMAND__QUERY_TA);
1994
1995	ret = psp_securedisplay_invoke(psp, TA_SECUREDISPLAY_COMMAND__QUERY_TA);
1996	if (ret) {
1997		psp_securedisplay_unload(psp);
1998
1999		amdgpu_bo_free_kernel(&psp->securedisplay_context.securedisplay_shared_bo,
2000			      &psp->securedisplay_context.securedisplay_shared_mc_addr,
2001			      &psp->securedisplay_context.securedisplay_shared_buf);
2002
2003		psp->securedisplay_context.securedisplay_initialized = false;
2004
2005		dev_err(psp->adev->dev, "SECUREDISPLAY TA initialize fail.\n");
2006		return -EINVAL;
2007	}
2008
2009	if (securedisplay_cmd->status != TA_SECUREDISPLAY_STATUS__SUCCESS) {
2010		psp_securedisplay_parse_resp_status(psp, securedisplay_cmd->status);
2011		dev_err(psp->adev->dev, "SECUREDISPLAY: query securedisplay TA failed. ret 0x%x\n",
2012			securedisplay_cmd->securedisplay_out_message.query_ta.query_cmd_ret);
2013	}
2014
2015	return 0;
2016}
2017
2018static int psp_securedisplay_terminate(struct psp_context *psp)
2019{
2020	int ret;
2021
2022	/*
2023	 * TODO:bypass the terminate in sriov for now
2024	 */
2025	if (amdgpu_sriov_vf(psp->adev))
2026		return 0;
2027
2028	if (!psp->securedisplay_context.securedisplay_initialized)
2029		return 0;
2030
2031	ret = psp_securedisplay_unload(psp);
2032	if (ret)
2033		return ret;
2034
2035	psp->securedisplay_context.securedisplay_initialized = false;
2036
2037	/* free securedisplay shared memory */
2038	amdgpu_bo_free_kernel(&psp->securedisplay_context.securedisplay_shared_bo,
2039			      &psp->securedisplay_context.securedisplay_shared_mc_addr,
2040			      &psp->securedisplay_context.securedisplay_shared_buf);
2041
2042	return ret;
2043}
2044
2045int psp_securedisplay_invoke(struct psp_context *psp, uint32_t ta_cmd_id)
2046{
2047	int ret;
2048
2049	if (!psp->securedisplay_context.securedisplay_initialized)
2050		return -EINVAL;
2051
2052	if (ta_cmd_id != TA_SECUREDISPLAY_COMMAND__QUERY_TA &&
2053	    ta_cmd_id != TA_SECUREDISPLAY_COMMAND__SEND_ROI_CRC)
2054		return -EINVAL;
2055
2056	mutex_lock(&psp->securedisplay_context.mutex);
2057
2058	ret = psp_ta_invoke(psp, ta_cmd_id, psp->securedisplay_context.session_id);
2059
2060	mutex_unlock(&psp->securedisplay_context.mutex);
2061
2062	return ret;
2063}
2064/* SECUREDISPLAY end */
2065
2066static int psp_hw_start(struct psp_context *psp)
2067{
2068	struct amdgpu_device *adev = psp->adev;
2069	int ret;
2070
2071	if (!amdgpu_sriov_vf(adev)) {
2072		if (psp->kdb_bin_size &&
2073		    (psp->funcs->bootloader_load_kdb != NULL)) {
2074			ret = psp_bootloader_load_kdb(psp);
2075			if (ret) {
2076				DRM_ERROR("PSP load kdb failed!\n");
2077				return ret;
2078			}
2079		}
2080
2081		if (psp->spl_bin_size) {
2082			ret = psp_bootloader_load_spl(psp);
2083			if (ret) {
2084				DRM_ERROR("PSP load spl failed!\n");
2085				return ret;
2086			}
2087		}
2088
2089		ret = psp_bootloader_load_sysdrv(psp);
2090		if (ret) {
2091			DRM_ERROR("PSP load sysdrv failed!\n");
2092			return ret;
2093		}
2094
2095		ret = psp_bootloader_load_sos(psp);
2096		if (ret) {
2097			DRM_ERROR("PSP load sos failed!\n");
2098			return ret;
2099		}
2100	}
2101
2102	ret = psp_ring_create(psp, PSP_RING_TYPE__KM);
2103	if (ret) {
2104		DRM_ERROR("PSP create ring failed!\n");
2105		return ret;
2106	}
2107
2108	ret = psp_tmr_init(psp);
2109	if (ret) {
2110		DRM_ERROR("PSP tmr init failed!\n");
2111		return ret;
2112	}
2113
2114	/*
2115	 * For ASICs with DF Cstate management centralized
2116	 * to PMFW, TMR setup should be performed after PMFW
2117	 * loaded and before other non-psp firmware loaded.
2118	 */
2119	if (psp->pmfw_centralized_cstate_management) {
2120		ret = psp_load_smu_fw(psp);
2121		if (ret)
2122			return ret;
2123	}
2124
2125	ret = psp_tmr_load(psp);
2126	if (ret) {
2127		DRM_ERROR("PSP load tmr failed!\n");
2128		return ret;
2129	}
2130
2131	return 0;
2132}
2133
2134static int psp_get_fw_type(struct amdgpu_firmware_info *ucode,
2135			   enum psp_gfx_fw_type *type)
2136{
2137	switch (ucode->ucode_id) {
2138	case AMDGPU_UCODE_ID_SDMA0:
2139		*type = GFX_FW_TYPE_SDMA0;
2140		break;
2141	case AMDGPU_UCODE_ID_SDMA1:
2142		*type = GFX_FW_TYPE_SDMA1;
2143		break;
2144	case AMDGPU_UCODE_ID_SDMA2:
2145		*type = GFX_FW_TYPE_SDMA2;
2146		break;
2147	case AMDGPU_UCODE_ID_SDMA3:
2148		*type = GFX_FW_TYPE_SDMA3;
2149		break;
2150	case AMDGPU_UCODE_ID_SDMA4:
2151		*type = GFX_FW_TYPE_SDMA4;
2152		break;
2153	case AMDGPU_UCODE_ID_SDMA5:
2154		*type = GFX_FW_TYPE_SDMA5;
2155		break;
2156	case AMDGPU_UCODE_ID_SDMA6:
2157		*type = GFX_FW_TYPE_SDMA6;
2158		break;
2159	case AMDGPU_UCODE_ID_SDMA7:
2160		*type = GFX_FW_TYPE_SDMA7;
2161		break;
2162	case AMDGPU_UCODE_ID_CP_MES:
2163		*type = GFX_FW_TYPE_CP_MES;
2164		break;
2165	case AMDGPU_UCODE_ID_CP_MES_DATA:
2166		*type = GFX_FW_TYPE_MES_STACK;
2167		break;
2168	case AMDGPU_UCODE_ID_CP_CE:
2169		*type = GFX_FW_TYPE_CP_CE;
2170		break;
2171	case AMDGPU_UCODE_ID_CP_PFP:
2172		*type = GFX_FW_TYPE_CP_PFP;
2173		break;
2174	case AMDGPU_UCODE_ID_CP_ME:
2175		*type = GFX_FW_TYPE_CP_ME;
2176		break;
2177	case AMDGPU_UCODE_ID_CP_MEC1:
2178		*type = GFX_FW_TYPE_CP_MEC;
2179		break;
2180	case AMDGPU_UCODE_ID_CP_MEC1_JT:
2181		*type = GFX_FW_TYPE_CP_MEC_ME1;
2182		break;
2183	case AMDGPU_UCODE_ID_CP_MEC2:
2184		*type = GFX_FW_TYPE_CP_MEC;
2185		break;
2186	case AMDGPU_UCODE_ID_CP_MEC2_JT:
2187		*type = GFX_FW_TYPE_CP_MEC_ME2;
2188		break;
2189	case AMDGPU_UCODE_ID_RLC_G:
2190		*type = GFX_FW_TYPE_RLC_G;
2191		break;
2192	case AMDGPU_UCODE_ID_RLC_RESTORE_LIST_CNTL:
2193		*type = GFX_FW_TYPE_RLC_RESTORE_LIST_SRM_CNTL;
2194		break;
2195	case AMDGPU_UCODE_ID_RLC_RESTORE_LIST_GPM_MEM:
2196		*type = GFX_FW_TYPE_RLC_RESTORE_LIST_GPM_MEM;
2197		break;
2198	case AMDGPU_UCODE_ID_RLC_RESTORE_LIST_SRM_MEM:
2199		*type = GFX_FW_TYPE_RLC_RESTORE_LIST_SRM_MEM;
2200		break;
2201	case AMDGPU_UCODE_ID_RLC_IRAM:
2202		*type = GFX_FW_TYPE_RLC_IRAM;
2203		break;
2204	case AMDGPU_UCODE_ID_RLC_DRAM:
2205		*type = GFX_FW_TYPE_RLC_DRAM_BOOT;
2206		break;
2207	case AMDGPU_UCODE_ID_SMC:
2208		*type = GFX_FW_TYPE_SMU;
2209		break;
2210	case AMDGPU_UCODE_ID_UVD:
2211		*type = GFX_FW_TYPE_UVD;
2212		break;
2213	case AMDGPU_UCODE_ID_UVD1:
2214		*type = GFX_FW_TYPE_UVD1;
2215		break;
2216	case AMDGPU_UCODE_ID_VCE:
2217		*type = GFX_FW_TYPE_VCE;
2218		break;
2219	case AMDGPU_UCODE_ID_VCN:
2220		*type = GFX_FW_TYPE_VCN;
2221		break;
2222	case AMDGPU_UCODE_ID_VCN1:
2223		*type = GFX_FW_TYPE_VCN1;
2224		break;
2225	case AMDGPU_UCODE_ID_DMCU_ERAM:
2226		*type = GFX_FW_TYPE_DMCU_ERAM;
2227		break;
2228	case AMDGPU_UCODE_ID_DMCU_INTV:
2229		*type = GFX_FW_TYPE_DMCU_ISR;
2230		break;
2231	case AMDGPU_UCODE_ID_VCN0_RAM:
2232		*type = GFX_FW_TYPE_VCN0_RAM;
2233		break;
2234	case AMDGPU_UCODE_ID_VCN1_RAM:
2235		*type = GFX_FW_TYPE_VCN1_RAM;
2236		break;
2237	case AMDGPU_UCODE_ID_DMCUB:
2238		*type = GFX_FW_TYPE_DMUB;
2239		break;
2240	case AMDGPU_UCODE_ID_MAXIMUM:
2241	default:
2242		return -EINVAL;
2243	}
2244
2245	return 0;
2246}
2247
2248static void psp_print_fw_hdr(struct psp_context *psp,
2249			     struct amdgpu_firmware_info *ucode)
2250{
2251	struct amdgpu_device *adev = psp->adev;
2252	struct common_firmware_header *hdr;
2253
2254	switch (ucode->ucode_id) {
2255	case AMDGPU_UCODE_ID_SDMA0:
2256	case AMDGPU_UCODE_ID_SDMA1:
2257	case AMDGPU_UCODE_ID_SDMA2:
2258	case AMDGPU_UCODE_ID_SDMA3:
2259	case AMDGPU_UCODE_ID_SDMA4:
2260	case AMDGPU_UCODE_ID_SDMA5:
2261	case AMDGPU_UCODE_ID_SDMA6:
2262	case AMDGPU_UCODE_ID_SDMA7:
2263		hdr = (struct common_firmware_header *)
2264			adev->sdma.instance[ucode->ucode_id - AMDGPU_UCODE_ID_SDMA0].fw->data;
2265		amdgpu_ucode_print_sdma_hdr(hdr);
2266		break;
2267	case AMDGPU_UCODE_ID_CP_CE:
2268		hdr = (struct common_firmware_header *)adev->gfx.ce_fw->data;
2269		amdgpu_ucode_print_gfx_hdr(hdr);
2270		break;
2271	case AMDGPU_UCODE_ID_CP_PFP:
2272		hdr = (struct common_firmware_header *)adev->gfx.pfp_fw->data;
2273		amdgpu_ucode_print_gfx_hdr(hdr);
2274		break;
2275	case AMDGPU_UCODE_ID_CP_ME:
2276		hdr = (struct common_firmware_header *)adev->gfx.me_fw->data;
2277		amdgpu_ucode_print_gfx_hdr(hdr);
2278		break;
2279	case AMDGPU_UCODE_ID_CP_MEC1:
2280		hdr = (struct common_firmware_header *)adev->gfx.mec_fw->data;
2281		amdgpu_ucode_print_gfx_hdr(hdr);
2282		break;
2283	case AMDGPU_UCODE_ID_RLC_G:
2284		hdr = (struct common_firmware_header *)adev->gfx.rlc_fw->data;
2285		amdgpu_ucode_print_rlc_hdr(hdr);
2286		break;
2287	case AMDGPU_UCODE_ID_SMC:
2288		hdr = (struct common_firmware_header *)adev->pm.fw->data;
2289		amdgpu_ucode_print_smc_hdr(hdr);
2290		break;
2291	default:
2292		break;
2293	}
2294}
2295
2296static int psp_prep_load_ip_fw_cmd_buf(struct amdgpu_firmware_info *ucode,
2297				       struct psp_gfx_cmd_resp *cmd)
2298{
2299	int ret;
2300	uint64_t fw_mem_mc_addr = ucode->mc_addr;
2301
2302	memset(cmd, 0, sizeof(struct psp_gfx_cmd_resp));
2303
2304	cmd->cmd_id = GFX_CMD_ID_LOAD_IP_FW;
2305	cmd->cmd.cmd_load_ip_fw.fw_phy_addr_lo = lower_32_bits(fw_mem_mc_addr);
2306	cmd->cmd.cmd_load_ip_fw.fw_phy_addr_hi = upper_32_bits(fw_mem_mc_addr);
2307	cmd->cmd.cmd_load_ip_fw.fw_size = ucode->ucode_size;
2308
2309	ret = psp_get_fw_type(ucode, &cmd->cmd.cmd_load_ip_fw.fw_type);
2310	if (ret)
2311		DRM_ERROR("Unknown firmware type\n");
2312
2313	return ret;
2314}
2315
2316static int psp_execute_np_fw_load(struct psp_context *psp,
2317			          struct amdgpu_firmware_info *ucode)
2318{
2319	int ret = 0;
2320
2321	ret = psp_prep_load_ip_fw_cmd_buf(ucode, psp->cmd);
2322	if (ret)
2323		return ret;
2324
2325	ret = psp_cmd_submit_buf(psp, ucode, psp->cmd,
2326				 psp->fence_buf_mc_addr);
2327
2328	return ret;
2329}
2330
2331static int psp_load_smu_fw(struct psp_context *psp)
2332{
2333	int ret;
2334	struct amdgpu_device *adev = psp->adev;
2335	struct amdgpu_firmware_info *ucode =
2336			&adev->firmware.ucode[AMDGPU_UCODE_ID_SMC];
2337	struct amdgpu_ras *ras = psp->ras.ras;
2338
2339	if (!ucode->fw || amdgpu_sriov_vf(psp->adev))
2340		return 0;
2341
2342	if ((amdgpu_in_reset(adev) &&
2343	     ras && adev->ras_enabled &&
2344	     (adev->asic_type == CHIP_ARCTURUS ||
2345	      adev->asic_type == CHIP_VEGA20))) {
2346		ret = amdgpu_dpm_set_mp1_state(adev, PP_MP1_STATE_UNLOAD);
2347		if (ret) {
2348			DRM_WARN("Failed to set MP1 state prepare for reload\n");
2349		}
2350	}
2351
2352	ret = psp_execute_np_fw_load(psp, ucode);
2353
2354	if (ret)
2355		DRM_ERROR("PSP load smu failed!\n");
2356
2357	return ret;
2358}
2359
2360static bool fw_load_skip_check(struct psp_context *psp,
2361			       struct amdgpu_firmware_info *ucode)
2362{
2363	if (!ucode->fw)
2364		return true;
2365
2366	if (ucode->ucode_id == AMDGPU_UCODE_ID_SMC &&
2367	    (psp_smu_reload_quirk(psp) ||
2368	     psp->autoload_supported ||
2369	     psp->pmfw_centralized_cstate_management))
2370		return true;
2371
2372	if (amdgpu_sriov_vf(psp->adev) &&
2373	   (ucode->ucode_id == AMDGPU_UCODE_ID_SDMA0
2374	    || ucode->ucode_id == AMDGPU_UCODE_ID_SDMA1
2375	    || ucode->ucode_id == AMDGPU_UCODE_ID_SDMA2
2376	    || ucode->ucode_id == AMDGPU_UCODE_ID_SDMA3
2377	    || ucode->ucode_id == AMDGPU_UCODE_ID_SDMA4
2378	    || ucode->ucode_id == AMDGPU_UCODE_ID_SDMA5
2379	    || ucode->ucode_id == AMDGPU_UCODE_ID_SDMA6
2380	    || ucode->ucode_id == AMDGPU_UCODE_ID_SDMA7
2381	    || ucode->ucode_id == AMDGPU_UCODE_ID_RLC_G
2382	    || ucode->ucode_id == AMDGPU_UCODE_ID_RLC_RESTORE_LIST_CNTL
2383	    || ucode->ucode_id == AMDGPU_UCODE_ID_RLC_RESTORE_LIST_GPM_MEM
2384	    || ucode->ucode_id == AMDGPU_UCODE_ID_RLC_RESTORE_LIST_SRM_MEM
2385	    || ucode->ucode_id == AMDGPU_UCODE_ID_SMC))
2386		/*skip ucode loading in SRIOV VF */
2387		return true;
2388
2389	if (psp->autoload_supported &&
2390	    (ucode->ucode_id == AMDGPU_UCODE_ID_CP_MEC1_JT ||
2391	     ucode->ucode_id == AMDGPU_UCODE_ID_CP_MEC2_JT))
2392		/* skip mec JT when autoload is enabled */
2393		return true;
2394
2395	return false;
2396}
2397
2398int psp_load_fw_list(struct psp_context *psp,
2399		     struct amdgpu_firmware_info **ucode_list, int ucode_count)
2400{
2401	int ret = 0, i;
2402	struct amdgpu_firmware_info *ucode;
2403
2404	for (i = 0; i < ucode_count; ++i) {
2405		ucode = ucode_list[i];
2406		psp_print_fw_hdr(psp, ucode);
2407		ret = psp_execute_np_fw_load(psp, ucode);
2408		if (ret)
2409			return ret;
2410	}
2411	return ret;
2412}
2413
2414static int psp_np_fw_load(struct psp_context *psp)
2415{
2416	int i, ret;
2417	struct amdgpu_firmware_info *ucode;
2418	struct amdgpu_device *adev = psp->adev;
2419
2420	if (psp->autoload_supported &&
2421	    !psp->pmfw_centralized_cstate_management) {
2422		ret = psp_load_smu_fw(psp);
2423		if (ret)
2424			return ret;
2425	}
2426
2427	for (i = 0; i < adev->firmware.max_ucodes; i++) {
2428		ucode = &adev->firmware.ucode[i];
 
 
2429
2430		if (ucode->ucode_id == AMDGPU_UCODE_ID_SMC &&
2431		    !fw_load_skip_check(psp, ucode)) {
2432			ret = psp_load_smu_fw(psp);
2433			if (ret)
2434				return ret;
2435			continue;
2436		}
2437
2438		if (fw_load_skip_check(psp, ucode))
 
 
2439			continue;
2440
2441		if (psp->autoload_supported &&
2442		    (adev->asic_type >= CHIP_SIENNA_CICHLID &&
2443		     adev->asic_type <= CHIP_DIMGREY_CAVEFISH) &&
2444		    (ucode->ucode_id == AMDGPU_UCODE_ID_SDMA1 ||
2445		     ucode->ucode_id == AMDGPU_UCODE_ID_SDMA2 ||
2446		     ucode->ucode_id == AMDGPU_UCODE_ID_SDMA3))
2447			/* PSP only receive one SDMA fw for sienna_cichlid,
2448			 * as all four sdma fw are same */
2449			continue;
2450
2451		psp_print_fw_hdr(psp, ucode);
2452
2453		ret = psp_execute_np_fw_load(psp, ucode);
 
2454		if (ret)
2455			return ret;
2456
2457		/* Start rlc autoload after psp recieved all the gfx firmware */
2458		if (psp->autoload_supported && ucode->ucode_id == (amdgpu_sriov_vf(adev) ?
2459		    AMDGPU_UCODE_ID_CP_MEC2 : AMDGPU_UCODE_ID_RLC_G)) {
2460			ret = psp_rlc_autoload_start(psp);
2461			if (ret) {
2462				DRM_ERROR("Failed to start rlc autoload\n");
2463				return ret;
2464			}
2465		}
2466	}
2467
2468	return 0;
2469}
2470
2471static int psp_load_fw(struct amdgpu_device *adev)
2472{
2473	int ret;
2474	struct psp_context *psp = &adev->psp;
2475
2476	if (amdgpu_sriov_vf(adev) && amdgpu_in_reset(adev)) {
2477		psp_ring_stop(psp, PSP_RING_TYPE__KM); /* should not destroy ring, only stop */
2478		goto skip_memalloc;
2479	}
2480
2481	psp->cmd = kzalloc(sizeof(struct psp_gfx_cmd_resp), GFP_KERNEL);
2482	if (!psp->cmd)
2483		return -ENOMEM;
2484
2485	if (amdgpu_sriov_vf(adev)) {
2486		ret = amdgpu_bo_create_kernel(adev, PSP_1_MEG, PSP_1_MEG,
2487						AMDGPU_GEM_DOMAIN_VRAM,
2488						&psp->fw_pri_bo,
2489						&psp->fw_pri_mc_addr,
2490						&psp->fw_pri_buf);
2491	} else {
2492		ret = amdgpu_bo_create_kernel(adev, PSP_1_MEG, PSP_1_MEG,
2493						AMDGPU_GEM_DOMAIN_GTT,
2494						&psp->fw_pri_bo,
2495						&psp->fw_pri_mc_addr,
2496						&psp->fw_pri_buf);
2497	}
2498
2499	if (ret)
2500		goto failed;
2501
2502	ret = amdgpu_bo_create_kernel(adev, PSP_FENCE_BUFFER_SIZE, PAGE_SIZE,
2503					AMDGPU_GEM_DOMAIN_VRAM,
2504					&psp->fence_buf_bo,
2505					&psp->fence_buf_mc_addr,
2506					&psp->fence_buf);
2507	if (ret)
2508		goto failed;
2509
2510	ret = amdgpu_bo_create_kernel(adev, PSP_CMD_BUFFER_SIZE, PAGE_SIZE,
2511				      AMDGPU_GEM_DOMAIN_VRAM,
2512				      &psp->cmd_buf_bo, &psp->cmd_buf_mc_addr,
2513				      (void **)&psp->cmd_buf_mem);
2514	if (ret)
2515		goto failed;
2516
2517	memset(psp->fence_buf, 0, PSP_FENCE_BUFFER_SIZE);
2518
2519	ret = psp_ring_init(psp, PSP_RING_TYPE__KM);
2520	if (ret) {
2521		DRM_ERROR("PSP ring init failed!\n");
2522		goto failed;
2523	}
 
 
 
 
 
 
2524
2525skip_memalloc:
2526	ret = psp_hw_start(psp);
2527	if (ret)
2528		goto failed;
2529
2530	ret = psp_np_fw_load(psp);
2531	if (ret)
2532		goto failed;
2533
2534	ret = psp_asd_load(psp);
2535	if (ret) {
2536		DRM_ERROR("PSP load asd failed!\n");
2537		return ret;
2538	}
2539
2540	ret = psp_rl_load(adev);
2541	if (ret) {
2542		DRM_ERROR("PSP load RL failed!\n");
2543		return ret;
2544	}
2545
2546	if (psp->adev->psp.ta_fw) {
2547		ret = psp_ras_initialize(psp);
2548		if (ret)
2549			dev_err(psp->adev->dev,
2550					"RAS: Failed to initialize RAS\n");
2551
2552		ret = psp_hdcp_initialize(psp);
2553		if (ret)
2554			dev_err(psp->adev->dev,
2555				"HDCP: Failed to initialize HDCP\n");
2556
2557		ret = psp_dtm_initialize(psp);
2558		if (ret)
2559			dev_err(psp->adev->dev,
2560				"DTM: Failed to initialize DTM\n");
2561
2562		ret = psp_rap_initialize(psp);
2563		if (ret)
2564			dev_err(psp->adev->dev,
2565				"RAP: Failed to initialize RAP\n");
2566
2567		ret = psp_securedisplay_initialize(psp);
2568		if (ret)
2569			dev_err(psp->adev->dev,
2570				"SECUREDISPLAY: Failed to initialize SECUREDISPLAY\n");
2571	}
2572
2573	return 0;
2574
 
 
 
 
 
 
 
 
 
 
2575failed:
2576	/*
2577	 * all cleanup jobs (xgmi terminate, ras terminate,
2578	 * ring destroy, cmd/fence/fw buffers destory,
2579	 * psp->cmd destory) are delayed to psp_hw_fini
2580	 */
2581	return ret;
2582}
2583
2584static int psp_hw_init(void *handle)
2585{
2586	int ret;
2587	struct amdgpu_device *adev = (struct amdgpu_device *)handle;
2588
 
 
 
 
2589	mutex_lock(&adev->firmware.mutex);
2590	/*
2591	 * This sequence is just used on hw_init only once, no need on
2592	 * resume.
2593	 */
2594	ret = amdgpu_ucode_init_bo(adev);
2595	if (ret)
2596		goto failed;
2597
2598	ret = psp_load_fw(adev);
2599	if (ret) {
2600		DRM_ERROR("PSP firmware loading failed\n");
2601		goto failed;
2602	}
2603
2604	mutex_unlock(&adev->firmware.mutex);
2605	return 0;
2606
2607failed:
2608	adev->firmware.load_type = AMDGPU_FW_LOAD_DIRECT;
2609	mutex_unlock(&adev->firmware.mutex);
2610	return -EINVAL;
2611}
2612
2613static int psp_hw_fini(void *handle)
2614{
2615	struct amdgpu_device *adev = (struct amdgpu_device *)handle;
2616	struct psp_context *psp = &adev->psp;
2617
2618	if (psp->adev->psp.ta_fw) {
2619		psp_ras_terminate(psp);
2620		psp_securedisplay_terminate(psp);
2621		psp_rap_terminate(psp);
2622		psp_dtm_terminate(psp);
2623		psp_hdcp_terminate(psp);
2624	}
2625
2626	psp_asd_unload(psp);
2627
2628	psp_tmr_terminate(psp);
2629	psp_ring_destroy(psp, PSP_RING_TYPE__KM);
2630
 
2631	amdgpu_bo_free_kernel(&psp->fw_pri_bo,
2632			      &psp->fw_pri_mc_addr, &psp->fw_pri_buf);
2633	amdgpu_bo_free_kernel(&psp->fence_buf_bo,
2634			      &psp->fence_buf_mc_addr, &psp->fence_buf);
 
 
2635	amdgpu_bo_free_kernel(&psp->cmd_buf_bo, &psp->cmd_buf_mc_addr,
2636			      (void **)&psp->cmd_buf_mem);
2637
2638	kfree(psp->cmd);
2639	psp->cmd = NULL;
2640
2641	return 0;
2642}
2643
2644static int psp_suspend(void *handle)
2645{
2646	int ret;
2647	struct amdgpu_device *adev = (struct amdgpu_device *)handle;
2648	struct psp_context *psp = &adev->psp;
2649
2650	if (adev->gmc.xgmi.num_physical_nodes > 1 &&
2651	    psp->xgmi_context.initialized == 1) {
2652		ret = psp_xgmi_terminate(psp);
2653		if (ret) {
2654			DRM_ERROR("Failed to terminate xgmi ta\n");
2655			return ret;
2656		}
2657	}
2658
2659	if (psp->adev->psp.ta_fw) {
2660		ret = psp_ras_terminate(psp);
2661		if (ret) {
2662			DRM_ERROR("Failed to terminate ras ta\n");
2663			return ret;
2664		}
2665		ret = psp_hdcp_terminate(psp);
2666		if (ret) {
2667			DRM_ERROR("Failed to terminate hdcp ta\n");
2668			return ret;
2669		}
2670		ret = psp_dtm_terminate(psp);
2671		if (ret) {
2672			DRM_ERROR("Failed to terminate dtm ta\n");
2673			return ret;
2674		}
2675		ret = psp_rap_terminate(psp);
2676		if (ret) {
2677			DRM_ERROR("Failed to terminate rap ta\n");
2678			return ret;
2679		}
2680		ret = psp_securedisplay_terminate(psp);
2681		if (ret) {
2682			DRM_ERROR("Failed to terminate securedisplay ta\n");
2683			return ret;
2684		}
2685	}
2686
2687	ret = psp_asd_unload(psp);
2688	if (ret) {
2689		DRM_ERROR("Failed to unload asd\n");
2690		return ret;
2691	}
2692
2693	ret = psp_tmr_terminate(psp);
2694	if (ret) {
2695		DRM_ERROR("Failed to terminate tmr\n");
2696		return ret;
2697	}
2698
2699	ret = psp_ring_stop(psp, PSP_RING_TYPE__KM);
2700	if (ret) {
2701		DRM_ERROR("PSP ring stop failed\n");
2702		return ret;
2703	}
2704
2705	return 0;
2706}
2707
2708static int psp_resume(void *handle)
2709{
2710	int ret;
2711	struct amdgpu_device *adev = (struct amdgpu_device *)handle;
2712	struct psp_context *psp = &adev->psp;
2713
 
 
 
2714	DRM_INFO("PSP is resuming...\n");
2715
2716	if (psp->mem_train_ctx.enable_mem_training) {
2717		ret = psp_mem_training(psp, PSP_MEM_TRAIN_RESUME);
2718		if (ret) {
2719			DRM_ERROR("Failed to process memory training!\n");
2720			return ret;
2721		}
2722	}
2723
2724	mutex_lock(&adev->firmware.mutex);
2725
2726	ret = psp_hw_start(psp);
2727	if (ret)
2728		goto failed;
2729
2730	ret = psp_np_fw_load(psp);
2731	if (ret)
2732		goto failed;
2733
2734	ret = psp_asd_load(psp);
2735	if (ret) {
2736		DRM_ERROR("PSP load asd failed!\n");
2737		goto failed;
2738	}
2739
2740	if (adev->gmc.xgmi.num_physical_nodes > 1) {
2741		ret = psp_xgmi_initialize(psp);
2742		/* Warning the XGMI seesion initialize failure
2743		 * Instead of stop driver initialization
2744		 */
2745		if (ret)
2746			dev_err(psp->adev->dev,
2747				"XGMI: Failed to initialize XGMI session\n");
2748	}
2749
2750	if (psp->adev->psp.ta_fw) {
2751		ret = psp_ras_initialize(psp);
2752		if (ret)
2753			dev_err(psp->adev->dev,
2754					"RAS: Failed to initialize RAS\n");
2755
2756		ret = psp_hdcp_initialize(psp);
2757		if (ret)
2758			dev_err(psp->adev->dev,
2759				"HDCP: Failed to initialize HDCP\n");
2760
2761		ret = psp_dtm_initialize(psp);
2762		if (ret)
2763			dev_err(psp->adev->dev,
2764				"DTM: Failed to initialize DTM\n");
2765
2766		ret = psp_rap_initialize(psp);
2767		if (ret)
2768			dev_err(psp->adev->dev,
2769				"RAP: Failed to initialize RAP\n");
2770
2771		ret = psp_securedisplay_initialize(psp);
2772		if (ret)
2773			dev_err(psp->adev->dev,
2774				"SECUREDISPLAY: Failed to initialize SECUREDISPLAY\n");
2775	}
2776
2777	mutex_unlock(&adev->firmware.mutex);
2778
2779	return 0;
2780
2781failed:
2782	DRM_ERROR("PSP resume failed\n");
2783	mutex_unlock(&adev->firmware.mutex);
2784	return ret;
2785}
2786
2787int psp_gpu_reset(struct amdgpu_device *adev)
2788{
2789	int ret;
2790
2791	if (adev->firmware.load_type != AMDGPU_FW_LOAD_PSP)
2792		return 0;
2793
2794	mutex_lock(&adev->psp.mutex);
2795	ret = psp_mode1_reset(&adev->psp);
2796	mutex_unlock(&adev->psp.mutex);
2797
2798	return ret;
2799}
2800
2801int psp_rlc_autoload_start(struct psp_context *psp)
 
2802{
2803	int ret;
2804	struct psp_gfx_cmd_resp *cmd;
2805
2806	cmd = kzalloc(sizeof(struct psp_gfx_cmd_resp), GFP_KERNEL);
2807	if (!cmd)
2808		return -ENOMEM;
2809
2810	cmd->cmd_id = GFX_CMD_ID_AUTOLOAD_RLC;
2811
2812	ret = psp_cmd_submit_buf(psp, NULL, cmd,
2813				 psp->fence_buf_mc_addr);
2814	kfree(cmd);
2815	return ret;
2816}
2817
2818int psp_update_vcn_sram(struct amdgpu_device *adev, int inst_idx,
2819			uint64_t cmd_gpu_addr, int cmd_size)
2820{
2821	struct amdgpu_firmware_info ucode = {0};
2822
2823	ucode.ucode_id = inst_idx ? AMDGPU_UCODE_ID_VCN1_RAM :
2824		AMDGPU_UCODE_ID_VCN0_RAM;
2825	ucode.mc_addr = cmd_gpu_addr;
2826	ucode.ucode_size = cmd_size;
2827
2828	return psp_execute_np_fw_load(&adev->psp, &ucode);
2829}
2830
2831int psp_ring_cmd_submit(struct psp_context *psp,
2832			uint64_t cmd_buf_mc_addr,
2833			uint64_t fence_mc_addr,
2834			int index)
2835{
2836	unsigned int psp_write_ptr_reg = 0;
2837	struct psp_gfx_rb_frame *write_frame;
2838	struct psp_ring *ring = &psp->km_ring;
2839	struct psp_gfx_rb_frame *ring_buffer_start = ring->ring_mem;
2840	struct psp_gfx_rb_frame *ring_buffer_end = ring_buffer_start +
2841		ring->ring_size / sizeof(struct psp_gfx_rb_frame) - 1;
2842	struct amdgpu_device *adev = psp->adev;
2843	uint32_t ring_size_dw = ring->ring_size / 4;
2844	uint32_t rb_frame_size_dw = sizeof(struct psp_gfx_rb_frame) / 4;
2845
2846	/* KM (GPCOM) prepare write pointer */
2847	psp_write_ptr_reg = psp_ring_get_wptr(psp);
2848
2849	/* Update KM RB frame pointer to new frame */
2850	/* write_frame ptr increments by size of rb_frame in bytes */
2851	/* psp_write_ptr_reg increments by size of rb_frame in DWORDs */
2852	if ((psp_write_ptr_reg % ring_size_dw) == 0)
2853		write_frame = ring_buffer_start;
2854	else
2855		write_frame = ring_buffer_start + (psp_write_ptr_reg / rb_frame_size_dw);
2856	/* Check invalid write_frame ptr address */
2857	if ((write_frame < ring_buffer_start) || (ring_buffer_end < write_frame)) {
2858		DRM_ERROR("ring_buffer_start = %p; ring_buffer_end = %p; write_frame = %p\n",
2859			  ring_buffer_start, ring_buffer_end, write_frame);
2860		DRM_ERROR("write_frame is pointing to address out of bounds\n");
2861		return -EINVAL;
2862	}
2863
2864	/* Initialize KM RB frame */
2865	memset(write_frame, 0, sizeof(struct psp_gfx_rb_frame));
2866
2867	/* Update KM RB frame */
2868	write_frame->cmd_buf_addr_hi = upper_32_bits(cmd_buf_mc_addr);
2869	write_frame->cmd_buf_addr_lo = lower_32_bits(cmd_buf_mc_addr);
2870	write_frame->fence_addr_hi = upper_32_bits(fence_mc_addr);
2871	write_frame->fence_addr_lo = lower_32_bits(fence_mc_addr);
2872	write_frame->fence_value = index;
2873	amdgpu_device_flush_hdp(adev, NULL);
2874
2875	/* Update the write Pointer in DWORDs */
2876	psp_write_ptr_reg = (psp_write_ptr_reg + rb_frame_size_dw) % ring_size_dw;
2877	psp_ring_set_wptr(psp, psp_write_ptr_reg);
2878	return 0;
2879}
2880
2881int psp_init_asd_microcode(struct psp_context *psp,
2882			   const char *chip_name)
2883{
2884	struct amdgpu_device *adev = psp->adev;
2885	char fw_name[PSP_FW_NAME_LEN];
2886	const struct psp_firmware_header_v1_0 *asd_hdr;
2887	int err = 0;
2888
2889	if (!chip_name) {
2890		dev_err(adev->dev, "invalid chip name for asd microcode\n");
2891		return -EINVAL;
2892	}
2893
2894	snprintf(fw_name, sizeof(fw_name), "amdgpu/%s_asd.bin", chip_name);
2895	err = request_firmware(&adev->psp.asd_fw, fw_name, adev->dev);
2896	if (err)
2897		goto out;
2898
2899	err = amdgpu_ucode_validate(adev->psp.asd_fw);
2900	if (err)
2901		goto out;
2902
2903	asd_hdr = (const struct psp_firmware_header_v1_0 *)adev->psp.asd_fw->data;
2904	adev->psp.asd_fw_version = le32_to_cpu(asd_hdr->header.ucode_version);
2905	adev->psp.asd_feature_version = le32_to_cpu(asd_hdr->sos.fw_version);
2906	adev->psp.asd_ucode_size = le32_to_cpu(asd_hdr->header.ucode_size_bytes);
2907	adev->psp.asd_start_addr = (uint8_t *)asd_hdr +
2908				le32_to_cpu(asd_hdr->header.ucode_array_offset_bytes);
2909	return 0;
2910out:
2911	dev_err(adev->dev, "fail to initialize asd microcode\n");
2912	release_firmware(adev->psp.asd_fw);
2913	adev->psp.asd_fw = NULL;
2914	return err;
2915}
2916
2917int psp_init_toc_microcode(struct psp_context *psp,
2918			   const char *chip_name)
2919{
2920	struct amdgpu_device *adev = psp->adev;
2921	char fw_name[30];
2922	const struct psp_firmware_header_v1_0 *toc_hdr;
2923	int err = 0;
2924
2925	if (!chip_name) {
2926		dev_err(adev->dev, "invalid chip name for toc microcode\n");
2927		return -EINVAL;
2928	}
2929
2930	snprintf(fw_name, sizeof(fw_name), "amdgpu/%s_toc.bin", chip_name);
2931	err = request_firmware(&adev->psp.toc_fw, fw_name, adev->dev);
2932	if (err)
2933		goto out;
2934
2935	err = amdgpu_ucode_validate(adev->psp.toc_fw);
2936	if (err)
2937		goto out;
2938
2939	toc_hdr = (const struct psp_firmware_header_v1_0 *)adev->psp.toc_fw->data;
2940	adev->psp.toc_fw_version = le32_to_cpu(toc_hdr->header.ucode_version);
2941	adev->psp.toc_feature_version = le32_to_cpu(toc_hdr->sos.fw_version);
2942	adev->psp.toc_bin_size = le32_to_cpu(toc_hdr->header.ucode_size_bytes);
2943	adev->psp.toc_start_addr = (uint8_t *)toc_hdr +
2944				le32_to_cpu(toc_hdr->header.ucode_array_offset_bytes);
2945	return 0;
2946out:
2947	dev_err(adev->dev, "fail to request/validate toc microcode\n");
2948	release_firmware(adev->psp.toc_fw);
2949	adev->psp.toc_fw = NULL;
2950	return err;
2951}
2952
2953static int psp_init_sos_base_fw(struct amdgpu_device *adev)
2954{
2955	const struct psp_firmware_header_v1_0 *sos_hdr;
2956	const struct psp_firmware_header_v1_3 *sos_hdr_v1_3;
2957	uint8_t *ucode_array_start_addr;
2958
2959	sos_hdr = (const struct psp_firmware_header_v1_0 *)adev->psp.sos_fw->data;
2960	ucode_array_start_addr = (uint8_t *)sos_hdr +
2961		le32_to_cpu(sos_hdr->header.ucode_array_offset_bytes);
2962
2963	if (adev->gmc.xgmi.connected_to_cpu || (adev->asic_type != CHIP_ALDEBARAN)) {
2964		adev->psp.sos_fw_version = le32_to_cpu(sos_hdr->header.ucode_version);
2965		adev->psp.sos_feature_version = le32_to_cpu(sos_hdr->sos.fw_version);
2966
2967		adev->psp.sys_bin_size = le32_to_cpu(sos_hdr->sos.offset_bytes);
2968		adev->psp.sys_start_addr = ucode_array_start_addr;
2969
2970		adev->psp.sos_bin_size = le32_to_cpu(sos_hdr->sos.size_bytes);
2971		adev->psp.sos_start_addr = ucode_array_start_addr +
2972				le32_to_cpu(sos_hdr->sos.offset_bytes);
2973	} else {
2974		/* Load alternate PSP SOS FW */
2975		sos_hdr_v1_3 = (const struct psp_firmware_header_v1_3 *)adev->psp.sos_fw->data;
2976
2977		adev->psp.sos_fw_version = le32_to_cpu(sos_hdr_v1_3->sos_aux.fw_version);
2978		adev->psp.sos_feature_version = le32_to_cpu(sos_hdr_v1_3->sos_aux.fw_version);
2979
2980		adev->psp.sys_bin_size = le32_to_cpu(sos_hdr_v1_3->sys_drv_aux.size_bytes);
2981		adev->psp.sys_start_addr = ucode_array_start_addr +
2982			le32_to_cpu(sos_hdr_v1_3->sys_drv_aux.offset_bytes);
2983
2984		adev->psp.sos_bin_size = le32_to_cpu(sos_hdr_v1_3->sos_aux.size_bytes);
2985		adev->psp.sos_start_addr = ucode_array_start_addr +
2986			le32_to_cpu(sos_hdr_v1_3->sos_aux.offset_bytes);
2987	}
2988
2989	if ((adev->psp.sys_bin_size == 0) || (adev->psp.sos_bin_size == 0)) {
2990		dev_warn(adev->dev, "PSP SOS FW not available");
2991		return -EINVAL;
2992	}
2993
2994	return 0;
2995}
2996
2997int psp_init_sos_microcode(struct psp_context *psp,
2998			   const char *chip_name)
2999{
3000	struct amdgpu_device *adev = psp->adev;
3001	char fw_name[PSP_FW_NAME_LEN];
3002	const struct psp_firmware_header_v1_0 *sos_hdr;
3003	const struct psp_firmware_header_v1_1 *sos_hdr_v1_1;
3004	const struct psp_firmware_header_v1_2 *sos_hdr_v1_2;
3005	const struct psp_firmware_header_v1_3 *sos_hdr_v1_3;
3006	int err = 0;
3007	uint8_t *ucode_array_start_addr;
3008
3009	if (!chip_name) {
3010		dev_err(adev->dev, "invalid chip name for sos microcode\n");
3011		return -EINVAL;
3012	}
3013
3014	snprintf(fw_name, sizeof(fw_name), "amdgpu/%s_sos.bin", chip_name);
3015	err = request_firmware(&adev->psp.sos_fw, fw_name, adev->dev);
3016	if (err)
3017		goto out;
3018
3019	err = amdgpu_ucode_validate(adev->psp.sos_fw);
3020	if (err)
3021		goto out;
3022
3023	sos_hdr = (const struct psp_firmware_header_v1_0 *)adev->psp.sos_fw->data;
3024	ucode_array_start_addr = (uint8_t *)sos_hdr +
3025		le32_to_cpu(sos_hdr->header.ucode_array_offset_bytes);
3026	amdgpu_ucode_print_psp_hdr(&sos_hdr->header);
3027
3028	switch (sos_hdr->header.header_version_major) {
3029	case 1:
3030		err = psp_init_sos_base_fw(adev);
3031		if (err)
3032			goto out;
3033
3034		if (sos_hdr->header.header_version_minor == 1) {
3035			sos_hdr_v1_1 = (const struct psp_firmware_header_v1_1 *)adev->psp.sos_fw->data;
3036			adev->psp.toc_bin_size = le32_to_cpu(sos_hdr_v1_1->toc.size_bytes);
3037			adev->psp.toc_start_addr = (uint8_t *)adev->psp.sys_start_addr +
3038					le32_to_cpu(sos_hdr_v1_1->toc.offset_bytes);
3039			adev->psp.kdb_bin_size = le32_to_cpu(sos_hdr_v1_1->kdb.size_bytes);
3040			adev->psp.kdb_start_addr = (uint8_t *)adev->psp.sys_start_addr +
3041					le32_to_cpu(sos_hdr_v1_1->kdb.offset_bytes);
3042		}
3043		if (sos_hdr->header.header_version_minor == 2) {
3044			sos_hdr_v1_2 = (const struct psp_firmware_header_v1_2 *)adev->psp.sos_fw->data;
3045			adev->psp.kdb_bin_size = le32_to_cpu(sos_hdr_v1_2->kdb.size_bytes);
3046			adev->psp.kdb_start_addr = (uint8_t *)adev->psp.sys_start_addr +
3047						    le32_to_cpu(sos_hdr_v1_2->kdb.offset_bytes);
3048		}
3049		if (sos_hdr->header.header_version_minor == 3) {
3050			sos_hdr_v1_3 = (const struct psp_firmware_header_v1_3 *)adev->psp.sos_fw->data;
3051			adev->psp.toc_bin_size = le32_to_cpu(sos_hdr_v1_3->v1_1.toc.size_bytes);
3052			adev->psp.toc_start_addr = ucode_array_start_addr +
3053				le32_to_cpu(sos_hdr_v1_3->v1_1.toc.offset_bytes);
3054			adev->psp.kdb_bin_size = le32_to_cpu(sos_hdr_v1_3->v1_1.kdb.size_bytes);
3055			adev->psp.kdb_start_addr = ucode_array_start_addr +
3056				le32_to_cpu(sos_hdr_v1_3->v1_1.kdb.offset_bytes);
3057			adev->psp.spl_bin_size = le32_to_cpu(sos_hdr_v1_3->spl.size_bytes);
3058			adev->psp.spl_start_addr = ucode_array_start_addr +
3059				le32_to_cpu(sos_hdr_v1_3->spl.offset_bytes);
3060			adev->psp.rl_bin_size = le32_to_cpu(sos_hdr_v1_3->rl.size_bytes);
3061			adev->psp.rl_start_addr = ucode_array_start_addr +
3062				le32_to_cpu(sos_hdr_v1_3->rl.offset_bytes);
3063		}
3064		break;
3065	default:
3066		dev_err(adev->dev,
3067			"unsupported psp sos firmware\n");
3068		err = -EINVAL;
3069		goto out;
3070	}
3071
3072	return 0;
3073out:
3074	dev_err(adev->dev,
3075		"failed to init sos firmware\n");
3076	release_firmware(adev->psp.sos_fw);
3077	adev->psp.sos_fw = NULL;
3078
3079	return err;
3080}
3081
3082static int parse_ta_bin_descriptor(struct psp_context *psp,
3083				   const struct ta_fw_bin_desc *desc,
3084				   const struct ta_firmware_header_v2_0 *ta_hdr)
3085{
3086	uint8_t *ucode_start_addr  = NULL;
3087
3088	if (!psp || !desc || !ta_hdr)
3089		return -EINVAL;
3090
3091	ucode_start_addr  = (uint8_t *)ta_hdr +
3092			    le32_to_cpu(desc->offset_bytes) +
3093			    le32_to_cpu(ta_hdr->header.ucode_array_offset_bytes);
3094
3095	switch (desc->fw_type) {
3096	case TA_FW_TYPE_PSP_ASD:
3097		psp->asd_fw_version        = le32_to_cpu(desc->fw_version);
3098		psp->asd_feature_version   = le32_to_cpu(desc->fw_version);
3099		psp->asd_ucode_size        = le32_to_cpu(desc->size_bytes);
3100		psp->asd_start_addr 	   = ucode_start_addr;
3101		break;
3102	case TA_FW_TYPE_PSP_XGMI:
3103		psp->ta_xgmi_ucode_version = le32_to_cpu(desc->fw_version);
3104		psp->ta_xgmi_ucode_size    = le32_to_cpu(desc->size_bytes);
3105		psp->ta_xgmi_start_addr    = ucode_start_addr;
3106		break;
3107	case TA_FW_TYPE_PSP_RAS:
3108		psp->ta_ras_ucode_version  = le32_to_cpu(desc->fw_version);
3109		psp->ta_ras_ucode_size     = le32_to_cpu(desc->size_bytes);
3110		psp->ta_ras_start_addr     = ucode_start_addr;
3111		break;
3112	case TA_FW_TYPE_PSP_HDCP:
3113		psp->ta_hdcp_ucode_version = le32_to_cpu(desc->fw_version);
3114		psp->ta_hdcp_ucode_size    = le32_to_cpu(desc->size_bytes);
3115		psp->ta_hdcp_start_addr    = ucode_start_addr;
3116		break;
3117	case TA_FW_TYPE_PSP_DTM:
3118		psp->ta_dtm_ucode_version  = le32_to_cpu(desc->fw_version);
3119		psp->ta_dtm_ucode_size     = le32_to_cpu(desc->size_bytes);
3120		psp->ta_dtm_start_addr     = ucode_start_addr;
3121		break;
3122	case TA_FW_TYPE_PSP_RAP:
3123		psp->ta_rap_ucode_version  = le32_to_cpu(desc->fw_version);
3124		psp->ta_rap_ucode_size     = le32_to_cpu(desc->size_bytes);
3125		psp->ta_rap_start_addr     = ucode_start_addr;
3126		break;
3127	case TA_FW_TYPE_PSP_SECUREDISPLAY:
3128		psp->ta_securedisplay_ucode_version  = le32_to_cpu(desc->fw_version);
3129		psp->ta_securedisplay_ucode_size     = le32_to_cpu(desc->size_bytes);
3130		psp->ta_securedisplay_start_addr     = ucode_start_addr;
3131		break;
3132	default:
3133		dev_warn(psp->adev->dev, "Unsupported TA type: %d\n", desc->fw_type);
3134		break;
3135	}
3136
3137	return 0;
3138}
3139
3140int psp_init_ta_microcode(struct psp_context *psp,
3141			  const char *chip_name)
3142{
3143	struct amdgpu_device *adev = psp->adev;
3144	char fw_name[PSP_FW_NAME_LEN];
3145	const struct ta_firmware_header_v2_0 *ta_hdr;
3146	int err = 0;
3147	int ta_index = 0;
3148
3149	if (!chip_name) {
3150		dev_err(adev->dev, "invalid chip name for ta microcode\n");
3151		return -EINVAL;
3152	}
3153
3154	snprintf(fw_name, sizeof(fw_name), "amdgpu/%s_ta.bin", chip_name);
3155	err = request_firmware(&adev->psp.ta_fw, fw_name, adev->dev);
3156	if (err)
3157		goto out;
3158
3159	err = amdgpu_ucode_validate(adev->psp.ta_fw);
3160	if (err)
3161		goto out;
3162
3163	ta_hdr = (const struct ta_firmware_header_v2_0 *)adev->psp.ta_fw->data;
3164
3165	if (le16_to_cpu(ta_hdr->header.header_version_major) != 2) {
3166		dev_err(adev->dev, "unsupported TA header version\n");
3167		err = -EINVAL;
3168		goto out;
3169	}
3170
3171	if (le32_to_cpu(ta_hdr->ta_fw_bin_count) >= UCODE_MAX_TA_PACKAGING) {
3172		dev_err(adev->dev, "packed TA count exceeds maximum limit\n");
3173		err = -EINVAL;
3174		goto out;
3175	}
3176
3177	for (ta_index = 0; ta_index < le32_to_cpu(ta_hdr->ta_fw_bin_count); ta_index++) {
3178		err = parse_ta_bin_descriptor(psp,
3179					      &ta_hdr->ta_fw_bin[ta_index],
3180					      ta_hdr);
3181		if (err)
3182			goto out;
3183	}
3184
3185	return 0;
3186out:
3187	dev_err(adev->dev, "fail to initialize ta microcode\n");
3188	release_firmware(adev->psp.ta_fw);
3189	adev->psp.ta_fw = NULL;
3190	return err;
3191}
3192
3193static int psp_set_clockgating_state(void *handle,
3194				     enum amd_clockgating_state state)
3195{
3196	return 0;
3197}
3198
3199static int psp_set_powergating_state(void *handle,
3200				     enum amd_powergating_state state)
3201{
3202	return 0;
3203}
3204
3205static ssize_t psp_usbc_pd_fw_sysfs_read(struct device *dev,
3206					 struct device_attribute *attr,
3207					 char *buf)
3208{
3209	struct drm_device *ddev = dev_get_drvdata(dev);
3210	struct amdgpu_device *adev = drm_to_adev(ddev);
3211	uint32_t fw_ver;
3212	int ret;
3213
3214	if (!adev->ip_blocks[AMD_IP_BLOCK_TYPE_PSP].status.late_initialized) {
3215		DRM_INFO("PSP block is not ready yet.");
3216		return -EBUSY;
3217	}
3218
3219	mutex_lock(&adev->psp.mutex);
3220	ret = psp_read_usbc_pd_fw(&adev->psp, &fw_ver);
3221	mutex_unlock(&adev->psp.mutex);
3222
3223	if (ret) {
3224		DRM_ERROR("Failed to read USBC PD FW, err = %d", ret);
3225		return ret;
3226	}
3227
3228	return sysfs_emit(buf, "%x\n", fw_ver);
3229}
3230
3231static ssize_t psp_usbc_pd_fw_sysfs_write(struct device *dev,
3232						       struct device_attribute *attr,
3233						       const char *buf,
3234						       size_t count)
3235{
3236	struct drm_device *ddev = dev_get_drvdata(dev);
3237	struct amdgpu_device *adev = drm_to_adev(ddev);
3238	void *cpu_addr;
3239	dma_addr_t dma_addr;
3240	int ret, idx;
3241	char fw_name[100];
3242	const struct firmware *usbc_pd_fw;
3243
3244	if (!adev->ip_blocks[AMD_IP_BLOCK_TYPE_PSP].status.late_initialized) {
3245		DRM_INFO("PSP block is not ready yet.");
3246		return -EBUSY;
3247	}
3248
3249	if (!drm_dev_enter(ddev, &idx))
3250		return -ENODEV;
3251
3252	snprintf(fw_name, sizeof(fw_name), "amdgpu/%s", buf);
3253	ret = request_firmware(&usbc_pd_fw, fw_name, adev->dev);
3254	if (ret)
3255		goto fail;
3256
3257	/* We need contiguous physical mem to place the FW  for psp to access */
3258	cpu_addr = dma_alloc_coherent(adev->dev, usbc_pd_fw->size, &dma_addr, GFP_KERNEL);
3259
3260	ret = dma_mapping_error(adev->dev, dma_addr);
3261	if (ret)
3262		goto rel_buf;
3263
3264	memcpy_toio(cpu_addr, usbc_pd_fw->data, usbc_pd_fw->size);
3265
3266	/*
3267	 * x86 specific workaround.
3268	 * Without it the buffer is invisible in PSP.
3269	 *
3270	 * TODO Remove once PSP starts snooping CPU cache
3271	 */
3272#ifdef CONFIG_X86
3273	clflush_cache_range(cpu_addr, (usbc_pd_fw->size & ~(L1_CACHE_BYTES - 1)));
3274#endif
3275
3276	mutex_lock(&adev->psp.mutex);
3277	ret = psp_load_usbc_pd_fw(&adev->psp, dma_addr);
3278	mutex_unlock(&adev->psp.mutex);
3279
3280rel_buf:
3281	dma_free_coherent(adev->dev, usbc_pd_fw->size, cpu_addr, dma_addr);
3282	release_firmware(usbc_pd_fw);
3283fail:
3284	if (ret) {
3285		DRM_ERROR("Failed to load USBC PD FW, err = %d", ret);
3286		count = ret;
3287	}
3288
3289	drm_dev_exit(idx);
3290	return count;
3291}
3292
3293void psp_copy_fw(struct psp_context *psp, uint8_t *start_addr, uint32_t bin_size)
3294{
3295	int idx;
3296
3297	if (!drm_dev_enter(&psp->adev->ddev, &idx))
3298		return;
3299
3300	memset(psp->fw_pri_buf, 0, PSP_1_MEG);
3301	memcpy(psp->fw_pri_buf, start_addr, bin_size);
3302
3303	drm_dev_exit(idx);
3304}
3305
3306static DEVICE_ATTR(usbc_pd_fw, S_IRUGO | S_IWUSR,
3307		   psp_usbc_pd_fw_sysfs_read,
3308		   psp_usbc_pd_fw_sysfs_write);
3309
3310
3311
3312const struct amd_ip_funcs psp_ip_funcs = {
3313	.name = "psp",
3314	.early_init = psp_early_init,
3315	.late_init = NULL,
3316	.sw_init = psp_sw_init,
3317	.sw_fini = psp_sw_fini,
3318	.hw_init = psp_hw_init,
3319	.hw_fini = psp_hw_fini,
3320	.suspend = psp_suspend,
3321	.resume = psp_resume,
3322	.is_idle = NULL,
3323	.check_soft_reset = NULL,
3324	.wait_for_idle = NULL,
3325	.soft_reset = NULL,
3326	.set_clockgating_state = psp_set_clockgating_state,
3327	.set_powergating_state = psp_set_powergating_state,
3328};
3329
3330static int psp_sysfs_init(struct amdgpu_device *adev)
3331{
3332	int ret = device_create_file(adev->dev, &dev_attr_usbc_pd_fw);
3333
3334	if (ret)
3335		DRM_ERROR("Failed to create USBC PD FW control file!");
3336
3337	return ret;
3338}
3339
3340static void psp_sysfs_fini(struct amdgpu_device *adev)
3341{
3342	device_remove_file(adev->dev, &dev_attr_usbc_pd_fw);
 
3343}
3344
3345const struct amdgpu_ip_block_version psp_v3_1_ip_block =
3346{
3347	.type = AMD_IP_BLOCK_TYPE_PSP,
3348	.major = 3,
3349	.minor = 1,
3350	.rev = 0,
3351	.funcs = &psp_ip_funcs,
3352};
3353
3354const struct amdgpu_ip_block_version psp_v10_0_ip_block =
3355{
3356	.type = AMD_IP_BLOCK_TYPE_PSP,
3357	.major = 10,
3358	.minor = 0,
3359	.rev = 0,
3360	.funcs = &psp_ip_funcs,
3361};
3362
3363const struct amdgpu_ip_block_version psp_v11_0_ip_block =
3364{
3365	.type = AMD_IP_BLOCK_TYPE_PSP,
3366	.major = 11,
3367	.minor = 0,
3368	.rev = 0,
3369	.funcs = &psp_ip_funcs,
3370};
3371
3372const struct amdgpu_ip_block_version psp_v12_0_ip_block =
3373{
3374	.type = AMD_IP_BLOCK_TYPE_PSP,
3375	.major = 12,
3376	.minor = 0,
3377	.rev = 0,
3378	.funcs = &psp_ip_funcs,
3379};
3380
3381const struct amdgpu_ip_block_version psp_v13_0_ip_block = {
3382	.type = AMD_IP_BLOCK_TYPE_PSP,
3383	.major = 13,
3384	.minor = 0,
3385	.rev = 0,
3386	.funcs = &psp_ip_funcs,
3387};