Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
d7e0951f
cloud-kernel
项目概览
openanolis
/
cloud-kernel
1 年多 前同步成功
通知
160
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看板
提交
d7e0951f
编写于
11月 11, 2010
作者:
U
Uwe Kleine-König
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
ARM: mx3: move registration of gpios to plat-mxc/gpio.c
Signed-off-by:
N
Uwe Kleine-König
<
u.kleine-koenig@pengutronix.de
>
上级
972cc482
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
34 addition
and
39 deletion
+34
-39
arch/arm/mach-mx3/devices.c
arch/arm/mach-mx3/devices.c
+0
-28
arch/arm/mach-mx3/mm.c
arch/arm/mach-mx3/mm.c
+12
-11
arch/arm/plat-mxc/gpio.c
arch/arm/plat-mxc/gpio.c
+22
-0
未找到文件。
arch/arm/mach-mx3/devices.c
浏览文件 @
d7e0951f
...
...
@@ -29,31 +29,6 @@
#include "devices.h"
/* GPIO port description */
static
struct
mxc_gpio_port
imx_gpio_ports
[]
=
{
{
.
chip
.
label
=
"gpio-0"
,
.
base
=
MX31_IO_ADDRESS
(
MX31_GPIO1_BASE_ADDR
),
.
irq
=
MX3x_INT_GPIO1
,
.
virtual_irq_start
=
MXC_GPIO_IRQ_START
,
},
{
.
chip
.
label
=
"gpio-1"
,
.
base
=
MX31_IO_ADDRESS
(
MX31_GPIO2_BASE_ADDR
),
.
irq
=
MX3x_INT_GPIO2
,
.
virtual_irq_start
=
MXC_GPIO_IRQ_START
+
32
,
},
{
.
chip
.
label
=
"gpio-2"
,
.
base
=
MX31_IO_ADDRESS
(
MX31_GPIO3_BASE_ADDR
),
.
irq
=
MX3x_INT_GPIO3
,
.
virtual_irq_start
=
MXC_GPIO_IRQ_START
+
64
,
}
};
int
__init
imx3x_register_gpios
(
void
)
{
return
mxc_gpio_init
(
imx_gpio_ports
,
ARRAY_SIZE
(
imx_gpio_ports
));
}
#ifdef CONFIG_ARCH_MX31
static
struct
resource
mxcsdhc0_resources
[]
=
{
{
...
...
@@ -330,9 +305,6 @@ static int __init mx3_devices_init(void)
#endif
#if defined(CONFIG_ARCH_MX35)
if
(
cpu_is_mx35
())
{
imx_gpio_ports
[
0
].
base
=
MX35_IO_ADDRESS
(
MX35_GPIO1_BASE_ADDR
),
imx_gpio_ports
[
1
].
base
=
MX35_IO_ADDRESS
(
MX35_GPIO2_BASE_ADDR
),
imx_gpio_ports
[
2
].
base
=
MX35_IO_ADDRESS
(
MX35_GPIO3_BASE_ADDR
),
otg_resources
[
0
].
start
=
MX35_OTG_BASE_ADDR
;
otg_resources
[
0
].
end
=
MX35_OTG_BASE_ADDR
+
0x1ff
;
otg_resources
[
1
].
start
=
MX35_INT_USBOTG
;
...
...
arch/arm/mach-mx3/mm.c
浏览文件 @
d7e0951f
...
...
@@ -57,7 +57,14 @@ void __init mx31_map_io(void)
iotable_init
(
mx31_io_desc
,
ARRAY_SIZE
(
mx31_io_desc
));
}
#endif
int
imx31_register_gpios
(
void
);
void
__init
mx31_init_irq
(
void
)
{
mxc_init_irq
(
MX31_IO_ADDRESS
(
MX31_AVIC_BASE_ADDR
));
imx31_register_gpios
();
}
#endif
/* ifdef CONFIG_ARCH_MX31 */
#ifdef CONFIG_ARCH_MX35
static
struct
map_desc
mx35_io_desc
[]
__initdata
=
{
...
...
@@ -76,20 +83,14 @@ void __init mx35_map_io(void)
iotable_init
(
mx35_io_desc
,
ARRAY_SIZE
(
mx35_io_desc
));
}
#endif
int
imx3x_register_gpios
(
void
);
void
__init
mx31_init_irq
(
void
)
{
mxc_init_irq
(
MX31_IO_ADDRESS
(
MX3x_AVIC_BASE_ADDR
));
imx3x_register_gpios
();
}
int
imx35_register_gpios
(
void
);
void
__init
mx35_init_irq
(
void
)
{
mx31_init_irq
();
mxc_init_irq
(
MX35_IO_ADDRESS
(
MX35_AVIC_BASE_ADDR
));
imx35_register_gpios
();
}
#endif
/* ifdef CONFIG_ARCH_MX35 */
#ifdef CONFIG_CACHE_L2X0
static
int
mxc_init_l2x0
(
void
)
...
...
arch/arm/plat-mxc/gpio.c
浏览文件 @
d7e0951f
...
...
@@ -420,3 +420,25 @@ static struct mxc_gpio_port imx27_gpio_ports[] = {
DEFINE_REGISTER_FUNCTION
(
imx27
)
#endif
/* if defined(CONFIG_SOC_IMX27) */
#if defined(CONFIG_ARCH_MX31)
static
struct
mxc_gpio_port
imx31_gpio_ports
[]
=
{
DEFINE_IMX_GPIO_PORT_IRQ
(
MX31
,
0
,
1
,
MX31_INT_GPIO1
),
DEFINE_IMX_GPIO_PORT_IRQ
(
MX31
,
1
,
2
,
MX31_INT_GPIO2
),
DEFINE_IMX_GPIO_PORT_IRQ
(
MX31
,
2
,
3
,
MX31_INT_GPIO3
),
};
DEFINE_REGISTER_FUNCTION
(
imx31
)
#endif
/* if defined(CONFIG_ARCH_MX31) */
#if defined(CONFIG_ARCH_MX35)
static
struct
mxc_gpio_port
imx35_gpio_ports
[]
=
{
DEFINE_IMX_GPIO_PORT_IRQ
(
MX35
,
0
,
1
,
MX35_INT_GPIO1
),
DEFINE_IMX_GPIO_PORT_IRQ
(
MX35
,
1
,
2
,
MX35_INT_GPIO2
),
DEFINE_IMX_GPIO_PORT_IRQ
(
MX35
,
2
,
3
,
MX35_INT_GPIO3
),
};
DEFINE_REGISTER_FUNCTION
(
imx35
)
#endif
/* if defined(CONFIG_ARCH_MX35) */
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录