Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/linville/wirel...
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / arch / arm / mach-s5pv210 / setup-sdhci-gpio.c
blob746777d56df95ab51e817227cf3c97ce4db34b62
1 /* linux/arch/arm/plat-s5pc1xx/setup-sdhci-gpio.c
3 * Copyright (c) 2009-2010 Samsung Electronics Co., Ltd.
4 * http://www.samsung.com/
6 * S5PV210 - Helper functions for setting up SDHCI device(s) GPIO (HSMMC)
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
13 #include <linux/kernel.h>
14 #include <linux/types.h>
15 #include <linux/interrupt.h>
16 #include <linux/platform_device.h>
17 #include <linux/io.h>
18 #include <linux/gpio.h>
19 #include <linux/mmc/host.h>
20 #include <linux/mmc/card.h>
22 #include <plat/gpio-cfg.h>
23 #include <plat/regs-sdhci.h>
24 #include <plat/sdhci.h>
26 void s5pv210_setup_sdhci0_cfg_gpio(struct platform_device *dev, int width)
28 struct s3c_sdhci_platdata *pdata = dev->dev.platform_data;
30 /* Set all the necessary GPG0/GPG1 pins to special-function 2 */
31 s3c_gpio_cfgrange_nopull(S5PV210_GPG0(0), 2, S3C_GPIO_SFN(2));
33 switch (width) {
34 case 8:
35 /* GPG1[3:6] special-funtion 3 */
36 s3c_gpio_cfgrange_nopull(S5PV210_GPG1(3), 4, S3C_GPIO_SFN(3));
37 case 4:
38 /* GPG0[3:6] special-funtion 2 */
39 s3c_gpio_cfgrange_nopull(S5PV210_GPG0(3), 4, S3C_GPIO_SFN(2));
40 default:
41 break;
44 if (pdata->cd_type == S3C_SDHCI_CD_INTERNAL) {
45 s3c_gpio_setpull(S5PV210_GPG0(2), S3C_GPIO_PULL_UP);
46 s3c_gpio_cfgpin(S5PV210_GPG0(2), S3C_GPIO_SFN(2));
50 void s5pv210_setup_sdhci1_cfg_gpio(struct platform_device *dev, int width)
52 struct s3c_sdhci_platdata *pdata = dev->dev.platform_data;
54 /* Set all the necessary GPG1[0:1] pins to special-function 2 */
55 s3c_gpio_cfgrange_nopull(S5PV210_GPG1(0), 2, S3C_GPIO_SFN(2));
57 /* Data pin GPG1[3:6] to special-function 2 */
58 s3c_gpio_cfgrange_nopull(S5PV210_GPG1(3), 4, S3C_GPIO_SFN(2));
60 if (pdata->cd_type == S3C_SDHCI_CD_INTERNAL) {
61 s3c_gpio_setpull(S5PV210_GPG1(2), S3C_GPIO_PULL_UP);
62 s3c_gpio_cfgpin(S5PV210_GPG1(2), S3C_GPIO_SFN(2));
66 void s5pv210_setup_sdhci2_cfg_gpio(struct platform_device *dev, int width)
68 struct s3c_sdhci_platdata *pdata = dev->dev.platform_data;
70 /* Set all the necessary GPG2[0:1] pins to special-function 2 */
71 s3c_gpio_cfgrange_nopull(S5PV210_GPG2(0), 2, S3C_GPIO_SFN(2));
73 switch (width) {
74 case 8:
75 /* Data pin GPG3[3:6] to special-function 3 */
76 s3c_gpio_cfgrange_nopull(S5PV210_GPG3(3), 4, S3C_GPIO_SFN(3));
77 case 4:
78 /* Data pin GPG2[3:6] to special-function 2 */
79 s3c_gpio_cfgrange_nopull(S5PV210_GPG2(3), 4, S3C_GPIO_SFN(2));
80 default:
81 break;
84 if (pdata->cd_type == S3C_SDHCI_CD_INTERNAL) {
85 s3c_gpio_setpull(S5PV210_GPG2(2), S3C_GPIO_PULL_UP);
86 s3c_gpio_cfgpin(S5PV210_GPG2(2), S3C_GPIO_SFN(2));
90 void s5pv210_setup_sdhci3_cfg_gpio(struct platform_device *dev, int width)
92 struct s3c_sdhci_platdata *pdata = dev->dev.platform_data;
94 /* Set all the necessary GPG3[0:1] pins to special-function 2 */
95 s3c_gpio_cfgrange_nopull(S5PV210_GPG3(0), 2, S3C_GPIO_SFN(2));
97 /* Data pin GPG3[3:6] to special-function 2 */
98 s3c_gpio_cfgrange_nopull(S5PV210_GPG3(3), 4, S3C_GPIO_SFN(2));
100 if (pdata->cd_type == S3C_SDHCI_CD_INTERNAL) {
101 s3c_gpio_setpull(S5PV210_GPG3(2), S3C_GPIO_PULL_UP);
102 s3c_gpio_cfgpin(S5PV210_GPG3(2), S3C_GPIO_SFN(2));