added 2.6.29.6 aldebaran kernel
[nao-ulib.git] / kernel / 2.6.29.6-aldebaran-rt / arch / arm / plat-s3c / include / plat / sdhci.h
blobc4ca3920ca4bde8abdd3b33a6d5ad8678246148f
1 /* linux/arch/arm/plat-s3c/include/plat/sdhci.h
3 * Copyright 2008 Openmoko, Inc.
4 * Copyright 2008 Simtec Electronics
5 * http://armlinux.simtec.co.uk/
6 * Ben Dooks <ben@simtec.co.uk>
8 * S3C Platform - SDHCI (HSMMC) platform data definitions
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.
15 #ifndef __PLAT_S3C_SDHCI_H
16 #define __PLAT_S3C_SDHCI_H __FILE__
18 struct platform_device;
19 struct mmc_host;
20 struct mmc_card;
21 struct mmc_ios;
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.
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.
37 struct s3c_sdhci_platdata {
38 unsigned int max_width;
39 unsigned int host_caps;
41 char **clocks; /* set of clock sources */
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);
50 /**
51 * s3c_sdhci0_set_platdata - Set platform data for S3C SDHCI device.
52 * @pd: Platform data to register to device.
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.
58 extern void s3c_sdhci0_set_platdata(struct s3c_sdhci_platdata *pd);
59 extern void s3c_sdhci1_set_platdata(struct s3c_sdhci_platdata *pd);
61 /* Default platform data, exported so that per-cpu initialisation can
62 * set the correct one when there are more than one cpu type selected.
65 extern struct s3c_sdhci_platdata s3c_hsmmc0_def_platdata;
66 extern struct s3c_sdhci_platdata s3c_hsmmc1_def_platdata;
68 /* Helper function availablity */
70 #ifdef CONFIG_S3C6410_SETUP_SDHCI
71 extern char *s3c6410_hsmmc_clksrcs[4];
73 extern void s3c6410_setup_sdhci0_cfg_gpio(struct platform_device *, int w);
74 extern void s3c6410_setup_sdhci1_cfg_gpio(struct platform_device *, int w);
76 extern void s3c6410_setup_sdhci0_cfg_card(struct platform_device *dev,
77 void __iomem *r,
78 struct mmc_ios *ios,
79 struct mmc_card *card);
81 #ifdef CONFIG_S3C_DEV_HSMMC
82 static inline void s3c6410_default_sdhci0(void)
84 s3c_hsmmc0_def_platdata.clocks = s3c6410_hsmmc_clksrcs;
85 s3c_hsmmc0_def_platdata.cfg_gpio = s3c6410_setup_sdhci0_cfg_gpio;
86 s3c_hsmmc0_def_platdata.cfg_card = s3c6410_setup_sdhci0_cfg_card;
88 #else
89 static inline void s3c6410_default_sdhci0(void) { }
90 #endif /* CONFIG_S3C_DEV_HSMMC */
92 #ifdef CONFIG_S3C_DEV_HSMMC1
93 static inline void s3c6410_default_sdhci1(void)
95 s3c_hsmmc1_def_platdata.clocks = s3c6410_hsmmc_clksrcs;
96 s3c_hsmmc1_def_platdata.cfg_gpio = s3c6410_setup_sdhci1_cfg_gpio;
97 s3c_hsmmc1_def_platdata.cfg_card = s3c6410_setup_sdhci0_cfg_card;
99 #else
100 static inline void s3c6410_default_sdhci1(void) { }
101 #endif /* CONFIG_S3C_DEV_HSMMC1 */
103 #else
104 static inline void s3c6410_default_sdhci0(void) { }
105 static inline void s3c6410_default_sdhci1(void) { }
106 #endif /* CONFIG_S3C6410_SETUP_SDHCI */
108 #endif /* __PLAT_S3C_SDHCI_H */