Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
raspberrypi-kernel
提交
348be69d
R
raspberrypi-kernel
项目概览
openeuler
/
raspberrypi-kernel
通知
13
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
R
raspberrypi-kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
348be69d
编写于
11月 07, 2012
作者:
T
Tomi Valkeinen
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
OMAPDSS: export dispc functions
Export DISPC functions. Signed-off-by:
N
Tomi Valkeinen
<
tomi.valkeinen@ti.com
>
上级
eda34273
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
63 addition
and
35 deletion
+63
-35
drivers/video/omap2/dss/dispc.c
drivers/video/omap2/dss/dispc.c
+23
-0
drivers/video/omap2/dss/dss.h
drivers/video/omap2/dss/dss.h
+1
-35
include/video/omapdss.h
include/video/omapdss.h
+39
-0
未找到文件。
drivers/video/omap2/dss/dispc.c
浏览文件 @
348be69d
...
...
@@ -494,6 +494,7 @@ int dispc_runtime_get(void)
WARN_ON
(
r
<
0
);
return
r
<
0
?
r
:
0
;
}
EXPORT_SYMBOL
(
dispc_runtime_get
);
void
dispc_runtime_put
(
void
)
{
...
...
@@ -504,11 +505,13 @@ void dispc_runtime_put(void)
r
=
pm_runtime_put_sync
(
&
dispc
.
pdev
->
dev
);
WARN_ON
(
r
<
0
&&
r
!=
-
ENOSYS
);
}
EXPORT_SYMBOL
(
dispc_runtime_put
);
u32
dispc_mgr_get_vsync_irq
(
enum
omap_channel
channel
)
{
return
mgr_desc
[
channel
].
vsync_irq
;
}
EXPORT_SYMBOL
(
dispc_mgr_get_vsync_irq
);
u32
dispc_mgr_get_framedone_irq
(
enum
omap_channel
channel
)
{
...
...
@@ -517,11 +520,13 @@ u32 dispc_mgr_get_framedone_irq(enum omap_channel channel)
return
mgr_desc
[
channel
].
framedone_irq
;
}
EXPORT_SYMBOL
(
dispc_mgr_get_framedone_irq
);
u32
dispc_mgr_get_sync_lost_irq
(
enum
omap_channel
channel
)
{
return
mgr_desc
[
channel
].
sync_lost_irq
;
}
EXPORT_SYMBOL
(
dispc_mgr_get_sync_lost_irq
);
u32
dispc_wb_get_framedone_irq
(
void
)
{
...
...
@@ -532,6 +537,7 @@ bool dispc_mgr_go_busy(enum omap_channel channel)
{
return
mgr_fld_read
(
channel
,
DISPC_MGR_FLD_GO
)
==
1
;
}
EXPORT_SYMBOL
(
dispc_mgr_go_busy
);
void
dispc_mgr_go
(
enum
omap_channel
channel
)
{
...
...
@@ -542,6 +548,7 @@ void dispc_mgr_go(enum omap_channel channel)
mgr_fld_write
(
channel
,
DISPC_MGR_FLD_GO
,
1
);
}
EXPORT_SYMBOL
(
dispc_mgr_go
);
bool
dispc_wb_go_busy
(
void
)
{
...
...
@@ -945,6 +952,7 @@ void dispc_ovl_set_channel_out(enum omap_plane plane, enum omap_channel channel)
}
dispc_write_reg
(
DISPC_OVL_ATTRIBUTES
(
plane
),
val
);
}
EXPORT_SYMBOL
(
dispc_ovl_set_channel_out
);
static
enum
omap_channel
dispc_ovl_get_channel_out
(
enum
omap_plane
plane
)
{
...
...
@@ -2359,6 +2367,7 @@ int dispc_ovl_check(enum omap_plane plane, enum omap_channel channel,
&
five_taps
,
x_predecim
,
y_predecim
,
pos_x
,
oi
->
rotation_type
,
false
);
}
EXPORT_SYMBOL
(
dispc_ovl_check
);
static
int
dispc_ovl_setup_common
(
enum
omap_plane
plane
,
enum
omap_overlay_caps
caps
,
u32
paddr
,
u32
p_uv_addr
,
...
...
@@ -2539,6 +2548,7 @@ int dispc_ovl_setup(enum omap_plane plane, const struct omap_overlay_info *oi,
return
r
;
}
EXPORT_SYMBOL
(
dispc_ovl_setup
);
int
dispc_wb_setup
(
const
struct
omap_dss_writeback_info
*
wi
,
bool
mem_to_mem
,
const
struct
omap_video_timings
*
mgr_timings
)
...
...
@@ -2599,11 +2609,13 @@ int dispc_ovl_enable(enum omap_plane plane, bool enable)
return
0
;
}
EXPORT_SYMBOL
(
dispc_ovl_enable
);
bool
dispc_ovl_enabled
(
enum
omap_plane
plane
)
{
return
REG_GET
(
DISPC_OVL_ATTRIBUTES
(
plane
),
0
,
0
);
}
EXPORT_SYMBOL
(
dispc_ovl_enabled
);
void
dispc_mgr_enable
(
enum
omap_channel
channel
,
bool
enable
)
{
...
...
@@ -2611,11 +2623,13 @@ void dispc_mgr_enable(enum omap_channel channel, bool enable)
/* flush posted write */
mgr_fld_read
(
channel
,
DISPC_MGR_FLD_ENABLE
);
}
EXPORT_SYMBOL
(
dispc_mgr_enable
);
bool
dispc_mgr_is_enabled
(
enum
omap_channel
channel
)
{
return
!!
mgr_fld_read
(
channel
,
DISPC_MGR_FLD_ENABLE
);
}
EXPORT_SYMBOL
(
dispc_mgr_is_enabled
);
void
dispc_wb_enable
(
bool
enable
)
{
...
...
@@ -2712,6 +2726,7 @@ void dispc_mgr_setup(enum omap_channel channel,
dispc_mgr_set_cpr_coef
(
channel
,
&
info
->
cpr_coefs
);
}
}
EXPORT_SYMBOL
(
dispc_mgr_setup
);
static
void
dispc_mgr_set_tft_data_lines
(
enum
omap_channel
channel
,
u8
data_lines
)
{
...
...
@@ -2788,6 +2803,7 @@ void dispc_mgr_set_lcd_config(enum omap_channel channel,
dispc_mgr_set_lcd_type_tft
(
channel
);
}
EXPORT_SYMBOL
(
dispc_mgr_set_lcd_config
);
static
bool
_dispc_mgr_size_ok
(
u16
width
,
u16
height
)
{
...
...
@@ -2926,6 +2942,7 @@ void dispc_mgr_set_timings(enum omap_channel channel,
dispc_mgr_set_size
(
channel
,
t
.
x_res
,
t
.
y_res
);
}
EXPORT_SYMBOL
(
dispc_mgr_set_timings
);
static
void
dispc_mgr_set_lcd_divisor
(
enum
omap_channel
channel
,
u16
lck_div
,
u16
pck_div
)
...
...
@@ -3389,16 +3406,19 @@ u32 dispc_read_irqstatus(void)
{
return
dispc_read_reg
(
DISPC_IRQSTATUS
);
}
EXPORT_SYMBOL
(
dispc_read_irqstatus
);
void
dispc_clear_irqstatus
(
u32
mask
)
{
dispc_write_reg
(
DISPC_IRQSTATUS
,
mask
);
}
EXPORT_SYMBOL
(
dispc_clear_irqstatus
);
u32
dispc_read_irqenable
(
void
)
{
return
dispc_read_reg
(
DISPC_IRQENABLE
);
}
EXPORT_SYMBOL
(
dispc_read_irqenable
);
void
dispc_write_irqenable
(
u32
mask
)
{
...
...
@@ -3409,6 +3429,7 @@ void dispc_write_irqenable(u32 mask)
dispc_write_reg
(
DISPC_IRQENABLE
,
mask
);
}
EXPORT_SYMBOL
(
dispc_write_irqenable
);
void
dispc_enable_sidle
(
void
)
{
...
...
@@ -3584,11 +3605,13 @@ int dispc_request_irq(irq_handler_t handler, void *dev_id)
return
devm_request_irq
(
&
dispc
.
pdev
->
dev
,
dispc
.
irq
,
handler
,
IRQF_SHARED
,
"OMAP DISPC"
,
dev_id
);
}
EXPORT_SYMBOL
(
dispc_request_irq
);
void
dispc_free_irq
(
void
*
dev_id
)
{
devm_free_irq
(
&
dispc
.
pdev
->
dev
,
dispc
.
irq
,
dev_id
);
}
EXPORT_SYMBOL
(
dispc_free_irq
);
/* DISPC HW IP initialisation */
static
int
__init
omap_dispchw_probe
(
struct
platform_device
*
pdev
)
...
...
drivers/video/omap2/dss/dss.h
浏览文件 @
348be69d
...
...
@@ -365,16 +365,6 @@ void dpi_uninit_platform_driver(void) __exit;
int
dispc_init_platform_driver
(
void
)
__init
;
void
dispc_uninit_platform_driver
(
void
)
__exit
;
void
dispc_dump_clocks
(
struct
seq_file
*
s
);
u32
dispc_read_irqstatus
(
void
);
void
dispc_clear_irqstatus
(
u32
mask
);
u32
dispc_read_irqenable
(
void
);
void
dispc_write_irqenable
(
u32
mask
);
int
dispc_request_irq
(
irq_handler_t
handler
,
void
*
dev_id
);
void
dispc_free_irq
(
void
*
dev_id
);
int
dispc_runtime_get
(
void
);
void
dispc_runtime_put
(
void
);
void
dispc_enable_sidle
(
void
);
void
dispc_disable_sidle
(
void
);
...
...
@@ -398,29 +388,7 @@ void dispc_ovl_set_fifo_threshold(enum omap_plane plane, u32 low, u32 high);
void
dispc_ovl_compute_fifo_thresholds
(
enum
omap_plane
plane
,
u32
*
fifo_low
,
u32
*
fifo_high
,
bool
use_fifomerge
,
bool
manual_update
);
int
dispc_ovl_setup
(
enum
omap_plane
plane
,
const
struct
omap_overlay_info
*
oi
,
bool
replication
,
const
struct
omap_video_timings
*
mgr_timings
,
bool
mem_to_mem
);
int
dispc_ovl_enable
(
enum
omap_plane
plane
,
bool
enable
);
bool
dispc_ovl_enabled
(
enum
omap_plane
plane
);
void
dispc_ovl_set_channel_out
(
enum
omap_plane
plane
,
enum
omap_channel
channel
);
int
dispc_ovl_check
(
enum
omap_plane
plane
,
enum
omap_channel
channel
,
const
struct
omap_overlay_info
*
oi
,
const
struct
omap_video_timings
*
timings
,
int
*
x_predecim
,
int
*
y_predecim
);
u32
dispc_mgr_get_vsync_irq
(
enum
omap_channel
channel
);
u32
dispc_mgr_get_framedone_irq
(
enum
omap_channel
channel
);
u32
dispc_mgr_get_sync_lost_irq
(
enum
omap_channel
channel
);
bool
dispc_mgr_go_busy
(
enum
omap_channel
channel
);
void
dispc_mgr_go
(
enum
omap_channel
channel
);
void
dispc_mgr_enable
(
enum
omap_channel
channel
,
bool
enable
);
bool
dispc_mgr_is_enabled
(
enum
omap_channel
channel
);
void
dispc_mgr_set_lcd_config
(
enum
omap_channel
channel
,
const
struct
dss_lcd_mgr_config
*
config
);
void
dispc_mgr_set_timings
(
enum
omap_channel
channel
,
const
struct
omap_video_timings
*
timings
);
unsigned
long
dispc_mgr_lclk_rate
(
enum
omap_channel
channel
);
unsigned
long
dispc_mgr_pclk_rate
(
enum
omap_channel
channel
);
unsigned
long
dispc_core_clk_rate
(
void
);
...
...
@@ -428,8 +396,6 @@ void dispc_mgr_set_clock_div(enum omap_channel channel,
const
struct
dispc_clock_info
*
cinfo
);
int
dispc_mgr_get_clock_div
(
enum
omap_channel
channel
,
struct
dispc_clock_info
*
cinfo
);
void
dispc_mgr_setup
(
enum
omap_channel
channel
,
const
struct
omap_overlay_manager_info
*
info
);
u32
dispc_wb_get_framedone_irq
(
void
);
bool
dispc_wb_go_busy
(
void
);
...
...
include/video/omapdss.h
浏览文件 @
348be69d
...
...
@@ -21,6 +21,7 @@
#include <linux/list.h>
#include <linux/kobject.h>
#include <linux/device.h>
#include <linux/interrupt.h>
#define DISPC_IRQ_FRAMEDONE (1 << 0)
#define DISPC_IRQ_VSYNC (1 << 1)
...
...
@@ -784,6 +785,44 @@ typedef void (*omap_dispc_isr_t) (void *arg, u32 mask);
int
omap_dispc_register_isr
(
omap_dispc_isr_t
isr
,
void
*
arg
,
u32
mask
);
int
omap_dispc_unregister_isr
(
omap_dispc_isr_t
isr
,
void
*
arg
,
u32
mask
);
u32
dispc_read_irqstatus
(
void
);
void
dispc_clear_irqstatus
(
u32
mask
);
u32
dispc_read_irqenable
(
void
);
void
dispc_write_irqenable
(
u32
mask
);
int
dispc_request_irq
(
irq_handler_t
handler
,
void
*
dev_id
);
void
dispc_free_irq
(
void
*
dev_id
);
int
dispc_runtime_get
(
void
);
void
dispc_runtime_put
(
void
);
void
dispc_mgr_enable
(
enum
omap_channel
channel
,
bool
enable
);
bool
dispc_mgr_is_enabled
(
enum
omap_channel
channel
);
u32
dispc_mgr_get_vsync_irq
(
enum
omap_channel
channel
);
u32
dispc_mgr_get_framedone_irq
(
enum
omap_channel
channel
);
u32
dispc_mgr_get_sync_lost_irq
(
enum
omap_channel
channel
);
bool
dispc_mgr_go_busy
(
enum
omap_channel
channel
);
void
dispc_mgr_go
(
enum
omap_channel
channel
);
void
dispc_mgr_set_lcd_config
(
enum
omap_channel
channel
,
const
struct
dss_lcd_mgr_config
*
config
);
void
dispc_mgr_set_timings
(
enum
omap_channel
channel
,
const
struct
omap_video_timings
*
timings
);
void
dispc_mgr_setup
(
enum
omap_channel
channel
,
const
struct
omap_overlay_manager_info
*
info
);
int
dispc_ovl_check
(
enum
omap_plane
plane
,
enum
omap_channel
channel
,
const
struct
omap_overlay_info
*
oi
,
const
struct
omap_video_timings
*
timings
,
int
*
x_predecim
,
int
*
y_predecim
);
int
dispc_ovl_enable
(
enum
omap_plane
plane
,
bool
enable
);
bool
dispc_ovl_enabled
(
enum
omap_plane
plane
);
void
dispc_ovl_set_channel_out
(
enum
omap_plane
plane
,
enum
omap_channel
channel
);
int
dispc_ovl_setup
(
enum
omap_plane
plane
,
const
struct
omap_overlay_info
*
oi
,
bool
replication
,
const
struct
omap_video_timings
*
mgr_timings
,
bool
mem_to_mem
);
#define to_dss_driver(x) container_of((x), struct omap_dss_driver, driver)
#define to_dss_device(x) container_of((x), struct omap_dss_device, dev)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录