aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-imx
diff options
context:
space:
mode:
Diffstat (limited to 'arch/arm/mach-imx')
-rw-r--r--arch/arm/mach-imx/Kconfig3
-rw-r--r--arch/arm/mach-imx/devices-imx21.h4
-rw-r--r--arch/arm/mach-imx/devices-imx27.h4
-rw-r--r--arch/arm/mach-imx/devices.c16
-rw-r--r--arch/arm/mach-imx/devices.h1
-rw-r--r--arch/arm/mach-imx/mach-cpuimx27.c2
-rw-r--r--arch/arm/mach-imx/mach-pca100.c6
-rw-r--r--arch/arm/mach-imx/mach-pcm038.c2
8 files changed, 14 insertions, 24 deletions
diff --git a/arch/arm/mach-imx/Kconfig b/arch/arm/mach-imx/Kconfig
index edf018211002..6b1662c55a5d 100644
--- a/arch/arm/mach-imx/Kconfig
+++ b/arch/arm/mach-imx/Kconfig
@@ -95,6 +95,7 @@ config MACH_MX27ADS
95 95
96config MACH_PCM038 96config MACH_PCM038
97 bool "Phytec phyCORE-i.MX27 CPU module (pcm038)" 97 bool "Phytec phyCORE-i.MX27 CPU module (pcm038)"
98 select IMX_HAVE_PLATFORM_IMX2_WDT
98 select IMX_HAVE_PLATFORM_IMX_I2C 99 select IMX_HAVE_PLATFORM_IMX_I2C
99 select IMX_HAVE_PLATFORM_IMX_UART 100 select IMX_HAVE_PLATFORM_IMX_UART
100 select IMX_HAVE_PLATFORM_MXC_NAND 101 select IMX_HAVE_PLATFORM_MXC_NAND
@@ -121,6 +122,7 @@ endchoice
121 122
122config MACH_CPUIMX27 123config MACH_CPUIMX27
123 bool "Eukrea CPUIMX27 module" 124 bool "Eukrea CPUIMX27 module"
125 select IMX_HAVE_PLATFORM_IMX2_WDT
124 select IMX_HAVE_PLATFORM_IMX_I2C 126 select IMX_HAVE_PLATFORM_IMX_I2C
125 select IMX_HAVE_PLATFORM_IMX_UART 127 select IMX_HAVE_PLATFORM_IMX_UART
126 select IMX_HAVE_PLATFORM_MXC_NAND 128 select IMX_HAVE_PLATFORM_MXC_NAND
@@ -185,6 +187,7 @@ config MACH_IMX27LITE
185 187
186config MACH_PCA100 188config MACH_PCA100
187 bool "Phytec phyCARD-s (pca100)" 189 bool "Phytec phyCARD-s (pca100)"
190 select IMX_HAVE_PLATFORM_IMX2_WDT
188 select IMX_HAVE_PLATFORM_IMX_I2C 191 select IMX_HAVE_PLATFORM_IMX_I2C
189 select IMX_HAVE_PLATFORM_IMX_SSI 192 select IMX_HAVE_PLATFORM_IMX_SSI
190 select IMX_HAVE_PLATFORM_IMX_UART 193 select IMX_HAVE_PLATFORM_IMX_UART
diff --git a/arch/arm/mach-imx/devices-imx21.h b/arch/arm/mach-imx/devices-imx21.h
index 61b0aa7fce98..738dbba6032e 100644
--- a/arch/arm/mach-imx/devices-imx21.h
+++ b/arch/arm/mach-imx/devices-imx21.h
@@ -9,6 +9,10 @@
9#include <mach/mx21.h> 9#include <mach/mx21.h>
10#include <mach/devices-common.h> 10#include <mach/devices-common.h>
11 11
12extern const struct imx_imx2_wdt_data imx21_imx2_wdt_data __initconst;
13#define imx21_add_imx2_wdt(pdata) \
14 imx_add_imx2_wdt(&imx21_imx2_wdt_data)
15
12extern const struct imx_imx_i2c_data imx21_imx_i2c_data __initconst; 16extern const struct imx_imx_i2c_data imx21_imx_i2c_data __initconst;
13#define imx21_add_imx_i2c(pdata) \ 17#define imx21_add_imx_i2c(pdata) \
14 imx_add_imx_i2c(&imx21_imx_i2c_data, pdata) 18 imx_add_imx_i2c(&imx21_imx_i2c_data, pdata)
diff --git a/arch/arm/mach-imx/devices-imx27.h b/arch/arm/mach-imx/devices-imx27.h
index 84b3405e982d..b2d4c5136354 100644
--- a/arch/arm/mach-imx/devices-imx27.h
+++ b/arch/arm/mach-imx/devices-imx27.h
@@ -13,6 +13,10 @@ extern const struct imx_fec_data imx27_fec_data __initconst;
13#define imx27_add_fec(pdata) \ 13#define imx27_add_fec(pdata) \
14 imx_add_fec(&imx27_fec_data, pdata) 14 imx_add_fec(&imx27_fec_data, pdata)
15 15
16extern const struct imx_imx2_wdt_data imx27_imx2_wdt_data __initconst;
17#define imx27_add_imx2_wdt(pdata) \
18 imx_add_imx2_wdt(&imx27_imx2_wdt_data)
19
16extern const struct imx_imx_i2c_data imx27_imx_i2c_data[] __initconst; 20extern const struct imx_imx_i2c_data imx27_imx_i2c_data[] __initconst;
17#define imx27_add_imx_i2c(id, pdata) \ 21#define imx27_add_imx_i2c(id, pdata) \
18 imx_add_imx_i2c(&imx27_imx_i2c_data[id], pdata) 22 imx_add_imx_i2c(&imx27_imx_i2c_data[id], pdata)
diff --git a/arch/arm/mach-imx/devices.c b/arch/arm/mach-imx/devices.c
index 0c5ade48d598..20655fb10a57 100644
--- a/arch/arm/mach-imx/devices.c
+++ b/arch/arm/mach-imx/devices.c
@@ -77,22 +77,6 @@ int __init imx1_register_gpios(void)
77#endif 77#endif
78 78
79#if defined(CONFIG_MACH_MX21) || defined(CONFIG_MACH_MX27) 79#if defined(CONFIG_MACH_MX21) || defined(CONFIG_MACH_MX27)
80/* Watchdog: i.MX1 has seperate driver, i.MX21 and i.MX27 are equal */
81static struct resource mxc_wdt_resources[] = {
82 {
83 .start = MX2x_WDOG_BASE_ADDR,
84 .end = MX2x_WDOG_BASE_ADDR + SZ_4K - 1,
85 .flags = IORESOURCE_MEM,
86 },
87};
88
89struct platform_device mxc_wdt = {
90 .name = "imx2-wdt",
91 .id = 0,
92 .num_resources = ARRAY_SIZE(mxc_wdt_resources),
93 .resource = mxc_wdt_resources,
94};
95
96/* 80/*
97 * lcdc: 81 * lcdc:
98 * - i.MX1: the basic controller 82 * - i.MX1: the basic controller
diff --git a/arch/arm/mach-imx/devices.h b/arch/arm/mach-imx/devices.h
index 3d020b91ef5d..f441b0256b93 100644
--- a/arch/arm/mach-imx/devices.h
+++ b/arch/arm/mach-imx/devices.h
@@ -1,5 +1,4 @@
1#if defined(CONFIG_MACH_MX21) || defined(CONFIG_MACH_MX27) 1#if defined(CONFIG_MACH_MX21) || defined(CONFIG_MACH_MX27)
2extern struct platform_device mxc_wdt;
3extern struct platform_device mxc_fb_device; 2extern struct platform_device mxc_fb_device;
4extern struct platform_device mxc_pwm_device; 3extern struct platform_device mxc_pwm_device;
5extern struct platform_device mxc_sdhc_device0; 4extern struct platform_device mxc_sdhc_device0;
diff --git a/arch/arm/mach-imx/mach-cpuimx27.c b/arch/arm/mach-imx/mach-cpuimx27.c
index 9baaf3df048e..5771d4e58879 100644
--- a/arch/arm/mach-imx/mach-cpuimx27.c
+++ b/arch/arm/mach-imx/mach-cpuimx27.c
@@ -157,7 +157,6 @@ cpuimx27_nand_board_info __initconst = {
157 157
158static struct platform_device *platform_devices[] __initdata = { 158static struct platform_device *platform_devices[] __initdata = {
159 &eukrea_cpuimx27_nor_mtd_device, 159 &eukrea_cpuimx27_nor_mtd_device,
160 &mxc_wdt,
161}; 160};
162 161
163static const struct imxi2c_platform_data cpuimx27_i2c1_data __initconst = { 162static const struct imxi2c_platform_data cpuimx27_i2c1_data __initconst = {
@@ -261,6 +260,7 @@ static void __init eukrea_cpuimx27_init(void)
261 260
262 imx27_add_fec(NULL); 261 imx27_add_fec(NULL);
263 platform_add_devices(platform_devices, ARRAY_SIZE(platform_devices)); 262 platform_add_devices(platform_devices, ARRAY_SIZE(platform_devices));
263 imx27_add_imx2_wdt(NULL);
264 imx27_add_mxc_w1(NULL); 264 imx27_add_mxc_w1(NULL);
265 265
266#if defined(CONFIG_MACH_EUKREA_CPUIMX27_USESDHC2) 266#if defined(CONFIG_MACH_EUKREA_CPUIMX27_USESDHC2)
diff --git a/arch/arm/mach-imx/mach-pca100.c b/arch/arm/mach-imx/mach-pca100.c
index 39c580bc9225..11da9c226e90 100644
--- a/arch/arm/mach-imx/mach-pca100.c
+++ b/arch/arm/mach-imx/mach-pca100.c
@@ -171,10 +171,6 @@ pca100_nand_board_info __initconst = {
171 .hw_ecc = 1, 171 .hw_ecc = 1,
172}; 172};
173 173
174static struct platform_device *platform_devices[] __initdata = {
175 &mxc_wdt,
176};
177
178static const struct imxi2c_platform_data pca100_i2c1_data __initconst = { 174static const struct imxi2c_platform_data pca100_i2c1_data __initconst = {
179 .bitrate = 100000, 175 .bitrate = 100000,
180}; 176};
@@ -432,7 +428,7 @@ static void __init pca100_init(void)
432 mxc_register_device(&mxc_fb_device, &pca100_fb_data); 428 mxc_register_device(&mxc_fb_device, &pca100_fb_data);
433 429
434 imx27_add_fec(NULL); 430 imx27_add_fec(NULL);
435 platform_add_devices(platform_devices, ARRAY_SIZE(platform_devices)); 431 imx27_add_imx2_wdt(NULL);
436 imx27_add_mxc_w1(NULL); 432 imx27_add_mxc_w1(NULL);
437} 433}
438 434
diff --git a/arch/arm/mach-imx/mach-pcm038.c b/arch/arm/mach-imx/mach-pcm038.c
index 2cfc4b96c503..3c9f2df89269 100644
--- a/arch/arm/mach-imx/mach-pcm038.c
+++ b/arch/arm/mach-imx/mach-pcm038.c
@@ -173,7 +173,6 @@ pcm038_nand_board_info __initconst = {
173static struct platform_device *platform_devices[] __initdata = { 173static struct platform_device *platform_devices[] __initdata = {
174 &pcm038_nor_mtd_device, 174 &pcm038_nor_mtd_device,
175 &pcm038_sram_mtd_device, 175 &pcm038_sram_mtd_device,
176 &mxc_wdt,
177}; 176};
178 177
179/* On pcm038 there's a sram attached to CS1, we enable the chipselect here and 178/* On pcm038 there's a sram attached to CS1, we enable the chipselect here and
@@ -325,6 +324,7 @@ static void __init pcm038_init(void)
325 324
326 imx27_add_fec(NULL); 325 imx27_add_fec(NULL);
327 platform_add_devices(platform_devices, ARRAY_SIZE(platform_devices)); 326 platform_add_devices(platform_devices, ARRAY_SIZE(platform_devices));
327 imx27_add_imx2_wdt(NULL);
328 imx27_add_mxc_w1(NULL); 328 imx27_add_mxc_w1(NULL);
329 329
330#ifdef CONFIG_MACH_PCM970_BASEBOARD 330#ifdef CONFIG_MACH_PCM970_BASEBOARD