blob: f426b7a16c1654bd758ec34e7e879d938b30eafc [file] [log] [blame]
Ben Dooks4faf68672009-03-25 11:01:24 +00001/* linux/arch/arm/plat-s3c64xx/setup-sdhci-gpio.c
2 *
3 * Copyright 2008 Simtec Electronics
4 * Ben Dooks <ben@simtec.co.uk>
5 * http://armlinux.simtec.co.uk/
6 *
7 * S3C64XX - Helper functions for setting up SDHCI device(s) GPIO (HSMMC)
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/types.h>
16#include <linux/interrupt.h>
17#include <linux/platform_device.h>
18#include <linux/io.h>
Kukjin Kim1c739c72010-08-05 07:54:49 +090019#include <linux/gpio.h>
Ben Dooks4faf68672009-03-25 11:01:24 +000020
Ben Dooks4faf68672009-03-25 11:01:24 +000021#include <plat/gpio-cfg.h>
Marek Szyprowski19206b172010-07-23 09:27:18 +090022#include <plat/sdhci.h>
Linus Walleijb0161ca2014-01-14 14:24:24 +010023#include <mach/gpio-samsung.h>
Ben Dooks4faf68672009-03-25 11:01:24 +000024
25void s3c64xx_setup_sdhci0_cfg_gpio(struct platform_device *dev, int width)
26{
Marek Szyprowski19206b172010-07-23 09:27:18 +090027 struct s3c_sdhci_platdata *pdata = dev->dev.platform_data;
Ben Dooks4faf68672009-03-25 11:01:24 +000028
Ben Dooksdab30d72010-10-01 16:39:15 +090029 /* Set all the necessary GPG pins to special-function 2 */
Ben Dooks2a1309b2010-05-27 17:25:45 +090030 s3c_gpio_cfgrange_nopull(S3C64XX_GPG(0), 2 + width, S3C_GPIO_SFN(2));
Ben Dooks4faf68672009-03-25 11:01:24 +000031
Marek Szyprowski19206b172010-07-23 09:27:18 +090032 if (pdata->cd_type == S3C_SDHCI_CD_INTERNAL) {
33 s3c_gpio_setpull(S3C64XX_GPG(6), S3C_GPIO_PULL_UP);
34 s3c_gpio_cfgpin(S3C64XX_GPG(6), S3C_GPIO_SFN(2));
35 }
Ben Dooks4faf68672009-03-25 11:01:24 +000036}
37
38void s3c64xx_setup_sdhci1_cfg_gpio(struct platform_device *dev, int width)
39{
Marek Szyprowski19206b172010-07-23 09:27:18 +090040 struct s3c_sdhci_platdata *pdata = dev->dev.platform_data;
Ben Dooks4faf68672009-03-25 11:01:24 +000041
Ben Dooksdab30d72010-10-01 16:39:15 +090042 /* Set all the necessary GPH pins to special-function 2 */
Ben Dooks2a1309b2010-05-27 17:25:45 +090043 s3c_gpio_cfgrange_nopull(S3C64XX_GPH(0), 2 + width, S3C_GPIO_SFN(2));
Ben Dooks4faf68672009-03-25 11:01:24 +000044
Marek Szyprowski19206b172010-07-23 09:27:18 +090045 if (pdata->cd_type == S3C_SDHCI_CD_INTERNAL) {
46 s3c_gpio_setpull(S3C64XX_GPG(6), S3C_GPIO_PULL_UP);
47 s3c_gpio_cfgpin(S3C64XX_GPG(6), S3C_GPIO_SFN(3));
48 }
Ben Dooks4faf68672009-03-25 11:01:24 +000049}
Maurus Cuelenaere92b118f2009-11-23 13:34:46 +010050
51void s3c64xx_setup_sdhci2_cfg_gpio(struct platform_device *dev, int width)
52{
Ben Dooksdab30d72010-10-01 16:39:15 +090053 /* Set all the necessary GPH pins to special-function 3 */
Ben Dooks2a1309b2010-05-27 17:25:45 +090054 s3c_gpio_cfgrange_nopull(S3C64XX_GPH(6), width, S3C_GPIO_SFN(3));
Maurus Cuelenaere92b118f2009-11-23 13:34:46 +010055
Ben Dooksdab30d72010-10-01 16:39:15 +090056 /* Set all the necessary GPC pins to special-function 3 */
Ben Dooks2a1309b2010-05-27 17:25:45 +090057 s3c_gpio_cfgrange_nopull(S3C64XX_GPC(4), 2, S3C_GPIO_SFN(3));
Maurus Cuelenaere92b118f2009-11-23 13:34:46 +010058}