xref: /openbmc/linux/drivers/gpu/drm/amd/amdgpu/gmc_v9_0.c (revision 8781e5df)
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  */
23 
24 #include <linux/firmware.h>
25 #include <linux/pci.h>
26 
27 #include <drm/drm_cache.h>
28 
29 #include "amdgpu.h"
30 #include "gmc_v9_0.h"
31 #include "amdgpu_atomfirmware.h"
32 #include "amdgpu_gem.h"
33 
34 #include "hdp/hdp_4_0_offset.h"
35 #include "hdp/hdp_4_0_sh_mask.h"
36 #include "gc/gc_9_0_sh_mask.h"
37 #include "dce/dce_12_0_offset.h"
38 #include "dce/dce_12_0_sh_mask.h"
39 #include "vega10_enum.h"
40 #include "mmhub/mmhub_1_0_offset.h"
41 #include "athub/athub_1_0_offset.h"
42 #include "oss/osssys_4_0_offset.h"
43 
44 #include "soc15.h"
45 #include "soc15_common.h"
46 #include "umc/umc_6_0_sh_mask.h"
47 
48 #include "gfxhub_v1_0.h"
49 #include "mmhub_v1_0.h"
50 #include "athub_v1_0.h"
51 #include "gfxhub_v1_1.h"
52 #include "mmhub_v9_4.h"
53 #include "umc_v6_1.h"
54 #include "umc_v6_0.h"
55 
56 #include "ivsrcid/vmc/irqsrcs_vmc_1_0.h"
57 
58 #include "amdgpu_ras.h"
59 #include "amdgpu_xgmi.h"
60 
61 /* add these here since we already include dce12 headers and these are for DCN */
62 #define mmHUBP0_DCSURF_PRI_VIEWPORT_DIMENSION                                                          0x055d
63 #define mmHUBP0_DCSURF_PRI_VIEWPORT_DIMENSION_BASE_IDX                                                 2
64 #define HUBP0_DCSURF_PRI_VIEWPORT_DIMENSION__PRI_VIEWPORT_WIDTH__SHIFT                                        0x0
65 #define HUBP0_DCSURF_PRI_VIEWPORT_DIMENSION__PRI_VIEWPORT_HEIGHT__SHIFT                                       0x10
66 #define HUBP0_DCSURF_PRI_VIEWPORT_DIMENSION__PRI_VIEWPORT_WIDTH_MASK                                          0x00003FFFL
67 #define HUBP0_DCSURF_PRI_VIEWPORT_DIMENSION__PRI_VIEWPORT_HEIGHT_MASK                                         0x3FFF0000L
68 
69 /* XXX Move this macro to VEGA10 header file, which is like vid.h for VI.*/
70 #define AMDGPU_NUM_OF_VMIDS			8
71 
72 static const u32 golden_settings_vega10_hdp[] =
73 {
74 	0xf64, 0x0fffffff, 0x00000000,
75 	0xf65, 0x0fffffff, 0x00000000,
76 	0xf66, 0x0fffffff, 0x00000000,
77 	0xf67, 0x0fffffff, 0x00000000,
78 	0xf68, 0x0fffffff, 0x00000000,
79 	0xf6a, 0x0fffffff, 0x00000000,
80 	0xf6b, 0x0fffffff, 0x00000000,
81 	0xf6c, 0x0fffffff, 0x00000000,
82 	0xf6d, 0x0fffffff, 0x00000000,
83 	0xf6e, 0x0fffffff, 0x00000000,
84 };
85 
86 static const struct soc15_reg_golden golden_settings_mmhub_1_0_0[] =
87 {
88 	SOC15_REG_GOLDEN_VALUE(MMHUB, 0, mmDAGB1_WRCLI2, 0x00000007, 0xfe5fe0fa),
89 	SOC15_REG_GOLDEN_VALUE(MMHUB, 0, mmMMEA1_DRAM_WR_CLI2GRP_MAP0, 0x00000030, 0x55555565)
90 };
91 
92 static const struct soc15_reg_golden golden_settings_athub_1_0_0[] =
93 {
94 	SOC15_REG_GOLDEN_VALUE(ATHUB, 0, mmRPB_ARB_CNTL, 0x0000ff00, 0x00000800),
95 	SOC15_REG_GOLDEN_VALUE(ATHUB, 0, mmRPB_ARB_CNTL2, 0x00ff00ff, 0x00080008)
96 };
97 
98 static const uint32_t ecc_umc_mcumc_ctrl_addrs[] = {
99 	(0x000143c0 + 0x00000000),
100 	(0x000143c0 + 0x00000800),
101 	(0x000143c0 + 0x00001000),
102 	(0x000143c0 + 0x00001800),
103 	(0x000543c0 + 0x00000000),
104 	(0x000543c0 + 0x00000800),
105 	(0x000543c0 + 0x00001000),
106 	(0x000543c0 + 0x00001800),
107 	(0x000943c0 + 0x00000000),
108 	(0x000943c0 + 0x00000800),
109 	(0x000943c0 + 0x00001000),
110 	(0x000943c0 + 0x00001800),
111 	(0x000d43c0 + 0x00000000),
112 	(0x000d43c0 + 0x00000800),
113 	(0x000d43c0 + 0x00001000),
114 	(0x000d43c0 + 0x00001800),
115 	(0x001143c0 + 0x00000000),
116 	(0x001143c0 + 0x00000800),
117 	(0x001143c0 + 0x00001000),
118 	(0x001143c0 + 0x00001800),
119 	(0x001543c0 + 0x00000000),
120 	(0x001543c0 + 0x00000800),
121 	(0x001543c0 + 0x00001000),
122 	(0x001543c0 + 0x00001800),
123 	(0x001943c0 + 0x00000000),
124 	(0x001943c0 + 0x00000800),
125 	(0x001943c0 + 0x00001000),
126 	(0x001943c0 + 0x00001800),
127 	(0x001d43c0 + 0x00000000),
128 	(0x001d43c0 + 0x00000800),
129 	(0x001d43c0 + 0x00001000),
130 	(0x001d43c0 + 0x00001800),
131 };
132 
133 static const uint32_t ecc_umc_mcumc_ctrl_mask_addrs[] = {
134 	(0x000143e0 + 0x00000000),
135 	(0x000143e0 + 0x00000800),
136 	(0x000143e0 + 0x00001000),
137 	(0x000143e0 + 0x00001800),
138 	(0x000543e0 + 0x00000000),
139 	(0x000543e0 + 0x00000800),
140 	(0x000543e0 + 0x00001000),
141 	(0x000543e0 + 0x00001800),
142 	(0x000943e0 + 0x00000000),
143 	(0x000943e0 + 0x00000800),
144 	(0x000943e0 + 0x00001000),
145 	(0x000943e0 + 0x00001800),
146 	(0x000d43e0 + 0x00000000),
147 	(0x000d43e0 + 0x00000800),
148 	(0x000d43e0 + 0x00001000),
149 	(0x000d43e0 + 0x00001800),
150 	(0x001143e0 + 0x00000000),
151 	(0x001143e0 + 0x00000800),
152 	(0x001143e0 + 0x00001000),
153 	(0x001143e0 + 0x00001800),
154 	(0x001543e0 + 0x00000000),
155 	(0x001543e0 + 0x00000800),
156 	(0x001543e0 + 0x00001000),
157 	(0x001543e0 + 0x00001800),
158 	(0x001943e0 + 0x00000000),
159 	(0x001943e0 + 0x00000800),
160 	(0x001943e0 + 0x00001000),
161 	(0x001943e0 + 0x00001800),
162 	(0x001d43e0 + 0x00000000),
163 	(0x001d43e0 + 0x00000800),
164 	(0x001d43e0 + 0x00001000),
165 	(0x001d43e0 + 0x00001800),
166 };
167 
168 static const uint32_t ecc_umc_mcumc_status_addrs[] = {
169 	(0x000143c2 + 0x00000000),
170 	(0x000143c2 + 0x00000800),
171 	(0x000143c2 + 0x00001000),
172 	(0x000143c2 + 0x00001800),
173 	(0x000543c2 + 0x00000000),
174 	(0x000543c2 + 0x00000800),
175 	(0x000543c2 + 0x00001000),
176 	(0x000543c2 + 0x00001800),
177 	(0x000943c2 + 0x00000000),
178 	(0x000943c2 + 0x00000800),
179 	(0x000943c2 + 0x00001000),
180 	(0x000943c2 + 0x00001800),
181 	(0x000d43c2 + 0x00000000),
182 	(0x000d43c2 + 0x00000800),
183 	(0x000d43c2 + 0x00001000),
184 	(0x000d43c2 + 0x00001800),
185 	(0x001143c2 + 0x00000000),
186 	(0x001143c2 + 0x00000800),
187 	(0x001143c2 + 0x00001000),
188 	(0x001143c2 + 0x00001800),
189 	(0x001543c2 + 0x00000000),
190 	(0x001543c2 + 0x00000800),
191 	(0x001543c2 + 0x00001000),
192 	(0x001543c2 + 0x00001800),
193 	(0x001943c2 + 0x00000000),
194 	(0x001943c2 + 0x00000800),
195 	(0x001943c2 + 0x00001000),
196 	(0x001943c2 + 0x00001800),
197 	(0x001d43c2 + 0x00000000),
198 	(0x001d43c2 + 0x00000800),
199 	(0x001d43c2 + 0x00001000),
200 	(0x001d43c2 + 0x00001800),
201 };
202 
203 static int gmc_v9_0_ecc_interrupt_state(struct amdgpu_device *adev,
204 		struct amdgpu_irq_src *src,
205 		unsigned type,
206 		enum amdgpu_interrupt_state state)
207 {
208 	u32 bits, i, tmp, reg;
209 
210 	bits = 0x7f;
211 
212 	switch (state) {
213 	case AMDGPU_IRQ_STATE_DISABLE:
214 		for (i = 0; i < ARRAY_SIZE(ecc_umc_mcumc_ctrl_addrs); i++) {
215 			reg = ecc_umc_mcumc_ctrl_addrs[i];
216 			tmp = RREG32(reg);
217 			tmp &= ~bits;
218 			WREG32(reg, tmp);
219 		}
220 		for (i = 0; i < ARRAY_SIZE(ecc_umc_mcumc_ctrl_mask_addrs); i++) {
221 			reg = ecc_umc_mcumc_ctrl_mask_addrs[i];
222 			tmp = RREG32(reg);
223 			tmp &= ~bits;
224 			WREG32(reg, tmp);
225 		}
226 		break;
227 	case AMDGPU_IRQ_STATE_ENABLE:
228 		for (i = 0; i < ARRAY_SIZE(ecc_umc_mcumc_ctrl_addrs); i++) {
229 			reg = ecc_umc_mcumc_ctrl_addrs[i];
230 			tmp = RREG32(reg);
231 			tmp |= bits;
232 			WREG32(reg, tmp);
233 		}
234 		for (i = 0; i < ARRAY_SIZE(ecc_umc_mcumc_ctrl_mask_addrs); i++) {
235 			reg = ecc_umc_mcumc_ctrl_mask_addrs[i];
236 			tmp = RREG32(reg);
237 			tmp |= bits;
238 			WREG32(reg, tmp);
239 		}
240 		break;
241 	default:
242 		break;
243 	}
244 
245 	return 0;
246 }
247 
248 static int gmc_v9_0_vm_fault_interrupt_state(struct amdgpu_device *adev,
249 					struct amdgpu_irq_src *src,
250 					unsigned type,
251 					enum amdgpu_interrupt_state state)
252 {
253 	struct amdgpu_vmhub *hub;
254 	u32 tmp, reg, bits, i, j;
255 
256 	bits = VM_CONTEXT1_CNTL__RANGE_PROTECTION_FAULT_ENABLE_INTERRUPT_MASK |
257 		VM_CONTEXT1_CNTL__DUMMY_PAGE_PROTECTION_FAULT_ENABLE_INTERRUPT_MASK |
258 		VM_CONTEXT1_CNTL__PDE0_PROTECTION_FAULT_ENABLE_INTERRUPT_MASK |
259 		VM_CONTEXT1_CNTL__VALID_PROTECTION_FAULT_ENABLE_INTERRUPT_MASK |
260 		VM_CONTEXT1_CNTL__READ_PROTECTION_FAULT_ENABLE_INTERRUPT_MASK |
261 		VM_CONTEXT1_CNTL__WRITE_PROTECTION_FAULT_ENABLE_INTERRUPT_MASK |
262 		VM_CONTEXT1_CNTL__EXECUTE_PROTECTION_FAULT_ENABLE_INTERRUPT_MASK;
263 
264 	switch (state) {
265 	case AMDGPU_IRQ_STATE_DISABLE:
266 		for (j = 0; j < adev->num_vmhubs; j++) {
267 			hub = &adev->vmhub[j];
268 			for (i = 0; i < 16; i++) {
269 				reg = hub->vm_context0_cntl + i;
270 				tmp = RREG32(reg);
271 				tmp &= ~bits;
272 				WREG32(reg, tmp);
273 			}
274 		}
275 		break;
276 	case AMDGPU_IRQ_STATE_ENABLE:
277 		for (j = 0; j < adev->num_vmhubs; j++) {
278 			hub = &adev->vmhub[j];
279 			for (i = 0; i < 16; i++) {
280 				reg = hub->vm_context0_cntl + i;
281 				tmp = RREG32(reg);
282 				tmp |= bits;
283 				WREG32(reg, tmp);
284 			}
285 		}
286 	default:
287 		break;
288 	}
289 
290 	return 0;
291 }
292 
293 static int gmc_v9_0_process_interrupt(struct amdgpu_device *adev,
294 				struct amdgpu_irq_src *source,
295 				struct amdgpu_iv_entry *entry)
296 {
297 	struct amdgpu_vmhub *hub;
298 	bool retry_fault = !!(entry->src_data[1] & 0x80);
299 	uint32_t status = 0;
300 	u64 addr;
301 	char hub_name[10];
302 
303 	addr = (u64)entry->src_data[0] << 12;
304 	addr |= ((u64)entry->src_data[1] & 0xf) << 44;
305 
306 	if (retry_fault && amdgpu_gmc_filter_faults(adev, addr, entry->pasid,
307 						    entry->timestamp))
308 		return 1; /* This also prevents sending it to KFD */
309 
310 	if (entry->client_id == SOC15_IH_CLIENTID_VMC) {
311 		snprintf(hub_name, sizeof(hub_name), "mmhub0");
312 		hub = &adev->vmhub[AMDGPU_MMHUB_0];
313 	} else if (entry->client_id == SOC15_IH_CLIENTID_VMC1) {
314 		snprintf(hub_name, sizeof(hub_name), "mmhub1");
315 		hub = &adev->vmhub[AMDGPU_MMHUB_1];
316 	} else {
317 		snprintf(hub_name, sizeof(hub_name), "gfxhub0");
318 		hub = &adev->vmhub[AMDGPU_GFXHUB_0];
319 	}
320 
321 	/* If it's the first fault for this address, process it normally */
322 	if (retry_fault && !in_interrupt() &&
323 	    amdgpu_vm_handle_fault(adev, entry->pasid, addr))
324 		return 1; /* This also prevents sending it to KFD */
325 
326 	if (!amdgpu_sriov_vf(adev)) {
327 		/*
328 		 * Issue a dummy read to wait for the status register to
329 		 * be updated to avoid reading an incorrect value due to
330 		 * the new fast GRBM interface.
331 		 */
332 		if (entry->vmid_src == AMDGPU_GFXHUB_0)
333 			RREG32(hub->vm_l2_pro_fault_status);
334 
335 		status = RREG32(hub->vm_l2_pro_fault_status);
336 		WREG32_P(hub->vm_l2_pro_fault_cntl, 1, ~1);
337 	}
338 
339 	if (printk_ratelimit()) {
340 		struct amdgpu_task_info task_info;
341 
342 		memset(&task_info, 0, sizeof(struct amdgpu_task_info));
343 		amdgpu_vm_get_task_info(adev, entry->pasid, &task_info);
344 
345 		dev_err(adev->dev,
346 			"[%s] %s page fault (src_id:%u ring:%u vmid:%u "
347 			"pasid:%u, for process %s pid %d thread %s pid %d)\n",
348 			hub_name, retry_fault ? "retry" : "no-retry",
349 			entry->src_id, entry->ring_id, entry->vmid,
350 			entry->pasid, task_info.process_name, task_info.tgid,
351 			task_info.task_name, task_info.pid);
352 		dev_err(adev->dev, "  in page starting at address 0x%016llx from client %d\n",
353 			addr, entry->client_id);
354 		if (!amdgpu_sriov_vf(adev)) {
355 			dev_err(adev->dev,
356 				"VM_L2_PROTECTION_FAULT_STATUS:0x%08X\n",
357 				status);
358 			dev_err(adev->dev, "\t MORE_FAULTS: 0x%lx\n",
359 				REG_GET_FIELD(status,
360 				VM_L2_PROTECTION_FAULT_STATUS, MORE_FAULTS));
361 			dev_err(adev->dev, "\t WALKER_ERROR: 0x%lx\n",
362 				REG_GET_FIELD(status,
363 				VM_L2_PROTECTION_FAULT_STATUS, WALKER_ERROR));
364 			dev_err(adev->dev, "\t PERMISSION_FAULTS: 0x%lx\n",
365 				REG_GET_FIELD(status,
366 				VM_L2_PROTECTION_FAULT_STATUS, PERMISSION_FAULTS));
367 			dev_err(adev->dev, "\t MAPPING_ERROR: 0x%lx\n",
368 				REG_GET_FIELD(status,
369 				VM_L2_PROTECTION_FAULT_STATUS, MAPPING_ERROR));
370 			dev_err(adev->dev, "\t RW: 0x%lx\n",
371 				REG_GET_FIELD(status,
372 				VM_L2_PROTECTION_FAULT_STATUS, RW));
373 
374 		}
375 	}
376 
377 	return 0;
378 }
379 
380 static const struct amdgpu_irq_src_funcs gmc_v9_0_irq_funcs = {
381 	.set = gmc_v9_0_vm_fault_interrupt_state,
382 	.process = gmc_v9_0_process_interrupt,
383 };
384 
385 
386 static const struct amdgpu_irq_src_funcs gmc_v9_0_ecc_funcs = {
387 	.set = gmc_v9_0_ecc_interrupt_state,
388 	.process = amdgpu_umc_process_ecc_irq,
389 };
390 
391 static void gmc_v9_0_set_irq_funcs(struct amdgpu_device *adev)
392 {
393 	adev->gmc.vm_fault.num_types = 1;
394 	adev->gmc.vm_fault.funcs = &gmc_v9_0_irq_funcs;
395 
396 	adev->gmc.ecc_irq.num_types = 1;
397 	adev->gmc.ecc_irq.funcs = &gmc_v9_0_ecc_funcs;
398 }
399 
400 static uint32_t gmc_v9_0_get_invalidate_req(unsigned int vmid,
401 					uint32_t flush_type)
402 {
403 	u32 req = 0;
404 
405 	req = REG_SET_FIELD(req, VM_INVALIDATE_ENG0_REQ,
406 			    PER_VMID_INVALIDATE_REQ, 1 << vmid);
407 	req = REG_SET_FIELD(req, VM_INVALIDATE_ENG0_REQ, FLUSH_TYPE, flush_type);
408 	req = REG_SET_FIELD(req, VM_INVALIDATE_ENG0_REQ, INVALIDATE_L2_PTES, 1);
409 	req = REG_SET_FIELD(req, VM_INVALIDATE_ENG0_REQ, INVALIDATE_L2_PDE0, 1);
410 	req = REG_SET_FIELD(req, VM_INVALIDATE_ENG0_REQ, INVALIDATE_L2_PDE1, 1);
411 	req = REG_SET_FIELD(req, VM_INVALIDATE_ENG0_REQ, INVALIDATE_L2_PDE2, 1);
412 	req = REG_SET_FIELD(req, VM_INVALIDATE_ENG0_REQ, INVALIDATE_L1_PTES, 1);
413 	req = REG_SET_FIELD(req, VM_INVALIDATE_ENG0_REQ,
414 			    CLEAR_PROTECTION_FAULT_STATUS_ADDR,	0);
415 
416 	return req;
417 }
418 
419 /*
420  * GART
421  * VMID 0 is the physical GPU addresses as used by the kernel.
422  * VMIDs 1-15 are used for userspace clients and are handled
423  * by the amdgpu vm/hsa code.
424  */
425 
426 /**
427  * gmc_v9_0_flush_gpu_tlb - tlb flush with certain type
428  *
429  * @adev: amdgpu_device pointer
430  * @vmid: vm instance to flush
431  * @flush_type: the flush type
432  *
433  * Flush the TLB for the requested page table using certain type.
434  */
435 static void gmc_v9_0_flush_gpu_tlb(struct amdgpu_device *adev, uint32_t vmid,
436 					uint32_t vmhub, uint32_t flush_type)
437 {
438 	const unsigned eng = 17;
439 	u32 j, tmp;
440 	struct amdgpu_vmhub *hub;
441 
442 	BUG_ON(vmhub >= adev->num_vmhubs);
443 
444 	hub = &adev->vmhub[vmhub];
445 	tmp = gmc_v9_0_get_invalidate_req(vmid, flush_type);
446 
447 	/* This is necessary for a HW workaround under SRIOV as well
448 	 * as GFXOFF under bare metal
449 	 */
450 	if (adev->gfx.kiq.ring.sched.ready &&
451 			(amdgpu_sriov_runtime(adev) || !amdgpu_sriov_vf(adev)) &&
452 			!adev->in_gpu_reset) {
453 		uint32_t req = hub->vm_inv_eng0_req + eng;
454 		uint32_t ack = hub->vm_inv_eng0_ack + eng;
455 
456 		amdgpu_virt_kiq_reg_write_reg_wait(adev, req, ack, tmp,
457 				1 << vmid);
458 		return;
459 	}
460 
461 	spin_lock(&adev->gmc.invalidate_lock);
462 	WREG32_NO_KIQ(hub->vm_inv_eng0_req + eng, tmp);
463 
464 	/*
465 	 * Issue a dummy read to wait for the ACK register to be cleared
466 	 * to avoid a false ACK due to the new fast GRBM interface.
467 	 */
468 	if (vmhub == AMDGPU_GFXHUB_0)
469 		RREG32_NO_KIQ(hub->vm_inv_eng0_req + eng);
470 
471 	for (j = 0; j < adev->usec_timeout; j++) {
472 		tmp = RREG32_NO_KIQ(hub->vm_inv_eng0_ack + eng);
473 		if (tmp & (1 << vmid))
474 			break;
475 		udelay(1);
476 	}
477 	spin_unlock(&adev->gmc.invalidate_lock);
478 	if (j < adev->usec_timeout)
479 		return;
480 
481 	DRM_ERROR("Timeout waiting for VM flush ACK!\n");
482 }
483 
484 static uint64_t gmc_v9_0_emit_flush_gpu_tlb(struct amdgpu_ring *ring,
485 					    unsigned vmid, uint64_t pd_addr)
486 {
487 	struct amdgpu_device *adev = ring->adev;
488 	struct amdgpu_vmhub *hub = &adev->vmhub[ring->funcs->vmhub];
489 	uint32_t req = gmc_v9_0_get_invalidate_req(vmid, 0);
490 	unsigned eng = ring->vm_inv_eng;
491 
492 	amdgpu_ring_emit_wreg(ring, hub->ctx0_ptb_addr_lo32 + (2 * vmid),
493 			      lower_32_bits(pd_addr));
494 
495 	amdgpu_ring_emit_wreg(ring, hub->ctx0_ptb_addr_hi32 + (2 * vmid),
496 			      upper_32_bits(pd_addr));
497 
498 	amdgpu_ring_emit_reg_write_reg_wait(ring, hub->vm_inv_eng0_req + eng,
499 					    hub->vm_inv_eng0_ack + eng,
500 					    req, 1 << vmid);
501 
502 	return pd_addr;
503 }
504 
505 static void gmc_v9_0_emit_pasid_mapping(struct amdgpu_ring *ring, unsigned vmid,
506 					unsigned pasid)
507 {
508 	struct amdgpu_device *adev = ring->adev;
509 	uint32_t reg;
510 
511 	/* Do nothing because there's no lut register for mmhub1. */
512 	if (ring->funcs->vmhub == AMDGPU_MMHUB_1)
513 		return;
514 
515 	if (ring->funcs->vmhub == AMDGPU_GFXHUB_0)
516 		reg = SOC15_REG_OFFSET(OSSSYS, 0, mmIH_VMID_0_LUT) + vmid;
517 	else
518 		reg = SOC15_REG_OFFSET(OSSSYS, 0, mmIH_VMID_0_LUT_MM) + vmid;
519 
520 	amdgpu_ring_emit_wreg(ring, reg, pasid);
521 }
522 
523 /*
524  * PTE format on VEGA 10:
525  * 63:59 reserved
526  * 58:57 mtype
527  * 56 F
528  * 55 L
529  * 54 P
530  * 53 SW
531  * 52 T
532  * 50:48 reserved
533  * 47:12 4k physical page base address
534  * 11:7 fragment
535  * 6 write
536  * 5 read
537  * 4 exe
538  * 3 Z
539  * 2 snooped
540  * 1 system
541  * 0 valid
542  *
543  * PDE format on VEGA 10:
544  * 63:59 block fragment size
545  * 58:55 reserved
546  * 54 P
547  * 53:48 reserved
548  * 47:6 physical base address of PD or PTE
549  * 5:3 reserved
550  * 2 C
551  * 1 system
552  * 0 valid
553  */
554 
555 static uint64_t gmc_v9_0_map_mtype(struct amdgpu_device *adev, uint32_t flags)
556 
557 {
558 	switch (flags) {
559 	case AMDGPU_VM_MTYPE_DEFAULT:
560 		return AMDGPU_PTE_MTYPE_VG10(MTYPE_NC);
561 	case AMDGPU_VM_MTYPE_NC:
562 		return AMDGPU_PTE_MTYPE_VG10(MTYPE_NC);
563 	case AMDGPU_VM_MTYPE_WC:
564 		return AMDGPU_PTE_MTYPE_VG10(MTYPE_WC);
565 	case AMDGPU_VM_MTYPE_RW:
566 		return AMDGPU_PTE_MTYPE_VG10(MTYPE_RW);
567 	case AMDGPU_VM_MTYPE_CC:
568 		return AMDGPU_PTE_MTYPE_VG10(MTYPE_CC);
569 	case AMDGPU_VM_MTYPE_UC:
570 		return AMDGPU_PTE_MTYPE_VG10(MTYPE_UC);
571 	default:
572 		return AMDGPU_PTE_MTYPE_VG10(MTYPE_NC);
573 	}
574 }
575 
576 static void gmc_v9_0_get_vm_pde(struct amdgpu_device *adev, int level,
577 				uint64_t *addr, uint64_t *flags)
578 {
579 	if (!(*flags & AMDGPU_PDE_PTE) && !(*flags & AMDGPU_PTE_SYSTEM))
580 		*addr = adev->vm_manager.vram_base_offset + *addr -
581 			adev->gmc.vram_start;
582 	BUG_ON(*addr & 0xFFFF00000000003FULL);
583 
584 	if (!adev->gmc.translate_further)
585 		return;
586 
587 	if (level == AMDGPU_VM_PDB1) {
588 		/* Set the block fragment size */
589 		if (!(*flags & AMDGPU_PDE_PTE))
590 			*flags |= AMDGPU_PDE_BFS(0x9);
591 
592 	} else if (level == AMDGPU_VM_PDB0) {
593 		if (*flags & AMDGPU_PDE_PTE)
594 			*flags &= ~AMDGPU_PDE_PTE;
595 		else
596 			*flags |= AMDGPU_PTE_TF;
597 	}
598 }
599 
600 static void gmc_v9_0_get_vm_pte(struct amdgpu_device *adev,
601 				struct amdgpu_bo_va_mapping *mapping,
602 				uint64_t *flags)
603 {
604 	*flags &= ~AMDGPU_PTE_EXECUTABLE;
605 	*flags |= mapping->flags & AMDGPU_PTE_EXECUTABLE;
606 
607 	*flags &= ~AMDGPU_PTE_MTYPE_VG10_MASK;
608 	*flags |= mapping->flags & AMDGPU_PTE_MTYPE_VG10_MASK;
609 
610 	if (mapping->flags & AMDGPU_PTE_PRT) {
611 		*flags |= AMDGPU_PTE_PRT;
612 		*flags &= ~AMDGPU_PTE_VALID;
613 	}
614 
615 	if (adev->asic_type == CHIP_ARCTURUS &&
616 	    !(*flags & AMDGPU_PTE_SYSTEM) &&
617 	    mapping->bo_va->is_xgmi)
618 		*flags |= AMDGPU_PTE_SNOOPED;
619 }
620 
621 static const struct amdgpu_gmc_funcs gmc_v9_0_gmc_funcs = {
622 	.flush_gpu_tlb = gmc_v9_0_flush_gpu_tlb,
623 	.emit_flush_gpu_tlb = gmc_v9_0_emit_flush_gpu_tlb,
624 	.emit_pasid_mapping = gmc_v9_0_emit_pasid_mapping,
625 	.map_mtype = gmc_v9_0_map_mtype,
626 	.get_vm_pde = gmc_v9_0_get_vm_pde,
627 	.get_vm_pte = gmc_v9_0_get_vm_pte
628 };
629 
630 static void gmc_v9_0_set_gmc_funcs(struct amdgpu_device *adev)
631 {
632 	adev->gmc.gmc_funcs = &gmc_v9_0_gmc_funcs;
633 }
634 
635 static void gmc_v9_0_set_umc_funcs(struct amdgpu_device *adev)
636 {
637 	switch (adev->asic_type) {
638 	case CHIP_VEGA10:
639 		adev->umc.funcs = &umc_v6_0_funcs;
640 		break;
641 	case CHIP_VEGA20:
642 	case CHIP_ARCTURUS:
643 		adev->umc.max_ras_err_cnt_per_query = UMC_V6_1_TOTAL_CHANNEL_NUM;
644 		adev->umc.channel_inst_num = UMC_V6_1_CHANNEL_INSTANCE_NUM;
645 		adev->umc.umc_inst_num = UMC_V6_1_UMC_INSTANCE_NUM;
646 		adev->umc.channel_offs = UMC_V6_1_PER_CHANNEL_OFFSET;
647 		adev->umc.channel_idx_tbl = &umc_v6_1_channel_idx_tbl[0][0];
648 		adev->umc.funcs = &umc_v6_1_funcs;
649 		break;
650 	default:
651 		break;
652 	}
653 }
654 
655 static void gmc_v9_0_set_mmhub_funcs(struct amdgpu_device *adev)
656 {
657 	switch (adev->asic_type) {
658 	case CHIP_VEGA20:
659 		adev->mmhub.funcs = &mmhub_v1_0_funcs;
660 		break;
661 	default:
662 		break;
663 	}
664 }
665 
666 static int gmc_v9_0_early_init(void *handle)
667 {
668 	struct amdgpu_device *adev = (struct amdgpu_device *)handle;
669 
670 	gmc_v9_0_set_gmc_funcs(adev);
671 	gmc_v9_0_set_irq_funcs(adev);
672 	gmc_v9_0_set_umc_funcs(adev);
673 	gmc_v9_0_set_mmhub_funcs(adev);
674 
675 	adev->gmc.shared_aperture_start = 0x2000000000000000ULL;
676 	adev->gmc.shared_aperture_end =
677 		adev->gmc.shared_aperture_start + (4ULL << 30) - 1;
678 	adev->gmc.private_aperture_start = 0x1000000000000000ULL;
679 	adev->gmc.private_aperture_end =
680 		adev->gmc.private_aperture_start + (4ULL << 30) - 1;
681 
682 	return 0;
683 }
684 
685 static bool gmc_v9_0_keep_stolen_memory(struct amdgpu_device *adev)
686 {
687 
688 	/*
689 	 * TODO:
690 	 * Currently there is a bug where some memory client outside
691 	 * of the driver writes to first 8M of VRAM on S3 resume,
692 	 * this overrides GART which by default gets placed in first 8M and
693 	 * causes VM_FAULTS once GTT is accessed.
694 	 * Keep the stolen memory reservation until the while this is not solved.
695 	 * Also check code in gmc_v9_0_get_vbios_fb_size and gmc_v9_0_late_init
696 	 */
697 	switch (adev->asic_type) {
698 	case CHIP_VEGA10:
699 	case CHIP_RAVEN:
700 	case CHIP_ARCTURUS:
701 	case CHIP_RENOIR:
702 		return true;
703 	case CHIP_VEGA12:
704 	case CHIP_VEGA20:
705 	default:
706 		return false;
707 	}
708 }
709 
710 static int gmc_v9_0_allocate_vm_inv_eng(struct amdgpu_device *adev)
711 {
712 	struct amdgpu_ring *ring;
713 	unsigned vm_inv_engs[AMDGPU_MAX_VMHUBS] =
714 		{GFXHUB_FREE_VM_INV_ENGS_BITMAP, MMHUB_FREE_VM_INV_ENGS_BITMAP,
715 		GFXHUB_FREE_VM_INV_ENGS_BITMAP};
716 	unsigned i;
717 	unsigned vmhub, inv_eng;
718 
719 	for (i = 0; i < adev->num_rings; ++i) {
720 		ring = adev->rings[i];
721 		vmhub = ring->funcs->vmhub;
722 
723 		inv_eng = ffs(vm_inv_engs[vmhub]);
724 		if (!inv_eng) {
725 			dev_err(adev->dev, "no VM inv eng for ring %s\n",
726 				ring->name);
727 			return -EINVAL;
728 		}
729 
730 		ring->vm_inv_eng = inv_eng - 1;
731 		vm_inv_engs[vmhub] &= ~(1 << ring->vm_inv_eng);
732 
733 		dev_info(adev->dev, "ring %s uses VM inv eng %u on hub %u\n",
734 			 ring->name, ring->vm_inv_eng, ring->funcs->vmhub);
735 	}
736 
737 	return 0;
738 }
739 
740 static int gmc_v9_0_late_init(void *handle)
741 {
742 	struct amdgpu_device *adev = (struct amdgpu_device *)handle;
743 	int r;
744 
745 	if (!gmc_v9_0_keep_stolen_memory(adev))
746 		amdgpu_bo_late_init(adev);
747 
748 	r = gmc_v9_0_allocate_vm_inv_eng(adev);
749 	if (r)
750 		return r;
751 	/* Check if ecc is available */
752 	if (!amdgpu_sriov_vf(adev)) {
753 		switch (adev->asic_type) {
754 		case CHIP_VEGA10:
755 		case CHIP_VEGA20:
756 		case CHIP_ARCTURUS:
757 			r = amdgpu_atomfirmware_mem_ecc_supported(adev);
758 			if (!r) {
759 				DRM_INFO("ECC is not present.\n");
760 				if (adev->df_funcs->enable_ecc_force_par_wr_rmw)
761 					adev->df_funcs->enable_ecc_force_par_wr_rmw(adev, false);
762 			} else {
763 				DRM_INFO("ECC is active.\n");
764 			}
765 
766 			r = amdgpu_atomfirmware_sram_ecc_supported(adev);
767 			if (!r) {
768 				DRM_INFO("SRAM ECC is not present.\n");
769 			} else {
770 				DRM_INFO("SRAM ECC is active.\n");
771 			}
772 			break;
773 		default:
774 			break;
775 		}
776 	}
777 
778 	r = amdgpu_gmc_ras_late_init(adev);
779 	if (r)
780 		return r;
781 
782 	return amdgpu_irq_get(adev, &adev->gmc.vm_fault, 0);
783 }
784 
785 static void gmc_v9_0_vram_gtt_location(struct amdgpu_device *adev,
786 					struct amdgpu_gmc *mc)
787 {
788 	u64 base = 0;
789 
790 	if (adev->asic_type == CHIP_ARCTURUS)
791 		base = mmhub_v9_4_get_fb_location(adev);
792 	else if (!amdgpu_sriov_vf(adev))
793 		base = mmhub_v1_0_get_fb_location(adev);
794 
795 	/* add the xgmi offset of the physical node */
796 	base += adev->gmc.xgmi.physical_node_id * adev->gmc.xgmi.node_segment_size;
797 	amdgpu_gmc_vram_location(adev, mc, base);
798 	amdgpu_gmc_gart_location(adev, mc);
799 	amdgpu_gmc_agp_location(adev, mc);
800 	/* base offset of vram pages */
801 	adev->vm_manager.vram_base_offset = gfxhub_v1_0_get_mc_fb_offset(adev);
802 
803 	/* XXX: add the xgmi offset of the physical node? */
804 	adev->vm_manager.vram_base_offset +=
805 		adev->gmc.xgmi.physical_node_id * adev->gmc.xgmi.node_segment_size;
806 }
807 
808 /**
809  * gmc_v9_0_mc_init - initialize the memory controller driver params
810  *
811  * @adev: amdgpu_device pointer
812  *
813  * Look up the amount of vram, vram width, and decide how to place
814  * vram and gart within the GPU's physical address space.
815  * Returns 0 for success.
816  */
817 static int gmc_v9_0_mc_init(struct amdgpu_device *adev)
818 {
819 	int r;
820 
821 	/* size in MB on si */
822 	adev->gmc.mc_vram_size =
823 		adev->nbio.funcs->get_memsize(adev) * 1024ULL * 1024ULL;
824 	adev->gmc.real_vram_size = adev->gmc.mc_vram_size;
825 
826 	if (!(adev->flags & AMD_IS_APU)) {
827 		r = amdgpu_device_resize_fb_bar(adev);
828 		if (r)
829 			return r;
830 	}
831 	adev->gmc.aper_base = pci_resource_start(adev->pdev, 0);
832 	adev->gmc.aper_size = pci_resource_len(adev->pdev, 0);
833 
834 #ifdef CONFIG_X86_64
835 	if (adev->flags & AMD_IS_APU) {
836 		adev->gmc.aper_base = gfxhub_v1_0_get_mc_fb_offset(adev);
837 		adev->gmc.aper_size = adev->gmc.real_vram_size;
838 	}
839 #endif
840 	/* In case the PCI BAR is larger than the actual amount of vram */
841 	adev->gmc.visible_vram_size = adev->gmc.aper_size;
842 	if (adev->gmc.visible_vram_size > adev->gmc.real_vram_size)
843 		adev->gmc.visible_vram_size = adev->gmc.real_vram_size;
844 
845 	/* set the gart size */
846 	if (amdgpu_gart_size == -1) {
847 		switch (adev->asic_type) {
848 		case CHIP_VEGA10:  /* all engines support GPUVM */
849 		case CHIP_VEGA12:  /* all engines support GPUVM */
850 		case CHIP_VEGA20:
851 		case CHIP_ARCTURUS:
852 		default:
853 			adev->gmc.gart_size = 512ULL << 20;
854 			break;
855 		case CHIP_RAVEN:   /* DCE SG support */
856 		case CHIP_RENOIR:
857 			adev->gmc.gart_size = 1024ULL << 20;
858 			break;
859 		}
860 	} else {
861 		adev->gmc.gart_size = (u64)amdgpu_gart_size << 20;
862 	}
863 
864 	gmc_v9_0_vram_gtt_location(adev, &adev->gmc);
865 
866 	return 0;
867 }
868 
869 static int gmc_v9_0_gart_init(struct amdgpu_device *adev)
870 {
871 	int r;
872 
873 	if (adev->gart.bo) {
874 		WARN(1, "VEGA10 PCIE GART already initialized\n");
875 		return 0;
876 	}
877 	/* Initialize common gart structure */
878 	r = amdgpu_gart_init(adev);
879 	if (r)
880 		return r;
881 	adev->gart.table_size = adev->gart.num_gpu_pages * 8;
882 	adev->gart.gart_pte_flags = AMDGPU_PTE_MTYPE_VG10(MTYPE_UC) |
883 				 AMDGPU_PTE_EXECUTABLE;
884 	return amdgpu_gart_table_vram_alloc(adev);
885 }
886 
887 static unsigned gmc_v9_0_get_vbios_fb_size(struct amdgpu_device *adev)
888 {
889 	u32 d1vga_control;
890 	unsigned size;
891 
892 	/*
893 	 * TODO Remove once GART corruption is resolved
894 	 * Check related code in gmc_v9_0_sw_fini
895 	 * */
896 	if (gmc_v9_0_keep_stolen_memory(adev))
897 		return 9 * 1024 * 1024;
898 
899 	d1vga_control = RREG32_SOC15(DCE, 0, mmD1VGA_CONTROL);
900 	if (REG_GET_FIELD(d1vga_control, D1VGA_CONTROL, D1VGA_MODE_ENABLE)) {
901 		size = 9 * 1024 * 1024; /* reserve 8MB for vga emulator and 1 MB for FB */
902 	} else {
903 		u32 viewport;
904 
905 		switch (adev->asic_type) {
906 		case CHIP_RAVEN:
907 		case CHIP_RENOIR:
908 			viewport = RREG32_SOC15(DCE, 0, mmHUBP0_DCSURF_PRI_VIEWPORT_DIMENSION);
909 			size = (REG_GET_FIELD(viewport,
910 					      HUBP0_DCSURF_PRI_VIEWPORT_DIMENSION, PRI_VIEWPORT_HEIGHT) *
911 				REG_GET_FIELD(viewport,
912 					      HUBP0_DCSURF_PRI_VIEWPORT_DIMENSION, PRI_VIEWPORT_WIDTH) *
913 				4);
914 			break;
915 		case CHIP_VEGA10:
916 		case CHIP_VEGA12:
917 		case CHIP_VEGA20:
918 		default:
919 			viewport = RREG32_SOC15(DCE, 0, mmSCL0_VIEWPORT_SIZE);
920 			size = (REG_GET_FIELD(viewport, SCL0_VIEWPORT_SIZE, VIEWPORT_HEIGHT) *
921 				REG_GET_FIELD(viewport, SCL0_VIEWPORT_SIZE, VIEWPORT_WIDTH) *
922 				4);
923 			break;
924 		}
925 	}
926 	/* return 0 if the pre-OS buffer uses up most of vram */
927 	if ((adev->gmc.real_vram_size - size) < (8 * 1024 * 1024))
928 		return 0;
929 
930 	return size;
931 }
932 
933 static int gmc_v9_0_sw_init(void *handle)
934 {
935 	int r, vram_width = 0, vram_type = 0, vram_vendor = 0;
936 	struct amdgpu_device *adev = (struct amdgpu_device *)handle;
937 
938 	gfxhub_v1_0_init(adev);
939 	if (adev->asic_type == CHIP_ARCTURUS)
940 		mmhub_v9_4_init(adev);
941 	else
942 		mmhub_v1_0_init(adev);
943 
944 	spin_lock_init(&adev->gmc.invalidate_lock);
945 
946 	r = amdgpu_atomfirmware_get_vram_info(adev,
947 		&vram_width, &vram_type, &vram_vendor);
948 	if (amdgpu_sriov_vf(adev))
949 		/* For Vega10 SR-IOV, vram_width can't be read from ATOM as RAVEN,
950 		 * and DF related registers is not readable, seems hardcord is the
951 		 * only way to set the correct vram_width
952 		 */
953 		adev->gmc.vram_width = 2048;
954 	else if (amdgpu_emu_mode != 1)
955 		adev->gmc.vram_width = vram_width;
956 
957 	if (!adev->gmc.vram_width) {
958 		int chansize, numchan;
959 
960 		/* hbm memory channel size */
961 		if (adev->flags & AMD_IS_APU)
962 			chansize = 64;
963 		else
964 			chansize = 128;
965 
966 		numchan = adev->df_funcs->get_hbm_channel_number(adev);
967 		adev->gmc.vram_width = numchan * chansize;
968 	}
969 
970 	adev->gmc.vram_type = vram_type;
971 	adev->gmc.vram_vendor = vram_vendor;
972 	switch (adev->asic_type) {
973 	case CHIP_RAVEN:
974 		adev->num_vmhubs = 2;
975 
976 		if (adev->rev_id == 0x0 || adev->rev_id == 0x1) {
977 			amdgpu_vm_adjust_size(adev, 256 * 1024, 9, 3, 48);
978 		} else {
979 			/* vm_size is 128TB + 512GB for legacy 3-level page support */
980 			amdgpu_vm_adjust_size(adev, 128 * 1024 + 512, 9, 2, 48);
981 			adev->gmc.translate_further =
982 				adev->vm_manager.num_level > 1;
983 		}
984 		break;
985 	case CHIP_VEGA10:
986 	case CHIP_VEGA12:
987 	case CHIP_VEGA20:
988 	case CHIP_RENOIR:
989 		adev->num_vmhubs = 2;
990 
991 
992 		/*
993 		 * To fulfill 4-level page support,
994 		 * vm size is 256TB (48bit), maximum size of Vega10,
995 		 * block size 512 (9bit)
996 		 */
997 		/* sriov restrict max_pfn below AMDGPU_GMC_HOLE */
998 		if (amdgpu_sriov_vf(adev))
999 			amdgpu_vm_adjust_size(adev, 256 * 1024, 9, 3, 47);
1000 		else
1001 			amdgpu_vm_adjust_size(adev, 256 * 1024, 9, 3, 48);
1002 		break;
1003 	case CHIP_ARCTURUS:
1004 		adev->num_vmhubs = 3;
1005 
1006 		/* Keep the vm size same with Vega20 */
1007 		amdgpu_vm_adjust_size(adev, 256 * 1024, 9, 3, 48);
1008 		break;
1009 	default:
1010 		break;
1011 	}
1012 
1013 	/* This interrupt is VMC page fault.*/
1014 	r = amdgpu_irq_add_id(adev, SOC15_IH_CLIENTID_VMC, VMC_1_0__SRCID__VM_FAULT,
1015 				&adev->gmc.vm_fault);
1016 	if (r)
1017 		return r;
1018 
1019 	if (adev->asic_type == CHIP_ARCTURUS) {
1020 		r = amdgpu_irq_add_id(adev, SOC15_IH_CLIENTID_VMC1, VMC_1_0__SRCID__VM_FAULT,
1021 					&adev->gmc.vm_fault);
1022 		if (r)
1023 			return r;
1024 	}
1025 
1026 	r = amdgpu_irq_add_id(adev, SOC15_IH_CLIENTID_UTCL2, UTCL2_1_0__SRCID__FAULT,
1027 				&adev->gmc.vm_fault);
1028 
1029 	if (r)
1030 		return r;
1031 
1032 	/* interrupt sent to DF. */
1033 	r = amdgpu_irq_add_id(adev, SOC15_IH_CLIENTID_DF, 0,
1034 			&adev->gmc.ecc_irq);
1035 	if (r)
1036 		return r;
1037 
1038 	/* Set the internal MC address mask
1039 	 * This is the max address of the GPU's
1040 	 * internal address space.
1041 	 */
1042 	adev->gmc.mc_mask = 0xffffffffffffULL; /* 48 bit MC */
1043 
1044 	r = dma_set_mask_and_coherent(adev->dev, DMA_BIT_MASK(44));
1045 	if (r) {
1046 		printk(KERN_WARNING "amdgpu: No suitable DMA available.\n");
1047 		return r;
1048 	}
1049 	adev->need_swiotlb = drm_need_swiotlb(44);
1050 
1051 	if (adev->gmc.xgmi.supported) {
1052 		r = gfxhub_v1_1_get_xgmi_info(adev);
1053 		if (r)
1054 			return r;
1055 	}
1056 
1057 	r = gmc_v9_0_mc_init(adev);
1058 	if (r)
1059 		return r;
1060 
1061 	adev->gmc.stolen_size = gmc_v9_0_get_vbios_fb_size(adev);
1062 
1063 	/* Memory manager */
1064 	r = amdgpu_bo_init(adev);
1065 	if (r)
1066 		return r;
1067 
1068 	r = gmc_v9_0_gart_init(adev);
1069 	if (r)
1070 		return r;
1071 
1072 	/*
1073 	 * number of VMs
1074 	 * VMID 0 is reserved for System
1075 	 * amdgpu graphics/compute will use VMIDs 1-7
1076 	 * amdkfd will use VMIDs 8-15
1077 	 */
1078 	adev->vm_manager.id_mgr[AMDGPU_GFXHUB_0].num_ids = AMDGPU_NUM_OF_VMIDS;
1079 	adev->vm_manager.id_mgr[AMDGPU_MMHUB_0].num_ids = AMDGPU_NUM_OF_VMIDS;
1080 	adev->vm_manager.id_mgr[AMDGPU_MMHUB_1].num_ids = AMDGPU_NUM_OF_VMIDS;
1081 
1082 	amdgpu_vm_manager_init(adev);
1083 
1084 	return 0;
1085 }
1086 
1087 static int gmc_v9_0_sw_fini(void *handle)
1088 {
1089 	struct amdgpu_device *adev = (struct amdgpu_device *)handle;
1090 	void *stolen_vga_buf;
1091 
1092 	amdgpu_gmc_ras_fini(adev);
1093 	amdgpu_gem_force_release(adev);
1094 	amdgpu_vm_manager_fini(adev);
1095 
1096 	if (gmc_v9_0_keep_stolen_memory(adev))
1097 		amdgpu_bo_free_kernel(&adev->stolen_vga_memory, NULL, &stolen_vga_buf);
1098 
1099 	amdgpu_gart_table_vram_free(adev);
1100 	amdgpu_bo_fini(adev);
1101 	amdgpu_gart_fini(adev);
1102 
1103 	return 0;
1104 }
1105 
1106 static void gmc_v9_0_init_golden_registers(struct amdgpu_device *adev)
1107 {
1108 
1109 	switch (adev->asic_type) {
1110 	case CHIP_VEGA10:
1111 		if (amdgpu_sriov_vf(adev))
1112 			break;
1113 		/* fall through */
1114 	case CHIP_VEGA20:
1115 		soc15_program_register_sequence(adev,
1116 						golden_settings_mmhub_1_0_0,
1117 						ARRAY_SIZE(golden_settings_mmhub_1_0_0));
1118 		soc15_program_register_sequence(adev,
1119 						golden_settings_athub_1_0_0,
1120 						ARRAY_SIZE(golden_settings_athub_1_0_0));
1121 		break;
1122 	case CHIP_VEGA12:
1123 		break;
1124 	case CHIP_RAVEN:
1125 		/* TODO for renoir */
1126 		soc15_program_register_sequence(adev,
1127 						golden_settings_athub_1_0_0,
1128 						ARRAY_SIZE(golden_settings_athub_1_0_0));
1129 		break;
1130 	default:
1131 		break;
1132 	}
1133 }
1134 
1135 /**
1136  * gmc_v9_0_gart_enable - gart enable
1137  *
1138  * @adev: amdgpu_device pointer
1139  */
1140 static int gmc_v9_0_gart_enable(struct amdgpu_device *adev)
1141 {
1142 	int r;
1143 
1144 	if (adev->gart.bo == NULL) {
1145 		dev_err(adev->dev, "No VRAM object for PCIE GART.\n");
1146 		return -EINVAL;
1147 	}
1148 	r = amdgpu_gart_table_vram_pin(adev);
1149 	if (r)
1150 		return r;
1151 
1152 	r = gfxhub_v1_0_gart_enable(adev);
1153 	if (r)
1154 		return r;
1155 
1156 	if (adev->asic_type == CHIP_ARCTURUS)
1157 		r = mmhub_v9_4_gart_enable(adev);
1158 	else
1159 		r = mmhub_v1_0_gart_enable(adev);
1160 	if (r)
1161 		return r;
1162 
1163 	DRM_INFO("PCIE GART of %uM enabled (table at 0x%016llX).\n",
1164 		 (unsigned)(adev->gmc.gart_size >> 20),
1165 		 (unsigned long long)amdgpu_bo_gpu_offset(adev->gart.bo));
1166 	adev->gart.ready = true;
1167 	return 0;
1168 }
1169 
1170 static int gmc_v9_0_hw_init(void *handle)
1171 {
1172 	struct amdgpu_device *adev = (struct amdgpu_device *)handle;
1173 	bool value;
1174 	int r, i;
1175 	u32 tmp;
1176 
1177 	/* The sequence of these two function calls matters.*/
1178 	gmc_v9_0_init_golden_registers(adev);
1179 
1180 	if (adev->mode_info.num_crtc) {
1181 		if (adev->asic_type != CHIP_ARCTURUS) {
1182 			/* Lockout access through VGA aperture*/
1183 			WREG32_FIELD15(DCE, 0, VGA_HDP_CONTROL, VGA_MEMORY_DISABLE, 1);
1184 
1185 			/* disable VGA render */
1186 			WREG32_FIELD15(DCE, 0, VGA_RENDER_CONTROL, VGA_VSTATUS_CNTL, 0);
1187 		}
1188 	}
1189 
1190 	amdgpu_device_program_register_sequence(adev,
1191 						golden_settings_vega10_hdp,
1192 						ARRAY_SIZE(golden_settings_vega10_hdp));
1193 
1194 	switch (adev->asic_type) {
1195 	case CHIP_RAVEN:
1196 		/* TODO for renoir */
1197 		mmhub_v1_0_update_power_gating(adev, true);
1198 		break;
1199 	case CHIP_ARCTURUS:
1200 		WREG32_FIELD15(HDP, 0, HDP_MMHUB_CNTL, HDP_MMHUB_GCC, 1);
1201 		break;
1202 	default:
1203 		break;
1204 	}
1205 
1206 	WREG32_FIELD15(HDP, 0, HDP_MISC_CNTL, FLUSH_INVALIDATE_CACHE, 1);
1207 
1208 	tmp = RREG32_SOC15(HDP, 0, mmHDP_HOST_PATH_CNTL);
1209 	WREG32_SOC15(HDP, 0, mmHDP_HOST_PATH_CNTL, tmp);
1210 
1211 	WREG32_SOC15(HDP, 0, mmHDP_NONSURFACE_BASE, (adev->gmc.vram_start >> 8));
1212 	WREG32_SOC15(HDP, 0, mmHDP_NONSURFACE_BASE_HI, (adev->gmc.vram_start >> 40));
1213 
1214 	/* After HDP is initialized, flush HDP.*/
1215 	adev->nbio.funcs->hdp_flush(adev, NULL);
1216 
1217 	if (amdgpu_vm_fault_stop == AMDGPU_VM_FAULT_STOP_ALWAYS)
1218 		value = false;
1219 	else
1220 		value = true;
1221 
1222 	gfxhub_v1_0_set_fault_enable_default(adev, value);
1223 	if (adev->asic_type == CHIP_ARCTURUS)
1224 		mmhub_v9_4_set_fault_enable_default(adev, value);
1225 	else
1226 		mmhub_v1_0_set_fault_enable_default(adev, value);
1227 
1228 	for (i = 0; i < adev->num_vmhubs; ++i)
1229 		gmc_v9_0_flush_gpu_tlb(adev, 0, i, 0);
1230 
1231 	if (adev->umc.funcs && adev->umc.funcs->init_registers)
1232 		adev->umc.funcs->init_registers(adev);
1233 
1234 	r = gmc_v9_0_gart_enable(adev);
1235 
1236 	return r;
1237 }
1238 
1239 /**
1240  * gmc_v9_0_gart_disable - gart disable
1241  *
1242  * @adev: amdgpu_device pointer
1243  *
1244  * This disables all VM page table.
1245  */
1246 static void gmc_v9_0_gart_disable(struct amdgpu_device *adev)
1247 {
1248 	gfxhub_v1_0_gart_disable(adev);
1249 	if (adev->asic_type == CHIP_ARCTURUS)
1250 		mmhub_v9_4_gart_disable(adev);
1251 	else
1252 		mmhub_v1_0_gart_disable(adev);
1253 	amdgpu_gart_table_vram_unpin(adev);
1254 }
1255 
1256 static int gmc_v9_0_hw_fini(void *handle)
1257 {
1258 	struct amdgpu_device *adev = (struct amdgpu_device *)handle;
1259 
1260 	if (amdgpu_sriov_vf(adev)) {
1261 		/* full access mode, so don't touch any GMC register */
1262 		DRM_DEBUG("For SRIOV client, shouldn't do anything.\n");
1263 		return 0;
1264 	}
1265 
1266 	amdgpu_irq_put(adev, &adev->gmc.ecc_irq, 0);
1267 	amdgpu_irq_put(adev, &adev->gmc.vm_fault, 0);
1268 	gmc_v9_0_gart_disable(adev);
1269 
1270 	return 0;
1271 }
1272 
1273 static int gmc_v9_0_suspend(void *handle)
1274 {
1275 	struct amdgpu_device *adev = (struct amdgpu_device *)handle;
1276 
1277 	return gmc_v9_0_hw_fini(adev);
1278 }
1279 
1280 static int gmc_v9_0_resume(void *handle)
1281 {
1282 	int r;
1283 	struct amdgpu_device *adev = (struct amdgpu_device *)handle;
1284 
1285 	r = gmc_v9_0_hw_init(adev);
1286 	if (r)
1287 		return r;
1288 
1289 	amdgpu_vmid_reset_all(adev);
1290 
1291 	return 0;
1292 }
1293 
1294 static bool gmc_v9_0_is_idle(void *handle)
1295 {
1296 	/* MC is always ready in GMC v9.*/
1297 	return true;
1298 }
1299 
1300 static int gmc_v9_0_wait_for_idle(void *handle)
1301 {
1302 	/* There is no need to wait for MC idle in GMC v9.*/
1303 	return 0;
1304 }
1305 
1306 static int gmc_v9_0_soft_reset(void *handle)
1307 {
1308 	/* XXX for emulation.*/
1309 	return 0;
1310 }
1311 
1312 static int gmc_v9_0_set_clockgating_state(void *handle,
1313 					enum amd_clockgating_state state)
1314 {
1315 	struct amdgpu_device *adev = (struct amdgpu_device *)handle;
1316 
1317 	if (adev->asic_type == CHIP_ARCTURUS)
1318 		mmhub_v9_4_set_clockgating(adev, state);
1319 	else
1320 		mmhub_v1_0_set_clockgating(adev, state);
1321 
1322 	athub_v1_0_set_clockgating(adev, state);
1323 
1324 	return 0;
1325 }
1326 
1327 static void gmc_v9_0_get_clockgating_state(void *handle, u32 *flags)
1328 {
1329 	struct amdgpu_device *adev = (struct amdgpu_device *)handle;
1330 
1331 	if (adev->asic_type == CHIP_ARCTURUS)
1332 		mmhub_v9_4_get_clockgating(adev, flags);
1333 	else
1334 		mmhub_v1_0_get_clockgating(adev, flags);
1335 
1336 	athub_v1_0_get_clockgating(adev, flags);
1337 }
1338 
1339 static int gmc_v9_0_set_powergating_state(void *handle,
1340 					enum amd_powergating_state state)
1341 {
1342 	return 0;
1343 }
1344 
1345 const struct amd_ip_funcs gmc_v9_0_ip_funcs = {
1346 	.name = "gmc_v9_0",
1347 	.early_init = gmc_v9_0_early_init,
1348 	.late_init = gmc_v9_0_late_init,
1349 	.sw_init = gmc_v9_0_sw_init,
1350 	.sw_fini = gmc_v9_0_sw_fini,
1351 	.hw_init = gmc_v9_0_hw_init,
1352 	.hw_fini = gmc_v9_0_hw_fini,
1353 	.suspend = gmc_v9_0_suspend,
1354 	.resume = gmc_v9_0_resume,
1355 	.is_idle = gmc_v9_0_is_idle,
1356 	.wait_for_idle = gmc_v9_0_wait_for_idle,
1357 	.soft_reset = gmc_v9_0_soft_reset,
1358 	.set_clockgating_state = gmc_v9_0_set_clockgating_state,
1359 	.set_powergating_state = gmc_v9_0_set_powergating_state,
1360 	.get_clockgating_state = gmc_v9_0_get_clockgating_state,
1361 };
1362 
1363 const struct amdgpu_ip_block_version gmc_v9_0_ip_block =
1364 {
1365 	.type = AMD_IP_BLOCK_TYPE_GMC,
1366 	.major = 9,
1367 	.minor = 0,
1368 	.rev = 0,
1369 	.funcs = &gmc_v9_0_ip_funcs,
1370 };
1371