Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
9c196f0f
cloud-kernel
项目概览
openanolis
/
cloud-kernel
1 年多 前同步成功
通知
161
Star
36
Fork
7
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
10
列表
看板
标记
里程碑
合并请求
2
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
cloud-kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
10
Issue
10
列表
看板
标记
里程碑
合并请求
2
合并请求
2
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
9c196f0f
编写于
10月 06, 2009
作者:
R
Russell King
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
ARM: iPAQ: convert H3100 IrDA to use generic gpio support
Signed-off-by:
N
Russell King
<
rmk+kernel@arm.linux.org.uk
>
上级
0831e3e4
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
17 addition
and
3 deletion
+17
-3
arch/arm/mach-sa1100/h3600.c
arch/arm/mach-sa1100/h3600.c
+8
-3
arch/arm/mach-sa1100/include/mach/h3600_gpio.h
arch/arm/mach-sa1100/include/mach/h3600_gpio.h
+9
-0
未找到文件。
arch/arm/mach-sa1100/h3600.c
浏览文件 @
9c196f0f
...
...
@@ -347,14 +347,13 @@ static void __init h3100_map_io(void)
*/
static
int
h3100_irda_set_power
(
struct
device
*
dev
,
unsigned
int
state
)
{
assign_h3100_egpio
(
IPAQ_EGPIO_IR_ON
,
state
);
gpio_set_value
(
H3100_GPIO_IR_ON
,
state
);
return
0
;
}
static
void
h3100_irda_set_speed
(
struct
device
*
dev
,
unsigned
int
speed
)
{
assign_h3100_egpio
(
IPAQ_E
GPIO_IR_FSEL
,
!
(
speed
<
4000000
));
gpio_set_value
(
H3100_
GPIO_IR_FSEL
,
!
(
speed
<
4000000
));
}
static
struct
irda_platform_data
h3100_irda_data
=
{
...
...
@@ -362,8 +361,14 @@ static struct irda_platform_data h3100_irda_data = {
.
set_speed
=
h3100_irda_set_speed
,
};
static
struct
gpio_default_state
h3100_default_gpio
[]
=
{
{
H3100_GPIO_IR_ON
,
GPIO_MODE_OUT0
,
"IrDA power"
},
{
H3100_GPIO_IR_FSEL
,
GPIO_MODE_OUT0
,
"IrDA fsel"
},
};
static
void
h3100_mach_init
(
void
)
{
h3xxx_init_gpio
(
h3100_default_gpio
,
ARRAY_SIZE
(
h3100_default_gpio
));
h3xxx_mach_init
();
sa11x0_register_irda
(
&
h3100_irda_data
);
}
...
...
arch/arm/mach-sa1100/include/mach/h3600_gpio.h
浏览文件 @
9c196f0f
...
...
@@ -39,6 +39,15 @@
#define GPIO_H3100_IR_ON GPIO_GPIO (8)
#define GPIO_H3100_IR_FSEL GPIO_GPIO (9)
/* gpiolib versions of the above */
#define H3100_GPIO_BT_ON 2
#define H3100_GPIO_QMUTE 4
#define H3100_GPIO_LCD_3V_ON 5
#define H3100_GPIO_AUD_ON 6
#define H3100_GPIO_AUD_PWR_ON 7
#define H3100_GPIO_IR_ON 8
#define H3100_GPIO_IR_FSEL 9
/* for H3600, audio sample rate clock generator */
#define GPIO_H3600_CLK_SET0 GPIO_GPIO (12)
#define GPIO_H3600_CLK_SET1 GPIO_GPIO (13)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录