1 /*======================================================================
3 Device driver for Databook TCIC-2 PCMCIA controller
5 tcic.c 1.111 2000/02/15 04:13:12
7 The contents of this file are subject to the Mozilla Public
8 License Version 1.1 (the "License"); you may not use this file
9 except in compliance with the License. You may obtain a copy of
10 the License at http://www.mozilla.org/MPL/
12 Software distributed under the License is distributed on an "AS
13 IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
14 implied. See the License for the specific language governing
15 rights and limitations under the License.
17 The initial developer of the original code is David A. Hinds
18 <dahinds@users.sourceforge.net>. Portions created by David A. Hinds
19 are Copyright (C) 1999 David A. Hinds. All Rights Reserved.
21 Alternatively, the contents of this file may be used under the
22 terms of the GNU General Public License version 2 (the "GPL"), in which
23 case the provisions of the GPL are applicable instead of the
24 above. If you wish to allow the use of your version of this file
25 only under the terms of the GPL and not to allow others to use
26 your version of this file under the MPL, indicate your decision
27 by deleting the provisions above and replace them with the notice
28 and other provisions required by the GPL. If you do not delete
29 the provisions above, a recipient may use your version of this
30 file under either the MPL or the GPL.
32 ======================================================================*/
34 #include <linux/module.h>
35 #include <linux/moduleparam.h>
36 #include <linux/init.h>
37 #include <linux/types.h>
38 #include <linux/fcntl.h>
39 #include <linux/string.h>
40 #include <linux/errno.h>
41 #include <linux/interrupt.h>
42 #include <linux/slab.h>
43 #include <linux/timer.h>
44 #include <linux/ioport.h>
45 #include <linux/delay.h>
46 #include <linux/workqueue.h>
47 #include <linux/platform_device.h>
48 #include <linux/bitops.h>
51 #include <asm/system.h>
53 #include <pcmcia/cs_types.h>
54 #include <pcmcia/cs.h>
55 #include <pcmcia/ss.h>
58 MODULE_AUTHOR("David Hinds <dahinds@users.sourceforge.net>");
59 MODULE_DESCRIPTION("Databook TCIC-2 PCMCIA socket driver");
60 MODULE_LICENSE("Dual MPL/GPL");
62 /*====================================================================*/
64 /* Parameters that can be set with 'insmod' */
66 /* The base port address of the TCIC-2 chip */
67 static unsigned long tcic_base
= TCIC_BASE
;
69 /* Specify a socket number to ignore */
70 static int ignore
= -1;
72 /* Probe for safe interrupts? */
73 static int do_scan
= 1;
75 /* Bit map of interrupts to choose from */
76 static u_int irq_mask
= 0xffff;
77 static int irq_list
[16];
78 static unsigned int irq_list_count
;
80 /* The card status change interrupt -- 0 means autoselect */
83 /* Poll status interval -- 0 means default to interrupt */
84 static int poll_interval
;
86 /* Delay for card status double-checking */
87 static int poll_quick
= HZ
/20;
89 /* CCLK external clock time, in nanoseconds. 70 ns = 14.31818 MHz */
90 static int cycle_time
= 70;
92 module_param(tcic_base
, ulong
, 0444);
93 module_param(ignore
, int, 0444);
94 module_param(do_scan
, int, 0444);
95 module_param(irq_mask
, int, 0444);
96 module_param_array(irq_list
, int, &irq_list_count
, 0444);
97 module_param(cs_irq
, int, 0444);
98 module_param(poll_interval
, int, 0444);
99 module_param(poll_quick
, int, 0444);
100 module_param(cycle_time
, int, 0444);
102 /*====================================================================*/
104 static irqreturn_t
tcic_interrupt(int irq
, void *dev
);
105 static void tcic_timer(u_long data
);
106 static struct pccard_operations tcic_operations
;
112 struct pcmcia_socket socket
;
115 static struct timer_list poll_timer
;
116 static int tcic_timer_pending
;
119 static struct tcic_socket socket_table
[2];
121 /*====================================================================*/
123 /* Trick when selecting interrupts: the TCIC sktirq pin is supposed
124 to map to irq 11, but is coded as 0 or 1 in the irq registers. */
125 #define TCIC_IRQ(x) ((x) ? (((x) == 11) ? 1 : (x)) : 15)
128 static u_char
tcic_getb(u_char reg
)
130 u_char val
= inb(tcic_base
+reg
);
131 printk(KERN_DEBUG
"tcic_getb(%#lx) = %#x\n", tcic_base
+reg
, val
);
135 static u_short
tcic_getw(u_char reg
)
137 u_short val
= inw(tcic_base
+reg
);
138 printk(KERN_DEBUG
"tcic_getw(%#lx) = %#x\n", tcic_base
+reg
, val
);
142 static void tcic_setb(u_char reg
, u_char data
)
144 printk(KERN_DEBUG
"tcic_setb(%#lx, %#x)\n", tcic_base
+reg
, data
);
145 outb(data
, tcic_base
+reg
);
148 static void tcic_setw(u_char reg
, u_short data
)
150 printk(KERN_DEBUG
"tcic_setw(%#lx, %#x)\n", tcic_base
+reg
, data
);
151 outw(data
, tcic_base
+reg
);
154 #define tcic_getb(reg) inb(tcic_base+reg)
155 #define tcic_getw(reg) inw(tcic_base+reg)
156 #define tcic_setb(reg, data) outb(data, tcic_base+reg)
157 #define tcic_setw(reg, data) outw(data, tcic_base+reg)
160 static void tcic_setl(u_char reg
, u_int data
)
163 printk(KERN_DEBUG
"tcic_setl(%#x, %#lx)\n", tcic_base
+reg
, data
);
165 outw(data
& 0xffff, tcic_base
+reg
);
166 outw(data
>> 16, tcic_base
+reg
+2);
169 static void tcic_aux_setb(u_short reg
, u_char data
)
171 u_char mode
= (tcic_getb(TCIC_MODE
) & TCIC_MODE_PGMMASK
) | reg
;
172 tcic_setb(TCIC_MODE
, mode
);
173 tcic_setb(TCIC_AUX
, data
);
176 static u_short
tcic_aux_getw(u_short reg
)
178 u_char mode
= (tcic_getb(TCIC_MODE
) & TCIC_MODE_PGMMASK
) | reg
;
179 tcic_setb(TCIC_MODE
, mode
);
180 return tcic_getw(TCIC_AUX
);
183 static void tcic_aux_setw(u_short reg
, u_short data
)
185 u_char mode
= (tcic_getb(TCIC_MODE
) & TCIC_MODE_PGMMASK
) | reg
;
186 tcic_setb(TCIC_MODE
, mode
);
187 tcic_setw(TCIC_AUX
, data
);
190 /*====================================================================*/
192 /* Time conversion functions */
194 static int to_cycles(int ns
)
199 return 2*(ns
-14)/cycle_time
;
202 /*====================================================================*/
204 static volatile u_int irq_hits
;
206 static irqreturn_t __init
tcic_irq_count(int irq
, void *dev
)
212 static u_int __init
try_irq(int irq
)
217 if (request_irq(irq
, tcic_irq_count
, 0, "irq scan", tcic_irq_count
) != 0)
221 free_irq(irq
, tcic_irq_count
);
225 /* Generate one interrupt */
226 cfg
= TCIC_SYSCFG_AUTOBUSY
| 0x0a00;
227 tcic_aux_setw(TCIC_AUX_SYSCFG
, cfg
| TCIC_IRQ(irq
));
228 tcic_setb(TCIC_IENA
, TCIC_IENA_ERR
| TCIC_IENA_CFG_HIGH
);
229 tcic_setb(TCIC_ICSR
, TCIC_ICSR_ERR
| TCIC_ICSR_JAM
);
232 free_irq(irq
, tcic_irq_count
);
234 /* Turn off interrupts */
235 tcic_setb(TCIC_IENA
, TCIC_IENA_CFG_OFF
);
236 while (tcic_getb(TCIC_ICSR
))
237 tcic_setb(TCIC_ICSR
, TCIC_ICSR_JAM
);
238 tcic_aux_setw(TCIC_AUX_SYSCFG
, cfg
);
240 return (irq_hits
!= 1);
243 static u_int __init
irq_scan(u_int mask0
)
250 /* Don't probe level-triggered interrupts -- reserved for PCI */
251 int level_mask
= inb_p(PIC
) | (inb_p(PIC
+1) << 8);
253 mask0
&= ~level_mask
;
258 for (i
= 0; i
< 16; i
++)
259 if ((mask0
& (1 << i
)) && (try_irq(i
) == 0))
261 for (i
= 0; i
< 16; i
++)
262 if ((mask1
& (1 << i
)) && (try_irq(i
) != 0)) {
270 /* Fallback: just find interrupts that aren't in use */
271 for (i
= 0; i
< 16; i
++)
272 if ((mask0
& (1 << i
)) &&
273 (request_irq(i
, tcic_irq_count
, 0, "x", tcic_irq_count
) == 0)) {
275 free_irq(i
, tcic_irq_count
);
281 for (i
= 0; i
< 16; i
++)
283 printk("%s%d", ((mask1
& ((1<<i
)-1)) ? "," : ""), i
);
289 /*======================================================================
291 See if a card is present, powered up, in IO mode, and already
292 bound to a (non-PCMCIA) Linux driver.
294 We make an exception for cards that look like serial devices.
296 ======================================================================*/
298 static int __init
is_active(int s
)
300 u_short scf1
, ioctl
, base
, num
;
304 tcic_setl(TCIC_ADDR
, (s
<< TCIC_ADDR_SS_SHFT
)
305 | TCIC_ADDR_INDREG
| TCIC_SCF1(s
));
306 scf1
= tcic_getw(TCIC_DATA
);
307 pwr
= tcic_getb(TCIC_PWR
);
308 sstat
= tcic_getb(TCIC_SSTAT
);
309 addr
= TCIC_IWIN(s
, 0);
310 tcic_setw(TCIC_ADDR
, addr
+ TCIC_IBASE_X
);
311 base
= tcic_getw(TCIC_DATA
);
312 tcic_setw(TCIC_ADDR
, addr
+ TCIC_ICTL_X
);
313 ioctl
= tcic_getw(TCIC_DATA
);
315 if (ioctl
& TCIC_ICTL_TINY
)
318 num
= (base
^ (base
-1));
319 base
= base
& (base
-1);
322 if ((sstat
& TCIC_SSTAT_CD
) && (pwr
& TCIC_PWR_VCC(s
)) &&
323 (scf1
& TCIC_SCF1_IOSTS
) && (ioctl
& TCIC_ICTL_ENA
) &&
324 ((base
& 0xfeef) != 0x02e8)) {
325 struct resource
*res
= request_region(base
, num
, "tcic-2");
326 if (!res
) /* region is busy */
328 release_region(base
, num
);
334 /*======================================================================
336 This returns the revision code for the specified socket.
338 ======================================================================*/
340 static int __init
get_tcic_id(void)
344 tcic_aux_setw(TCIC_AUX_TEST
, TCIC_TEST_DIAG
);
345 id
= tcic_aux_getw(TCIC_AUX_ILOCK
);
346 id
= (id
& TCIC_ILOCKTEST_ID_MASK
) >> TCIC_ILOCKTEST_ID_SH
;
347 tcic_aux_setw(TCIC_AUX_TEST
, 0);
351 static int tcic_drv_pcmcia_suspend(struct platform_device
*dev
,
354 return pcmcia_socket_dev_suspend(&dev
->dev
);
357 static int tcic_drv_pcmcia_resume(struct platform_device
*dev
)
359 return pcmcia_socket_dev_resume(&dev
->dev
);
361 /*====================================================================*/
363 static struct platform_driver tcic_driver
= {
365 .name
= "tcic-pcmcia",
366 .owner
= THIS_MODULE
,
368 .suspend
= tcic_drv_pcmcia_suspend
,
369 .resume
= tcic_drv_pcmcia_resume
,
372 static struct platform_device tcic_device
= {
373 .name
= "tcic-pcmcia",
378 static int __init
init_tcic(void)
380 int i
, sock
, ret
= 0;
383 if (platform_driver_register(&tcic_driver
))
386 printk(KERN_INFO
"Databook TCIC-2 PCMCIA probe: ");
389 if (!request_region(tcic_base
, 16, "tcic-2")) {
390 printk("could not allocate ports,\n ");
391 platform_driver_unregister(&tcic_driver
);
395 tcic_setw(TCIC_ADDR
, 0);
396 if (tcic_getw(TCIC_ADDR
) == 0) {
397 tcic_setw(TCIC_ADDR
, 0xc3a5);
398 if (tcic_getw(TCIC_ADDR
) == 0xc3a5) sock
= 2;
401 /* See if resetting the controller does any good */
402 tcic_setb(TCIC_SCTRL
, TCIC_SCTRL_RESET
);
403 tcic_setb(TCIC_SCTRL
, 0);
404 tcic_setw(TCIC_ADDR
, 0);
405 if (tcic_getw(TCIC_ADDR
) == 0) {
406 tcic_setw(TCIC_ADDR
, 0xc3a5);
407 if (tcic_getw(TCIC_ADDR
) == 0xc3a5) sock
= 2;
412 printk("not found.\n");
413 release_region(tcic_base
, 16);
414 platform_driver_unregister(&tcic_driver
);
419 for (i
= 0; i
< sock
; i
++) {
420 if ((i
== ignore
) || is_active(i
)) continue;
421 socket_table
[sockets
].psock
= i
;
422 socket_table
[sockets
].id
= get_tcic_id();
424 socket_table
[sockets
].socket
.owner
= THIS_MODULE
;
425 /* only 16-bit cards, memory windows must be size-aligned */
426 /* No PCI or CardBus support */
427 socket_table
[sockets
].socket
.features
= SS_CAP_PCCARD
| SS_CAP_MEM_ALIGN
;
428 /* irq 14, 11, 10, 7, 6, 5, 4, 3 */
429 socket_table
[sockets
].socket
.irq_mask
= 0x4cf8;
430 /* 4K minimum window size */
431 socket_table
[sockets
].socket
.map_size
= 0x1000;
435 switch (socket_table
[0].id
) {
436 case TCIC_ID_DB86082
:
437 printk("DB86082"); break;
438 case TCIC_ID_DB86082A
:
439 printk("DB86082A"); break;
440 case TCIC_ID_DB86084
:
441 printk("DB86084"); break;
442 case TCIC_ID_DB86084A
:
443 printk("DB86084A"); break;
444 case TCIC_ID_DB86072
:
445 printk("DB86072"); break;
446 case TCIC_ID_DB86184
:
447 printk("DB86184"); break;
448 case TCIC_ID_DB86082B
:
449 printk("DB86082B"); break;
451 printk("Unknown ID 0x%02x", socket_table
[0].id
);
455 poll_timer
.function
= &tcic_timer
;
457 init_timer(&poll_timer
);
459 /* Build interrupt mask */
460 printk(KERN_CONT
", %d sockets\n", sockets
);
461 printk(KERN_INFO
" irq list (");
462 if (irq_list_count
== 0)
465 for (i
= mask
= 0; i
< irq_list_count
; i
++)
466 mask
|= (1<<irq_list
[i
]);
468 /* irq 14, 11, 10, 7, 6, 5, 4, 3 */
470 /* Scan interrupts */
471 mask
= irq_scan(mask
);
472 for (i
=0;i
<sockets
;i
++)
473 socket_table
[i
].socket
.irq_mask
= mask
;
475 /* Check for only two interrupts available */
476 scan
= (mask
& (mask
-1));
477 if (((scan
& (scan
-1)) == 0) && (poll_interval
== 0))
480 if (poll_interval
== 0) {
481 /* Avoid irq 12 unless it is explicitly requested */
482 u_int cs_mask
= mask
& ((cs_irq
) ? (1<<cs_irq
) : ~(1<<12));
483 for (i
= 15; i
> 0; i
--)
484 if ((cs_mask
& (1 << i
)) &&
485 (request_irq(i
, tcic_interrupt
, 0, "tcic",
486 tcic_interrupt
) == 0))
489 if (cs_irq
== 0) poll_interval
= HZ
;
492 if (socket_table
[0].socket
.irq_mask
& (1 << 11))
493 printk("sktirq is irq 11, ");
495 printk("status change on irq %d\n", cs_irq
);
497 printk("polled status, interval = %d ms\n",
498 poll_interval
* 1000 / HZ
);
500 for (i
= 0; i
< sockets
; i
++) {
501 tcic_setw(TCIC_ADDR
+2, socket_table
[i
].psock
<< TCIC_SS_SHFT
);
502 socket_table
[i
].last_sstat
= tcic_getb(TCIC_SSTAT
);
505 /* jump start interrupt handler, if needed */
506 tcic_interrupt(0, NULL
);
508 platform_device_register(&tcic_device
);
510 for (i
= 0; i
< sockets
; i
++) {
511 socket_table
[i
].socket
.ops
= &tcic_operations
;
512 socket_table
[i
].socket
.resource_ops
= &pccard_nonstatic_ops
;
513 socket_table
[i
].socket
.dev
.parent
= &tcic_device
.dev
;
514 ret
= pcmcia_register_socket(&socket_table
[i
].socket
);
516 pcmcia_unregister_socket(&socket_table
[0].socket
);
525 /*====================================================================*/
527 static void __exit
exit_tcic(void)
531 del_timer_sync(&poll_timer
);
533 tcic_aux_setw(TCIC_AUX_SYSCFG
, TCIC_SYSCFG_AUTOBUSY
|0x0a00);
534 free_irq(cs_irq
, tcic_interrupt
);
536 release_region(tcic_base
, 16);
538 for (i
= 0; i
< sockets
; i
++) {
539 pcmcia_unregister_socket(&socket_table
[i
].socket
);
542 platform_device_unregister(&tcic_device
);
543 platform_driver_unregister(&tcic_driver
);
546 /*====================================================================*/
548 static irqreturn_t
tcic_interrupt(int irq
, void *dev
)
554 static volatile int active
= 0;
557 printk(KERN_NOTICE
"tcic: reentered interrupt handler!\n");
562 pr_debug("tcic_interrupt()\n");
564 for (i
= 0; i
< sockets
; i
++) {
565 psock
= socket_table
[i
].psock
;
566 tcic_setl(TCIC_ADDR
, (psock
<< TCIC_ADDR_SS_SHFT
)
567 | TCIC_ADDR_INDREG
| TCIC_SCF1(psock
));
568 sstat
= tcic_getb(TCIC_SSTAT
);
569 latch
= sstat
^ socket_table
[psock
].last_sstat
;
570 socket_table
[i
].last_sstat
= sstat
;
571 if (tcic_getb(TCIC_ICSR
) & TCIC_ICSR_CDCHG
) {
572 tcic_setb(TCIC_ICSR
, TCIC_ICSR_CLEAR
);
577 events
= (latch
& TCIC_SSTAT_CD
) ? SS_DETECT
: 0;
578 events
|= (latch
& TCIC_SSTAT_WP
) ? SS_WRPROT
: 0;
579 if (tcic_getw(TCIC_DATA
) & TCIC_SCF1_IOSTS
) {
580 events
|= (latch
& TCIC_SSTAT_LBAT1
) ? SS_STSCHG
: 0;
582 events
|= (latch
& TCIC_SSTAT_RDY
) ? SS_READY
: 0;
583 events
|= (latch
& TCIC_SSTAT_LBAT1
) ? SS_BATDEAD
: 0;
584 events
|= (latch
& TCIC_SSTAT_LBAT2
) ? SS_BATWARN
: 0;
587 pcmcia_parse_events(&socket_table
[i
].socket
, events
);
591 /* Schedule next poll, if needed */
592 if (((cs_irq
== 0) || quick
) && (!tcic_timer_pending
)) {
593 poll_timer
.expires
= jiffies
+ (quick
? poll_quick
: poll_interval
);
594 add_timer(&poll_timer
);
595 tcic_timer_pending
= 1;
599 pr_debug("interrupt done\n");
601 } /* tcic_interrupt */
603 static void tcic_timer(u_long data
)
605 pr_debug("tcic_timer()\n");
606 tcic_timer_pending
= 0;
607 tcic_interrupt(0, NULL
);
610 /*====================================================================*/
612 static int tcic_get_status(struct pcmcia_socket
*sock
, u_int
*value
)
614 u_short psock
= container_of(sock
, struct tcic_socket
, socket
)->psock
;
617 tcic_setl(TCIC_ADDR
, (psock
<< TCIC_ADDR_SS_SHFT
)
618 | TCIC_ADDR_INDREG
| TCIC_SCF1(psock
));
619 reg
= tcic_getb(TCIC_SSTAT
);
620 *value
= (reg
& TCIC_SSTAT_CD
) ? SS_DETECT
: 0;
621 *value
|= (reg
& TCIC_SSTAT_WP
) ? SS_WRPROT
: 0;
622 if (tcic_getw(TCIC_DATA
) & TCIC_SCF1_IOSTS
) {
623 *value
|= (reg
& TCIC_SSTAT_LBAT1
) ? SS_STSCHG
: 0;
625 *value
|= (reg
& TCIC_SSTAT_RDY
) ? SS_READY
: 0;
626 *value
|= (reg
& TCIC_SSTAT_LBAT1
) ? SS_BATDEAD
: 0;
627 *value
|= (reg
& TCIC_SSTAT_LBAT2
) ? SS_BATWARN
: 0;
629 reg
= tcic_getb(TCIC_PWR
);
630 if (reg
& (TCIC_PWR_VCC(psock
)|TCIC_PWR_VPP(psock
)))
631 *value
|= SS_POWERON
;
632 dev_dbg(&sock
->dev
, "GetStatus(%d) = %#2.2x\n", psock
, *value
);
634 } /* tcic_get_status */
636 /*====================================================================*/
638 static int tcic_set_socket(struct pcmcia_socket
*sock
, socket_state_t
*state
)
640 u_short psock
= container_of(sock
, struct tcic_socket
, socket
)->psock
;
644 dev_dbg(&sock
->dev
, "SetSocket(%d, flags %#3.3x, Vcc %d, Vpp %d, "
645 "io_irq %d, csc_mask %#2.2x)\n", psock
, state
->flags
,
646 state
->Vcc
, state
->Vpp
, state
->io_irq
, state
->csc_mask
);
647 tcic_setw(TCIC_ADDR
+2, (psock
<< TCIC_SS_SHFT
) | TCIC_ADR2_INDREG
);
649 reg
= tcic_getb(TCIC_PWR
);
650 reg
&= ~(TCIC_PWR_VCC(psock
) | TCIC_PWR_VPP(psock
));
652 if (state
->Vcc
== 50) {
653 switch (state
->Vpp
) {
654 case 0: reg
|= TCIC_PWR_VCC(psock
) | TCIC_PWR_VPP(psock
); break;
655 case 50: reg
|= TCIC_PWR_VCC(psock
); break;
656 case 120: reg
|= TCIC_PWR_VPP(psock
); break;
657 default: return -EINVAL
;
659 } else if (state
->Vcc
!= 0)
662 if (reg
!= tcic_getb(TCIC_PWR
))
663 tcic_setb(TCIC_PWR
, reg
);
665 reg
= TCIC_ILOCK_HOLD_CCLK
| TCIC_ILOCK_CWAIT
;
666 if (state
->flags
& SS_OUTPUT_ENA
) {
667 tcic_setb(TCIC_SCTRL
, TCIC_SCTRL_ENA
);
668 reg
|= TCIC_ILOCK_CRESENA
;
670 tcic_setb(TCIC_SCTRL
, 0);
671 if (state
->flags
& SS_RESET
)
672 reg
|= TCIC_ILOCK_CRESET
;
673 tcic_aux_setb(TCIC_AUX_ILOCK
, reg
);
675 tcic_setw(TCIC_ADDR
, TCIC_SCF1(psock
));
676 scf1
= TCIC_SCF1_FINPACK
;
677 scf1
|= TCIC_IRQ(state
->io_irq
);
678 if (state
->flags
& SS_IOCARD
) {
679 scf1
|= TCIC_SCF1_IOSTS
;
680 if (state
->flags
& SS_SPKR_ENA
)
681 scf1
|= TCIC_SCF1_SPKR
;
682 if (state
->flags
& SS_DMA_MODE
)
683 scf1
|= TCIC_SCF1_DREQ2
<< TCIC_SCF1_DMA_SHIFT
;
685 tcic_setw(TCIC_DATA
, scf1
);
687 /* Some general setup stuff, and configure status interrupt */
688 reg
= TCIC_WAIT_ASYNC
| TCIC_WAIT_SENSE
| to_cycles(250);
689 tcic_aux_setb(TCIC_AUX_WCTL
, reg
);
690 tcic_aux_setw(TCIC_AUX_SYSCFG
, TCIC_SYSCFG_AUTOBUSY
|0x0a00|
693 /* Card status change interrupt mask */
694 tcic_setw(TCIC_ADDR
, TCIC_SCF2(psock
));
695 scf2
= TCIC_SCF2_MALL
;
696 if (state
->csc_mask
& SS_DETECT
) scf2
&= ~TCIC_SCF2_MCD
;
697 if (state
->flags
& SS_IOCARD
) {
698 if (state
->csc_mask
& SS_STSCHG
) reg
&= ~TCIC_SCF2_MLBAT1
;
700 if (state
->csc_mask
& SS_BATDEAD
) reg
&= ~TCIC_SCF2_MLBAT1
;
701 if (state
->csc_mask
& SS_BATWARN
) reg
&= ~TCIC_SCF2_MLBAT2
;
702 if (state
->csc_mask
& SS_READY
) reg
&= ~TCIC_SCF2_MRDY
;
704 tcic_setw(TCIC_DATA
, scf2
);
705 /* For the ISA bus, the irq should be active-high totem-pole */
706 tcic_setb(TCIC_IENA
, TCIC_IENA_CDCHG
| TCIC_IENA_CFG_HIGH
);
709 } /* tcic_set_socket */
711 /*====================================================================*/
713 static int tcic_set_io_map(struct pcmcia_socket
*sock
, struct pccard_io_map
*io
)
715 u_short psock
= container_of(sock
, struct tcic_socket
, socket
)->psock
;
717 u_short base
, len
, ioctl
;
719 dev_dbg(&sock
->dev
, "SetIOMap(%d, %d, %#2.2x, %d ns, "
720 "%#llx-%#llx)\n", psock
, io
->map
, io
->flags
, io
->speed
,
721 (unsigned long long)io
->start
, (unsigned long long)io
->stop
);
722 if ((io
->map
> 1) || (io
->start
> 0xffff) || (io
->stop
> 0xffff) ||
723 (io
->stop
< io
->start
)) return -EINVAL
;
724 tcic_setw(TCIC_ADDR
+2, TCIC_ADR2_INDREG
| (psock
<< TCIC_SS_SHFT
));
725 addr
= TCIC_IWIN(psock
, io
->map
);
727 base
= io
->start
; len
= io
->stop
- io
->start
;
728 /* Check to see that len+1 is power of two, etc */
729 if ((len
& (len
+1)) || (base
& len
)) return -EINVAL
;
731 tcic_setw(TCIC_ADDR
, addr
+ TCIC_IBASE_X
);
732 tcic_setw(TCIC_DATA
, base
);
734 ioctl
= (psock
<< TCIC_ICTL_SS_SHFT
);
735 ioctl
|= (len
== 0) ? TCIC_ICTL_TINY
: 0;
736 ioctl
|= (io
->flags
& MAP_ACTIVE
) ? TCIC_ICTL_ENA
: 0;
737 ioctl
|= to_cycles(io
->speed
) & TCIC_ICTL_WSCNT_MASK
;
738 if (!(io
->flags
& MAP_AUTOSZ
)) {
739 ioctl
|= TCIC_ICTL_QUIET
;
740 ioctl
|= (io
->flags
& MAP_16BIT
) ? TCIC_ICTL_BW_16
: TCIC_ICTL_BW_8
;
742 tcic_setw(TCIC_ADDR
, addr
+ TCIC_ICTL_X
);
743 tcic_setw(TCIC_DATA
, ioctl
);
746 } /* tcic_set_io_map */
748 /*====================================================================*/
750 static int tcic_set_mem_map(struct pcmcia_socket
*sock
, struct pccard_mem_map
*mem
)
752 u_short psock
= container_of(sock
, struct tcic_socket
, socket
)->psock
;
754 u_long base
, len
, mmap
;
756 dev_dbg(&sock
->dev
, "SetMemMap(%d, %d, %#2.2x, %d ns, "
757 "%#llx-%#llx, %#x)\n", psock
, mem
->map
, mem
->flags
,
758 mem
->speed
, (unsigned long long)mem
->res
->start
,
759 (unsigned long long)mem
->res
->end
, mem
->card_start
);
760 if ((mem
->map
> 3) || (mem
->card_start
> 0x3ffffff) ||
761 (mem
->res
->start
> 0xffffff) || (mem
->res
->end
> 0xffffff) ||
762 (mem
->res
->start
> mem
->res
->end
) || (mem
->speed
> 1000))
764 tcic_setw(TCIC_ADDR
+2, TCIC_ADR2_INDREG
| (psock
<< TCIC_SS_SHFT
));
765 addr
= TCIC_MWIN(psock
, mem
->map
);
767 base
= mem
->res
->start
; len
= mem
->res
->end
- mem
->res
->start
;
768 if ((len
& (len
+1)) || (base
& len
)) return -EINVAL
;
770 base
= (base
>> TCIC_MBASE_HA_SHFT
) | TCIC_MBASE_4K_BIT
;
772 base
= (base
| (len
+1)>>1) >> TCIC_MBASE_HA_SHFT
;
773 tcic_setw(TCIC_ADDR
, addr
+ TCIC_MBASE_X
);
774 tcic_setw(TCIC_DATA
, base
);
776 mmap
= mem
->card_start
- mem
->res
->start
;
777 mmap
= (mmap
>> TCIC_MMAP_CA_SHFT
) & TCIC_MMAP_CA_MASK
;
778 if (mem
->flags
& MAP_ATTRIB
) mmap
|= TCIC_MMAP_REG
;
779 tcic_setw(TCIC_ADDR
, addr
+ TCIC_MMAP_X
);
780 tcic_setw(TCIC_DATA
, mmap
);
782 ctl
= TCIC_MCTL_QUIET
| (psock
<< TCIC_MCTL_SS_SHFT
);
783 ctl
|= to_cycles(mem
->speed
) & TCIC_MCTL_WSCNT_MASK
;
784 ctl
|= (mem
->flags
& MAP_16BIT
) ? 0 : TCIC_MCTL_B8
;
785 ctl
|= (mem
->flags
& MAP_WRPROT
) ? TCIC_MCTL_WP
: 0;
786 ctl
|= (mem
->flags
& MAP_ACTIVE
) ? TCIC_MCTL_ENA
: 0;
787 tcic_setw(TCIC_ADDR
, addr
+ TCIC_MCTL_X
);
788 tcic_setw(TCIC_DATA
, ctl
);
791 } /* tcic_set_mem_map */
793 /*====================================================================*/
795 static int tcic_init(struct pcmcia_socket
*s
)
798 struct resource res
= { .start
= 0, .end
= 0x1000 };
799 pccard_io_map io
= { 0, 0, 0, 0, 1 };
800 pccard_mem_map mem
= { .res
= &res
, };
802 for (i
= 0; i
< 2; i
++) {
804 tcic_set_io_map(s
, &io
);
806 for (i
= 0; i
< 5; i
++) {
808 tcic_set_mem_map(s
, &mem
);
813 static struct pccard_operations tcic_operations
= {
815 .get_status
= tcic_get_status
,
816 .set_socket
= tcic_set_socket
,
817 .set_io_map
= tcic_set_io_map
,
818 .set_mem_map
= tcic_set_mem_map
,
821 /*====================================================================*/
823 module_init(init_tcic
);
824 module_exit(exit_tcic
);