PCMCIA: pxa: convert PXA socket drivers to use new irq/gpio management
[firefly-linux-kernel-4.4.55.git] / drivers / pcmcia / pxa2xx_stargate2.c
1 /*
2  * linux/drivers/pcmcia/pxa2xx_stargate2.c
3  *
4  * Stargate 2 PCMCIA specific routines.
5  *
6  * Created:     December 6, 2005
7  * Author:      Ed C. Epp
8  * Copyright:   Intel Corp 2005
9  *              Jonathan Cameron <jic23@cam.ac.uk> 2009
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License version 2 as
13  * published by the Free Software Foundation.
14  */
15
16 #include <linux/module.h>
17 #include <linux/init.h>
18 #include <linux/kernel.h>
19 #include <linux/interrupt.h>
20 #include <linux/delay.h>
21 #include <linux/platform_device.h>
22 #include <linux/gpio.h>
23
24 #include <pcmcia/ss.h>
25
26 #include <asm/irq.h>
27 #include <asm/mach-types.h>
28
29 #include "soc_common.h"
30
31 #define SG2_S0_POWER_CTL        108
32 #define SG2_S0_GPIO_RESET       82
33 #define SG2_S0_GPIO_DETECT      53
34 #define SG2_S0_GPIO_READY       81
35
36 static struct gpio sg2_pcmcia_gpios[] = {
37         { SG2_S0_GPIO_RESET, GPIOF_OUT_INIT_HIGH, "PCMCIA Reset" },
38         { SG2_S0_POWER_CTL, GPIOF_OUT_INIT_HIGH, "PCMCIA Power Ctrl" },
39 };
40
41 static int sg2_pcmcia_hw_init(struct soc_pcmcia_socket *skt)
42 {
43         skt->stat[SOC_STAT_CD].gpio = SG2_S0_GPIO_DETECT;
44         skt->stat[SOC_STAT_CD].name = "PCMCIA0 CD";
45         skt->stat[SOC_STAT_RDY].gpio = SG2_S0_GPIO_READY;
46         skt->stat[SOC_STAT_RDY].name = "PCMCIA0 RDY";
47         return 0;
48 }
49
50 static void sg2_pcmcia_socket_state(struct soc_pcmcia_socket *skt,
51                                     struct pcmcia_state *state)
52 {
53         state->bvd1   = 0; /* not available - battery detect on card */
54         state->bvd2   = 0; /* not available */
55         state->vs_3v  = 1; /* not available - voltage detect for card */
56         state->vs_Xv  = 0; /* not available */
57         state->wrprot = 0; /* not available - write protect */
58 }
59
60 static int sg2_pcmcia_configure_socket(struct soc_pcmcia_socket *skt,
61                                        const socket_state_t *state)
62 {
63         /* Enable card power */
64         switch (state->Vcc) {
65         case 0:
66                 /* sets power ctl register high */
67                 gpio_set_value(SG2_S0_POWER_CTL, 1);
68                 break;
69         case 33:
70         case 50:
71                 /* sets power control register low (clear) */
72                 gpio_set_value(SG2_S0_POWER_CTL, 0);
73                 msleep(100);
74                 break;
75         default:
76                 pr_err("%s(): bad Vcc %u\n",
77                        __func__, state->Vcc);
78                 return -1;
79         }
80
81         /* reset */
82         gpio_set_value(SG2_S0_GPIO_RESET, !!(state->flags & SS_RESET));
83
84         return 0;
85 }
86
87 static struct pcmcia_low_level sg2_pcmcia_ops __initdata = {
88         .owner                  = THIS_MODULE,
89         .hw_init                = sg2_pcmcia_hw_init,
90         .socket_state           = sg2_pcmcia_socket_state,
91         .configure_socket       = sg2_pcmcia_configure_socket,
92         .nr                     = 1,
93 };
94
95 static struct platform_device *sg2_pcmcia_device;
96
97 static int __init sg2_pcmcia_init(void)
98 {
99         int ret;
100
101         if (!machine_is_stargate2())
102                 return -ENODEV;
103
104         sg2_pcmcia_device = platform_device_alloc("pxa2xx-pcmcia", -1);
105         if (!sg2_pcmcia_device)
106                 return -ENOMEM;
107
108         ret = gpio_request_array(sg2_pcmcia_gpios, ARRAY_SIZE(sg2_pcmcia_gpios));
109         if (ret)
110                 goto error_put_platform_device;
111
112         ret = platform_device_add_data(sg2_pcmcia_device,
113                                        &sg2_pcmcia_ops,
114                                        sizeof(sg2_pcmcia_ops));
115         if (ret)
116                 goto error_free_gpios;
117
118         ret = platform_device_add(sg2_pcmcia_device);
119         if (ret)
120                 goto error_free_gpios;
121
122         return 0;
123 error_free_gpios:
124         gpio_free_array(sg2_pcmcia_gpios, ARRAY_SIZE(sg2_pcmcia_gpios));
125 error_put_platform_device:
126         platform_device_put(sg2_pcmcia_device);
127
128         return ret;
129 }
130
131 static void __exit sg2_pcmcia_exit(void)
132 {
133         platform_device_unregister(sg2_pcmcia_device);
134         gpio_free_array(sg2_pcmcia_gpios, ARRAY_SIZE(sg2_pcmcia_gpios));
135 }
136
137 fs_initcall(sg2_pcmcia_init);
138 module_exit(sg2_pcmcia_exit);
139
140 MODULE_LICENSE("GPL");
141 MODULE_ALIAS("platform:pxa2xx-pcmcia");