aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/plat-s3c
diff options
context:
space:
mode:
authorBen Dooks <ben-linux@fluff.org>2008-10-31 12:14:38 -0400
committerBen Dooks <ben-linux@fluff.org>2008-12-15 18:39:34 -0500
commit5cc7fd88fc96072c333184ff359c818665ce2506 (patch)
tree5a91059f40729d6581bc477c0ef4421b681f42b7 /arch/arm/plat-s3c
parentea522c7a54a1422b3ce8a1b9888f2108541ba047 (diff)
[ARM] S3C6410: Add helper for setting SDHCI device information
Add the necessary helper functions for setting up the SDHCI device information. Signed-off-by: Ben Dooks <ben-linux@fluff.org>
Diffstat (limited to 'arch/arm/plat-s3c')
-rw-r--r--arch/arm/plat-s3c/dev-hsmmc.c37
-rw-r--r--arch/arm/plat-s3c/include/plat/sdhci.h87
2 files changed, 116 insertions, 8 deletions
diff --git a/arch/arm/plat-s3c/dev-hsmmc.c b/arch/arm/plat-s3c/dev-hsmmc.c
index 5a5ef74ebde3..4c05b39810e2 100644
--- a/arch/arm/plat-s3c/dev-hsmmc.c
+++ b/arch/arm/plat-s3c/dev-hsmmc.c
@@ -13,8 +13,10 @@
13 13
14#include <linux/kernel.h> 14#include <linux/kernel.h>
15#include <linux/platform_device.h> 15#include <linux/platform_device.h>
16#include <linux/mmc/host.h>
16 17
17#include <mach/map.h> 18#include <mach/map.h>
19#include <plat/sdhci.h>
18#include <plat/devs.h> 20#include <plat/devs.h>
19#include <plat/cpu.h> 21#include <plat/cpu.h>
20 22
@@ -35,13 +37,32 @@ static struct resource s3c_hsmmc_resource[] = {
35 37
36static u64 s3c_device_hsmmc_dmamask = 0xffffffffUL; 38static u64 s3c_device_hsmmc_dmamask = 0xffffffffUL;
37 39
40struct s3c_sdhci_platdata s3c_hsmmc0_def_platdata = {
41 .max_width = 4,
42 .host_caps = (MMC_CAP_4_BIT_DATA |
43 MMC_CAP_MMC_HIGHSPEED | MMC_CAP_SD_HIGHSPEED),
44};
45
38struct platform_device s3c_device_hsmmc0 = { 46struct platform_device s3c_device_hsmmc0 = {
39 .name = "s3c-sdhci", 47 .name = "s3c-sdhci",
40 .id = 0, 48 .id = 0,
41 .num_resources = ARRAY_SIZE(s3c_hsmmc_resource), 49 .num_resources = ARRAY_SIZE(s3c_hsmmc_resource),
42 .resource = s3c_hsmmc_resource, 50 .resource = s3c_hsmmc_resource,
43 .dev = { 51 .dev = {
44 .dma_mask = &s3c_device_hsmmc_dmamask, 52 .dma_mask = &s3c_device_hsmmc_dmamask,
45 .coherent_dma_mask = 0xffffffffUL 53 .coherent_dma_mask = 0xffffffffUL,
46 } 54 .platform_data = &s3c_hsmmc0_def_platdata,
55 },
47}; 56};
57
58void s3c_sdhci0_set_platdata(struct s3c_sdhci_platdata *pd)
59{
60 struct s3c_sdhci_platdata *set = &s3c_hsmmc0_def_platdata;
61
62 set->max_width = pd->max_width;
63
64 if (pd->cfg_gpio)
65 set->cfg_gpio = pd->cfg_gpio;
66 if (pd->cfg_card)
67 set->cfg_card = pd->cfg_card;
68}
diff --git a/arch/arm/plat-s3c/include/plat/sdhci.h b/arch/arm/plat-s3c/include/plat/sdhci.h
new file mode 100644
index 000000000000..c9999121b4bb
--- /dev/null
+++ b/arch/arm/plat-s3c/include/plat/sdhci.h
@@ -0,0 +1,87 @@
1/* linux/arch/arm/plat-s3c/include/plat/sdhci.h
2 *
3 * Copyright 2008 Openmoko, Inc.
4 * Copyright 2008 Simtec Electronics
5 * http://armlinux.simtec.co.uk/
6 * Ben Dooks <ben@simtec.co.uk>
7 *
8 * S3C Platform - SDHCI (HSMMC) platform data definitions
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
13*/
14
15#ifndef __PLAT_S3C_SDHCI_H
16#define __PLAT_S3C_SDHCI_H __FILE__
17
18struct platform_device;
19struct mmc_host;
20struct mmc_card;
21struct mmc_ios;
22
23/**
24 * struct s3c_sdhci_platdata() - Platform device data for Samsung SDHCI
25 * @max_width: The maximum number of data bits supported.
26 * @host_caps: Standard MMC host capabilities bit field.
27 * @cfg_gpio: Configure the GPIO for a specific card bit-width
28 * @cfg_card: Configure the interface for a specific card and speed. This
29 * is necessary the controllers and/or GPIO blocks require the
30 * changing of driver-strength and other controls dependant on
31 * the card and speed of operation.
32 *
33 * Initialisation data specific to either the machine or the platform
34 * for the device driver to use or call-back when configuring gpio or
35 * card speed information.
36*/
37struct s3c_sdhci_platdata {
38 unsigned int max_width;
39 unsigned int host_caps;
40
41 char **clocks; /* set of clock sources */
42
43 void (*cfg_gpio)(struct platform_device *dev, int width);
44 void (*cfg_card)(struct platform_device *dev,
45 void __iomem *regbase,
46 struct mmc_ios *ios,
47 struct mmc_card *card);
48};
49
50/**
51 * s3c_sdhci0_set_platdata - Set platform data for S3C SDHCI device.
52 * @pd: Platform data to register to device.
53 *
54 * Register the given platform data for use withe S3C SDHCI device.
55 * The call will copy the platform data, so the board definitions can
56 * make the structure itself __initdata.
57 */
58extern void s3c_sdhci0_set_platdata(struct s3c_sdhci_platdata *pd);
59
60/* Default platform data, exported so that per-cpu initialisation can
61 * set the correct one when there are more than one cpu type selected.
62*/
63
64extern struct s3c_sdhci_platdata s3c_hsmmc0_def_platata;
65
66/* Helper function availablity */
67
68#ifdef CONFIG_S3C6410_SETUP_SDHCI
69extern char *s3c6410_hsmmc_clksrcs[4];
70
71extern void s3c6410_setup_sdhci0_cfg_gpio(struct platform_device *, int w);
72extern void s3c6410_setup_sdhci0_cfg_card(struct platform_device *dev,
73 void __iomem *r,
74 struct mmc_ios *ios,
75 struct mmc_card *card);
76
77static inline void s3c6410_default_sdhci0(void)
78{
79 s3c_hsmmc0_def_platdata.clocks = s3c6410_hsmmc_clksrcs;
80 s3c_hsmmc0_def_platdata.cfg_gpio = s3c6410_setup_sdhci0_cfg_gpio;
81 s3c_hsmmc0_def_platdata.cfg_card = s3c6410_setup_sdhci0_cfg_card;
82}
83#else
84static inline void s3c6410_default_sdhci0(void) { }
85#endif /* CONFIG_S3C6410_SETUP_SDHCI */
86
87#endif /* __PLAT_S3C_SDHCI_H */