Ben Dooks | 5b323c7 | 2008-10-31 16:14:28 +0000 | [diff] [blame^] | 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 | }; |