3 * Alchemy Semi Db1x00 boards specific pcmcia routines.
5 * Copyright 2002 MontaVista Software Inc.
6 * Author: MontaVista Software, Inc.
7 * ppopov@mvista.com or source@mvista.com
9 * Copyright 2004 Pete Popov, updated the driver to 2.6.
10 * Followed the sa11xx API and largely copied many of the hardware
11 * independent functions.
13 * ########################################################################
15 * This program is free software; you can distribute it and/or modify it
16 * under the terms of the GNU General Public License (Version 2) as
17 * published by the Free Software Foundation.
19 * This program is distributed in the hope it will be useful, but WITHOUT
20 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
21 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
24 * You should have received a copy of the GNU General Public License along
25 * with this program; if not, write to the Free Software Foundation, Inc.,
26 * 59 Temple Place - Suite 330, Boston MA 02111-1307, USA.
28 * ########################################################################
33 #include <linux/config.h>
34 #include <linux/module.h>
35 #include <linux/kernel.h>
36 #include <linux/errno.h>
37 #include <linux/interrupt.h>
38 #include <linux/device.h>
39 #include <linux/init.h>
42 #include <asm/signal.h>
43 #include <asm/mach-au1x00/au1000.h>
45 #if defined(CONFIG_MIPS_DB1200)
47 #elif defined(CONFIG_MIPS_PB1200)
50 #include <asm/mach-db1x00/db1x00.h>
51 static BCSR * const bcsr = (BCSR *)BCSR_KSEG1_ADDR;
54 #include "au1000_generic.h"
57 #define debug(x,args...) printk(KERN_DEBUG "%s: " x, __func__ , ##args)
59 #define debug(x,args...)
63 struct au1000_pcmcia_socket au1000_pcmcia_socket[PCMCIA_NUM_SOCKS];
64 extern int au1x00_pcmcia_socket_probe(struct device *, struct pcmcia_low_level *, int, int);
66 static int db1x00_pcmcia_hw_init(struct au1000_pcmcia_socket *skt)
68 #ifdef CONFIG_MIPS_DB1550
69 skt->irq = skt->nr ? AU1000_GPIO_5 : AU1000_GPIO_3;
70 #elif defined(CONFIG_MIPS_DB1200) || defined(CONFIG_MIPS_PB1200)
71 skt->irq = skt->nr ? BOARD_PC1_INT : BOARD_PC0_INT;
73 skt->irq = skt->nr ? AU1000_GPIO_5 : AU1000_GPIO_2;
78 static void db1x00_pcmcia_shutdown(struct au1000_pcmcia_socket *skt)
80 bcsr->pcmcia = 0; /* turn off power */
85 db1x00_pcmcia_socket_state(struct au1000_pcmcia_socket *skt, struct pcmcia_state *state)
97 vs = bcsr->status & 0x3;
98 #if defined(CONFIG_MIPS_DB1200) || defined(CONFIG_MIPS_PB1200)
99 inserted = BOARD_CARD_INSERTED(0);
101 inserted = !(bcsr->status & (1<<4));
105 vs = (bcsr->status & 0xC)>>2;
106 #if defined(CONFIG_MIPS_DB1200) || defined(CONFIG_MIPS_PB1200)
107 inserted = BOARD_CARD_INSERTED(1);
109 inserted = !(bcsr->status & (1<<5));
112 default:/* should never happen */
117 debug("db1x00 socket %d: inserted %d, vs %d pcmcia %x\n",
118 skt->nr, inserted, vs, bcsr->pcmcia);
129 /* return without setting 'detect' */
130 printk(KERN_ERR "db1x00 bad VS (%d)\n",
137 /* if the card was previously inserted and then ejected,
138 * we should turn off power to it
140 if ((skt->nr == 0) && (bcsr->pcmcia & BCSR_PCMCIA_PC0RST)) {
141 bcsr->pcmcia &= ~(BCSR_PCMCIA_PC0RST |
142 BCSR_PCMCIA_PC0DRVEN |
147 else if ((skt->nr == 1) && bcsr->pcmcia & BCSR_PCMCIA_PC1RST) {
148 bcsr->pcmcia &= ~(BCSR_PCMCIA_PC1RST |
149 BCSR_PCMCIA_PC1DRVEN |
162 db1x00_pcmcia_configure_socket(struct au1000_pcmcia_socket *skt, struct socket_state_t *state)
167 debug("config_skt %d Vcc %dV Vpp %dV, reset %d\n",
168 sock, state->Vcc, state->Vpp,
169 state->flags & SS_RESET);
171 /* pcmcia reg was set to zero at init time. Be careful when
172 * initializing a socket not to wipe out the settings of the
176 pwr &= ~(0xf << sock*8); /* clear voltage settings */
181 pwr |= SET_VCC_VPP(0,0,sock);
183 case 50: /* Vcc 5V */
186 pwr |= SET_VCC_VPP(2,0,sock);
189 pwr |= SET_VCC_VPP(2,1,sock);
192 pwr |= SET_VCC_VPP(2,2,sock);
196 pwr |= SET_VCC_VPP(0,0,sock);
197 printk("%s: bad Vcc/Vpp (%d:%d)\n",
204 case 33: /* Vcc 3.3V */
207 pwr |= SET_VCC_VPP(1,0,sock);
210 pwr |= SET_VCC_VPP(1,2,sock);
213 pwr |= SET_VCC_VPP(1,1,sock);
217 pwr |= SET_VCC_VPP(0,0,sock);
218 printk("%s: bad Vcc/Vpp (%d:%d)\n",
225 default: /* what's this ? */
226 pwr |= SET_VCC_VPP(0,0,sock);
227 printk(KERN_ERR "%s: bad Vcc %d\n",
228 __FUNCTION__, state->Vcc);
236 if (!(state->flags & SS_RESET)) {
237 pwr |= BCSR_PCMCIA_PC0DRVEN;
240 pwr |= BCSR_PCMCIA_PC0RST;
245 pwr &= ~(BCSR_PCMCIA_PC0RST | BCSR_PCMCIA_PC0DRVEN);
251 if (!(state->flags & SS_RESET)) {
252 pwr |= BCSR_PCMCIA_PC1DRVEN;
255 pwr |= BCSR_PCMCIA_PC1RST;
260 pwr &= ~(BCSR_PCMCIA_PC1RST | BCSR_PCMCIA_PC1DRVEN);
269 * Enable card status IRQs on (re-)initialisation. This can
270 * be called at initialisation, power management event, or
273 void db1x00_socket_init(struct au1000_pcmcia_socket *skt)
275 /* nothing to do for now */
279 * Disable card status IRQs and PCMCIA bus on suspend.
281 void db1x00_socket_suspend(struct au1000_pcmcia_socket *skt)
283 /* nothing to do for now */
286 struct pcmcia_low_level db1x00_pcmcia_ops = {
287 .owner = THIS_MODULE,
289 .hw_init = db1x00_pcmcia_hw_init,
290 .hw_shutdown = db1x00_pcmcia_shutdown,
292 .socket_state = db1x00_pcmcia_socket_state,
293 .configure_socket = db1x00_pcmcia_configure_socket,
295 .socket_init = db1x00_socket_init,
296 .socket_suspend = db1x00_socket_suspend
299 int __init au1x_board_init(struct device *dev)
302 bcsr->pcmcia = 0; /* turn off power, if it's not already off */
304 ret = au1x00_pcmcia_socket_probe(dev, &db1x00_pcmcia_ops, 0, 2);