diff options
author | Ben Dooks <ben-linux@fluff.org> | 2008-10-31 12:14:28 -0400 |
---|---|---|
committer | Ben Dooks <ben-linux@fluff.org> | 2008-12-15 18:32:34 -0500 |
commit | 5b323c7beb1b10b137f9e21981050319d89d55dd (patch) | |
tree | ee45aef8d5dfed4becf06904729d8add0ac11c77 /arch/arm/plat-s3c/dev-hsmmc.c | |
parent | 8cdf47cb4bb10172732df0506d397aab4149e45e (diff) |
[ARM] S3C: Move HSMMC device definition to plat-s3ec
Move the definition for the hsmmc device to plat-s3c
to be shared between the s3c24xx and s3c64xx platforms.
Signed-off-by: Ben Dooks <ben-linux@fluff.org>
Diffstat (limited to 'arch/arm/plat-s3c/dev-hsmmc.c')
-rw-r--r-- | arch/arm/plat-s3c/dev-hsmmc.c | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/arch/arm/plat-s3c/dev-hsmmc.c b/arch/arm/plat-s3c/dev-hsmmc.c new file mode 100644 index 000000000000..5a5ef74ebde3 --- /dev/null +++ b/arch/arm/plat-s3c/dev-hsmmc.c | |||
@@ -0,0 +1,47 @@ | |||
1 | /* linux/arch/arm/plat-s3c/dev-hsmmc.c | ||
2 | * | ||
3 | * Copyright (c) 2008 Simtec Electronics | ||
4 | * Ben Dooks <ben@simtec.co.uk> | ||
5 | * http://armlinux.simtec.co.uk/ | ||
6 | * | ||
7 | * S3C series device definition for hsmmc devices | ||
8 | * | ||
9 | * This program is free software; you can redistribute it and/or modify | ||
10 | * it under the terms of the GNU General Public License version 2 as | ||
11 | * published by the Free Software Foundation. | ||
12 | */ | ||
13 | |||
14 | #include <linux/kernel.h> | ||
15 | #include <linux/platform_device.h> | ||
16 | |||
17 | #include <mach/map.h> | ||
18 | #include <plat/devs.h> | ||
19 | #include <plat/cpu.h> | ||
20 | |||
21 | #define S3C_SZ_HSMMC (0x1000) | ||
22 | |||
23 | static struct resource s3c_hsmmc_resource[] = { | ||
24 | [0] = { | ||
25 | .start = S3C_PA_HSMMC0, | ||
26 | .end = S3C_PA_HSMMC0 + S3C_SZ_HSMMC - 1, | ||
27 | .flags = IORESOURCE_MEM, | ||
28 | }, | ||
29 | [1] = { | ||
30 | .start = IRQ_HSMMC0, | ||
31 | .end = IRQ_HSMMC0, | ||
32 | .flags = IORESOURCE_IRQ, | ||
33 | } | ||
34 | }; | ||
35 | |||
36 | static u64 s3c_device_hsmmc_dmamask = 0xffffffffUL; | ||
37 | |||
38 | struct platform_device s3c_device_hsmmc0 = { | ||
39 | .name = "s3c-sdhci", | ||
40 | .id = 0, | ||
41 | .num_resources = ARRAY_SIZE(s3c_hsmmc_resource), | ||
42 | .resource = s3c_hsmmc_resource, | ||
43 | .dev = { | ||
44 | .dma_mask = &s3c_device_hsmmc_dmamask, | ||
45 | .coherent_dma_mask = 0xffffffffUL | ||
46 | } | ||
47 | }; | ||