omapfb.h 5.2 KB
Newer Older
T
Tomi Valkeinen 已提交
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
/*
 * linux/drivers/video/omap2/omapfb.h
 *
 * Copyright (C) 2008 Nokia Corporation
 * Author: Tomi Valkeinen <tomi.valkeinen@nokia.com>
 *
 * Some code and ideas taken from drivers/video/omap/ driver
 * by Imre Deak.
 *
 * 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 __DRIVERS_VIDEO_OMAP2_OMAPFB_H__
#define __DRIVERS_VIDEO_OMAP2_OMAPFB_H__

#ifdef CONFIG_FB_OMAP2_DEBUG_SUPPORT
#define DEBUG
#endif

30 31
#include <linux/rwsem.h>

32
#include <video/omapdss.h>
T
Tomi Valkeinen 已提交
33 34 35 36

#ifdef DEBUG
extern unsigned int omapfb_debug;
#define DBG(format, ...) \
37 38 39 40
	do { \
		if (omapfb_debug) \
			printk(KERN_DEBUG "OMAPFB: " format, ## __VA_ARGS__); \
	} while (0)
T
Tomi Valkeinen 已提交
41 42 43 44 45 46 47 48 49 50
#else
#define DBG(format, ...)
#endif

#define FB2OFB(fb_info) ((struct omapfb_info *)(fb_info->par))

/* max number of overlays to which a framebuffer data can be direct */
#define OMAPFB_MAX_OVL_PER_FB 3

struct omapfb2_mem_region {
51
	int             id;
T
Tomi Valkeinen 已提交
52 53 54 55 56 57 58
	u32		paddr;
	void __iomem	*vaddr;
	struct vrfb	vrfb;
	unsigned long	size;
	u8		type;		/* OMAPFB_PLANE_MEM_* */
	bool		alloc;		/* allocated by the driver */
	bool		map;		/* kernel mapped by the driver */
59
	atomic_t	map_count;
60
	struct rw_semaphore lock;
61
	atomic_t	lock_count;
T
Tomi Valkeinen 已提交
62 63 64 65 66
};

/* appended to fb_info */
struct omapfb_info {
	int id;
67
	struct omapfb2_mem_region *region;
T
Tomi Valkeinen 已提交
68 69 70 71 72 73 74 75
	int num_overlays;
	struct omap_overlay *overlays[OMAPFB_MAX_OVL_PER_FB];
	struct omapfb2_device *fbdev;
	enum omap_dss_rotation_type rotation_type;
	u8 rotation[OMAPFB_MAX_OVL_PER_FB];
	bool mirror;
};

76
struct omapfb_display_data {
77
	struct omapfb2_device *fbdev;
78 79
	struct omap_dss_device *dssdev;
	u8 bpp_override;
80 81 82
	enum omapfb_update_mode update_mode;
	bool auto_update_work_enabled;
	struct delayed_work auto_update_work;
83 84
};

T
Tomi Valkeinen 已提交
85 86 87 88 89 90 91 92 93 94
struct omapfb2_device {
	struct device *dev;
	struct mutex  mtx;

	u32 pseudo_palette[17];

	int state;

	unsigned num_fbs;
	struct fb_info *fbs[10];
95
	struct omapfb2_mem_region regions[10];
T
Tomi Valkeinen 已提交
96 97

	unsigned num_displays;
98
	struct omapfb_display_data displays[10];
T
Tomi Valkeinen 已提交
99 100 101 102
	unsigned num_overlays;
	struct omap_overlay *overlays[10];
	unsigned num_managers;
	struct omap_overlay_manager *managers[10];
103 104

	struct workqueue_struct *auto_update_wq;
T
Tomi Valkeinen 已提交
105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
};

struct omapfb_colormode {
	enum omap_color_mode dssmode;
	u32 bits_per_pixel;
	u32 nonstd;
	struct fb_bitfield red;
	struct fb_bitfield green;
	struct fb_bitfield blue;
	struct fb_bitfield transp;
};

void set_fb_fix(struct fb_info *fbi);
int check_fb_var(struct fb_info *fbi, struct fb_var_screeninfo *var);
int omapfb_realloc_fbmem(struct fb_info *fbi, unsigned long size, int type);
int omapfb_apply_changes(struct fb_info *fbi, int init);

int omapfb_create_sysfs(struct omapfb2_device *fbdev);
void omapfb_remove_sysfs(struct omapfb2_device *fbdev);

int omapfb_ioctl(struct fb_info *fbi, unsigned int cmd, unsigned long arg);

127 128 129
int omapfb_update_window(struct fb_info *fbi,
		u32 x, u32 y, u32 w, u32 h);

T
Tomi Valkeinen 已提交
130 131 132
int dss_mode_to_fb_mode(enum omap_color_mode dssmode,
			struct fb_var_screeninfo *var);

133 134 135
int omapfb_setup_overlay(struct fb_info *fbi, struct omap_overlay *ovl,
		u16 posx, u16 posy, u16 outw, u16 outh);

136 137 138 139 140 141 142
void omapfb_start_auto_update(struct omapfb2_device *fbdev,
		struct omap_dss_device *display);
void omapfb_stop_auto_update(struct omapfb2_device *fbdev,
		struct omap_dss_device *display);
int omapfb_get_update_mode(struct fb_info *fbi, enum omapfb_update_mode *mode);
int omapfb_set_update_mode(struct fb_info *fbi, enum omapfb_update_mode mode);

T
Tomi Valkeinen 已提交
143 144 145 146 147 148 149 150 151 152 153 154 155 156 157
/* find the display connected to this fb, if any */
static inline struct omap_dss_device *fb2display(struct fb_info *fbi)
{
	struct omapfb_info *ofbi = FB2OFB(fbi);
	int i;

	/* XXX: returns the display connected to first attached overlay */
	for (i = 0; i < ofbi->num_overlays; i++) {
		if (ofbi->overlays[i]->manager)
			return ofbi->overlays[i]->manager->device;
	}

	return NULL;
}

158 159 160 161 162 163 164 165 166 167 168 169 170
static inline struct omapfb_display_data *get_display_data(
		struct omapfb2_device *fbdev, struct omap_dss_device *dssdev)
{
	int i;

	for (i = 0; i < fbdev->num_displays; ++i)
		if (fbdev->displays[i].dssdev == dssdev)
			return &fbdev->displays[i];

	/* This should never happen */
	BUG();
}

T
Tomi Valkeinen 已提交
171 172 173 174 175 176 177 178 179 180 181 182 183
static inline void omapfb_lock(struct omapfb2_device *fbdev)
{
	mutex_lock(&fbdev->mtx);
}

static inline void omapfb_unlock(struct omapfb2_device *fbdev)
{
	mutex_unlock(&fbdev->mtx);
}

static inline int omapfb_overlay_enable(struct omap_overlay *ovl,
		int enable)
{
184 185 186 187
	if (enable)
		return ovl->enable(ovl);
	else
		return ovl->disable(ovl);
T
Tomi Valkeinen 已提交
188 189
}

190 191 192
static inline struct omapfb2_mem_region *
omapfb_get_mem_region(struct omapfb2_mem_region *rg)
{
193
	down_read_nested(&rg->lock, rg->id);
194
	atomic_inc(&rg->lock_count);
195 196 197 198 199
	return rg;
}

static inline void omapfb_put_mem_region(struct omapfb2_mem_region *rg)
{
200
	atomic_dec(&rg->lock_count);
201
	up_read(&rg->lock);
202 203
}

T
Tomi Valkeinen 已提交
204
#endif