Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
00871505
cloud-kernel
项目概览
openanolis
/
cloud-kernel
接近 2 年 前同步成功
通知
170
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看板
提交
00871505
编写于
11月 11, 2010
作者:
U
Uwe Kleine-König
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
ARM: mx25: dynamically allocate imx2-wdt devices
Signed-off-by:
N
Uwe Kleine-König
<
u.kleine-koenig@pengutronix.de
>
上级
194ee8e8
变更
7
隐藏空白更改
内联
并排
Showing
7 changed file
with
17 addition
and
21 deletion
+17
-21
arch/arm/mach-mx25/Kconfig
arch/arm/mach-mx25/Kconfig
+1
-0
arch/arm/mach-mx25/devices-imx25.h
arch/arm/mach-mx25/devices-imx25.h
+4
-0
arch/arm/mach-mx25/devices.c
arch/arm/mach-mx25/devices.c
+0
-15
arch/arm/mach-mx25/devices.h
arch/arm/mach-mx25/devices.h
+0
-1
arch/arm/mach-mx25/mach-mx25_3ds.c
arch/arm/mach-mx25/mach-mx25_3ds.c
+1
-1
arch/arm/plat-mxc/devices/platform-imx2-wdt.c
arch/arm/plat-mxc/devices/platform-imx2-wdt.c
+10
-4
arch/arm/plat-mxc/include/mach/devices-common.h
arch/arm/plat-mxc/include/mach/devices-common.h
+1
-0
未找到文件。
arch/arm/mach-mx25/Kconfig
浏览文件 @
00871505
...
@@ -5,6 +5,7 @@ comment "MX25 platforms:"
...
@@ -5,6 +5,7 @@ comment "MX25 platforms:"
config MACH_MX25_3DS
config MACH_MX25_3DS
bool "Support MX25PDK (3DS) Platform"
bool "Support MX25PDK (3DS) Platform"
select IMX_HAVE_PLATFORM_ESDHC
select IMX_HAVE_PLATFORM_ESDHC
select IMX_HAVE_PLATFORM_IMX2_WDT
select IMX_HAVE_PLATFORM_IMXDI_RTC
select IMX_HAVE_PLATFORM_IMXDI_RTC
select IMX_HAVE_PLATFORM_IMX_FB
select IMX_HAVE_PLATFORM_IMX_FB
select IMX_HAVE_PLATFORM_IMX_KEYPAD
select IMX_HAVE_PLATFORM_IMX_KEYPAD
...
...
arch/arm/mach-mx25/devices-imx25.h
浏览文件 @
00871505
...
@@ -27,6 +27,10 @@ extern struct imx_imxdi_rtc_data imx25_imxdi_rtc_data __initconst;
...
@@ -27,6 +27,10 @@ extern struct imx_imxdi_rtc_data imx25_imxdi_rtc_data __initconst;
#define imx25_add_imxdi_rtc(pdata) \
#define imx25_add_imxdi_rtc(pdata) \
imx_add_imxdi_rtc(&imx25_imxdi_rtc_data)
imx_add_imxdi_rtc(&imx25_imxdi_rtc_data)
extern
const
struct
imx_imx2_wdt_data
imx25_imx2_wdt_data
__initconst
;
#define imx25_add_imx2_wdt(pdata) \
imx_add_imx2_wdt(&imx25_imx2_wdt_data)
extern
const
struct
imx_imx_fb_data
imx25_imx_fb_data
__initconst
;
extern
const
struct
imx_imx_fb_data
imx25_imx_fb_data
__initconst
;
#define imx25_add_imx_fb(pdata) \
#define imx25_add_imx_fb(pdata) \
imx_add_imx_fb(&imx25_imx_fb_data, pdata)
imx_add_imx_fb(&imx25_imx_fb_data, pdata)
...
...
arch/arm/mach-mx25/devices.c
浏览文件 @
00871505
...
@@ -22,21 +22,6 @@
...
@@ -22,21 +22,6 @@
#include <mach/mx25.h>
#include <mach/mx25.h>
#include <mach/irqs.h>
#include <mach/irqs.h>
static
struct
resource
mxc_wdt_resources
[]
=
{
{
.
start
=
MX25_WDOG_BASE_ADDR
,
.
end
=
MX25_WDOG_BASE_ADDR
+
SZ_16K
-
1
,
.
flags
=
IORESOURCE_MEM
,
},
};
struct
platform_device
mxc_wdt
=
{
.
name
=
"imx2-wdt"
,
.
id
=
0
,
.
num_resources
=
ARRAY_SIZE
(
mxc_wdt_resources
),
.
resource
=
mxc_wdt_resources
,
};
static
struct
resource
mx25_csi_resources
[]
=
{
static
struct
resource
mx25_csi_resources
[]
=
{
{
{
.
start
=
MX25_CSI_BASE_ADDR
,
.
start
=
MX25_CSI_BASE_ADDR
,
...
...
arch/arm/mach-mx25/devices.h
浏览文件 @
00871505
extern
struct
platform_device
mxc_wdt
;
extern
struct
platform_device
mx25_csi_device
;
extern
struct
platform_device
mx25_csi_device
;
arch/arm/mach-mx25/mach-mx25_3ds.c
浏览文件 @
00871505
...
@@ -195,7 +195,7 @@ static void __init mx25pdk_init(void)
...
@@ -195,7 +195,7 @@ static void __init mx25pdk_init(void)
imx25_add_mxc_nand
(
&
mx25pdk_nand_board_info
);
imx25_add_mxc_nand
(
&
mx25pdk_nand_board_info
);
imx25_add_imxdi_rtc
(
NULL
);
imx25_add_imxdi_rtc
(
NULL
);
imx25_add_imx_fb
(
&
mx25pdk_fb_pdata
);
imx25_add_imx_fb
(
&
mx25pdk_fb_pdata
);
mxc_register_device
(
&
mxc_wdt
,
NULL
);
imx25_add_imx2_wdt
(
NULL
);
mx25pdk_fec_reset
();
mx25pdk_fec_reset
();
imx25_add_fec
(
&
mx25_fec_pdata
);
imx25_add_fec
(
&
mx25_fec_pdata
);
...
...
arch/arm/plat-mxc/devices/platform-imx2-wdt.c
浏览文件 @
00871505
...
@@ -10,19 +10,25 @@
...
@@ -10,19 +10,25 @@
#include <mach/hardware.h>
#include <mach/hardware.h>
#include <mach/devices-common.h>
#include <mach/devices-common.h>
#define imx_imx2_wdt_data_entry_single(soc
)
\
#define imx_imx2_wdt_data_entry_single(soc
, _size)
\
{ \
{ \
.iobase = soc ## _WDOG_BASE_ADDR, \
.iobase = soc ## _WDOG_BASE_ADDR, \
.iosize = _size, \
}
}
#ifdef CONFIG_SOC_IMX21
#ifdef CONFIG_SOC_IMX21
const
struct
imx_imx2_wdt_data
imx21_imx2_wdt_data
__initconst
=
const
struct
imx_imx2_wdt_data
imx21_imx2_wdt_data
__initconst
=
imx_imx2_wdt_data_entry_single
(
MX21
);
imx_imx2_wdt_data_entry_single
(
MX21
,
SZ_4K
);
#endif
/* ifdef CONFIG_SOC_IMX21 */
#endif
/* ifdef CONFIG_SOC_IMX21 */
#ifdef CONFIG_ARCH_MX25
const
struct
imx_imx2_wdt_data
imx25_imx2_wdt_data
__initconst
=
imx_imx2_wdt_data_entry_single
(
MX25
,
SZ_16K
);
#endif
/* ifdef CONFIG_ARCH_MX25 */
#ifdef CONFIG_SOC_IMX27
#ifdef CONFIG_SOC_IMX27
const
struct
imx_imx2_wdt_data
imx27_imx2_wdt_data
__initconst
=
const
struct
imx_imx2_wdt_data
imx27_imx2_wdt_data
__initconst
=
imx_imx2_wdt_data_entry_single
(
MX27
);
imx_imx2_wdt_data_entry_single
(
MX27
,
SZ_4K
);
#endif
/* ifdef CONFIG_SOC_IMX27 */
#endif
/* ifdef CONFIG_SOC_IMX27 */
struct
platform_device
*
__init
imx_add_imx2_wdt
(
struct
platform_device
*
__init
imx_add_imx2_wdt
(
...
@@ -31,7 +37,7 @@ struct platform_device *__init imx_add_imx2_wdt(
...
@@ -31,7 +37,7 @@ struct platform_device *__init imx_add_imx2_wdt(
struct
resource
res
[]
=
{
struct
resource
res
[]
=
{
{
{
.
start
=
data
->
iobase
,
.
start
=
data
->
iobase
,
.
end
=
data
->
iobase
+
SZ_4K
-
1
,
.
end
=
data
->
iobase
+
data
->
iosize
-
1
,
.
flags
=
IORESOURCE_MEM
,
.
flags
=
IORESOURCE_MEM
,
},
},
};
};
...
...
arch/arm/plat-mxc/include/mach/devices-common.h
浏览文件 @
00871505
...
@@ -68,6 +68,7 @@ struct platform_device *__init imx_add_imx21_hcd(
...
@@ -68,6 +68,7 @@ struct platform_device *__init imx_add_imx21_hcd(
struct
imx_imx2_wdt_data
{
struct
imx_imx2_wdt_data
{
resource_size_t
iobase
;
resource_size_t
iobase
;
resource_size_t
iosize
;
};
};
struct
platform_device
*
__init
imx_add_imx2_wdt
(
struct
platform_device
*
__init
imx_add_imx2_wdt
(
const
struct
imx_imx2_wdt_data
*
data
);
const
struct
imx_imx2_wdt_data
*
data
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录