msm_drv.h 10.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
/*
 * Copyright (C) 2013 Red Hat
 * Author: Rob Clark <robdclark@gmail.com>
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 as published by
 * the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
 * more details.
 *
 * You should have received a copy of the GNU General Public License along with
 * this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#ifndef __MSM_DRV_H__
#define __MSM_DRV_H__

#include <linux/kernel.h>
#include <linux/clk.h>
#include <linux/cpufreq.h>
#include <linux/module.h>
25
#include <linux/component.h>
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
#include <linux/platform_device.h>
#include <linux/pm.h>
#include <linux/pm_runtime.h>
#include <linux/slab.h>
#include <linux/list.h>
#include <linux/iommu.h>
#include <linux/types.h>
#include <asm/sizes.h>

#ifndef CONFIG_OF
#include <mach/board.h>
#include <mach/socinfo.h>
#include <mach/iommu_domains.h>
#endif

#include <drm/drmP.h>
R
Rob Clark 已提交
42 43
#include <drm/drm_atomic.h>
#include <drm/drm_atomic_helper.h>
44
#include <drm/drm_crtc_helper.h>
R
Rob Clark 已提交
45
#include <drm/drm_plane_helper.h>
46
#include <drm/drm_fb_helper.h>
R
Rob Clark 已提交
47
#include <drm/msm_drm.h>
D
Daniel Vetter 已提交
48
#include <drm/drm_gem.h>
49 50

struct msm_kms;
R
Rob Clark 已提交
51
struct msm_gpu;
52
struct msm_mmu;
R
Rob Clark 已提交
53
struct msm_rd_state;
R
Rob Clark 已提交
54
struct msm_perf_state;
R
Rob Clark 已提交
55
struct msm_gem_submit;
56

R
Rob Clark 已提交
57 58 59 60 61 62 63 64 65
#define NUM_DOMAINS 2    /* one for KMS, then one per gpu core (?) */

struct msm_file_private {
	/* currently we don't do anything useful with this.. but when
	 * per-context address spaces are supported we'd keep track of
	 * the context's page-tables here.
	 */
	int dummy;
};
66

67 68 69 70 71 72 73
enum msm_mdp_plane_property {
	PLANE_PROP_ZPOS,
	PLANE_PROP_ALPHA,
	PLANE_PROP_PREMULTIPLIED,
	PLANE_PROP_MAX_NUM
};

74 75 76 77
struct msm_drm_private {

	struct msm_kms *kms;

78
	/* subordinate devices, if present: */
R
Rob Clark 已提交
79 80 81 82 83 84
	struct platform_device *gpu_pdev;

	/* possibly this should be in the kms component, but it is
	 * shared by both mdp4 and mdp5..
	 */
	struct hdmi *hdmi;
85

86 87 88 89 90 91
	/* eDP is for mdp5 only, but kms has not been created
	 * when edp_bind() and edp_init() are called. Here is the only
	 * place to keep the edp instance.
	 */
	struct msm_edp *edp;

92 93 94
	/* DSI is shared by mdp4 and mdp5 */
	struct msm_dsi *dsi[2];

R
Rob Clark 已提交
95 96 97 98
	/* when we have more than one 'msm_gpu' these need to be an array: */
	struct msm_gpu *gpu;
	struct msm_file_private *lastctx;

99 100
	struct drm_fb_helper *fbdev;

R
Rob Clark 已提交
101 102 103
	uint32_t next_fence, completed_fence;
	wait_queue_head_t fence_event;

R
Rob Clark 已提交
104
	struct msm_rd_state *rd;
R
Rob Clark 已提交
105
	struct msm_perf_state *perf;
R
Rob Clark 已提交
106

107 108 109 110 111
	/* list of GEM objects: */
	struct list_head inactive_list;

	struct workqueue_struct *wq;

R
Rob Clark 已提交
112 113 114
	/* callbacks deferred until bo is inactive: */
	struct list_head fence_cbs;

115 116 117 118
	/* crtcs pending async atomic updates: */
	uint32_t pending_crtcs;
	wait_queue_head_t pending_crtcs_event;

119 120 121
	/* registered MMUs: */
	unsigned int num_mmus;
	struct msm_mmu *mmus[NUM_DOMAINS];
122

R
Rob Clark 已提交
123 124 125
	unsigned int num_planes;
	struct drm_plane *planes[8];

126 127 128 129 130 131
	unsigned int num_crtcs;
	struct drm_crtc *crtcs[8];

	unsigned int num_encoders;
	struct drm_encoder *encoders[8];

R
Rob Clark 已提交
132 133 134
	unsigned int num_bridges;
	struct drm_bridge *bridges[8];

135 136
	unsigned int num_connectors;
	struct drm_connector *connectors[8];
137

138 139 140
	/* Properties */
	struct drm_property *plane_property[PLANE_PROP_MAX_NUM];

141 142 143 144 145 146 147 148 149
	/* VRAM carveout, used when no IOMMU: */
	struct {
		unsigned long size;
		dma_addr_t paddr;
		/* NOTE: mm managed at the page level, size is in # of pages
		 * and position mm_node->start is in # of pages:
		 */
		struct drm_mm mm;
	} vram;
150 151 152 153 154 155
};

struct msm_format {
	uint32_t pixel_format;
};

R
Rob Clark 已提交
156 157 158 159 160 161 162 163 164 165 166 167 168 169
/* callback from wq once fence has passed: */
struct msm_fence_cb {
	struct work_struct work;
	uint32_t fence;
	void (*func)(struct msm_fence_cb *cb);
};

void __msm_fence_worker(struct work_struct *work);

#define INIT_FENCE_CB(_cb, _func)  do {                     \
		INIT_WORK(&(_cb)->work, __msm_fence_worker); \
		(_cb)->func = _func;                         \
	} while (0)

170 171
int msm_atomic_check(struct drm_device *dev,
		     struct drm_atomic_state *state);
R
Rob Clark 已提交
172 173 174
int msm_atomic_commit(struct drm_device *dev,
		struct drm_atomic_state *state, bool async);

175
int msm_register_mmu(struct drm_device *dev, struct msm_mmu *mmu);
176

177 178
int msm_wait_fence(struct drm_device *dev, uint32_t fence,
		ktime_t *timeout, bool interruptible);
R
Rob Clark 已提交
179 180
int msm_queue_fence_cb(struct drm_device *dev,
		struct msm_fence_cb *cb, uint32_t fence);
R
Rob Clark 已提交
181 182 183 184 185
void msm_update_fence(struct drm_device *dev, uint32_t fence);

int msm_ioctl_gem_submit(struct drm_device *dev, void *data,
		struct drm_file *file);

186 187
int msm_gem_mmap_obj(struct drm_gem_object *obj,
			struct vm_area_struct *vma);
188 189 190 191 192 193
int msm_gem_mmap(struct file *filp, struct vm_area_struct *vma);
int msm_gem_fault(struct vm_area_struct *vma, struct vm_fault *vmf);
uint64_t msm_gem_mmap_offset(struct drm_gem_object *obj);
int msm_gem_get_iova_locked(struct drm_gem_object *obj, int id,
		uint32_t *iova);
int msm_gem_get_iova(struct drm_gem_object *obj, int id, uint32_t *iova);
R
Rob Clark 已提交
194
uint32_t msm_gem_iova(struct drm_gem_object *obj, int id);
R
Rob Clark 已提交
195 196
struct page **msm_gem_get_pages(struct drm_gem_object *obj);
void msm_gem_put_pages(struct drm_gem_object *obj);
197 198 199 200 201
void msm_gem_put_iova(struct drm_gem_object *obj, int id);
int msm_gem_dumb_create(struct drm_file *file, struct drm_device *dev,
		struct drm_mode_create_dumb *args);
int msm_gem_dumb_map_offset(struct drm_file *file, struct drm_device *dev,
		uint32_t handle, uint64_t *offset);
R
Rob Clark 已提交
202 203 204
struct sg_table *msm_gem_prime_get_sg_table(struct drm_gem_object *obj);
void *msm_gem_prime_vmap(struct drm_gem_object *obj);
void msm_gem_prime_vunmap(struct drm_gem_object *obj, void *vaddr);
205
int msm_gem_prime_mmap(struct drm_gem_object *obj, struct vm_area_struct *vma);
R
Rob Clark 已提交
206
struct drm_gem_object *msm_gem_prime_import_sg_table(struct drm_device *dev,
207
		struct dma_buf_attachment *attach, struct sg_table *sg);
R
Rob Clark 已提交
208 209
int msm_gem_prime_pin(struct drm_gem_object *obj);
void msm_gem_prime_unpin(struct drm_gem_object *obj);
210 211
void *msm_gem_vaddr_locked(struct drm_gem_object *obj);
void *msm_gem_vaddr(struct drm_gem_object *obj);
R
Rob Clark 已提交
212 213
int msm_gem_queue_inactive_cb(struct drm_gem_object *obj,
		struct msm_fence_cb *cb);
R
Rob Clark 已提交
214
void msm_gem_move_to_active(struct drm_gem_object *obj,
R
Rob Clark 已提交
215
		struct msm_gpu *gpu, bool write, uint32_t fence);
R
Rob Clark 已提交
216 217
void msm_gem_move_to_inactive(struct drm_gem_object *obj);
int msm_gem_cpu_prep(struct drm_gem_object *obj, uint32_t op,
R
Rob Clark 已提交
218
		ktime_t *timeout);
R
Rob Clark 已提交
219
int msm_gem_cpu_fini(struct drm_gem_object *obj);
220 221 222 223 224
void msm_gem_free_object(struct drm_gem_object *obj);
int msm_gem_new_handle(struct drm_device *dev, struct drm_file *file,
		uint32_t size, uint32_t flags, uint32_t *handle);
struct drm_gem_object *msm_gem_new(struct drm_device *dev,
		uint32_t size, uint32_t flags);
R
Rob Clark 已提交
225 226
struct drm_gem_object *msm_gem_import(struct drm_device *dev,
		uint32_t size, struct sg_table *sgt);
227

R
Rob Clark 已提交
228 229 230
int msm_framebuffer_prepare(struct drm_framebuffer *fb, int id);
void msm_framebuffer_cleanup(struct drm_framebuffer *fb, int id);
uint32_t msm_framebuffer_iova(struct drm_framebuffer *fb, int id, int plane);
231 232 233 234 235 236 237 238 239
struct drm_gem_object *msm_framebuffer_bo(struct drm_framebuffer *fb, int plane);
const struct msm_format *msm_framebuffer_format(struct drm_framebuffer *fb);
struct drm_framebuffer *msm_framebuffer_init(struct drm_device *dev,
		struct drm_mode_fb_cmd2 *mode_cmd, struct drm_gem_object **bos);
struct drm_framebuffer *msm_framebuffer_create(struct drm_device *dev,
		struct drm_file *file, struct drm_mode_fb_cmd2 *mode_cmd);

struct drm_fb_helper *msm_fbdev_init(struct drm_device *dev);

240
struct hdmi;
R
Rob Clark 已提交
241 242
int hdmi_modeset_init(struct hdmi *hdmi, struct drm_device *dev,
		struct drm_encoder *encoder);
243 244 245
void __init hdmi_register(void);
void __exit hdmi_unregister(void);

246 247 248 249 250 251
struct msm_edp;
void __init msm_edp_register(void);
void __exit msm_edp_unregister(void);
int msm_edp_modeset_init(struct msm_edp *edp, struct drm_device *dev,
		struct drm_encoder *encoder);

252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277
struct msm_dsi;
enum msm_dsi_encoder_id {
	MSM_DSI_VIDEO_ENCODER_ID = 0,
	MSM_DSI_CMD_ENCODER_ID = 1,
	MSM_DSI_ENCODER_NUM = 2
};
#ifdef CONFIG_DRM_MSM_DSI
void __init msm_dsi_register(void);
void __exit msm_dsi_unregister(void);
int msm_dsi_modeset_init(struct msm_dsi *msm_dsi, struct drm_device *dev,
		struct drm_encoder *encoders[MSM_DSI_ENCODER_NUM]);
#else
static inline void __init msm_dsi_register(void)
{
}
static inline void __exit msm_dsi_unregister(void)
{
}
static inline int msm_dsi_modeset_init(struct msm_dsi *msm_dsi,
		struct drm_device *dev,
		struct drm_encoder *encoders[MSM_DSI_ENCODER_NUM])
{
	return -EINVAL;
}
#endif

278 279 280 281
#ifdef CONFIG_DEBUG_FS
void msm_gem_describe(struct drm_gem_object *obj, struct seq_file *m);
void msm_gem_describe_objects(struct list_head *list, struct seq_file *m);
void msm_framebuffer_describe(struct drm_framebuffer *fb, struct seq_file *m);
R
Rob Clark 已提交
282 283 284 285
int msm_debugfs_late_init(struct drm_device *dev);
int msm_rd_debugfs_init(struct drm_minor *minor);
void msm_rd_debugfs_cleanup(struct drm_minor *minor);
void msm_rd_dump_submit(struct msm_gem_submit *submit);
R
Rob Clark 已提交
286 287
int msm_perf_debugfs_init(struct drm_minor *minor);
void msm_perf_debugfs_cleanup(struct drm_minor *minor);
R
Rob Clark 已提交
288 289 290
#else
static inline int msm_debugfs_late_init(struct drm_device *dev) { return 0; }
static inline void msm_rd_dump_submit(struct msm_gem_submit *submit) {}
291 292 293 294 295 296 297 298 299 300
#endif

void __iomem *msm_ioremap(struct platform_device *pdev, const char *name,
		const char *dbgname);
void msm_writel(u32 data, void __iomem *addr);
u32 msm_readl(const void __iomem *addr);

#define DBG(fmt, ...) DRM_DEBUG(fmt"\n", ##__VA_ARGS__)
#define VERB(fmt, ...) if (0) DRM_DEBUG(fmt"\n", ##__VA_ARGS__)

301 302 303 304 305 306
static inline bool fence_completed(struct drm_device *dev, uint32_t fence)
{
	struct msm_drm_private *priv = dev->dev_private;
	return priv->completed_fence >= fence;
}

307 308 309 310 311 312 313 314 315
static inline int align_pitch(int width, int bpp)
{
	int bytespp = (bpp + 7) / 8;
	/* adreno needs pitch aligned to 32 pixels: */
	return bytespp * ALIGN(width, 32);
}

/* for the generated headers: */
#define INVALID_IDX(idx) ({BUG(); 0;})
R
Rob Clark 已提交
316 317 318
#define fui(x)                ({BUG(); 0;})
#define util_float_to_half(x) ({BUG(); 0;})

319 320 321 322 323 324 325 326

#define FIELD(val, name) (((val) & name ## __MASK) >> name ## __SHIFT)

/* for conditionally setting boolean flag(s): */
#define COND(bool, val) ((bool) ? (val) : 0)


#endif /* __MSM_DRV_H__ */