blob: 6ee42b4c3e68b902248b4a2416c6d0add4fcb7f3 [file] [log] [blame]
Mike Rapoport87944f32007-09-23 16:00:20 +01001/*
2 * linux/drivers/pcmcia/pxa/pxa_cm_x270.c
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 *
Mike Rapoport779c5452008-06-17 09:48:03 +01008 * Compulab Ltd., 2003, 2007, 2008
Mike Rapoport87944f32007-09-23 16:00:20 +01009 * Mike Rapoport <mike@compulab.co.il>
10 *
11 */
12
Mike Rapoport87944f32007-09-23 16:00:20 +010013#include <linux/platform_device.h>
14#include <linux/irq.h>
15#include <linux/delay.h>
Mike Rapoport779c5452008-06-17 09:48:03 +010016#include <linux/gpio.h>
Mike Rapoport87944f32007-09-23 16:00:20 +010017
Russell King04ba0f62008-04-24 15:23:25 +010018#include <asm/mach-types.h>
Mike Rapoport87944f32007-09-23 16:00:20 +010019
20#include "soc_common.h"
21
Mike Rapoport779c5452008-06-17 09:48:03 +010022#define GPIO_PCMCIA_S0_CD_VALID (84)
23#define GPIO_PCMCIA_S0_RDYINT (82)
24#define GPIO_PCMCIA_RESET (53)
25
26#define PCMCIA_S0_CD_VALID IRQ_GPIO(GPIO_PCMCIA_S0_CD_VALID)
27#define PCMCIA_S0_RDYINT IRQ_GPIO(GPIO_PCMCIA_S0_RDYINT)
28
29
Mike Rapoport87944f32007-09-23 16:00:20 +010030static struct pcmcia_irqs irqs[] = {
31 { 0, PCMCIA_S0_CD_VALID, "PCMCIA0 CD" },
Mike Rapoport87944f32007-09-23 16:00:20 +010032};
33
34static int cmx270_pcmcia_hw_init(struct soc_pcmcia_socket *skt)
35{
Mike Rapoport779c5452008-06-17 09:48:03 +010036 int ret = gpio_request(GPIO_PCMCIA_RESET, "PCCard reset");
37 if (ret)
38 return ret;
39 gpio_direction_output(GPIO_PCMCIA_RESET, 0);
Mike Rapoport87944f32007-09-23 16:00:20 +010040
Russell King - ARM Linux66024db2009-03-29 22:45:26 +010041 skt->socket.pci_irq = PCMCIA_S0_RDYINT;
Mike Rapoport779c5452008-06-17 09:48:03 +010042 ret = soc_pcmcia_request_irqs(skt, irqs, ARRAY_SIZE(irqs));
43 if (!ret)
44 gpio_free(GPIO_PCMCIA_RESET);
Mike Rapoport87944f32007-09-23 16:00:20 +010045
Mike Rapoport779c5452008-06-17 09:48:03 +010046 return ret;
Mike Rapoport87944f32007-09-23 16:00:20 +010047}
48
49static void cmx270_pcmcia_shutdown(struct soc_pcmcia_socket *skt)
50{
51 soc_pcmcia_free_irqs(skt, irqs, ARRAY_SIZE(irqs));
Mike Rapoport779c5452008-06-17 09:48:03 +010052 gpio_free(GPIO_PCMCIA_RESET);
Mike Rapoport87944f32007-09-23 16:00:20 +010053}
54
55
56static void cmx270_pcmcia_socket_state(struct soc_pcmcia_socket *skt,
57 struct pcmcia_state *state)
58{
Mike Rapoport779c5452008-06-17 09:48:03 +010059 state->detect = (gpio_get_value(GPIO_PCMCIA_S0_CD_VALID) == 0) ? 1 : 0;
60 state->ready = (gpio_get_value(GPIO_PCMCIA_S0_RDYINT) == 0) ? 0 : 1;
Mike Rapoport87944f32007-09-23 16:00:20 +010061 state->bvd1 = 1;
62 state->bvd2 = 1;
63 state->vs_3v = 0;
64 state->vs_Xv = 0;
65 state->wrprot = 0; /* not available */
66}
67
68
69static int cmx270_pcmcia_configure_socket(struct soc_pcmcia_socket *skt,
70 const socket_state_t *state)
71{
Mike Rapoport87944f32007-09-23 16:00:20 +010072 switch (skt->nr) {
73 case 0:
74 if (state->flags & SS_RESET) {
Mike Rapoport779c5452008-06-17 09:48:03 +010075 gpio_set_value(GPIO_PCMCIA_RESET, 1);
Mike Rapoport87944f32007-09-23 16:00:20 +010076 udelay(10);
Mike Rapoport779c5452008-06-17 09:48:03 +010077 gpio_set_value(GPIO_PCMCIA_RESET, 0);
Mike Rapoport87944f32007-09-23 16:00:20 +010078 }
79 break;
80 }
81
Mike Rapoport87944f32007-09-23 16:00:20 +010082 return 0;
83}
84
Russell King4e5e8de2008-04-24 15:28:11 +010085static struct pcmcia_low_level cmx270_pcmcia_ops __initdata = {
Mike Rapoport87944f32007-09-23 16:00:20 +010086 .owner = THIS_MODULE,
87 .hw_init = cmx270_pcmcia_hw_init,
88 .hw_shutdown = cmx270_pcmcia_shutdown,
89 .socket_state = cmx270_pcmcia_socket_state,
90 .configure_socket = cmx270_pcmcia_configure_socket,
Mike Rapoport779c5452008-06-17 09:48:03 +010091 .nr = 1,
Mike Rapoport87944f32007-09-23 16:00:20 +010092};
93
94static struct platform_device *cmx270_pcmcia_device;
95
Mike Rapoport8616e2f2008-10-05 10:27:22 +010096int __init cmx270_pcmcia_init(void)
Mike Rapoport87944f32007-09-23 16:00:20 +010097{
98 int ret;
99
Mike Rapoport87944f32007-09-23 16:00:20 +0100100 cmx270_pcmcia_device = platform_device_alloc("pxa2xx-pcmcia", -1);
101
102 if (!cmx270_pcmcia_device)
103 return -ENOMEM;
104
Russell King4e5e8de2008-04-24 15:28:11 +0100105 ret = platform_device_add_data(cmx270_pcmcia_device, &cmx270_pcmcia_ops,
106 sizeof(cmx270_pcmcia_ops));
Mike Rapoport87944f32007-09-23 16:00:20 +0100107
Russell King4e5e8de2008-04-24 15:28:11 +0100108 if (ret == 0) {
109 printk(KERN_INFO "Registering cm-x270 PCMCIA interface.\n");
110 ret = platform_device_add(cmx270_pcmcia_device);
111 }
Mike Rapoport87944f32007-09-23 16:00:20 +0100112
113 if (ret)
114 platform_device_put(cmx270_pcmcia_device);
115
116 return ret;
117}
118
Mike Rapoport8616e2f2008-10-05 10:27:22 +0100119void __exit cmx270_pcmcia_exit(void)
Mike Rapoport87944f32007-09-23 16:00:20 +0100120{
121 platform_device_unregister(cmx270_pcmcia_device);
122}