Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
raspberrypi-kernel
提交
2526ea6e
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看板
提交
2526ea6e
编写于
8月 07, 2009
作者:
M
Mauro Carvalho Chehab
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
V4L/DVB (12401): m9v011: add vflip/hflip controls to control mirror/upside down
Signed-off-by:
N
Mauro Carvalho Chehab
<
mchehab@redhat.com
>
上级
d96ecda6
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
51 addition
and
2 deletion
+51
-2
drivers/media/video/mt9v011.c
drivers/media/video/mt9v011.c
+51
-2
未找到文件。
drivers/media/video/mt9v011.c
浏览文件 @
2526ea6e
...
@@ -52,13 +52,34 @@ static struct v4l2_queryctrl mt9v011_qctrl[] = {
...
@@ -52,13 +52,34 @@ static struct v4l2_queryctrl mt9v011_qctrl[] = {
.
step
=
1
,
.
step
=
1
,
.
default_value
=
0
,
.
default_value
=
0
,
.
flags
=
0
,
.
flags
=
0
,
},
},
{
.
id
=
V4L2_CID_HFLIP
,
.
type
=
V4L2_CTRL_TYPE_BOOLEAN
,
.
name
=
"Mirror"
,
.
minimum
=
0
,
.
maximum
=
1
,
.
step
=
1
,
.
default_value
=
0
,
.
flags
=
0
,
},
{
.
id
=
V4L2_CID_VFLIP
,
.
type
=
V4L2_CTRL_TYPE_BOOLEAN
,
.
name
=
"Vflip"
,
.
minimum
=
0
,
.
maximum
=
1
,
.
step
=
1
,
.
default_value
=
0
,
.
flags
=
0
,
},
{
}
};
};
struct
mt9v011
{
struct
mt9v011
{
struct
v4l2_subdev
sd
;
struct
v4l2_subdev
sd
;
unsigned
width
,
height
;
unsigned
width
,
height
;
unsigned
xtal
;
unsigned
xtal
;
unsigned
hflip
:
1
;
unsigned
vflip
:
1
;
u16
global_gain
,
red_bal
,
blue_bal
;
u16
global_gain
,
red_bal
,
blue_bal
;
};
};
...
@@ -131,7 +152,6 @@ static const struct i2c_reg_value mt9v011_init_default[] = {
...
@@ -131,7 +152,6 @@ static const struct i2c_reg_value mt9v011_init_default[] = {
{
R0A_MT9V011_CLK_SPEED
,
0x0000
},
{
R0A_MT9V011_CLK_SPEED
,
0x0000
},
{
R1E_MT9V011_DIGITAL_ZOOM
,
0x0000
},
{
R1E_MT9V011_DIGITAL_ZOOM
,
0x0000
},
{
R20_MT9V011_READ_MODE
,
0x1000
},
{
R07_MT9V011_OUT_CTRL
,
0x0002
},
/* chip enable */
{
R07_MT9V011_OUT_CTRL
,
0x0002
},
/* chip enable */
};
};
...
@@ -255,6 +275,20 @@ static void set_res(struct v4l2_subdev *sd)
...
@@ -255,6 +275,20 @@ static void set_res(struct v4l2_subdev *sd)
calc_fps
(
sd
,
NULL
,
NULL
);
calc_fps
(
sd
,
NULL
,
NULL
);
};
};
static
void
set_read_mode
(
struct
v4l2_subdev
*
sd
)
{
struct
mt9v011
*
core
=
to_mt9v011
(
sd
);
unsigned
mode
=
0x1000
;
if
(
core
->
hflip
)
mode
|=
0x4000
;
if
(
core
->
vflip
)
mode
|=
0x8000
;
mt9v011_write
(
sd
,
R20_MT9V011_READ_MODE
,
mode
);
}
static
int
mt9v011_reset
(
struct
v4l2_subdev
*
sd
,
u32
val
)
static
int
mt9v011_reset
(
struct
v4l2_subdev
*
sd
,
u32
val
)
{
{
int
i
;
int
i
;
...
@@ -265,6 +299,7 @@ static int mt9v011_reset(struct v4l2_subdev *sd, u32 val)
...
@@ -265,6 +299,7 @@ static int mt9v011_reset(struct v4l2_subdev *sd, u32 val)
set_balance
(
sd
);
set_balance
(
sd
);
set_res
(
sd
);
set_res
(
sd
);
set_read_mode
(
sd
);
return
0
;
return
0
;
};
};
...
@@ -285,6 +320,12 @@ static int mt9v011_g_ctrl(struct v4l2_subdev *sd, struct v4l2_control *ctrl)
...
@@ -285,6 +320,12 @@ static int mt9v011_g_ctrl(struct v4l2_subdev *sd, struct v4l2_control *ctrl)
case
V4L2_CID_BLUE_BALANCE
:
case
V4L2_CID_BLUE_BALANCE
:
ctrl
->
value
=
core
->
blue_bal
;
ctrl
->
value
=
core
->
blue_bal
;
return
0
;
return
0
;
case
V4L2_CID_HFLIP
:
ctrl
->
value
=
core
->
hflip
?
1
:
0
;
return
0
;
case
V4L2_CID_VFLIP
:
ctrl
->
value
=
core
->
vflip
?
1
:
0
;
return
0
;
}
}
return
-
EINVAL
;
return
-
EINVAL
;
}
}
...
@@ -333,6 +374,14 @@ static int mt9v011_s_ctrl(struct v4l2_subdev *sd, struct v4l2_control *ctrl)
...
@@ -333,6 +374,14 @@ static int mt9v011_s_ctrl(struct v4l2_subdev *sd, struct v4l2_control *ctrl)
case
V4L2_CID_BLUE_BALANCE
:
case
V4L2_CID_BLUE_BALANCE
:
core
->
blue_bal
=
ctrl
->
value
;
core
->
blue_bal
=
ctrl
->
value
;
break
;
break
;
case
V4L2_CID_HFLIP
:
core
->
hflip
=
ctrl
->
value
;
set_read_mode
(
sd
);
return
0
;
case
V4L2_CID_VFLIP
:
core
->
vflip
=
ctrl
->
value
;
set_read_mode
(
sd
);
return
0
;
default:
default:
return
-
EINVAL
;
return
-
EINVAL
;
}
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录