forked from Minki/linux
ARM: S3C24XX: Use common macro to define resources on mach-bast.c
Cc: Ben Dooks <ben-linux@fluff.org> Signed-off-by: Tushar Behera <tushar.behera@linaro.org> Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
This commit is contained in:
parent
d990e3986d
commit
52df44d172
@ -310,22 +310,10 @@ static struct s3c2410_platform_nand __initdata bast_nand_info = {
|
|||||||
/* DM9000 */
|
/* DM9000 */
|
||||||
|
|
||||||
static struct resource bast_dm9k_resource[] = {
|
static struct resource bast_dm9k_resource[] = {
|
||||||
[0] = {
|
[0] = DEFINE_RES_MEM(S3C2410_CS5 + BAST_PA_DM9000, 4),
|
||||||
.start = S3C2410_CS5 + BAST_PA_DM9000,
|
[1] = DEFINE_RES_MEM(S3C2410_CS5 + BAST_PA_DM9000 + 0x40, 0x40),
|
||||||
.end = S3C2410_CS5 + BAST_PA_DM9000 + 3,
|
[2] = DEFINE_RES_NAMED(IRQ_DM9000 , 1, NULL, IORESOURCE_IRQ \
|
||||||
.flags = IORESOURCE_MEM,
|
| IORESOURCE_IRQ_HIGHLEVEL),
|
||||||
},
|
|
||||||
[1] = {
|
|
||||||
.start = S3C2410_CS5 + BAST_PA_DM9000 + 0x40,
|
|
||||||
.end = S3C2410_CS5 + BAST_PA_DM9000 + 0x40 + 0x3f,
|
|
||||||
.flags = IORESOURCE_MEM,
|
|
||||||
},
|
|
||||||
[2] = {
|
|
||||||
.start = IRQ_DM9000,
|
|
||||||
.end = IRQ_DM9000,
|
|
||||||
.flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHLEVEL,
|
|
||||||
}
|
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
/* for the moment we limit ourselves to 16bit IO until some
|
/* for the moment we limit ourselves to 16bit IO until some
|
||||||
@ -400,21 +388,9 @@ static struct ax_plat_data bast_asix_platdata = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
static struct resource bast_asix_resource[] = {
|
static struct resource bast_asix_resource[] = {
|
||||||
[0] = {
|
[0] = DEFINE_RES_MEM(S3C2410_CS5 + BAST_PA_ASIXNET, 0x18 * 0x20),
|
||||||
.start = S3C2410_CS5 + BAST_PA_ASIXNET,
|
[1] = DEFINE_RES_MEM(S3C2410_CS5 + BAST_PA_ASIXNET + (0x1f * 0x20), 1),
|
||||||
.end = S3C2410_CS5 + BAST_PA_ASIXNET + (0x18 * 0x20) - 1,
|
[2] = DEFINE_RES_IRQ(IRQ_ASIX),
|
||||||
.flags = IORESOURCE_MEM,
|
|
||||||
},
|
|
||||||
[1] = {
|
|
||||||
.start = S3C2410_CS5 + BAST_PA_ASIXNET + (0x1f * 0x20),
|
|
||||||
.end = S3C2410_CS5 + BAST_PA_ASIXNET + (0x1f * 0x20),
|
|
||||||
.flags = IORESOURCE_MEM,
|
|
||||||
},
|
|
||||||
[2] = {
|
|
||||||
.start = IRQ_ASIX,
|
|
||||||
.end = IRQ_ASIX,
|
|
||||||
.flags = IORESOURCE_IRQ
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct platform_device bast_device_asix = {
|
static struct platform_device bast_device_asix = {
|
||||||
@ -430,11 +406,8 @@ static struct platform_device bast_device_asix = {
|
|||||||
/* Asix AX88796 10/100 ethernet controller parallel port */
|
/* Asix AX88796 10/100 ethernet controller parallel port */
|
||||||
|
|
||||||
static struct resource bast_asixpp_resource[] = {
|
static struct resource bast_asixpp_resource[] = {
|
||||||
[0] = {
|
[0] = DEFINE_RES_MEM(S3C2410_CS5 + BAST_PA_ASIXNET + (0x18 * 0x20), \
|
||||||
.start = S3C2410_CS5 + BAST_PA_ASIXNET + (0x18 * 0x20),
|
0x30 * 0x20),
|
||||||
.end = S3C2410_CS5 + BAST_PA_ASIXNET + (0x1b * 0x20) - 1,
|
|
||||||
.flags = IORESOURCE_MEM,
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct platform_device bast_device_axpp = {
|
static struct platform_device bast_device_axpp = {
|
||||||
|
Loading…
Reference in New Issue
Block a user