14a488a7aSOded Gabbay /*
24a488a7aSOded Gabbay  * Copyright 2014 Advanced Micro Devices, Inc.
34a488a7aSOded Gabbay  *
44a488a7aSOded Gabbay  * Permission is hereby granted, free of charge, to any person obtaining a
54a488a7aSOded Gabbay  * copy of this software and associated documentation files (the "Software"),
64a488a7aSOded Gabbay  * to deal in the Software without restriction, including without limitation
74a488a7aSOded Gabbay  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
84a488a7aSOded Gabbay  * and/or sell copies of the Software, and to permit persons to whom the
94a488a7aSOded Gabbay  * Software is furnished to do so, subject to the following conditions:
104a488a7aSOded Gabbay  *
114a488a7aSOded Gabbay  * The above copyright notice and this permission notice shall be included in
124a488a7aSOded Gabbay  * all copies or substantial portions of the Software.
134a488a7aSOded Gabbay  *
144a488a7aSOded Gabbay  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
154a488a7aSOded Gabbay  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
164a488a7aSOded Gabbay  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
174a488a7aSOded Gabbay  * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
184a488a7aSOded Gabbay  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
194a488a7aSOded Gabbay  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
204a488a7aSOded Gabbay  * OTHER DEALINGS IN THE SOFTWARE.
214a488a7aSOded Gabbay  */
224a488a7aSOded Gabbay 
234a488a7aSOded Gabbay #include <linux/bsearch.h>
244a488a7aSOded Gabbay #include <linux/pci.h>
254a488a7aSOded Gabbay #include <linux/slab.h>
264a488a7aSOded Gabbay #include "kfd_priv.h"
2764c7f8cfSBen Goz #include "kfd_device_queue_manager.h"
28507968ddSFelix Kuehling #include "kfd_pm4_headers_vi.h"
290db54b24SYong Zhao #include "cwsr_trap_handler.h"
3064d1c3a4SFelix Kuehling #include "kfd_iommu.h"
315b87245fSAmber Lin #include "amdgpu_amdkfd.h"
324a488a7aSOded Gabbay 
3319f6d2a6SOded Gabbay #define MQD_SIZE_ALIGNED 768
34e42051d2SShaoyun Liu 
35e42051d2SShaoyun Liu /*
36e42051d2SShaoyun Liu  * kfd_locked is used to lock the kfd driver during suspend or reset
37e42051d2SShaoyun Liu  * once locked, kfd driver will stop any further GPU execution.
38e42051d2SShaoyun Liu  * create process (open) will return -EAGAIN.
39e42051d2SShaoyun Liu  */
40e42051d2SShaoyun Liu static atomic_t kfd_locked = ATOMIC_INIT(0);
4119f6d2a6SOded Gabbay 
42a3e520a2SAlex Deucher #ifdef CONFIG_DRM_AMDGPU_CIK
43e392c887SYong Zhao extern const struct kfd2kgd_calls gfx_v7_kfd2kgd;
44a3e520a2SAlex Deucher #endif
45e392c887SYong Zhao extern const struct kfd2kgd_calls gfx_v8_kfd2kgd;
46e392c887SYong Zhao extern const struct kfd2kgd_calls gfx_v9_kfd2kgd;
47e392c887SYong Zhao extern const struct kfd2kgd_calls arcturus_kfd2kgd;
48e392c887SYong Zhao extern const struct kfd2kgd_calls gfx_v10_kfd2kgd;
493a2f0c81SYong Zhao extern const struct kfd2kgd_calls gfx_v10_3_kfd2kgd;
50e392c887SYong Zhao 
51e392c887SYong Zhao static const struct kfd2kgd_calls *kfd2kgd_funcs[] = {
52e392c887SYong Zhao #ifdef KFD_SUPPORT_IOMMU_V2
53a3e520a2SAlex Deucher #ifdef CONFIG_DRM_AMDGPU_CIK
54e392c887SYong Zhao 	[CHIP_KAVERI] = &gfx_v7_kfd2kgd,
55a3e520a2SAlex Deucher #endif
56e392c887SYong Zhao 	[CHIP_CARRIZO] = &gfx_v8_kfd2kgd,
57e392c887SYong Zhao 	[CHIP_RAVEN] = &gfx_v9_kfd2kgd,
58e392c887SYong Zhao #endif
59a3e520a2SAlex Deucher #ifdef CONFIG_DRM_AMDGPU_CIK
60e392c887SYong Zhao 	[CHIP_HAWAII] = &gfx_v7_kfd2kgd,
61a3e520a2SAlex Deucher #endif
62e392c887SYong Zhao 	[CHIP_TONGA] = &gfx_v8_kfd2kgd,
63e392c887SYong Zhao 	[CHIP_FIJI] = &gfx_v8_kfd2kgd,
64e392c887SYong Zhao 	[CHIP_POLARIS10] = &gfx_v8_kfd2kgd,
65e392c887SYong Zhao 	[CHIP_POLARIS11] = &gfx_v8_kfd2kgd,
66e392c887SYong Zhao 	[CHIP_POLARIS12] = &gfx_v8_kfd2kgd,
67e392c887SYong Zhao 	[CHIP_VEGAM] = &gfx_v8_kfd2kgd,
68e392c887SYong Zhao 	[CHIP_VEGA10] = &gfx_v9_kfd2kgd,
69e392c887SYong Zhao 	[CHIP_VEGA12] = &gfx_v9_kfd2kgd,
70e392c887SYong Zhao 	[CHIP_VEGA20] = &gfx_v9_kfd2kgd,
71e392c887SYong Zhao 	[CHIP_RENOIR] = &gfx_v9_kfd2kgd,
72e392c887SYong Zhao 	[CHIP_ARCTURUS] = &arcturus_kfd2kgd,
73e392c887SYong Zhao 	[CHIP_NAVI10] = &gfx_v10_kfd2kgd,
74e392c887SYong Zhao 	[CHIP_NAVI12] = &gfx_v10_kfd2kgd,
75e392c887SYong Zhao 	[CHIP_NAVI14] = &gfx_v10_kfd2kgd,
763a2f0c81SYong Zhao 	[CHIP_SIENNA_CICHLID] = &gfx_v10_3_kfd2kgd,
77e392c887SYong Zhao };
78e392c887SYong Zhao 
7964d1c3a4SFelix Kuehling #ifdef KFD_SUPPORT_IOMMU_V2
804a488a7aSOded Gabbay static const struct kfd_device_info kaveri_device_info = {
810da7558cSBen Goz 	.asic_family = CHIP_KAVERI,
82c181159aSYong Zhao 	.asic_name = "kaveri",
830da7558cSBen Goz 	.max_pasid_bits = 16,
84992839adSYair Shachar 	/* max num of queues for KV.TODO should be a dynamic value */
85992839adSYair Shachar 	.max_no_of_hqd	= 24,
86ada2b29cSFelix Kuehling 	.doorbell_size  = 4,
870da7558cSBen Goz 	.ih_ring_entry_size = 4 * sizeof(uint32_t),
88f3a39818SAndrew Lewycky 	.event_interrupt_class = &event_interrupt_class_cik,
89fbeb661bSYair Shachar 	.num_of_watch_points = 4,
90373d7080SFelix Kuehling 	.mqd_size_aligned = MQD_SIZE_ALIGNED,
91373d7080SFelix Kuehling 	.supports_cwsr = false,
9264d1c3a4SFelix Kuehling 	.needs_iommu_device = true,
933ee2d00cSFelix Kuehling 	.needs_pci_atomics = false,
9498bb9222SYong Zhao 	.num_sdma_engines = 2,
951b4670f6SOak Zeng 	.num_xgmi_sdma_engines = 0,
96d5094189SShaoyun Liu 	.num_sdma_queues_per_engine = 2,
970da7558cSBen Goz };
980da7558cSBen Goz 
990da7558cSBen Goz static const struct kfd_device_info carrizo_device_info = {
1000da7558cSBen Goz 	.asic_family = CHIP_CARRIZO,
101c181159aSYong Zhao 	.asic_name = "carrizo",
1024a488a7aSOded Gabbay 	.max_pasid_bits = 16,
103eaccd6e7SOded Gabbay 	/* max num of queues for CZ.TODO should be a dynamic value */
104eaccd6e7SOded Gabbay 	.max_no_of_hqd	= 24,
105ada2b29cSFelix Kuehling 	.doorbell_size  = 4,
106b3f5e6b4SAndrew Lewycky 	.ih_ring_entry_size = 4 * sizeof(uint32_t),
107eaccd6e7SOded Gabbay 	.event_interrupt_class = &event_interrupt_class_cik,
108f7c826adSAlexey Skidanov 	.num_of_watch_points = 4,
109373d7080SFelix Kuehling 	.mqd_size_aligned = MQD_SIZE_ALIGNED,
110373d7080SFelix Kuehling 	.supports_cwsr = true,
11164d1c3a4SFelix Kuehling 	.needs_iommu_device = true,
1123ee2d00cSFelix Kuehling 	.needs_pci_atomics = false,
11398bb9222SYong Zhao 	.num_sdma_engines = 2,
1141b4670f6SOak Zeng 	.num_xgmi_sdma_engines = 0,
115d5094189SShaoyun Liu 	.num_sdma_queues_per_engine = 2,
1164a488a7aSOded Gabbay };
1174d663df6SYong Zhao 
1184d663df6SYong Zhao static const struct kfd_device_info raven_device_info = {
1194d663df6SYong Zhao 	.asic_family = CHIP_RAVEN,
120c181159aSYong Zhao 	.asic_name = "raven",
1214d663df6SYong Zhao 	.max_pasid_bits = 16,
1224d663df6SYong Zhao 	.max_no_of_hqd  = 24,
1234d663df6SYong Zhao 	.doorbell_size  = 8,
1244d663df6SYong Zhao 	.ih_ring_entry_size = 8 * sizeof(uint32_t),
1254d663df6SYong Zhao 	.event_interrupt_class = &event_interrupt_class_v9,
1264d663df6SYong Zhao 	.num_of_watch_points = 4,
1274d663df6SYong Zhao 	.mqd_size_aligned = MQD_SIZE_ALIGNED,
1284d663df6SYong Zhao 	.supports_cwsr = true,
1294d663df6SYong Zhao 	.needs_iommu_device = true,
1304d663df6SYong Zhao 	.needs_pci_atomics = true,
1314d663df6SYong Zhao 	.num_sdma_engines = 1,
1321b4670f6SOak Zeng 	.num_xgmi_sdma_engines = 0,
133d5094189SShaoyun Liu 	.num_sdma_queues_per_engine = 2,
1344d663df6SYong Zhao };
13564d1c3a4SFelix Kuehling #endif
1364a488a7aSOded Gabbay 
137a3084e6cSFelix Kuehling static const struct kfd_device_info hawaii_device_info = {
138a3084e6cSFelix Kuehling 	.asic_family = CHIP_HAWAII,
139c181159aSYong Zhao 	.asic_name = "hawaii",
140a3084e6cSFelix Kuehling 	.max_pasid_bits = 16,
141a3084e6cSFelix Kuehling 	/* max num of queues for KV.TODO should be a dynamic value */
142a3084e6cSFelix Kuehling 	.max_no_of_hqd	= 24,
143ada2b29cSFelix Kuehling 	.doorbell_size  = 4,
144a3084e6cSFelix Kuehling 	.ih_ring_entry_size = 4 * sizeof(uint32_t),
145a3084e6cSFelix Kuehling 	.event_interrupt_class = &event_interrupt_class_cik,
146a3084e6cSFelix Kuehling 	.num_of_watch_points = 4,
147a3084e6cSFelix Kuehling 	.mqd_size_aligned = MQD_SIZE_ALIGNED,
148a3084e6cSFelix Kuehling 	.supports_cwsr = false,
14964d1c3a4SFelix Kuehling 	.needs_iommu_device = false,
150a3084e6cSFelix Kuehling 	.needs_pci_atomics = false,
15198bb9222SYong Zhao 	.num_sdma_engines = 2,
1521b4670f6SOak Zeng 	.num_xgmi_sdma_engines = 0,
153d5094189SShaoyun Liu 	.num_sdma_queues_per_engine = 2,
154a3084e6cSFelix Kuehling };
155a3084e6cSFelix Kuehling 
156a3084e6cSFelix Kuehling static const struct kfd_device_info tonga_device_info = {
157a3084e6cSFelix Kuehling 	.asic_family = CHIP_TONGA,
158c181159aSYong Zhao 	.asic_name = "tonga",
159a3084e6cSFelix Kuehling 	.max_pasid_bits = 16,
160a3084e6cSFelix Kuehling 	.max_no_of_hqd  = 24,
161ada2b29cSFelix Kuehling 	.doorbell_size  = 4,
162a3084e6cSFelix Kuehling 	.ih_ring_entry_size = 4 * sizeof(uint32_t),
163a3084e6cSFelix Kuehling 	.event_interrupt_class = &event_interrupt_class_cik,
164a3084e6cSFelix Kuehling 	.num_of_watch_points = 4,
165a3084e6cSFelix Kuehling 	.mqd_size_aligned = MQD_SIZE_ALIGNED,
166a3084e6cSFelix Kuehling 	.supports_cwsr = false,
16764d1c3a4SFelix Kuehling 	.needs_iommu_device = false,
168a3084e6cSFelix Kuehling 	.needs_pci_atomics = true,
16998bb9222SYong Zhao 	.num_sdma_engines = 2,
1701b4670f6SOak Zeng 	.num_xgmi_sdma_engines = 0,
171d5094189SShaoyun Liu 	.num_sdma_queues_per_engine = 2,
172a3084e6cSFelix Kuehling };
173a3084e6cSFelix Kuehling 
174a3084e6cSFelix Kuehling static const struct kfd_device_info fiji_device_info = {
175a3084e6cSFelix Kuehling 	.asic_family = CHIP_FIJI,
176c181159aSYong Zhao 	.asic_name = "fiji",
177a3084e6cSFelix Kuehling 	.max_pasid_bits = 16,
178a3084e6cSFelix Kuehling 	.max_no_of_hqd  = 24,
179ada2b29cSFelix Kuehling 	.doorbell_size  = 4,
180a3084e6cSFelix Kuehling 	.ih_ring_entry_size = 4 * sizeof(uint32_t),
181a3084e6cSFelix Kuehling 	.event_interrupt_class = &event_interrupt_class_cik,
182a3084e6cSFelix Kuehling 	.num_of_watch_points = 4,
183a3084e6cSFelix Kuehling 	.mqd_size_aligned = MQD_SIZE_ALIGNED,
184a3084e6cSFelix Kuehling 	.supports_cwsr = true,
18564d1c3a4SFelix Kuehling 	.needs_iommu_device = false,
186a3084e6cSFelix Kuehling 	.needs_pci_atomics = true,
18798bb9222SYong Zhao 	.num_sdma_engines = 2,
1881b4670f6SOak Zeng 	.num_xgmi_sdma_engines = 0,
189d5094189SShaoyun Liu 	.num_sdma_queues_per_engine = 2,
190a3084e6cSFelix Kuehling };
191a3084e6cSFelix Kuehling 
192a3084e6cSFelix Kuehling static const struct kfd_device_info fiji_vf_device_info = {
193a3084e6cSFelix Kuehling 	.asic_family = CHIP_FIJI,
194c181159aSYong Zhao 	.asic_name = "fiji",
195a3084e6cSFelix Kuehling 	.max_pasid_bits = 16,
196a3084e6cSFelix Kuehling 	.max_no_of_hqd  = 24,
197ada2b29cSFelix Kuehling 	.doorbell_size  = 4,
198a3084e6cSFelix Kuehling 	.ih_ring_entry_size = 4 * sizeof(uint32_t),
199a3084e6cSFelix Kuehling 	.event_interrupt_class = &event_interrupt_class_cik,
200a3084e6cSFelix Kuehling 	.num_of_watch_points = 4,
201a3084e6cSFelix Kuehling 	.mqd_size_aligned = MQD_SIZE_ALIGNED,
202a3084e6cSFelix Kuehling 	.supports_cwsr = true,
20364d1c3a4SFelix Kuehling 	.needs_iommu_device = false,
204a3084e6cSFelix Kuehling 	.needs_pci_atomics = false,
20598bb9222SYong Zhao 	.num_sdma_engines = 2,
2061b4670f6SOak Zeng 	.num_xgmi_sdma_engines = 0,
207d5094189SShaoyun Liu 	.num_sdma_queues_per_engine = 2,
208a3084e6cSFelix Kuehling };
209a3084e6cSFelix Kuehling 
210a3084e6cSFelix Kuehling 
211a3084e6cSFelix Kuehling static const struct kfd_device_info polaris10_device_info = {
212a3084e6cSFelix Kuehling 	.asic_family = CHIP_POLARIS10,
213c181159aSYong Zhao 	.asic_name = "polaris10",
214a3084e6cSFelix Kuehling 	.max_pasid_bits = 16,
215a3084e6cSFelix Kuehling 	.max_no_of_hqd  = 24,
216ada2b29cSFelix Kuehling 	.doorbell_size  = 4,
217a3084e6cSFelix Kuehling 	.ih_ring_entry_size = 4 * sizeof(uint32_t),
218a3084e6cSFelix Kuehling 	.event_interrupt_class = &event_interrupt_class_cik,
219a3084e6cSFelix Kuehling 	.num_of_watch_points = 4,
220a3084e6cSFelix Kuehling 	.mqd_size_aligned = MQD_SIZE_ALIGNED,
221a3084e6cSFelix Kuehling 	.supports_cwsr = true,
22264d1c3a4SFelix Kuehling 	.needs_iommu_device = false,
223a3084e6cSFelix Kuehling 	.needs_pci_atomics = true,
22498bb9222SYong Zhao 	.num_sdma_engines = 2,
2251b4670f6SOak Zeng 	.num_xgmi_sdma_engines = 0,
226d5094189SShaoyun Liu 	.num_sdma_queues_per_engine = 2,
227a3084e6cSFelix Kuehling };
228a3084e6cSFelix Kuehling 
229a3084e6cSFelix Kuehling static const struct kfd_device_info polaris10_vf_device_info = {
230a3084e6cSFelix Kuehling 	.asic_family = CHIP_POLARIS10,
231c181159aSYong Zhao 	.asic_name = "polaris10",
232a3084e6cSFelix Kuehling 	.max_pasid_bits = 16,
233a3084e6cSFelix Kuehling 	.max_no_of_hqd  = 24,
234ada2b29cSFelix Kuehling 	.doorbell_size  = 4,
235a3084e6cSFelix Kuehling 	.ih_ring_entry_size = 4 * sizeof(uint32_t),
236a3084e6cSFelix Kuehling 	.event_interrupt_class = &event_interrupt_class_cik,
237a3084e6cSFelix Kuehling 	.num_of_watch_points = 4,
238a3084e6cSFelix Kuehling 	.mqd_size_aligned = MQD_SIZE_ALIGNED,
239a3084e6cSFelix Kuehling 	.supports_cwsr = true,
24064d1c3a4SFelix Kuehling 	.needs_iommu_device = false,
241a3084e6cSFelix Kuehling 	.needs_pci_atomics = false,
24298bb9222SYong Zhao 	.num_sdma_engines = 2,
2431b4670f6SOak Zeng 	.num_xgmi_sdma_engines = 0,
244d5094189SShaoyun Liu 	.num_sdma_queues_per_engine = 2,
245a3084e6cSFelix Kuehling };
246a3084e6cSFelix Kuehling 
247a3084e6cSFelix Kuehling static const struct kfd_device_info polaris11_device_info = {
248a3084e6cSFelix Kuehling 	.asic_family = CHIP_POLARIS11,
249c181159aSYong Zhao 	.asic_name = "polaris11",
250a3084e6cSFelix Kuehling 	.max_pasid_bits = 16,
251a3084e6cSFelix Kuehling 	.max_no_of_hqd  = 24,
252ada2b29cSFelix Kuehling 	.doorbell_size  = 4,
253a3084e6cSFelix Kuehling 	.ih_ring_entry_size = 4 * sizeof(uint32_t),
254a3084e6cSFelix Kuehling 	.event_interrupt_class = &event_interrupt_class_cik,
255a3084e6cSFelix Kuehling 	.num_of_watch_points = 4,
256a3084e6cSFelix Kuehling 	.mqd_size_aligned = MQD_SIZE_ALIGNED,
257a3084e6cSFelix Kuehling 	.supports_cwsr = true,
25864d1c3a4SFelix Kuehling 	.needs_iommu_device = false,
259a3084e6cSFelix Kuehling 	.needs_pci_atomics = true,
26098bb9222SYong Zhao 	.num_sdma_engines = 2,
2611b4670f6SOak Zeng 	.num_xgmi_sdma_engines = 0,
262d5094189SShaoyun Liu 	.num_sdma_queues_per_engine = 2,
263a3084e6cSFelix Kuehling };
264a3084e6cSFelix Kuehling 
265846a44d7SGang Ba static const struct kfd_device_info polaris12_device_info = {
266846a44d7SGang Ba 	.asic_family = CHIP_POLARIS12,
267c181159aSYong Zhao 	.asic_name = "polaris12",
268846a44d7SGang Ba 	.max_pasid_bits = 16,
269846a44d7SGang Ba 	.max_no_of_hqd  = 24,
270846a44d7SGang Ba 	.doorbell_size  = 4,
271846a44d7SGang Ba 	.ih_ring_entry_size = 4 * sizeof(uint32_t),
272846a44d7SGang Ba 	.event_interrupt_class = &event_interrupt_class_cik,
273846a44d7SGang Ba 	.num_of_watch_points = 4,
274846a44d7SGang Ba 	.mqd_size_aligned = MQD_SIZE_ALIGNED,
275846a44d7SGang Ba 	.supports_cwsr = true,
276846a44d7SGang Ba 	.needs_iommu_device = false,
277846a44d7SGang Ba 	.needs_pci_atomics = true,
278846a44d7SGang Ba 	.num_sdma_engines = 2,
2791b4670f6SOak Zeng 	.num_xgmi_sdma_engines = 0,
280846a44d7SGang Ba 	.num_sdma_queues_per_engine = 2,
281846a44d7SGang Ba };
282846a44d7SGang Ba 
283ed81cd6eSKent Russell static const struct kfd_device_info vegam_device_info = {
284ed81cd6eSKent Russell 	.asic_family = CHIP_VEGAM,
285c181159aSYong Zhao 	.asic_name = "vegam",
286ed81cd6eSKent Russell 	.max_pasid_bits = 16,
287ed81cd6eSKent Russell 	.max_no_of_hqd  = 24,
288ed81cd6eSKent Russell 	.doorbell_size  = 4,
289ed81cd6eSKent Russell 	.ih_ring_entry_size = 4 * sizeof(uint32_t),
290ed81cd6eSKent Russell 	.event_interrupt_class = &event_interrupt_class_cik,
291ed81cd6eSKent Russell 	.num_of_watch_points = 4,
292ed81cd6eSKent Russell 	.mqd_size_aligned = MQD_SIZE_ALIGNED,
293ed81cd6eSKent Russell 	.supports_cwsr = true,
294ed81cd6eSKent Russell 	.needs_iommu_device = false,
295ed81cd6eSKent Russell 	.needs_pci_atomics = true,
296ed81cd6eSKent Russell 	.num_sdma_engines = 2,
297ed81cd6eSKent Russell 	.num_xgmi_sdma_engines = 0,
298a3084e6cSFelix Kuehling 	.num_sdma_queues_per_engine = 2,
299a3084e6cSFelix Kuehling };
300a3084e6cSFelix Kuehling 
301389056e5SFelix Kuehling static const struct kfd_device_info vega10_device_info = {
302389056e5SFelix Kuehling 	.asic_family = CHIP_VEGA10,
303c181159aSYong Zhao 	.asic_name = "vega10",
304389056e5SFelix Kuehling 	.max_pasid_bits = 16,
305389056e5SFelix Kuehling 	.max_no_of_hqd  = 24,
306389056e5SFelix Kuehling 	.doorbell_size  = 8,
307389056e5SFelix Kuehling 	.ih_ring_entry_size = 8 * sizeof(uint32_t),
308389056e5SFelix Kuehling 	.event_interrupt_class = &event_interrupt_class_v9,
309389056e5SFelix Kuehling 	.num_of_watch_points = 4,
310389056e5SFelix Kuehling 	.mqd_size_aligned = MQD_SIZE_ALIGNED,
311389056e5SFelix Kuehling 	.supports_cwsr = true,
312389056e5SFelix Kuehling 	.needs_iommu_device = false,
313389056e5SFelix Kuehling 	.needs_pci_atomics = false,
31498bb9222SYong Zhao 	.num_sdma_engines = 2,
3151b4670f6SOak Zeng 	.num_xgmi_sdma_engines = 0,
316d5094189SShaoyun Liu 	.num_sdma_queues_per_engine = 2,
317389056e5SFelix Kuehling };
318389056e5SFelix Kuehling 
319389056e5SFelix Kuehling static const struct kfd_device_info vega10_vf_device_info = {
320389056e5SFelix Kuehling 	.asic_family = CHIP_VEGA10,
321c181159aSYong Zhao 	.asic_name = "vega10",
322389056e5SFelix Kuehling 	.max_pasid_bits = 16,
323389056e5SFelix Kuehling 	.max_no_of_hqd  = 24,
324389056e5SFelix Kuehling 	.doorbell_size  = 8,
325389056e5SFelix Kuehling 	.ih_ring_entry_size = 8 * sizeof(uint32_t),
326389056e5SFelix Kuehling 	.event_interrupt_class = &event_interrupt_class_v9,
327389056e5SFelix Kuehling 	.num_of_watch_points = 4,
328389056e5SFelix Kuehling 	.mqd_size_aligned = MQD_SIZE_ALIGNED,
329389056e5SFelix Kuehling 	.supports_cwsr = true,
330389056e5SFelix Kuehling 	.needs_iommu_device = false,
331389056e5SFelix Kuehling 	.needs_pci_atomics = false,
33298bb9222SYong Zhao 	.num_sdma_engines = 2,
3331b4670f6SOak Zeng 	.num_xgmi_sdma_engines = 0,
334d5094189SShaoyun Liu 	.num_sdma_queues_per_engine = 2,
335389056e5SFelix Kuehling };
336389056e5SFelix Kuehling 
337846a44d7SGang Ba static const struct kfd_device_info vega12_device_info = {
338846a44d7SGang Ba 	.asic_family = CHIP_VEGA12,
339c181159aSYong Zhao 	.asic_name = "vega12",
340846a44d7SGang Ba 	.max_pasid_bits = 16,
341846a44d7SGang Ba 	.max_no_of_hqd  = 24,
342846a44d7SGang Ba 	.doorbell_size  = 8,
343846a44d7SGang Ba 	.ih_ring_entry_size = 8 * sizeof(uint32_t),
344846a44d7SGang Ba 	.event_interrupt_class = &event_interrupt_class_v9,
345846a44d7SGang Ba 	.num_of_watch_points = 4,
346846a44d7SGang Ba 	.mqd_size_aligned = MQD_SIZE_ALIGNED,
347846a44d7SGang Ba 	.supports_cwsr = true,
348846a44d7SGang Ba 	.needs_iommu_device = false,
349846a44d7SGang Ba 	.needs_pci_atomics = false,
350846a44d7SGang Ba 	.num_sdma_engines = 2,
3511b4670f6SOak Zeng 	.num_xgmi_sdma_engines = 0,
352846a44d7SGang Ba 	.num_sdma_queues_per_engine = 2,
353846a44d7SGang Ba };
354846a44d7SGang Ba 
35522a3a294SShaoyun Liu static const struct kfd_device_info vega20_device_info = {
35622a3a294SShaoyun Liu 	.asic_family = CHIP_VEGA20,
357c181159aSYong Zhao 	.asic_name = "vega20",
35822a3a294SShaoyun Liu 	.max_pasid_bits = 16,
35922a3a294SShaoyun Liu 	.max_no_of_hqd	= 24,
36022a3a294SShaoyun Liu 	.doorbell_size	= 8,
36122a3a294SShaoyun Liu 	.ih_ring_entry_size = 8 * sizeof(uint32_t),
36222a3a294SShaoyun Liu 	.event_interrupt_class = &event_interrupt_class_v9,
36322a3a294SShaoyun Liu 	.num_of_watch_points = 4,
36422a3a294SShaoyun Liu 	.mqd_size_aligned = MQD_SIZE_ALIGNED,
36522a3a294SShaoyun Liu 	.supports_cwsr = true,
36622a3a294SShaoyun Liu 	.needs_iommu_device = false,
367006a0b3dSShaoyun Liu 	.needs_pci_atomics = false,
36822a3a294SShaoyun Liu 	.num_sdma_engines = 2,
3691b4670f6SOak Zeng 	.num_xgmi_sdma_engines = 0,
37022a3a294SShaoyun Liu 	.num_sdma_queues_per_engine = 8,
37122a3a294SShaoyun Liu };
37222a3a294SShaoyun Liu 
37349adcf8aSYong Zhao static const struct kfd_device_info arcturus_device_info = {
37449adcf8aSYong Zhao 	.asic_family = CHIP_ARCTURUS,
375c181159aSYong Zhao 	.asic_name = "arcturus",
37649adcf8aSYong Zhao 	.max_pasid_bits = 16,
37749adcf8aSYong Zhao 	.max_no_of_hqd	= 24,
37849adcf8aSYong Zhao 	.doorbell_size	= 8,
37949adcf8aSYong Zhao 	.ih_ring_entry_size = 8 * sizeof(uint32_t),
38049adcf8aSYong Zhao 	.event_interrupt_class = &event_interrupt_class_v9,
38149adcf8aSYong Zhao 	.num_of_watch_points = 4,
38249adcf8aSYong Zhao 	.mqd_size_aligned = MQD_SIZE_ALIGNED,
38349adcf8aSYong Zhao 	.supports_cwsr = true,
38449adcf8aSYong Zhao 	.needs_iommu_device = false,
38549adcf8aSYong Zhao 	.needs_pci_atomics = false,
386b6689cf7SOak Zeng 	.num_sdma_engines = 2,
387b6689cf7SOak Zeng 	.num_xgmi_sdma_engines = 6,
38849adcf8aSYong Zhao 	.num_sdma_queues_per_engine = 8,
38949adcf8aSYong Zhao };
39049adcf8aSYong Zhao 
3912b9c2211SHuang Rui static const struct kfd_device_info renoir_device_info = {
3922b9c2211SHuang Rui 	.asic_family = CHIP_RENOIR,
393acb9acbeSHuang Rui 	.asic_name = "renoir",
3942b9c2211SHuang Rui 	.max_pasid_bits = 16,
3952b9c2211SHuang Rui 	.max_no_of_hqd  = 24,
3962b9c2211SHuang Rui 	.doorbell_size  = 8,
3972b9c2211SHuang Rui 	.ih_ring_entry_size = 8 * sizeof(uint32_t),
3982b9c2211SHuang Rui 	.event_interrupt_class = &event_interrupt_class_v9,
3992b9c2211SHuang Rui 	.num_of_watch_points = 4,
4002b9c2211SHuang Rui 	.mqd_size_aligned = MQD_SIZE_ALIGNED,
4012b9c2211SHuang Rui 	.supports_cwsr = true,
4022b9c2211SHuang Rui 	.needs_iommu_device = false,
4032b9c2211SHuang Rui 	.needs_pci_atomics = false,
4042b9c2211SHuang Rui 	.num_sdma_engines = 1,
4052b9c2211SHuang Rui 	.num_xgmi_sdma_engines = 0,
4062b9c2211SHuang Rui 	.num_sdma_queues_per_engine = 2,
4072b9c2211SHuang Rui };
4082b9c2211SHuang Rui 
40914328aa5SPhilip Cox static const struct kfd_device_info navi10_device_info = {
41014328aa5SPhilip Cox 	.asic_family = CHIP_NAVI10,
411c181159aSYong Zhao 	.asic_name = "navi10",
41214328aa5SPhilip Cox 	.max_pasid_bits = 16,
41314328aa5SPhilip Cox 	.max_no_of_hqd  = 24,
41414328aa5SPhilip Cox 	.doorbell_size  = 8,
41514328aa5SPhilip Cox 	.ih_ring_entry_size = 8 * sizeof(uint32_t),
41614328aa5SPhilip Cox 	.event_interrupt_class = &event_interrupt_class_v9,
41714328aa5SPhilip Cox 	.num_of_watch_points = 4,
41814328aa5SPhilip Cox 	.mqd_size_aligned = MQD_SIZE_ALIGNED,
41914328aa5SPhilip Cox 	.needs_iommu_device = false,
42014328aa5SPhilip Cox 	.supports_cwsr = true,
42114328aa5SPhilip Cox 	.needs_pci_atomics = false,
42214328aa5SPhilip Cox 	.num_sdma_engines = 2,
42314328aa5SPhilip Cox 	.num_xgmi_sdma_engines = 0,
42414328aa5SPhilip Cox 	.num_sdma_queues_per_engine = 8,
42514328aa5SPhilip Cox };
42614328aa5SPhilip Cox 
427b77fb9d8Sshaoyunl static const struct kfd_device_info navi12_device_info = {
4280e94b564Sshaoyunl 	.asic_family = CHIP_NAVI12,
429b77fb9d8Sshaoyunl 	.asic_name = "navi12",
430b77fb9d8Sshaoyunl 	.max_pasid_bits = 16,
431b77fb9d8Sshaoyunl 	.max_no_of_hqd  = 24,
432b77fb9d8Sshaoyunl 	.doorbell_size  = 8,
433b77fb9d8Sshaoyunl 	.ih_ring_entry_size = 8 * sizeof(uint32_t),
434b77fb9d8Sshaoyunl 	.event_interrupt_class = &event_interrupt_class_v9,
435b77fb9d8Sshaoyunl 	.num_of_watch_points = 4,
436b77fb9d8Sshaoyunl 	.mqd_size_aligned = MQD_SIZE_ALIGNED,
437b77fb9d8Sshaoyunl 	.needs_iommu_device = false,
438b77fb9d8Sshaoyunl 	.supports_cwsr = true,
439b77fb9d8Sshaoyunl 	.needs_pci_atomics = false,
440b77fb9d8Sshaoyunl 	.num_sdma_engines = 2,
441b77fb9d8Sshaoyunl 	.num_xgmi_sdma_engines = 0,
442b77fb9d8Sshaoyunl 	.num_sdma_queues_per_engine = 8,
443b77fb9d8Sshaoyunl };
444b77fb9d8Sshaoyunl 
4458099ae40SYong Zhao static const struct kfd_device_info navi14_device_info = {
4468099ae40SYong Zhao 	.asic_family = CHIP_NAVI14,
4478099ae40SYong Zhao 	.asic_name = "navi14",
4488099ae40SYong Zhao 	.max_pasid_bits = 16,
4498099ae40SYong Zhao 	.max_no_of_hqd  = 24,
4508099ae40SYong Zhao 	.doorbell_size  = 8,
4518099ae40SYong Zhao 	.ih_ring_entry_size = 8 * sizeof(uint32_t),
4528099ae40SYong Zhao 	.event_interrupt_class = &event_interrupt_class_v9,
4538099ae40SYong Zhao 	.num_of_watch_points = 4,
4548099ae40SYong Zhao 	.mqd_size_aligned = MQD_SIZE_ALIGNED,
4558099ae40SYong Zhao 	.needs_iommu_device = false,
4568099ae40SYong Zhao 	.supports_cwsr = true,
4578099ae40SYong Zhao 	.needs_pci_atomics = false,
4588099ae40SYong Zhao 	.num_sdma_engines = 2,
4598099ae40SYong Zhao 	.num_xgmi_sdma_engines = 0,
4608099ae40SYong Zhao 	.num_sdma_queues_per_engine = 8,
4618099ae40SYong Zhao };
4628099ae40SYong Zhao 
4633a2f0c81SYong Zhao static const struct kfd_device_info sienna_cichlid_device_info = {
4643a2f0c81SYong Zhao 	.asic_family = CHIP_SIENNA_CICHLID,
4653a2f0c81SYong Zhao 	.asic_name = "sienna_cichlid",
4663a2f0c81SYong Zhao 	.max_pasid_bits = 16,
4673a2f0c81SYong Zhao 	.max_no_of_hqd  = 24,
4683a2f0c81SYong Zhao 	.doorbell_size  = 8,
4693a2f0c81SYong Zhao 	.ih_ring_entry_size = 8 * sizeof(uint32_t),
4703a2f0c81SYong Zhao 	.event_interrupt_class = &event_interrupt_class_v9,
4713a2f0c81SYong Zhao 	.num_of_watch_points = 4,
4723a2f0c81SYong Zhao 	.mqd_size_aligned = MQD_SIZE_ALIGNED,
4733a2f0c81SYong Zhao 	.needs_iommu_device = false,
4743a2f0c81SYong Zhao 	.supports_cwsr = true,
4753a2f0c81SYong Zhao 	.needs_pci_atomics = false,
4763a2f0c81SYong Zhao 	.num_sdma_engines = 4,
4773a2f0c81SYong Zhao 	.num_xgmi_sdma_engines = 0,
4783a2f0c81SYong Zhao 	.num_sdma_queues_per_engine = 8,
4793a2f0c81SYong Zhao };
4803a2f0c81SYong Zhao 
481*de89b2e4SChengming Gui static const struct kfd_device_info navy_flounder_device_info = {
482*de89b2e4SChengming Gui 	.asic_family = CHIP_NAVY_FLOUNDER,
483*de89b2e4SChengming Gui 	.asic_name = "navy_flounder",
484*de89b2e4SChengming Gui 	.max_pasid_bits = 16,
485*de89b2e4SChengming Gui 	.max_no_of_hqd  = 24,
486*de89b2e4SChengming Gui 	.doorbell_size  = 8,
487*de89b2e4SChengming Gui 	.ih_ring_entry_size = 8 * sizeof(uint32_t),
488*de89b2e4SChengming Gui 	.event_interrupt_class = &event_interrupt_class_v9,
489*de89b2e4SChengming Gui 	.num_of_watch_points = 4,
490*de89b2e4SChengming Gui 	.mqd_size_aligned = MQD_SIZE_ALIGNED,
491*de89b2e4SChengming Gui 	.needs_iommu_device = false,
492*de89b2e4SChengming Gui 	.supports_cwsr = true,
493*de89b2e4SChengming Gui 	.needs_pci_atomics = false,
494*de89b2e4SChengming Gui 	.num_sdma_engines = 2,
495*de89b2e4SChengming Gui 	.num_xgmi_sdma_engines = 0,
496*de89b2e4SChengming Gui 	.num_sdma_queues_per_engine = 8,
497*de89b2e4SChengming Gui };
498*de89b2e4SChengming Gui 
499050091abSYong Zhao /* For each entry, [0] is regular and [1] is virtualisation device. */
500050091abSYong Zhao static const struct kfd_device_info *kfd_supported_devices[][2] = {
50195a5bd1bSYong Zhao #ifdef KFD_SUPPORT_IOMMU_V2
502050091abSYong Zhao 	[CHIP_KAVERI] = {&kaveri_device_info, NULL},
50395a5bd1bSYong Zhao 	[CHIP_CARRIZO] = {&carrizo_device_info, NULL},
50495a5bd1bSYong Zhao 	[CHIP_RAVEN] = {&raven_device_info, NULL},
50595a5bd1bSYong Zhao #endif
506050091abSYong Zhao 	[CHIP_HAWAII] = {&hawaii_device_info, NULL},
507050091abSYong Zhao 	[CHIP_TONGA] = {&tonga_device_info, NULL},
508050091abSYong Zhao 	[CHIP_FIJI] = {&fiji_device_info, &fiji_vf_device_info},
509050091abSYong Zhao 	[CHIP_POLARIS10] = {&polaris10_device_info, &polaris10_vf_device_info},
510050091abSYong Zhao 	[CHIP_POLARIS11] = {&polaris11_device_info, NULL},
511050091abSYong Zhao 	[CHIP_POLARIS12] = {&polaris12_device_info, NULL},
512050091abSYong Zhao 	[CHIP_VEGAM] = {&vegam_device_info, NULL},
513050091abSYong Zhao 	[CHIP_VEGA10] = {&vega10_device_info, &vega10_vf_device_info},
514050091abSYong Zhao 	[CHIP_VEGA12] = {&vega12_device_info, NULL},
515050091abSYong Zhao 	[CHIP_VEGA20] = {&vega20_device_info, NULL},
5162b9c2211SHuang Rui 	[CHIP_RENOIR] = {&renoir_device_info, NULL},
517050091abSYong Zhao 	[CHIP_ARCTURUS] = {&arcturus_device_info, &arcturus_device_info},
518050091abSYong Zhao 	[CHIP_NAVI10] = {&navi10_device_info, NULL},
519b77fb9d8Sshaoyunl 	[CHIP_NAVI12] = {&navi12_device_info, &navi12_device_info},
5208099ae40SYong Zhao 	[CHIP_NAVI14] = {&navi14_device_info, NULL},
521adab4dadSshaoyunl 	[CHIP_SIENNA_CICHLID] = {&sienna_cichlid_device_info, &sienna_cichlid_device_info},
522*de89b2e4SChengming Gui 	[CHIP_NAVY_FLOUNDER] = {&navy_flounder_device_info, &navy_flounder_device_info},
5234a488a7aSOded Gabbay };
5244a488a7aSOded Gabbay 
5256e81090bSOded Gabbay static int kfd_gtt_sa_init(struct kfd_dev *kfd, unsigned int buf_size,
5266e81090bSOded Gabbay 				unsigned int chunk_size);
5276e81090bSOded Gabbay static void kfd_gtt_sa_fini(struct kfd_dev *kfd);
5286e81090bSOded Gabbay 
529b8935a7cSYong Zhao static int kfd_resume(struct kfd_dev *kfd);
530b8935a7cSYong Zhao 
531cea405b1SXihan Zhang struct kfd_dev *kgd2kfd_probe(struct kgd_dev *kgd,
532e392c887SYong Zhao 	struct pci_dev *pdev, unsigned int asic_type, bool vf)
5334a488a7aSOded Gabbay {
5344a488a7aSOded Gabbay 	struct kfd_dev *kfd;
535050091abSYong Zhao 	const struct kfd_device_info *device_info;
536e392c887SYong Zhao 	const struct kfd2kgd_calls *f2g;
537050091abSYong Zhao 
538e392c887SYong Zhao 	if (asic_type >= sizeof(kfd_supported_devices) / (sizeof(void *) * 2)
539e392c887SYong Zhao 		|| asic_type >= sizeof(kfd2kgd_funcs) / sizeof(void *)) {
540050091abSYong Zhao 		dev_err(kfd_device, "asic_type %d out of range\n", asic_type);
541050091abSYong Zhao 		return NULL; /* asic_type out of range */
542050091abSYong Zhao 	}
543050091abSYong Zhao 
544050091abSYong Zhao 	device_info = kfd_supported_devices[asic_type][vf];
545e392c887SYong Zhao 	f2g = kfd2kgd_funcs[asic_type];
5464a488a7aSOded Gabbay 
547aa5e899dSDan Carpenter 	if (!device_info || !f2g) {
548050091abSYong Zhao 		dev_err(kfd_device, "%s %s not supported in kfd\n",
549050091abSYong Zhao 			amdgpu_asic_name[asic_type], vf ? "VF" : "");
5504a488a7aSOded Gabbay 		return NULL;
5514ebc7182SYong Zhao 	}
5524a488a7aSOded Gabbay 
553d35f00d8SEric Huang 	kfd = kzalloc(sizeof(*kfd), GFP_KERNEL);
554d35f00d8SEric Huang 	if (!kfd)
555d35f00d8SEric Huang 		return NULL;
556d35f00d8SEric Huang 
5576106dce9Swelu 	/* Allow BIF to recode atomics to PCIe 3.0 AtomicOps.
5586106dce9Swelu 	 * 32 and 64-bit requests are possible and must be
5596106dce9Swelu 	 * supported.
5603ee2d00cSFelix Kuehling 	 */
561aabf3a95SJack Xiao 	kfd->pci_atomic_requested = amdgpu_amdkfd_have_atomics_support(kgd);
562aabf3a95SJack Xiao 	if (device_info->needs_pci_atomics &&
563aabf3a95SJack Xiao 	    !kfd->pci_atomic_requested) {
5643ee2d00cSFelix Kuehling 		dev_info(kfd_device,
5656106dce9Swelu 			 "skipped device %x:%x, PCI rejects atomics\n",
5663ee2d00cSFelix Kuehling 			 pdev->vendor, pdev->device);
567d35f00d8SEric Huang 		kfree(kfd);
5683ee2d00cSFelix Kuehling 		return NULL;
569aabf3a95SJack Xiao 	}
5704a488a7aSOded Gabbay 
5714a488a7aSOded Gabbay 	kfd->kgd = kgd;
5724a488a7aSOded Gabbay 	kfd->device_info = device_info;
5734a488a7aSOded Gabbay 	kfd->pdev = pdev;
57419f6d2a6SOded Gabbay 	kfd->init_complete = false;
575cea405b1SXihan Zhang 	kfd->kfd2kgd = f2g;
57643d8107fSHarish Kasiviswanathan 	atomic_set(&kfd->compute_profile, 0);
577cea405b1SXihan Zhang 
578cea405b1SXihan Zhang 	mutex_init(&kfd->doorbell_mutex);
579cea405b1SXihan Zhang 	memset(&kfd->doorbell_available_index, 0,
580cea405b1SXihan Zhang 		sizeof(kfd->doorbell_available_index));
5814a488a7aSOded Gabbay 
5829b54d201SEric Huang 	atomic_set(&kfd->sram_ecc_flag, 0);
5839b54d201SEric Huang 
5844a488a7aSOded Gabbay 	return kfd;
5854a488a7aSOded Gabbay }
5864a488a7aSOded Gabbay 
587373d7080SFelix Kuehling static void kfd_cwsr_init(struct kfd_dev *kfd)
588373d7080SFelix Kuehling {
589373d7080SFelix Kuehling 	if (cwsr_enable && kfd->device_info->supports_cwsr) {
5903e76c239SFelix Kuehling 		if (kfd->device_info->asic_family < CHIP_VEGA10) {
591373d7080SFelix Kuehling 			BUILD_BUG_ON(sizeof(cwsr_trap_gfx8_hex) > PAGE_SIZE);
592373d7080SFelix Kuehling 			kfd->cwsr_isa = cwsr_trap_gfx8_hex;
593373d7080SFelix Kuehling 			kfd->cwsr_isa_size = sizeof(cwsr_trap_gfx8_hex);
5943baa24f0SOak Zeng 		} else if (kfd->device_info->asic_family == CHIP_ARCTURUS) {
5953baa24f0SOak Zeng 			BUILD_BUG_ON(sizeof(cwsr_trap_arcturus_hex) > PAGE_SIZE);
5963baa24f0SOak Zeng 			kfd->cwsr_isa = cwsr_trap_arcturus_hex;
5973baa24f0SOak Zeng 			kfd->cwsr_isa_size = sizeof(cwsr_trap_arcturus_hex);
59814328aa5SPhilip Cox 		} else if (kfd->device_info->asic_family < CHIP_NAVI10) {
5993e76c239SFelix Kuehling 			BUILD_BUG_ON(sizeof(cwsr_trap_gfx9_hex) > PAGE_SIZE);
6003e76c239SFelix Kuehling 			kfd->cwsr_isa = cwsr_trap_gfx9_hex;
6013e76c239SFelix Kuehling 			kfd->cwsr_isa_size = sizeof(cwsr_trap_gfx9_hex);
60280b6cfedSJay Cornwall 		} else if (kfd->device_info->asic_family < CHIP_SIENNA_CICHLID) {
60380b6cfedSJay Cornwall 			BUILD_BUG_ON(sizeof(cwsr_trap_nv1x_hex) > PAGE_SIZE);
60480b6cfedSJay Cornwall 			kfd->cwsr_isa = cwsr_trap_nv1x_hex;
60580b6cfedSJay Cornwall 			kfd->cwsr_isa_size = sizeof(cwsr_trap_nv1x_hex);
60614328aa5SPhilip Cox 		} else {
60714328aa5SPhilip Cox 			BUILD_BUG_ON(sizeof(cwsr_trap_gfx10_hex) > PAGE_SIZE);
60814328aa5SPhilip Cox 			kfd->cwsr_isa = cwsr_trap_gfx10_hex;
60914328aa5SPhilip Cox 			kfd->cwsr_isa_size = sizeof(cwsr_trap_gfx10_hex);
6103e76c239SFelix Kuehling 		}
6113e76c239SFelix Kuehling 
612373d7080SFelix Kuehling 		kfd->cwsr_enabled = true;
613373d7080SFelix Kuehling 	}
614373d7080SFelix Kuehling }
615373d7080SFelix Kuehling 
61629633d0eSJoseph Greathouse static int kfd_gws_init(struct kfd_dev *kfd)
61729633d0eSJoseph Greathouse {
61829633d0eSJoseph Greathouse 	int ret = 0;
61929633d0eSJoseph Greathouse 
62029633d0eSJoseph Greathouse 	if (kfd->dqm->sched_policy == KFD_SCHED_POLICY_NO_HWS)
62129633d0eSJoseph Greathouse 		return 0;
62229633d0eSJoseph Greathouse 
62329633d0eSJoseph Greathouse 	if (hws_gws_support
624fea7d919SJoseph Greathouse 		|| (kfd->device_info->asic_family == CHIP_VEGA10
625fea7d919SJoseph Greathouse 			&& kfd->mec2_fw_version >= 0x81b3)
626fea7d919SJoseph Greathouse 		|| (kfd->device_info->asic_family >= CHIP_VEGA12
62729633d0eSJoseph Greathouse 			&& kfd->device_info->asic_family <= CHIP_RAVEN
628fea7d919SJoseph Greathouse 			&& kfd->mec2_fw_version >= 0x1b3)
629fea7d919SJoseph Greathouse 		|| (kfd->device_info->asic_family == CHIP_ARCTURUS
630fea7d919SJoseph Greathouse 			&& kfd->mec2_fw_version >= 0x30))
63129633d0eSJoseph Greathouse 		ret = amdgpu_amdkfd_alloc_gws(kfd->kgd,
63229633d0eSJoseph Greathouse 				amdgpu_amdkfd_get_num_gws(kfd->kgd), &kfd->gws);
63329633d0eSJoseph Greathouse 
63429633d0eSJoseph Greathouse 	return ret;
63529633d0eSJoseph Greathouse }
63629633d0eSJoseph Greathouse 
6374a488a7aSOded Gabbay bool kgd2kfd_device_init(struct kfd_dev *kfd,
6383a0c3423SHarish Kasiviswanathan 			 struct drm_device *ddev,
6394a488a7aSOded Gabbay 			 const struct kgd2kfd_shared_resources *gpu_resources)
6404a488a7aSOded Gabbay {
64119f6d2a6SOded Gabbay 	unsigned int size;
64219f6d2a6SOded Gabbay 
6433a0c3423SHarish Kasiviswanathan 	kfd->ddev = ddev;
6440da8b10eSAmber Lin 	kfd->mec_fw_version = amdgpu_amdkfd_get_fw_version(kfd->kgd,
6455ade6c9cSFelix Kuehling 			KGD_ENGINE_MEC1);
64629633d0eSJoseph Greathouse 	kfd->mec2_fw_version = amdgpu_amdkfd_get_fw_version(kfd->kgd,
64729633d0eSJoseph Greathouse 			KGD_ENGINE_MEC2);
6480da8b10eSAmber Lin 	kfd->sdma_fw_version = amdgpu_amdkfd_get_fw_version(kfd->kgd,
6495ade6c9cSFelix Kuehling 			KGD_ENGINE_SDMA1);
6504a488a7aSOded Gabbay 	kfd->shared_resources = *gpu_resources;
6514a488a7aSOded Gabbay 
65244008d7aSYong Zhao 	kfd->vm_info.first_vmid_kfd = ffs(gpu_resources->compute_vmid_bitmap)-1;
65344008d7aSYong Zhao 	kfd->vm_info.last_vmid_kfd = fls(gpu_resources->compute_vmid_bitmap)-1;
65444008d7aSYong Zhao 	kfd->vm_info.vmid_num_kfd = kfd->vm_info.last_vmid_kfd
65544008d7aSYong Zhao 			- kfd->vm_info.first_vmid_kfd + 1;
65644008d7aSYong Zhao 
657a99c6d4fSFelix Kuehling 	/* Verify module parameters regarding mapped process number*/
658a99c6d4fSFelix Kuehling 	if ((hws_max_conc_proc < 0)
659a99c6d4fSFelix Kuehling 			|| (hws_max_conc_proc > kfd->vm_info.vmid_num_kfd)) {
660a99c6d4fSFelix Kuehling 		dev_err(kfd_device,
661a99c6d4fSFelix Kuehling 			"hws_max_conc_proc %d must be between 0 and %d, use %d instead\n",
662a99c6d4fSFelix Kuehling 			hws_max_conc_proc, kfd->vm_info.vmid_num_kfd,
663a99c6d4fSFelix Kuehling 			kfd->vm_info.vmid_num_kfd);
664a99c6d4fSFelix Kuehling 		kfd->max_proc_per_quantum = kfd->vm_info.vmid_num_kfd;
665a99c6d4fSFelix Kuehling 	} else
666a99c6d4fSFelix Kuehling 		kfd->max_proc_per_quantum = hws_max_conc_proc;
667a99c6d4fSFelix Kuehling 
66819f6d2a6SOded Gabbay 	/* calculate max size of mqds needed for queues */
669b8cbab04SOded Gabbay 	size = max_num_of_queues_per_device *
67019f6d2a6SOded Gabbay 			kfd->device_info->mqd_size_aligned;
67119f6d2a6SOded Gabbay 
672e18e794eSOded Gabbay 	/*
673e18e794eSOded Gabbay 	 * calculate max size of runlist packet.
674e18e794eSOded Gabbay 	 * There can be only 2 packets at once
675e18e794eSOded Gabbay 	 */
676507968ddSFelix Kuehling 	size += (KFD_MAX_NUM_OF_PROCESSES * sizeof(struct pm4_mes_map_process) +
677507968ddSFelix Kuehling 		max_num_of_queues_per_device * sizeof(struct pm4_mes_map_queues)
678507968ddSFelix Kuehling 		+ sizeof(struct pm4_mes_runlist)) * 2;
679e18e794eSOded Gabbay 
680e18e794eSOded Gabbay 	/* Add size of HIQ & DIQ */
681e18e794eSOded Gabbay 	size += KFD_KERNEL_QUEUE_SIZE * 2;
682e18e794eSOded Gabbay 
683e18e794eSOded Gabbay 	/* add another 512KB for all other allocations on gart (HPD, fences) */
68419f6d2a6SOded Gabbay 	size += 512 * 1024;
68519f6d2a6SOded Gabbay 
6867cd52c91SAmber Lin 	if (amdgpu_amdkfd_alloc_gtt_mem(
687cea405b1SXihan Zhang 			kfd->kgd, size, &kfd->gtt_mem,
68815426dbbSYong Zhao 			&kfd->gtt_start_gpu_addr, &kfd->gtt_start_cpu_ptr,
68915426dbbSYong Zhao 			false)) {
69079775b62SKent Russell 		dev_err(kfd_device, "Could not allocate %d bytes\n", size);
691e09d4fc8SOak Zeng 		goto alloc_gtt_mem_failure;
69219f6d2a6SOded Gabbay 	}
69319f6d2a6SOded Gabbay 
69479775b62SKent Russell 	dev_info(kfd_device, "Allocated %d bytes on gart\n", size);
695e18e794eSOded Gabbay 
69673a1da0bSOded Gabbay 	/* Initialize GTT sa with 512 byte chunk size */
69773a1da0bSOded Gabbay 	if (kfd_gtt_sa_init(kfd, size, 512) != 0) {
69879775b62SKent Russell 		dev_err(kfd_device, "Error initializing gtt sub-allocator\n");
69973a1da0bSOded Gabbay 		goto kfd_gtt_sa_init_error;
70073a1da0bSOded Gabbay 	}
70173a1da0bSOded Gabbay 
702735df2baSFelix Kuehling 	if (kfd_doorbell_init(kfd)) {
703735df2baSFelix Kuehling 		dev_err(kfd_device,
704735df2baSFelix Kuehling 			"Error initializing doorbell aperture\n");
705735df2baSFelix Kuehling 		goto kfd_doorbell_error;
706735df2baSFelix Kuehling 	}
70719f6d2a6SOded Gabbay 
7080c1690e3SShaoyun Liu 	if (kfd->kfd2kgd->get_hive_id)
7090c1690e3SShaoyun Liu 		kfd->hive_id = kfd->kfd2kgd->get_hive_id(kfd->kgd);
7100c1690e3SShaoyun Liu 
7110c663695SDivya Shikre 	if (kfd->kfd2kgd->get_unique_id)
7120c663695SDivya Shikre 		kfd->unique_id = kfd->kfd2kgd->get_unique_id(kfd->kgd);
7130c663695SDivya Shikre 
7142249d558SAndrew Lewycky 	if (kfd_interrupt_init(kfd)) {
71579775b62SKent Russell 		dev_err(kfd_device, "Error initializing interrupts\n");
7162249d558SAndrew Lewycky 		goto kfd_interrupt_error;
7172249d558SAndrew Lewycky 	}
7182249d558SAndrew Lewycky 
71964c7f8cfSBen Goz 	kfd->dqm = device_queue_manager_init(kfd);
72064c7f8cfSBen Goz 	if (!kfd->dqm) {
72179775b62SKent Russell 		dev_err(kfd_device, "Error initializing queue manager\n");
72264c7f8cfSBen Goz 		goto device_queue_manager_error;
72364c7f8cfSBen Goz 	}
72464c7f8cfSBen Goz 
72529633d0eSJoseph Greathouse 	/* If supported on this device, allocate global GWS that is shared
72629633d0eSJoseph Greathouse 	 * by all KFD processes
72729633d0eSJoseph Greathouse 	 */
72829633d0eSJoseph Greathouse 	if (kfd_gws_init(kfd)) {
72929633d0eSJoseph Greathouse 		dev_err(kfd_device, "Could not allocate %d gws\n",
73029633d0eSJoseph Greathouse 			amdgpu_amdkfd_get_num_gws(kfd->kgd));
73129633d0eSJoseph Greathouse 		goto gws_error;
73229633d0eSJoseph Greathouse 	}
73329633d0eSJoseph Greathouse 
73464d1c3a4SFelix Kuehling 	if (kfd_iommu_device_init(kfd)) {
73564d1c3a4SFelix Kuehling 		dev_err(kfd_device, "Error initializing iommuv2\n");
73664d1c3a4SFelix Kuehling 		goto device_iommu_error;
73764c7f8cfSBen Goz 	}
73864c7f8cfSBen Goz 
739373d7080SFelix Kuehling 	kfd_cwsr_init(kfd);
740373d7080SFelix Kuehling 
741b8935a7cSYong Zhao 	if (kfd_resume(kfd))
742b8935a7cSYong Zhao 		goto kfd_resume_error;
743b8935a7cSYong Zhao 
744fbeb661bSYair Shachar 	kfd->dbgmgr = NULL;
745fbeb661bSYair Shachar 
746465ab9e0SOak Zeng 	if (kfd_topology_add_device(kfd)) {
747465ab9e0SOak Zeng 		dev_err(kfd_device, "Error adding device to topology\n");
748465ab9e0SOak Zeng 		goto kfd_topology_add_device_error;
749465ab9e0SOak Zeng 	}
750465ab9e0SOak Zeng 
7514a488a7aSOded Gabbay 	kfd->init_complete = true;
75279775b62SKent Russell 	dev_info(kfd_device, "added device %x:%x\n", kfd->pdev->vendor,
7534a488a7aSOded Gabbay 		 kfd->pdev->device);
7544a488a7aSOded Gabbay 
75579775b62SKent Russell 	pr_debug("Starting kfd with the following scheduling policy %d\n",
756d146c5a7SFelix Kuehling 		kfd->dqm->sched_policy);
75764c7f8cfSBen Goz 
75819f6d2a6SOded Gabbay 	goto out;
75919f6d2a6SOded Gabbay 
760465ab9e0SOak Zeng kfd_topology_add_device_error:
761b8935a7cSYong Zhao kfd_resume_error:
76264d1c3a4SFelix Kuehling device_iommu_error:
76329633d0eSJoseph Greathouse gws_error:
76464c7f8cfSBen Goz 	device_queue_manager_uninit(kfd->dqm);
76564c7f8cfSBen Goz device_queue_manager_error:
7662249d558SAndrew Lewycky 	kfd_interrupt_exit(kfd);
7672249d558SAndrew Lewycky kfd_interrupt_error:
768735df2baSFelix Kuehling 	kfd_doorbell_fini(kfd);
769735df2baSFelix Kuehling kfd_doorbell_error:
77073a1da0bSOded Gabbay 	kfd_gtt_sa_fini(kfd);
77173a1da0bSOded Gabbay kfd_gtt_sa_init_error:
7727cd52c91SAmber Lin 	amdgpu_amdkfd_free_gtt_mem(kfd->kgd, kfd->gtt_mem);
773e09d4fc8SOak Zeng alloc_gtt_mem_failure:
77429633d0eSJoseph Greathouse 	if (kfd->gws)
775e09d4fc8SOak Zeng 		amdgpu_amdkfd_free_gws(kfd->kgd, kfd->gws);
77619f6d2a6SOded Gabbay 	dev_err(kfd_device,
77779775b62SKent Russell 		"device %x:%x NOT added due to errors\n",
77819f6d2a6SOded Gabbay 		kfd->pdev->vendor, kfd->pdev->device);
77919f6d2a6SOded Gabbay out:
78019f6d2a6SOded Gabbay 	return kfd->init_complete;
7814a488a7aSOded Gabbay }
7824a488a7aSOded Gabbay 
7834a488a7aSOded Gabbay void kgd2kfd_device_exit(struct kfd_dev *kfd)
7844a488a7aSOded Gabbay {
785b17f068aSOded Gabbay 	if (kfd->init_complete) {
7869593f4d6SRajneesh Bhardwaj 		kgd2kfd_suspend(kfd, false);
78764c7f8cfSBen Goz 		device_queue_manager_uninit(kfd->dqm);
7882249d558SAndrew Lewycky 		kfd_interrupt_exit(kfd);
78919f6d2a6SOded Gabbay 		kfd_topology_remove_device(kfd);
790735df2baSFelix Kuehling 		kfd_doorbell_fini(kfd);
79173a1da0bSOded Gabbay 		kfd_gtt_sa_fini(kfd);
7927cd52c91SAmber Lin 		amdgpu_amdkfd_free_gtt_mem(kfd->kgd, kfd->gtt_mem);
79329633d0eSJoseph Greathouse 		if (kfd->gws)
794e09d4fc8SOak Zeng 			amdgpu_amdkfd_free_gws(kfd->kgd, kfd->gws);
795b17f068aSOded Gabbay 	}
7965b5c4e40SEvgeny Pinchuk 
7974a488a7aSOded Gabbay 	kfree(kfd);
7984a488a7aSOded Gabbay }
7994a488a7aSOded Gabbay 
800e3b7a967SShaoyun Liu int kgd2kfd_pre_reset(struct kfd_dev *kfd)
801e3b7a967SShaoyun Liu {
802e42051d2SShaoyun Liu 	if (!kfd->init_complete)
803e42051d2SShaoyun Liu 		return 0;
80409c34e8dSFelix Kuehling 
80509c34e8dSFelix Kuehling 	kfd->dqm->ops.pre_reset(kfd->dqm);
80609c34e8dSFelix Kuehling 
8079593f4d6SRajneesh Bhardwaj 	kgd2kfd_suspend(kfd, false);
808e42051d2SShaoyun Liu 
809e42051d2SShaoyun Liu 	kfd_signal_reset_event(kfd);
810e3b7a967SShaoyun Liu 	return 0;
811e3b7a967SShaoyun Liu }
812e3b7a967SShaoyun Liu 
813e42051d2SShaoyun Liu /*
814e42051d2SShaoyun Liu  * Fix me. KFD won't be able to resume existing process for now.
815e42051d2SShaoyun Liu  * We will keep all existing process in a evicted state and
816e42051d2SShaoyun Liu  * wait the process to be terminated.
817e42051d2SShaoyun Liu  */
818e42051d2SShaoyun Liu 
819e3b7a967SShaoyun Liu int kgd2kfd_post_reset(struct kfd_dev *kfd)
820e3b7a967SShaoyun Liu {
821a1bd079fSyu kuai 	int ret;
822e42051d2SShaoyun Liu 
823e42051d2SShaoyun Liu 	if (!kfd->init_complete)
824e3b7a967SShaoyun Liu 		return 0;
825e42051d2SShaoyun Liu 
826e42051d2SShaoyun Liu 	ret = kfd_resume(kfd);
827e42051d2SShaoyun Liu 	if (ret)
828e42051d2SShaoyun Liu 		return ret;
829a1bd079fSyu kuai 	atomic_dec(&kfd_locked);
8309b54d201SEric Huang 
8319b54d201SEric Huang 	atomic_set(&kfd->sram_ecc_flag, 0);
8329b54d201SEric Huang 
833e42051d2SShaoyun Liu 	return 0;
834e42051d2SShaoyun Liu }
835e42051d2SShaoyun Liu 
836e42051d2SShaoyun Liu bool kfd_is_locked(void)
837e42051d2SShaoyun Liu {
838e42051d2SShaoyun Liu 	return  (atomic_read(&kfd_locked) > 0);
839e3b7a967SShaoyun Liu }
840e3b7a967SShaoyun Liu 
8419593f4d6SRajneesh Bhardwaj void kgd2kfd_suspend(struct kfd_dev *kfd, bool run_pm)
8424a488a7aSOded Gabbay {
843733fa1f7SYong Zhao 	if (!kfd->init_complete)
844733fa1f7SYong Zhao 		return;
845733fa1f7SYong Zhao 
8469593f4d6SRajneesh Bhardwaj 	/* for runtime suspend, skip locking kfd */
8479593f4d6SRajneesh Bhardwaj 	if (!run_pm) {
84826103436SFelix Kuehling 		/* For first KFD device suspend all the KFD processes */
849e42051d2SShaoyun Liu 		if (atomic_inc_return(&kfd_locked) == 1)
85026103436SFelix Kuehling 			kfd_suspend_all_processes();
8519593f4d6SRajneesh Bhardwaj 	}
85226103436SFelix Kuehling 
85345c9a5e4SOded Gabbay 	kfd->dqm->ops.stop(kfd->dqm);
85464d1c3a4SFelix Kuehling 	kfd_iommu_suspend(kfd);
8554a488a7aSOded Gabbay }
8564a488a7aSOded Gabbay 
8579593f4d6SRajneesh Bhardwaj int kgd2kfd_resume(struct kfd_dev *kfd, bool run_pm)
8584a488a7aSOded Gabbay {
85926103436SFelix Kuehling 	int ret, count;
86026103436SFelix Kuehling 
861b8935a7cSYong Zhao 	if (!kfd->init_complete)
862b8935a7cSYong Zhao 		return 0;
863b17f068aSOded Gabbay 
86426103436SFelix Kuehling 	ret = kfd_resume(kfd);
86526103436SFelix Kuehling 	if (ret)
86626103436SFelix Kuehling 		return ret;
867b17f068aSOded Gabbay 
8689593f4d6SRajneesh Bhardwaj 	/* for runtime resume, skip unlocking kfd */
8699593f4d6SRajneesh Bhardwaj 	if (!run_pm) {
870e42051d2SShaoyun Liu 		count = atomic_dec_return(&kfd_locked);
87126103436SFelix Kuehling 		WARN_ONCE(count < 0, "KFD suspend / resume ref. error");
87226103436SFelix Kuehling 		if (count == 0)
87326103436SFelix Kuehling 			ret = kfd_resume_all_processes();
8749593f4d6SRajneesh Bhardwaj 	}
87526103436SFelix Kuehling 
87626103436SFelix Kuehling 	return ret;
8774ebc7182SYong Zhao }
8784ebc7182SYong Zhao 
879b8935a7cSYong Zhao static int kfd_resume(struct kfd_dev *kfd)
880b8935a7cSYong Zhao {
881b8935a7cSYong Zhao 	int err = 0;
882b8935a7cSYong Zhao 
88364d1c3a4SFelix Kuehling 	err = kfd_iommu_resume(kfd);
88464d1c3a4SFelix Kuehling 	if (err) {
88564d1c3a4SFelix Kuehling 		dev_err(kfd_device,
88664d1c3a4SFelix Kuehling 			"Failed to resume IOMMU for device %x:%x\n",
88764d1c3a4SFelix Kuehling 			kfd->pdev->vendor, kfd->pdev->device);
88864d1c3a4SFelix Kuehling 		return err;
88964d1c3a4SFelix Kuehling 	}
890733fa1f7SYong Zhao 
891b8935a7cSYong Zhao 	err = kfd->dqm->ops.start(kfd->dqm);
892b8935a7cSYong Zhao 	if (err) {
893b8935a7cSYong Zhao 		dev_err(kfd_device,
894b8935a7cSYong Zhao 			"Error starting queue manager for device %x:%x\n",
895b8935a7cSYong Zhao 			kfd->pdev->vendor, kfd->pdev->device);
896b8935a7cSYong Zhao 		goto dqm_start_error;
897b17f068aSOded Gabbay 	}
898b17f068aSOded Gabbay 
899b8935a7cSYong Zhao 	return err;
900b8935a7cSYong Zhao 
901b8935a7cSYong Zhao dqm_start_error:
90264d1c3a4SFelix Kuehling 	kfd_iommu_suspend(kfd);
903b8935a7cSYong Zhao 	return err;
9044a488a7aSOded Gabbay }
9054a488a7aSOded Gabbay 
906b3eca59dSPhilip Yang static inline void kfd_queue_work(struct workqueue_struct *wq,
907b3eca59dSPhilip Yang 				  struct work_struct *work)
908b3eca59dSPhilip Yang {
909b3eca59dSPhilip Yang 	int cpu, new_cpu;
910b3eca59dSPhilip Yang 
911b3eca59dSPhilip Yang 	cpu = new_cpu = smp_processor_id();
912b3eca59dSPhilip Yang 	do {
913b3eca59dSPhilip Yang 		new_cpu = cpumask_next(new_cpu, cpu_online_mask) % nr_cpu_ids;
914b3eca59dSPhilip Yang 		if (cpu_to_node(new_cpu) == numa_node_id())
915b3eca59dSPhilip Yang 			break;
916b3eca59dSPhilip Yang 	} while (cpu != new_cpu);
917b3eca59dSPhilip Yang 
918b3eca59dSPhilip Yang 	queue_work_on(new_cpu, wq, work);
919b3eca59dSPhilip Yang }
920b3eca59dSPhilip Yang 
921b3f5e6b4SAndrew Lewycky /* This is called directly from KGD at ISR. */
922b3f5e6b4SAndrew Lewycky void kgd2kfd_interrupt(struct kfd_dev *kfd, const void *ih_ring_entry)
9234a488a7aSOded Gabbay {
92458e69886SLan Xiao 	uint32_t patched_ihre[KFD_MAX_RING_ENTRY_SIZE];
92558e69886SLan Xiao 	bool is_patched = false;
9262383a767SChristian König 	unsigned long flags;
92758e69886SLan Xiao 
9282249d558SAndrew Lewycky 	if (!kfd->init_complete)
9292249d558SAndrew Lewycky 		return;
9302249d558SAndrew Lewycky 
93158e69886SLan Xiao 	if (kfd->device_info->ih_ring_entry_size > sizeof(patched_ihre)) {
93258e69886SLan Xiao 		dev_err_once(kfd_device, "Ring entry too small\n");
93358e69886SLan Xiao 		return;
93458e69886SLan Xiao 	}
93558e69886SLan Xiao 
9362383a767SChristian König 	spin_lock_irqsave(&kfd->interrupt_lock, flags);
9372249d558SAndrew Lewycky 
9382249d558SAndrew Lewycky 	if (kfd->interrupts_active
93958e69886SLan Xiao 	    && interrupt_is_wanted(kfd, ih_ring_entry,
94058e69886SLan Xiao 				   patched_ihre, &is_patched)
94158e69886SLan Xiao 	    && enqueue_ih_ring_entry(kfd,
94258e69886SLan Xiao 				     is_patched ? patched_ihre : ih_ring_entry))
943b3eca59dSPhilip Yang 		kfd_queue_work(kfd->ih_wq, &kfd->interrupt_work);
9442249d558SAndrew Lewycky 
9452383a767SChristian König 	spin_unlock_irqrestore(&kfd->interrupt_lock, flags);
9464a488a7aSOded Gabbay }
9476e81090bSOded Gabbay 
9486b95e797SFelix Kuehling int kgd2kfd_quiesce_mm(struct mm_struct *mm)
9496b95e797SFelix Kuehling {
9506b95e797SFelix Kuehling 	struct kfd_process *p;
9516b95e797SFelix Kuehling 	int r;
9526b95e797SFelix Kuehling 
9536b95e797SFelix Kuehling 	/* Because we are called from arbitrary context (workqueue) as opposed
9546b95e797SFelix Kuehling 	 * to process context, kfd_process could attempt to exit while we are
9556b95e797SFelix Kuehling 	 * running so the lookup function increments the process ref count.
9566b95e797SFelix Kuehling 	 */
9576b95e797SFelix Kuehling 	p = kfd_lookup_process_by_mm(mm);
9586b95e797SFelix Kuehling 	if (!p)
9596b95e797SFelix Kuehling 		return -ESRCH;
9606b95e797SFelix Kuehling 
961b2057956SFelix Kuehling 	WARN(debug_evictions, "Evicting pid %d", p->lead_thread->pid);
9626b95e797SFelix Kuehling 	r = kfd_process_evict_queues(p);
9636b95e797SFelix Kuehling 
9646b95e797SFelix Kuehling 	kfd_unref_process(p);
9656b95e797SFelix Kuehling 	return r;
9666b95e797SFelix Kuehling }
9676b95e797SFelix Kuehling 
9686b95e797SFelix Kuehling int kgd2kfd_resume_mm(struct mm_struct *mm)
9696b95e797SFelix Kuehling {
9706b95e797SFelix Kuehling 	struct kfd_process *p;
9716b95e797SFelix Kuehling 	int r;
9726b95e797SFelix Kuehling 
9736b95e797SFelix Kuehling 	/* Because we are called from arbitrary context (workqueue) as opposed
9746b95e797SFelix Kuehling 	 * to process context, kfd_process could attempt to exit while we are
9756b95e797SFelix Kuehling 	 * running so the lookup function increments the process ref count.
9766b95e797SFelix Kuehling 	 */
9776b95e797SFelix Kuehling 	p = kfd_lookup_process_by_mm(mm);
9786b95e797SFelix Kuehling 	if (!p)
9796b95e797SFelix Kuehling 		return -ESRCH;
9806b95e797SFelix Kuehling 
9816b95e797SFelix Kuehling 	r = kfd_process_restore_queues(p);
9826b95e797SFelix Kuehling 
9836b95e797SFelix Kuehling 	kfd_unref_process(p);
9846b95e797SFelix Kuehling 	return r;
9856b95e797SFelix Kuehling }
9866b95e797SFelix Kuehling 
98726103436SFelix Kuehling /** kgd2kfd_schedule_evict_and_restore_process - Schedules work queue that will
98826103436SFelix Kuehling  *   prepare for safe eviction of KFD BOs that belong to the specified
98926103436SFelix Kuehling  *   process.
99026103436SFelix Kuehling  *
99126103436SFelix Kuehling  * @mm: mm_struct that identifies the specified KFD process
99226103436SFelix Kuehling  * @fence: eviction fence attached to KFD process BOs
99326103436SFelix Kuehling  *
99426103436SFelix Kuehling  */
99526103436SFelix Kuehling int kgd2kfd_schedule_evict_and_restore_process(struct mm_struct *mm,
99626103436SFelix Kuehling 					       struct dma_fence *fence)
99726103436SFelix Kuehling {
99826103436SFelix Kuehling 	struct kfd_process *p;
99926103436SFelix Kuehling 	unsigned long active_time;
100026103436SFelix Kuehling 	unsigned long delay_jiffies = msecs_to_jiffies(PROCESS_ACTIVE_TIME_MS);
100126103436SFelix Kuehling 
100226103436SFelix Kuehling 	if (!fence)
100326103436SFelix Kuehling 		return -EINVAL;
100426103436SFelix Kuehling 
100526103436SFelix Kuehling 	if (dma_fence_is_signaled(fence))
100626103436SFelix Kuehling 		return 0;
100726103436SFelix Kuehling 
100826103436SFelix Kuehling 	p = kfd_lookup_process_by_mm(mm);
100926103436SFelix Kuehling 	if (!p)
101026103436SFelix Kuehling 		return -ENODEV;
101126103436SFelix Kuehling 
101226103436SFelix Kuehling 	if (fence->seqno == p->last_eviction_seqno)
101326103436SFelix Kuehling 		goto out;
101426103436SFelix Kuehling 
101526103436SFelix Kuehling 	p->last_eviction_seqno = fence->seqno;
101626103436SFelix Kuehling 
101726103436SFelix Kuehling 	/* Avoid KFD process starvation. Wait for at least
101826103436SFelix Kuehling 	 * PROCESS_ACTIVE_TIME_MS before evicting the process again
101926103436SFelix Kuehling 	 */
102026103436SFelix Kuehling 	active_time = get_jiffies_64() - p->last_restore_timestamp;
102126103436SFelix Kuehling 	if (delay_jiffies > active_time)
102226103436SFelix Kuehling 		delay_jiffies -= active_time;
102326103436SFelix Kuehling 	else
102426103436SFelix Kuehling 		delay_jiffies = 0;
102526103436SFelix Kuehling 
102626103436SFelix Kuehling 	/* During process initialization eviction_work.dwork is initialized
102726103436SFelix Kuehling 	 * to kfd_evict_bo_worker
102826103436SFelix Kuehling 	 */
1029b2057956SFelix Kuehling 	WARN(debug_evictions, "Scheduling eviction of pid %d in %ld jiffies",
1030b2057956SFelix Kuehling 	     p->lead_thread->pid, delay_jiffies);
103126103436SFelix Kuehling 	schedule_delayed_work(&p->eviction_work, delay_jiffies);
103226103436SFelix Kuehling out:
103326103436SFelix Kuehling 	kfd_unref_process(p);
103426103436SFelix Kuehling 	return 0;
103526103436SFelix Kuehling }
103626103436SFelix Kuehling 
10376e81090bSOded Gabbay static int kfd_gtt_sa_init(struct kfd_dev *kfd, unsigned int buf_size,
10386e81090bSOded Gabbay 				unsigned int chunk_size)
10396e81090bSOded Gabbay {
10408625ff9cSFelix Kuehling 	unsigned int num_of_longs;
10416e81090bSOded Gabbay 
104232fa8219SFelix Kuehling 	if (WARN_ON(buf_size < chunk_size))
104332fa8219SFelix Kuehling 		return -EINVAL;
104432fa8219SFelix Kuehling 	if (WARN_ON(buf_size == 0))
104532fa8219SFelix Kuehling 		return -EINVAL;
104632fa8219SFelix Kuehling 	if (WARN_ON(chunk_size == 0))
104732fa8219SFelix Kuehling 		return -EINVAL;
10486e81090bSOded Gabbay 
10496e81090bSOded Gabbay 	kfd->gtt_sa_chunk_size = chunk_size;
10506e81090bSOded Gabbay 	kfd->gtt_sa_num_of_chunks = buf_size / chunk_size;
10516e81090bSOded Gabbay 
10528625ff9cSFelix Kuehling 	num_of_longs = (kfd->gtt_sa_num_of_chunks + BITS_PER_LONG - 1) /
10538625ff9cSFelix Kuehling 		BITS_PER_LONG;
10546e81090bSOded Gabbay 
10558625ff9cSFelix Kuehling 	kfd->gtt_sa_bitmap = kcalloc(num_of_longs, sizeof(long), GFP_KERNEL);
10566e81090bSOded Gabbay 
10576e81090bSOded Gabbay 	if (!kfd->gtt_sa_bitmap)
10586e81090bSOded Gabbay 		return -ENOMEM;
10596e81090bSOded Gabbay 
106079775b62SKent Russell 	pr_debug("gtt_sa_num_of_chunks = %d, gtt_sa_bitmap = %p\n",
10616e81090bSOded Gabbay 			kfd->gtt_sa_num_of_chunks, kfd->gtt_sa_bitmap);
10626e81090bSOded Gabbay 
10636e81090bSOded Gabbay 	mutex_init(&kfd->gtt_sa_lock);
10646e81090bSOded Gabbay 
10656e81090bSOded Gabbay 	return 0;
10666e81090bSOded Gabbay 
10676e81090bSOded Gabbay }
10686e81090bSOded Gabbay 
10696e81090bSOded Gabbay static void kfd_gtt_sa_fini(struct kfd_dev *kfd)
10706e81090bSOded Gabbay {
10716e81090bSOded Gabbay 	mutex_destroy(&kfd->gtt_sa_lock);
10726e81090bSOded Gabbay 	kfree(kfd->gtt_sa_bitmap);
10736e81090bSOded Gabbay }
10746e81090bSOded Gabbay 
10756e81090bSOded Gabbay static inline uint64_t kfd_gtt_sa_calc_gpu_addr(uint64_t start_addr,
10766e81090bSOded Gabbay 						unsigned int bit_num,
10776e81090bSOded Gabbay 						unsigned int chunk_size)
10786e81090bSOded Gabbay {
10796e81090bSOded Gabbay 	return start_addr + bit_num * chunk_size;
10806e81090bSOded Gabbay }
10816e81090bSOded Gabbay 
10826e81090bSOded Gabbay static inline uint32_t *kfd_gtt_sa_calc_cpu_addr(void *start_addr,
10836e81090bSOded Gabbay 						unsigned int bit_num,
10846e81090bSOded Gabbay 						unsigned int chunk_size)
10856e81090bSOded Gabbay {
10866e81090bSOded Gabbay 	return (uint32_t *) ((uint64_t) start_addr + bit_num * chunk_size);
10876e81090bSOded Gabbay }
10886e81090bSOded Gabbay 
10896e81090bSOded Gabbay int kfd_gtt_sa_allocate(struct kfd_dev *kfd, unsigned int size,
10906e81090bSOded Gabbay 			struct kfd_mem_obj **mem_obj)
10916e81090bSOded Gabbay {
10926e81090bSOded Gabbay 	unsigned int found, start_search, cur_size;
10936e81090bSOded Gabbay 
10946e81090bSOded Gabbay 	if (size == 0)
10956e81090bSOded Gabbay 		return -EINVAL;
10966e81090bSOded Gabbay 
10976e81090bSOded Gabbay 	if (size > kfd->gtt_sa_num_of_chunks * kfd->gtt_sa_chunk_size)
10986e81090bSOded Gabbay 		return -ENOMEM;
10996e81090bSOded Gabbay 
11001cd106ecSFelix Kuehling 	*mem_obj = kzalloc(sizeof(struct kfd_mem_obj), GFP_KERNEL);
11011cd106ecSFelix Kuehling 	if (!(*mem_obj))
11026e81090bSOded Gabbay 		return -ENOMEM;
11036e81090bSOded Gabbay 
110479775b62SKent Russell 	pr_debug("Allocated mem_obj = %p for size = %d\n", *mem_obj, size);
11056e81090bSOded Gabbay 
11066e81090bSOded Gabbay 	start_search = 0;
11076e81090bSOded Gabbay 
11086e81090bSOded Gabbay 	mutex_lock(&kfd->gtt_sa_lock);
11096e81090bSOded Gabbay 
11106e81090bSOded Gabbay kfd_gtt_restart_search:
11116e81090bSOded Gabbay 	/* Find the first chunk that is free */
11126e81090bSOded Gabbay 	found = find_next_zero_bit(kfd->gtt_sa_bitmap,
11136e81090bSOded Gabbay 					kfd->gtt_sa_num_of_chunks,
11146e81090bSOded Gabbay 					start_search);
11156e81090bSOded Gabbay 
111679775b62SKent Russell 	pr_debug("Found = %d\n", found);
11176e81090bSOded Gabbay 
11186e81090bSOded Gabbay 	/* If there wasn't any free chunk, bail out */
11196e81090bSOded Gabbay 	if (found == kfd->gtt_sa_num_of_chunks)
11206e81090bSOded Gabbay 		goto kfd_gtt_no_free_chunk;
11216e81090bSOded Gabbay 
11226e81090bSOded Gabbay 	/* Update fields of mem_obj */
11236e81090bSOded Gabbay 	(*mem_obj)->range_start = found;
11246e81090bSOded Gabbay 	(*mem_obj)->range_end = found;
11256e81090bSOded Gabbay 	(*mem_obj)->gpu_addr = kfd_gtt_sa_calc_gpu_addr(
11266e81090bSOded Gabbay 					kfd->gtt_start_gpu_addr,
11276e81090bSOded Gabbay 					found,
11286e81090bSOded Gabbay 					kfd->gtt_sa_chunk_size);
11296e81090bSOded Gabbay 	(*mem_obj)->cpu_ptr = kfd_gtt_sa_calc_cpu_addr(
11306e81090bSOded Gabbay 					kfd->gtt_start_cpu_ptr,
11316e81090bSOded Gabbay 					found,
11326e81090bSOded Gabbay 					kfd->gtt_sa_chunk_size);
11336e81090bSOded Gabbay 
113479775b62SKent Russell 	pr_debug("gpu_addr = %p, cpu_addr = %p\n",
11356e81090bSOded Gabbay 			(uint64_t *) (*mem_obj)->gpu_addr, (*mem_obj)->cpu_ptr);
11366e81090bSOded Gabbay 
11376e81090bSOded Gabbay 	/* If we need only one chunk, mark it as allocated and get out */
11386e81090bSOded Gabbay 	if (size <= kfd->gtt_sa_chunk_size) {
113979775b62SKent Russell 		pr_debug("Single bit\n");
11406e81090bSOded Gabbay 		set_bit(found, kfd->gtt_sa_bitmap);
11416e81090bSOded Gabbay 		goto kfd_gtt_out;
11426e81090bSOded Gabbay 	}
11436e81090bSOded Gabbay 
11446e81090bSOded Gabbay 	/* Otherwise, try to see if we have enough contiguous chunks */
11456e81090bSOded Gabbay 	cur_size = size - kfd->gtt_sa_chunk_size;
11466e81090bSOded Gabbay 	do {
11476e81090bSOded Gabbay 		(*mem_obj)->range_end =
11486e81090bSOded Gabbay 			find_next_zero_bit(kfd->gtt_sa_bitmap,
11496e81090bSOded Gabbay 					kfd->gtt_sa_num_of_chunks, ++found);
11506e81090bSOded Gabbay 		/*
11516e81090bSOded Gabbay 		 * If next free chunk is not contiguous than we need to
11526e81090bSOded Gabbay 		 * restart our search from the last free chunk we found (which
11536e81090bSOded Gabbay 		 * wasn't contiguous to the previous ones
11546e81090bSOded Gabbay 		 */
11556e81090bSOded Gabbay 		if ((*mem_obj)->range_end != found) {
11566e81090bSOded Gabbay 			start_search = found;
11576e81090bSOded Gabbay 			goto kfd_gtt_restart_search;
11586e81090bSOded Gabbay 		}
11596e81090bSOded Gabbay 
11606e81090bSOded Gabbay 		/*
11616e81090bSOded Gabbay 		 * If we reached end of buffer, bail out with error
11626e81090bSOded Gabbay 		 */
11636e81090bSOded Gabbay 		if (found == kfd->gtt_sa_num_of_chunks)
11646e81090bSOded Gabbay 			goto kfd_gtt_no_free_chunk;
11656e81090bSOded Gabbay 
11666e81090bSOded Gabbay 		/* Check if we don't need another chunk */
11676e81090bSOded Gabbay 		if (cur_size <= kfd->gtt_sa_chunk_size)
11686e81090bSOded Gabbay 			cur_size = 0;
11696e81090bSOded Gabbay 		else
11706e81090bSOded Gabbay 			cur_size -= kfd->gtt_sa_chunk_size;
11716e81090bSOded Gabbay 
11726e81090bSOded Gabbay 	} while (cur_size > 0);
11736e81090bSOded Gabbay 
117479775b62SKent Russell 	pr_debug("range_start = %d, range_end = %d\n",
11756e81090bSOded Gabbay 		(*mem_obj)->range_start, (*mem_obj)->range_end);
11766e81090bSOded Gabbay 
11776e81090bSOded Gabbay 	/* Mark the chunks as allocated */
11786e81090bSOded Gabbay 	for (found = (*mem_obj)->range_start;
11796e81090bSOded Gabbay 		found <= (*mem_obj)->range_end;
11806e81090bSOded Gabbay 		found++)
11816e81090bSOded Gabbay 		set_bit(found, kfd->gtt_sa_bitmap);
11826e81090bSOded Gabbay 
11836e81090bSOded Gabbay kfd_gtt_out:
11846e81090bSOded Gabbay 	mutex_unlock(&kfd->gtt_sa_lock);
11856e81090bSOded Gabbay 	return 0;
11866e81090bSOded Gabbay 
11876e81090bSOded Gabbay kfd_gtt_no_free_chunk:
11883148a6a0SJack Zhang 	pr_debug("Allocation failed with mem_obj = %p\n", *mem_obj);
11896e81090bSOded Gabbay 	mutex_unlock(&kfd->gtt_sa_lock);
11903148a6a0SJack Zhang 	kfree(*mem_obj);
11916e81090bSOded Gabbay 	return -ENOMEM;
11926e81090bSOded Gabbay }
11936e81090bSOded Gabbay 
11946e81090bSOded Gabbay int kfd_gtt_sa_free(struct kfd_dev *kfd, struct kfd_mem_obj *mem_obj)
11956e81090bSOded Gabbay {
11966e81090bSOded Gabbay 	unsigned int bit;
11976e81090bSOded Gabbay 
11989216ed29SOded Gabbay 	/* Act like kfree when trying to free a NULL object */
11999216ed29SOded Gabbay 	if (!mem_obj)
12009216ed29SOded Gabbay 		return 0;
12016e81090bSOded Gabbay 
120279775b62SKent Russell 	pr_debug("Free mem_obj = %p, range_start = %d, range_end = %d\n",
12036e81090bSOded Gabbay 			mem_obj, mem_obj->range_start, mem_obj->range_end);
12046e81090bSOded Gabbay 
12056e81090bSOded Gabbay 	mutex_lock(&kfd->gtt_sa_lock);
12066e81090bSOded Gabbay 
12076e81090bSOded Gabbay 	/* Mark the chunks as free */
12086e81090bSOded Gabbay 	for (bit = mem_obj->range_start;
12096e81090bSOded Gabbay 		bit <= mem_obj->range_end;
12106e81090bSOded Gabbay 		bit++)
12116e81090bSOded Gabbay 		clear_bit(bit, kfd->gtt_sa_bitmap);
12126e81090bSOded Gabbay 
12136e81090bSOded Gabbay 	mutex_unlock(&kfd->gtt_sa_lock);
12146e81090bSOded Gabbay 
12156e81090bSOded Gabbay 	kfree(mem_obj);
12166e81090bSOded Gabbay 	return 0;
12176e81090bSOded Gabbay }
1218a29ec470SShaoyun Liu 
12199b54d201SEric Huang void kgd2kfd_set_sram_ecc_flag(struct kfd_dev *kfd)
12209b54d201SEric Huang {
12219b54d201SEric Huang 	if (kfd)
12229b54d201SEric Huang 		atomic_inc(&kfd->sram_ecc_flag);
12239b54d201SEric Huang }
12249b54d201SEric Huang 
122543d8107fSHarish Kasiviswanathan void kfd_inc_compute_active(struct kfd_dev *kfd)
122643d8107fSHarish Kasiviswanathan {
122743d8107fSHarish Kasiviswanathan 	if (atomic_inc_return(&kfd->compute_profile) == 1)
122843d8107fSHarish Kasiviswanathan 		amdgpu_amdkfd_set_compute_idle(kfd->kgd, false);
122943d8107fSHarish Kasiviswanathan }
123043d8107fSHarish Kasiviswanathan 
123143d8107fSHarish Kasiviswanathan void kfd_dec_compute_active(struct kfd_dev *kfd)
123243d8107fSHarish Kasiviswanathan {
123343d8107fSHarish Kasiviswanathan 	int count = atomic_dec_return(&kfd->compute_profile);
123443d8107fSHarish Kasiviswanathan 
123543d8107fSHarish Kasiviswanathan 	if (count == 0)
123643d8107fSHarish Kasiviswanathan 		amdgpu_amdkfd_set_compute_idle(kfd->kgd, true);
123743d8107fSHarish Kasiviswanathan 	WARN_ONCE(count < 0, "Compute profile ref. count error");
123843d8107fSHarish Kasiviswanathan }
123943d8107fSHarish Kasiviswanathan 
1240a29ec470SShaoyun Liu #if defined(CONFIG_DEBUG_FS)
1241a29ec470SShaoyun Liu 
1242a29ec470SShaoyun Liu /* This function will send a package to HIQ to hang the HWS
1243a29ec470SShaoyun Liu  * which will trigger a GPU reset and bring the HWS back to normal state
1244a29ec470SShaoyun Liu  */
1245a29ec470SShaoyun Liu int kfd_debugfs_hang_hws(struct kfd_dev *dev)
1246a29ec470SShaoyun Liu {
1247a29ec470SShaoyun Liu 	int r = 0;
1248a29ec470SShaoyun Liu 
1249a29ec470SShaoyun Liu 	if (dev->dqm->sched_policy != KFD_SCHED_POLICY_HWS) {
1250a29ec470SShaoyun Liu 		pr_err("HWS is not enabled");
1251a29ec470SShaoyun Liu 		return -EINVAL;
1252a29ec470SShaoyun Liu 	}
1253a29ec470SShaoyun Liu 
1254a29ec470SShaoyun Liu 	r = pm_debugfs_hang_hws(&dev->dqm->packets);
1255a29ec470SShaoyun Liu 	if (!r)
1256a29ec470SShaoyun Liu 		r = dqm_debugfs_execute_queues(dev->dqm);
1257a29ec470SShaoyun Liu 
1258a29ec470SShaoyun Liu 	return r;
1259a29ec470SShaoyun Liu }
1260a29ec470SShaoyun Liu 
1261a29ec470SShaoyun Liu #endif
1262