1 /*
2  * Copyright 2018 Advanced Micro Devices, Inc.
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining a
5  * copy of this software and associated documentation files (the "Software"),
6  * to deal in the Software without restriction, including without limitation
7  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8  * and/or sell copies of the Software, and to permit persons to whom the
9  * Software is furnished to do so, subject to the following conditions:
10  *
11  * The above copyright notice and this permission notice shall be included in
12  * all copies or substantial portions of the Software.
13  *
14  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
17  * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20  * OTHER DEALINGS IN THE SOFTWARE.
21  */
22 
23 #include <linux/firmware.h>
24 #include <linux/module.h>
25 #include <linux/vmalloc.h>
26 #include <drm/drm_drv.h>
27 
28 #include "amdgpu.h"
29 #include "amdgpu_psp.h"
30 #include "amdgpu_ras.h"
31 #include "amdgpu_ucode.h"
32 #include "soc15_common.h"
33 #include "psp_v11_0.h"
34 
35 #include "mp/mp_11_0_offset.h"
36 #include "mp/mp_11_0_sh_mask.h"
37 #include "gc/gc_9_0_offset.h"
38 #include "sdma0/sdma0_4_0_offset.h"
39 #include "nbio/nbio_7_4_offset.h"
40 
41 #include "oss/osssys_4_0_offset.h"
42 #include "oss/osssys_4_0_sh_mask.h"
43 
44 MODULE_FIRMWARE("amdgpu/vega20_sos.bin");
45 MODULE_FIRMWARE("amdgpu/vega20_asd.bin");
46 MODULE_FIRMWARE("amdgpu/vega20_ta.bin");
47 MODULE_FIRMWARE("amdgpu/navi10_sos.bin");
48 MODULE_FIRMWARE("amdgpu/navi10_asd.bin");
49 MODULE_FIRMWARE("amdgpu/navi10_ta.bin");
50 MODULE_FIRMWARE("amdgpu/navi14_sos.bin");
51 MODULE_FIRMWARE("amdgpu/navi14_asd.bin");
52 MODULE_FIRMWARE("amdgpu/navi14_ta.bin");
53 MODULE_FIRMWARE("amdgpu/navi12_sos.bin");
54 MODULE_FIRMWARE("amdgpu/navi12_asd.bin");
55 MODULE_FIRMWARE("amdgpu/navi12_ta.bin");
56 MODULE_FIRMWARE("amdgpu/navi12_cap.bin");
57 MODULE_FIRMWARE("amdgpu/arcturus_sos.bin");
58 MODULE_FIRMWARE("amdgpu/arcturus_asd.bin");
59 MODULE_FIRMWARE("amdgpu/arcturus_ta.bin");
60 MODULE_FIRMWARE("amdgpu/sienna_cichlid_sos.bin");
61 MODULE_FIRMWARE("amdgpu/sienna_cichlid_ta.bin");
62 MODULE_FIRMWARE("amdgpu/sienna_cichlid_cap.bin");
63 MODULE_FIRMWARE("amdgpu/navy_flounder_sos.bin");
64 MODULE_FIRMWARE("amdgpu/navy_flounder_ta.bin");
65 MODULE_FIRMWARE("amdgpu/vangogh_asd.bin");
66 MODULE_FIRMWARE("amdgpu/vangogh_toc.bin");
67 MODULE_FIRMWARE("amdgpu/dimgrey_cavefish_sos.bin");
68 MODULE_FIRMWARE("amdgpu/dimgrey_cavefish_ta.bin");
69 MODULE_FIRMWARE("amdgpu/beige_goby_sos.bin");
70 MODULE_FIRMWARE("amdgpu/beige_goby_ta.bin");
71 
72 /* address block */
73 #define smnMP1_FIRMWARE_FLAGS		0x3010024
74 /* navi10 reg offset define */
75 #define mmRLC_GPM_UCODE_ADDR_NV10	0x5b61
76 #define mmRLC_GPM_UCODE_DATA_NV10	0x5b62
77 #define mmSDMA0_UCODE_ADDR_NV10		0x5880
78 #define mmSDMA0_UCODE_DATA_NV10		0x5881
79 /* memory training timeout define */
80 #define MEM_TRAIN_SEND_MSG_TIMEOUT_US	3000000
81 
82 /* For large FW files the time to complete can be very long */
83 #define USBC_PD_POLLING_LIMIT_S 240
84 
85 /* Read USB-PD from LFB */
86 #define GFX_CMD_USB_PD_USE_LFB 0x480
87 
88 static int psp_v11_0_init_microcode(struct psp_context *psp)
89 {
90 	struct amdgpu_device *adev = psp->adev;
91 	const char *chip_name;
92 	char fw_name[PSP_FW_NAME_LEN];
93 	int err = 0;
94 	const struct ta_firmware_header_v1_0 *ta_hdr;
95 
96 	DRM_DEBUG("\n");
97 
98 	switch (adev->ip_versions[MP0_HWIP][0]) {
99 	case IP_VERSION(11, 0, 2):
100 		chip_name = "vega20";
101 		break;
102 	case IP_VERSION(11, 0, 0):
103 		chip_name = "navi10";
104 		break;
105 	case IP_VERSION(11, 0, 5):
106 		chip_name = "navi14";
107 		break;
108 	case IP_VERSION(11, 0, 9):
109 		chip_name = "navi12";
110 		break;
111 	case IP_VERSION(11, 0, 4):
112 		chip_name = "arcturus";
113 		break;
114 	case IP_VERSION(11, 0, 7):
115 		chip_name = "sienna_cichlid";
116 		break;
117 	case IP_VERSION(11, 0, 11):
118 		chip_name = "navy_flounder";
119 		break;
120 	case IP_VERSION(11, 5, 0):
121 		chip_name = "vangogh";
122 		break;
123 	case IP_VERSION(11, 0, 12):
124 		chip_name = "dimgrey_cavefish";
125 		break;
126 	case IP_VERSION(11, 0, 13):
127 		chip_name = "beige_goby";
128 		break;
129 	default:
130 		BUG();
131 	}
132 
133 
134 	switch (adev->ip_versions[MP0_HWIP][0]) {
135 	case IP_VERSION(11, 0, 2):
136 	case IP_VERSION(11, 0, 4):
137 		err = psp_init_sos_microcode(psp, chip_name);
138 		if (err)
139 			return err;
140 		err = psp_init_asd_microcode(psp, chip_name);
141 		if (err)
142 			return err;
143 		snprintf(fw_name, sizeof(fw_name), "amdgpu/%s_ta.bin", chip_name);
144 		err = request_firmware(&adev->psp.ta_fw, fw_name, adev->dev);
145 		if (err) {
146 			release_firmware(adev->psp.ta_fw);
147 			adev->psp.ta_fw = NULL;
148 			dev_info(adev->dev,
149 				 "psp v11.0: Failed to load firmware \"%s\"\n", fw_name);
150 		} else {
151 			err = amdgpu_ucode_validate(adev->psp.ta_fw);
152 			if (err)
153 				goto out2;
154 
155 			ta_hdr = (const struct ta_firmware_header_v1_0 *)adev->psp.ta_fw->data;
156 			adev->psp.xgmi_context.context.bin_desc.fw_version =
157 				le32_to_cpu(ta_hdr->xgmi.fw_version);
158 			adev->psp.xgmi_context.context.bin_desc.size_bytes =
159 				le32_to_cpu(ta_hdr->xgmi.size_bytes);
160 			adev->psp.xgmi_context.context.bin_desc.start_addr =
161 				(uint8_t *)ta_hdr +
162 				le32_to_cpu(ta_hdr->header.ucode_array_offset_bytes);
163 			adev->psp.ta_fw_version = le32_to_cpu(ta_hdr->header.ucode_version);
164 			adev->psp.ras_context.context.bin_desc.fw_version =
165 				le32_to_cpu(ta_hdr->ras.fw_version);
166 			adev->psp.ras_context.context.bin_desc.size_bytes =
167 				le32_to_cpu(ta_hdr->ras.size_bytes);
168 			adev->psp.ras_context.context.bin_desc.start_addr =
169 				(uint8_t *)adev->psp.xgmi_context.context.bin_desc.start_addr +
170 				le32_to_cpu(ta_hdr->ras.offset_bytes);
171 		}
172 		break;
173 	case IP_VERSION(11, 0, 0):
174 	case IP_VERSION(11, 0, 5):
175 	case IP_VERSION(11, 0, 9):
176 		err = psp_init_sos_microcode(psp, chip_name);
177 		if (err)
178 			return err;
179 		err = psp_init_asd_microcode(psp, chip_name);
180 		if (err)
181 			return err;
182 		snprintf(fw_name, sizeof(fw_name), "amdgpu/%s_ta.bin", chip_name);
183 		err = request_firmware(&adev->psp.ta_fw, fw_name, adev->dev);
184 		if (err) {
185 			release_firmware(adev->psp.ta_fw);
186 			adev->psp.ta_fw = NULL;
187 			dev_info(adev->dev,
188 				 "psp v11.0: Failed to load firmware \"%s\"\n", fw_name);
189 		} else {
190 			err = amdgpu_ucode_validate(adev->psp.ta_fw);
191 			if (err)
192 				goto out2;
193 
194 			ta_hdr = (const struct ta_firmware_header_v1_0 *)adev->psp.ta_fw->data;
195 			adev->psp.hdcp_context.context.bin_desc.fw_version =
196 				le32_to_cpu(ta_hdr->hdcp.fw_version);
197 			adev->psp.hdcp_context.context.bin_desc.size_bytes =
198 				le32_to_cpu(ta_hdr->hdcp.size_bytes);
199 			adev->psp.hdcp_context.context.bin_desc.start_addr =
200 				(uint8_t *)ta_hdr +
201 				le32_to_cpu(
202 					ta_hdr->header.ucode_array_offset_bytes);
203 
204 			adev->psp.ta_fw_version = le32_to_cpu(ta_hdr->header.ucode_version);
205 
206 			adev->psp.dtm_context.context.bin_desc.fw_version =
207 				le32_to_cpu(ta_hdr->dtm.fw_version);
208 			adev->psp.dtm_context.context.bin_desc.size_bytes =
209 				le32_to_cpu(ta_hdr->dtm.size_bytes);
210 			adev->psp.dtm_context.context.bin_desc.start_addr =
211 				(uint8_t *)adev->psp.hdcp_context.context
212 					.bin_desc.start_addr +
213 				le32_to_cpu(ta_hdr->dtm.offset_bytes);
214 		}
215 		break;
216 	case IP_VERSION(11, 0, 7):
217 	case IP_VERSION(11, 0, 11):
218 	case IP_VERSION(11, 0, 12):
219 	case IP_VERSION(11, 0, 13):
220 		err = psp_init_sos_microcode(psp, chip_name);
221 		if (err)
222 			return err;
223 		err = psp_init_ta_microcode(psp, chip_name);
224 		if (err)
225 			return err;
226 		break;
227 	case IP_VERSION(11, 5, 0):
228 		err = psp_init_asd_microcode(psp, chip_name);
229 		if (err)
230 			return err;
231 		err = psp_init_toc_microcode(psp, chip_name);
232 		if (err)
233 			return err;
234 		break;
235 	default:
236 		BUG();
237 	}
238 
239 	return 0;
240 
241 out2:
242 	release_firmware(adev->psp.ta_fw);
243 	adev->psp.ta_fw = NULL;
244 	return err;
245 }
246 
247 static int psp_v11_0_wait_for_bootloader(struct psp_context *psp)
248 {
249 	struct amdgpu_device *adev = psp->adev;
250 
251 	int ret;
252 	int retry_loop;
253 
254 	for (retry_loop = 0; retry_loop < 10; retry_loop++) {
255 		/* Wait for bootloader to signify that is
256 		    ready having bit 31 of C2PMSG_35 set to 1 */
257 		ret = psp_wait_for(psp,
258 				   SOC15_REG_OFFSET(MP0, 0, mmMP0_SMN_C2PMSG_35),
259 				   0x80000000,
260 				   0x80000000,
261 				   false);
262 
263 		if (ret == 0)
264 			return 0;
265 	}
266 
267 	return ret;
268 }
269 
270 static bool psp_v11_0_is_sos_alive(struct psp_context *psp)
271 {
272 	struct amdgpu_device *adev = psp->adev;
273 	uint32_t sol_reg;
274 
275 	sol_reg = RREG32_SOC15(MP0, 0, mmMP0_SMN_C2PMSG_81);
276 
277 	return sol_reg != 0x0;
278 }
279 
280 static int psp_v11_0_bootloader_load_component(struct psp_context  	*psp,
281 					       struct psp_bin_desc 	*bin_desc,
282 					       enum psp_bootloader_cmd  bl_cmd)
283 {
284 	int ret;
285 	uint32_t psp_gfxdrv_command_reg = 0;
286 	struct amdgpu_device *adev = psp->adev;
287 
288 	/* Check sOS sign of life register to confirm sys driver and sOS
289 	 * are already been loaded.
290 	 */
291 	if (psp_v11_0_is_sos_alive(psp))
292 		return 0;
293 
294 	ret = psp_v11_0_wait_for_bootloader(psp);
295 	if (ret)
296 		return ret;
297 
298 	/* Copy PSP System Driver binary to memory */
299 	psp_copy_fw(psp, bin_desc->start_addr, bin_desc->size_bytes);
300 
301 	/* Provide the sys driver to bootloader */
302 	WREG32_SOC15(MP0, 0, mmMP0_SMN_C2PMSG_36,
303 	       (uint32_t)(psp->fw_pri_mc_addr >> 20));
304 	psp_gfxdrv_command_reg = bl_cmd;
305 	WREG32_SOC15(MP0, 0, mmMP0_SMN_C2PMSG_35,
306 	       psp_gfxdrv_command_reg);
307 
308 	ret = psp_v11_0_wait_for_bootloader(psp);
309 
310 	return ret;
311 }
312 
313 static int psp_v11_0_bootloader_load_kdb(struct psp_context *psp)
314 {
315 	return psp_v11_0_bootloader_load_component(psp, &psp->kdb, PSP_BL__LOAD_KEY_DATABASE);
316 }
317 
318 static int psp_v11_0_bootloader_load_spl(struct psp_context *psp)
319 {
320 	return psp_v11_0_bootloader_load_component(psp, &psp->spl, PSP_BL__LOAD_TOS_SPL_TABLE);
321 }
322 
323 static int psp_v11_0_bootloader_load_sysdrv(struct psp_context *psp)
324 {
325 	return psp_v11_0_bootloader_load_component(psp, &psp->sys, PSP_BL__LOAD_SYSDRV);
326 }
327 
328 static int psp_v11_0_bootloader_load_sos(struct psp_context *psp)
329 {
330 	int ret;
331 	unsigned int psp_gfxdrv_command_reg = 0;
332 	struct amdgpu_device *adev = psp->adev;
333 
334 	/* Check sOS sign of life register to confirm sys driver and sOS
335 	 * are already been loaded.
336 	 */
337 	if (psp_v11_0_is_sos_alive(psp))
338 		return 0;
339 
340 	ret = psp_v11_0_wait_for_bootloader(psp);
341 	if (ret)
342 		return ret;
343 
344 	/* Copy Secure OS binary to PSP memory */
345 	psp_copy_fw(psp, psp->sos.start_addr, psp->sos.size_bytes);
346 
347 	/* Provide the PSP secure OS to bootloader */
348 	WREG32_SOC15(MP0, 0, mmMP0_SMN_C2PMSG_36,
349 	       (uint32_t)(psp->fw_pri_mc_addr >> 20));
350 	psp_gfxdrv_command_reg = PSP_BL__LOAD_SOSDRV;
351 	WREG32_SOC15(MP0, 0, mmMP0_SMN_C2PMSG_35,
352 	       psp_gfxdrv_command_reg);
353 
354 	/* there might be handshake issue with hardware which needs delay */
355 	mdelay(20);
356 	ret = psp_wait_for(psp, SOC15_REG_OFFSET(MP0, 0, mmMP0_SMN_C2PMSG_81),
357 			   RREG32_SOC15(MP0, 0, mmMP0_SMN_C2PMSG_81),
358 			   0, true);
359 
360 	return ret;
361 }
362 
363 static int psp_v11_0_ring_stop(struct psp_context *psp,
364 			      enum psp_ring_type ring_type)
365 {
366 	int ret = 0;
367 	struct amdgpu_device *adev = psp->adev;
368 
369 	/* Write the ring destroy command*/
370 	if (amdgpu_sriov_vf(adev))
371 		WREG32_SOC15(MP0, 0, mmMP0_SMN_C2PMSG_101,
372 				     GFX_CTRL_CMD_ID_DESTROY_GPCOM_RING);
373 	else
374 		WREG32_SOC15(MP0, 0, mmMP0_SMN_C2PMSG_64,
375 				     GFX_CTRL_CMD_ID_DESTROY_RINGS);
376 
377 	/* there might be handshake issue with hardware which needs delay */
378 	mdelay(20);
379 
380 	/* Wait for response flag (bit 31) */
381 	if (amdgpu_sriov_vf(adev))
382 		ret = psp_wait_for(psp, SOC15_REG_OFFSET(MP0, 0, mmMP0_SMN_C2PMSG_101),
383 				   0x80000000, 0x80000000, false);
384 	else
385 		ret = psp_wait_for(psp, SOC15_REG_OFFSET(MP0, 0, mmMP0_SMN_C2PMSG_64),
386 				   0x80000000, 0x80000000, false);
387 
388 	return ret;
389 }
390 
391 static int psp_v11_0_ring_create(struct psp_context *psp,
392 				enum psp_ring_type ring_type)
393 {
394 	int ret = 0;
395 	unsigned int psp_ring_reg = 0;
396 	struct psp_ring *ring = &psp->km_ring;
397 	struct amdgpu_device *adev = psp->adev;
398 
399 	if (amdgpu_sriov_vf(adev)) {
400 		ring->ring_wptr = 0;
401 		ret = psp_v11_0_ring_stop(psp, ring_type);
402 		if (ret) {
403 			DRM_ERROR("psp_v11_0_ring_stop_sriov failed!\n");
404 			return ret;
405 		}
406 
407 		/* Write low address of the ring to C2PMSG_102 */
408 		psp_ring_reg = lower_32_bits(ring->ring_mem_mc_addr);
409 		WREG32_SOC15(MP0, 0, mmMP0_SMN_C2PMSG_102, psp_ring_reg);
410 		/* Write high address of the ring to C2PMSG_103 */
411 		psp_ring_reg = upper_32_bits(ring->ring_mem_mc_addr);
412 		WREG32_SOC15(MP0, 0, mmMP0_SMN_C2PMSG_103, psp_ring_reg);
413 
414 		/* Write the ring initialization command to C2PMSG_101 */
415 		WREG32_SOC15(MP0, 0, mmMP0_SMN_C2PMSG_101,
416 					     GFX_CTRL_CMD_ID_INIT_GPCOM_RING);
417 
418 		/* there might be handshake issue with hardware which needs delay */
419 		mdelay(20);
420 
421 		/* Wait for response flag (bit 31) in C2PMSG_101 */
422 		ret = psp_wait_for(psp, SOC15_REG_OFFSET(MP0, 0, mmMP0_SMN_C2PMSG_101),
423 				   0x80000000, 0x8000FFFF, false);
424 
425 	} else {
426 		/* Wait for sOS ready for ring creation */
427 		ret = psp_wait_for(psp, SOC15_REG_OFFSET(MP0, 0, mmMP0_SMN_C2PMSG_64),
428 				   0x80000000, 0x80000000, false);
429 		if (ret) {
430 			DRM_ERROR("Failed to wait for sOS ready for ring creation\n");
431 			return ret;
432 		}
433 
434 		/* Write low address of the ring to C2PMSG_69 */
435 		psp_ring_reg = lower_32_bits(ring->ring_mem_mc_addr);
436 		WREG32_SOC15(MP0, 0, mmMP0_SMN_C2PMSG_69, psp_ring_reg);
437 		/* Write high address of the ring to C2PMSG_70 */
438 		psp_ring_reg = upper_32_bits(ring->ring_mem_mc_addr);
439 		WREG32_SOC15(MP0, 0, mmMP0_SMN_C2PMSG_70, psp_ring_reg);
440 		/* Write size of ring to C2PMSG_71 */
441 		psp_ring_reg = ring->ring_size;
442 		WREG32_SOC15(MP0, 0, mmMP0_SMN_C2PMSG_71, psp_ring_reg);
443 		/* Write the ring initialization command to C2PMSG_64 */
444 		psp_ring_reg = ring_type;
445 		psp_ring_reg = psp_ring_reg << 16;
446 		WREG32_SOC15(MP0, 0, mmMP0_SMN_C2PMSG_64, psp_ring_reg);
447 
448 		/* there might be handshake issue with hardware which needs delay */
449 		mdelay(20);
450 
451 		/* Wait for response flag (bit 31) in C2PMSG_64 */
452 		ret = psp_wait_for(psp, SOC15_REG_OFFSET(MP0, 0, mmMP0_SMN_C2PMSG_64),
453 				   0x80000000, 0x8000FFFF, false);
454 	}
455 
456 	return ret;
457 }
458 
459 
460 static int psp_v11_0_ring_destroy(struct psp_context *psp,
461 				 enum psp_ring_type ring_type)
462 {
463 	int ret = 0;
464 	struct psp_ring *ring = &psp->km_ring;
465 	struct amdgpu_device *adev = psp->adev;
466 
467 	ret = psp_v11_0_ring_stop(psp, ring_type);
468 	if (ret)
469 		DRM_ERROR("Fail to stop psp ring\n");
470 
471 	amdgpu_bo_free_kernel(&adev->firmware.rbuf,
472 			      &ring->ring_mem_mc_addr,
473 			      (void **)&ring->ring_mem);
474 
475 	return ret;
476 }
477 
478 static int psp_v11_0_mode1_reset(struct psp_context *psp)
479 {
480 	int ret;
481 	uint32_t offset;
482 	struct amdgpu_device *adev = psp->adev;
483 
484 	offset = SOC15_REG_OFFSET(MP0, 0, mmMP0_SMN_C2PMSG_64);
485 
486 	ret = psp_wait_for(psp, offset, 0x80000000, 0x8000FFFF, false);
487 
488 	if (ret) {
489 		DRM_INFO("psp is not working correctly before mode1 reset!\n");
490 		return -EINVAL;
491 	}
492 
493 	/*send the mode 1 reset command*/
494 	WREG32(offset, GFX_CTRL_CMD_ID_MODE1_RST);
495 
496 	msleep(500);
497 
498 	offset = SOC15_REG_OFFSET(MP0, 0, mmMP0_SMN_C2PMSG_33);
499 
500 	ret = psp_wait_for(psp, offset, 0x80000000, 0x80000000, false);
501 
502 	if (ret) {
503 		DRM_INFO("psp mode 1 reset failed!\n");
504 		return -EINVAL;
505 	}
506 
507 	DRM_INFO("psp mode1 reset succeed \n");
508 
509 	return 0;
510 }
511 
512 static int psp_v11_0_memory_training_send_msg(struct psp_context *psp, int msg)
513 {
514 	int ret;
515 	int i;
516 	uint32_t data_32;
517 	int max_wait;
518 	struct amdgpu_device *adev = psp->adev;
519 
520 	data_32 = (psp->mem_train_ctx.c2p_train_data_offset >> 20);
521 	WREG32_SOC15(MP0, 0, mmMP0_SMN_C2PMSG_36, data_32);
522 	WREG32_SOC15(MP0, 0, mmMP0_SMN_C2PMSG_35, msg);
523 
524 	max_wait = MEM_TRAIN_SEND_MSG_TIMEOUT_US / adev->usec_timeout;
525 	for (i = 0; i < max_wait; i++) {
526 		ret = psp_wait_for(psp, SOC15_REG_OFFSET(MP0, 0, mmMP0_SMN_C2PMSG_35),
527 				   0x80000000, 0x80000000, false);
528 		if (ret == 0)
529 			break;
530 	}
531 	if (i < max_wait)
532 		ret = 0;
533 	else
534 		ret = -ETIME;
535 
536 	DRM_DEBUG("training %s %s, cost %d @ %d ms\n",
537 		  (msg == PSP_BL__DRAM_SHORT_TRAIN) ? "short" : "long",
538 		  (ret == 0) ? "succeed" : "failed",
539 		  i, adev->usec_timeout/1000);
540 	return ret;
541 }
542 
543 /*
544  * save and restore process
545  */
546 static int psp_v11_0_memory_training(struct psp_context *psp, uint32_t ops)
547 {
548 	struct psp_memory_training_context *ctx = &psp->mem_train_ctx;
549 	uint32_t *pcache = (uint32_t *)ctx->sys_cache;
550 	struct amdgpu_device *adev = psp->adev;
551 	uint32_t p2c_header[4];
552 	uint32_t sz;
553 	void *buf;
554 	int ret, idx;
555 
556 	if (ctx->init == PSP_MEM_TRAIN_NOT_SUPPORT) {
557 		DRM_DEBUG("Memory training is not supported.\n");
558 		return 0;
559 	} else if (ctx->init != PSP_MEM_TRAIN_INIT_SUCCESS) {
560 		DRM_ERROR("Memory training initialization failure.\n");
561 		return -EINVAL;
562 	}
563 
564 	if (psp_v11_0_is_sos_alive(psp)) {
565 		DRM_DEBUG("SOS is alive, skip memory training.\n");
566 		return 0;
567 	}
568 
569 	amdgpu_device_vram_access(adev, ctx->p2c_train_data_offset, p2c_header, sizeof(p2c_header), false);
570 	DRM_DEBUG("sys_cache[%08x,%08x,%08x,%08x] p2c_header[%08x,%08x,%08x,%08x]\n",
571 		  pcache[0], pcache[1], pcache[2], pcache[3],
572 		  p2c_header[0], p2c_header[1], p2c_header[2], p2c_header[3]);
573 
574 	if (ops & PSP_MEM_TRAIN_SEND_SHORT_MSG) {
575 		DRM_DEBUG("Short training depends on restore.\n");
576 		ops |= PSP_MEM_TRAIN_RESTORE;
577 	}
578 
579 	if ((ops & PSP_MEM_TRAIN_RESTORE) &&
580 	    pcache[0] != MEM_TRAIN_SYSTEM_SIGNATURE) {
581 		DRM_DEBUG("sys_cache[0] is invalid, restore depends on save.\n");
582 		ops |= PSP_MEM_TRAIN_SAVE;
583 	}
584 
585 	if (p2c_header[0] == MEM_TRAIN_SYSTEM_SIGNATURE &&
586 	    !(pcache[0] == MEM_TRAIN_SYSTEM_SIGNATURE &&
587 	      pcache[3] == p2c_header[3])) {
588 		DRM_DEBUG("sys_cache is invalid or out-of-date, need save training data to sys_cache.\n");
589 		ops |= PSP_MEM_TRAIN_SAVE;
590 	}
591 
592 	if ((ops & PSP_MEM_TRAIN_SAVE) &&
593 	    p2c_header[0] != MEM_TRAIN_SYSTEM_SIGNATURE) {
594 		DRM_DEBUG("p2c_header[0] is invalid, save depends on long training.\n");
595 		ops |= PSP_MEM_TRAIN_SEND_LONG_MSG;
596 	}
597 
598 	if (ops & PSP_MEM_TRAIN_SEND_LONG_MSG) {
599 		ops &= ~PSP_MEM_TRAIN_SEND_SHORT_MSG;
600 		ops |= PSP_MEM_TRAIN_SAVE;
601 	}
602 
603 	DRM_DEBUG("Memory training ops:%x.\n", ops);
604 
605 	if (ops & PSP_MEM_TRAIN_SEND_LONG_MSG) {
606 		/*
607 		 * Long training will encroach a certain amount on the bottom of VRAM;
608 		 * save the content from the bottom of VRAM to system memory
609 		 * before training, and restore it after training to avoid
610 		 * VRAM corruption.
611 		 */
612 		sz = GDDR6_MEM_TRAINING_ENCROACHED_SIZE;
613 
614 		if (adev->gmc.visible_vram_size < sz || !adev->mman.aper_base_kaddr) {
615 			DRM_ERROR("visible_vram_size %llx or aper_base_kaddr %p is not initialized.\n",
616 				  adev->gmc.visible_vram_size,
617 				  adev->mman.aper_base_kaddr);
618 			return -EINVAL;
619 		}
620 
621 		buf = vmalloc(sz);
622 		if (!buf) {
623 			DRM_ERROR("failed to allocate system memory.\n");
624 			return -ENOMEM;
625 		}
626 
627 		if (drm_dev_enter(adev_to_drm(adev), &idx)) {
628 			memcpy_fromio(buf, adev->mman.aper_base_kaddr, sz);
629 			ret = psp_v11_0_memory_training_send_msg(psp, PSP_BL__DRAM_LONG_TRAIN);
630 			if (ret) {
631 				DRM_ERROR("Send long training msg failed.\n");
632 				vfree(buf);
633 				drm_dev_exit(idx);
634 				return ret;
635 			}
636 
637 			memcpy_toio(adev->mman.aper_base_kaddr, buf, sz);
638 			adev->hdp.funcs->flush_hdp(adev, NULL);
639 			vfree(buf);
640 			drm_dev_exit(idx);
641 		} else {
642 			vfree(buf);
643 			return -ENODEV;
644 		}
645 	}
646 
647 	if (ops & PSP_MEM_TRAIN_SAVE) {
648 		amdgpu_device_vram_access(psp->adev, ctx->p2c_train_data_offset, ctx->sys_cache, ctx->train_data_size, false);
649 	}
650 
651 	if (ops & PSP_MEM_TRAIN_RESTORE) {
652 		amdgpu_device_vram_access(psp->adev, ctx->c2p_train_data_offset, ctx->sys_cache, ctx->train_data_size, true);
653 	}
654 
655 	if (ops & PSP_MEM_TRAIN_SEND_SHORT_MSG) {
656 		ret = psp_v11_0_memory_training_send_msg(psp, (amdgpu_force_long_training > 0) ?
657 							 PSP_BL__DRAM_LONG_TRAIN : PSP_BL__DRAM_SHORT_TRAIN);
658 		if (ret) {
659 			DRM_ERROR("send training msg failed.\n");
660 			return ret;
661 		}
662 	}
663 	ctx->training_cnt++;
664 	return 0;
665 }
666 
667 static uint32_t psp_v11_0_ring_get_wptr(struct psp_context *psp)
668 {
669 	uint32_t data;
670 	struct amdgpu_device *adev = psp->adev;
671 
672 	if (amdgpu_sriov_vf(adev))
673 		data = psp->km_ring.ring_wptr;
674 	else
675 		data = RREG32_SOC15(MP0, 0, mmMP0_SMN_C2PMSG_67);
676 
677 	return data;
678 }
679 
680 static void psp_v11_0_ring_set_wptr(struct psp_context *psp, uint32_t value)
681 {
682 	struct amdgpu_device *adev = psp->adev;
683 
684 	if (amdgpu_sriov_vf(adev)) {
685 		WREG32_SOC15(MP0, 0, mmMP0_SMN_C2PMSG_102, value);
686 		WREG32_SOC15(MP0, 0, mmMP0_SMN_C2PMSG_101, GFX_CTRL_CMD_ID_CONSUME_CMD);
687 		psp->km_ring.ring_wptr = value;
688 	} else
689 		WREG32_SOC15(MP0, 0, mmMP0_SMN_C2PMSG_67, value);
690 }
691 
692 static int psp_v11_0_load_usbc_pd_fw(struct psp_context *psp, uint64_t fw_pri_mc_addr)
693 {
694 	struct amdgpu_device *adev = psp->adev;
695 	uint32_t reg_status;
696 	int ret, i = 0;
697 
698 	/*
699 	 * LFB address which is aligned to 1MB address and has to be
700 	 * right-shifted by 20 so that LFB address can be passed on a 32-bit C2P
701 	 * register
702 	 */
703 	WREG32_SOC15(MP0, 0, mmMP0_SMN_C2PMSG_36, (fw_pri_mc_addr >> 20));
704 
705 	ret = psp_wait_for(psp, SOC15_REG_OFFSET(MP0, 0, mmMP0_SMN_C2PMSG_35),
706 			     0x80000000, 0x80000000, false);
707 	if (ret)
708 		return ret;
709 
710 	/* Fireup interrupt so PSP can pick up the address */
711 	WREG32_SOC15(MP0, 0, mmMP0_SMN_C2PMSG_35, (GFX_CMD_USB_PD_USE_LFB << 16));
712 
713 	/* FW load takes very long time */
714 	do {
715 		msleep(1000);
716 		reg_status = RREG32_SOC15(MP0, 0, mmMP0_SMN_C2PMSG_35);
717 
718 		if (reg_status & 0x80000000)
719 			goto done;
720 
721 	} while (++i < USBC_PD_POLLING_LIMIT_S);
722 
723 	return -ETIME;
724 done:
725 
726 	if ((reg_status & 0xFFFF) != 0) {
727 		DRM_ERROR("Address load failed - MP0_SMN_C2PMSG_35.Bits [15:0] = 0x%04x\n",
728 				reg_status & 0xFFFF);
729 		return -EIO;
730 	}
731 
732 	return 0;
733 }
734 
735 static int psp_v11_0_read_usbc_pd_fw(struct psp_context *psp, uint32_t *fw_ver)
736 {
737 	struct amdgpu_device *adev = psp->adev;
738 	int ret;
739 
740 	WREG32_SOC15(MP0, 0, mmMP0_SMN_C2PMSG_35, C2PMSG_CMD_GFX_USB_PD_FW_VER);
741 
742 	ret = psp_wait_for(psp, SOC15_REG_OFFSET(MP0, 0, mmMP0_SMN_C2PMSG_35),
743 				     0x80000000, 0x80000000, false);
744 	if (!ret)
745 		*fw_ver = RREG32_SOC15(MP0, 0, mmMP0_SMN_C2PMSG_36);
746 
747 	return ret;
748 }
749 
750 static const struct psp_funcs psp_v11_0_funcs = {
751 	.init_microcode = psp_v11_0_init_microcode,
752 	.bootloader_load_kdb = psp_v11_0_bootloader_load_kdb,
753 	.bootloader_load_spl = psp_v11_0_bootloader_load_spl,
754 	.bootloader_load_sysdrv = psp_v11_0_bootloader_load_sysdrv,
755 	.bootloader_load_sos = psp_v11_0_bootloader_load_sos,
756 	.ring_create = psp_v11_0_ring_create,
757 	.ring_stop = psp_v11_0_ring_stop,
758 	.ring_destroy = psp_v11_0_ring_destroy,
759 	.mode1_reset = psp_v11_0_mode1_reset,
760 	.mem_training = psp_v11_0_memory_training,
761 	.ring_get_wptr = psp_v11_0_ring_get_wptr,
762 	.ring_set_wptr = psp_v11_0_ring_set_wptr,
763 	.load_usbc_pd_fw = psp_v11_0_load_usbc_pd_fw,
764 	.read_usbc_pd_fw = psp_v11_0_read_usbc_pd_fw
765 };
766 
767 void psp_v11_0_set_psp_funcs(struct psp_context *psp)
768 {
769 	psp->funcs = &psp_v11_0_funcs;
770 }
771