Blame view

drivers/pcmcia/pxa2xx_trizeps4.c 6.02 KB
2efa42f2f   Jürgen Schindele   [ARM] 5294/1: Tri...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
  /*
   * linux/drivers/pcmcia/pxa2xx_trizeps4.c
   *
   * TRIZEPS PCMCIA specific routines.
   *
   * Author:	Jürgen Schindele
   * Created:	20 02, 2006
   * Copyright:	Jürgen Schindele
   *
   * This program is free software; you can redistribute it and/or modify
   * it under the terms of the GNU General Public License version 2 as
   * published by the Free Software Foundation.
   */
  
  #include <linux/module.h>
  #include <linux/init.h>
  #include <linux/kernel.h>
  #include <linux/gpio.h>
  #include <linux/interrupt.h>
  #include <linux/platform_device.h>
  
  #include <asm/mach-types.h>
  #include <asm/irq.h>
b74d19690   Eric Miao   [ARM] pxa: move p...
24
  #include <mach/pxa2xx-regs.h>
2efa42f2f   Jürgen Schindele   [ARM] 5294/1: Tri...
25
26
27
28
29
30
31
  #include <mach/trizeps4.h>
  
  #include "soc_common.h"
  
  extern void board_pcmcia_power(int power);
  
  static struct pcmcia_irqs irqs[] = {
34641de2e   Axel Lin   pcmcia: pxa: repl...
32
  	{ .sock = 0, .str = "cs0_cd" }
2efa42f2f   Jürgen Schindele   [ARM] 5294/1: Tri...
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
  	/* on other baseboards we can have more inputs */
  };
  
  static int trizeps_pcmcia_hw_init(struct soc_pcmcia_socket *skt)
  {
  	int ret, i;
  	/* we dont have voltage/card/ready detection
  	 * so we dont need interrupts for it
  	 */
  	switch (skt->nr) {
  	case 0:
  		if (gpio_request(GPIO_PRDY, "cf_irq") < 0) {
  			pr_err("%s: sock %d unable to request gpio %d
  ", __func__,
  				skt->nr, GPIO_PRDY);
  			return -EBUSY;
  		}
  		if (gpio_direction_input(GPIO_PRDY) < 0) {
  			pr_err("%s: sock %d unable to set input gpio %d
  ", __func__,
  				skt->nr, GPIO_PRDY);
  			gpio_free(GPIO_PRDY);
  			return -EINVAL;
  		}
34641de2e   Axel Lin   pcmcia: pxa: repl...
57
58
  		skt->socket.pci_irq = gpio_to_irq(GPIO_PRDY);
  		irqs[0].irq = gpio_to_irq(GPIO_PCD);
2efa42f2f   Jürgen Schindele   [ARM] 5294/1: Tri...
59
  		break;
2efa42f2f   Jürgen Schindele   [ARM] 5294/1: Tri...
60
61
62
63
  	default:
  		break;
  	}
  	/* release the reset of this card */
66024db57   Russell King - ARM Linux   PCMCIA: stop dupl...
64
65
  	pr_debug("%s: sock %d irq %d
  ", __func__, skt->nr, skt->socket.pci_irq);
2efa42f2f   Jürgen Schindele   [ARM] 5294/1: Tri...
66
67
68
69
70
  
  	/* supplementory irqs for the socket */
  	for (i = 0; i < ARRAY_SIZE(irqs); i++) {
  		if (irqs[i].sock != skt->nr)
  			continue;
7db6a7fa0   Eric Miao   ARM: pxa: convert...
71
  		if (gpio_request(irq_to_gpio(irqs[i].irq), irqs[i].str) < 0) {
2efa42f2f   Jürgen Schindele   [ARM] 5294/1: Tri...
72
73
  			pr_err("%s: sock %d unable to request gpio %d
  ",
7db6a7fa0   Eric Miao   ARM: pxa: convert...
74
  				__func__, skt->nr, irq_to_gpio(irqs[i].irq));
2efa42f2f   Jürgen Schindele   [ARM] 5294/1: Tri...
75
76
77
  			ret = -EBUSY;
  			goto error;
  		}
7db6a7fa0   Eric Miao   ARM: pxa: convert...
78
  		if (gpio_direction_input(irq_to_gpio(irqs[i].irq)) < 0) {
2efa42f2f   Jürgen Schindele   [ARM] 5294/1: Tri...
79
80
  			pr_err("%s: sock %d unable to set input gpio %d
  ",
7db6a7fa0   Eric Miao   ARM: pxa: convert...
81
  				__func__, skt->nr, irq_to_gpio(irqs[i].irq));
2efa42f2f   Jürgen Schindele   [ARM] 5294/1: Tri...
82
83
84
85
86
87
88
89
  			ret = -EINVAL;
  			goto error;
  		}
  	}
  	return soc_pcmcia_request_irqs(skt, irqs, ARRAY_SIZE(irqs));
  
  error:
  	for (; i >= 0; i--) {
7db6a7fa0   Eric Miao   ARM: pxa: convert...
90
  		gpio_free(irq_to_gpio(irqs[i].irq));
2efa42f2f   Jürgen Schindele   [ARM] 5294/1: Tri...
91
92
93
94
95
96
97
98
99
100
  	}
  	return (ret);
  }
  
  static void trizeps_pcmcia_hw_shutdown(struct soc_pcmcia_socket *skt)
  {
  	int i;
  	/* free allocated gpio's */
  	gpio_free(GPIO_PRDY);
  	for (i = 0; i < ARRAY_SIZE(irqs); i++)
7db6a7fa0   Eric Miao   ARM: pxa: convert...
101
  		gpio_free(irq_to_gpio(irqs[i].irq));
2efa42f2f   Jürgen Schindele   [ARM] 5294/1: Tri...
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
  }
  
  static unsigned long trizeps_pcmcia_status[2];
  
  static void trizeps_pcmcia_socket_state(struct soc_pcmcia_socket *skt,
  				struct pcmcia_state *state)
  {
  	unsigned short status = 0, change;
  	status = CFSR_readw();
  	change = (status ^ trizeps_pcmcia_status[skt->nr]) &
  				ConXS_CFSR_BVD_MASK;
  	if (change) {
  		trizeps_pcmcia_status[skt->nr] = status;
  		if (status & ConXS_CFSR_BVD1) {
  			/* enable_irq empty */
  		} else {
  			/* disable_irq empty */
  		}
  	}
  
  	switch (skt->nr) {
  	case 0:
  		/* just fill in fix states */
  		state->detect = gpio_get_value(GPIO_PCD) ? 0 : 1;
  		state->ready  = gpio_get_value(GPIO_PRDY) ? 1 : 0;
  		state->bvd1   = (status & ConXS_CFSR_BVD1) ? 1 : 0;
  		state->bvd2   = (status & ConXS_CFSR_BVD2) ? 1 : 0;
  		state->vs_3v  = (status & ConXS_CFSR_VS1) ? 0 : 1;
  		state->vs_Xv  = (status & ConXS_CFSR_VS2) ? 0 : 1;
  		state->wrprot = 0;	/* not available */
  		break;
  
  #ifndef CONFIG_MACH_TRIZEPS_CONXS
  	/* on ConXS we only have one slot. Second is inactive */
  	case 1:
  		state->detect = 0;
  		state->ready  = 0;
  		state->bvd1   = 0;
  		state->bvd2   = 0;
  		state->vs_3v  = 0;
  		state->vs_Xv  = 0;
  		state->wrprot = 0;
  		break;
  
  #endif
  	}
  }
  
  static int trizeps_pcmcia_configure_socket(struct soc_pcmcia_socket *skt,
  				const socket_state_t *state)
  {
  	int ret = 0;
  	unsigned short power = 0;
  
  	/* we do nothing here just check a bit */
  	switch (state->Vcc) {
  	case 0:  power &= 0xfc; break;
  	case 33: power |= ConXS_BCR_S0_VCC_3V3; break;
  	case 50:
  		pr_err("%s(): Vcc 5V not supported in socket
  ", __func__);
  		break;
  	default:
  		pr_err("%s(): bad Vcc %u
  ", __func__, state->Vcc);
  		ret = -1;
  	}
  
  	switch (state->Vpp) {
  	case 0:  power &= 0xf3; break;
  	case 33: power |= ConXS_BCR_S0_VPP_3V3; break;
  	case 120:
  		pr_err("%s(): Vpp 12V not supported in socket
  ", __func__);
  		break;
  	default:
  		if (state->Vpp != state->Vcc) {
  			pr_err("%s(): bad Vpp %u
  ", __func__, state->Vpp);
  			ret = -1;
  		}
  	}
  
  	switch (skt->nr) {
  	case 0:			 /* we only have 3.3V */
  		board_pcmcia_power(power);
  		break;
  
  #ifndef CONFIG_MACH_TRIZEPS_CONXS
  	/* on ConXS we only have one slot. Second is inactive */
  	case 1:
  #endif
  	default:
  		break;
  	}
  
  	return ret;
  }
  
  static void trizeps_pcmcia_socket_init(struct soc_pcmcia_socket *skt)
  {
  	/* default is on */
  	board_pcmcia_power(0x9);
  }
  
  static void trizeps_pcmcia_socket_suspend(struct soc_pcmcia_socket *skt)
  {
  	board_pcmcia_power(0x0);
  }
  
  static struct pcmcia_low_level trizeps_pcmcia_ops = {
  	.owner			= THIS_MODULE,
  	.hw_init		= trizeps_pcmcia_hw_init,
  	.hw_shutdown		= trizeps_pcmcia_hw_shutdown,
  	.socket_state		= trizeps_pcmcia_socket_state,
  	.configure_socket	= trizeps_pcmcia_configure_socket,
  	.socket_init		= trizeps_pcmcia_socket_init,
  	.socket_suspend		= trizeps_pcmcia_socket_suspend,
  #ifdef CONFIG_MACH_TRIZEPS_CONXS
  	.nr			= 1,
  #else
  	.nr			= 2,
  #endif
  	.first			= 0,
  };
  
  static struct platform_device *trizeps_pcmcia_device;
  
  static int __init trizeps_pcmcia_init(void)
  {
  	int ret;
735443fed   Dmitry Eremin-Solenikov   pcmcia: limit pxa...
233
234
  	if (!machine_is_trizeps4() && !machine_is_trizeps4wl())
  		return -ENODEV;
2efa42f2f   Jürgen Schindele   [ARM] 5294/1: Tri...
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
  	trizeps_pcmcia_device = platform_device_alloc("pxa2xx-pcmcia", -1);
  	if (!trizeps_pcmcia_device)
  		return -ENOMEM;
  
  	ret = platform_device_add_data(trizeps_pcmcia_device,
  			&trizeps_pcmcia_ops, sizeof(trizeps_pcmcia_ops));
  
  	if (ret == 0)
  		ret = platform_device_add(trizeps_pcmcia_device);
  
  	if (ret)
  		platform_device_put(trizeps_pcmcia_device);
  
  	return ret;
  }
  
  static void __exit trizeps_pcmcia_exit(void)
  {
2efa42f2f   Jürgen Schindele   [ARM] 5294/1: Tri...
253
254
255
256
257
258
259
260
261
  	platform_device_unregister(trizeps_pcmcia_device);
  }
  
  fs_initcall(trizeps_pcmcia_init);
  module_exit(trizeps_pcmcia_exit);
  
  MODULE_LICENSE("GPL");
  MODULE_AUTHOR("Juergen Schindele");
  MODULE_ALIAS("platform:pxa2xx-pcmcia");