xref: /netbsd-src/sys/external/bsd/drm2/dist/drm/amd/amdgpu/amdgpu_irq.c (revision 07eb61ce39682b60a0b29b81ad8b6af16527a557)
1 /*	$NetBSD: amdgpu_irq.c,v 1.8 2021/12/19 12:31:45 riastradh Exp $	*/
2 
3 /*
4  * Copyright 2008 Advanced Micro Devices, Inc.
5  * Copyright 2008 Red Hat Inc.
6  * Copyright 2009 Jerome Glisse.
7  *
8  * Permission is hereby granted, free of charge, to any person obtaining a
9  * copy of this software and associated documentation files (the "Software"),
10  * to deal in the Software without restriction, including without limitation
11  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
12  * and/or sell copies of the Software, and to permit persons to whom the
13  * Software is furnished to do so, subject to the following conditions:
14  *
15  * The above copyright notice and this permission notice shall be included in
16  * all copies or substantial portions of the Software.
17  *
18  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
21  * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
22  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
23  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
24  * OTHER DEALINGS IN THE SOFTWARE.
25  *
26  * Authors: Dave Airlie
27  *          Alex Deucher
28  *          Jerome Glisse
29  */
30 
31 /**
32  * DOC: Interrupt Handling
33  *
34  * Interrupts generated within GPU hardware raise interrupt requests that are
35  * passed to amdgpu IRQ handler which is responsible for detecting source and
36  * type of the interrupt and dispatching matching handlers. If handling an
37  * interrupt requires calling kernel functions that may sleep processing is
38  * dispatched to work handlers.
39  *
40  * If MSI functionality is not disabled by module parameter then MSI
41  * support will be enabled.
42  *
43  * For GPU interrupt sources that may be driven by another driver, IRQ domain
44  * support is used (with mapping between virtual and hardware IRQs).
45  */
46 
47 #include <sys/cdefs.h>
48 __KERNEL_RCSID(0, "$NetBSD: amdgpu_irq.c,v 1.8 2021/12/19 12:31:45 riastradh Exp $");
49 
50 #include <linux/irq.h>
51 #include <linux/pci.h>
52 
53 #include <drm/drm_crtc_helper.h>
54 #include <drm/drm_irq.h>
55 #include <drm/drm_vblank.h>
56 #include <drm/amdgpu_drm.h>
57 #include "amdgpu.h"
58 #include "amdgpu_ih.h"
59 #include "atom.h"
60 #include "amdgpu_connectors.h"
61 #include "amdgpu_trace.h"
62 #include "amdgpu_amdkfd.h"
63 #include "amdgpu_ras.h"
64 
65 #include <linux/pm_runtime.h>
66 
67 #ifdef CONFIG_DRM_AMD_DC
68 #include "amdgpu_dm_irq.h"
69 #endif
70 
71 #define AMDGPU_WAIT_IDLE_TIMEOUT 200
72 
73 /**
74  * amdgpu_hotplug_work_func - work handler for display hotplug event
75  *
76  * @work: work struct pointer
77  *
78  * This is the hotplug event work handler (all ASICs).
79  * The work gets scheduled from the IRQ handler if there
80  * was a hotplug interrupt.  It walks through the connector table
81  * and calls hotplug handler for each connector. After this, it sends
82  * a DRM hotplug event to alert userspace.
83  *
84  * This design approach is required in order to defer hotplug event handling
85  * from the IRQ handler to a work handler because hotplug handler has to use
86  * mutexes which cannot be locked in an IRQ handler (since &mutex_lock may
87  * sleep).
88  */
89 static void amdgpu_hotplug_work_func(struct work_struct *work)
90 {
91 	struct amdgpu_device *adev = container_of(work, struct amdgpu_device,
92 						  hotplug_work);
93 	struct drm_device *dev = adev->ddev;
94 	struct drm_mode_config *mode_config = &dev->mode_config;
95 	struct drm_connector *connector;
96 	struct drm_connector_list_iter iter;
97 
98 	mutex_lock(&mode_config->mutex);
99 	drm_connector_list_iter_begin(dev, &iter);
100 	drm_for_each_connector_iter(connector, &iter)
101 		amdgpu_connector_hotplug(connector);
102 	drm_connector_list_iter_end(&iter);
103 	mutex_unlock(&mode_config->mutex);
104 	/* Just fire off a uevent and let userspace tell us what to do */
105 	drm_helper_hpd_irq_event(dev);
106 }
107 
108 /**
109  * amdgpu_irq_disable_all - disable *all* interrupts
110  *
111  * @adev: amdgpu device pointer
112  *
113  * Disable all types of interrupts from all sources.
114  */
115 void amdgpu_irq_disable_all(struct amdgpu_device *adev)
116 {
117 	unsigned long irqflags;
118 	unsigned i, j, k;
119 	int r;
120 
121 	spin_lock_irqsave(&adev->irq.lock, irqflags);
122 	for (i = 0; i < AMDGPU_IRQ_CLIENTID_MAX; ++i) {
123 		if (!adev->irq.client[i].sources)
124 			continue;
125 
126 		for (j = 0; j < AMDGPU_MAX_IRQ_SRC_ID; ++j) {
127 			struct amdgpu_irq_src *src = adev->irq.client[i].sources[j];
128 
129 			if (!src || !src->funcs->set || !src->num_types)
130 				continue;
131 
132 			for (k = 0; k < src->num_types; ++k) {
133 				atomic_set(&src->enabled_types[k], 0);
134 				r = src->funcs->set(adev, src, k,
135 						    AMDGPU_IRQ_STATE_DISABLE);
136 				if (r)
137 					DRM_ERROR("error disabling interrupt (%d)\n",
138 						  r);
139 			}
140 		}
141 	}
142 	spin_unlock_irqrestore(&adev->irq.lock, irqflags);
143 }
144 
145 /**
146  * amdgpu_irq_handler - IRQ handler
147  *
148  * @irq: IRQ number (unused)
149  * @arg: pointer to DRM device
150  *
151  * IRQ handler for amdgpu driver (all ASICs).
152  *
153  * Returns:
154  * result of handling the IRQ, as defined by &irqreturn_t
155  */
156 irqreturn_t amdgpu_irq_handler(DRM_IRQ_ARGS)
157 {
158 	struct drm_device *dev = (struct drm_device *) arg;
159 	struct amdgpu_device *adev = dev->dev_private;
160 	irqreturn_t ret;
161 
162 	ret = amdgpu_ih_process(adev, &adev->irq.ih);
163 	if (ret == IRQ_HANDLED)
164 		pm_runtime_mark_last_busy(dev->dev);
165 
166 	/* For the hardware that cannot enable bif ring for both ras_controller_irq
167          * and ras_err_evnet_athub_irq ih cookies, the driver has to poll status
168 	 * register to check whether the interrupt is triggered or not, and properly
169 	 * ack the interrupt if it is there
170 	 */
171 	if (amdgpu_ras_is_supported(adev, AMDGPU_RAS_BLOCK__PCIE_BIF)) {
172 		if (adev->nbio.funcs &&
173 		    adev->nbio.funcs->handle_ras_controller_intr_no_bifring)
174 			adev->nbio.funcs->handle_ras_controller_intr_no_bifring(adev);
175 
176 		if (adev->nbio.funcs &&
177 		    adev->nbio.funcs->handle_ras_err_event_athub_intr_no_bifring)
178 			adev->nbio.funcs->handle_ras_err_event_athub_intr_no_bifring(adev);
179 	}
180 
181 	return ret;
182 }
183 
184 /**
185  * amdgpu_irq_handle_ih1 - kick of processing for IH1
186  *
187  * @work: work structure in struct amdgpu_irq
188  *
189  * Kick of processing IH ring 1.
190  */
191 static void amdgpu_irq_handle_ih1(struct work_struct *work)
192 {
193 	struct amdgpu_device *adev = container_of(work, struct amdgpu_device,
194 						  irq.ih1_work);
195 
196 	amdgpu_ih_process(adev, &adev->irq.ih1);
197 }
198 
199 /**
200  * amdgpu_irq_handle_ih2 - kick of processing for IH2
201  *
202  * @work: work structure in struct amdgpu_irq
203  *
204  * Kick of processing IH ring 2.
205  */
206 static void amdgpu_irq_handle_ih2(struct work_struct *work)
207 {
208 	struct amdgpu_device *adev = container_of(work, struct amdgpu_device,
209 						  irq.ih2_work);
210 
211 	amdgpu_ih_process(adev, &adev->irq.ih2);
212 }
213 
214 /**
215  * amdgpu_msi_ok - check whether MSI functionality is enabled
216  *
217  * @adev: amdgpu device pointer (unused)
218  *
219  * Checks whether MSI functionality has been disabled via module parameter
220  * (all ASICs).
221  *
222  * Returns:
223  * *true* if MSIs are allowed to be enabled or *false* otherwise
224  */
225 static bool amdgpu_msi_ok(struct amdgpu_device *adev)
226 {
227 	if (amdgpu_msi == 1)
228 		return true;
229 	else if (amdgpu_msi == 0)
230 		return false;
231 
232 	return true;
233 }
234 
235 /**
236  * amdgpu_irq_init - initialize interrupt handling
237  *
238  * @adev: amdgpu device pointer
239  *
240  * Sets up work functions for hotplug and reset interrupts, enables MSI
241  * functionality, initializes vblank, hotplug and reset interrupt handling.
242  *
243  * Returns:
244  * 0 on success or error code on failure
245  */
246 int amdgpu_irq_init(struct amdgpu_device *adev)
247 {
248 	int r = 0;
249 
250 	spin_lock_init(&adev->irq.lock);
251 
252 	/* Enable MSI if not disabled by module parameter */
253 	adev->irq.msi_enabled = false;
254 
255 	if (amdgpu_msi_ok(adev)) {
256 #ifndef __NetBSD__		/* XXX amdgpu msix */
257 		int nvec = pci_msix_vec_count(adev->pdev);
258 		unsigned int flags;
259 
260 		if (nvec <= 0) {
261 			flags = PCI_IRQ_MSI;
262 		} else {
263 			flags = PCI_IRQ_MSI | PCI_IRQ_MSIX;
264 		}
265 		/* we only need one vector */
266 		nvec = pci_alloc_irq_vectors(adev->pdev, 1, 1, flags);
267 		if (nvec > 0) {
268 			adev->irq.msi_enabled = true;
269 			dev_dbg(adev->dev, "amdgpu: using MSI/MSI-X.\n");
270 		}
271 #endif
272 	}
273 
274 	if (!amdgpu_device_has_dc_support(adev)) {
275 		if (!adev->enable_virtual_display)
276 			/* Disable vblank IRQs aggressively for power-saving */
277 			/* XXX: can this be enabled for DC? */
278 			adev->ddev->vblank_disable_immediate = true;
279 
280 		r = drm_vblank_init(adev->ddev, adev->mode_info.num_crtc);
281 		if (r)
282 			return r;
283 
284 		/* Pre-DCE11 */
285 		INIT_WORK(&adev->hotplug_work,
286 				amdgpu_hotplug_work_func);
287 	}
288 
289 	INIT_WORK(&adev->irq.ih1_work, amdgpu_irq_handle_ih1);
290 	INIT_WORK(&adev->irq.ih2_work, amdgpu_irq_handle_ih2);
291 
292 	adev->irq.installed = true;
293 #ifdef __NetBSD__	/* XXX post-merge address comment below */
294 	r = drm_irq_install(adev->ddev);
295 #else
296 	/* Use vector 0 for MSI-X */
297 	r = drm_irq_install(adev->ddev, pci_irq_vector(adev->pdev, 0));
298 #endif
299 	if (r) {
300 		adev->irq.installed = false;
301 		if (!amdgpu_device_has_dc_support(adev))
302 			flush_work(&adev->hotplug_work);
303 		return r;
304 	}
305 	adev->ddev->max_vblank_count = 0x00ffffff;
306 
307 	DRM_DEBUG("amdgpu: irq initialized.\n");
308 	return 0;
309 }
310 
311 /**
312  * amdgpu_irq_fini - shut down interrupt handling
313  *
314  * @adev: amdgpu device pointer
315  *
316  * Tears down work functions for hotplug and reset interrupts, disables MSI
317  * functionality, shuts down vblank, hotplug and reset interrupt handling,
318  * turns off interrupts from all sources (all ASICs).
319  */
320 void amdgpu_irq_fini(struct amdgpu_device *adev)
321 {
322 	unsigned i, j;
323 
324 	if (adev->irq.installed) {
325 		drm_irq_uninstall(adev->ddev);
326 		adev->irq.installed = false;
327 #ifndef __NetBSD__		/* XXX amdgpu msix */
328 		if (adev->irq.msi_enabled)
329 			pci_free_irq_vectors(adev->pdev);
330 #endif
331 		if (!amdgpu_device_has_dc_support(adev))
332 			flush_work(&adev->hotplug_work);
333 	}
334 
335 	for (i = 0; i < AMDGPU_IRQ_CLIENTID_MAX; ++i) {
336 		if (!adev->irq.client[i].sources)
337 			continue;
338 
339 		for (j = 0; j < AMDGPU_MAX_IRQ_SRC_ID; ++j) {
340 			struct amdgpu_irq_src *src = adev->irq.client[i].sources[j];
341 
342 			if (!src)
343 				continue;
344 
345 			kfree(src->enabled_types);
346 			src->enabled_types = NULL;
347 			if (src->data) {
348 				kfree(src->data);
349 				kfree(src);
350 				adev->irq.client[i].sources[j] = NULL;
351 			}
352 		}
353 		kfree(adev->irq.client[i].sources);
354 		adev->irq.client[i].sources = NULL;
355 	}
356 
357 	spin_lock_destroy(&adev->irq.lock);
358 }
359 
360 /**
361  * amdgpu_irq_add_id - register IRQ source
362  *
363  * @adev: amdgpu device pointer
364  * @client_id: client id
365  * @src_id: source id
366  * @source: IRQ source pointer
367  *
368  * Registers IRQ source on a client.
369  *
370  * Returns:
371  * 0 on success or error code otherwise
372  */
373 int amdgpu_irq_add_id(struct amdgpu_device *adev,
374 		      unsigned client_id, unsigned src_id,
375 		      struct amdgpu_irq_src *source)
376 {
377 	if (client_id >= AMDGPU_IRQ_CLIENTID_MAX)
378 		return -EINVAL;
379 
380 	if (src_id >= AMDGPU_MAX_IRQ_SRC_ID)
381 		return -EINVAL;
382 
383 	if (!source->funcs)
384 		return -EINVAL;
385 
386 	if (!adev->irq.client[client_id].sources) {
387 		adev->irq.client[client_id].sources =
388 			kcalloc(AMDGPU_MAX_IRQ_SRC_ID,
389 				sizeof(struct amdgpu_irq_src *),
390 				GFP_KERNEL);
391 		if (!adev->irq.client[client_id].sources)
392 			return -ENOMEM;
393 	}
394 
395 	if (adev->irq.client[client_id].sources[src_id] != NULL)
396 		return -EINVAL;
397 
398 	if (source->num_types && !source->enabled_types) {
399 		atomic_t *types;
400 
401 		types = kcalloc(source->num_types, sizeof(atomic_t),
402 				GFP_KERNEL);
403 		if (!types)
404 			return -ENOMEM;
405 
406 		source->enabled_types = types;
407 	}
408 
409 	adev->irq.client[client_id].sources[src_id] = source;
410 	return 0;
411 }
412 
413 /**
414  * amdgpu_irq_dispatch - dispatch IRQ to IP blocks
415  *
416  * @adev: amdgpu device pointer
417  * @ih: interrupt ring instance
418  *
419  * Dispatches IRQ to IP blocks.
420  */
421 void amdgpu_irq_dispatch(struct amdgpu_device *adev,
422 			 struct amdgpu_ih_ring *ih)
423 {
424 	u32 ring_index = ih->rptr >> 2;
425 	struct amdgpu_iv_entry entry;
426 	unsigned client_id, src_id;
427 	struct amdgpu_irq_src *src;
428 	bool handled = false;
429 	int r;
430 
431 	entry.iv_entry = (const uint32_t *)__UNVOLATILE(&ih->ring[ring_index]);
432 	amdgpu_ih_decode_iv(adev, &entry);
433 
434 	trace_amdgpu_iv(ih - &adev->irq.ih, &entry);
435 
436 	client_id = entry.client_id;
437 	src_id = entry.src_id;
438 
439 	if (client_id >= AMDGPU_IRQ_CLIENTID_MAX) {
440 		DRM_DEBUG("Invalid client_id in IV: %d\n", client_id);
441 
442 	} else	if (src_id >= AMDGPU_MAX_IRQ_SRC_ID) {
443 		DRM_DEBUG("Invalid src_id in IV: %d\n", src_id);
444 
445 #ifndef __NetBSD__		/* XXX amdgpu irq */
446 	} else if (adev->irq.virq[src_id]) {
447 		generic_handle_irq(irq_find_mapping(adev->irq.domain, src_id));
448 #endif
449 
450 	} else if (!adev->irq.client[client_id].sources) {
451 		DRM_DEBUG("Unregistered interrupt client_id: %d src_id: %d\n",
452 			  client_id, src_id);
453 
454 	} else if ((src = adev->irq.client[client_id].sources[src_id])) {
455 		r = src->funcs->process(adev, src, &entry);
456 		if (r < 0)
457 			DRM_ERROR("error processing interrupt (%d)\n", r);
458 		else if (r)
459 			handled = true;
460 
461 	} else {
462 		DRM_DEBUG("Unhandled interrupt src_id: %d\n", src_id);
463 	}
464 
465 	/* Send it to amdkfd as well if it isn't already handled */
466 	if (!handled)
467 		amdgpu_amdkfd_interrupt(adev, entry.iv_entry);
468 }
469 
470 /**
471  * amdgpu_irq_update - update hardware interrupt state
472  *
473  * @adev: amdgpu device pointer
474  * @src: interrupt source pointer
475  * @type: type of interrupt
476  *
477  * Updates interrupt state for the specific source (all ASICs).
478  */
479 int amdgpu_irq_update(struct amdgpu_device *adev,
480 			     struct amdgpu_irq_src *src, unsigned type)
481 {
482 	unsigned long irqflags;
483 	enum amdgpu_interrupt_state state;
484 	int r;
485 
486 	spin_lock_irqsave(&adev->irq.lock, irqflags);
487 
488 	/* We need to determine after taking the lock, otherwise
489 	   we might disable just enabled interrupts again */
490 	if (amdgpu_irq_enabled(adev, src, type))
491 		state = AMDGPU_IRQ_STATE_ENABLE;
492 	else
493 		state = AMDGPU_IRQ_STATE_DISABLE;
494 
495 	r = src->funcs->set(adev, src, type, state);
496 	spin_unlock_irqrestore(&adev->irq.lock, irqflags);
497 	return r;
498 }
499 
500 /**
501  * amdgpu_irq_gpu_reset_resume_helper - update interrupt states on all sources
502  *
503  * @adev: amdgpu device pointer
504  *
505  * Updates state of all types of interrupts on all sources on resume after
506  * reset.
507  */
508 void amdgpu_irq_gpu_reset_resume_helper(struct amdgpu_device *adev)
509 {
510 	int i, j, k;
511 
512 	for (i = 0; i < AMDGPU_IRQ_CLIENTID_MAX; ++i) {
513 		if (!adev->irq.client[i].sources)
514 			continue;
515 
516 		for (j = 0; j < AMDGPU_MAX_IRQ_SRC_ID; ++j) {
517 			struct amdgpu_irq_src *src = adev->irq.client[i].sources[j];
518 
519 			if (!src)
520 				continue;
521 			for (k = 0; k < src->num_types; k++)
522 				amdgpu_irq_update(adev, src, k);
523 		}
524 	}
525 }
526 
527 /**
528  * amdgpu_irq_get - enable interrupt
529  *
530  * @adev: amdgpu device pointer
531  * @src: interrupt source pointer
532  * @type: type of interrupt
533  *
534  * Enables specified type of interrupt on the specified source (all ASICs).
535  *
536  * Returns:
537  * 0 on success or error code otherwise
538  */
539 int amdgpu_irq_get(struct amdgpu_device *adev, struct amdgpu_irq_src *src,
540 		   unsigned type)
541 {
542 	if (!adev->ddev->irq_enabled)
543 		return -ENOENT;
544 
545 	if (type >= src->num_types)
546 		return -EINVAL;
547 
548 	if (!src->enabled_types || !src->funcs->set)
549 		return -EINVAL;
550 
551 	if (atomic_inc_return(&src->enabled_types[type]) == 1)
552 		return amdgpu_irq_update(adev, src, type);
553 
554 	return 0;
555 }
556 
557 /**
558  * amdgpu_irq_put - disable interrupt
559  *
560  * @adev: amdgpu device pointer
561  * @src: interrupt source pointer
562  * @type: type of interrupt
563  *
564  * Enables specified type of interrupt on the specified source (all ASICs).
565  *
566  * Returns:
567  * 0 on success or error code otherwise
568  */
569 int amdgpu_irq_put(struct amdgpu_device *adev, struct amdgpu_irq_src *src,
570 		   unsigned type)
571 {
572 	if (!adev->ddev->irq_enabled)
573 		return -ENOENT;
574 
575 	if (type >= src->num_types)
576 		return -EINVAL;
577 
578 	if (!src->enabled_types || !src->funcs->set)
579 		return -EINVAL;
580 
581 	if (atomic_dec_and_test(&src->enabled_types[type]))
582 		return amdgpu_irq_update(adev, src, type);
583 
584 	return 0;
585 }
586 
587 /**
588  * amdgpu_irq_enabled - check whether interrupt is enabled or not
589  *
590  * @adev: amdgpu device pointer
591  * @src: interrupt source pointer
592  * @type: type of interrupt
593  *
594  * Checks whether the given type of interrupt is enabled on the given source.
595  *
596  * Returns:
597  * *true* if interrupt is enabled, *false* if interrupt is disabled or on
598  * invalid parameters
599  */
600 bool amdgpu_irq_enabled(struct amdgpu_device *adev, struct amdgpu_irq_src *src,
601 			unsigned type)
602 {
603 	if (!adev->ddev->irq_enabled)
604 		return false;
605 
606 	if (type >= src->num_types)
607 		return false;
608 
609 	if (!src->enabled_types || !src->funcs->set)
610 		return false;
611 
612 	return !!atomic_read(&src->enabled_types[type]);
613 }
614 
615 #ifndef __NetBSD__		/* XXX amdgpu irq domain */
616 
617 /* XXX: Generic IRQ handling */
618 static void amdgpu_irq_mask(struct irq_data *irqd)
619 {
620 	/* XXX */
621 }
622 
623 static void amdgpu_irq_unmask(struct irq_data *irqd)
624 {
625 	/* XXX */
626 }
627 
628 /* amdgpu hardware interrupt chip descriptor */
629 static struct irq_chip amdgpu_irq_chip = {
630 	.name = "amdgpu-ih",
631 	.irq_mask = amdgpu_irq_mask,
632 	.irq_unmask = amdgpu_irq_unmask,
633 };
634 
635 /**
636  * amdgpu_irqdomain_map - create mapping between virtual and hardware IRQ numbers
637  *
638  * @d: amdgpu IRQ domain pointer (unused)
639  * @irq: virtual IRQ number
640  * @hwirq: hardware irq number
641  *
642  * Current implementation assigns simple interrupt handler to the given virtual
643  * IRQ.
644  *
645  * Returns:
646  * 0 on success or error code otherwise
647  */
648 static int amdgpu_irqdomain_map(struct irq_domain *d,
649 				unsigned int irq, irq_hw_number_t hwirq)
650 {
651 	if (hwirq >= AMDGPU_MAX_IRQ_SRC_ID)
652 		return -EPERM;
653 
654 	irq_set_chip_and_handler(irq,
655 				 &amdgpu_irq_chip, handle_simple_irq);
656 	return 0;
657 }
658 
659 /* Implementation of methods for amdgpu IRQ domain */
660 static const struct irq_domain_ops amdgpu_hw_irqdomain_ops = {
661 	.map = amdgpu_irqdomain_map,
662 };
663 
664 #endif	/* __NetBSD__ */
665 
666 /**
667  * amdgpu_irq_add_domain - create a linear IRQ domain
668  *
669  * @adev: amdgpu device pointer
670  *
671  * Creates an IRQ domain for GPU interrupt sources
672  * that may be driven by another driver (e.g., ACP).
673  *
674  * Returns:
675  * 0 on success or error code otherwise
676  */
677 int amdgpu_irq_add_domain(struct amdgpu_device *adev)
678 {
679 #ifndef __NetBSD__		/* XXX amdgpu irq domain */
680 	adev->irq.domain = irq_domain_add_linear(NULL, AMDGPU_MAX_IRQ_SRC_ID,
681 						 &amdgpu_hw_irqdomain_ops, adev);
682 	if (!adev->irq.domain) {
683 		DRM_ERROR("GPU irq add domain failed\n");
684 		return -ENODEV;
685 	}
686 #endif
687 
688 	return 0;
689 }
690 
691 /**
692  * amdgpu_irq_remove_domain - remove the IRQ domain
693  *
694  * @adev: amdgpu device pointer
695  *
696  * Removes the IRQ domain for GPU interrupt sources
697  * that may be driven by another driver (e.g., ACP).
698  */
699 void amdgpu_irq_remove_domain(struct amdgpu_device *adev)
700 {
701 #ifndef __NetBSD__		/* XXX amdgpu irq domain */
702 	if (adev->irq.domain) {
703 		irq_domain_remove(adev->irq.domain);
704 		adev->irq.domain = NULL;
705 	}
706 #endif
707 }
708 
709 /**
710  * amdgpu_irq_create_mapping - create mapping between domain Linux IRQs
711  *
712  * @adev: amdgpu device pointer
713  * @src_id: IH source id
714  *
715  * Creates mapping between a domain IRQ (GPU IH src id) and a Linux IRQ
716  * Use this for components that generate a GPU interrupt, but are driven
717  * by a different driver (e.g., ACP).
718  *
719  * Returns:
720  * Linux IRQ
721  */
722 unsigned amdgpu_irq_create_mapping(struct amdgpu_device *adev, unsigned src_id)
723 {
724 #ifdef __NetBSD__		/* XXX amdgpu irq domain */
725 	return 0;
726 #else
727 	adev->irq.virq[src_id] = irq_create_mapping(adev->irq.domain, src_id);
728 
729 	return adev->irq.virq[src_id];
730 #endif
731 }
732