mm/page_alloc.c: remove zone_type argument of build_zonelists_node
[linux-2.6.git] / drivers / pcmcia / m8xx_pcmcia.c
blob18c0d8d1ddf779dbba8f09d7b898b7b687bd0a74
1 /*
2 * m8xx_pcmcia.c - Linux PCMCIA socket driver for the mpc8xx series.
4 * (C) 1999-2000 Magnus Damm <damm@opensource.se>
5 * (C) 2001-2002 Montavista Software, Inc.
6 * <mlocke@mvista.com>
8 * Support for two slots by Cyclades Corporation
9 * <oliver.kurth@cyclades.de>
10 * Further fixes, v2.6 kernel port
11 * <marcelo.tosatti@cyclades.com>
13 * Some fixes, additions (C) 2005-2007 Montavista Software, Inc.
14 * <vbordug@ru.mvista.com>
16 * "The ExCA standard specifies that socket controllers should provide
17 * two IO and five memory windows per socket, which can be independently
18 * configured and positioned in the host address space and mapped to
19 * arbitrary segments of card address space. " - David A Hinds. 1999
21 * This controller does _not_ meet the ExCA standard.
23 * m8xx pcmcia controller brief info:
24 * + 8 windows (attrib, mem, i/o)
25 * + up to two slots (SLOT_A and SLOT_B)
26 * + inputpins, outputpins, event and mask registers.
27 * - no offset register. sigh.
29 * Because of the lacking offset register we must map the whole card.
30 * We assign each memory window PCMCIA_MEM_WIN_SIZE address space.
31 * Make sure there is (PCMCIA_MEM_WIN_SIZE * PCMCIA_MEM_WIN_NO
32 * * PCMCIA_SOCKETS_NO) bytes at PCMCIA_MEM_WIN_BASE.
33 * The i/o windows are dynamically allocated at PCMCIA_IO_WIN_BASE.
34 * They are maximum 64KByte each...
37 #include <linux/module.h>
38 #include <linux/init.h>
39 #include <linux/types.h>
40 #include <linux/fcntl.h>
41 #include <linux/string.h>
43 #include <linux/kernel.h>
44 #include <linux/errno.h>
45 #include <linux/timer.h>
46 #include <linux/ioport.h>
47 #include <linux/delay.h>
48 #include <linux/interrupt.h>
49 #include <linux/fsl_devices.h>
50 #include <linux/bitops.h>
51 #include <linux/of_device.h>
52 #include <linux/of_platform.h>
54 #include <asm/io.h>
55 #include <asm/time.h>
56 #include <asm/mpc8xx.h>
57 #include <asm/8xx_immap.h>
58 #include <asm/irq.h>
59 #include <asm/fs_pd.h>
61 #include <pcmcia/ss.h>
63 #define pcmcia_info(args...) printk(KERN_INFO "m8xx_pcmcia: "args)
64 #define pcmcia_error(args...) printk(KERN_ERR "m8xx_pcmcia: "args)
66 static const char *version = "Version 0.06, Aug 2005";
67 MODULE_LICENSE("Dual MPL/GPL");
69 #if !defined(CONFIG_PCMCIA_SLOT_A) && !defined(CONFIG_PCMCIA_SLOT_B)
71 /* The ADS board use SLOT_A */
72 #ifdef CONFIG_ADS
73 #define CONFIG_PCMCIA_SLOT_A
74 #define CONFIG_BD_IS_MHZ
75 #endif
77 /* The FADS series are a mess */
78 #ifdef CONFIG_FADS
79 #if defined(CONFIG_MPC860T) || defined(CONFIG_MPC860) || defined(CONFIG_MPC821)
80 #define CONFIG_PCMCIA_SLOT_A
81 #else
82 #define CONFIG_PCMCIA_SLOT_B
83 #endif
84 #endif
86 #if defined(CONFIG_MPC885ADS)
87 #define CONFIG_PCMCIA_SLOT_A
88 #define PCMCIA_GLITCHY_CD
89 #endif
91 /* Cyclades ACS uses both slots */
92 #ifdef CONFIG_PRxK
93 #define CONFIG_PCMCIA_SLOT_A
94 #define CONFIG_PCMCIA_SLOT_B
95 #endif
97 #endif /* !defined(CONFIG_PCMCIA_SLOT_A) && !defined(CONFIG_PCMCIA_SLOT_B) */
99 #if defined(CONFIG_PCMCIA_SLOT_A) && defined(CONFIG_PCMCIA_SLOT_B)
101 #define PCMCIA_SOCKETS_NO 2
102 /* We have only 8 windows, dualsocket support will be limited. */
103 #define PCMCIA_MEM_WIN_NO 2
104 #define PCMCIA_IO_WIN_NO 2
105 #define PCMCIA_SLOT_MSG "SLOT_A and SLOT_B"
107 #elif defined(CONFIG_PCMCIA_SLOT_A) || defined(CONFIG_PCMCIA_SLOT_B)
109 #define PCMCIA_SOCKETS_NO 1
110 /* full support for one slot */
111 #define PCMCIA_MEM_WIN_NO 5
112 #define PCMCIA_IO_WIN_NO 2
114 /* define _slot_ to be able to optimize macros */
116 #ifdef CONFIG_PCMCIA_SLOT_A
117 #define _slot_ 0
118 #define PCMCIA_SLOT_MSG "SLOT_A"
119 #else
120 #define _slot_ 1
121 #define PCMCIA_SLOT_MSG "SLOT_B"
122 #endif
124 #else
125 #error m8xx_pcmcia: Bad configuration!
126 #endif
128 /* ------------------------------------------------------------------------- */
130 #define PCMCIA_MEM_WIN_BASE 0xe0000000 /* base address for memory window 0 */
131 #define PCMCIA_MEM_WIN_SIZE 0x04000000 /* each memory window is 64 MByte */
132 #define PCMCIA_IO_WIN_BASE _IO_BASE /* base address for io window 0 */
133 /* ------------------------------------------------------------------------- */
135 static int pcmcia_schlvl;
137 static DEFINE_SPINLOCK(events_lock);
139 #define PCMCIA_SOCKET_KEY_5V 1
140 #define PCMCIA_SOCKET_KEY_LV 2
142 /* look up table for pgcrx registers */
143 static u32 *m8xx_pgcrx[2];
146 * This structure is used to address each window in the PCMCIA controller.
148 * Keep in mind that we assume that pcmcia_win[n+1] is mapped directly
149 * after pcmcia_win[n]...
152 struct pcmcia_win {
153 u32 br;
154 u32 or;
158 * For some reason the hardware guys decided to make both slots share
159 * some registers.
161 * Could someone invent object oriented hardware ?
163 * The macros are used to get the right bit from the registers.
164 * SLOT_A : slot = 0
165 * SLOT_B : slot = 1
168 #define M8XX_PCMCIA_VS1(slot) (0x80000000 >> (slot << 4))
169 #define M8XX_PCMCIA_VS2(slot) (0x40000000 >> (slot << 4))
170 #define M8XX_PCMCIA_VS_MASK(slot) (0xc0000000 >> (slot << 4))
171 #define M8XX_PCMCIA_VS_SHIFT(slot) (30 - (slot << 4))
173 #define M8XX_PCMCIA_WP(slot) (0x20000000 >> (slot << 4))
174 #define M8XX_PCMCIA_CD2(slot) (0x10000000 >> (slot << 4))
175 #define M8XX_PCMCIA_CD1(slot) (0x08000000 >> (slot << 4))
176 #define M8XX_PCMCIA_BVD2(slot) (0x04000000 >> (slot << 4))
177 #define M8XX_PCMCIA_BVD1(slot) (0x02000000 >> (slot << 4))
178 #define M8XX_PCMCIA_RDY(slot) (0x01000000 >> (slot << 4))
179 #define M8XX_PCMCIA_RDY_L(slot) (0x00800000 >> (slot << 4))
180 #define M8XX_PCMCIA_RDY_H(slot) (0x00400000 >> (slot << 4))
181 #define M8XX_PCMCIA_RDY_R(slot) (0x00200000 >> (slot << 4))
182 #define M8XX_PCMCIA_RDY_F(slot) (0x00100000 >> (slot << 4))
183 #define M8XX_PCMCIA_MASK(slot) (0xFFFF0000 >> (slot << 4))
185 #define M8XX_PCMCIA_POR_VALID 0x00000001
186 #define M8XX_PCMCIA_POR_WRPROT 0x00000002
187 #define M8XX_PCMCIA_POR_ATTRMEM 0x00000010
188 #define M8XX_PCMCIA_POR_IO 0x00000018
189 #define M8XX_PCMCIA_POR_16BIT 0x00000040
191 #define M8XX_PGCRX(slot) m8xx_pgcrx[slot]
193 #define M8XX_PGCRX_CXOE 0x00000080
194 #define M8XX_PGCRX_CXRESET 0x00000040
196 /* we keep one lookup table per socket to check flags */
198 #define PCMCIA_EVENTS_MAX 5 /* 4 max at a time + termination */
200 struct event_table {
201 u32 regbit;
202 u32 eventbit;
205 static const char driver_name[] = "m8xx-pcmcia";
207 struct socket_info {
208 void (*handler) (void *info, u32 events);
209 void *info;
211 u32 slot;
212 pcmconf8xx_t *pcmcia;
213 u32 bus_freq;
214 int hwirq;
216 socket_state_t state;
217 struct pccard_mem_map mem_win[PCMCIA_MEM_WIN_NO];
218 struct pccard_io_map io_win[PCMCIA_IO_WIN_NO];
219 struct event_table events[PCMCIA_EVENTS_MAX];
220 struct pcmcia_socket socket;
223 static struct socket_info socket[PCMCIA_SOCKETS_NO];
226 * Search this table to see if the windowsize is
227 * supported...
230 #define M8XX_SIZES_NO 32
232 static const u32 m8xx_size_to_gray[M8XX_SIZES_NO] = {
233 0x00000001, 0x00000002, 0x00000008, 0x00000004,
234 0x00000080, 0x00000040, 0x00000010, 0x00000020,
235 0x00008000, 0x00004000, 0x00001000, 0x00002000,
236 0x00000100, 0x00000200, 0x00000800, 0x00000400,
238 0x0fffffff, 0xffffffff, 0xffffffff, 0xffffffff,
239 0x01000000, 0x02000000, 0xffffffff, 0x04000000,
240 0x00010000, 0x00020000, 0x00080000, 0x00040000,
241 0x00800000, 0x00400000, 0x00100000, 0x00200000
244 /* ------------------------------------------------------------------------- */
246 static irqreturn_t m8xx_interrupt(int irq, void *dev);
248 #define PCMCIA_BMT_LIMIT (15*4) /* Bus Monitor Timeout value */
250 /* FADS Boards from Motorola */
252 #if defined(CONFIG_FADS)
254 #define PCMCIA_BOARD_MSG "FADS"
256 static int voltage_set(int slot, int vcc, int vpp)
258 u32 reg = 0;
260 switch (vcc) {
261 case 0:
262 break;
263 case 33:
264 reg |= BCSR1_PCCVCC0;
265 break;
266 case 50:
267 reg |= BCSR1_PCCVCC1;
268 break;
269 default:
270 return 1;
273 switch (vpp) {
274 case 0:
275 break;
276 case 33:
277 case 50:
278 if (vcc == vpp)
279 reg |= BCSR1_PCCVPP1;
280 else
281 return 1;
282 break;
283 case 120:
284 if ((vcc == 33) || (vcc == 50))
285 reg |= BCSR1_PCCVPP0;
286 else
287 return 1;
288 default:
289 return 1;
292 /* first, turn off all power */
293 out_be32((u32 *) BCSR1,
294 in_be32((u32 *) BCSR1) & ~(BCSR1_PCCVCC_MASK |
295 BCSR1_PCCVPP_MASK));
297 /* enable new powersettings */
298 out_be32((u32 *) BCSR1, in_be32((u32 *) BCSR1) | reg);
300 return 0;
303 #define socket_get(_slot_) PCMCIA_SOCKET_KEY_5V
305 static void hardware_enable(int slot)
307 out_be32((u32 *) BCSR1, in_be32((u32 *) BCSR1) & ~BCSR1_PCCEN);
310 static void hardware_disable(int slot)
312 out_be32((u32 *) BCSR1, in_be32((u32 *) BCSR1) | BCSR1_PCCEN);
315 #endif
317 /* MPC885ADS Boards */
319 #if defined(CONFIG_MPC885ADS)
321 #define PCMCIA_BOARD_MSG "MPC885ADS"
322 #define socket_get(_slot_) PCMCIA_SOCKET_KEY_5V
324 static inline void hardware_enable(int slot)
326 m8xx_pcmcia_ops.hw_ctrl(slot, 1);
329 static inline void hardware_disable(int slot)
331 m8xx_pcmcia_ops.hw_ctrl(slot, 0);
334 static inline int voltage_set(int slot, int vcc, int vpp)
336 return m8xx_pcmcia_ops.voltage_set(slot, vcc, vpp);
339 #endif
341 #if defined(CONFIG_PRxK)
342 #include <asm/cpld.h>
343 extern volatile fpga_pc_regs *fpga_pc;
345 #define PCMCIA_BOARD_MSG "MPC855T"
347 static int voltage_set(int slot, int vcc, int vpp)
349 u8 reg = 0;
350 u8 regread;
351 cpld_regs *ccpld = get_cpld();
353 switch (vcc) {
354 case 0:
355 break;
356 case 33:
357 reg |= PCMCIA_VCC_33;
358 break;
359 case 50:
360 reg |= PCMCIA_VCC_50;
361 break;
362 default:
363 return 1;
366 switch (vpp) {
367 case 0:
368 break;
369 case 33:
370 case 50:
371 if (vcc == vpp)
372 reg |= PCMCIA_VPP_VCC;
373 else
374 return 1;
375 break;
376 case 120:
377 if ((vcc == 33) || (vcc == 50))
378 reg |= PCMCIA_VPP_12;
379 else
380 return 1;
381 default:
382 return 1;
385 reg = reg >> (slot << 2);
386 regread = in_8(&ccpld->fpga_pc_ctl);
387 if (reg !=
388 (regread & ((PCMCIA_VCC_MASK | PCMCIA_VPP_MASK) >> (slot << 2)))) {
389 /* enable new powersettings */
390 regread =
391 regread & ~((PCMCIA_VCC_MASK | PCMCIA_VPP_MASK) >>
392 (slot << 2));
393 out_8(&ccpld->fpga_pc_ctl, reg | regread);
394 msleep(100);
397 return 0;
400 #define socket_get(_slot_) PCMCIA_SOCKET_KEY_LV
401 #define hardware_enable(_slot_) /* No hardware to enable */
402 #define hardware_disable(_slot_) /* No hardware to disable */
404 #endif /* CONFIG_PRxK */
406 static u32 pending_events[PCMCIA_SOCKETS_NO];
407 static DEFINE_SPINLOCK(pending_event_lock);
409 static irqreturn_t m8xx_interrupt(int irq, void *dev)
411 struct socket_info *s;
412 struct event_table *e;
413 unsigned int i, events, pscr, pipr, per;
414 pcmconf8xx_t *pcmcia = socket[0].pcmcia;
416 pr_debug("m8xx_pcmcia: Interrupt!\n");
417 /* get interrupt sources */
419 pscr = in_be32(&pcmcia->pcmc_pscr);
420 pipr = in_be32(&pcmcia->pcmc_pipr);
421 per = in_be32(&pcmcia->pcmc_per);
423 for (i = 0; i < PCMCIA_SOCKETS_NO; i++) {
424 s = &socket[i];
425 e = &s->events[0];
426 events = 0;
428 while (e->regbit) {
429 if (pscr & e->regbit)
430 events |= e->eventbit;
432 e++;
436 * report only if both card detect signals are the same
437 * not too nice done,
438 * we depend on that CD2 is the bit to the left of CD1...
440 if (events & SS_DETECT)
441 if (((pipr & M8XX_PCMCIA_CD2(i)) >> 1) ^
442 (pipr & M8XX_PCMCIA_CD1(i))) {
443 events &= ~SS_DETECT;
445 #ifdef PCMCIA_GLITCHY_CD
447 * I've experienced CD problems with my ADS board.
448 * We make an extra check to see if there was a
449 * real change of Card detection.
452 if ((events & SS_DETECT) &&
453 ((pipr &
454 (M8XX_PCMCIA_CD2(i) | M8XX_PCMCIA_CD1(i))) == 0) &&
455 (s->state.Vcc | s->state.Vpp)) {
456 events &= ~SS_DETECT;
457 /*printk( "CD glitch workaround - CD = 0x%08x!\n",
458 (pipr & (M8XX_PCMCIA_CD2(i)
459 | M8XX_PCMCIA_CD1(i)))); */
461 #endif
463 /* call the handler */
465 pr_debug("m8xx_pcmcia: slot %u: events = 0x%02x, pscr = 0x%08x, "
466 "pipr = 0x%08x\n", i, events, pscr, pipr);
468 if (events) {
469 spin_lock(&pending_event_lock);
470 pending_events[i] |= events;
471 spin_unlock(&pending_event_lock);
473 * Turn off RDY_L bits in the PER mask on
474 * CD interrupt receival.
476 * They can generate bad interrupts on the
477 * ACS4,8,16,32. - marcelo
479 per &= ~M8XX_PCMCIA_RDY_L(0);
480 per &= ~M8XX_PCMCIA_RDY_L(1);
482 out_be32(&pcmcia->pcmc_per, per);
484 if (events)
485 pcmcia_parse_events(&socket[i].socket, events);
489 /* clear the interrupt sources */
490 out_be32(&pcmcia->pcmc_pscr, pscr);
492 pr_debug("m8xx_pcmcia: Interrupt done.\n");
494 return IRQ_HANDLED;
497 static u32 m8xx_get_graycode(u32 size)
499 u32 k;
501 for (k = 0; k < M8XX_SIZES_NO; k++)
502 if (m8xx_size_to_gray[k] == size)
503 break;
505 if ((k == M8XX_SIZES_NO) || (m8xx_size_to_gray[k] == -1))
506 k = -1;
508 return k;
511 static u32 m8xx_get_speed(u32 ns, u32 is_io, u32 bus_freq)
513 u32 reg, clocks, psst, psl, psht;
515 if (!ns) {
518 * We get called with IO maps setup to 0ns
519 * if not specified by the user.
520 * They should be 255ns.
523 if (is_io)
524 ns = 255;
525 else
526 ns = 100; /* fast memory if 0 */
530 * In PSST, PSL, PSHT fields we tell the controller
531 * timing parameters in CLKOUT clock cycles.
532 * CLKOUT is the same as GCLK2_50.
535 /* how we want to adjust the timing - in percent */
537 #define ADJ 180 /* 80 % longer accesstime - to be sure */
539 clocks = ((bus_freq / 1000) * ns) / 1000;
540 clocks = (clocks * ADJ) / (100 * 1000);
541 if (clocks >= PCMCIA_BMT_LIMIT) {
542 printk("Max access time limit reached\n");
543 clocks = PCMCIA_BMT_LIMIT - 1;
546 psst = clocks / 7; /* setup time */
547 psht = clocks / 7; /* hold time */
548 psl = (clocks * 5) / 7; /* strobe length */
550 psst += clocks - (psst + psht + psl);
552 reg = psst << 12;
553 reg |= psl << 7;
554 reg |= psht << 16;
556 return reg;
559 static int m8xx_get_status(struct pcmcia_socket *sock, unsigned int *value)
561 int lsock = container_of(sock, struct socket_info, socket)->slot;
562 struct socket_info *s = &socket[lsock];
563 unsigned int pipr, reg;
564 pcmconf8xx_t *pcmcia = s->pcmcia;
566 pipr = in_be32(&pcmcia->pcmc_pipr);
568 *value = ((pipr & (M8XX_PCMCIA_CD1(lsock)
569 | M8XX_PCMCIA_CD2(lsock))) == 0) ? SS_DETECT : 0;
570 *value |= (pipr & M8XX_PCMCIA_WP(lsock)) ? SS_WRPROT : 0;
572 if (s->state.flags & SS_IOCARD)
573 *value |= (pipr & M8XX_PCMCIA_BVD1(lsock)) ? SS_STSCHG : 0;
574 else {
575 *value |= (pipr & M8XX_PCMCIA_RDY(lsock)) ? SS_READY : 0;
576 *value |= (pipr & M8XX_PCMCIA_BVD1(lsock)) ? SS_BATDEAD : 0;
577 *value |= (pipr & M8XX_PCMCIA_BVD2(lsock)) ? SS_BATWARN : 0;
580 if (s->state.Vcc | s->state.Vpp)
581 *value |= SS_POWERON;
584 * Voltage detection:
585 * This driver only supports 16-Bit pc-cards.
586 * Cardbus is not handled here.
588 * To determine what voltage to use we must read the VS1 and VS2 pin.
589 * Depending on what socket type is present,
590 * different combinations mean different things.
592 * Card Key Socket Key VS1 VS2 Card Vcc for CIS parse
594 * 5V 5V, LV* NC NC 5V only 5V (if available)
596 * 5V 5V, LV* GND NC 5 or 3.3V as low as possible
598 * 5V 5V, LV* GND GND 5, 3.3, x.xV as low as possible
600 * LV* 5V - - shall not fit into socket
602 * LV* LV* GND NC 3.3V only 3.3V
604 * LV* LV* NC GND x.xV x.xV (if avail.)
606 * LV* LV* GND GND 3.3 or x.xV as low as possible
608 * *LV means Low Voltage
611 * That gives us the following table:
613 * Socket VS1 VS2 Voltage
615 * 5V NC NC 5V
616 * 5V NC GND none (should not be possible)
617 * 5V GND NC >= 3.3V
618 * 5V GND GND >= x.xV
620 * LV NC NC 5V (if available)
621 * LV NC GND x.xV (if available)
622 * LV GND NC 3.3V
623 * LV GND GND >= x.xV
625 * So, how do I determine if I have a 5V or a LV
626 * socket on my board? Look at the socket!
629 * Socket with 5V key:
630 * ++--------------------------------------------+
631 * || |
632 * || ||
633 * || ||
634 * | |
635 * +---------------------------------------------+
637 * Socket with LV key:
638 * ++--------------------------------------------+
639 * || |
640 * | ||
641 * | ||
642 * | |
643 * +---------------------------------------------+
646 * With other words - LV only cards does not fit
647 * into the 5V socket!
650 /* read out VS1 and VS2 */
652 reg = (pipr & M8XX_PCMCIA_VS_MASK(lsock))
653 >> M8XX_PCMCIA_VS_SHIFT(lsock);
655 if (socket_get(lsock) == PCMCIA_SOCKET_KEY_LV) {
656 switch (reg) {
657 case 1:
658 *value |= SS_3VCARD;
659 break; /* GND, NC - 3.3V only */
660 case 2:
661 *value |= SS_XVCARD;
662 break; /* NC. GND - x.xV only */
666 pr_debug("m8xx_pcmcia: GetStatus(%d) = %#2.2x\n", lsock, *value);
667 return 0;
670 static int m8xx_set_socket(struct pcmcia_socket *sock, socket_state_t * state)
672 int lsock = container_of(sock, struct socket_info, socket)->slot;
673 struct socket_info *s = &socket[lsock];
674 struct event_table *e;
675 unsigned int reg;
676 unsigned long flags;
677 pcmconf8xx_t *pcmcia = socket[0].pcmcia;
679 pr_debug("m8xx_pcmcia: SetSocket(%d, flags %#3.3x, Vcc %d, Vpp %d, "
680 "io_irq %d, csc_mask %#2.2x)\n", lsock, state->flags,
681 state->Vcc, state->Vpp, state->io_irq, state->csc_mask);
683 /* First, set voltage - bail out if invalid */
684 if (voltage_set(lsock, state->Vcc, state->Vpp))
685 return -EINVAL;
687 /* Take care of reset... */
688 if (state->flags & SS_RESET)
689 out_be32(M8XX_PGCRX(lsock), in_be32(M8XX_PGCRX(lsock)) | M8XX_PGCRX_CXRESET); /* active high */
690 else
691 out_be32(M8XX_PGCRX(lsock),
692 in_be32(M8XX_PGCRX(lsock)) & ~M8XX_PGCRX_CXRESET);
694 /* ... and output enable. */
696 /* The CxOE signal is connected to a 74541 on the ADS.
697 I guess most other boards used the ADS as a reference.
698 I tried to control the CxOE signal with SS_OUTPUT_ENA,
699 but the reset signal seems connected via the 541.
700 If the CxOE is left high are some signals tristated and
701 no pullups are present -> the cards act weird.
702 So right now the buffers are enabled if the power is on. */
704 if (state->Vcc || state->Vpp)
705 out_be32(M8XX_PGCRX(lsock), in_be32(M8XX_PGCRX(lsock)) & ~M8XX_PGCRX_CXOE); /* active low */
706 else
707 out_be32(M8XX_PGCRX(lsock),
708 in_be32(M8XX_PGCRX(lsock)) | M8XX_PGCRX_CXOE);
711 * We'd better turn off interrupts before
712 * we mess with the events-table..
715 spin_lock_irqsave(&events_lock, flags);
718 * Play around with the interrupt mask to be able to
719 * give the events the generic pcmcia driver wants us to.
722 e = &s->events[0];
723 reg = 0;
725 if (state->csc_mask & SS_DETECT) {
726 e->eventbit = SS_DETECT;
727 reg |= e->regbit = (M8XX_PCMCIA_CD2(lsock)
728 | M8XX_PCMCIA_CD1(lsock));
729 e++;
731 if (state->flags & SS_IOCARD) {
733 * I/O card
735 if (state->csc_mask & SS_STSCHG) {
736 e->eventbit = SS_STSCHG;
737 reg |= e->regbit = M8XX_PCMCIA_BVD1(lsock);
738 e++;
741 * If io_irq is non-zero we should enable irq.
743 if (state->io_irq) {
744 out_be32(M8XX_PGCRX(lsock),
745 in_be32(M8XX_PGCRX(lsock)) |
746 mk_int_int_mask(s->hwirq) << 24);
748 * Strange thing here:
749 * The manual does not tell us which interrupt
750 * the sources generate.
751 * Anyhow, I found out that RDY_L generates IREQLVL.
753 * We use level triggerd interrupts, and they don't
754 * have to be cleared in PSCR in the interrupt handler.
756 reg |= M8XX_PCMCIA_RDY_L(lsock);
757 } else
758 out_be32(M8XX_PGCRX(lsock),
759 in_be32(M8XX_PGCRX(lsock)) & 0x00ffffff);
760 } else {
762 * Memory card
764 if (state->csc_mask & SS_BATDEAD) {
765 e->eventbit = SS_BATDEAD;
766 reg |= e->regbit = M8XX_PCMCIA_BVD1(lsock);
767 e++;
769 if (state->csc_mask & SS_BATWARN) {
770 e->eventbit = SS_BATWARN;
771 reg |= e->regbit = M8XX_PCMCIA_BVD2(lsock);
772 e++;
774 /* What should I trigger on - low/high,raise,fall? */
775 if (state->csc_mask & SS_READY) {
776 e->eventbit = SS_READY;
777 reg |= e->regbit = 0; //??
778 e++;
782 e->regbit = 0; /* terminate list */
785 * Clear the status changed .
786 * Port A and Port B share the same port.
787 * Writing ones will clear the bits.
790 out_be32(&pcmcia->pcmc_pscr, reg);
793 * Write the mask.
794 * Port A and Port B share the same port.
795 * Need for read-modify-write.
796 * Ones will enable the interrupt.
799 reg |=
800 in_be32(&pcmcia->
801 pcmc_per) & (M8XX_PCMCIA_MASK(0) | M8XX_PCMCIA_MASK(1));
802 out_be32(&pcmcia->pcmc_per, reg);
804 spin_unlock_irqrestore(&events_lock, flags);
806 /* copy the struct and modify the copy */
808 s->state = *state;
810 return 0;
813 static int m8xx_set_io_map(struct pcmcia_socket *sock, struct pccard_io_map *io)
815 int lsock = container_of(sock, struct socket_info, socket)->slot;
817 struct socket_info *s = &socket[lsock];
818 struct pcmcia_win *w;
819 unsigned int reg, winnr;
820 pcmconf8xx_t *pcmcia = s->pcmcia;
822 #define M8XX_SIZE (io->stop - io->start + 1)
823 #define M8XX_BASE (PCMCIA_IO_WIN_BASE + io->start)
825 pr_debug("m8xx_pcmcia: SetIOMap(%d, %d, %#2.2x, %d ns, "
826 "%#4.4llx-%#4.4llx)\n", lsock, io->map, io->flags,
827 io->speed, (unsigned long long)io->start,
828 (unsigned long long)io->stop);
830 if ((io->map >= PCMCIA_IO_WIN_NO) || (io->start > 0xffff)
831 || (io->stop > 0xffff) || (io->stop < io->start))
832 return -EINVAL;
834 if ((reg = m8xx_get_graycode(M8XX_SIZE)) == -1)
835 return -EINVAL;
837 if (io->flags & MAP_ACTIVE) {
839 pr_debug("m8xx_pcmcia: io->flags & MAP_ACTIVE\n");
841 winnr = (PCMCIA_MEM_WIN_NO * PCMCIA_SOCKETS_NO)
842 + (lsock * PCMCIA_IO_WIN_NO) + io->map;
844 /* setup registers */
846 w = (void *)&pcmcia->pcmc_pbr0;
847 w += winnr;
849 out_be32(&w->or, 0); /* turn off window first */
850 out_be32(&w->br, M8XX_BASE);
852 reg <<= 27;
853 reg |= M8XX_PCMCIA_POR_IO | (lsock << 2);
855 reg |= m8xx_get_speed(io->speed, 1, s->bus_freq);
857 if (io->flags & MAP_WRPROT)
858 reg |= M8XX_PCMCIA_POR_WRPROT;
860 /*if(io->flags & (MAP_16BIT | MAP_AUTOSZ)) */
861 if (io->flags & MAP_16BIT)
862 reg |= M8XX_PCMCIA_POR_16BIT;
864 if (io->flags & MAP_ACTIVE)
865 reg |= M8XX_PCMCIA_POR_VALID;
867 out_be32(&w->or, reg);
869 pr_debug("m8xx_pcmcia: Socket %u: Mapped io window %u at "
870 "%#8.8x, OR = %#8.8x.\n", lsock, io->map, w->br, w->or);
871 } else {
872 /* shutdown IO window */
873 winnr = (PCMCIA_MEM_WIN_NO * PCMCIA_SOCKETS_NO)
874 + (lsock * PCMCIA_IO_WIN_NO) + io->map;
876 /* setup registers */
878 w = (void *)&pcmcia->pcmc_pbr0;
879 w += winnr;
881 out_be32(&w->or, 0); /* turn off window */
882 out_be32(&w->br, 0); /* turn off base address */
884 pr_debug("m8xx_pcmcia: Socket %u: Unmapped io window %u at "
885 "%#8.8x, OR = %#8.8x.\n", lsock, io->map, w->br, w->or);
888 /* copy the struct and modify the copy */
889 s->io_win[io->map] = *io;
890 s->io_win[io->map].flags &= (MAP_WRPROT | MAP_16BIT | MAP_ACTIVE);
891 pr_debug("m8xx_pcmcia: SetIOMap exit\n");
893 return 0;
896 static int m8xx_set_mem_map(struct pcmcia_socket *sock,
897 struct pccard_mem_map *mem)
899 int lsock = container_of(sock, struct socket_info, socket)->slot;
900 struct socket_info *s = &socket[lsock];
901 struct pcmcia_win *w;
902 struct pccard_mem_map *old;
903 unsigned int reg, winnr;
904 pcmconf8xx_t *pcmcia = s->pcmcia;
906 pr_debug("m8xx_pcmcia: SetMemMap(%d, %d, %#2.2x, %d ns, "
907 "%#5.5llx, %#5.5x)\n", lsock, mem->map, mem->flags,
908 mem->speed, (unsigned long long)mem->static_start,
909 mem->card_start);
911 if ((mem->map >= PCMCIA_MEM_WIN_NO)
912 // || ((mem->s) >= PCMCIA_MEM_WIN_SIZE)
913 || (mem->card_start >= 0x04000000)
914 || (mem->static_start & 0xfff) /* 4KByte resolution */
915 ||(mem->card_start & 0xfff))
916 return -EINVAL;
918 if ((reg = m8xx_get_graycode(PCMCIA_MEM_WIN_SIZE)) == -1) {
919 printk("Cannot set size to 0x%08x.\n", PCMCIA_MEM_WIN_SIZE);
920 return -EINVAL;
922 reg <<= 27;
924 winnr = (lsock * PCMCIA_MEM_WIN_NO) + mem->map;
926 /* Setup the window in the pcmcia controller */
928 w = (void *)&pcmcia->pcmc_pbr0;
929 w += winnr;
931 reg |= lsock << 2;
933 reg |= m8xx_get_speed(mem->speed, 0, s->bus_freq);
935 if (mem->flags & MAP_ATTRIB)
936 reg |= M8XX_PCMCIA_POR_ATTRMEM;
938 if (mem->flags & MAP_WRPROT)
939 reg |= M8XX_PCMCIA_POR_WRPROT;
941 if (mem->flags & MAP_16BIT)
942 reg |= M8XX_PCMCIA_POR_16BIT;
944 if (mem->flags & MAP_ACTIVE)
945 reg |= M8XX_PCMCIA_POR_VALID;
947 out_be32(&w->or, reg);
949 pr_debug("m8xx_pcmcia: Socket %u: Mapped memory window %u at %#8.8x, "
950 "OR = %#8.8x.\n", lsock, mem->map, w->br, w->or);
952 if (mem->flags & MAP_ACTIVE) {
953 /* get the new base address */
954 mem->static_start = PCMCIA_MEM_WIN_BASE +
955 (PCMCIA_MEM_WIN_SIZE * winnr)
956 + mem->card_start;
959 pr_debug("m8xx_pcmcia: SetMemMap(%d, %d, %#2.2x, %d ns, "
960 "%#5.5llx, %#5.5x)\n", lsock, mem->map, mem->flags,
961 mem->speed, (unsigned long long)mem->static_start,
962 mem->card_start);
964 /* copy the struct and modify the copy */
966 old = &s->mem_win[mem->map];
968 *old = *mem;
969 old->flags &= (MAP_ATTRIB | MAP_WRPROT | MAP_16BIT | MAP_ACTIVE);
971 return 0;
974 static int m8xx_sock_init(struct pcmcia_socket *sock)
976 int i;
977 pccard_io_map io = { 0, 0, 0, 0, 1 };
978 pccard_mem_map mem = { 0, 0, 0, 0, 0, 0 };
980 pr_debug("m8xx_pcmcia: sock_init(%d)\n", s);
982 m8xx_set_socket(sock, &dead_socket);
983 for (i = 0; i < PCMCIA_IO_WIN_NO; i++) {
984 io.map = i;
985 m8xx_set_io_map(sock, &io);
987 for (i = 0; i < PCMCIA_MEM_WIN_NO; i++) {
988 mem.map = i;
989 m8xx_set_mem_map(sock, &mem);
992 return 0;
996 static int m8xx_sock_suspend(struct pcmcia_socket *sock)
998 return m8xx_set_socket(sock, &dead_socket);
1001 static struct pccard_operations m8xx_services = {
1002 .init = m8xx_sock_init,
1003 .suspend = m8xx_sock_suspend,
1004 .get_status = m8xx_get_status,
1005 .set_socket = m8xx_set_socket,
1006 .set_io_map = m8xx_set_io_map,
1007 .set_mem_map = m8xx_set_mem_map,
1010 static int __init m8xx_probe(struct platform_device *ofdev)
1012 struct pcmcia_win *w;
1013 unsigned int i, m, hwirq;
1014 pcmconf8xx_t *pcmcia;
1015 int status;
1016 struct device_node *np = ofdev->dev.of_node;
1018 pcmcia_info("%s\n", version);
1020 pcmcia = of_iomap(np, 0);
1021 if (pcmcia == NULL)
1022 return -EINVAL;
1024 pcmcia_schlvl = irq_of_parse_and_map(np, 0);
1025 hwirq = irq_map[pcmcia_schlvl].hwirq;
1026 if (pcmcia_schlvl < 0) {
1027 iounmap(pcmcia);
1028 return -EINVAL;
1031 m8xx_pgcrx[0] = &pcmcia->pcmc_pgcra;
1032 m8xx_pgcrx[1] = &pcmcia->pcmc_pgcrb;
1034 pcmcia_info(PCMCIA_BOARD_MSG " using " PCMCIA_SLOT_MSG
1035 " with IRQ %u (%d). \n", pcmcia_schlvl, hwirq);
1037 /* Configure Status change interrupt */
1039 if (request_irq(pcmcia_schlvl, m8xx_interrupt, IRQF_SHARED,
1040 driver_name, socket)) {
1041 pcmcia_error("Cannot allocate IRQ %u for SCHLVL!\n",
1042 pcmcia_schlvl);
1043 iounmap(pcmcia);
1044 return -1;
1047 w = (void *)&pcmcia->pcmc_pbr0;
1049 out_be32(&pcmcia->pcmc_pscr, M8XX_PCMCIA_MASK(0) | M8XX_PCMCIA_MASK(1));
1050 clrbits32(&pcmcia->pcmc_per, M8XX_PCMCIA_MASK(0) | M8XX_PCMCIA_MASK(1));
1052 /* connect interrupt and disable CxOE */
1054 out_be32(M8XX_PGCRX(0),
1055 M8XX_PGCRX_CXOE | (mk_int_int_mask(hwirq) << 16));
1056 out_be32(M8XX_PGCRX(1),
1057 M8XX_PGCRX_CXOE | (mk_int_int_mask(hwirq) << 16));
1059 /* initialize the fixed memory windows */
1061 for (i = 0; i < PCMCIA_SOCKETS_NO; i++) {
1062 for (m = 0; m < PCMCIA_MEM_WIN_NO; m++) {
1063 out_be32(&w->br, PCMCIA_MEM_WIN_BASE +
1064 (PCMCIA_MEM_WIN_SIZE
1065 * (m + i * PCMCIA_MEM_WIN_NO)));
1067 out_be32(&w->or, 0); /* set to not valid */
1069 w++;
1073 /* turn off voltage */
1074 voltage_set(0, 0, 0);
1075 voltage_set(1, 0, 0);
1077 /* Enable external hardware */
1078 hardware_enable(0);
1079 hardware_enable(1);
1081 for (i = 0; i < PCMCIA_SOCKETS_NO; i++) {
1082 socket[i].slot = i;
1083 socket[i].socket.owner = THIS_MODULE;
1084 socket[i].socket.features =
1085 SS_CAP_PCCARD | SS_CAP_MEM_ALIGN | SS_CAP_STATIC_MAP;
1086 socket[i].socket.irq_mask = 0x000;
1087 socket[i].socket.map_size = 0x1000;
1088 socket[i].socket.io_offset = 0;
1089 socket[i].socket.pci_irq = pcmcia_schlvl;
1090 socket[i].socket.ops = &m8xx_services;
1091 socket[i].socket.resource_ops = &pccard_iodyn_ops;
1092 socket[i].socket.cb_dev = NULL;
1093 socket[i].socket.dev.parent = &ofdev->dev;
1094 socket[i].pcmcia = pcmcia;
1095 socket[i].bus_freq = ppc_proc_freq;
1096 socket[i].hwirq = hwirq;
1100 for (i = 0; i < PCMCIA_SOCKETS_NO; i++) {
1101 status = pcmcia_register_socket(&socket[i].socket);
1102 if (status < 0)
1103 pcmcia_error("Socket register failed\n");
1106 return 0;
1109 static int m8xx_remove(struct platform_device *ofdev)
1111 u32 m, i;
1112 struct pcmcia_win *w;
1113 pcmconf8xx_t *pcmcia = socket[0].pcmcia;
1115 for (i = 0; i < PCMCIA_SOCKETS_NO; i++) {
1116 w = (void *)&pcmcia->pcmc_pbr0;
1118 out_be32(&pcmcia->pcmc_pscr, M8XX_PCMCIA_MASK(i));
1119 out_be32(&pcmcia->pcmc_per,
1120 in_be32(&pcmcia->pcmc_per) & ~M8XX_PCMCIA_MASK(i));
1122 /* turn off interrupt and disable CxOE */
1123 out_be32(M8XX_PGCRX(i), M8XX_PGCRX_CXOE);
1125 /* turn off memory windows */
1126 for (m = 0; m < PCMCIA_MEM_WIN_NO; m++) {
1127 out_be32(&w->or, 0); /* set to not valid */
1128 w++;
1131 /* turn off voltage */
1132 voltage_set(i, 0, 0);
1134 /* disable external hardware */
1135 hardware_disable(i);
1137 for (i = 0; i < PCMCIA_SOCKETS_NO; i++)
1138 pcmcia_unregister_socket(&socket[i].socket);
1139 iounmap(pcmcia);
1141 free_irq(pcmcia_schlvl, NULL);
1143 return 0;
1146 static const struct of_device_id m8xx_pcmcia_match[] = {
1148 .type = "pcmcia",
1149 .compatible = "fsl,pq-pcmcia",
1154 MODULE_DEVICE_TABLE(of, m8xx_pcmcia_match);
1156 static struct platform_driver m8xx_pcmcia_driver = {
1157 .driver = {
1158 .name = driver_name,
1159 .owner = THIS_MODULE,
1160 .of_match_table = m8xx_pcmcia_match,
1162 .probe = m8xx_probe,
1163 .remove = m8xx_remove,
1166 module_platform_driver(m8xx_pcmcia_driver);