blob: 138455af4937b8a29b7d400cff3e27dc831fee31 [file] [log] [blame]
Krzysztof Kozlowski28a196f2017-12-25 20:54:33 +01001// SPDX-License-Identifier: GPL-2.0
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)
Ben Dooks4faf68672009-03-25 11:01:24 +00008
9#include <linux/kernel.h>
10#include <linux/types.h>
11#include <linux/interrupt.h>
12#include <linux/platform_device.h>
13#include <linux/io.h>
Kukjin Kim1c739c72010-08-05 07:54:49 +090014#include <linux/gpio.h>
Ben Dooks4faf68672009-03-25 11:01:24 +000015
Ben Dooks4faf68672009-03-25 11:01:24 +000016#include <plat/gpio-cfg.h>
Marek Szyprowski19206b12010-07-23 09:27:18 +090017#include <plat/sdhci.h>
Linus Walleijb0161ca2014-01-14 14:24:24 +010018#include <mach/gpio-samsung.h>
Ben Dooks4faf68672009-03-25 11:01:24 +000019
20void s3c64xx_setup_sdhci0_cfg_gpio(struct platform_device *dev, int width)
21{
Marek Szyprowski19206b12010-07-23 09:27:18 +090022 struct s3c_sdhci_platdata *pdata = dev->dev.platform_data;
Ben Dooks4faf68672009-03-25 11:01:24 +000023
Ben Dooksdab30d72010-10-01 16:39:15 +090024 /* Set all the necessary GPG pins to special-function 2 */
Ben Dooks2a1309b2010-05-27 17:25:45 +090025 s3c_gpio_cfgrange_nopull(S3C64XX_GPG(0), 2 + width, S3C_GPIO_SFN(2));
Ben Dooks4faf68672009-03-25 11:01:24 +000026
Marek Szyprowski19206b12010-07-23 09:27:18 +090027 if (pdata->cd_type == S3C_SDHCI_CD_INTERNAL) {
28 s3c_gpio_setpull(S3C64XX_GPG(6), S3C_GPIO_PULL_UP);
29 s3c_gpio_cfgpin(S3C64XX_GPG(6), S3C_GPIO_SFN(2));
30 }
Ben Dooks4faf68672009-03-25 11:01:24 +000031}
32
33void s3c64xx_setup_sdhci1_cfg_gpio(struct platform_device *dev, int width)
34{
Marek Szyprowski19206b12010-07-23 09:27:18 +090035 struct s3c_sdhci_platdata *pdata = dev->dev.platform_data;
Ben Dooks4faf68672009-03-25 11:01:24 +000036
Ben Dooksdab30d72010-10-01 16:39:15 +090037 /* Set all the necessary GPH pins to special-function 2 */
Ben Dooks2a1309b2010-05-27 17:25:45 +090038 s3c_gpio_cfgrange_nopull(S3C64XX_GPH(0), 2 + width, S3C_GPIO_SFN(2));
Ben Dooks4faf68672009-03-25 11:01:24 +000039
Marek Szyprowski19206b12010-07-23 09:27:18 +090040 if (pdata->cd_type == S3C_SDHCI_CD_INTERNAL) {
41 s3c_gpio_setpull(S3C64XX_GPG(6), S3C_GPIO_PULL_UP);
42 s3c_gpio_cfgpin(S3C64XX_GPG(6), S3C_GPIO_SFN(3));
43 }
Ben Dooks4faf68672009-03-25 11:01:24 +000044}
Maurus Cuelenaere92b118f2009-11-23 13:34:46 +010045
46void s3c64xx_setup_sdhci2_cfg_gpio(struct platform_device *dev, int width)
47{
Ben Dooksdab30d72010-10-01 16:39:15 +090048 /* Set all the necessary GPH pins to special-function 3 */
Ben Dooks2a1309b2010-05-27 17:25:45 +090049 s3c_gpio_cfgrange_nopull(S3C64XX_GPH(6), width, S3C_GPIO_SFN(3));
Maurus Cuelenaere92b118f2009-11-23 13:34:46 +010050
Ben Dooksdab30d72010-10-01 16:39:15 +090051 /* Set all the necessary GPC pins to special-function 3 */
Ben Dooks2a1309b2010-05-27 17:25:45 +090052 s3c_gpio_cfgrange_nopull(S3C64XX_GPC(4), 2, S3C_GPIO_SFN(3));
Maurus Cuelenaere92b118f2009-11-23 13:34:46 +010053}