summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/amd/include/cgs_linux.h
blob: 488642f08267902c628c9db541030c6a27cb2def (plain)
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
/*
 * Copyright 2015 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.
 *
 *
 */
#ifndef _CGS_LINUX_H
#define _CGS_LINUX_H

#include "cgs_common.h"

/**
 * cgs_import_gpu_mem() - Import dmabuf handle
 * @cgs_device:  opaque device handle
 * @dmabuf_fd:   DMABuf file descriptor
 * @handle:      memory handle (output)
 *
 * Must be called in the process context that dmabuf_fd belongs to.
 *
 * Return:  0 on success, -errno otherwise
 */
typedef int (*cgs_import_gpu_mem_t)(void *cgs_device, int dmabuf_fd,
				    cgs_handle_t *handle);

/**
 * cgs_irq_source_set_func() - Callback for enabling/disabling interrupt sources
 * @private_data:  private data provided to cgs_add_irq_source
 * @src_id:        interrupt source ID
 * @type:          interrupt type
 * @enabled:       0 = disable source, non-0 = enable source
 *
 * Return:  0 on success, -errno otherwise
 */
typedef int (*cgs_irq_source_set_func_t)(void *private_data,
					 unsigned src_id, unsigned type,
					 int enabled);

/**
 * cgs_irq_handler_func() - Interrupt handler callback
 * @private_data:  private data provided to cgs_add_irq_source
 * @src_id:        interrupt source ID
 * @iv_entry:      pointer to raw ih ring entry
 *
 * This callback runs in interrupt context.
 *
 * Return:  0 on success, -errno otherwise
 */
typedef int (*cgs_irq_handler_func_t)(void *private_data,
				      unsigned src_id, const uint32_t *iv_entry);

/**
 * cgs_add_irq_source() - Add an IRQ source
 * @cgs_device:    opaque device handle
 * @src_id:        interrupt source ID
 * @num_types:     number of interrupt types that can be independently enabled
 * @set:           callback function to enable/disable an interrupt type
 * @handler:       interrupt handler callback
 * @private_data:  private data to pass to callback functions
 *
 * The same IRQ source can be added only once. Adding an IRQ source
 * indicates ownership of that IRQ source and all its IRQ types.
 *
 * Return:  0 on success, -errno otherwise
 */
typedef int (*cgs_add_irq_source_t)(void *cgs_device, unsigned src_id,
				    unsigned num_types,
				    cgs_irq_source_set_func_t set,
				    cgs_irq_handler_func_t handler,
				    void *private_data);

/**
 * cgs_irq_get() - Request enabling an IRQ source and type
 * @cgs_device:  opaque device handle
 * @src_id:      interrupt source ID
 * @type:        interrupt type
 *
 * cgs_irq_get and cgs_irq_put calls must be balanced. They count
 * "references" to IRQ sources.
 *
 * Return:  0 on success, -errno otherwise
 */
typedef int (*cgs_irq_get_t)(void *cgs_device, unsigned src_id, unsigned type);

/**
 * cgs_irq_put() - Indicate IRQ source is no longer needed
 * @cgs_device:  opaque device handle
 * @src_id:      interrupt source ID
 * @type:        interrupt type
 *
 * cgs_irq_get and cgs_irq_put calls must be balanced. They count
 * "references" to IRQ sources. Even after cgs_irq_put is called, the
 * IRQ handler may still be called if there are more refecences to
 * the IRQ source.
 *
 * Return:  0 on success, -errno otherwise
 */
typedef int (*cgs_irq_put_t)(void *cgs_device, unsigned src_id, unsigned type);

struct cgs_os_ops {
	cgs_import_gpu_mem_t import_gpu_mem;

	/* IRQ handling */
	cgs_add_irq_source_t add_irq_source;
	cgs_irq_get_t irq_get;
	cgs_irq_put_t irq_put;
};

#define cgs_import_gpu_mem(dev,dmabuf_fd,handle)		\
	CGS_OS_CALL(import_gpu_mem,dev,dmabuf_fd,handle)
#define cgs_add_irq_source(dev,src_id,num_types,set,handler,private_data) \
	CGS_OS_CALL(add_irq_source,dev,src_id,num_types,set,handler,	\
		    private_data)
#define cgs_irq_get(dev,src_id,type)		\
	CGS_OS_CALL(irq_get,dev,src_id,type)
#define cgs_irq_put(dev,src_id,type)		\
	CGS_OS_CALL(irq_put,dev,src_id,type)

#endif /* _CGS_LINUX_H */