summaryrefslogtreecommitdiff
path: root/drivers/gpu/drm/rcar-du/rcar_du_drv.h
blob: 193cc59d495cbd8e1a5427fae9fd1acce229dc15 (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
/*
 * rcar_du_drv.h  --  R-Car Display Unit DRM driver
 *
 * Copyright (C) 2013 Renesas Corporation
 *
 * Contact: Laurent Pinchart (laurent.pinchart@ideasonboard.com)
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 */

#ifndef __RCAR_DU_DRV_H__
#define __RCAR_DU_DRV_H__

#include <linux/kernel.h>
#include <linux/mutex.h>
#include <linux/platform_data/rcar-du.h>

#include "rcar_du_crtc.h"
#include "rcar_du_plane.h"

struct clk;
struct device;
struct drm_device;

struct rcar_du_device {
	struct device *dev;
	const struct rcar_du_platform_data *pdata;

	void __iomem *mmio;
	struct clk *clock;
	unsigned int use_count;

	struct drm_device *ddev;

	struct rcar_du_crtc crtcs[2];
	unsigned int used_crtcs;
	unsigned int num_crtcs;

	struct {
		struct rcar_du_plane planes[RCAR_DU_NUM_SW_PLANES];
		unsigned int free;
		struct mutex lock;

		struct drm_property *alpha;
		struct drm_property *colorkey;
		struct drm_property *zpos;
	} planes;
};

int rcar_du_get(struct rcar_du_device *rcdu);
void rcar_du_put(struct rcar_du_device *rcdu);

static inline u32 rcar_du_read(struct rcar_du_device *rcdu, u32 reg)
{
	return ioread32(rcdu->mmio + reg);
}

static inline void rcar_du_write(struct rcar_du_device *rcdu, u32 reg, u32 data)
{
	iowrite32(data, rcdu->mmio + reg);
}

#endif /* __RCAR_DU_DRV_H__ */