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"
314a488a7aSOded Gabbay 
3219f6d2a6SOded Gabbay #define MQD_SIZE_ALIGNED 768
33e42051d2SShaoyun Liu 
34e42051d2SShaoyun Liu /*
35e42051d2SShaoyun Liu  * kfd_locked is used to lock the kfd driver during suspend or reset
36e42051d2SShaoyun Liu  * once locked, kfd driver will stop any further GPU execution.
37e42051d2SShaoyun Liu  * create process (open) will return -EAGAIN.
38e42051d2SShaoyun Liu  */
39e42051d2SShaoyun Liu static atomic_t kfd_locked = ATOMIC_INIT(0);
4019f6d2a6SOded Gabbay 
4164d1c3a4SFelix Kuehling #ifdef KFD_SUPPORT_IOMMU_V2
424a488a7aSOded Gabbay static const struct kfd_device_info kaveri_device_info = {
430da7558cSBen Goz 	.asic_family = CHIP_KAVERI,
440da7558cSBen Goz 	.max_pasid_bits = 16,
45992839adSYair Shachar 	/* max num of queues for KV.TODO should be a dynamic value */
46992839adSYair Shachar 	.max_no_of_hqd	= 24,
47ada2b29cSFelix Kuehling 	.doorbell_size  = 4,
480da7558cSBen Goz 	.ih_ring_entry_size = 4 * sizeof(uint32_t),
49f3a39818SAndrew Lewycky 	.event_interrupt_class = &event_interrupt_class_cik,
50fbeb661bSYair Shachar 	.num_of_watch_points = 4,
51373d7080SFelix Kuehling 	.mqd_size_aligned = MQD_SIZE_ALIGNED,
52373d7080SFelix Kuehling 	.supports_cwsr = false,
5364d1c3a4SFelix Kuehling 	.needs_iommu_device = true,
543ee2d00cSFelix Kuehling 	.needs_pci_atomics = false,
5598bb9222SYong Zhao 	.num_sdma_engines = 2,
56*d5094189SShaoyun Liu 	.num_sdma_queues_per_engine = 2,
570da7558cSBen Goz };
580da7558cSBen Goz 
590da7558cSBen Goz static const struct kfd_device_info carrizo_device_info = {
600da7558cSBen Goz 	.asic_family = CHIP_CARRIZO,
614a488a7aSOded Gabbay 	.max_pasid_bits = 16,
62eaccd6e7SOded Gabbay 	/* max num of queues for CZ.TODO should be a dynamic value */
63eaccd6e7SOded Gabbay 	.max_no_of_hqd	= 24,
64ada2b29cSFelix Kuehling 	.doorbell_size  = 4,
65b3f5e6b4SAndrew Lewycky 	.ih_ring_entry_size = 4 * sizeof(uint32_t),
66eaccd6e7SOded Gabbay 	.event_interrupt_class = &event_interrupt_class_cik,
67f7c826adSAlexey Skidanov 	.num_of_watch_points = 4,
68373d7080SFelix Kuehling 	.mqd_size_aligned = MQD_SIZE_ALIGNED,
69373d7080SFelix Kuehling 	.supports_cwsr = true,
7064d1c3a4SFelix Kuehling 	.needs_iommu_device = true,
713ee2d00cSFelix Kuehling 	.needs_pci_atomics = false,
7298bb9222SYong Zhao 	.num_sdma_engines = 2,
73*d5094189SShaoyun Liu 	.num_sdma_queues_per_engine = 2,
744a488a7aSOded Gabbay };
754d663df6SYong Zhao 
764d663df6SYong Zhao static const struct kfd_device_info raven_device_info = {
774d663df6SYong Zhao 	.asic_family = CHIP_RAVEN,
784d663df6SYong Zhao 	.max_pasid_bits = 16,
794d663df6SYong Zhao 	.max_no_of_hqd  = 24,
804d663df6SYong Zhao 	.doorbell_size  = 8,
814d663df6SYong Zhao 	.ih_ring_entry_size = 8 * sizeof(uint32_t),
824d663df6SYong Zhao 	.event_interrupt_class = &event_interrupt_class_v9,
834d663df6SYong Zhao 	.num_of_watch_points = 4,
844d663df6SYong Zhao 	.mqd_size_aligned = MQD_SIZE_ALIGNED,
854d663df6SYong Zhao 	.supports_cwsr = true,
864d663df6SYong Zhao 	.needs_iommu_device = true,
874d663df6SYong Zhao 	.needs_pci_atomics = true,
884d663df6SYong Zhao 	.num_sdma_engines = 1,
89*d5094189SShaoyun Liu 	.num_sdma_queues_per_engine = 2,
904d663df6SYong Zhao };
9164d1c3a4SFelix Kuehling #endif
924a488a7aSOded Gabbay 
93a3084e6cSFelix Kuehling static const struct kfd_device_info hawaii_device_info = {
94a3084e6cSFelix Kuehling 	.asic_family = CHIP_HAWAII,
95a3084e6cSFelix Kuehling 	.max_pasid_bits = 16,
96a3084e6cSFelix Kuehling 	/* max num of queues for KV.TODO should be a dynamic value */
97a3084e6cSFelix Kuehling 	.max_no_of_hqd	= 24,
98ada2b29cSFelix Kuehling 	.doorbell_size  = 4,
99a3084e6cSFelix Kuehling 	.ih_ring_entry_size = 4 * sizeof(uint32_t),
100a3084e6cSFelix Kuehling 	.event_interrupt_class = &event_interrupt_class_cik,
101a3084e6cSFelix Kuehling 	.num_of_watch_points = 4,
102a3084e6cSFelix Kuehling 	.mqd_size_aligned = MQD_SIZE_ALIGNED,
103a3084e6cSFelix Kuehling 	.supports_cwsr = false,
10464d1c3a4SFelix Kuehling 	.needs_iommu_device = false,
105a3084e6cSFelix Kuehling 	.needs_pci_atomics = false,
10698bb9222SYong Zhao 	.num_sdma_engines = 2,
107*d5094189SShaoyun Liu 	.num_sdma_queues_per_engine = 2,
108a3084e6cSFelix Kuehling };
109a3084e6cSFelix Kuehling 
110a3084e6cSFelix Kuehling static const struct kfd_device_info tonga_device_info = {
111a3084e6cSFelix Kuehling 	.asic_family = CHIP_TONGA,
112a3084e6cSFelix Kuehling 	.max_pasid_bits = 16,
113a3084e6cSFelix Kuehling 	.max_no_of_hqd  = 24,
114ada2b29cSFelix Kuehling 	.doorbell_size  = 4,
115a3084e6cSFelix Kuehling 	.ih_ring_entry_size = 4 * sizeof(uint32_t),
116a3084e6cSFelix Kuehling 	.event_interrupt_class = &event_interrupt_class_cik,
117a3084e6cSFelix Kuehling 	.num_of_watch_points = 4,
118a3084e6cSFelix Kuehling 	.mqd_size_aligned = MQD_SIZE_ALIGNED,
119a3084e6cSFelix Kuehling 	.supports_cwsr = false,
12064d1c3a4SFelix Kuehling 	.needs_iommu_device = false,
121a3084e6cSFelix Kuehling 	.needs_pci_atomics = true,
12298bb9222SYong Zhao 	.num_sdma_engines = 2,
123*d5094189SShaoyun Liu 	.num_sdma_queues_per_engine = 2,
124a3084e6cSFelix Kuehling };
125a3084e6cSFelix Kuehling 
126a3084e6cSFelix Kuehling static const struct kfd_device_info fiji_device_info = {
127a3084e6cSFelix Kuehling 	.asic_family = CHIP_FIJI,
128a3084e6cSFelix Kuehling 	.max_pasid_bits = 16,
129a3084e6cSFelix Kuehling 	.max_no_of_hqd  = 24,
130ada2b29cSFelix Kuehling 	.doorbell_size  = 4,
131a3084e6cSFelix Kuehling 	.ih_ring_entry_size = 4 * sizeof(uint32_t),
132a3084e6cSFelix Kuehling 	.event_interrupt_class = &event_interrupt_class_cik,
133a3084e6cSFelix Kuehling 	.num_of_watch_points = 4,
134a3084e6cSFelix Kuehling 	.mqd_size_aligned = MQD_SIZE_ALIGNED,
135a3084e6cSFelix Kuehling 	.supports_cwsr = true,
13664d1c3a4SFelix Kuehling 	.needs_iommu_device = false,
137a3084e6cSFelix Kuehling 	.needs_pci_atomics = true,
13898bb9222SYong Zhao 	.num_sdma_engines = 2,
139*d5094189SShaoyun Liu 	.num_sdma_queues_per_engine = 2,
140a3084e6cSFelix Kuehling };
141a3084e6cSFelix Kuehling 
142a3084e6cSFelix Kuehling static const struct kfd_device_info fiji_vf_device_info = {
143a3084e6cSFelix Kuehling 	.asic_family = CHIP_FIJI,
144a3084e6cSFelix Kuehling 	.max_pasid_bits = 16,
145a3084e6cSFelix Kuehling 	.max_no_of_hqd  = 24,
146ada2b29cSFelix Kuehling 	.doorbell_size  = 4,
147a3084e6cSFelix Kuehling 	.ih_ring_entry_size = 4 * sizeof(uint32_t),
148a3084e6cSFelix Kuehling 	.event_interrupt_class = &event_interrupt_class_cik,
149a3084e6cSFelix Kuehling 	.num_of_watch_points = 4,
150a3084e6cSFelix Kuehling 	.mqd_size_aligned = MQD_SIZE_ALIGNED,
151a3084e6cSFelix Kuehling 	.supports_cwsr = true,
15264d1c3a4SFelix Kuehling 	.needs_iommu_device = false,
153a3084e6cSFelix Kuehling 	.needs_pci_atomics = false,
15498bb9222SYong Zhao 	.num_sdma_engines = 2,
155*d5094189SShaoyun Liu 	.num_sdma_queues_per_engine = 2,
156a3084e6cSFelix Kuehling };
157a3084e6cSFelix Kuehling 
158a3084e6cSFelix Kuehling 
159a3084e6cSFelix Kuehling static const struct kfd_device_info polaris10_device_info = {
160a3084e6cSFelix Kuehling 	.asic_family = CHIP_POLARIS10,
161a3084e6cSFelix Kuehling 	.max_pasid_bits = 16,
162a3084e6cSFelix Kuehling 	.max_no_of_hqd  = 24,
163ada2b29cSFelix Kuehling 	.doorbell_size  = 4,
164a3084e6cSFelix Kuehling 	.ih_ring_entry_size = 4 * sizeof(uint32_t),
165a3084e6cSFelix Kuehling 	.event_interrupt_class = &event_interrupt_class_cik,
166a3084e6cSFelix Kuehling 	.num_of_watch_points = 4,
167a3084e6cSFelix Kuehling 	.mqd_size_aligned = MQD_SIZE_ALIGNED,
168a3084e6cSFelix Kuehling 	.supports_cwsr = true,
16964d1c3a4SFelix Kuehling 	.needs_iommu_device = false,
170a3084e6cSFelix Kuehling 	.needs_pci_atomics = true,
17198bb9222SYong Zhao 	.num_sdma_engines = 2,
172*d5094189SShaoyun Liu 	.num_sdma_queues_per_engine = 2,
173a3084e6cSFelix Kuehling };
174a3084e6cSFelix Kuehling 
175a3084e6cSFelix Kuehling static const struct kfd_device_info polaris10_vf_device_info = {
176a3084e6cSFelix Kuehling 	.asic_family = CHIP_POLARIS10,
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 = false,
18798bb9222SYong Zhao 	.num_sdma_engines = 2,
188*d5094189SShaoyun Liu 	.num_sdma_queues_per_engine = 2,
189a3084e6cSFelix Kuehling };
190a3084e6cSFelix Kuehling 
191a3084e6cSFelix Kuehling static const struct kfd_device_info polaris11_device_info = {
192a3084e6cSFelix Kuehling 	.asic_family = CHIP_POLARIS11,
193a3084e6cSFelix Kuehling 	.max_pasid_bits = 16,
194a3084e6cSFelix Kuehling 	.max_no_of_hqd  = 24,
195ada2b29cSFelix Kuehling 	.doorbell_size  = 4,
196a3084e6cSFelix Kuehling 	.ih_ring_entry_size = 4 * sizeof(uint32_t),
197a3084e6cSFelix Kuehling 	.event_interrupt_class = &event_interrupt_class_cik,
198a3084e6cSFelix Kuehling 	.num_of_watch_points = 4,
199a3084e6cSFelix Kuehling 	.mqd_size_aligned = MQD_SIZE_ALIGNED,
200a3084e6cSFelix Kuehling 	.supports_cwsr = true,
20164d1c3a4SFelix Kuehling 	.needs_iommu_device = false,
202a3084e6cSFelix Kuehling 	.needs_pci_atomics = true,
20398bb9222SYong Zhao 	.num_sdma_engines = 2,
204*d5094189SShaoyun Liu 	.num_sdma_queues_per_engine = 2,
205a3084e6cSFelix Kuehling };
206a3084e6cSFelix Kuehling 
207389056e5SFelix Kuehling static const struct kfd_device_info vega10_device_info = {
208389056e5SFelix Kuehling 	.asic_family = CHIP_VEGA10,
209389056e5SFelix Kuehling 	.max_pasid_bits = 16,
210389056e5SFelix Kuehling 	.max_no_of_hqd  = 24,
211389056e5SFelix Kuehling 	.doorbell_size  = 8,
212389056e5SFelix Kuehling 	.ih_ring_entry_size = 8 * sizeof(uint32_t),
213389056e5SFelix Kuehling 	.event_interrupt_class = &event_interrupt_class_v9,
214389056e5SFelix Kuehling 	.num_of_watch_points = 4,
215389056e5SFelix Kuehling 	.mqd_size_aligned = MQD_SIZE_ALIGNED,
216389056e5SFelix Kuehling 	.supports_cwsr = true,
217389056e5SFelix Kuehling 	.needs_iommu_device = false,
218389056e5SFelix Kuehling 	.needs_pci_atomics = false,
21998bb9222SYong Zhao 	.num_sdma_engines = 2,
220*d5094189SShaoyun Liu 	.num_sdma_queues_per_engine = 2,
221389056e5SFelix Kuehling };
222389056e5SFelix Kuehling 
223389056e5SFelix Kuehling static const struct kfd_device_info vega10_vf_device_info = {
224389056e5SFelix Kuehling 	.asic_family = CHIP_VEGA10,
225389056e5SFelix Kuehling 	.max_pasid_bits = 16,
226389056e5SFelix Kuehling 	.max_no_of_hqd  = 24,
227389056e5SFelix Kuehling 	.doorbell_size  = 8,
228389056e5SFelix Kuehling 	.ih_ring_entry_size = 8 * sizeof(uint32_t),
229389056e5SFelix Kuehling 	.event_interrupt_class = &event_interrupt_class_v9,
230389056e5SFelix Kuehling 	.num_of_watch_points = 4,
231389056e5SFelix Kuehling 	.mqd_size_aligned = MQD_SIZE_ALIGNED,
232389056e5SFelix Kuehling 	.supports_cwsr = true,
233389056e5SFelix Kuehling 	.needs_iommu_device = false,
234389056e5SFelix Kuehling 	.needs_pci_atomics = false,
23598bb9222SYong Zhao 	.num_sdma_engines = 2,
236*d5094189SShaoyun Liu 	.num_sdma_queues_per_engine = 2,
237389056e5SFelix Kuehling };
238389056e5SFelix Kuehling 
2394a488a7aSOded Gabbay struct kfd_deviceid {
2404a488a7aSOded Gabbay 	unsigned short did;
2414a488a7aSOded Gabbay 	const struct kfd_device_info *device_info;
2424a488a7aSOded Gabbay };
2434a488a7aSOded Gabbay 
2444a488a7aSOded Gabbay static const struct kfd_deviceid supported_devices[] = {
24564d1c3a4SFelix Kuehling #ifdef KFD_SUPPORT_IOMMU_V2
2464a488a7aSOded Gabbay 	{ 0x1304, &kaveri_device_info },	/* Kaveri */
2474a488a7aSOded Gabbay 	{ 0x1305, &kaveri_device_info },	/* Kaveri */
2484a488a7aSOded Gabbay 	{ 0x1306, &kaveri_device_info },	/* Kaveri */
2494a488a7aSOded Gabbay 	{ 0x1307, &kaveri_device_info },	/* Kaveri */
2504a488a7aSOded Gabbay 	{ 0x1309, &kaveri_device_info },	/* Kaveri */
2514a488a7aSOded Gabbay 	{ 0x130A, &kaveri_device_info },	/* Kaveri */
2524a488a7aSOded Gabbay 	{ 0x130B, &kaveri_device_info },	/* Kaveri */
2534a488a7aSOded Gabbay 	{ 0x130C, &kaveri_device_info },	/* Kaveri */
2544a488a7aSOded Gabbay 	{ 0x130D, &kaveri_device_info },	/* Kaveri */
2554a488a7aSOded Gabbay 	{ 0x130E, &kaveri_device_info },	/* Kaveri */
2564a488a7aSOded Gabbay 	{ 0x130F, &kaveri_device_info },	/* Kaveri */
2574a488a7aSOded Gabbay 	{ 0x1310, &kaveri_device_info },	/* Kaveri */
2584a488a7aSOded Gabbay 	{ 0x1311, &kaveri_device_info },	/* Kaveri */
2594a488a7aSOded Gabbay 	{ 0x1312, &kaveri_device_info },	/* Kaveri */
2604a488a7aSOded Gabbay 	{ 0x1313, &kaveri_device_info },	/* Kaveri */
2614a488a7aSOded Gabbay 	{ 0x1315, &kaveri_device_info },	/* Kaveri */
2624a488a7aSOded Gabbay 	{ 0x1316, &kaveri_device_info },	/* Kaveri */
2634a488a7aSOded Gabbay 	{ 0x1317, &kaveri_device_info },	/* Kaveri */
2644a488a7aSOded Gabbay 	{ 0x1318, &kaveri_device_info },	/* Kaveri */
2654a488a7aSOded Gabbay 	{ 0x131B, &kaveri_device_info },	/* Kaveri */
2664a488a7aSOded Gabbay 	{ 0x131C, &kaveri_device_info },	/* Kaveri */
267123576d1SBen Goz 	{ 0x131D, &kaveri_device_info },	/* Kaveri */
268123576d1SBen Goz 	{ 0x9870, &carrizo_device_info },	/* Carrizo */
269123576d1SBen Goz 	{ 0x9874, &carrizo_device_info },	/* Carrizo */
270123576d1SBen Goz 	{ 0x9875, &carrizo_device_info },	/* Carrizo */
271123576d1SBen Goz 	{ 0x9876, &carrizo_device_info },	/* Carrizo */
272a3084e6cSFelix Kuehling 	{ 0x9877, &carrizo_device_info },	/* Carrizo */
2734d663df6SYong Zhao 	{ 0x15DD, &raven_device_info },		/* Raven */
27464d1c3a4SFelix Kuehling #endif
275a3084e6cSFelix Kuehling 	{ 0x67A0, &hawaii_device_info },	/* Hawaii */
276a3084e6cSFelix Kuehling 	{ 0x67A1, &hawaii_device_info },	/* Hawaii */
277a3084e6cSFelix Kuehling 	{ 0x67A2, &hawaii_device_info },	/* Hawaii */
278a3084e6cSFelix Kuehling 	{ 0x67A8, &hawaii_device_info },	/* Hawaii */
279a3084e6cSFelix Kuehling 	{ 0x67A9, &hawaii_device_info },	/* Hawaii */
280a3084e6cSFelix Kuehling 	{ 0x67AA, &hawaii_device_info },	/* Hawaii */
281a3084e6cSFelix Kuehling 	{ 0x67B0, &hawaii_device_info },	/* Hawaii */
282a3084e6cSFelix Kuehling 	{ 0x67B1, &hawaii_device_info },	/* Hawaii */
283a3084e6cSFelix Kuehling 	{ 0x67B8, &hawaii_device_info },	/* Hawaii */
284a3084e6cSFelix Kuehling 	{ 0x67B9, &hawaii_device_info },	/* Hawaii */
285a3084e6cSFelix Kuehling 	{ 0x67BA, &hawaii_device_info },	/* Hawaii */
286a3084e6cSFelix Kuehling 	{ 0x67BE, &hawaii_device_info },	/* Hawaii */
287a3084e6cSFelix Kuehling 	{ 0x6920, &tonga_device_info },		/* Tonga */
288a3084e6cSFelix Kuehling 	{ 0x6921, &tonga_device_info },		/* Tonga */
289a3084e6cSFelix Kuehling 	{ 0x6928, &tonga_device_info },		/* Tonga */
290a3084e6cSFelix Kuehling 	{ 0x6929, &tonga_device_info },		/* Tonga */
291a3084e6cSFelix Kuehling 	{ 0x692B, &tonga_device_info },		/* Tonga */
292a3084e6cSFelix Kuehling 	{ 0x6938, &tonga_device_info },		/* Tonga */
293a3084e6cSFelix Kuehling 	{ 0x6939, &tonga_device_info },		/* Tonga */
294a3084e6cSFelix Kuehling 	{ 0x7300, &fiji_device_info },		/* Fiji */
295a3084e6cSFelix Kuehling 	{ 0x730F, &fiji_vf_device_info },	/* Fiji vf*/
296a3084e6cSFelix Kuehling 	{ 0x67C0, &polaris10_device_info },	/* Polaris10 */
297a3084e6cSFelix Kuehling 	{ 0x67C1, &polaris10_device_info },	/* Polaris10 */
298a3084e6cSFelix Kuehling 	{ 0x67C2, &polaris10_device_info },	/* Polaris10 */
299a3084e6cSFelix Kuehling 	{ 0x67C4, &polaris10_device_info },	/* Polaris10 */
300a3084e6cSFelix Kuehling 	{ 0x67C7, &polaris10_device_info },	/* Polaris10 */
301a3084e6cSFelix Kuehling 	{ 0x67C8, &polaris10_device_info },	/* Polaris10 */
302a3084e6cSFelix Kuehling 	{ 0x67C9, &polaris10_device_info },	/* Polaris10 */
303a3084e6cSFelix Kuehling 	{ 0x67CA, &polaris10_device_info },	/* Polaris10 */
304a3084e6cSFelix Kuehling 	{ 0x67CC, &polaris10_device_info },	/* Polaris10 */
305a3084e6cSFelix Kuehling 	{ 0x67CF, &polaris10_device_info },	/* Polaris10 */
306a3084e6cSFelix Kuehling 	{ 0x67D0, &polaris10_vf_device_info },	/* Polaris10 vf*/
307a3084e6cSFelix Kuehling 	{ 0x67DF, &polaris10_device_info },	/* Polaris10 */
308a3084e6cSFelix Kuehling 	{ 0x67E0, &polaris11_device_info },	/* Polaris11 */
309a3084e6cSFelix Kuehling 	{ 0x67E1, &polaris11_device_info },	/* Polaris11 */
310a3084e6cSFelix Kuehling 	{ 0x67E3, &polaris11_device_info },	/* Polaris11 */
311a3084e6cSFelix Kuehling 	{ 0x67E7, &polaris11_device_info },	/* Polaris11 */
312a3084e6cSFelix Kuehling 	{ 0x67E8, &polaris11_device_info },	/* Polaris11 */
313a3084e6cSFelix Kuehling 	{ 0x67E9, &polaris11_device_info },	/* Polaris11 */
314a3084e6cSFelix Kuehling 	{ 0x67EB, &polaris11_device_info },	/* Polaris11 */
315a3084e6cSFelix Kuehling 	{ 0x67EF, &polaris11_device_info },	/* Polaris11 */
316a3084e6cSFelix Kuehling 	{ 0x67FF, &polaris11_device_info },	/* Polaris11 */
317389056e5SFelix Kuehling 	{ 0x6860, &vega10_device_info },	/* Vega10 */
318389056e5SFelix Kuehling 	{ 0x6861, &vega10_device_info },	/* Vega10 */
319389056e5SFelix Kuehling 	{ 0x6862, &vega10_device_info },	/* Vega10 */
320389056e5SFelix Kuehling 	{ 0x6863, &vega10_device_info },	/* Vega10 */
321389056e5SFelix Kuehling 	{ 0x6864, &vega10_device_info },	/* Vega10 */
322389056e5SFelix Kuehling 	{ 0x6867, &vega10_device_info },	/* Vega10 */
323389056e5SFelix Kuehling 	{ 0x6868, &vega10_device_info },	/* Vega10 */
324389056e5SFelix Kuehling 	{ 0x686C, &vega10_vf_device_info },	/* Vega10  vf*/
325389056e5SFelix Kuehling 	{ 0x687F, &vega10_device_info },	/* Vega10 */
3264a488a7aSOded Gabbay };
3274a488a7aSOded Gabbay 
3286e81090bSOded Gabbay static int kfd_gtt_sa_init(struct kfd_dev *kfd, unsigned int buf_size,
3296e81090bSOded Gabbay 				unsigned int chunk_size);
3306e81090bSOded Gabbay static void kfd_gtt_sa_fini(struct kfd_dev *kfd);
3316e81090bSOded Gabbay 
332b8935a7cSYong Zhao static int kfd_resume(struct kfd_dev *kfd);
333b8935a7cSYong Zhao 
3344a488a7aSOded Gabbay static const struct kfd_device_info *lookup_device_info(unsigned short did)
3354a488a7aSOded Gabbay {
3364a488a7aSOded Gabbay 	size_t i;
3374a488a7aSOded Gabbay 
3384a488a7aSOded Gabbay 	for (i = 0; i < ARRAY_SIZE(supported_devices); i++) {
3394a488a7aSOded Gabbay 		if (supported_devices[i].did == did) {
34032fa8219SFelix Kuehling 			WARN_ON(!supported_devices[i].device_info);
3414a488a7aSOded Gabbay 			return supported_devices[i].device_info;
3424a488a7aSOded Gabbay 		}
3434a488a7aSOded Gabbay 	}
3444a488a7aSOded Gabbay 
3454ebc7182SYong Zhao 	dev_warn(kfd_device, "DID %04x is missing in supported_devices\n",
3464ebc7182SYong Zhao 		 did);
3474ebc7182SYong Zhao 
3484a488a7aSOded Gabbay 	return NULL;
3494a488a7aSOded Gabbay }
3504a488a7aSOded Gabbay 
351cea405b1SXihan Zhang struct kfd_dev *kgd2kfd_probe(struct kgd_dev *kgd,
352cea405b1SXihan Zhang 	struct pci_dev *pdev, const struct kfd2kgd_calls *f2g)
3534a488a7aSOded Gabbay {
3544a488a7aSOded Gabbay 	struct kfd_dev *kfd;
3556106dce9Swelu 	int ret;
3564a488a7aSOded Gabbay 	const struct kfd_device_info *device_info =
3574a488a7aSOded Gabbay 					lookup_device_info(pdev->device);
3584a488a7aSOded Gabbay 
3594ebc7182SYong Zhao 	if (!device_info) {
3604ebc7182SYong Zhao 		dev_err(kfd_device, "kgd2kfd_probe failed\n");
3614a488a7aSOded Gabbay 		return NULL;
3624ebc7182SYong Zhao 	}
3634a488a7aSOded Gabbay 
364d35f00d8SEric Huang 	kfd = kzalloc(sizeof(*kfd), GFP_KERNEL);
365d35f00d8SEric Huang 	if (!kfd)
366d35f00d8SEric Huang 		return NULL;
367d35f00d8SEric Huang 
3686106dce9Swelu 	/* Allow BIF to recode atomics to PCIe 3.0 AtomicOps.
3696106dce9Swelu 	 * 32 and 64-bit requests are possible and must be
3706106dce9Swelu 	 * supported.
3713ee2d00cSFelix Kuehling 	 */
3726106dce9Swelu 	ret = pci_enable_atomic_ops_to_root(pdev,
3733ee2d00cSFelix Kuehling 			PCI_EXP_DEVCAP2_ATOMIC_COMP32 |
3746106dce9Swelu 			PCI_EXP_DEVCAP2_ATOMIC_COMP64);
3756106dce9Swelu 	if (device_info->needs_pci_atomics && ret < 0) {
3763ee2d00cSFelix Kuehling 		dev_info(kfd_device,
3776106dce9Swelu 			 "skipped device %x:%x, PCI rejects atomics\n",
3783ee2d00cSFelix Kuehling 			 pdev->vendor, pdev->device);
379d35f00d8SEric Huang 		kfree(kfd);
3803ee2d00cSFelix Kuehling 		return NULL;
381d35f00d8SEric Huang 	} else if (!ret)
382d35f00d8SEric Huang 		kfd->pci_atomic_requested = true;
3834a488a7aSOded Gabbay 
3844a488a7aSOded Gabbay 	kfd->kgd = kgd;
3854a488a7aSOded Gabbay 	kfd->device_info = device_info;
3864a488a7aSOded Gabbay 	kfd->pdev = pdev;
38719f6d2a6SOded Gabbay 	kfd->init_complete = false;
388cea405b1SXihan Zhang 	kfd->kfd2kgd = f2g;
389cea405b1SXihan Zhang 
390cea405b1SXihan Zhang 	mutex_init(&kfd->doorbell_mutex);
391cea405b1SXihan Zhang 	memset(&kfd->doorbell_available_index, 0,
392cea405b1SXihan Zhang 		sizeof(kfd->doorbell_available_index));
3934a488a7aSOded Gabbay 
3944a488a7aSOded Gabbay 	return kfd;
3954a488a7aSOded Gabbay }
3964a488a7aSOded Gabbay 
397373d7080SFelix Kuehling static void kfd_cwsr_init(struct kfd_dev *kfd)
398373d7080SFelix Kuehling {
399373d7080SFelix Kuehling 	if (cwsr_enable && kfd->device_info->supports_cwsr) {
4003e76c239SFelix Kuehling 		if (kfd->device_info->asic_family < CHIP_VEGA10) {
401373d7080SFelix Kuehling 			BUILD_BUG_ON(sizeof(cwsr_trap_gfx8_hex) > PAGE_SIZE);
402373d7080SFelix Kuehling 			kfd->cwsr_isa = cwsr_trap_gfx8_hex;
403373d7080SFelix Kuehling 			kfd->cwsr_isa_size = sizeof(cwsr_trap_gfx8_hex);
4043e76c239SFelix Kuehling 		} else {
4053e76c239SFelix Kuehling 			BUILD_BUG_ON(sizeof(cwsr_trap_gfx9_hex) > PAGE_SIZE);
4063e76c239SFelix Kuehling 			kfd->cwsr_isa = cwsr_trap_gfx9_hex;
4073e76c239SFelix Kuehling 			kfd->cwsr_isa_size = sizeof(cwsr_trap_gfx9_hex);
4083e76c239SFelix Kuehling 		}
4093e76c239SFelix Kuehling 
410373d7080SFelix Kuehling 		kfd->cwsr_enabled = true;
411373d7080SFelix Kuehling 	}
412373d7080SFelix Kuehling }
413373d7080SFelix Kuehling 
4144a488a7aSOded Gabbay bool kgd2kfd_device_init(struct kfd_dev *kfd,
4154a488a7aSOded Gabbay 			 const struct kgd2kfd_shared_resources *gpu_resources)
4164a488a7aSOded Gabbay {
41719f6d2a6SOded Gabbay 	unsigned int size;
41819f6d2a6SOded Gabbay 
4195ade6c9cSFelix Kuehling 	kfd->mec_fw_version = kfd->kfd2kgd->get_fw_version(kfd->kgd,
4205ade6c9cSFelix Kuehling 			KGD_ENGINE_MEC1);
4215ade6c9cSFelix Kuehling 	kfd->sdma_fw_version = kfd->kfd2kgd->get_fw_version(kfd->kgd,
4225ade6c9cSFelix Kuehling 			KGD_ENGINE_SDMA1);
4234a488a7aSOded Gabbay 	kfd->shared_resources = *gpu_resources;
4244a488a7aSOded Gabbay 
42544008d7aSYong Zhao 	kfd->vm_info.first_vmid_kfd = ffs(gpu_resources->compute_vmid_bitmap)-1;
42644008d7aSYong Zhao 	kfd->vm_info.last_vmid_kfd = fls(gpu_resources->compute_vmid_bitmap)-1;
42744008d7aSYong Zhao 	kfd->vm_info.vmid_num_kfd = kfd->vm_info.last_vmid_kfd
42844008d7aSYong Zhao 			- kfd->vm_info.first_vmid_kfd + 1;
42944008d7aSYong Zhao 
430a99c6d4fSFelix Kuehling 	/* Verify module parameters regarding mapped process number*/
431a99c6d4fSFelix Kuehling 	if ((hws_max_conc_proc < 0)
432a99c6d4fSFelix Kuehling 			|| (hws_max_conc_proc > kfd->vm_info.vmid_num_kfd)) {
433a99c6d4fSFelix Kuehling 		dev_err(kfd_device,
434a99c6d4fSFelix Kuehling 			"hws_max_conc_proc %d must be between 0 and %d, use %d instead\n",
435a99c6d4fSFelix Kuehling 			hws_max_conc_proc, kfd->vm_info.vmid_num_kfd,
436a99c6d4fSFelix Kuehling 			kfd->vm_info.vmid_num_kfd);
437a99c6d4fSFelix Kuehling 		kfd->max_proc_per_quantum = kfd->vm_info.vmid_num_kfd;
438a99c6d4fSFelix Kuehling 	} else
439a99c6d4fSFelix Kuehling 		kfd->max_proc_per_quantum = hws_max_conc_proc;
440a99c6d4fSFelix Kuehling 
44119f6d2a6SOded Gabbay 	/* calculate max size of mqds needed for queues */
442b8cbab04SOded Gabbay 	size = max_num_of_queues_per_device *
44319f6d2a6SOded Gabbay 			kfd->device_info->mqd_size_aligned;
44419f6d2a6SOded Gabbay 
445e18e794eSOded Gabbay 	/*
446e18e794eSOded Gabbay 	 * calculate max size of runlist packet.
447e18e794eSOded Gabbay 	 * There can be only 2 packets at once
448e18e794eSOded Gabbay 	 */
449507968ddSFelix Kuehling 	size += (KFD_MAX_NUM_OF_PROCESSES * sizeof(struct pm4_mes_map_process) +
450507968ddSFelix Kuehling 		max_num_of_queues_per_device * sizeof(struct pm4_mes_map_queues)
451507968ddSFelix Kuehling 		+ sizeof(struct pm4_mes_runlist)) * 2;
452e18e794eSOded Gabbay 
453e18e794eSOded Gabbay 	/* Add size of HIQ & DIQ */
454e18e794eSOded Gabbay 	size += KFD_KERNEL_QUEUE_SIZE * 2;
455e18e794eSOded Gabbay 
456e18e794eSOded Gabbay 	/* add another 512KB for all other allocations on gart (HPD, fences) */
45719f6d2a6SOded Gabbay 	size += 512 * 1024;
45819f6d2a6SOded Gabbay 
459cea405b1SXihan Zhang 	if (kfd->kfd2kgd->init_gtt_mem_allocation(
460cea405b1SXihan Zhang 			kfd->kgd, size, &kfd->gtt_mem,
46115426dbbSYong Zhao 			&kfd->gtt_start_gpu_addr, &kfd->gtt_start_cpu_ptr,
46215426dbbSYong Zhao 			false)) {
46379775b62SKent Russell 		dev_err(kfd_device, "Could not allocate %d bytes\n", size);
46419f6d2a6SOded Gabbay 		goto out;
46519f6d2a6SOded Gabbay 	}
46619f6d2a6SOded Gabbay 
46779775b62SKent Russell 	dev_info(kfd_device, "Allocated %d bytes on gart\n", size);
468e18e794eSOded Gabbay 
46973a1da0bSOded Gabbay 	/* Initialize GTT sa with 512 byte chunk size */
47073a1da0bSOded Gabbay 	if (kfd_gtt_sa_init(kfd, size, 512) != 0) {
47179775b62SKent Russell 		dev_err(kfd_device, "Error initializing gtt sub-allocator\n");
47273a1da0bSOded Gabbay 		goto kfd_gtt_sa_init_error;
47373a1da0bSOded Gabbay 	}
47473a1da0bSOded Gabbay 
475735df2baSFelix Kuehling 	if (kfd_doorbell_init(kfd)) {
476735df2baSFelix Kuehling 		dev_err(kfd_device,
477735df2baSFelix Kuehling 			"Error initializing doorbell aperture\n");
478735df2baSFelix Kuehling 		goto kfd_doorbell_error;
479735df2baSFelix Kuehling 	}
48019f6d2a6SOded Gabbay 
4810c1690e3SShaoyun Liu 	if (kfd->kfd2kgd->get_hive_id)
4820c1690e3SShaoyun Liu 		kfd->hive_id = kfd->kfd2kgd->get_hive_id(kfd->kgd);
4830c1690e3SShaoyun Liu 
4844eacc26bSKent Russell 	if (kfd_topology_add_device(kfd)) {
48579775b62SKent Russell 		dev_err(kfd_device, "Error adding device to topology\n");
48619f6d2a6SOded Gabbay 		goto kfd_topology_add_device_error;
48719f6d2a6SOded Gabbay 	}
48819f6d2a6SOded Gabbay 
4892249d558SAndrew Lewycky 	if (kfd_interrupt_init(kfd)) {
49079775b62SKent Russell 		dev_err(kfd_device, "Error initializing interrupts\n");
4912249d558SAndrew Lewycky 		goto kfd_interrupt_error;
4922249d558SAndrew Lewycky 	}
4932249d558SAndrew Lewycky 
49464c7f8cfSBen Goz 	kfd->dqm = device_queue_manager_init(kfd);
49564c7f8cfSBen Goz 	if (!kfd->dqm) {
49679775b62SKent Russell 		dev_err(kfd_device, "Error initializing queue manager\n");
49764c7f8cfSBen Goz 		goto device_queue_manager_error;
49864c7f8cfSBen Goz 	}
49964c7f8cfSBen Goz 
50064d1c3a4SFelix Kuehling 	if (kfd_iommu_device_init(kfd)) {
50164d1c3a4SFelix Kuehling 		dev_err(kfd_device, "Error initializing iommuv2\n");
50264d1c3a4SFelix Kuehling 		goto device_iommu_error;
50364c7f8cfSBen Goz 	}
50464c7f8cfSBen Goz 
505373d7080SFelix Kuehling 	kfd_cwsr_init(kfd);
506373d7080SFelix Kuehling 
507b8935a7cSYong Zhao 	if (kfd_resume(kfd))
508b8935a7cSYong Zhao 		goto kfd_resume_error;
509b8935a7cSYong Zhao 
510fbeb661bSYair Shachar 	kfd->dbgmgr = NULL;
511fbeb661bSYair Shachar 
5124a488a7aSOded Gabbay 	kfd->init_complete = true;
51379775b62SKent Russell 	dev_info(kfd_device, "added device %x:%x\n", kfd->pdev->vendor,
5144a488a7aSOded Gabbay 		 kfd->pdev->device);
5154a488a7aSOded Gabbay 
51679775b62SKent Russell 	pr_debug("Starting kfd with the following scheduling policy %d\n",
517d146c5a7SFelix Kuehling 		kfd->dqm->sched_policy);
51864c7f8cfSBen Goz 
51919f6d2a6SOded Gabbay 	goto out;
52019f6d2a6SOded Gabbay 
521b8935a7cSYong Zhao kfd_resume_error:
52264d1c3a4SFelix Kuehling device_iommu_error:
52364c7f8cfSBen Goz 	device_queue_manager_uninit(kfd->dqm);
52464c7f8cfSBen Goz device_queue_manager_error:
5252249d558SAndrew Lewycky 	kfd_interrupt_exit(kfd);
5262249d558SAndrew Lewycky kfd_interrupt_error:
527b17f068aSOded Gabbay 	kfd_topology_remove_device(kfd);
52819f6d2a6SOded Gabbay kfd_topology_add_device_error:
529735df2baSFelix Kuehling 	kfd_doorbell_fini(kfd);
530735df2baSFelix Kuehling kfd_doorbell_error:
53173a1da0bSOded Gabbay 	kfd_gtt_sa_fini(kfd);
53273a1da0bSOded Gabbay kfd_gtt_sa_init_error:
533cea405b1SXihan Zhang 	kfd->kfd2kgd->free_gtt_mem(kfd->kgd, kfd->gtt_mem);
53419f6d2a6SOded Gabbay 	dev_err(kfd_device,
53579775b62SKent Russell 		"device %x:%x NOT added due to errors\n",
53619f6d2a6SOded Gabbay 		kfd->pdev->vendor, kfd->pdev->device);
53719f6d2a6SOded Gabbay out:
53819f6d2a6SOded Gabbay 	return kfd->init_complete;
5394a488a7aSOded Gabbay }
5404a488a7aSOded Gabbay 
5414a488a7aSOded Gabbay void kgd2kfd_device_exit(struct kfd_dev *kfd)
5424a488a7aSOded Gabbay {
543b17f068aSOded Gabbay 	if (kfd->init_complete) {
544b8935a7cSYong Zhao 		kgd2kfd_suspend(kfd);
54564c7f8cfSBen Goz 		device_queue_manager_uninit(kfd->dqm);
5462249d558SAndrew Lewycky 		kfd_interrupt_exit(kfd);
54719f6d2a6SOded Gabbay 		kfd_topology_remove_device(kfd);
548735df2baSFelix Kuehling 		kfd_doorbell_fini(kfd);
54973a1da0bSOded Gabbay 		kfd_gtt_sa_fini(kfd);
550cea405b1SXihan Zhang 		kfd->kfd2kgd->free_gtt_mem(kfd->kgd, kfd->gtt_mem);
551b17f068aSOded Gabbay 	}
5525b5c4e40SEvgeny Pinchuk 
5534a488a7aSOded Gabbay 	kfree(kfd);
5544a488a7aSOded Gabbay }
5554a488a7aSOded Gabbay 
556e3b7a967SShaoyun Liu int kgd2kfd_pre_reset(struct kfd_dev *kfd)
557e3b7a967SShaoyun Liu {
558e42051d2SShaoyun Liu 	if (!kfd->init_complete)
559e42051d2SShaoyun Liu 		return 0;
560e42051d2SShaoyun Liu 	kgd2kfd_suspend(kfd);
561e42051d2SShaoyun Liu 
562e42051d2SShaoyun Liu 	/* hold dqm->lock to prevent further execution*/
563e42051d2SShaoyun Liu 	dqm_lock(kfd->dqm);
564e42051d2SShaoyun Liu 
565e42051d2SShaoyun Liu 	kfd_signal_reset_event(kfd);
566e3b7a967SShaoyun Liu 	return 0;
567e3b7a967SShaoyun Liu }
568e3b7a967SShaoyun Liu 
569e42051d2SShaoyun Liu /*
570e42051d2SShaoyun Liu  * Fix me. KFD won't be able to resume existing process for now.
571e42051d2SShaoyun Liu  * We will keep all existing process in a evicted state and
572e42051d2SShaoyun Liu  * wait the process to be terminated.
573e42051d2SShaoyun Liu  */
574e42051d2SShaoyun Liu 
575e3b7a967SShaoyun Liu int kgd2kfd_post_reset(struct kfd_dev *kfd)
576e3b7a967SShaoyun Liu {
577e42051d2SShaoyun Liu 	int ret, count;
578e42051d2SShaoyun Liu 
579e42051d2SShaoyun Liu 	if (!kfd->init_complete)
580e3b7a967SShaoyun Liu 		return 0;
581e42051d2SShaoyun Liu 
582e42051d2SShaoyun Liu 	dqm_unlock(kfd->dqm);
583e42051d2SShaoyun Liu 
584e42051d2SShaoyun Liu 	ret = kfd_resume(kfd);
585e42051d2SShaoyun Liu 	if (ret)
586e42051d2SShaoyun Liu 		return ret;
587e42051d2SShaoyun Liu 	count = atomic_dec_return(&kfd_locked);
588e42051d2SShaoyun Liu 	WARN_ONCE(count != 0, "KFD reset ref. error");
589e42051d2SShaoyun Liu 	return 0;
590e42051d2SShaoyun Liu }
591e42051d2SShaoyun Liu 
592e42051d2SShaoyun Liu bool kfd_is_locked(void)
593e42051d2SShaoyun Liu {
594e42051d2SShaoyun Liu 	return  (atomic_read(&kfd_locked) > 0);
595e3b7a967SShaoyun Liu }
596e3b7a967SShaoyun Liu 
5974a488a7aSOded Gabbay void kgd2kfd_suspend(struct kfd_dev *kfd)
5984a488a7aSOded Gabbay {
599733fa1f7SYong Zhao 	if (!kfd->init_complete)
600733fa1f7SYong Zhao 		return;
601733fa1f7SYong Zhao 
60226103436SFelix Kuehling 	/* For first KFD device suspend all the KFD processes */
603e42051d2SShaoyun Liu 	if (atomic_inc_return(&kfd_locked) == 1)
60426103436SFelix Kuehling 		kfd_suspend_all_processes();
60526103436SFelix Kuehling 
60645c9a5e4SOded Gabbay 	kfd->dqm->ops.stop(kfd->dqm);
607733fa1f7SYong Zhao 
60864d1c3a4SFelix Kuehling 	kfd_iommu_suspend(kfd);
6094a488a7aSOded Gabbay }
6104a488a7aSOded Gabbay 
6114a488a7aSOded Gabbay int kgd2kfd_resume(struct kfd_dev *kfd)
6124a488a7aSOded Gabbay {
61326103436SFelix Kuehling 	int ret, count;
61426103436SFelix Kuehling 
615b8935a7cSYong Zhao 	if (!kfd->init_complete)
616b8935a7cSYong Zhao 		return 0;
617b17f068aSOded Gabbay 
61826103436SFelix Kuehling 	ret = kfd_resume(kfd);
61926103436SFelix Kuehling 	if (ret)
62026103436SFelix Kuehling 		return ret;
621b17f068aSOded Gabbay 
622e42051d2SShaoyun Liu 	count = atomic_dec_return(&kfd_locked);
62326103436SFelix Kuehling 	WARN_ONCE(count < 0, "KFD suspend / resume ref. error");
62426103436SFelix Kuehling 	if (count == 0)
62526103436SFelix Kuehling 		ret = kfd_resume_all_processes();
62626103436SFelix Kuehling 
62726103436SFelix Kuehling 	return ret;
6284ebc7182SYong Zhao }
6294ebc7182SYong Zhao 
630b8935a7cSYong Zhao static int kfd_resume(struct kfd_dev *kfd)
631b8935a7cSYong Zhao {
632b8935a7cSYong Zhao 	int err = 0;
633b8935a7cSYong Zhao 
63464d1c3a4SFelix Kuehling 	err = kfd_iommu_resume(kfd);
63564d1c3a4SFelix Kuehling 	if (err) {
63664d1c3a4SFelix Kuehling 		dev_err(kfd_device,
63764d1c3a4SFelix Kuehling 			"Failed to resume IOMMU for device %x:%x\n",
63864d1c3a4SFelix Kuehling 			kfd->pdev->vendor, kfd->pdev->device);
63964d1c3a4SFelix Kuehling 		return err;
64064d1c3a4SFelix Kuehling 	}
641733fa1f7SYong Zhao 
642b8935a7cSYong Zhao 	err = kfd->dqm->ops.start(kfd->dqm);
643b8935a7cSYong Zhao 	if (err) {
644b8935a7cSYong Zhao 		dev_err(kfd_device,
645b8935a7cSYong Zhao 			"Error starting queue manager for device %x:%x\n",
646b8935a7cSYong Zhao 			kfd->pdev->vendor, kfd->pdev->device);
647b8935a7cSYong Zhao 		goto dqm_start_error;
648b17f068aSOded Gabbay 	}
649b17f068aSOded Gabbay 
650b8935a7cSYong Zhao 	return err;
651b8935a7cSYong Zhao 
652b8935a7cSYong Zhao dqm_start_error:
65364d1c3a4SFelix Kuehling 	kfd_iommu_suspend(kfd);
654b8935a7cSYong Zhao 	return err;
6554a488a7aSOded Gabbay }
6564a488a7aSOded Gabbay 
657b3f5e6b4SAndrew Lewycky /* This is called directly from KGD at ISR. */
658b3f5e6b4SAndrew Lewycky void kgd2kfd_interrupt(struct kfd_dev *kfd, const void *ih_ring_entry)
6594a488a7aSOded Gabbay {
66058e69886SLan Xiao 	uint32_t patched_ihre[KFD_MAX_RING_ENTRY_SIZE];
66158e69886SLan Xiao 	bool is_patched = false;
66258e69886SLan Xiao 
6632249d558SAndrew Lewycky 	if (!kfd->init_complete)
6642249d558SAndrew Lewycky 		return;
6652249d558SAndrew Lewycky 
66658e69886SLan Xiao 	if (kfd->device_info->ih_ring_entry_size > sizeof(patched_ihre)) {
66758e69886SLan Xiao 		dev_err_once(kfd_device, "Ring entry too small\n");
66858e69886SLan Xiao 		return;
66958e69886SLan Xiao 	}
67058e69886SLan Xiao 
6712249d558SAndrew Lewycky 	spin_lock(&kfd->interrupt_lock);
6722249d558SAndrew Lewycky 
6732249d558SAndrew Lewycky 	if (kfd->interrupts_active
67458e69886SLan Xiao 	    && interrupt_is_wanted(kfd, ih_ring_entry,
67558e69886SLan Xiao 				   patched_ihre, &is_patched)
67658e69886SLan Xiao 	    && enqueue_ih_ring_entry(kfd,
67758e69886SLan Xiao 				     is_patched ? patched_ihre : ih_ring_entry))
67848e876a2SAndres Rodriguez 		queue_work(kfd->ih_wq, &kfd->interrupt_work);
6792249d558SAndrew Lewycky 
6802249d558SAndrew Lewycky 	spin_unlock(&kfd->interrupt_lock);
6814a488a7aSOded Gabbay }
6826e81090bSOded Gabbay 
6836b95e797SFelix Kuehling int kgd2kfd_quiesce_mm(struct mm_struct *mm)
6846b95e797SFelix Kuehling {
6856b95e797SFelix Kuehling 	struct kfd_process *p;
6866b95e797SFelix Kuehling 	int r;
6876b95e797SFelix Kuehling 
6886b95e797SFelix Kuehling 	/* Because we are called from arbitrary context (workqueue) as opposed
6896b95e797SFelix Kuehling 	 * to process context, kfd_process could attempt to exit while we are
6906b95e797SFelix Kuehling 	 * running so the lookup function increments the process ref count.
6916b95e797SFelix Kuehling 	 */
6926b95e797SFelix Kuehling 	p = kfd_lookup_process_by_mm(mm);
6936b95e797SFelix Kuehling 	if (!p)
6946b95e797SFelix Kuehling 		return -ESRCH;
6956b95e797SFelix Kuehling 
6966b95e797SFelix Kuehling 	r = kfd_process_evict_queues(p);
6976b95e797SFelix Kuehling 
6986b95e797SFelix Kuehling 	kfd_unref_process(p);
6996b95e797SFelix Kuehling 	return r;
7006b95e797SFelix Kuehling }
7016b95e797SFelix Kuehling 
7026b95e797SFelix Kuehling int kgd2kfd_resume_mm(struct mm_struct *mm)
7036b95e797SFelix Kuehling {
7046b95e797SFelix Kuehling 	struct kfd_process *p;
7056b95e797SFelix Kuehling 	int r;
7066b95e797SFelix Kuehling 
7076b95e797SFelix Kuehling 	/* Because we are called from arbitrary context (workqueue) as opposed
7086b95e797SFelix Kuehling 	 * to process context, kfd_process could attempt to exit while we are
7096b95e797SFelix Kuehling 	 * running so the lookup function increments the process ref count.
7106b95e797SFelix Kuehling 	 */
7116b95e797SFelix Kuehling 	p = kfd_lookup_process_by_mm(mm);
7126b95e797SFelix Kuehling 	if (!p)
7136b95e797SFelix Kuehling 		return -ESRCH;
7146b95e797SFelix Kuehling 
7156b95e797SFelix Kuehling 	r = kfd_process_restore_queues(p);
7166b95e797SFelix Kuehling 
7176b95e797SFelix Kuehling 	kfd_unref_process(p);
7186b95e797SFelix Kuehling 	return r;
7196b95e797SFelix Kuehling }
7206b95e797SFelix Kuehling 
72126103436SFelix Kuehling /** kgd2kfd_schedule_evict_and_restore_process - Schedules work queue that will
72226103436SFelix Kuehling  *   prepare for safe eviction of KFD BOs that belong to the specified
72326103436SFelix Kuehling  *   process.
72426103436SFelix Kuehling  *
72526103436SFelix Kuehling  * @mm: mm_struct that identifies the specified KFD process
72626103436SFelix Kuehling  * @fence: eviction fence attached to KFD process BOs
72726103436SFelix Kuehling  *
72826103436SFelix Kuehling  */
72926103436SFelix Kuehling int kgd2kfd_schedule_evict_and_restore_process(struct mm_struct *mm,
73026103436SFelix Kuehling 					       struct dma_fence *fence)
73126103436SFelix Kuehling {
73226103436SFelix Kuehling 	struct kfd_process *p;
73326103436SFelix Kuehling 	unsigned long active_time;
73426103436SFelix Kuehling 	unsigned long delay_jiffies = msecs_to_jiffies(PROCESS_ACTIVE_TIME_MS);
73526103436SFelix Kuehling 
73626103436SFelix Kuehling 	if (!fence)
73726103436SFelix Kuehling 		return -EINVAL;
73826103436SFelix Kuehling 
73926103436SFelix Kuehling 	if (dma_fence_is_signaled(fence))
74026103436SFelix Kuehling 		return 0;
74126103436SFelix Kuehling 
74226103436SFelix Kuehling 	p = kfd_lookup_process_by_mm(mm);
74326103436SFelix Kuehling 	if (!p)
74426103436SFelix Kuehling 		return -ENODEV;
74526103436SFelix Kuehling 
74626103436SFelix Kuehling 	if (fence->seqno == p->last_eviction_seqno)
74726103436SFelix Kuehling 		goto out;
74826103436SFelix Kuehling 
74926103436SFelix Kuehling 	p->last_eviction_seqno = fence->seqno;
75026103436SFelix Kuehling 
75126103436SFelix Kuehling 	/* Avoid KFD process starvation. Wait for at least
75226103436SFelix Kuehling 	 * PROCESS_ACTIVE_TIME_MS before evicting the process again
75326103436SFelix Kuehling 	 */
75426103436SFelix Kuehling 	active_time = get_jiffies_64() - p->last_restore_timestamp;
75526103436SFelix Kuehling 	if (delay_jiffies > active_time)
75626103436SFelix Kuehling 		delay_jiffies -= active_time;
75726103436SFelix Kuehling 	else
75826103436SFelix Kuehling 		delay_jiffies = 0;
75926103436SFelix Kuehling 
76026103436SFelix Kuehling 	/* During process initialization eviction_work.dwork is initialized
76126103436SFelix Kuehling 	 * to kfd_evict_bo_worker
76226103436SFelix Kuehling 	 */
76326103436SFelix Kuehling 	schedule_delayed_work(&p->eviction_work, delay_jiffies);
76426103436SFelix Kuehling out:
76526103436SFelix Kuehling 	kfd_unref_process(p);
76626103436SFelix Kuehling 	return 0;
76726103436SFelix Kuehling }
76826103436SFelix Kuehling 
7696e81090bSOded Gabbay static int kfd_gtt_sa_init(struct kfd_dev *kfd, unsigned int buf_size,
7706e81090bSOded Gabbay 				unsigned int chunk_size)
7716e81090bSOded Gabbay {
7728625ff9cSFelix Kuehling 	unsigned int num_of_longs;
7736e81090bSOded Gabbay 
77432fa8219SFelix Kuehling 	if (WARN_ON(buf_size < chunk_size))
77532fa8219SFelix Kuehling 		return -EINVAL;
77632fa8219SFelix Kuehling 	if (WARN_ON(buf_size == 0))
77732fa8219SFelix Kuehling 		return -EINVAL;
77832fa8219SFelix Kuehling 	if (WARN_ON(chunk_size == 0))
77932fa8219SFelix Kuehling 		return -EINVAL;
7806e81090bSOded Gabbay 
7816e81090bSOded Gabbay 	kfd->gtt_sa_chunk_size = chunk_size;
7826e81090bSOded Gabbay 	kfd->gtt_sa_num_of_chunks = buf_size / chunk_size;
7836e81090bSOded Gabbay 
7848625ff9cSFelix Kuehling 	num_of_longs = (kfd->gtt_sa_num_of_chunks + BITS_PER_LONG - 1) /
7858625ff9cSFelix Kuehling 		BITS_PER_LONG;
7866e81090bSOded Gabbay 
7878625ff9cSFelix Kuehling 	kfd->gtt_sa_bitmap = kcalloc(num_of_longs, sizeof(long), GFP_KERNEL);
7886e81090bSOded Gabbay 
7896e81090bSOded Gabbay 	if (!kfd->gtt_sa_bitmap)
7906e81090bSOded Gabbay 		return -ENOMEM;
7916e81090bSOded Gabbay 
79279775b62SKent Russell 	pr_debug("gtt_sa_num_of_chunks = %d, gtt_sa_bitmap = %p\n",
7936e81090bSOded Gabbay 			kfd->gtt_sa_num_of_chunks, kfd->gtt_sa_bitmap);
7946e81090bSOded Gabbay 
7956e81090bSOded Gabbay 	mutex_init(&kfd->gtt_sa_lock);
7966e81090bSOded Gabbay 
7976e81090bSOded Gabbay 	return 0;
7986e81090bSOded Gabbay 
7996e81090bSOded Gabbay }
8006e81090bSOded Gabbay 
8016e81090bSOded Gabbay static void kfd_gtt_sa_fini(struct kfd_dev *kfd)
8026e81090bSOded Gabbay {
8036e81090bSOded Gabbay 	mutex_destroy(&kfd->gtt_sa_lock);
8046e81090bSOded Gabbay 	kfree(kfd->gtt_sa_bitmap);
8056e81090bSOded Gabbay }
8066e81090bSOded Gabbay 
8076e81090bSOded Gabbay static inline uint64_t kfd_gtt_sa_calc_gpu_addr(uint64_t start_addr,
8086e81090bSOded Gabbay 						unsigned int bit_num,
8096e81090bSOded Gabbay 						unsigned int chunk_size)
8106e81090bSOded Gabbay {
8116e81090bSOded Gabbay 	return start_addr + bit_num * chunk_size;
8126e81090bSOded Gabbay }
8136e81090bSOded Gabbay 
8146e81090bSOded Gabbay static inline uint32_t *kfd_gtt_sa_calc_cpu_addr(void *start_addr,
8156e81090bSOded Gabbay 						unsigned int bit_num,
8166e81090bSOded Gabbay 						unsigned int chunk_size)
8176e81090bSOded Gabbay {
8186e81090bSOded Gabbay 	return (uint32_t *) ((uint64_t) start_addr + bit_num * chunk_size);
8196e81090bSOded Gabbay }
8206e81090bSOded Gabbay 
8216e81090bSOded Gabbay int kfd_gtt_sa_allocate(struct kfd_dev *kfd, unsigned int size,
8226e81090bSOded Gabbay 			struct kfd_mem_obj **mem_obj)
8236e81090bSOded Gabbay {
8246e81090bSOded Gabbay 	unsigned int found, start_search, cur_size;
8256e81090bSOded Gabbay 
8266e81090bSOded Gabbay 	if (size == 0)
8276e81090bSOded Gabbay 		return -EINVAL;
8286e81090bSOded Gabbay 
8296e81090bSOded Gabbay 	if (size > kfd->gtt_sa_num_of_chunks * kfd->gtt_sa_chunk_size)
8306e81090bSOded Gabbay 		return -ENOMEM;
8316e81090bSOded Gabbay 
8321cd106ecSFelix Kuehling 	*mem_obj = kzalloc(sizeof(struct kfd_mem_obj), GFP_KERNEL);
8331cd106ecSFelix Kuehling 	if (!(*mem_obj))
8346e81090bSOded Gabbay 		return -ENOMEM;
8356e81090bSOded Gabbay 
83679775b62SKent Russell 	pr_debug("Allocated mem_obj = %p for size = %d\n", *mem_obj, size);
8376e81090bSOded Gabbay 
8386e81090bSOded Gabbay 	start_search = 0;
8396e81090bSOded Gabbay 
8406e81090bSOded Gabbay 	mutex_lock(&kfd->gtt_sa_lock);
8416e81090bSOded Gabbay 
8426e81090bSOded Gabbay kfd_gtt_restart_search:
8436e81090bSOded Gabbay 	/* Find the first chunk that is free */
8446e81090bSOded Gabbay 	found = find_next_zero_bit(kfd->gtt_sa_bitmap,
8456e81090bSOded Gabbay 					kfd->gtt_sa_num_of_chunks,
8466e81090bSOded Gabbay 					start_search);
8476e81090bSOded Gabbay 
84879775b62SKent Russell 	pr_debug("Found = %d\n", found);
8496e81090bSOded Gabbay 
8506e81090bSOded Gabbay 	/* If there wasn't any free chunk, bail out */
8516e81090bSOded Gabbay 	if (found == kfd->gtt_sa_num_of_chunks)
8526e81090bSOded Gabbay 		goto kfd_gtt_no_free_chunk;
8536e81090bSOded Gabbay 
8546e81090bSOded Gabbay 	/* Update fields of mem_obj */
8556e81090bSOded Gabbay 	(*mem_obj)->range_start = found;
8566e81090bSOded Gabbay 	(*mem_obj)->range_end = found;
8576e81090bSOded Gabbay 	(*mem_obj)->gpu_addr = kfd_gtt_sa_calc_gpu_addr(
8586e81090bSOded Gabbay 					kfd->gtt_start_gpu_addr,
8596e81090bSOded Gabbay 					found,
8606e81090bSOded Gabbay 					kfd->gtt_sa_chunk_size);
8616e81090bSOded Gabbay 	(*mem_obj)->cpu_ptr = kfd_gtt_sa_calc_cpu_addr(
8626e81090bSOded Gabbay 					kfd->gtt_start_cpu_ptr,
8636e81090bSOded Gabbay 					found,
8646e81090bSOded Gabbay 					kfd->gtt_sa_chunk_size);
8656e81090bSOded Gabbay 
86679775b62SKent Russell 	pr_debug("gpu_addr = %p, cpu_addr = %p\n",
8676e81090bSOded Gabbay 			(uint64_t *) (*mem_obj)->gpu_addr, (*mem_obj)->cpu_ptr);
8686e81090bSOded Gabbay 
8696e81090bSOded Gabbay 	/* If we need only one chunk, mark it as allocated and get out */
8706e81090bSOded Gabbay 	if (size <= kfd->gtt_sa_chunk_size) {
87179775b62SKent Russell 		pr_debug("Single bit\n");
8726e81090bSOded Gabbay 		set_bit(found, kfd->gtt_sa_bitmap);
8736e81090bSOded Gabbay 		goto kfd_gtt_out;
8746e81090bSOded Gabbay 	}
8756e81090bSOded Gabbay 
8766e81090bSOded Gabbay 	/* Otherwise, try to see if we have enough contiguous chunks */
8776e81090bSOded Gabbay 	cur_size = size - kfd->gtt_sa_chunk_size;
8786e81090bSOded Gabbay 	do {
8796e81090bSOded Gabbay 		(*mem_obj)->range_end =
8806e81090bSOded Gabbay 			find_next_zero_bit(kfd->gtt_sa_bitmap,
8816e81090bSOded Gabbay 					kfd->gtt_sa_num_of_chunks, ++found);
8826e81090bSOded Gabbay 		/*
8836e81090bSOded Gabbay 		 * If next free chunk is not contiguous than we need to
8846e81090bSOded Gabbay 		 * restart our search from the last free chunk we found (which
8856e81090bSOded Gabbay 		 * wasn't contiguous to the previous ones
8866e81090bSOded Gabbay 		 */
8876e81090bSOded Gabbay 		if ((*mem_obj)->range_end != found) {
8886e81090bSOded Gabbay 			start_search = found;
8896e81090bSOded Gabbay 			goto kfd_gtt_restart_search;
8906e81090bSOded Gabbay 		}
8916e81090bSOded Gabbay 
8926e81090bSOded Gabbay 		/*
8936e81090bSOded Gabbay 		 * If we reached end of buffer, bail out with error
8946e81090bSOded Gabbay 		 */
8956e81090bSOded Gabbay 		if (found == kfd->gtt_sa_num_of_chunks)
8966e81090bSOded Gabbay 			goto kfd_gtt_no_free_chunk;
8976e81090bSOded Gabbay 
8986e81090bSOded Gabbay 		/* Check if we don't need another chunk */
8996e81090bSOded Gabbay 		if (cur_size <= kfd->gtt_sa_chunk_size)
9006e81090bSOded Gabbay 			cur_size = 0;
9016e81090bSOded Gabbay 		else
9026e81090bSOded Gabbay 			cur_size -= kfd->gtt_sa_chunk_size;
9036e81090bSOded Gabbay 
9046e81090bSOded Gabbay 	} while (cur_size > 0);
9056e81090bSOded Gabbay 
90679775b62SKent Russell 	pr_debug("range_start = %d, range_end = %d\n",
9076e81090bSOded Gabbay 		(*mem_obj)->range_start, (*mem_obj)->range_end);
9086e81090bSOded Gabbay 
9096e81090bSOded Gabbay 	/* Mark the chunks as allocated */
9106e81090bSOded Gabbay 	for (found = (*mem_obj)->range_start;
9116e81090bSOded Gabbay 		found <= (*mem_obj)->range_end;
9126e81090bSOded Gabbay 		found++)
9136e81090bSOded Gabbay 		set_bit(found, kfd->gtt_sa_bitmap);
9146e81090bSOded Gabbay 
9156e81090bSOded Gabbay kfd_gtt_out:
9166e81090bSOded Gabbay 	mutex_unlock(&kfd->gtt_sa_lock);
9176e81090bSOded Gabbay 	return 0;
9186e81090bSOded Gabbay 
9196e81090bSOded Gabbay kfd_gtt_no_free_chunk:
92079775b62SKent Russell 	pr_debug("Allocation failed with mem_obj = %p\n", mem_obj);
9216e81090bSOded Gabbay 	mutex_unlock(&kfd->gtt_sa_lock);
9226e81090bSOded Gabbay 	kfree(mem_obj);
9236e81090bSOded Gabbay 	return -ENOMEM;
9246e81090bSOded Gabbay }
9256e81090bSOded Gabbay 
9266e81090bSOded Gabbay int kfd_gtt_sa_free(struct kfd_dev *kfd, struct kfd_mem_obj *mem_obj)
9276e81090bSOded Gabbay {
9286e81090bSOded Gabbay 	unsigned int bit;
9296e81090bSOded Gabbay 
9309216ed29SOded Gabbay 	/* Act like kfree when trying to free a NULL object */
9319216ed29SOded Gabbay 	if (!mem_obj)
9329216ed29SOded Gabbay 		return 0;
9336e81090bSOded Gabbay 
93479775b62SKent Russell 	pr_debug("Free mem_obj = %p, range_start = %d, range_end = %d\n",
9356e81090bSOded Gabbay 			mem_obj, mem_obj->range_start, mem_obj->range_end);
9366e81090bSOded Gabbay 
9376e81090bSOded Gabbay 	mutex_lock(&kfd->gtt_sa_lock);
9386e81090bSOded Gabbay 
9396e81090bSOded Gabbay 	/* Mark the chunks as free */
9406e81090bSOded Gabbay 	for (bit = mem_obj->range_start;
9416e81090bSOded Gabbay 		bit <= mem_obj->range_end;
9426e81090bSOded Gabbay 		bit++)
9436e81090bSOded Gabbay 		clear_bit(bit, kfd->gtt_sa_bitmap);
9446e81090bSOded Gabbay 
9456e81090bSOded Gabbay 	mutex_unlock(&kfd->gtt_sa_lock);
9466e81090bSOded Gabbay 
9476e81090bSOded Gabbay 	kfree(mem_obj);
9486e81090bSOded Gabbay 	return 0;
9496e81090bSOded Gabbay }
950a29ec470SShaoyun Liu 
951a29ec470SShaoyun Liu #if defined(CONFIG_DEBUG_FS)
952a29ec470SShaoyun Liu 
953a29ec470SShaoyun Liu /* This function will send a package to HIQ to hang the HWS
954a29ec470SShaoyun Liu  * which will trigger a GPU reset and bring the HWS back to normal state
955a29ec470SShaoyun Liu  */
956a29ec470SShaoyun Liu int kfd_debugfs_hang_hws(struct kfd_dev *dev)
957a29ec470SShaoyun Liu {
958a29ec470SShaoyun Liu 	int r = 0;
959a29ec470SShaoyun Liu 
960a29ec470SShaoyun Liu 	if (dev->dqm->sched_policy != KFD_SCHED_POLICY_HWS) {
961a29ec470SShaoyun Liu 		pr_err("HWS is not enabled");
962a29ec470SShaoyun Liu 		return -EINVAL;
963a29ec470SShaoyun Liu 	}
964a29ec470SShaoyun Liu 
965a29ec470SShaoyun Liu 	r = pm_debugfs_hang_hws(&dev->dqm->packets);
966a29ec470SShaoyun Liu 	if (!r)
967a29ec470SShaoyun Liu 		r = dqm_debugfs_execute_queues(dev->dqm);
968a29ec470SShaoyun Liu 
969a29ec470SShaoyun Liu 	return r;
970a29ec470SShaoyun Liu }
971a29ec470SShaoyun Liu 
972a29ec470SShaoyun Liu #endif
973