Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2014 Advanced Micro Devices, Inc. |
| 3 | * |
| 4 | * Permission is hereby granted, free of charge, to any person obtaining a |
| 5 | * copy of this software and associated documentation files (the "Software"), |
| 6 | * to deal in the Software without restriction, including without limitation |
| 7 | * the rights to use, copy, modify, merge, publish, distribute, sublicense, |
| 8 | * and/or sell copies of the Software, and to permit persons to whom the |
| 9 | * Software is furnished to do so, subject to the following conditions: |
| 10 | * |
| 11 | * The above copyright notice and this permission notice shall be included in |
| 12 | * all copies or substantial portions of the Software. |
| 13 | * |
| 14 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 15 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 16 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL |
| 17 | * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR |
| 18 | * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, |
| 19 | * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR |
| 20 | * OTHER DEALINGS IN THE SOFTWARE. |
| 21 | * |
| 22 | */ |
| 23 | |
| 24 | #ifndef __AMDGPU_IRQ_H__ |
| 25 | #define __AMDGPU_IRQ_H__ |
| 26 | |
Alex Deucher | 5f23236 | 2015-11-06 01:29:08 -0500 | [diff] [blame] | 27 | #include <linux/irqdomain.h> |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 28 | #include "amdgpu_ih.h" |
| 29 | |
| 30 | #define AMDGPU_MAX_IRQ_SRC_ID 0x100 |
| 31 | |
| 32 | struct amdgpu_device; |
| 33 | struct amdgpu_iv_entry; |
| 34 | |
| 35 | enum amdgpu_interrupt_state { |
| 36 | AMDGPU_IRQ_STATE_DISABLE, |
| 37 | AMDGPU_IRQ_STATE_ENABLE, |
| 38 | }; |
| 39 | |
| 40 | struct amdgpu_irq_src { |
| 41 | unsigned num_types; |
| 42 | atomic_t *enabled_types; |
| 43 | const struct amdgpu_irq_src_funcs *funcs; |
Alex Deucher | 0cf3be2 | 2015-07-28 14:24:53 -0400 | [diff] [blame] | 44 | void *data; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 45 | }; |
| 46 | |
| 47 | /* provided by interrupt generating IP blocks */ |
| 48 | struct amdgpu_irq_src_funcs { |
| 49 | int (*set)(struct amdgpu_device *adev, struct amdgpu_irq_src *source, |
| 50 | unsigned type, enum amdgpu_interrupt_state state); |
| 51 | |
| 52 | int (*process)(struct amdgpu_device *adev, |
| 53 | struct amdgpu_irq_src *source, |
| 54 | struct amdgpu_iv_entry *entry); |
| 55 | }; |
| 56 | |
| 57 | struct amdgpu_irq { |
| 58 | bool installed; |
| 59 | spinlock_t lock; |
| 60 | /* interrupt sources */ |
| 61 | struct amdgpu_irq_src *sources[AMDGPU_MAX_IRQ_SRC_ID]; |
| 62 | |
| 63 | /* status, etc. */ |
| 64 | bool msi_enabled; /* msi enabled */ |
| 65 | |
| 66 | /* interrupt ring */ |
| 67 | struct amdgpu_ih_ring ih; |
| 68 | const struct amdgpu_ih_funcs *ih_funcs; |
Alex Deucher | 5f23236 | 2015-11-06 01:29:08 -0500 | [diff] [blame] | 69 | |
| 70 | /* gen irq stuff */ |
| 71 | struct irq_domain *domain; /* GPU irq controller domain */ |
| 72 | unsigned virq[AMDGPU_MAX_IRQ_SRC_ID]; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 73 | }; |
| 74 | |
| 75 | void amdgpu_irq_preinstall(struct drm_device *dev); |
| 76 | int amdgpu_irq_postinstall(struct drm_device *dev); |
| 77 | void amdgpu_irq_uninstall(struct drm_device *dev); |
| 78 | irqreturn_t amdgpu_irq_handler(int irq, void *arg); |
| 79 | |
| 80 | int amdgpu_irq_init(struct amdgpu_device *adev); |
| 81 | void amdgpu_irq_fini(struct amdgpu_device *adev); |
| 82 | int amdgpu_irq_add_id(struct amdgpu_device *adev, unsigned src_id, |
| 83 | struct amdgpu_irq_src *source); |
| 84 | void amdgpu_irq_dispatch(struct amdgpu_device *adev, |
| 85 | struct amdgpu_iv_entry *entry); |
| 86 | int amdgpu_irq_update(struct amdgpu_device *adev, struct amdgpu_irq_src *src, |
| 87 | unsigned type); |
| 88 | int amdgpu_irq_get(struct amdgpu_device *adev, struct amdgpu_irq_src *src, |
| 89 | unsigned type); |
| 90 | bool amdgpu_irq_get_delayed(struct amdgpu_device *adev, |
| 91 | struct amdgpu_irq_src *src, |
| 92 | unsigned type); |
| 93 | int amdgpu_irq_put(struct amdgpu_device *adev, struct amdgpu_irq_src *src, |
| 94 | unsigned type); |
| 95 | bool amdgpu_irq_enabled(struct amdgpu_device *adev, struct amdgpu_irq_src *src, |
| 96 | unsigned type); |
| 97 | |
Alex Deucher | 5f23236 | 2015-11-06 01:29:08 -0500 | [diff] [blame] | 98 | int amdgpu_irq_add_domain(struct amdgpu_device *adev); |
| 99 | void amdgpu_irq_remove_domain(struct amdgpu_device *adev); |
| 100 | unsigned amdgpu_irq_create_mapping(struct amdgpu_device *adev, unsigned src_id); |
| 101 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 102 | #endif |