2 * linux/drivers/pcmcia/pxa2xx_palmtx.c
4 * Driver for Palm T|X PCMCIA
6 * Copyright (C) 2007-2008 Marek Vasut <marek.vasut@gmail.com>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
14 #include <linux/module.h>
15 #include <linux/platform_device.h>
17 #include <asm/mach-types.h>
19 #include <mach/gpio.h>
20 #include <mach/palmtx.h>
22 #include "soc_common.h"
24 static int palmtx_pcmcia_hw_init(struct soc_pcmcia_socket *skt)
28 ret = gpio_request(GPIO_NR_PALMTX_PCMCIA_POWER1, "PCMCIA PWR1");
31 ret = gpio_direction_output(GPIO_NR_PALMTX_PCMCIA_POWER1, 0);
35 ret = gpio_request(GPIO_NR_PALMTX_PCMCIA_POWER2, "PCMCIA PWR2");
38 ret = gpio_direction_output(GPIO_NR_PALMTX_PCMCIA_POWER2, 0);
42 ret = gpio_request(GPIO_NR_PALMTX_PCMCIA_RESET, "PCMCIA RST");
45 ret = gpio_direction_output(GPIO_NR_PALMTX_PCMCIA_RESET, 1);
49 ret = gpio_request(GPIO_NR_PALMTX_PCMCIA_READY, "PCMCIA RDY");
52 ret = gpio_direction_input(GPIO_NR_PALMTX_PCMCIA_READY);
56 skt->irq = gpio_to_irq(GPIO_NR_PALMTX_PCMCIA_READY);
60 gpio_free(GPIO_NR_PALMTX_PCMCIA_READY);
62 gpio_free(GPIO_NR_PALMTX_PCMCIA_RESET);
64 gpio_free(GPIO_NR_PALMTX_PCMCIA_POWER2);
66 gpio_free(GPIO_NR_PALMTX_PCMCIA_POWER1);
71 static void palmtx_pcmcia_hw_shutdown(struct soc_pcmcia_socket *skt)
73 gpio_free(GPIO_NR_PALMTX_PCMCIA_READY);
74 gpio_free(GPIO_NR_PALMTX_PCMCIA_RESET);
75 gpio_free(GPIO_NR_PALMTX_PCMCIA_POWER2);
76 gpio_free(GPIO_NR_PALMTX_PCMCIA_POWER1);
79 static void palmtx_pcmcia_socket_state(struct soc_pcmcia_socket *skt,
80 struct pcmcia_state *state)
82 state->detect = 1; /* always inserted */
83 state->ready = !!gpio_get_value(GPIO_NR_PALMTX_PCMCIA_READY);
92 palmtx_pcmcia_configure_socket(struct soc_pcmcia_socket *skt,
93 const socket_state_t *state)
95 gpio_set_value(GPIO_NR_PALMTX_PCMCIA_POWER1, 1);
96 gpio_set_value(GPIO_NR_PALMTX_PCMCIA_POWER2, 1);
97 gpio_set_value(GPIO_NR_PALMTX_PCMCIA_RESET,
98 !!(state->flags & SS_RESET));
103 static void palmtx_pcmcia_socket_init(struct soc_pcmcia_socket *skt)
107 static void palmtx_pcmcia_socket_suspend(struct soc_pcmcia_socket *skt)
111 static struct pcmcia_low_level palmtx_pcmcia_ops = {
112 .owner = THIS_MODULE,
117 .hw_init = palmtx_pcmcia_hw_init,
118 .hw_shutdown = palmtx_pcmcia_hw_shutdown,
120 .socket_state = palmtx_pcmcia_socket_state,
121 .configure_socket = palmtx_pcmcia_configure_socket,
123 .socket_init = palmtx_pcmcia_socket_init,
124 .socket_suspend = palmtx_pcmcia_socket_suspend,
127 static struct platform_device *palmtx_pcmcia_device;
129 static int __init palmtx_pcmcia_init(void)
133 if (!machine_is_palmtx())
136 palmtx_pcmcia_device = platform_device_alloc("pxa2xx-pcmcia", -1);
137 if (!palmtx_pcmcia_device)
140 ret = platform_device_add_data(palmtx_pcmcia_device, &palmtx_pcmcia_ops,
141 sizeof(palmtx_pcmcia_ops));
144 ret = platform_device_add(palmtx_pcmcia_device);
147 platform_device_put(palmtx_pcmcia_device);
152 static void __exit palmtx_pcmcia_exit(void)
154 platform_device_unregister(palmtx_pcmcia_device);
157 module_init(palmtx_pcmcia_init);
158 module_exit(palmtx_pcmcia_exit);
160 MODULE_AUTHOR("Marek Vasut <marek.vasut@gmail.com>");
161 MODULE_DESCRIPTION("PCMCIA support for Palm T|X");
162 MODULE_ALIAS("platform:pxa2xx-pcmcia");
163 MODULE_LICENSE("GPL");