2 * drivers/pcmcia/sa1100_h3600.c
4 * PCMCIA implementation routines for H3600
7 #include <linux/module.h>
8 #include <linux/kernel.h>
9 #include <linux/device.h>
10 #include <linux/interrupt.h>
11 #include <linux/init.h>
12 #include <linux/delay.h>
13 #include <linux/gpio.h>
15 #include <mach/hardware.h>
17 #include <asm/mach-types.h>
18 #include <mach/h3xxx.h>
20 #include "sa1100_generic.h"
22 static int h3600_pcmcia_hw_init(struct soc_pcmcia_socket
*skt
)
28 skt
->stat
[SOC_STAT_CD
].gpio
= H3XXX_GPIO_PCMCIA_CD0
;
29 skt
->stat
[SOC_STAT_CD
].name
= "PCMCIA CD0";
30 skt
->stat
[SOC_STAT_RDY
].gpio
= H3XXX_GPIO_PCMCIA_IRQ0
;
31 skt
->stat
[SOC_STAT_RDY
].name
= "PCMCIA IRQ0";
33 err
= gpio_request(H3XXX_EGPIO_OPT_NVRAM_ON
, "OPT NVRAM ON");
36 err
= gpio_direction_output(H3XXX_EGPIO_OPT_NVRAM_ON
, 0);
39 err
= gpio_request(H3XXX_EGPIO_OPT_ON
, "OPT ON");
42 err
= gpio_direction_output(H3XXX_EGPIO_OPT_ON
, 0);
45 err
= gpio_request(H3XXX_EGPIO_OPT_RESET
, "OPT RESET");
48 err
= gpio_direction_output(H3XXX_EGPIO_OPT_RESET
, 0);
51 err
= gpio_request(H3XXX_EGPIO_CARD_RESET
, "PCMCIA CARD RESET");
54 err
= gpio_direction_output(H3XXX_EGPIO_CARD_RESET
, 0);
59 skt
->stat
[SOC_STAT_CD
].gpio
= H3XXX_GPIO_PCMCIA_CD1
;
60 skt
->stat
[SOC_STAT_CD
].name
= "PCMCIA CD1";
61 skt
->stat
[SOC_STAT_RDY
].gpio
= H3XXX_GPIO_PCMCIA_IRQ1
;
62 skt
->stat
[SOC_STAT_RDY
].name
= "PCMCIA IRQ1";
67 err06
: gpio_free(H3XXX_EGPIO_CARD_RESET
);
68 err05
: gpio_free(H3XXX_EGPIO_OPT_RESET
);
69 err04
: gpio_free(H3XXX_EGPIO_OPT_ON
);
70 err03
: gpio_free(H3XXX_EGPIO_OPT_NVRAM_ON
);
71 err01
: gpio_free(H3XXX_GPIO_PCMCIA_IRQ0
);
75 static void h3600_pcmcia_hw_shutdown(struct soc_pcmcia_socket
*skt
)
80 gpio_set_value(H3XXX_EGPIO_OPT_NVRAM_ON
, 0);
81 gpio_set_value(H3XXX_EGPIO_OPT_ON
, 0);
82 gpio_set_value(H3XXX_EGPIO_OPT_RESET
, 1);
84 gpio_free(H3XXX_EGPIO_CARD_RESET
);
85 gpio_free(H3XXX_EGPIO_OPT_RESET
);
86 gpio_free(H3XXX_EGPIO_OPT_ON
);
87 gpio_free(H3XXX_EGPIO_OPT_NVRAM_ON
);
95 h3600_pcmcia_socket_state(struct soc_pcmcia_socket
*skt
, struct pcmcia_state
*state
)
104 h3600_pcmcia_configure_socket(struct soc_pcmcia_socket
*skt
, const socket_state_t
*state
)
106 if (state
->Vcc
!= 0 && state
->Vcc
!= 33 && state
->Vcc
!= 50) {
107 printk(KERN_ERR
"h3600_pcmcia: unrecognized Vcc %u.%uV\n",
108 state
->Vcc
/ 10, state
->Vcc
% 10);
112 gpio_set_value(H3XXX_EGPIO_CARD_RESET
, !!(state
->flags
& SS_RESET
));
114 /* Silently ignore Vpp, output enable, speaker enable. */
119 static void h3600_pcmcia_socket_init(struct soc_pcmcia_socket
*skt
)
122 gpio_set_value(H3XXX_EGPIO_OPT_NVRAM_ON
, 1);
123 gpio_set_value(H3XXX_EGPIO_OPT_ON
, 1);
124 gpio_set_value(H3XXX_EGPIO_OPT_RESET
, 0);
129 static void h3600_pcmcia_socket_suspend(struct soc_pcmcia_socket
*skt
)
132 * FIXME: This doesn't fit well. We don't have the mechanism in
133 * the generic PCMCIA layer to deal with the idea of two sockets
134 * on one bus. We rely on the cs.c behaviour shutting down
135 * socket 0 then socket 1.
138 gpio_set_value(H3XXX_EGPIO_OPT_ON
, 0);
139 gpio_set_value(H3XXX_EGPIO_OPT_NVRAM_ON
, 0);
140 /* hmm, does this suck power? */
141 gpio_set_value(H3XXX_EGPIO_OPT_RESET
, 1);
145 struct pcmcia_low_level h3600_pcmcia_ops
= {
146 .owner
= THIS_MODULE
,
147 .hw_init
= h3600_pcmcia_hw_init
,
148 .hw_shutdown
= h3600_pcmcia_hw_shutdown
,
149 .socket_state
= h3600_pcmcia_socket_state
,
150 .configure_socket
= h3600_pcmcia_configure_socket
,
152 .socket_init
= h3600_pcmcia_socket_init
,
153 .socket_suspend
= h3600_pcmcia_socket_suspend
,
156 int pcmcia_h3600_init(struct device
*dev
)
160 if (machine_is_h3600() || machine_is_h3100())
161 ret
= sa11xx_drv_pcmcia_probe(dev
, &h3600_pcmcia_ops
, 0, 2);