kfd_device.c 32.7 KB
Newer Older
O
Oded Gabbay 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
/*
 * Copyright 2014 Advanced Micro Devices, Inc.
 *
 * Permission is hereby granted, free of charge, to any person obtaining a
 * copy of this software and associated documentation files (the "Software"),
 * to deal in the Software without restriction, including without limitation
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
 * and/or sell copies of the Software, and to permit persons to whom the
 * Software is furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
 * OTHER DEALINGS IN THE SOFTWARE.
 */

#include <linux/bsearch.h>
#include <linux/pci.h>
#include <linux/slab.h>
#include "kfd_priv.h"
27
#include "kfd_device_queue_manager.h"
28
#include "kfd_pm4_headers_vi.h"
29
#include "cwsr_trap_handler.h"
30
#include "kfd_iommu.h"
A
Amber Lin 已提交
31
#include "amdgpu_amdkfd.h"
O
Oded Gabbay 已提交
32

33
#define MQD_SIZE_ALIGNED 768
34 35 36 37 38 39 40

/*
 * kfd_locked is used to lock the kfd driver during suspend or reset
 * once locked, kfd driver will stop any further GPU execution.
 * create process (open) will return -EAGAIN.
 */
static atomic_t kfd_locked = ATOMIC_INIT(0);
41

42
#ifdef KFD_SUPPORT_IOMMU_V2
O
Oded Gabbay 已提交
43
static const struct kfd_device_info kaveri_device_info = {
44 45
	.asic_family = CHIP_KAVERI,
	.max_pasid_bits = 16,
46 47
	/* max num of queues for KV.TODO should be a dynamic value */
	.max_no_of_hqd	= 24,
48
	.doorbell_size  = 4,
49
	.ih_ring_entry_size = 4 * sizeof(uint32_t),
50
	.event_interrupt_class = &event_interrupt_class_cik,
51
	.num_of_watch_points = 4,
F
Felix Kuehling 已提交
52 53
	.mqd_size_aligned = MQD_SIZE_ALIGNED,
	.supports_cwsr = false,
54
	.needs_iommu_device = true,
55
	.needs_pci_atomics = false,
56
	.num_sdma_engines = 2,
57
	.num_xgmi_sdma_engines = 0,
58
	.num_sdma_queues_per_engine = 2,
59 60 61 62
};

static const struct kfd_device_info carrizo_device_info = {
	.asic_family = CHIP_CARRIZO,
O
Oded Gabbay 已提交
63
	.max_pasid_bits = 16,
64 65
	/* max num of queues for CZ.TODO should be a dynamic value */
	.max_no_of_hqd	= 24,
66
	.doorbell_size  = 4,
67
	.ih_ring_entry_size = 4 * sizeof(uint32_t),
68
	.event_interrupt_class = &event_interrupt_class_cik,
69
	.num_of_watch_points = 4,
F
Felix Kuehling 已提交
70 71
	.mqd_size_aligned = MQD_SIZE_ALIGNED,
	.supports_cwsr = true,
72
	.needs_iommu_device = true,
73
	.needs_pci_atomics = false,
74
	.num_sdma_engines = 2,
75
	.num_xgmi_sdma_engines = 0,
76
	.num_sdma_queues_per_engine = 2,
O
Oded Gabbay 已提交
77
};
Y
Yong Zhao 已提交
78 79 80 81 82 83 84 85 86 87 88 89 90 91

static const struct kfd_device_info raven_device_info = {
	.asic_family = CHIP_RAVEN,
	.max_pasid_bits = 16,
	.max_no_of_hqd  = 24,
	.doorbell_size  = 8,
	.ih_ring_entry_size = 8 * sizeof(uint32_t),
	.event_interrupt_class = &event_interrupt_class_v9,
	.num_of_watch_points = 4,
	.mqd_size_aligned = MQD_SIZE_ALIGNED,
	.supports_cwsr = true,
	.needs_iommu_device = true,
	.needs_pci_atomics = true,
	.num_sdma_engines = 1,
92
	.num_xgmi_sdma_engines = 0,
93
	.num_sdma_queues_per_engine = 2,
Y
Yong Zhao 已提交
94
};
95
#endif
O
Oded Gabbay 已提交
96

97 98 99 100 101
static const struct kfd_device_info hawaii_device_info = {
	.asic_family = CHIP_HAWAII,
	.max_pasid_bits = 16,
	/* max num of queues for KV.TODO should be a dynamic value */
	.max_no_of_hqd	= 24,
102
	.doorbell_size  = 4,
103 104 105 106 107
	.ih_ring_entry_size = 4 * sizeof(uint32_t),
	.event_interrupt_class = &event_interrupt_class_cik,
	.num_of_watch_points = 4,
	.mqd_size_aligned = MQD_SIZE_ALIGNED,
	.supports_cwsr = false,
108
	.needs_iommu_device = false,
109
	.needs_pci_atomics = false,
110
	.num_sdma_engines = 2,
111
	.num_xgmi_sdma_engines = 0,
112
	.num_sdma_queues_per_engine = 2,
113 114 115 116 117 118
};

static const struct kfd_device_info tonga_device_info = {
	.asic_family = CHIP_TONGA,
	.max_pasid_bits = 16,
	.max_no_of_hqd  = 24,
119
	.doorbell_size  = 4,
120 121 122 123 124
	.ih_ring_entry_size = 4 * sizeof(uint32_t),
	.event_interrupt_class = &event_interrupt_class_cik,
	.num_of_watch_points = 4,
	.mqd_size_aligned = MQD_SIZE_ALIGNED,
	.supports_cwsr = false,
125
	.needs_iommu_device = false,
126
	.needs_pci_atomics = true,
127
	.num_sdma_engines = 2,
128
	.num_xgmi_sdma_engines = 0,
129
	.num_sdma_queues_per_engine = 2,
130 131 132 133 134 135
};

static const struct kfd_device_info fiji_device_info = {
	.asic_family = CHIP_FIJI,
	.max_pasid_bits = 16,
	.max_no_of_hqd  = 24,
136
	.doorbell_size  = 4,
137 138 139 140 141
	.ih_ring_entry_size = 4 * sizeof(uint32_t),
	.event_interrupt_class = &event_interrupt_class_cik,
	.num_of_watch_points = 4,
	.mqd_size_aligned = MQD_SIZE_ALIGNED,
	.supports_cwsr = true,
142
	.needs_iommu_device = false,
143
	.needs_pci_atomics = true,
144
	.num_sdma_engines = 2,
145
	.num_xgmi_sdma_engines = 0,
146
	.num_sdma_queues_per_engine = 2,
147 148 149 150 151 152
};

static const struct kfd_device_info fiji_vf_device_info = {
	.asic_family = CHIP_FIJI,
	.max_pasid_bits = 16,
	.max_no_of_hqd  = 24,
153
	.doorbell_size  = 4,
154 155 156 157 158
	.ih_ring_entry_size = 4 * sizeof(uint32_t),
	.event_interrupt_class = &event_interrupt_class_cik,
	.num_of_watch_points = 4,
	.mqd_size_aligned = MQD_SIZE_ALIGNED,
	.supports_cwsr = true,
159
	.needs_iommu_device = false,
160
	.needs_pci_atomics = false,
161
	.num_sdma_engines = 2,
162
	.num_xgmi_sdma_engines = 0,
163
	.num_sdma_queues_per_engine = 2,
164 165 166 167 168 169 170
};


static const struct kfd_device_info polaris10_device_info = {
	.asic_family = CHIP_POLARIS10,
	.max_pasid_bits = 16,
	.max_no_of_hqd  = 24,
171
	.doorbell_size  = 4,
172 173 174 175 176
	.ih_ring_entry_size = 4 * sizeof(uint32_t),
	.event_interrupt_class = &event_interrupt_class_cik,
	.num_of_watch_points = 4,
	.mqd_size_aligned = MQD_SIZE_ALIGNED,
	.supports_cwsr = true,
177
	.needs_iommu_device = false,
178
	.needs_pci_atomics = true,
179
	.num_sdma_engines = 2,
180
	.num_xgmi_sdma_engines = 0,
181
	.num_sdma_queues_per_engine = 2,
182 183 184 185 186 187
};

static const struct kfd_device_info polaris10_vf_device_info = {
	.asic_family = CHIP_POLARIS10,
	.max_pasid_bits = 16,
	.max_no_of_hqd  = 24,
188
	.doorbell_size  = 4,
189 190 191 192 193
	.ih_ring_entry_size = 4 * sizeof(uint32_t),
	.event_interrupt_class = &event_interrupt_class_cik,
	.num_of_watch_points = 4,
	.mqd_size_aligned = MQD_SIZE_ALIGNED,
	.supports_cwsr = true,
194
	.needs_iommu_device = false,
195
	.needs_pci_atomics = false,
196
	.num_sdma_engines = 2,
197
	.num_xgmi_sdma_engines = 0,
198
	.num_sdma_queues_per_engine = 2,
199 200 201 202 203 204
};

static const struct kfd_device_info polaris11_device_info = {
	.asic_family = CHIP_POLARIS11,
	.max_pasid_bits = 16,
	.max_no_of_hqd  = 24,
205
	.doorbell_size  = 4,
206 207 208 209 210
	.ih_ring_entry_size = 4 * sizeof(uint32_t),
	.event_interrupt_class = &event_interrupt_class_cik,
	.num_of_watch_points = 4,
	.mqd_size_aligned = MQD_SIZE_ALIGNED,
	.supports_cwsr = true,
211
	.needs_iommu_device = false,
212
	.needs_pci_atomics = true,
213
	.num_sdma_engines = 2,
214
	.num_xgmi_sdma_engines = 0,
215
	.num_sdma_queues_per_engine = 2,
216 217
};

218 219 220 221 222 223 224 225 226 227 228 229 230
static const struct kfd_device_info polaris12_device_info = {
	.asic_family = CHIP_POLARIS12,
	.max_pasid_bits = 16,
	.max_no_of_hqd  = 24,
	.doorbell_size  = 4,
	.ih_ring_entry_size = 4 * sizeof(uint32_t),
	.event_interrupt_class = &event_interrupt_class_cik,
	.num_of_watch_points = 4,
	.mqd_size_aligned = MQD_SIZE_ALIGNED,
	.supports_cwsr = true,
	.needs_iommu_device = false,
	.needs_pci_atomics = true,
	.num_sdma_engines = 2,
231
	.num_xgmi_sdma_engines = 0,
232 233 234
	.num_sdma_queues_per_engine = 2,
};

K
Kent Russell 已提交
235 236 237 238 239 240 241 242 243 244 245 246 247 248
static const struct kfd_device_info vegam_device_info = {
	.asic_family = CHIP_VEGAM,
	.max_pasid_bits = 16,
	.max_no_of_hqd  = 24,
	.doorbell_size  = 4,
	.ih_ring_entry_size = 4 * sizeof(uint32_t),
	.event_interrupt_class = &event_interrupt_class_cik,
	.num_of_watch_points = 4,
	.mqd_size_aligned = MQD_SIZE_ALIGNED,
	.supports_cwsr = true,
	.needs_iommu_device = false,
	.needs_pci_atomics = true,
	.num_sdma_engines = 2,
	.num_xgmi_sdma_engines = 0,
249 250 251
	.num_sdma_queues_per_engine = 2,
};

252 253 254 255 256 257 258 259 260 261 262 263
static const struct kfd_device_info vega10_device_info = {
	.asic_family = CHIP_VEGA10,
	.max_pasid_bits = 16,
	.max_no_of_hqd  = 24,
	.doorbell_size  = 8,
	.ih_ring_entry_size = 8 * sizeof(uint32_t),
	.event_interrupt_class = &event_interrupt_class_v9,
	.num_of_watch_points = 4,
	.mqd_size_aligned = MQD_SIZE_ALIGNED,
	.supports_cwsr = true,
	.needs_iommu_device = false,
	.needs_pci_atomics = false,
264
	.num_sdma_engines = 2,
265
	.num_xgmi_sdma_engines = 0,
266
	.num_sdma_queues_per_engine = 2,
267 268 269 270 271 272 273 274 275 276 277 278 279 280
};

static const struct kfd_device_info vega10_vf_device_info = {
	.asic_family = CHIP_VEGA10,
	.max_pasid_bits = 16,
	.max_no_of_hqd  = 24,
	.doorbell_size  = 8,
	.ih_ring_entry_size = 8 * sizeof(uint32_t),
	.event_interrupt_class = &event_interrupt_class_v9,
	.num_of_watch_points = 4,
	.mqd_size_aligned = MQD_SIZE_ALIGNED,
	.supports_cwsr = true,
	.needs_iommu_device = false,
	.needs_pci_atomics = false,
281
	.num_sdma_engines = 2,
282
	.num_xgmi_sdma_engines = 0,
283
	.num_sdma_queues_per_engine = 2,
284 285
};

286 287 288 289 290 291 292 293 294 295 296 297 298
static const struct kfd_device_info vega12_device_info = {
	.asic_family = CHIP_VEGA12,
	.max_pasid_bits = 16,
	.max_no_of_hqd  = 24,
	.doorbell_size  = 8,
	.ih_ring_entry_size = 8 * sizeof(uint32_t),
	.event_interrupt_class = &event_interrupt_class_v9,
	.num_of_watch_points = 4,
	.mqd_size_aligned = MQD_SIZE_ALIGNED,
	.supports_cwsr = true,
	.needs_iommu_device = false,
	.needs_pci_atomics = false,
	.num_sdma_engines = 2,
299
	.num_xgmi_sdma_engines = 0,
300 301 302
	.num_sdma_queues_per_engine = 2,
};

303 304 305 306 307 308 309 310 311 312 313
static const struct kfd_device_info vega20_device_info = {
	.asic_family = CHIP_VEGA20,
	.max_pasid_bits = 16,
	.max_no_of_hqd	= 24,
	.doorbell_size	= 8,
	.ih_ring_entry_size = 8 * sizeof(uint32_t),
	.event_interrupt_class = &event_interrupt_class_v9,
	.num_of_watch_points = 4,
	.mqd_size_aligned = MQD_SIZE_ALIGNED,
	.supports_cwsr = true,
	.needs_iommu_device = false,
314
	.needs_pci_atomics = false,
315
	.num_sdma_engines = 2,
316
	.num_xgmi_sdma_engines = 0,
317 318 319
	.num_sdma_queues_per_engine = 8,
};

Y
Yong Zhao 已提交
320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335
static const struct kfd_device_info arcturus_device_info = {
	.asic_family = CHIP_ARCTURUS,
	.max_pasid_bits = 16,
	.max_no_of_hqd	= 24,
	.doorbell_size	= 8,
	.ih_ring_entry_size = 8 * sizeof(uint32_t),
	.event_interrupt_class = &event_interrupt_class_v9,
	.num_of_watch_points = 4,
	.mqd_size_aligned = MQD_SIZE_ALIGNED,
	.supports_cwsr = true,
	.needs_iommu_device = false,
	.needs_pci_atomics = false,
	.num_sdma_engines = 2,
	.num_sdma_queues_per_engine = 8,
};

336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352
static const struct kfd_device_info navi10_device_info = {
	.asic_family = CHIP_NAVI10,
	.max_pasid_bits = 16,
	.max_no_of_hqd  = 24,
	.doorbell_size  = 8,
	.ih_ring_entry_size = 8 * sizeof(uint32_t),
	.event_interrupt_class = &event_interrupt_class_v9,
	.num_of_watch_points = 4,
	.mqd_size_aligned = MQD_SIZE_ALIGNED,
	.needs_iommu_device = false,
	.supports_cwsr = true,
	.needs_pci_atomics = false,
	.num_sdma_engines = 2,
	.num_xgmi_sdma_engines = 0,
	.num_sdma_queues_per_engine = 8,
};

O
Oded Gabbay 已提交
353 354 355 356 357 358
struct kfd_deviceid {
	unsigned short did;
	const struct kfd_device_info *device_info;
};

static const struct kfd_deviceid supported_devices[] = {
359
#ifdef KFD_SUPPORT_IOMMU_V2
O
Oded Gabbay 已提交
360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380
	{ 0x1304, &kaveri_device_info },	/* Kaveri */
	{ 0x1305, &kaveri_device_info },	/* Kaveri */
	{ 0x1306, &kaveri_device_info },	/* Kaveri */
	{ 0x1307, &kaveri_device_info },	/* Kaveri */
	{ 0x1309, &kaveri_device_info },	/* Kaveri */
	{ 0x130A, &kaveri_device_info },	/* Kaveri */
	{ 0x130B, &kaveri_device_info },	/* Kaveri */
	{ 0x130C, &kaveri_device_info },	/* Kaveri */
	{ 0x130D, &kaveri_device_info },	/* Kaveri */
	{ 0x130E, &kaveri_device_info },	/* Kaveri */
	{ 0x130F, &kaveri_device_info },	/* Kaveri */
	{ 0x1310, &kaveri_device_info },	/* Kaveri */
	{ 0x1311, &kaveri_device_info },	/* Kaveri */
	{ 0x1312, &kaveri_device_info },	/* Kaveri */
	{ 0x1313, &kaveri_device_info },	/* Kaveri */
	{ 0x1315, &kaveri_device_info },	/* Kaveri */
	{ 0x1316, &kaveri_device_info },	/* Kaveri */
	{ 0x1317, &kaveri_device_info },	/* Kaveri */
	{ 0x1318, &kaveri_device_info },	/* Kaveri */
	{ 0x131B, &kaveri_device_info },	/* Kaveri */
	{ 0x131C, &kaveri_device_info },	/* Kaveri */
381 382 383 384 385
	{ 0x131D, &kaveri_device_info },	/* Kaveri */
	{ 0x9870, &carrizo_device_info },	/* Carrizo */
	{ 0x9874, &carrizo_device_info },	/* Carrizo */
	{ 0x9875, &carrizo_device_info },	/* Carrizo */
	{ 0x9876, &carrizo_device_info },	/* Carrizo */
386
	{ 0x9877, &carrizo_device_info },	/* Carrizo */
Y
Yong Zhao 已提交
387
	{ 0x15DD, &raven_device_info },		/* Raven */
A
Alex Deucher 已提交
388
	{ 0x15D8, &raven_device_info },		/* Raven */
389
#endif
390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422
	{ 0x67A0, &hawaii_device_info },	/* Hawaii */
	{ 0x67A1, &hawaii_device_info },	/* Hawaii */
	{ 0x67A2, &hawaii_device_info },	/* Hawaii */
	{ 0x67A8, &hawaii_device_info },	/* Hawaii */
	{ 0x67A9, &hawaii_device_info },	/* Hawaii */
	{ 0x67AA, &hawaii_device_info },	/* Hawaii */
	{ 0x67B0, &hawaii_device_info },	/* Hawaii */
	{ 0x67B1, &hawaii_device_info },	/* Hawaii */
	{ 0x67B8, &hawaii_device_info },	/* Hawaii */
	{ 0x67B9, &hawaii_device_info },	/* Hawaii */
	{ 0x67BA, &hawaii_device_info },	/* Hawaii */
	{ 0x67BE, &hawaii_device_info },	/* Hawaii */
	{ 0x6920, &tonga_device_info },		/* Tonga */
	{ 0x6921, &tonga_device_info },		/* Tonga */
	{ 0x6928, &tonga_device_info },		/* Tonga */
	{ 0x6929, &tonga_device_info },		/* Tonga */
	{ 0x692B, &tonga_device_info },		/* Tonga */
	{ 0x6938, &tonga_device_info },		/* Tonga */
	{ 0x6939, &tonga_device_info },		/* Tonga */
	{ 0x7300, &fiji_device_info },		/* Fiji */
	{ 0x730F, &fiji_vf_device_info },	/* Fiji vf*/
	{ 0x67C0, &polaris10_device_info },	/* Polaris10 */
	{ 0x67C1, &polaris10_device_info },	/* Polaris10 */
	{ 0x67C2, &polaris10_device_info },	/* Polaris10 */
	{ 0x67C4, &polaris10_device_info },	/* Polaris10 */
	{ 0x67C7, &polaris10_device_info },	/* Polaris10 */
	{ 0x67C8, &polaris10_device_info },	/* Polaris10 */
	{ 0x67C9, &polaris10_device_info },	/* Polaris10 */
	{ 0x67CA, &polaris10_device_info },	/* Polaris10 */
	{ 0x67CC, &polaris10_device_info },	/* Polaris10 */
	{ 0x67CF, &polaris10_device_info },	/* Polaris10 */
	{ 0x67D0, &polaris10_vf_device_info },	/* Polaris10 vf*/
	{ 0x67DF, &polaris10_device_info },	/* Polaris10 */
423
	{ 0x6FDF, &polaris10_device_info },	/* Polaris10 */
424 425 426 427 428 429 430 431 432
	{ 0x67E0, &polaris11_device_info },	/* Polaris11 */
	{ 0x67E1, &polaris11_device_info },	/* Polaris11 */
	{ 0x67E3, &polaris11_device_info },	/* Polaris11 */
	{ 0x67E7, &polaris11_device_info },	/* Polaris11 */
	{ 0x67E8, &polaris11_device_info },	/* Polaris11 */
	{ 0x67E9, &polaris11_device_info },	/* Polaris11 */
	{ 0x67EB, &polaris11_device_info },	/* Polaris11 */
	{ 0x67EF, &polaris11_device_info },	/* Polaris11 */
	{ 0x67FF, &polaris11_device_info },	/* Polaris11 */
433 434 435 436 437 438 439 440
	{ 0x6980, &polaris12_device_info },	/* Polaris12 */
	{ 0x6981, &polaris12_device_info },	/* Polaris12 */
	{ 0x6985, &polaris12_device_info },	/* Polaris12 */
	{ 0x6986, &polaris12_device_info },	/* Polaris12 */
	{ 0x6987, &polaris12_device_info },	/* Polaris12 */
	{ 0x6995, &polaris12_device_info },	/* Polaris12 */
	{ 0x6997, &polaris12_device_info },	/* Polaris12 */
	{ 0x699F, &polaris12_device_info },	/* Polaris12 */
K
Kent Russell 已提交
441 442 443
	{ 0x694C, &vegam_device_info },		/* VegaM */
	{ 0x694E, &vegam_device_info },		/* VegaM */
	{ 0x694F, &vegam_device_info },		/* VegaM */
444 445 446 447 448 449 450
	{ 0x6860, &vega10_device_info },	/* Vega10 */
	{ 0x6861, &vega10_device_info },	/* Vega10 */
	{ 0x6862, &vega10_device_info },	/* Vega10 */
	{ 0x6863, &vega10_device_info },	/* Vega10 */
	{ 0x6864, &vega10_device_info },	/* Vega10 */
	{ 0x6867, &vega10_device_info },	/* Vega10 */
	{ 0x6868, &vega10_device_info },	/* Vega10 */
A
Alex Deucher 已提交
451 452 453
	{ 0x6869, &vega10_device_info },	/* Vega10 */
	{ 0x686A, &vega10_device_info },	/* Vega10 */
	{ 0x686B, &vega10_device_info },	/* Vega10 */
454
	{ 0x686C, &vega10_vf_device_info },	/* Vega10  vf*/
A
Alex Deucher 已提交
455 456 457
	{ 0x686D, &vega10_device_info },	/* Vega10 */
	{ 0x686E, &vega10_device_info },	/* Vega10 */
	{ 0x686F, &vega10_device_info },	/* Vega10 */
458
	{ 0x687F, &vega10_device_info },	/* Vega10 */
459 460 461 462 463
	{ 0x69A0, &vega12_device_info },	/* Vega12 */
	{ 0x69A1, &vega12_device_info },	/* Vega12 */
	{ 0x69A2, &vega12_device_info },	/* Vega12 */
	{ 0x69A3, &vega12_device_info },	/* Vega12 */
	{ 0x69AF, &vega12_device_info },	/* Vega12 */
464 465 466 467
	{ 0x66a0, &vega20_device_info },	/* Vega20 */
	{ 0x66a1, &vega20_device_info },	/* Vega20 */
	{ 0x66a2, &vega20_device_info },	/* Vega20 */
	{ 0x66a3, &vega20_device_info },	/* Vega20 */
A
Alex Deucher 已提交
468
	{ 0x66a4, &vega20_device_info },	/* Vega20 */
469
	{ 0x66a7, &vega20_device_info },	/* Vega20 */
470 471 472 473 474 475 476
	{ 0x66af, &vega20_device_info },	/* Vega20 */
	/* Navi10 */
	{ 0x7310, &navi10_device_info },	/* Navi10 */
	{ 0x7312, &navi10_device_info },	/* Navi10 */
	{ 0x7318, &navi10_device_info },	/* Navi10 */
	{ 0x731a, &navi10_device_info },	/* Navi10 */
	{ 0x731f, &navi10_device_info },	/* Navi10 */
O
Oded Gabbay 已提交
477 478
};

479 480 481 482
static int kfd_gtt_sa_init(struct kfd_dev *kfd, unsigned int buf_size,
				unsigned int chunk_size);
static void kfd_gtt_sa_fini(struct kfd_dev *kfd);

483 484
static int kfd_resume(struct kfd_dev *kfd);

O
Oded Gabbay 已提交
485 486 487 488 489 490
static const struct kfd_device_info *lookup_device_info(unsigned short did)
{
	size_t i;

	for (i = 0; i < ARRAY_SIZE(supported_devices); i++) {
		if (supported_devices[i].did == did) {
491
			WARN_ON(!supported_devices[i].device_info);
O
Oded Gabbay 已提交
492 493 494 495
			return supported_devices[i].device_info;
		}
	}

496 497 498
	dev_warn(kfd_device, "DID %04x is missing in supported_devices\n",
		 did);

O
Oded Gabbay 已提交
499 500 501
	return NULL;
}

502 503
struct kfd_dev *kgd2kfd_probe(struct kgd_dev *kgd,
	struct pci_dev *pdev, const struct kfd2kgd_calls *f2g)
O
Oded Gabbay 已提交
504 505 506 507 508
{
	struct kfd_dev *kfd;
	const struct kfd_device_info *device_info =
					lookup_device_info(pdev->device);

509 510
	if (!device_info) {
		dev_err(kfd_device, "kgd2kfd_probe failed\n");
O
Oded Gabbay 已提交
511
		return NULL;
512
	}
O
Oded Gabbay 已提交
513

514 515 516 517
	kfd = kzalloc(sizeof(*kfd), GFP_KERNEL);
	if (!kfd)
		return NULL;

518 519 520 521
	/* Allow BIF to recode atomics to PCIe 3.0 AtomicOps.
	 * 32 and 64-bit requests are possible and must be
	 * supported.
	 */
522 523 524
	kfd->pci_atomic_requested = amdgpu_amdkfd_have_atomics_support(kgd);
	if (device_info->needs_pci_atomics &&
	    !kfd->pci_atomic_requested) {
525 526 527
		dev_info(kfd_device,
			 "skipped device %x:%x, PCI rejects atomics\n",
			 pdev->vendor, pdev->device);
528
		kfree(kfd);
529
		return NULL;
530
	}
O
Oded Gabbay 已提交
531 532 533 534

	kfd->kgd = kgd;
	kfd->device_info = device_info;
	kfd->pdev = pdev;
535
	kfd->init_complete = false;
536
	kfd->kfd2kgd = f2g;
537
	atomic_set(&kfd->compute_profile, 0);
538 539 540 541

	mutex_init(&kfd->doorbell_mutex);
	memset(&kfd->doorbell_available_index, 0,
		sizeof(kfd->doorbell_available_index));
O
Oded Gabbay 已提交
542

543 544
	atomic_set(&kfd->sram_ecc_flag, 0);

O
Oded Gabbay 已提交
545 546 547
	return kfd;
}

F
Felix Kuehling 已提交
548 549 550
static void kfd_cwsr_init(struct kfd_dev *kfd)
{
	if (cwsr_enable && kfd->device_info->supports_cwsr) {
551 552 553 554
		if (kfd->device_info->asic_family < CHIP_VEGA10) {
			BUILD_BUG_ON(sizeof(cwsr_trap_gfx8_hex) > PAGE_SIZE);
			kfd->cwsr_isa = cwsr_trap_gfx8_hex;
			kfd->cwsr_isa_size = sizeof(cwsr_trap_gfx8_hex);
555
		} else if (kfd->device_info->asic_family < CHIP_NAVI10) {
556 557 558
			BUILD_BUG_ON(sizeof(cwsr_trap_gfx9_hex) > PAGE_SIZE);
			kfd->cwsr_isa = cwsr_trap_gfx9_hex;
			kfd->cwsr_isa_size = sizeof(cwsr_trap_gfx9_hex);
559 560 561 562
		} else {
			BUILD_BUG_ON(sizeof(cwsr_trap_gfx10_hex) > PAGE_SIZE);
			kfd->cwsr_isa = cwsr_trap_gfx10_hex;
			kfd->cwsr_isa_size = sizeof(cwsr_trap_gfx10_hex);
563
		}
F
Felix Kuehling 已提交
564 565 566 567 568

		kfd->cwsr_enabled = true;
	}
}

O
Oded Gabbay 已提交
569 570 571
bool kgd2kfd_device_init(struct kfd_dev *kfd,
			 const struct kgd2kfd_shared_resources *gpu_resources)
{
572 573
	unsigned int size;

574
	kfd->mec_fw_version = amdgpu_amdkfd_get_fw_version(kfd->kgd,
575
			KGD_ENGINE_MEC1);
576
	kfd->sdma_fw_version = amdgpu_amdkfd_get_fw_version(kfd->kgd,
577
			KGD_ENGINE_SDMA1);
O
Oded Gabbay 已提交
578 579
	kfd->shared_resources = *gpu_resources;

580 581 582 583 584
	kfd->vm_info.first_vmid_kfd = ffs(gpu_resources->compute_vmid_bitmap)-1;
	kfd->vm_info.last_vmid_kfd = fls(gpu_resources->compute_vmid_bitmap)-1;
	kfd->vm_info.vmid_num_kfd = kfd->vm_info.last_vmid_kfd
			- kfd->vm_info.first_vmid_kfd + 1;

585 586 587 588 589 590 591 592 593 594 595
	/* Verify module parameters regarding mapped process number*/
	if ((hws_max_conc_proc < 0)
			|| (hws_max_conc_proc > kfd->vm_info.vmid_num_kfd)) {
		dev_err(kfd_device,
			"hws_max_conc_proc %d must be between 0 and %d, use %d instead\n",
			hws_max_conc_proc, kfd->vm_info.vmid_num_kfd,
			kfd->vm_info.vmid_num_kfd);
		kfd->max_proc_per_quantum = kfd->vm_info.vmid_num_kfd;
	} else
		kfd->max_proc_per_quantum = hws_max_conc_proc;

596 597 598 599 600 601 602
	/* Allocate global GWS that is shared by all KFD processes */
	if (hws_gws_support && amdgpu_amdkfd_alloc_gws(kfd->kgd,
			amdgpu_amdkfd_get_num_gws(kfd->kgd), &kfd->gws)) {
		dev_err(kfd_device, "Could not allocate %d gws\n",
			amdgpu_amdkfd_get_num_gws(kfd->kgd));
		goto out;
	}
603
	/* calculate max size of mqds needed for queues */
604 605
	size = max_num_of_queues_per_device *
			kfd->device_info->mqd_size_aligned;
606

607 608 609 610
	/*
	 * calculate max size of runlist packet.
	 * There can be only 2 packets at once
	 */
611 612 613
	size += (KFD_MAX_NUM_OF_PROCESSES * sizeof(struct pm4_mes_map_process) +
		max_num_of_queues_per_device * sizeof(struct pm4_mes_map_queues)
		+ sizeof(struct pm4_mes_runlist)) * 2;
614 615 616 617 618

	/* Add size of HIQ & DIQ */
	size += KFD_KERNEL_QUEUE_SIZE * 2;

	/* add another 512KB for all other allocations on gart (HPD, fences) */
619 620
	size += 512 * 1024;

621
	if (amdgpu_amdkfd_alloc_gtt_mem(
622
			kfd->kgd, size, &kfd->gtt_mem,
623 624
			&kfd->gtt_start_gpu_addr, &kfd->gtt_start_cpu_ptr,
			false)) {
625
		dev_err(kfd_device, "Could not allocate %d bytes\n", size);
626
		goto alloc_gtt_mem_failure;
627 628
	}

629
	dev_info(kfd_device, "Allocated %d bytes on gart\n", size);
630

631 632
	/* Initialize GTT sa with 512 byte chunk size */
	if (kfd_gtt_sa_init(kfd, size, 512) != 0) {
633
		dev_err(kfd_device, "Error initializing gtt sub-allocator\n");
634 635 636
		goto kfd_gtt_sa_init_error;
	}

637 638 639 640 641
	if (kfd_doorbell_init(kfd)) {
		dev_err(kfd_device,
			"Error initializing doorbell aperture\n");
		goto kfd_doorbell_error;
	}
642

643 644 645
	if (kfd->kfd2kgd->get_hive_id)
		kfd->hive_id = kfd->kfd2kgd->get_hive_id(kfd->kgd);

646
	if (kfd_interrupt_init(kfd)) {
647
		dev_err(kfd_device, "Error initializing interrupts\n");
648 649 650
		goto kfd_interrupt_error;
	}

651 652
	kfd->dqm = device_queue_manager_init(kfd);
	if (!kfd->dqm) {
653
		dev_err(kfd_device, "Error initializing queue manager\n");
654 655 656
		goto device_queue_manager_error;
	}

657 658 659
	if (kfd_iommu_device_init(kfd)) {
		dev_err(kfd_device, "Error initializing iommuv2\n");
		goto device_iommu_error;
660 661
	}

F
Felix Kuehling 已提交
662 663
	kfd_cwsr_init(kfd);

664 665 666
	if (kfd_resume(kfd))
		goto kfd_resume_error;

667 668
	kfd->dbgmgr = NULL;

669 670 671 672 673
	if (kfd_topology_add_device(kfd)) {
		dev_err(kfd_device, "Error adding device to topology\n");
		goto kfd_topology_add_device_error;
	}

O
Oded Gabbay 已提交
674
	kfd->init_complete = true;
675
	dev_info(kfd_device, "added device %x:%x\n", kfd->pdev->vendor,
O
Oded Gabbay 已提交
676 677
		 kfd->pdev->device);

678
	pr_debug("Starting kfd with the following scheduling policy %d\n",
679
		kfd->dqm->sched_policy);
680

681 682
	goto out;

683
kfd_topology_add_device_error:
684
kfd_resume_error:
685
device_iommu_error:
686 687
	device_queue_manager_uninit(kfd->dqm);
device_queue_manager_error:
688 689
	kfd_interrupt_exit(kfd);
kfd_interrupt_error:
690 691
	kfd_doorbell_fini(kfd);
kfd_doorbell_error:
692 693
	kfd_gtt_sa_fini(kfd);
kfd_gtt_sa_init_error:
694
	amdgpu_amdkfd_free_gtt_mem(kfd->kgd, kfd->gtt_mem);
695 696 697
alloc_gtt_mem_failure:
	if (hws_gws_support)
		amdgpu_amdkfd_free_gws(kfd->kgd, kfd->gws);
698
	dev_err(kfd_device,
699
		"device %x:%x NOT added due to errors\n",
700 701 702
		kfd->pdev->vendor, kfd->pdev->device);
out:
	return kfd->init_complete;
O
Oded Gabbay 已提交
703 704 705 706
}

void kgd2kfd_device_exit(struct kfd_dev *kfd)
{
707
	if (kfd->init_complete) {
708
		kgd2kfd_suspend(kfd);
709
		device_queue_manager_uninit(kfd->dqm);
710
		kfd_interrupt_exit(kfd);
711
		kfd_topology_remove_device(kfd);
712
		kfd_doorbell_fini(kfd);
713
		kfd_gtt_sa_fini(kfd);
714
		amdgpu_amdkfd_free_gtt_mem(kfd->kgd, kfd->gtt_mem);
715 716
		if (hws_gws_support)
			amdgpu_amdkfd_free_gws(kfd->kgd, kfd->gws);
717
	}
718

O
Oded Gabbay 已提交
719 720 721
	kfree(kfd);
}

722 723
int kgd2kfd_pre_reset(struct kfd_dev *kfd)
{
724 725 726 727 728 729 730 731
	if (!kfd->init_complete)
		return 0;
	kgd2kfd_suspend(kfd);

	/* hold dqm->lock to prevent further execution*/
	dqm_lock(kfd->dqm);

	kfd_signal_reset_event(kfd);
732 733 734
	return 0;
}

735 736 737 738 739 740
/*
 * Fix me. KFD won't be able to resume existing process for now.
 * We will keep all existing process in a evicted state and
 * wait the process to be terminated.
 */

741 742
int kgd2kfd_post_reset(struct kfd_dev *kfd)
{
743 744 745 746 747 748 749 750 751 752 753
	int ret, count;

	if (!kfd->init_complete)
		return 0;

	dqm_unlock(kfd->dqm);

	ret = kfd_resume(kfd);
	if (ret)
		return ret;
	count = atomic_dec_return(&kfd_locked);
754 755 756

	atomic_set(&kfd->sram_ecc_flag, 0);

757 758 759
	return 0;
}

760 761 762 763 764
bool kfd_is_locked(void)
{
	return  (atomic_read(&kfd_locked) > 0);
}

O
Oded Gabbay 已提交
765 766
void kgd2kfd_suspend(struct kfd_dev *kfd)
{
767 768 769
	if (!kfd->init_complete)
		return;

770
	/* For first KFD device suspend all the KFD processes */
771
	if (atomic_inc_return(&kfd_locked) == 1)
772 773
		kfd_suspend_all_processes();

774 775
	kfd->dqm->ops.stop(kfd->dqm);

776
	kfd_iommu_suspend(kfd);
O
Oded Gabbay 已提交
777 778 779 780
}

int kgd2kfd_resume(struct kfd_dev *kfd)
{
781 782
	int ret, count;

783 784
	if (!kfd->init_complete)
		return 0;
785

786 787 788 789
	ret = kfd_resume(kfd);
	if (ret)
		return ret;

790
	count = atomic_dec_return(&kfd_locked);
791 792 793
	WARN_ONCE(count < 0, "KFD suspend / resume ref. error");
	if (count == 0)
		ret = kfd_resume_all_processes();
794

795
	return ret;
796 797 798 799 800 801
}

static int kfd_resume(struct kfd_dev *kfd)
{
	int err = 0;

802 803 804 805 806 807 808
	err = kfd_iommu_resume(kfd);
	if (err) {
		dev_err(kfd_device,
			"Failed to resume IOMMU for device %x:%x\n",
			kfd->pdev->vendor, kfd->pdev->device);
		return err;
	}
809

810 811 812 813 814 815
	err = kfd->dqm->ops.start(kfd->dqm);
	if (err) {
		dev_err(kfd_device,
			"Error starting queue manager for device %x:%x\n",
			kfd->pdev->vendor, kfd->pdev->device);
		goto dqm_start_error;
816 817
	}

818 819 820
	return err;

dqm_start_error:
821
	kfd_iommu_suspend(kfd);
822
	return err;
O
Oded Gabbay 已提交
823 824
}

825 826
/* This is called directly from KGD at ISR. */
void kgd2kfd_interrupt(struct kfd_dev *kfd, const void *ih_ring_entry)
O
Oded Gabbay 已提交
827
{
828 829
	uint32_t patched_ihre[KFD_MAX_RING_ENTRY_SIZE];
	bool is_patched = false;
830
	unsigned long flags;
831

832 833 834
	if (!kfd->init_complete)
		return;

835 836 837 838 839
	if (kfd->device_info->ih_ring_entry_size > sizeof(patched_ihre)) {
		dev_err_once(kfd_device, "Ring entry too small\n");
		return;
	}

840
	spin_lock_irqsave(&kfd->interrupt_lock, flags);
841 842

	if (kfd->interrupts_active
843 844 845 846
	    && interrupt_is_wanted(kfd, ih_ring_entry,
				   patched_ihre, &is_patched)
	    && enqueue_ih_ring_entry(kfd,
				     is_patched ? patched_ihre : ih_ring_entry))
847
		queue_work(kfd->ih_wq, &kfd->interrupt_work);
848

849
	spin_unlock_irqrestore(&kfd->interrupt_lock, flags);
O
Oded Gabbay 已提交
850
}
851

852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889
int kgd2kfd_quiesce_mm(struct mm_struct *mm)
{
	struct kfd_process *p;
	int r;

	/* Because we are called from arbitrary context (workqueue) as opposed
	 * to process context, kfd_process could attempt to exit while we are
	 * running so the lookup function increments the process ref count.
	 */
	p = kfd_lookup_process_by_mm(mm);
	if (!p)
		return -ESRCH;

	r = kfd_process_evict_queues(p);

	kfd_unref_process(p);
	return r;
}

int kgd2kfd_resume_mm(struct mm_struct *mm)
{
	struct kfd_process *p;
	int r;

	/* Because we are called from arbitrary context (workqueue) as opposed
	 * to process context, kfd_process could attempt to exit while we are
	 * running so the lookup function increments the process ref count.
	 */
	p = kfd_lookup_process_by_mm(mm);
	if (!p)
		return -ESRCH;

	r = kfd_process_restore_queues(p);

	kfd_unref_process(p);
	return r;
}

890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937
/** kgd2kfd_schedule_evict_and_restore_process - Schedules work queue that will
 *   prepare for safe eviction of KFD BOs that belong to the specified
 *   process.
 *
 * @mm: mm_struct that identifies the specified KFD process
 * @fence: eviction fence attached to KFD process BOs
 *
 */
int kgd2kfd_schedule_evict_and_restore_process(struct mm_struct *mm,
					       struct dma_fence *fence)
{
	struct kfd_process *p;
	unsigned long active_time;
	unsigned long delay_jiffies = msecs_to_jiffies(PROCESS_ACTIVE_TIME_MS);

	if (!fence)
		return -EINVAL;

	if (dma_fence_is_signaled(fence))
		return 0;

	p = kfd_lookup_process_by_mm(mm);
	if (!p)
		return -ENODEV;

	if (fence->seqno == p->last_eviction_seqno)
		goto out;

	p->last_eviction_seqno = fence->seqno;

	/* Avoid KFD process starvation. Wait for at least
	 * PROCESS_ACTIVE_TIME_MS before evicting the process again
	 */
	active_time = get_jiffies_64() - p->last_restore_timestamp;
	if (delay_jiffies > active_time)
		delay_jiffies -= active_time;
	else
		delay_jiffies = 0;

	/* During process initialization eviction_work.dwork is initialized
	 * to kfd_evict_bo_worker
	 */
	schedule_delayed_work(&p->eviction_work, delay_jiffies);
out:
	kfd_unref_process(p);
	return 0;
}

938 939 940
static int kfd_gtt_sa_init(struct kfd_dev *kfd, unsigned int buf_size,
				unsigned int chunk_size)
{
941
	unsigned int num_of_longs;
942

943 944 945 946 947 948
	if (WARN_ON(buf_size < chunk_size))
		return -EINVAL;
	if (WARN_ON(buf_size == 0))
		return -EINVAL;
	if (WARN_ON(chunk_size == 0))
		return -EINVAL;
949 950 951 952

	kfd->gtt_sa_chunk_size = chunk_size;
	kfd->gtt_sa_num_of_chunks = buf_size / chunk_size;

953 954
	num_of_longs = (kfd->gtt_sa_num_of_chunks + BITS_PER_LONG - 1) /
		BITS_PER_LONG;
955

956
	kfd->gtt_sa_bitmap = kcalloc(num_of_longs, sizeof(long), GFP_KERNEL);
957 958 959 960

	if (!kfd->gtt_sa_bitmap)
		return -ENOMEM;

961
	pr_debug("gtt_sa_num_of_chunks = %d, gtt_sa_bitmap = %p\n",
962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000
			kfd->gtt_sa_num_of_chunks, kfd->gtt_sa_bitmap);

	mutex_init(&kfd->gtt_sa_lock);

	return 0;

}

static void kfd_gtt_sa_fini(struct kfd_dev *kfd)
{
	mutex_destroy(&kfd->gtt_sa_lock);
	kfree(kfd->gtt_sa_bitmap);
}

static inline uint64_t kfd_gtt_sa_calc_gpu_addr(uint64_t start_addr,
						unsigned int bit_num,
						unsigned int chunk_size)
{
	return start_addr + bit_num * chunk_size;
}

static inline uint32_t *kfd_gtt_sa_calc_cpu_addr(void *start_addr,
						unsigned int bit_num,
						unsigned int chunk_size)
{
	return (uint32_t *) ((uint64_t) start_addr + bit_num * chunk_size);
}

int kfd_gtt_sa_allocate(struct kfd_dev *kfd, unsigned int size,
			struct kfd_mem_obj **mem_obj)
{
	unsigned int found, start_search, cur_size;

	if (size == 0)
		return -EINVAL;

	if (size > kfd->gtt_sa_num_of_chunks * kfd->gtt_sa_chunk_size)
		return -ENOMEM;

1001 1002
	*mem_obj = kzalloc(sizeof(struct kfd_mem_obj), GFP_KERNEL);
	if (!(*mem_obj))
1003 1004
		return -ENOMEM;

1005
	pr_debug("Allocated mem_obj = %p for size = %d\n", *mem_obj, size);
1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016

	start_search = 0;

	mutex_lock(&kfd->gtt_sa_lock);

kfd_gtt_restart_search:
	/* Find the first chunk that is free */
	found = find_next_zero_bit(kfd->gtt_sa_bitmap,
					kfd->gtt_sa_num_of_chunks,
					start_search);

1017
	pr_debug("Found = %d\n", found);
1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034

	/* If there wasn't any free chunk, bail out */
	if (found == kfd->gtt_sa_num_of_chunks)
		goto kfd_gtt_no_free_chunk;

	/* Update fields of mem_obj */
	(*mem_obj)->range_start = found;
	(*mem_obj)->range_end = found;
	(*mem_obj)->gpu_addr = kfd_gtt_sa_calc_gpu_addr(
					kfd->gtt_start_gpu_addr,
					found,
					kfd->gtt_sa_chunk_size);
	(*mem_obj)->cpu_ptr = kfd_gtt_sa_calc_cpu_addr(
					kfd->gtt_start_cpu_ptr,
					found,
					kfd->gtt_sa_chunk_size);

1035
	pr_debug("gpu_addr = %p, cpu_addr = %p\n",
1036 1037 1038 1039
			(uint64_t *) (*mem_obj)->gpu_addr, (*mem_obj)->cpu_ptr);

	/* If we need only one chunk, mark it as allocated and get out */
	if (size <= kfd->gtt_sa_chunk_size) {
1040
		pr_debug("Single bit\n");
1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074
		set_bit(found, kfd->gtt_sa_bitmap);
		goto kfd_gtt_out;
	}

	/* Otherwise, try to see if we have enough contiguous chunks */
	cur_size = size - kfd->gtt_sa_chunk_size;
	do {
		(*mem_obj)->range_end =
			find_next_zero_bit(kfd->gtt_sa_bitmap,
					kfd->gtt_sa_num_of_chunks, ++found);
		/*
		 * If next free chunk is not contiguous than we need to
		 * restart our search from the last free chunk we found (which
		 * wasn't contiguous to the previous ones
		 */
		if ((*mem_obj)->range_end != found) {
			start_search = found;
			goto kfd_gtt_restart_search;
		}

		/*
		 * If we reached end of buffer, bail out with error
		 */
		if (found == kfd->gtt_sa_num_of_chunks)
			goto kfd_gtt_no_free_chunk;

		/* Check if we don't need another chunk */
		if (cur_size <= kfd->gtt_sa_chunk_size)
			cur_size = 0;
		else
			cur_size -= kfd->gtt_sa_chunk_size;

	} while (cur_size > 0);

1075
	pr_debug("range_start = %d, range_end = %d\n",
1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088
		(*mem_obj)->range_start, (*mem_obj)->range_end);

	/* Mark the chunks as allocated */
	for (found = (*mem_obj)->range_start;
		found <= (*mem_obj)->range_end;
		found++)
		set_bit(found, kfd->gtt_sa_bitmap);

kfd_gtt_out:
	mutex_unlock(&kfd->gtt_sa_lock);
	return 0;

kfd_gtt_no_free_chunk:
1089
	pr_debug("Allocation failed with mem_obj = %p\n", mem_obj);
1090 1091 1092 1093 1094 1095 1096 1097 1098
	mutex_unlock(&kfd->gtt_sa_lock);
	kfree(mem_obj);
	return -ENOMEM;
}

int kfd_gtt_sa_free(struct kfd_dev *kfd, struct kfd_mem_obj *mem_obj)
{
	unsigned int bit;

1099 1100 1101
	/* Act like kfree when trying to free a NULL object */
	if (!mem_obj)
		return 0;
1102

1103
	pr_debug("Free mem_obj = %p, range_start = %d, range_end = %d\n",
1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118
			mem_obj, mem_obj->range_start, mem_obj->range_end);

	mutex_lock(&kfd->gtt_sa_lock);

	/* Mark the chunks as free */
	for (bit = mem_obj->range_start;
		bit <= mem_obj->range_end;
		bit++)
		clear_bit(bit, kfd->gtt_sa_bitmap);

	mutex_unlock(&kfd->gtt_sa_lock);

	kfree(mem_obj);
	return 0;
}
1119

1120 1121 1122 1123 1124 1125
void kgd2kfd_set_sram_ecc_flag(struct kfd_dev *kfd)
{
	if (kfd)
		atomic_inc(&kfd->sram_ecc_flag);
}

1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140
void kfd_inc_compute_active(struct kfd_dev *kfd)
{
	if (atomic_inc_return(&kfd->compute_profile) == 1)
		amdgpu_amdkfd_set_compute_idle(kfd->kgd, false);
}

void kfd_dec_compute_active(struct kfd_dev *kfd)
{
	int count = atomic_dec_return(&kfd->compute_profile);

	if (count == 0)
		amdgpu_amdkfd_set_compute_idle(kfd->kgd, true);
	WARN_ONCE(count < 0, "Compute profile ref. count error");
}

1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162
#if defined(CONFIG_DEBUG_FS)

/* This function will send a package to HIQ to hang the HWS
 * which will trigger a GPU reset and bring the HWS back to normal state
 */
int kfd_debugfs_hang_hws(struct kfd_dev *dev)
{
	int r = 0;

	if (dev->dqm->sched_policy != KFD_SCHED_POLICY_HWS) {
		pr_err("HWS is not enabled");
		return -EINVAL;
	}

	r = pm_debugfs_hang_hws(&dev->dqm->packets);
	if (!r)
		r = dqm_debugfs_execute_queues(dev->dqm);

	return r;
}

#endif