Merge branches 'x86/amd', 'x86/vt-d', 'arm/exynos', 'arm/mediatek' and 'arm/renesas...
[deliverable/linux.git] / drivers / gpu / drm / omapdrm / omap_drv.h
CommitLineData
cd5351f4 1/*
8bb0daff 2 * drivers/gpu/drm/omapdrm/omap_drv.h
cd5351f4
RC
3 *
4 * Copyright (C) 2011 Texas Instruments
5 * Author: Rob Clark <rob@ti.com>
6 *
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License version 2 as published by
9 * the Free Software Foundation.
10 *
11 * This program is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 * more details.
15 *
16 * You should have received a copy of the GNU General Public License along with
17 * this program. If not, see <http://www.gnu.org/licenses/>.
18 */
19
20#ifndef __OMAP_DRV_H__
21#define __OMAP_DRV_H__
22
cd5351f4 23#include <linux/module.h>
2d278f54 24#include <linux/platform_data/omap_drm.h>
cd5351f4 25#include <linux/types.h>
748471a5 26#include <linux/wait.h>
2d278f54 27
cd5351f4 28#include <drm/drmP.h>
ae43d7ca 29#include <drm/drm_crtc_helper.h>
d9fc9413 30#include <drm/drm_gem.h>
2d278f54 31#include <drm/omap_drm.h>
f5f9454c 32
35a339ac
TV
33#include "dss/omapdss.h"
34
cd5351f4
RC
35#define DBG(fmt, ...) DRM_DEBUG(fmt"\n", ##__VA_ARGS__)
36#define VERB(fmt, ...) if (0) DRM_DEBUG(fmt, ##__VA_ARGS__) /* verbose debug */
37
38#define MODULE_NAME "omapdrm"
39
f4302747
LP
40struct omap_drm_usergart;
41
f5f9454c
RC
42/* parameters which describe (unrotated) coordinates of scanout within a fb: */
43struct omap_drm_window {
44 uint32_t rotation;
45 int32_t crtc_x, crtc_y; /* signed because can be offscreen */
46 uint32_t crtc_w, crtc_h;
47 uint32_t src_x, src_y;
48 uint32_t src_w, src_h;
49};
50
f5f9454c
RC
51/* For transiently registering for different DSS irqs that various parts
52 * of the KMS code need during setup/configuration. We these are not
53 * necessarily the same as what drm_vblank_get/put() are requesting, and
54 * the hysteresis in drm_vblank_put() is not necessarily desirable for
55 * internal housekeeping related irq usage.
56 */
57struct omap_drm_irq {
58 struct list_head node;
59 uint32_t irqmask;
60 bool registered;
61 void (*irq)(struct omap_drm_irq *irq, uint32_t irqstatus);
62};
63
64/* For KMS code that needs to wait for a certain # of IRQs:
65 */
66struct omap_irq_wait;
67struct omap_irq_wait * omap_irq_wait_init(struct drm_device *dev,
68 uint32_t irqmask, int count);
69int omap_irq_wait(struct drm_device *dev, struct omap_irq_wait *wait,
70 unsigned long timeout);
71
cd5351f4 72struct omap_drm_private {
5e3b0874
RC
73 uint32_t omaprev;
74
cd5351f4
RC
75 unsigned int num_crtcs;
76 struct drm_crtc *crtcs[8];
f6b6036e 77
bb5c2d9a
RC
78 unsigned int num_planes;
79 struct drm_plane *planes[8];
f6b6036e 80
cd5351f4
RC
81 unsigned int num_encoders;
82 struct drm_encoder *encoders[8];
f6b6036e 83
cd5351f4
RC
84 unsigned int num_connectors;
85 struct drm_connector *connectors[8];
86
87 struct drm_fb_helper *fbdev;
a6a91827 88
5609f7fe
RC
89 struct workqueue_struct *wq;
90
76c4055f
TV
91 /* lock for obj_list below */
92 spinlock_t list_lock;
93
f5f9454c 94 /* list of GEM objects: */
f6b6036e
RC
95 struct list_head obj_list;
96
f4302747 97 struct omap_drm_usergart *usergart;
a6a91827 98 bool has_dmm;
3c810c61
RC
99
100 /* properties: */
8451b5ad 101 struct drm_property *zorder_prop;
f5f9454c
RC
102
103 /* irq handling: */
104 struct list_head irq_list; /* list of omap_drm_irq */
105 uint32_t vblank_mask; /* irq bits set for userspace vblank */
106 struct omap_drm_irq error_handler;
748471a5
LP
107
108 /* atomic commit */
109 struct {
110 wait_queue_head_t wait;
111 u32 pending;
112 spinlock_t lock; /* Protects commit.pending */
113 } commit;
3c810c61
RC
114};
115
3c810c61 116
6169a148
AG
117#ifdef CONFIG_DEBUG_FS
118int omap_debugfs_init(struct drm_minor *minor);
119void omap_debugfs_cleanup(struct drm_minor *minor);
f6b6036e
RC
120void omap_framebuffer_describe(struct drm_framebuffer *fb, struct seq_file *m);
121void omap_gem_describe(struct drm_gem_object *obj, struct seq_file *m);
122void omap_gem_describe_objects(struct list_head *list, struct seq_file *m);
6169a148
AG
123#endif
124
4836d157
AG
125#ifdef CONFIG_PM
126int omap_gem_resume(struct device *dev);
127#endif
128
88e72717
TR
129int omap_irq_enable_vblank(struct drm_device *dev, unsigned int pipe);
130void omap_irq_disable_vblank(struct drm_device *dev, unsigned int pipe);
6da9f891
TV
131void __omap_irq_register(struct drm_device *dev, struct omap_drm_irq *irq);
132void __omap_irq_unregister(struct drm_device *dev, struct omap_drm_irq *irq);
f5f9454c
RC
133void omap_irq_register(struct drm_device *dev, struct omap_drm_irq *irq);
134void omap_irq_unregister(struct drm_device *dev, struct omap_drm_irq *irq);
f13ab005 135void omap_drm_irq_uninstall(struct drm_device *dev);
f5f9454c
RC
136int omap_drm_irq_install(struct drm_device *dev);
137
e1c1174f 138#ifdef CONFIG_DRM_FBDEV_EMULATION
cd5351f4
RC
139struct drm_fb_helper *omap_fbdev_init(struct drm_device *dev);
140void omap_fbdev_free(struct drm_device *dev);
e1c1174f
LP
141#else
142static inline struct drm_fb_helper *omap_fbdev_init(struct drm_device *dev)
143{
144 return NULL;
145}
146static inline void omap_fbdev_free(struct drm_device *dev)
147{
148}
149#endif
cd5351f4 150
4029755e 151struct omap_video_timings *omap_crtc_timings(struct drm_crtc *crtc);
f5f9454c 152enum omap_channel omap_crtc_channel(struct drm_crtc *crtc);
04b1fc02 153void omap_crtc_pre_init(void);
3a01ab25 154void omap_crtc_pre_uninit(void);
cd5351f4 155struct drm_crtc *omap_crtc_init(struct drm_device *dev,
f5f9454c 156 struct drm_plane *plane, enum omap_channel channel, int id);
5f741b39 157int omap_crtc_wait_pending(struct drm_crtc *crtc);
bb5c2d9a
RC
158
159struct drm_plane *omap_plane_init(struct drm_device *dev,
ef6b0e02 160 int id, enum drm_plane_type type);
3c810c61
RC
161void omap_plane_install_properties(struct drm_plane *plane,
162 struct drm_mode_object *obj);
cd5351f4
RC
163
164struct drm_encoder *omap_encoder_init(struct drm_device *dev,
f5f9454c 165 struct omap_dss_device *dssdev);
f5f9454c
RC
166
167struct drm_connector *omap_connector_init(struct drm_device *dev,
168 int connector_type, struct omap_dss_device *dssdev,
cd5351f4
RC
169 struct drm_encoder *encoder);
170struct drm_encoder *omap_connector_attached_encoder(
171 struct drm_connector *connector);
4f930c0f 172bool omap_connector_get_hdmi_mode(struct drm_connector *connector);
cd5351f4 173
f5f9454c
RC
174void copy_timings_omap_to_drm(struct drm_display_mode *mode,
175 struct omap_video_timings *timings);
176void copy_timings_drm_to_omap(struct omap_video_timings *timings,
177 struct drm_display_mode *mode);
178
a890e662
RC
179uint32_t omap_framebuffer_get_formats(uint32_t *pixel_formats,
180 uint32_t max_formats, enum omap_color_mode supported_modes);
cd5351f4 181struct drm_framebuffer *omap_framebuffer_create(struct drm_device *dev,
1eb83451 182 struct drm_file *file, const struct drm_mode_fb_cmd2 *mode_cmd);
cd5351f4 183struct drm_framebuffer *omap_framebuffer_init(struct drm_device *dev,
1eb83451 184 const struct drm_mode_fb_cmd2 *mode_cmd, struct drm_gem_object **bos);
5833bd2f 185int omap_framebuffer_pin(struct drm_framebuffer *fb);
9c368506 186void omap_framebuffer_unpin(struct drm_framebuffer *fb);
3c810c61
RC
187void omap_framebuffer_update_scanout(struct drm_framebuffer *fb,
188 struct omap_drm_window *win, struct omap_overlay_info *info);
cd5351f4
RC
189struct drm_connector *omap_framebuffer_get_next_connector(
190 struct drm_framebuffer *fb, struct drm_connector *from);
bfeece55 191bool omap_framebuffer_supports_rotation(struct drm_framebuffer *fb);
cd5351f4 192
f7f9f453
RC
193void omap_gem_init(struct drm_device *dev);
194void omap_gem_deinit(struct drm_device *dev);
cd5351f4
RC
195
196struct drm_gem_object *omap_gem_new(struct drm_device *dev,
197 union omap_gem_size gsize, uint32_t flags);
b22e6690
LP
198struct drm_gem_object *omap_gem_new_dmabuf(struct drm_device *dev, size_t size,
199 struct sg_table *sgt);
cd5351f4
RC
200int omap_gem_new_handle(struct drm_device *dev, struct drm_file *file,
201 union omap_gem_size gsize, uint32_t flags, uint32_t *handle);
202void omap_gem_free_object(struct drm_gem_object *obj);
cd5351f4
RC
203void *omap_gem_vaddr(struct drm_gem_object *obj);
204int omap_gem_dumb_map_offset(struct drm_file *file, struct drm_device *dev,
205 uint32_t handle, uint64_t *offset);
cd5351f4
RC
206int omap_gem_dumb_create(struct drm_file *file, struct drm_device *dev,
207 struct drm_mode_create_dumb *args);
208int omap_gem_mmap(struct file *filp, struct vm_area_struct *vma);
8b6b569e
RC
209int omap_gem_mmap_obj(struct drm_gem_object *obj,
210 struct vm_area_struct *vma);
cd5351f4
RC
211int omap_gem_fault(struct vm_area_struct *vma, struct vm_fault *vmf);
212int omap_gem_op_start(struct drm_gem_object *obj, enum omap_gem_op op);
213int omap_gem_op_finish(struct drm_gem_object *obj, enum omap_gem_op op);
214int omap_gem_op_sync(struct drm_gem_object *obj, enum omap_gem_op op);
215int omap_gem_op_async(struct drm_gem_object *obj, enum omap_gem_op op,
216 void (*fxn)(void *arg), void *arg);
a6a91827 217int omap_gem_roll(struct drm_gem_object *obj, uint32_t roll);
8b6b569e
RC
218void omap_gem_cpu_sync(struct drm_gem_object *obj, int pgoff);
219void omap_gem_dma_sync(struct drm_gem_object *obj,
220 enum dma_data_direction dir);
cd5351f4
RC
221int omap_gem_get_paddr(struct drm_gem_object *obj,
222 dma_addr_t *paddr, bool remap);
393a949f 223void omap_gem_put_paddr(struct drm_gem_object *obj);
6ad11bc3
RC
224int omap_gem_get_pages(struct drm_gem_object *obj, struct page ***pages,
225 bool remap);
226int omap_gem_put_pages(struct drm_gem_object *obj);
227uint32_t omap_gem_flags(struct drm_gem_object *obj);
3c810c61
RC
228int omap_gem_rotated_paddr(struct drm_gem_object *obj, uint32_t orient,
229 int x, int y, dma_addr_t *paddr);
cd5351f4 230uint64_t omap_gem_mmap_offset(struct drm_gem_object *obj);
f7f9f453 231size_t omap_gem_mmap_size(struct drm_gem_object *obj);
3c810c61 232int omap_gem_tiled_stride(struct drm_gem_object *obj, uint32_t orient);
cd5351f4 233
7ced63cf 234struct dma_buf *omap_gem_prime_export(struct drm_device *dev,
6ad11bc3 235 struct drm_gem_object *obj, int flags);
7ced63cf 236struct drm_gem_object *omap_gem_prime_import(struct drm_device *dev,
3080b838 237 struct dma_buf *buffer);
6ad11bc3 238
f5f9454c 239/* map crtc to vblank mask */
0d8f371f
AT
240uint32_t pipe2vbl(struct drm_crtc *crtc);
241struct omap_dss_device *omap_encoder_get_dssdev(struct drm_encoder *encoder);
f5f9454c 242
ae43d7ca
RC
243/* should these be made into common util helpers?
244 */
245
a8ad0bd8 246static inline int objects_lookup(
ae43d7ca 247 struct drm_file *filp, uint32_t pixel_format,
1eb83451 248 struct drm_gem_object **bos, const uint32_t *handles)
ae43d7ca
RC
249{
250 int i, n = drm_format_num_planes(pixel_format);
251
252 for (i = 0; i < n; i++) {
a8ad0bd8 253 bos[i] = drm_gem_object_lookup(filp, handles[i]);
bc1e1581 254 if (!bos[i])
ae43d7ca 255 goto fail;
bc1e1581 256
ae43d7ca
RC
257 }
258
259 return 0;
260
261fail:
bc1e1581 262 while (--i > 0)
ae43d7ca 263 drm_gem_object_unreference_unlocked(bos[i]);
bc1e1581 264
ae43d7ca
RC
265 return -ENOENT;
266}
267
cd5351f4 268#endif /* __OMAP_DRV_H__ */
This page took 0.27539 seconds and 5 git commands to generate.