mirror of
https://github.com/Dasharo/linux.git
synced 2026-03-06 15:25:10 -08:00
OMAP: DSS2: omapfb driver
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@nokia.com>
This commit is contained in:
@@ -55,6 +55,10 @@ static struct platform_device omap_fb_device = {
|
||||
.num_resources = 0,
|
||||
};
|
||||
|
||||
void omapfb_set_platform_data(struct omapfb_platform_data *data)
|
||||
{
|
||||
}
|
||||
|
||||
static inline int ranges_overlap(unsigned long start1, unsigned long size1,
|
||||
unsigned long start2, unsigned long size2)
|
||||
{
|
||||
@@ -327,7 +331,33 @@ static inline int omap_init_fb(void)
|
||||
|
||||
arch_initcall(omap_init_fb);
|
||||
|
||||
#else
|
||||
#elif defined(CONFIG_FB_OMAP2) || defined(CONFIG_FB_OMAP2_MODULE)
|
||||
|
||||
static u64 omap_fb_dma_mask = ~(u32)0;
|
||||
static struct omapfb_platform_data omapfb_config;
|
||||
|
||||
static struct platform_device omap_fb_device = {
|
||||
.name = "omapfb",
|
||||
.id = -1,
|
||||
.dev = {
|
||||
.dma_mask = &omap_fb_dma_mask,
|
||||
.coherent_dma_mask = ~(u32)0,
|
||||
.platform_data = &omapfb_config,
|
||||
},
|
||||
.num_resources = 0,
|
||||
};
|
||||
|
||||
void omapfb_set_platform_data(struct omapfb_platform_data *data)
|
||||
{
|
||||
omapfb_config = *data;
|
||||
}
|
||||
|
||||
static inline int omap_init_fb(void)
|
||||
{
|
||||
return platform_device_register(&omap_fb_device);
|
||||
}
|
||||
|
||||
arch_initcall(omap_init_fb);
|
||||
|
||||
void omapfb_reserve_sdram(void) {}
|
||||
unsigned long omapfb_reserve_sram(unsigned long sram_pstart,
|
||||
@@ -339,5 +369,20 @@ unsigned long omapfb_reserve_sram(unsigned long sram_pstart,
|
||||
return 0;
|
||||
}
|
||||
|
||||
#else
|
||||
|
||||
void omapfb_set_platform_data(struct omapfb_platform_data *data)
|
||||
{
|
||||
}
|
||||
|
||||
void omapfb_reserve_sdram(void) {}
|
||||
unsigned long omapfb_reserve_sram(unsigned long sram_pstart,
|
||||
unsigned long sram_vstart,
|
||||
unsigned long sram_size,
|
||||
unsigned long start_avail,
|
||||
unsigned long size_avail)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
config FB_OMAP
|
||||
tristate "OMAP frame buffer support (EXPERIMENTAL)"
|
||||
depends on FB && ARCH_OMAP
|
||||
depends on FB && ARCH_OMAP && (OMAP2_DSS = "n")
|
||||
|
||||
select FB_CFB_FILLRECT
|
||||
select FB_CFB_COPYAREA
|
||||
select FB_CFB_IMAGEBLIT
|
||||
@@ -72,7 +73,7 @@ config FB_OMAP_LCD_MIPID
|
||||
|
||||
config FB_OMAP_BOOTLOADER_INIT
|
||||
bool "Check bootloader initialization"
|
||||
depends on FB_OMAP
|
||||
depends on FB_OMAP || FB_OMAP2
|
||||
help
|
||||
Say Y here if you want to enable checking if the bootloader has
|
||||
already initialized the display controller. In this case the
|
||||
|
||||
@@ -5,3 +5,4 @@ config OMAP2_VRFB
|
||||
bool
|
||||
|
||||
source "drivers/video/omap2/dss/Kconfig"
|
||||
source "drivers/video/omap2/omapfb/Kconfig"
|
||||
|
||||
@@ -2,3 +2,4 @@ obj-$(CONFIG_OMAP2_VRAM) += vram.o
|
||||
obj-$(CONFIG_OMAP2_VRFB) += vrfb.o
|
||||
|
||||
obj-y += dss/
|
||||
obj-y += omapfb/
|
||||
|
||||
37
drivers/video/omap2/omapfb/Kconfig
Normal file
37
drivers/video/omap2/omapfb/Kconfig
Normal file
@@ -0,0 +1,37 @@
|
||||
menuconfig FB_OMAP2
|
||||
tristate "OMAP2/3 frame buffer support (EXPERIMENTAL)"
|
||||
depends on FB && OMAP2_DSS
|
||||
|
||||
select OMAP2_VRAM
|
||||
select OMAP2_VRFB
|
||||
select FB_CFB_FILLRECT
|
||||
select FB_CFB_COPYAREA
|
||||
select FB_CFB_IMAGEBLIT
|
||||
help
|
||||
Frame buffer driver for OMAP2/3 based boards.
|
||||
|
||||
config FB_OMAP2_DEBUG_SUPPORT
|
||||
bool "Debug support for OMAP2/3 FB"
|
||||
default y
|
||||
depends on FB_OMAP2
|
||||
help
|
||||
Support for debug output. You have to enable the actual printing
|
||||
with debug module parameter.
|
||||
|
||||
config FB_OMAP2_FORCE_AUTO_UPDATE
|
||||
bool "Force main display to automatic update mode"
|
||||
depends on FB_OMAP2
|
||||
help
|
||||
Forces main display to automatic update mode (if possible),
|
||||
and also enables tearsync (if possible). By default
|
||||
displays that support manual update are started in manual
|
||||
update mode.
|
||||
|
||||
config FB_OMAP2_NUM_FBS
|
||||
int "Number of framebuffers"
|
||||
range 1 10
|
||||
default 3
|
||||
depends on FB_OMAP2
|
||||
help
|
||||
Select the number of framebuffers created. OMAP2/3 has 3 overlays
|
||||
so normally this would be 3.
|
||||
2
drivers/video/omap2/omapfb/Makefile
Normal file
2
drivers/video/omap2/omapfb/Makefile
Normal file
@@ -0,0 +1,2 @@
|
||||
obj-$(CONFIG_FB_OMAP2) += omapfb.o
|
||||
omapfb-y := omapfb-main.o omapfb-sysfs.o omapfb-ioctl.o
|
||||
755
drivers/video/omap2/omapfb/omapfb-ioctl.c
Normal file
755
drivers/video/omap2/omapfb/omapfb-ioctl.c
Normal file
File diff suppressed because it is too large
Load Diff
2261
drivers/video/omap2/omapfb/omapfb-main.c
Normal file
2261
drivers/video/omap2/omapfb/omapfb-main.c
Normal file
File diff suppressed because it is too large
Load Diff
507
drivers/video/omap2/omapfb/omapfb-sysfs.c
Normal file
507
drivers/video/omap2/omapfb/omapfb-sysfs.c
Normal file
File diff suppressed because it is too large
Load Diff
146
drivers/video/omap2/omapfb/omapfb.h
Normal file
146
drivers/video/omap2/omapfb/omapfb.h
Normal file
@@ -0,0 +1,146 @@
|
||||
/*
|
||||
* 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
|
||||
|
||||
#include <plat/display.h>
|
||||
|
||||
#ifdef DEBUG
|
||||
extern unsigned int omapfb_debug;
|
||||
#define DBG(format, ...) \
|
||||
if (omapfb_debug) \
|
||||
printk(KERN_DEBUG "OMAPFB: " format, ## __VA_ARGS__)
|
||||
#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 {
|
||||
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 */
|
||||
};
|
||||
|
||||
/* appended to fb_info */
|
||||
struct omapfb_info {
|
||||
int id;
|
||||
struct omapfb2_mem_region region;
|
||||
atomic_t map_count;
|
||||
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;
|
||||
};
|
||||
|
||||
struct omapfb2_device {
|
||||
struct device *dev;
|
||||
struct mutex mtx;
|
||||
|
||||
u32 pseudo_palette[17];
|
||||
|
||||
int state;
|
||||
|
||||
unsigned num_fbs;
|
||||
struct fb_info *fbs[10];
|
||||
|
||||
unsigned num_displays;
|
||||
struct omap_dss_device *displays[10];
|
||||
unsigned num_overlays;
|
||||
struct omap_overlay *overlays[10];
|
||||
unsigned num_managers;
|
||||
struct omap_overlay_manager *managers[10];
|
||||
};
|
||||
|
||||
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);
|
||||
|
||||
int dss_mode_to_fb_mode(enum omap_color_mode dssmode,
|
||||
struct fb_var_screeninfo *var);
|
||||
|
||||
/* 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;
|
||||
}
|
||||
|
||||
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)
|
||||
{
|
||||
struct omap_overlay_info info;
|
||||
|
||||
ovl->get_overlay_info(ovl, &info);
|
||||
info.enabled = enable;
|
||||
return ovl->set_overlay_info(ovl, &info);
|
||||
}
|
||||
|
||||
#endif
|
||||
@@ -24,6 +24,7 @@
|
||||
#ifndef __LINUX_OMAPFB_H__
|
||||
#define __LINUX_OMAPFB_H__
|
||||
|
||||
#include <linux/fb.h>
|
||||
#include <linux/ioctl.h>
|
||||
#include <linux/types.h>
|
||||
|
||||
@@ -50,6 +51,12 @@
|
||||
#define OMAPFB_UPDATE_WINDOW OMAP_IOW(54, struct omapfb_update_window)
|
||||
#define OMAPFB_SETUP_MEM OMAP_IOW(55, struct omapfb_mem_info)
|
||||
#define OMAPFB_QUERY_MEM OMAP_IOW(56, struct omapfb_mem_info)
|
||||
#define OMAPFB_WAITFORVSYNC OMAP_IO(57)
|
||||
#define OMAPFB_MEMORY_READ OMAP_IOR(58, struct omapfb_memory_read)
|
||||
#define OMAPFB_GET_OVERLAY_COLORMODE OMAP_IOR(59, struct omapfb_ovl_colormode)
|
||||
#define OMAPFB_WAITFORGO OMAP_IO(60)
|
||||
#define OMAPFB_GET_VRAM_INFO OMAP_IOR(61, struct omapfb_vram_info)
|
||||
#define OMAPFB_SET_TEARSYNC OMAP_IOW(62, struct omapfb_tearsync_info)
|
||||
|
||||
#define OMAPFB_CAPS_GENERIC_MASK 0x00000fff
|
||||
#define OMAPFB_CAPS_LCDC_MASK 0x00fff000
|
||||
@@ -87,6 +94,13 @@ enum omapfb_color_format {
|
||||
OMAPFB_COLOR_CLUT_1BPP,
|
||||
OMAPFB_COLOR_RGB444,
|
||||
OMAPFB_COLOR_YUY422,
|
||||
|
||||
OMAPFB_COLOR_ARGB16,
|
||||
OMAPFB_COLOR_RGB24U, /* RGB24, 32-bit container */
|
||||
OMAPFB_COLOR_RGB24P, /* RGB24, 24-bit container */
|
||||
OMAPFB_COLOR_ARGB32,
|
||||
OMAPFB_COLOR_RGBA32,
|
||||
OMAPFB_COLOR_RGBX32,
|
||||
};
|
||||
|
||||
struct omapfb_update_window {
|
||||
@@ -158,6 +172,40 @@ enum omapfb_update_mode {
|
||||
OMAPFB_MANUAL_UPDATE
|
||||
};
|
||||
|
||||
struct omapfb_memory_read {
|
||||
__u16 x;
|
||||
__u16 y;
|
||||
__u16 w;
|
||||
__u16 h;
|
||||
size_t buffer_size;
|
||||
void __user *buffer;
|
||||
};
|
||||
|
||||
struct omapfb_ovl_colormode {
|
||||
__u8 overlay_idx;
|
||||
__u8 mode_idx;
|
||||
__u32 bits_per_pixel;
|
||||
__u32 nonstd;
|
||||
struct fb_bitfield red;
|
||||
struct fb_bitfield green;
|
||||
struct fb_bitfield blue;
|
||||
struct fb_bitfield transp;
|
||||
};
|
||||
|
||||
struct omapfb_vram_info {
|
||||
__u32 total;
|
||||
__u32 free;
|
||||
__u32 largest_free_block;
|
||||
__u32 reserved[5];
|
||||
};
|
||||
|
||||
struct omapfb_tearsync_info {
|
||||
__u8 enabled;
|
||||
__u8 reserved1[3];
|
||||
__u16 line;
|
||||
__u16 reserved2;
|
||||
};
|
||||
|
||||
#ifdef __KERNEL__
|
||||
|
||||
#include <plat/board.h>
|
||||
@@ -173,6 +221,11 @@ struct omapfb_mem_region {
|
||||
void __iomem *vaddr;
|
||||
unsigned long size;
|
||||
u8 type; /* OMAPFB_PLANE_MEM_* */
|
||||
enum omapfb_color_format format;/* OMAPFB_COLOR_* */
|
||||
unsigned format_used:1; /* Must be set when format is set.
|
||||
* Needed b/c of the badly chosen 0
|
||||
* base for OMAPFB_COLOR_* values
|
||||
*/
|
||||
unsigned alloc:1; /* allocated by the driver */
|
||||
unsigned map:1; /* kernel mapped by the driver */
|
||||
};
|
||||
@@ -189,6 +242,7 @@ struct omapfb_platform_data {
|
||||
};
|
||||
|
||||
/* in arch/arm/plat-omap/fb.c */
|
||||
extern void omapfb_set_platform_data(struct omapfb_platform_data *data);
|
||||
extern void omapfb_set_ctrl_platform_data(void *pdata);
|
||||
extern void omapfb_reserve_sdram(void);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user