blob: efb5f132851b67d1d47dedd8ae1795fd60f51986 [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>
Paul Gortmaker402b20d2011-07-31 16:21:42 -040017#include <linux/export.h>
Mike Rapoport87944f32007-09-23 16:00:20 +010018
Mike Rapoport87944f32007-09-23 16:00:20 +010019#include "soc_common.h"
20
Mike Rapoport779c5452008-06-17 09:48:03 +010021#define GPIO_PCMCIA_S0_CD_VALID (84)
22#define GPIO_PCMCIA_S0_RDYINT (82)
23#define GPIO_PCMCIA_RESET (53)
24
Mike Rapoport87944f32007-09-23 16:00:20 +010025static int cmx270_pcmcia_hw_init(struct soc_pcmcia_socket *skt)
26{
Mike Rapoport779c5452008-06-17 09:48:03 +010027 int ret = gpio_request(GPIO_PCMCIA_RESET, "PCCard reset");
28 if (ret)
29 return ret;
30 gpio_direction_output(GPIO_PCMCIA_RESET, 0);
Mike Rapoport87944f32007-09-23 16:00:20 +010031
Russell Kinga9bb5a42012-01-13 22:56:32 +000032 skt->stat[SOC_STAT_CD].gpio = GPIO_PCMCIA_S0_CD_VALID;
33 skt->stat[SOC_STAT_CD].name = "PCMCIA0 CD";
34 skt->stat[SOC_STAT_RDY].gpio = GPIO_PCMCIA_S0_RDYINT;
35 skt->stat[SOC_STAT_RDY].name = "PCMCIA0 RDY";
Mike Rapoport87944f32007-09-23 16:00:20 +010036
Mike Rapoport779c5452008-06-17 09:48:03 +010037 return ret;
Mike Rapoport87944f32007-09-23 16:00:20 +010038}
39
40static void cmx270_pcmcia_shutdown(struct soc_pcmcia_socket *skt)
41{
Mike Rapoport779c5452008-06-17 09:48:03 +010042 gpio_free(GPIO_PCMCIA_RESET);
Mike Rapoport87944f32007-09-23 16:00:20 +010043}
44
45
46static void cmx270_pcmcia_socket_state(struct soc_pcmcia_socket *skt,
47 struct pcmcia_state *state)
48{
Mike Rapoport87944f32007-09-23 16:00:20 +010049 state->vs_3v = 0;
50 state->vs_Xv = 0;
51 state->wrprot = 0; /* not available */
52}
53
54
55static int cmx270_pcmcia_configure_socket(struct soc_pcmcia_socket *skt,
56 const socket_state_t *state)
57{
Mike Rapoport87944f32007-09-23 16:00:20 +010058 switch (skt->nr) {
59 case 0:
60 if (state->flags & SS_RESET) {
Mike Rapoport779c5452008-06-17 09:48:03 +010061 gpio_set_value(GPIO_PCMCIA_RESET, 1);
Mike Rapoport87944f32007-09-23 16:00:20 +010062 udelay(10);
Mike Rapoport779c5452008-06-17 09:48:03 +010063 gpio_set_value(GPIO_PCMCIA_RESET, 0);
Mike Rapoport87944f32007-09-23 16:00:20 +010064 }
65 break;
66 }
67
Mike Rapoport87944f32007-09-23 16:00:20 +010068 return 0;
69}
70
Russell King4e5e8de2008-04-24 15:28:11 +010071static struct pcmcia_low_level cmx270_pcmcia_ops __initdata = {
Mike Rapoport87944f32007-09-23 16:00:20 +010072 .owner = THIS_MODULE,
73 .hw_init = cmx270_pcmcia_hw_init,
74 .hw_shutdown = cmx270_pcmcia_shutdown,
75 .socket_state = cmx270_pcmcia_socket_state,
76 .configure_socket = cmx270_pcmcia_configure_socket,
Mike Rapoport779c5452008-06-17 09:48:03 +010077 .nr = 1,
Mike Rapoport87944f32007-09-23 16:00:20 +010078};
79
80static struct platform_device *cmx270_pcmcia_device;
81
Mike Rapoport8616e2f2008-10-05 10:27:22 +010082int __init cmx270_pcmcia_init(void)
Mike Rapoport87944f32007-09-23 16:00:20 +010083{
84 int ret;
85
Mike Rapoport87944f32007-09-23 16:00:20 +010086 cmx270_pcmcia_device = platform_device_alloc("pxa2xx-pcmcia", -1);
87
88 if (!cmx270_pcmcia_device)
89 return -ENOMEM;
90
Russell King4e5e8de2008-04-24 15:28:11 +010091 ret = platform_device_add_data(cmx270_pcmcia_device, &cmx270_pcmcia_ops,
92 sizeof(cmx270_pcmcia_ops));
Mike Rapoport87944f32007-09-23 16:00:20 +010093
Russell King4e5e8de2008-04-24 15:28:11 +010094 if (ret == 0) {
95 printk(KERN_INFO "Registering cm-x270 PCMCIA interface.\n");
96 ret = platform_device_add(cmx270_pcmcia_device);
97 }
Mike Rapoport87944f32007-09-23 16:00:20 +010098
99 if (ret)
100 platform_device_put(cmx270_pcmcia_device);
101
102 return ret;
103}
104
Mike Rapoport8616e2f2008-10-05 10:27:22 +0100105void __exit cmx270_pcmcia_exit(void)
Mike Rapoport87944f32007-09-23 16:00:20 +0100106{
107 platform_device_unregister(cmx270_pcmcia_device);
108}