drm/scheduler: Rename cleanup functions v2.
[linux-2.6-block.git] / drivers / gpu / drm / amd / amdgpu / amdgpu_irq.h
CommitLineData
d38ceaf9
AD
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
5f232365 27#include <linux/irqdomain.h>
d38ceaf9
AD
28#include "amdgpu_ih.h"
29
30#define AMDGPU_MAX_IRQ_SRC_ID 0x100
d766e6a3 31#define AMDGPU_MAX_IRQ_CLIENT_ID 0x100
d38ceaf9
AD
32
33struct amdgpu_device;
34struct amdgpu_iv_entry;
35
36enum amdgpu_interrupt_state {
37 AMDGPU_IRQ_STATE_DISABLE,
38 AMDGPU_IRQ_STATE_ENABLE,
39};
40
41struct amdgpu_irq_src {
42 unsigned num_types;
43 atomic_t *enabled_types;
44 const struct amdgpu_irq_src_funcs *funcs;
0cf3be21 45 void *data;
d38ceaf9
AD
46};
47
d766e6a3
AD
48struct amdgpu_irq_client {
49 struct amdgpu_irq_src **sources;
50};
51
d38ceaf9
AD
52/* provided by interrupt generating IP blocks */
53struct amdgpu_irq_src_funcs {
54 int (*set)(struct amdgpu_device *adev, struct amdgpu_irq_src *source,
55 unsigned type, enum amdgpu_interrupt_state state);
56
57 int (*process)(struct amdgpu_device *adev,
58 struct amdgpu_irq_src *source,
59 struct amdgpu_iv_entry *entry);
60};
61
62struct amdgpu_irq {
63 bool installed;
64 spinlock_t lock;
65 /* interrupt sources */
d766e6a3 66 struct amdgpu_irq_client client[AMDGPU_IH_CLIENTID_MAX];
d38ceaf9
AD
67
68 /* status, etc. */
69 bool msi_enabled; /* msi enabled */
70
71 /* interrupt ring */
72 struct amdgpu_ih_ring ih;
73 const struct amdgpu_ih_funcs *ih_funcs;
5f232365
AD
74
75 /* gen irq stuff */
76 struct irq_domain *domain; /* GPU irq controller domain */
77 unsigned virq[AMDGPU_MAX_IRQ_SRC_ID];
1015a1b1 78 uint32_t srbm_soft_reset;
d38ceaf9
AD
79};
80
9950cda2 81void amdgpu_irq_disable_all(struct amdgpu_device *adev);
d38ceaf9
AD
82irqreturn_t amdgpu_irq_handler(int irq, void *arg);
83
84int amdgpu_irq_init(struct amdgpu_device *adev);
85void amdgpu_irq_fini(struct amdgpu_device *adev);
d766e6a3
AD
86int amdgpu_irq_add_id(struct amdgpu_device *adev,
87 unsigned client_id, unsigned src_id,
d38ceaf9
AD
88 struct amdgpu_irq_src *source);
89void amdgpu_irq_dispatch(struct amdgpu_device *adev,
90 struct amdgpu_iv_entry *entry);
91int amdgpu_irq_update(struct amdgpu_device *adev, struct amdgpu_irq_src *src,
92 unsigned type);
93int amdgpu_irq_get(struct amdgpu_device *adev, struct amdgpu_irq_src *src,
94 unsigned type);
d38ceaf9
AD
95int amdgpu_irq_put(struct amdgpu_device *adev, struct amdgpu_irq_src *src,
96 unsigned type);
97bool amdgpu_irq_enabled(struct amdgpu_device *adev, struct amdgpu_irq_src *src,
98 unsigned type);
0eaeb070 99void amdgpu_irq_gpu_reset_resume_helper(struct amdgpu_device *adev);
d38ceaf9 100
5f232365
AD
101int amdgpu_irq_add_domain(struct amdgpu_device *adev);
102void amdgpu_irq_remove_domain(struct amdgpu_device *adev);
103unsigned amdgpu_irq_create_mapping(struct amdgpu_device *adev, unsigned src_id);
104
d38ceaf9 105#endif