blob: 6448fa809215e7aec19a1badbabfa1178277f99c [file] [log] [blame]
Rob Clarkcd5351f2011-11-12 12:09:40 -06001/*
Rob Clark8bb0daf2013-02-11 12:43:09 -05002 * drivers/gpu/drm/omapdrm/omap_drv.h
Rob Clarkcd5351f2011-11-12 12:09:40 -06003 *
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
Rob Clarkcd5351f2011-11-12 12:09:40 -060023#include <linux/module.h>
Laurent Pinchart2d278f52015-03-05 21:31:37 +020024#include <linux/platform_data/omap_drm.h>
Rob Clarkcd5351f2011-11-12 12:09:40 -060025#include <linux/types.h>
Laurent Pinchart2d278f52015-03-05 21:31:37 +020026#include <video/omapdss.h>
27
Rob Clarkcd5351f2011-11-12 12:09:40 -060028#include <drm/drmP.h>
Rob Clarkae43d7c2012-01-16 12:51:15 -060029#include <drm/drm_crtc_helper.h>
Daniel Vetterd9fc9412014-09-23 15:46:53 +020030#include <drm/drm_gem.h>
Laurent Pinchart2d278f52015-03-05 21:31:37 +020031#include <drm/omap_drm.h>
Rob Clarkf5f94542012-12-04 13:59:12 -060032
Rob Clarkcd5351f2011-11-12 12:09:40 -060033#define DBG(fmt, ...) DRM_DEBUG(fmt"\n", ##__VA_ARGS__)
34#define VERB(fmt, ...) if (0) DRM_DEBUG(fmt, ##__VA_ARGS__) /* verbose debug */
35
36#define MODULE_NAME "omapdrm"
37
38/* max # of mapper-id's that can be assigned.. todo, come up with a better
39 * (but still inexpensive) way to store/access per-buffer mapper private
40 * data..
41 */
42#define MAX_MAPPERS 2
43
Rob Clarkf5f94542012-12-04 13:59:12 -060044/* parameters which describe (unrotated) coordinates of scanout within a fb: */
45struct omap_drm_window {
46 uint32_t rotation;
47 int32_t crtc_x, crtc_y; /* signed because can be offscreen */
48 uint32_t crtc_w, crtc_h;
49 uint32_t src_x, src_y;
50 uint32_t src_w, src_h;
51};
52
Rob Clarkf5f94542012-12-04 13:59:12 -060053/* For transiently registering for different DSS irqs that various parts
54 * of the KMS code need during setup/configuration. We these are not
55 * necessarily the same as what drm_vblank_get/put() are requesting, and
56 * the hysteresis in drm_vblank_put() is not necessarily desirable for
57 * internal housekeeping related irq usage.
58 */
59struct omap_drm_irq {
60 struct list_head node;
61 uint32_t irqmask;
62 bool registered;
63 void (*irq)(struct omap_drm_irq *irq, uint32_t irqstatus);
64};
65
66/* For KMS code that needs to wait for a certain # of IRQs:
67 */
68struct omap_irq_wait;
69struct omap_irq_wait * omap_irq_wait_init(struct drm_device *dev,
70 uint32_t irqmask, int count);
71int omap_irq_wait(struct drm_device *dev, struct omap_irq_wait *wait,
72 unsigned long timeout);
73
Rob Clarkcd5351f2011-11-12 12:09:40 -060074struct omap_drm_private {
Rob Clark5e3b0872012-10-29 09:31:12 +010075 uint32_t omaprev;
76
Rob Clarkcd5351f2011-11-12 12:09:40 -060077 unsigned int num_crtcs;
78 struct drm_crtc *crtcs[8];
Rob Clarkf6b60362012-03-05 10:48:36 -060079
Rob Clarkbb5c2d92012-01-16 12:51:16 -060080 unsigned int num_planes;
81 struct drm_plane *planes[8];
Rob Clarkf6b60362012-03-05 10:48:36 -060082
Rob Clarkcd5351f2011-11-12 12:09:40 -060083 unsigned int num_encoders;
84 struct drm_encoder *encoders[8];
Rob Clarkf6b60362012-03-05 10:48:36 -060085
Rob Clarkcd5351f2011-11-12 12:09:40 -060086 unsigned int num_connectors;
87 struct drm_connector *connectors[8];
88
89 struct drm_fb_helper *fbdev;
Rob Clarka6a91822011-12-09 23:26:08 -060090
Rob Clark5609f7f2012-03-05 10:48:32 -060091 struct workqueue_struct *wq;
92
Tomi Valkeinen76c40552014-12-17 14:34:22 +020093 /* lock for obj_list below */
94 spinlock_t list_lock;
95
Rob Clarkf5f94542012-12-04 13:59:12 -060096 /* list of GEM objects: */
Rob Clarkf6b60362012-03-05 10:48:36 -060097 struct list_head obj_list;
98
Rob Clarka6a91822011-12-09 23:26:08 -060099 bool has_dmm;
Rob Clark3c810c62012-08-15 15:18:01 -0500100
101 /* properties: */
Andre Renaud8451b5a2012-08-15 15:18:02 -0500102 struct drm_property *zorder_prop;
Rob Clarkf5f94542012-12-04 13:59:12 -0600103
104 /* irq handling: */
105 struct list_head irq_list; /* list of omap_drm_irq */
106 uint32_t vblank_mask; /* irq bits set for userspace vblank */
107 struct omap_drm_irq error_handler;
Rob Clark3c810c62012-08-15 15:18:01 -0500108};
109
Rob Clark3c810c62012-08-15 15:18:01 -0500110
Andy Gross6169a1482011-12-15 21:05:17 -0600111#ifdef CONFIG_DEBUG_FS
112int omap_debugfs_init(struct drm_minor *minor);
113void omap_debugfs_cleanup(struct drm_minor *minor);
Rob Clarkf6b60362012-03-05 10:48:36 -0600114void omap_framebuffer_describe(struct drm_framebuffer *fb, struct seq_file *m);
115void omap_gem_describe(struct drm_gem_object *obj, struct seq_file *m);
116void omap_gem_describe_objects(struct list_head *list, struct seq_file *m);
Andy Gross6169a1482011-12-15 21:05:17 -0600117#endif
118
Andy Gross4836d152012-12-19 14:53:37 -0600119#ifdef CONFIG_PM
120int omap_gem_resume(struct device *dev);
121#endif
122
Archit Taneja0d8f3712013-03-26 19:15:19 +0530123int omap_irq_enable_vblank(struct drm_device *dev, int crtc_id);
124void omap_irq_disable_vblank(struct drm_device *dev, int crtc_id);
Tomi Valkeinen6da9f892013-10-24 09:50:50 +0300125void __omap_irq_register(struct drm_device *dev, struct omap_drm_irq *irq);
126void __omap_irq_unregister(struct drm_device *dev, struct omap_drm_irq *irq);
Rob Clarkf5f94542012-12-04 13:59:12 -0600127void omap_irq_register(struct drm_device *dev, struct omap_drm_irq *irq);
128void omap_irq_unregister(struct drm_device *dev, struct omap_drm_irq *irq);
Laurent Pinchartf13ab002015-01-25 22:06:45 +0200129void omap_drm_irq_uninstall(struct drm_device *dev);
Rob Clarkf5f94542012-12-04 13:59:12 -0600130int omap_drm_irq_install(struct drm_device *dev);
131
Rob Clarkcd5351f2011-11-12 12:09:40 -0600132struct drm_fb_helper *omap_fbdev_init(struct drm_device *dev);
133void omap_fbdev_free(struct drm_device *dev);
134
Rob Clarkf5f94542012-12-04 13:59:12 -0600135const struct omap_video_timings *omap_crtc_timings(struct drm_crtc *crtc);
136enum omap_channel omap_crtc_channel(struct drm_crtc *crtc);
Laurent Pincharta42133a2015-01-17 19:09:26 +0200137int omap_crtc_flush(struct drm_crtc *crtc);
138int omap_crtc_queue_unpin(struct drm_crtc *crtc, struct drm_framebuffer *fb);
Laurent Pinchart1d5e5ea2015-01-18 16:57:36 +0200139void omap_crtc_cancel_page_flip(struct drm_crtc *crtc, struct drm_file *file);
Tomi Valkeinen04b1fc02013-05-14 10:55:19 +0300140void omap_crtc_pre_init(void);
Archit Taneja3a01ab22014-01-02 14:49:51 +0530141void omap_crtc_pre_uninit(void);
Rob Clarkcd5351f2011-11-12 12:09:40 -0600142struct drm_crtc *omap_crtc_init(struct drm_device *dev,
Rob Clarkf5f94542012-12-04 13:59:12 -0600143 struct drm_plane *plane, enum omap_channel channel, int id);
Rob Clarkbb5c2d92012-01-16 12:51:16 -0600144
145struct drm_plane *omap_plane_init(struct drm_device *dev,
Laurent Pinchartef6b0e02015-01-11 00:11:18 +0200146 int id, enum drm_plane_type type);
Laurent Pinchart2debab92015-01-12 22:38:16 +0200147int omap_plane_set_enable(struct drm_plane *plane, bool enable);
Rob Clark2f537002012-01-16 12:51:18 -0600148int omap_plane_mode_set(struct drm_plane *plane,
Laurent Pincharta350da82015-01-17 22:31:42 +0200149 struct drm_crtc *crtc, struct drm_framebuffer *fb,
150 int crtc_x, int crtc_y,
151 unsigned int crtc_w, unsigned int crtc_h,
152 unsigned int src_x, unsigned int src_y,
Laurent Pincharta42133a2015-01-17 19:09:26 +0200153 unsigned int src_w, unsigned int src_h);
Rob Clark3c810c62012-08-15 15:18:01 -0500154void omap_plane_install_properties(struct drm_plane *plane,
155 struct drm_mode_object *obj);
156int omap_plane_set_property(struct drm_plane *plane,
157 struct drm_property *property, uint64_t val);
Rob Clarkcd5351f2011-11-12 12:09:40 -0600158
159struct drm_encoder *omap_encoder_init(struct drm_device *dev,
Rob Clarkf5f94542012-12-04 13:59:12 -0600160 struct omap_dss_device *dssdev);
161int omap_encoder_set_enabled(struct drm_encoder *encoder, bool enabled);
162int omap_encoder_update(struct drm_encoder *encoder,
163 struct omap_overlay_manager *mgr,
164 struct omap_video_timings *timings);
165
166struct drm_connector *omap_connector_init(struct drm_device *dev,
167 int connector_type, struct omap_dss_device *dssdev,
Rob Clarkcd5351f2011-11-12 12:09:40 -0600168 struct drm_encoder *encoder);
169struct drm_encoder *omap_connector_attached_encoder(
170 struct drm_connector *connector);
Tomi Valkeinen4f930c02014-06-18 14:19:48 +0300171bool omap_connector_get_hdmi_mode(struct drm_connector *connector);
Rob Clarkcd5351f2011-11-12 12:09:40 -0600172
Rob Clarkf5f94542012-12-04 13:59:12 -0600173void copy_timings_omap_to_drm(struct drm_display_mode *mode,
174 struct omap_video_timings *timings);
175void copy_timings_drm_to_omap(struct omap_video_timings *timings,
176 struct drm_display_mode *mode);
177
Rob Clarka890e662012-03-05 10:48:31 -0600178uint32_t omap_framebuffer_get_formats(uint32_t *pixel_formats,
179 uint32_t max_formats, enum omap_color_mode supported_modes);
Rob Clarkcd5351f2011-11-12 12:09:40 -0600180struct drm_framebuffer *omap_framebuffer_create(struct drm_device *dev,
Rob Clarkae43d7c2012-01-16 12:51:15 -0600181 struct drm_file *file, struct drm_mode_fb_cmd2 *mode_cmd);
Rob Clarkcd5351f2011-11-12 12:09:40 -0600182struct drm_framebuffer *omap_framebuffer_init(struct drm_device *dev,
Rob Clarkae43d7c2012-01-16 12:51:15 -0600183 struct drm_mode_fb_cmd2 *mode_cmd, struct drm_gem_object **bos);
Rob Clark9a0774e2012-01-16 12:51:17 -0600184struct drm_gem_object *omap_framebuffer_bo(struct drm_framebuffer *fb, int p);
Rob Clark5833bd22013-08-07 13:41:21 -0400185int omap_framebuffer_pin(struct drm_framebuffer *fb);
186int omap_framebuffer_unpin(struct drm_framebuffer *fb);
Rob Clark3c810c62012-08-15 15:18:01 -0500187void omap_framebuffer_update_scanout(struct drm_framebuffer *fb,
188 struct omap_drm_window *win, struct omap_overlay_info *info);
Rob Clarkcd5351f2011-11-12 12:09:40 -0600189struct drm_connector *omap_framebuffer_get_next_connector(
190 struct drm_framebuffer *fb, struct drm_connector *from);
Rob Clarkcd5351f2011-11-12 12:09:40 -0600191
Rob Clarkf7f9f452011-12-05 19:19:22 -0600192void omap_gem_init(struct drm_device *dev);
193void omap_gem_deinit(struct drm_device *dev);
Rob Clarkcd5351f2011-11-12 12:09:40 -0600194
195struct drm_gem_object *omap_gem_new(struct drm_device *dev,
196 union omap_gem_size gsize, uint32_t flags);
197int omap_gem_new_handle(struct drm_device *dev, struct drm_file *file,
198 union omap_gem_size gsize, uint32_t flags, uint32_t *handle);
199void omap_gem_free_object(struct drm_gem_object *obj);
Rob Clarkcd5351f2011-11-12 12:09:40 -0600200void *omap_gem_vaddr(struct drm_gem_object *obj);
201int omap_gem_dumb_map_offset(struct drm_file *file, struct drm_device *dev,
202 uint32_t handle, uint64_t *offset);
Rob Clarkcd5351f2011-11-12 12:09:40 -0600203int omap_gem_dumb_create(struct drm_file *file, struct drm_device *dev,
204 struct drm_mode_create_dumb *args);
205int omap_gem_mmap(struct file *filp, struct vm_area_struct *vma);
Rob Clark8b6b5692012-05-17 02:37:25 -0600206int omap_gem_mmap_obj(struct drm_gem_object *obj,
207 struct vm_area_struct *vma);
Rob Clarkcd5351f2011-11-12 12:09:40 -0600208int omap_gem_fault(struct vm_area_struct *vma, struct vm_fault *vmf);
209int omap_gem_op_start(struct drm_gem_object *obj, enum omap_gem_op op);
210int omap_gem_op_finish(struct drm_gem_object *obj, enum omap_gem_op op);
211int omap_gem_op_sync(struct drm_gem_object *obj, enum omap_gem_op op);
212int omap_gem_op_async(struct drm_gem_object *obj, enum omap_gem_op op,
213 void (*fxn)(void *arg), void *arg);
Rob Clarka6a91822011-12-09 23:26:08 -0600214int omap_gem_roll(struct drm_gem_object *obj, uint32_t roll);
Rob Clark8b6b5692012-05-17 02:37:25 -0600215void omap_gem_cpu_sync(struct drm_gem_object *obj, int pgoff);
216void omap_gem_dma_sync(struct drm_gem_object *obj,
217 enum dma_data_direction dir);
Rob Clarkcd5351f2011-11-12 12:09:40 -0600218int omap_gem_get_paddr(struct drm_gem_object *obj,
219 dma_addr_t *paddr, bool remap);
220int omap_gem_put_paddr(struct drm_gem_object *obj);
Rob Clark6ad11bc2012-04-10 13:19:55 -0500221int omap_gem_get_pages(struct drm_gem_object *obj, struct page ***pages,
222 bool remap);
223int omap_gem_put_pages(struct drm_gem_object *obj);
224uint32_t omap_gem_flags(struct drm_gem_object *obj);
Rob Clark3c810c62012-08-15 15:18:01 -0500225int omap_gem_rotated_paddr(struct drm_gem_object *obj, uint32_t orient,
226 int x, int y, dma_addr_t *paddr);
Rob Clarkcd5351f2011-11-12 12:09:40 -0600227uint64_t omap_gem_mmap_offset(struct drm_gem_object *obj);
Rob Clarkf7f9f452011-12-05 19:19:22 -0600228size_t omap_gem_mmap_size(struct drm_gem_object *obj);
Rob Clark3c810c62012-08-15 15:18:01 -0500229int omap_gem_tiled_size(struct drm_gem_object *obj, uint16_t *w, uint16_t *h);
230int omap_gem_tiled_stride(struct drm_gem_object *obj, uint32_t orient);
Rob Clarkcd5351f2011-11-12 12:09:40 -0600231
YAMANE Toshiaki7ced63c2012-11-14 19:30:52 +0900232struct dma_buf *omap_gem_prime_export(struct drm_device *dev,
Rob Clark6ad11bc2012-04-10 13:19:55 -0500233 struct drm_gem_object *obj, int flags);
YAMANE Toshiaki7ced63c2012-11-14 19:30:52 +0900234struct drm_gem_object *omap_gem_prime_import(struct drm_device *dev,
Rob Clark3080b832012-05-17 02:37:26 -0600235 struct dma_buf *buffer);
Rob Clark6ad11bc2012-04-10 13:19:55 -0500236
Rob Clarkcd5351f2011-11-12 12:09:40 -0600237static inline int align_pitch(int pitch, int width, int bpp)
238{
239 int bytespp = (bpp + 7) / 8;
240 /* in case someone tries to feed us a completely bogus stride: */
241 pitch = max(pitch, width * bytespp);
242 /* PVR needs alignment to 8 pixels.. right now that is the most
243 * restrictive stride requirement..
244 */
245 return ALIGN(pitch, 8 * bytespp);
246}
247
Rob Clarkf5f94542012-12-04 13:59:12 -0600248/* map crtc to vblank mask */
Archit Taneja0d8f3712013-03-26 19:15:19 +0530249uint32_t pipe2vbl(struct drm_crtc *crtc);
250struct omap_dss_device *omap_encoder_get_dssdev(struct drm_encoder *encoder);
Rob Clarkf5f94542012-12-04 13:59:12 -0600251
Rob Clarkae43d7c2012-01-16 12:51:15 -0600252/* should these be made into common util helpers?
253 */
254
255static inline int objects_lookup(struct drm_device *dev,
256 struct drm_file *filp, uint32_t pixel_format,
257 struct drm_gem_object **bos, uint32_t *handles)
258{
259 int i, n = drm_format_num_planes(pixel_format);
260
261 for (i = 0; i < n; i++) {
262 bos[i] = drm_gem_object_lookup(dev, filp, handles[i]);
YAMANE Toshiakibc1e15812012-11-14 19:31:09 +0900263 if (!bos[i])
Rob Clarkae43d7c2012-01-16 12:51:15 -0600264 goto fail;
YAMANE Toshiakibc1e15812012-11-14 19:31:09 +0900265
Rob Clarkae43d7c2012-01-16 12:51:15 -0600266 }
267
268 return 0;
269
270fail:
YAMANE Toshiakibc1e15812012-11-14 19:31:09 +0900271 while (--i > 0)
Rob Clarkae43d7c2012-01-16 12:51:15 -0600272 drm_gem_object_unreference_unlocked(bos[i]);
YAMANE Toshiakibc1e15812012-11-14 19:31:09 +0900273
Rob Clarkae43d7c2012-01-16 12:51:15 -0600274 return -ENOENT;
275}
276
Rob Clarkcd5351f2011-11-12 12:09:40 -0600277#endif /* __OMAP_DRV_H__ */