Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
setup-sdhci-gpio.c
Go to the documentation of this file.
1 /* linux/arch/arm/plat-s3c64xx/setup-sdhci-gpio.c
2  *
3  * Copyright 2008 Simtec Electronics
4  * Ben Dooks <[email protected]>
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>
19 #include <linux/gpio.h>
20 
21 #include <plat/gpio-cfg.h>
22 #include <plat/sdhci.h>
23 
25 {
26  struct s3c_sdhci_platdata *pdata = dev->dev.platform_data;
27 
28  /* Set all the necessary GPG pins to special-function 2 */
29  s3c_gpio_cfgrange_nopull(S3C64XX_GPG(0), 2 + width, S3C_GPIO_SFN(2));
30 
31  if (pdata->cd_type == S3C_SDHCI_CD_INTERNAL) {
34  }
35 }
36 
38 {
39  struct s3c_sdhci_platdata *pdata = dev->dev.platform_data;
40 
41  /* Set all the necessary GPH pins to special-function 2 */
42  s3c_gpio_cfgrange_nopull(S3C64XX_GPH(0), 2 + width, S3C_GPIO_SFN(2));
43 
44  if (pdata->cd_type == S3C_SDHCI_CD_INTERNAL) {
47  }
48 }
49 
51 {
52  /* Set all the necessary GPH pins to special-function 3 */
53  s3c_gpio_cfgrange_nopull(S3C64XX_GPH(6), width, S3C_GPIO_SFN(3));
54 
55  /* Set all the necessary GPC pins to special-function 3 */
56  s3c_gpio_cfgrange_nopull(S3C64XX_GPC(4), 2, S3C_GPIO_SFN(3));
57 }