2 * linux/drivers/pcmcia/pxa2xx_trizeps4.c
4 * TRIZEPS PCMCIA specific routines.
6 * Author: Jürgen Schindele
8 * Copyright: Jürgen Schindele
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
15 #include <linux/module.h>
16 #include <linux/init.h>
17 #include <linux/kernel.h>
18 #include <linux/gpio.h>
19 #include <linux/interrupt.h>
20 #include <linux/platform_device.h>
22 #include <asm/mach-types.h>
25 #include <mach/hardware.h>
26 #include <mach/pxa-regs.h>
27 #include <mach/trizeps4.h>
29 #include "soc_common.h"
31 extern void board_pcmcia_power(int power
);
33 static struct pcmcia_irqs irqs
[] = {
34 { 0, IRQ_GPIO(GPIO_PCD
), "cs0_cd" }
35 /* on other baseboards we can have more inputs */
38 static int trizeps_pcmcia_hw_init(struct soc_pcmcia_socket
*skt
)
41 /* we dont have voltage/card/ready detection
42 * so we dont need interrupts for it
46 if (gpio_request(GPIO_PRDY
, "cf_irq") < 0) {
47 pr_err("%s: sock %d unable to request gpio %d\n", __func__
,
51 if (gpio_direction_input(GPIO_PRDY
) < 0) {
52 pr_err("%s: sock %d unable to set input gpio %d\n", __func__
,
57 skt
->irq
= IRQ_GPIO(GPIO_PRDY
);
60 #ifndef CONFIG_MACH_TRIZEPS_CONXS
66 /* release the reset of this card */
67 pr_debug("%s: sock %d irq %d\n", __func__
, skt
->nr
, skt
->irq
);
69 /* supplementory irqs for the socket */
70 for (i
= 0; i
< ARRAY_SIZE(irqs
); i
++) {
71 if (irqs
[i
].sock
!= skt
->nr
)
73 if (gpio_request(IRQ_TO_GPIO(irqs
[i
].irq
), irqs
[i
].str
) < 0) {
74 pr_err("%s: sock %d unable to request gpio %d\n",
75 __func__
, skt
->nr
, IRQ_TO_GPIO(irqs
[i
].irq
));
79 if (gpio_direction_input(IRQ_TO_GPIO(irqs
[i
].irq
)) < 0) {
80 pr_err("%s: sock %d unable to set input gpio %d\n",
81 __func__
, skt
->nr
, IRQ_TO_GPIO(irqs
[i
].irq
));
86 return soc_pcmcia_request_irqs(skt
, irqs
, ARRAY_SIZE(irqs
));
90 gpio_free(IRQ_TO_GPIO(irqs
[i
].irq
));
95 static void trizeps_pcmcia_hw_shutdown(struct soc_pcmcia_socket
*skt
)
98 /* free allocated gpio's */
100 for (i
= 0; i
< ARRAY_SIZE(irqs
); i
++)
101 gpio_free(IRQ_TO_GPIO(irqs
[i
].irq
));
104 static unsigned long trizeps_pcmcia_status
[2];
106 static void trizeps_pcmcia_socket_state(struct soc_pcmcia_socket
*skt
,
107 struct pcmcia_state
*state
)
109 unsigned short status
= 0, change
;
110 status
= CFSR_readw();
111 change
= (status
^ trizeps_pcmcia_status
[skt
->nr
]) &
114 trizeps_pcmcia_status
[skt
->nr
] = status
;
115 if (status
& ConXS_CFSR_BVD1
) {
116 /* enable_irq empty */
118 /* disable_irq empty */
124 /* just fill in fix states */
125 state
->detect
= gpio_get_value(GPIO_PCD
) ? 0 : 1;
126 state
->ready
= gpio_get_value(GPIO_PRDY
) ? 1 : 0;
127 state
->bvd1
= (status
& ConXS_CFSR_BVD1
) ? 1 : 0;
128 state
->bvd2
= (status
& ConXS_CFSR_BVD2
) ? 1 : 0;
129 state
->vs_3v
= (status
& ConXS_CFSR_VS1
) ? 0 : 1;
130 state
->vs_Xv
= (status
& ConXS_CFSR_VS2
) ? 0 : 1;
131 state
->wrprot
= 0; /* not available */
134 #ifndef CONFIG_MACH_TRIZEPS_CONXS
135 /* on ConXS we only have one slot. Second is inactive */
150 static int trizeps_pcmcia_configure_socket(struct soc_pcmcia_socket
*skt
,
151 const socket_state_t
*state
)
154 unsigned short power
= 0;
156 /* we do nothing here just check a bit */
157 switch (state
->Vcc
) {
158 case 0: power
&= 0xfc; break;
159 case 33: power
|= ConXS_BCR_S0_VCC_3V3
; break;
161 pr_err("%s(): Vcc 5V not supported in socket\n", __func__
);
164 pr_err("%s(): bad Vcc %u\n", __func__
, state
->Vcc
);
168 switch (state
->Vpp
) {
169 case 0: power
&= 0xf3; break;
170 case 33: power
|= ConXS_BCR_S0_VPP_3V3
; break;
172 pr_err("%s(): Vpp 12V not supported in socket\n", __func__
);
175 if (state
->Vpp
!= state
->Vcc
) {
176 pr_err("%s(): bad Vpp %u\n", __func__
, state
->Vpp
);
182 case 0: /* we only have 3.3V */
183 board_pcmcia_power(power
);
186 #ifndef CONFIG_MACH_TRIZEPS_CONXS
187 /* on ConXS we only have one slot. Second is inactive */
197 static void trizeps_pcmcia_socket_init(struct soc_pcmcia_socket
*skt
)
200 board_pcmcia_power(0x9);
203 static void trizeps_pcmcia_socket_suspend(struct soc_pcmcia_socket
*skt
)
205 board_pcmcia_power(0x0);
208 static struct pcmcia_low_level trizeps_pcmcia_ops
= {
209 .owner
= THIS_MODULE
,
210 .hw_init
= trizeps_pcmcia_hw_init
,
211 .hw_shutdown
= trizeps_pcmcia_hw_shutdown
,
212 .socket_state
= trizeps_pcmcia_socket_state
,
213 .configure_socket
= trizeps_pcmcia_configure_socket
,
214 .socket_init
= trizeps_pcmcia_socket_init
,
215 .socket_suspend
= trizeps_pcmcia_socket_suspend
,
216 #ifdef CONFIG_MACH_TRIZEPS_CONXS
224 static struct platform_device
*trizeps_pcmcia_device
;
226 static int __init
trizeps_pcmcia_init(void)
230 trizeps_pcmcia_device
= platform_device_alloc("pxa2xx-pcmcia", -1);
231 if (!trizeps_pcmcia_device
)
234 ret
= platform_device_add_data(trizeps_pcmcia_device
,
235 &trizeps_pcmcia_ops
, sizeof(trizeps_pcmcia_ops
));
238 ret
= platform_device_add(trizeps_pcmcia_device
);
241 platform_device_put(trizeps_pcmcia_device
);
246 static void __exit
trizeps_pcmcia_exit(void)
248 platform_device_unregister(trizeps_pcmcia_device
);
251 fs_initcall(trizeps_pcmcia_init
);
252 module_exit(trizeps_pcmcia_exit
);
254 MODULE_LICENSE("GPL");
255 MODULE_AUTHOR("Juergen Schindele");
256 MODULE_ALIAS("platform:pxa2xx-pcmcia");