1 From 76a102bd5c9d792db19c6c72eafdecea0311a0c9 Mon Sep 17 00:00:00 2001
2 From: Craig Hughes <craig@gumstix.com>
3 Date: Fri, 30 Oct 2009 14:16:27 -0400
4 Subject: [PATCH] [ARM] pxa: Gumstix Verdex PCMCIA support
6 Needed for the Libertas CS wireless device.
8 Signed-off-by: Bobby Powers <bobbypowers@gmail.com>
10 drivers/pcmcia/Kconfig | 3 +-
11 drivers/pcmcia/Makefile | 3 +
12 drivers/pcmcia/pxa2xx_gumstix.c | 194 +++++++++++++++++++++++++++++++++++++++
13 3 files changed, 199 insertions(+), 1 deletions(-)
14 create mode 100644 drivers/pcmcia/pxa2xx_gumstix.c
16 --- a/drivers/pcmcia/Kconfig
17 +++ b/drivers/pcmcia/Kconfig
18 @@ -221,7 +221,8 @@ config PCMCIA_PXA2XX
19 depends on ARM && ARCH_PXA && PCMCIA
20 depends on (ARCH_LUBBOCK || MACH_MAINSTONE || PXA_SHARPSL \
21 || MACH_ARMCORE || ARCH_PXA_PALM || TRIZEPS_PCMCIA \
22 - || ARCH_VIPER || ARCH_PXA_ESERIES || MACH_STARGATE2)
23 + || ARCH_VIPER || ARCH_PXA_ESERIES || MACH_STARGATE2 \
26 Say Y here to include support for the PXA2xx PCMCIA controller
28 --- a/drivers/pcmcia/Makefile
29 +++ b/drivers/pcmcia/Makefile
30 @@ -77,4 +77,7 @@ pxa2xx-obj-$(CONFIG_MACH_PALMLD) += pxa
31 pxa2xx-obj-$(CONFIG_MACH_E740) += pxa2xx_e740.o
32 pxa2xx-obj-$(CONFIG_MACH_STARGATE2) += pxa2xx_stargate2.o
34 +pxa2xx-obj-$(CONFIG_MACH_GUMSTIX_VERDEX) += pxa2xx_cs.o
35 +pxa2xx_cs-objs := pxa2xx_gumstix.o
37 obj-$(CONFIG_PCMCIA_PXA2XX) += pxa2xx_core.o $(pxa2xx-obj-y)
39 +++ b/drivers/pcmcia/pxa2xx_gumstix.c
42 + * linux/drivers/pcmcia/pxa2xx_gumstix.c
44 + * Gumstix PCMCIA specific routines. Based on Mainstone
46 + * Copyright 2004, Craig Hughes <craig@gumstix.com>
48 + * This program is free software; you can redistribute it and/or modify
49 + * it under the terms of the GNU General Public License version 2 as
50 + * published by the Free Software Foundation.
53 +#include <linux/module.h>
54 +#include <linux/init.h>
55 +#include <linux/kernel.h>
56 +#include <linux/errno.h>
57 +#include <linux/interrupt.h>
58 +#include <linux/irq.h>
59 +#include <linux/gpio.h>
61 +#include <linux/delay.h>
62 +#include <linux/platform_device.h>
64 +#include <pcmcia/ss.h>
66 +#include <mach/hardware.h>
67 +#include <asm/mach-types.h>
69 +#ifdef CONFIG_MACH_GUMSTIX_VERDEX
70 +#include <mach/pxa27x.h>
72 +#include <mach/pxa27x.h>
76 +#include <mach/gpio.h>
77 +#include <mach/gumstix.h>
78 +#include "soc_common.h"
80 +#define ARRAY_AND_SIZE(x) (x), ARRAY_SIZE(x)
82 +static struct pcmcia_irqs gumstix_pcmcia_irqs0[] = {
83 + { 0, GUMSTIX_S0_nCD_IRQ, "CF0 nCD" },
84 + { 0, GUMSTIX_S0_nSTSCHG_IRQ, "CF0 nSTSCHG" },
87 +static struct pcmcia_irqs gumstix_pcmcia_irqs1[] = {
88 + { 1, GUMSTIX_S1_nCD_IRQ, "CF1 nCD" },
89 + { 1, GUMSTIX_S1_nSTSCHG_IRQ, "CF1 nSTSCHG" },
93 +static int net_cf_vx_mode = 0;
95 +static int gumstix_pcmcia_hw_init(struct soc_pcmcia_socket *skt)
97 +/* Note: The verdex_pcmcia_pin_config is moved to gumstix_verdex.c in order to use mfp_pxa2xx_config
98 + for board-specific pin configuration instead of the old deprecated pxa_gpio_mode function. Thus,
99 + only the IRQ init is still needed to be done here. */
100 + skt->irq = (skt->nr == 0) ? ((net_cf_vx_mode == 0) ? GUMSTIX_S0_PRDY_nBSY_IRQ : GUMSTIX_S0_PRDY_nBSY_OLD_IRQ) : GUMSTIX_S1_PRDY_nBSY_IRQ;
102 + return (skt->nr == 0) ? soc_pcmcia_request_irqs(skt, gumstix_pcmcia_irqs0, ARRAY_SIZE(gumstix_pcmcia_irqs0)) :
103 + soc_pcmcia_request_irqs(skt, gumstix_pcmcia_irqs1, ARRAY_SIZE(gumstix_pcmcia_irqs1));
106 +static void gumstix_pcmcia_hw_shutdown(struct soc_pcmcia_socket *skt)
110 + soc_pcmcia_free_irqs(skt, gumstix_pcmcia_irqs0, ARRAY_SIZE(gumstix_pcmcia_irqs0));
112 + soc_pcmcia_free_irqs(skt, gumstix_pcmcia_irqs1, ARRAY_SIZE(gumstix_pcmcia_irqs1));
115 + if (net_cf_vx_mode) {
116 + gpio_free(GPIO_GUMSTIX_CF_OLD_RESET);
118 + gpio_free(GPIO_GUMSTIX_CF_RESET);
123 +static void gumstix_pcmcia_socket_state(struct soc_pcmcia_socket *skt,
124 + struct pcmcia_state *state)
126 + unsigned int cd, prdy_nbsy, nbvd1;
129 + cd = GPIO_GUMSTIX_nCD_0;
131 + prdy_nbsy = GPIO_GUMSTIX_PRDY_nBSY_0_OLD;
133 + prdy_nbsy = GPIO_GUMSTIX_PRDY_nBSY_0;
134 + nbvd1 = GPIO_GUMSTIX_nBVD1_0;
136 + cd = GPIO_GUMSTIX_nCD_1;
137 + prdy_nbsy = GPIO_GUMSTIX_PRDY_nBSY_1;
138 + nbvd1 = GPIO_GUMSTIX_nBVD1_1;
140 + state->detect = !(GPLR(cd) & GPIO_bit(cd));
141 + state->ready = !!(GPLR(prdy_nbsy) & GPIO_bit(prdy_nbsy));
142 + state->bvd1 = !!(GPLR(nbvd1) & GPIO_bit(nbvd1));
149 +static int gumstix_pcmcia_configure_socket(struct soc_pcmcia_socket *skt,
150 + const socket_state_t *state)
155 +static void gumstix_pcmcia_socket_init(struct soc_pcmcia_socket *skt)
158 + soc_pcmcia_enable_irqs(skt, gumstix_pcmcia_irqs0, ARRAY_SIZE(gumstix_pcmcia_irqs0));
160 + soc_pcmcia_enable_irqs(skt, gumstix_pcmcia_irqs1, ARRAY_SIZE(gumstix_pcmcia_irqs1));
164 +static void gumstix_pcmcia_socket_suspend(struct soc_pcmcia_socket *skt)
167 + soc_pcmcia_disable_irqs(skt, gumstix_pcmcia_irqs0, ARRAY_SIZE(gumstix_pcmcia_irqs0));
169 + soc_pcmcia_disable_irqs(skt, gumstix_pcmcia_irqs1, ARRAY_SIZE(gumstix_pcmcia_irqs1));
173 +static struct pcmcia_low_level gumstix_pcmcia_ops = {
174 + .owner = THIS_MODULE,
175 + .hw_init = gumstix_pcmcia_hw_init,
176 + .hw_shutdown = gumstix_pcmcia_hw_shutdown,
177 + .socket_state = gumstix_pcmcia_socket_state,
178 + .configure_socket = gumstix_pcmcia_configure_socket,
179 + .socket_init = gumstix_pcmcia_socket_init,
180 + .socket_suspend = gumstix_pcmcia_socket_suspend,
184 +static struct platform_device *gumstix_pcmcia_device;
186 +extern int __init gumstix_get_cf_cards(void);
188 +#ifdef CONFIG_MACH_GUMSTIX_VERDEX
189 +extern int __init gumstix_check_if_netCF_vx(void);
192 +static int __init gumstix_pcmcia_init(void)
196 +#ifdef CONFIG_MACH_GUMSTIX_VERDEX
197 + net_cf_vx_mode = gumstix_check_if_netCF_vx();
200 + gumstix_pcmcia_ops.nr = gumstix_get_cf_cards();
202 + gumstix_pcmcia_device = platform_device_alloc("pxa2xx-pcmcia", -1);
203 + if (!gumstix_pcmcia_device)
206 + ret = platform_device_add_data(gumstix_pcmcia_device, &gumstix_pcmcia_ops,
207 + sizeof(gumstix_pcmcia_ops));
210 + printk(KERN_INFO "Registering gumstix PCMCIA interface.\n");
211 + ret = platform_device_add(gumstix_pcmcia_device);
215 + platform_device_put(gumstix_pcmcia_device);
220 +static void __exit gumstix_pcmcia_exit(void)
223 + * This call is supposed to free our gumstix_pcmcia_device.
224 + * Unfortunately platform_device don't have a free method, and
225 + * we can't assume it's free of any reference at this point so we
226 + * can't free it either.
228 + platform_device_unregister(gumstix_pcmcia_device);
231 +fs_initcall(gumstix_pcmcia_init);
232 +module_exit(gumstix_pcmcia_exit);
234 +MODULE_LICENSE("GPL");