tcic.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:29k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*======================================================================
  2.     Device driver for Databook TCIC-2 PCMCIA controller
  3.     tcic.c 1.111 2000/02/15 04:13:12
  4.     The contents of this file are subject to the Mozilla Public
  5.     License Version 1.1 (the "License"); you may not use this file
  6.     except in compliance with the License. You may obtain a copy of
  7.     the License at http://www.mozilla.org/MPL/
  8.     Software distributed under the License is distributed on an "AS
  9.     IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  10.     implied. See the License for the specific language governing
  11.     rights and limitations under the License.
  12.     The initial developer of the original code is David A. Hinds
  13.     <dahinds@users.sourceforge.net>.  Portions created by David A. Hinds
  14.     are Copyright (C) 1999 David A. Hinds.  All Rights Reserved.
  15.     Alternatively, the contents of this file may be used under the
  16.     terms of the GNU General Public License version 2 (the "GPL"), in which
  17.     case the provisions of the GPL are applicable instead of the
  18.     above.  If you wish to allow the use of your version of this file
  19.     only under the terms of the GPL and not to allow others to use
  20.     your version of this file under the MPL, indicate your decision
  21.     by deleting the provisions above and replace them with the notice
  22.     and other provisions required by the GPL.  If you do not delete
  23.     the provisions above, a recipient may use your version of this
  24.     file under either the MPL or the GPL.
  25.     
  26. ======================================================================*/
  27. #include <linux/module.h>
  28. #include <linux/init.h>
  29. #include <linux/types.h>
  30. #include <linux/fcntl.h>
  31. #include <linux/string.h>
  32. #include <asm/io.h>
  33. #include <asm/bitops.h>
  34. #include <asm/segment.h>
  35. #include <asm/system.h>
  36. #include <linux/kernel.h>
  37. #include <linux/errno.h>
  38. #include <linux/sched.h>
  39. #include <linux/slab.h>
  40. #include <linux/timer.h>
  41. #include <linux/ioport.h>
  42. #include <linux/delay.h>
  43. #include <linux/proc_fs.h>
  44. #include <pcmcia/version.h>
  45. #include <pcmcia/cs_types.h>
  46. #include <pcmcia/cs.h>
  47. #include <pcmcia/ss.h>
  48. #include "tcic.h"
  49. #ifdef PCMCIA_DEBUG
  50. static int pc_debug = PCMCIA_DEBUG;
  51. MODULE_PARM(pc_debug, "i");
  52. static const char *version =
  53. "tcic.c 1.111 2000/02/15 04:13:12 (David Hinds)";
  54. #define DEBUG(n, args...) if (pc_debug>(n)) printk(KERN_DEBUG args)
  55. #else
  56. #define DEBUG(n, args...)
  57. #endif
  58. MODULE_AUTHOR("David Hinds <dahinds@users.sourceforge.net>");
  59. MODULE_DESCRIPTION("Databook TCIC-2 PCMCIA socket driver");
  60. MODULE_LICENSE("Dual MPL/GPL");
  61. /*====================================================================*/
  62. /* Parameters that can be set with 'insmod' */
  63. /* The base port address of the TCIC-2 chip */
  64. static int tcic_base = TCIC_BASE;
  65. /* Specify a socket number to ignore */
  66. static int ignore = -1;
  67. /* Probe for safe interrupts? */
  68. static int do_scan = 1;
  69. /* Bit map of interrupts to choose from */
  70. static u_int irq_mask = 0xffff;
  71. static int irq_list[16] = { -1 };
  72. /* The card status change interrupt -- 0 means autoselect */
  73. static int cs_irq = 0;
  74. /* Poll status interval -- 0 means default to interrupt */
  75. static int poll_interval = 0;
  76. /* Delay for card status double-checking */
  77. static int poll_quick = HZ/20;
  78. /* CCLK external clock time, in nanoseconds.  70 ns = 14.31818 MHz */
  79. static int cycle_time = 70;
  80. MODULE_PARM(tcic_base, "i");
  81. MODULE_PARM(ignore, "i");
  82. MODULE_PARM(do_scan, "i");
  83. MODULE_PARM(irq_mask, "i");
  84. MODULE_PARM(irq_list, "1-16i");
  85. MODULE_PARM(cs_irq, "i");
  86. MODULE_PARM(poll_interval, "i");
  87. MODULE_PARM(poll_quick, "i");
  88. MODULE_PARM(cycle_time, "i");
  89. /*====================================================================*/
  90. static void tcic_interrupt(int irq, void *dev, struct pt_regs *regs);
  91. static void tcic_timer(u_long data);
  92. static struct pccard_operations tcic_operations;
  93. typedef struct socket_info_t {
  94.     u_short psock;
  95.     void (*handler)(void *info, u_int events);
  96.     void *info;
  97.     u_char last_sstat;
  98.     u_char id;
  99. } socket_info_t;
  100. static struct timer_list poll_timer;
  101. static int tcic_timer_pending = 0;
  102. static int sockets;
  103. static socket_info_t socket_table[2];
  104. static socket_cap_t tcic_cap = {
  105.     /* only 16-bit cards, memory windows must be size-aligned */
  106.     SS_CAP_PCCARD | SS_CAP_MEM_ALIGN,
  107.     0x4cf8, /* irq 14, 11, 10, 7, 6, 5, 4, 3 */
  108.     0x1000, /* 4K minimum window size */
  109.     0, 0 /* No PCI or CardBus support */
  110. };
  111. /*====================================================================*/
  112. /* Trick when selecting interrupts: the TCIC sktirq pin is supposed
  113.    to map to irq 11, but is coded as 0 or 1 in the irq registers. */
  114. #define TCIC_IRQ(x) ((x) ? (((x) == 11) ? 1 : (x)) : 15)
  115. #ifdef PCMCIA_DEBUG_X
  116. static u_char tcic_getb(u_char reg)
  117. {
  118.     u_char val = inb(tcic_base+reg);
  119.     printk(KERN_DEBUG "tcic_getb(%#x) = %#xn", tcic_base+reg, val);
  120.     return val;
  121. }
  122. static u_short tcic_getw(u_char reg)
  123. {
  124.     u_short val = inw(tcic_base+reg);
  125.     printk(KERN_DEBUG "tcic_getw(%#x) = %#xn", tcic_base+reg, val);
  126.     return val;
  127. }
  128. static void tcic_setb(u_char reg, u_char data)
  129. {
  130.     printk(KERN_DEBUG "tcic_setb(%#x, %#x)n", tcic_base+reg, data);
  131.     outb(data, tcic_base+reg);
  132. }
  133. static void tcic_setw(u_char reg, u_short data)
  134. {
  135.     printk(KERN_DEBUG "tcic_setw(%#x, %#x)n", tcic_base+reg, data);
  136.     outw(data, tcic_base+reg);
  137. }
  138. #else
  139. #define tcic_getb(reg) inb(tcic_base+reg)
  140. #define tcic_getw(reg) inw(tcic_base+reg)
  141. #define tcic_setb(reg, data) outb(data, tcic_base+reg)
  142. #define tcic_setw(reg, data) outw(data, tcic_base+reg)
  143. #endif
  144. static void tcic_setl(u_char reg, u_int data)
  145. {
  146. #ifdef PCMCIA_DEBUG_X
  147.     printk(KERN_DEBUG "tcic_setl(%#x, %#lx)n", tcic_base+reg, data);
  148. #endif
  149.     outw(data & 0xffff, tcic_base+reg);
  150.     outw(data >> 16, tcic_base+reg+2);
  151. }
  152. static u_char tcic_aux_getb(u_short reg)
  153. {
  154.     u_char mode = (tcic_getb(TCIC_MODE) & TCIC_MODE_PGMMASK) | reg;
  155.     tcic_setb(TCIC_MODE, mode);
  156.     return tcic_getb(TCIC_AUX);
  157. }
  158. static void tcic_aux_setb(u_short reg, u_char data)
  159. {
  160.     u_char mode = (tcic_getb(TCIC_MODE) & TCIC_MODE_PGMMASK) | reg;
  161.     tcic_setb(TCIC_MODE, mode);
  162.     tcic_setb(TCIC_AUX, data);
  163. }
  164. static u_short tcic_aux_getw(u_short reg)
  165. {
  166.     u_char mode = (tcic_getb(TCIC_MODE) & TCIC_MODE_PGMMASK) | reg;
  167.     tcic_setb(TCIC_MODE, mode);
  168.     return tcic_getw(TCIC_AUX);
  169. }
  170. static void tcic_aux_setw(u_short reg, u_short data)
  171. {
  172.     u_char mode = (tcic_getb(TCIC_MODE) & TCIC_MODE_PGMMASK) | reg;
  173.     tcic_setb(TCIC_MODE, mode);
  174.     tcic_setw(TCIC_AUX, data);
  175. }
  176. /*====================================================================*/
  177. /* Time conversion functions */
  178. static int to_cycles(int ns)
  179. {
  180.     if (ns < 14)
  181. return 0;
  182.     else
  183. return 2*(ns-14)/cycle_time;
  184. }
  185. static int to_ns(int cycles)
  186. {
  187.     return (cycles*cycle_time)/2 + 14;
  188. }
  189. /*====================================================================*/
  190. static volatile u_int irq_hits;
  191. static void __init irq_count(int irq, void *dev, struct pt_regs *regs)
  192. {
  193.     irq_hits++;
  194. }
  195. static u_int __init try_irq(int irq)
  196. {
  197.     u_short cfg;
  198.     irq_hits = 0;
  199.     if (request_irq(irq, irq_count, 0, "irq scan", irq_count) != 0)
  200. return -1;
  201.     mdelay(10);
  202.     if (irq_hits) {
  203. free_irq(irq, irq_count);
  204. return -1;
  205.     }
  206.     /* Generate one interrupt */
  207.     cfg = TCIC_SYSCFG_AUTOBUSY | 0x0a00;
  208.     tcic_aux_setw(TCIC_AUX_SYSCFG, cfg | TCIC_IRQ(irq));
  209.     tcic_setb(TCIC_IENA, TCIC_IENA_ERR | TCIC_IENA_CFG_HIGH);
  210.     tcic_setb(TCIC_ICSR, TCIC_ICSR_ERR | TCIC_ICSR_JAM);
  211.     udelay(1000);
  212.     free_irq(irq, irq_count);
  213.     /* Turn off interrupts */
  214.     tcic_setb(TCIC_IENA, TCIC_IENA_CFG_OFF);
  215.     while (tcic_getb(TCIC_ICSR))
  216. tcic_setb(TCIC_ICSR, TCIC_ICSR_JAM);
  217.     tcic_aux_setw(TCIC_AUX_SYSCFG, cfg);
  218.     
  219.     return (irq_hits != 1);
  220. }
  221. static u_int __init irq_scan(u_int mask0)
  222. {
  223.     u_int mask1;
  224.     int i;
  225. #ifdef __alpha__
  226. #define PIC 0x4d0
  227.     /* Don't probe level-triggered interrupts -- reserved for PCI */
  228.     int level_mask = inb_p(PIC) | (inb_p(PIC+1) << 8);
  229.     if (level_mask)
  230. mask0 &= ~level_mask;
  231. #endif
  232.     mask1 = 0;
  233.     if (do_scan) {
  234. for (i = 0; i < 16; i++)
  235.     if ((mask0 & (1 << i)) && (try_irq(i) == 0))
  236. mask1 |= (1 << i);
  237. for (i = 0; i < 16; i++)
  238.     if ((mask1 & (1 << i)) && (try_irq(i) != 0)) {
  239. mask1 ^= (1 << i);
  240.     }
  241.     }
  242.     
  243.     if (mask1) {
  244. printk("scanned");
  245.     } else {
  246. /* Fallback: just find interrupts that aren't in use */
  247. for (i = 0; i < 16; i++)
  248.     if ((mask0 & (1 << i)) &&
  249. (request_irq(i, irq_count, 0, "x", irq_count) == 0)) {
  250. mask1 |= (1 << i);
  251. free_irq(i, irq_count);
  252.     }
  253. printk("default");
  254.     }
  255.     
  256.     printk(") = ");
  257.     for (i = 0; i < 16; i++)
  258. if (mask1 & (1<<i))
  259.     printk("%s%d", ((mask1 & ((1<<i)-1)) ? "," : ""), i);
  260.     printk(" ");
  261.     
  262.     return mask1;
  263. }
  264. /*======================================================================
  265.     See if a card is present, powered up, in IO mode, and already
  266.     bound to a (non-PCMCIA) Linux driver.
  267.     We make an exception for cards that look like serial devices.
  268.     
  269. ======================================================================*/
  270. static int __init is_active(int s)
  271. {
  272.     u_short scf1, ioctl, base, num;
  273.     u_char pwr, sstat;
  274.     u_int addr;
  275.     
  276.     tcic_setl(TCIC_ADDR, (s << TCIC_ADDR_SS_SHFT)
  277.       | TCIC_ADDR_INDREG | TCIC_SCF1(s));
  278.     scf1 = tcic_getw(TCIC_DATA);
  279.     pwr = tcic_getb(TCIC_PWR);
  280.     sstat = tcic_getb(TCIC_SSTAT);
  281.     addr = TCIC_IWIN(s, 0);
  282.     tcic_setw(TCIC_ADDR, addr + TCIC_IBASE_X);
  283.     base = tcic_getw(TCIC_DATA);
  284.     tcic_setw(TCIC_ADDR, addr + TCIC_ICTL_X);
  285.     ioctl = tcic_getw(TCIC_DATA);
  286.     if (ioctl & TCIC_ICTL_TINY)
  287. num = 1;
  288.     else {
  289. num = (base ^ (base-1));
  290. base = base & (base-1);
  291.     }
  292.     if ((sstat & TCIC_SSTAT_CD) && (pwr & TCIC_PWR_VCC(s)) &&
  293. (scf1 & TCIC_SCF1_IOSTS) && (ioctl & TCIC_ICTL_ENA) &&
  294. (check_region(base, num) != 0) && ((base & 0xfeef) != 0x02e8))
  295. return 1;
  296.     else
  297. return 0;
  298. }
  299. /*======================================================================
  300.     This returns the revision code for the specified socket.
  301.     
  302. ======================================================================*/
  303. static int __init get_tcic_id(void)
  304. {
  305.     u_short id;
  306.     
  307.     tcic_aux_setw(TCIC_AUX_TEST, TCIC_TEST_DIAG);
  308.     id = tcic_aux_getw(TCIC_AUX_ILOCK);
  309.     id = (id & TCIC_ILOCKTEST_ID_MASK) >> TCIC_ILOCKTEST_ID_SH;
  310.     tcic_aux_setw(TCIC_AUX_TEST, 0);
  311.     return id;
  312. }
  313. /*====================================================================*/
  314. static int __init init_tcic(void)
  315. {
  316.     int i, sock;
  317.     u_int mask, scan;
  318.     servinfo_t serv;
  319.     DEBUG(0, "%sn", version);
  320.     pcmcia_get_card_services_info(&serv);
  321.     if (serv.Revision != CS_RELEASE_CODE) {
  322. printk(KERN_NOTICE "tcic: Card Services release "
  323.        "does not match!n");
  324. return -1;
  325.     }
  326.     
  327.     printk(KERN_INFO "Databook TCIC-2 PCMCIA probe: ");
  328.     sock = 0;
  329.     if (check_region(tcic_base, 16) == 0) {
  330. tcic_setw(TCIC_ADDR, 0);
  331. if (tcic_getw(TCIC_ADDR) == 0) {
  332.     tcic_setw(TCIC_ADDR, 0xc3a5);
  333.     if (tcic_getw(TCIC_ADDR) == 0xc3a5) sock = 2;
  334. }
  335. if (sock == 0) {
  336.     /* See if resetting the controller does any good */
  337.     tcic_setb(TCIC_SCTRL, TCIC_SCTRL_RESET);
  338.     tcic_setb(TCIC_SCTRL, 0);
  339.     tcic_setw(TCIC_ADDR, 0);
  340.     if (tcic_getw(TCIC_ADDR) == 0) {
  341. tcic_setw(TCIC_ADDR, 0xc3a5);
  342. if (tcic_getw(TCIC_ADDR) == 0xc3a5) sock = 2;
  343.     }
  344. }
  345.     } else
  346. printk("could not allocate ports, ");
  347.     if (sock == 0) {
  348. printk("not found.n");
  349. return -ENODEV;
  350.     }
  351.     request_region(tcic_base, 16, "tcic-2");
  352.     sockets = 0;
  353.     for (i = 0; i < sock; i++) {
  354. if ((i == ignore) || is_active(i)) continue;
  355. socket_table[sockets].psock = i;
  356. socket_table[sockets].handler = NULL;
  357. socket_table[sockets].info = NULL;
  358. socket_table[sockets].id = get_tcic_id();
  359. sockets++;
  360.     }
  361.     switch (socket_table[0].id) {
  362.     case TCIC_ID_DB86082:
  363. printk("DB86082"); break;
  364.     case TCIC_ID_DB86082A:
  365. printk("DB86082A"); break;
  366.     case TCIC_ID_DB86084:
  367. printk("DB86084"); break;
  368.     case TCIC_ID_DB86084A:
  369. printk("DB86084A"); break;
  370.     case TCIC_ID_DB86072:
  371. printk("DB86072"); break;
  372.     case TCIC_ID_DB86184:
  373. printk("DB86184"); break;
  374.     case TCIC_ID_DB86082B:
  375. printk("DB86082B"); break;
  376.     default:
  377. printk("Unknown ID 0x%02x", socket_table[0].id);
  378.     }
  379.     
  380.     /* Set up polling */
  381.     poll_timer.function = &tcic_timer;
  382.     poll_timer.data = 0;
  383.     init_timer(&poll_timer);
  384.     /* Build interrupt mask */
  385.     printk(", %d socketsn" KERN_INFO "  irq list (", sockets);
  386.     if (irq_list[0] == -1)
  387. mask = irq_mask;
  388.     else
  389. for (i = mask = 0; i < 16; i++)
  390.     mask |= (1<<irq_list[i]);
  391.     mask &= tcic_cap.irq_mask;
  392.     /* Scan interrupts */
  393.     mask = irq_scan(mask);
  394.     tcic_cap.irq_mask = mask;
  395.     
  396.     /* Check for only two interrupts available */
  397.     scan = (mask & (mask-1));
  398.     if (((scan & (scan-1)) == 0) && (poll_interval == 0))
  399. poll_interval = HZ;
  400.     
  401.     if (poll_interval == 0) {
  402. /* Avoid irq 12 unless it is explicitly requested */
  403. u_int cs_mask = mask & ((cs_irq) ? (1<<cs_irq) : ~(1<<12));
  404. for (i = 15; i > 0; i--)
  405.     if ((cs_mask & (1 << i)) &&
  406. (request_irq(i, tcic_interrupt, 0, "tcic",
  407.      tcic_interrupt) == 0))
  408. break;
  409. cs_irq = i;
  410. if (cs_irq == 0) poll_interval = HZ;
  411.     }
  412.     
  413.     if (tcic_cap.irq_mask & (1 << 11))
  414. printk("sktirq is irq 11, ");
  415.     if (cs_irq != 0)
  416. printk("status change on irq %dn", cs_irq);
  417.     else
  418. printk("polled status, interval = %d msn",
  419.        poll_interval * 1000 / HZ);
  420.     
  421.     for (i = 0; i < sockets; i++) {
  422. tcic_setw(TCIC_ADDR+2, socket_table[i].psock << TCIC_SS_SHFT);
  423. socket_table[i].last_sstat = tcic_getb(TCIC_SSTAT);
  424.     }
  425.     
  426.     /* jump start interrupt handler, if needed */
  427.     tcic_interrupt(0, NULL, NULL);
  428.     if (register_ss_entry(sockets, &tcic_operations) != 0) {
  429. printk(KERN_NOTICE "tcic: register_ss_entry() failedn");
  430. release_region(tcic_base, 16);
  431. if (cs_irq != 0)
  432.     free_irq(cs_irq, tcic_interrupt);
  433. return -ENODEV;
  434.     }
  435.     return 0;
  436.     
  437. } /* init_tcic */
  438. /*====================================================================*/
  439. static void __exit exit_tcic(void)
  440. {
  441.     u_long flags;
  442.     unregister_ss_entry(&tcic_operations);
  443.     save_flags(flags);
  444.     cli();
  445.     if (cs_irq != 0) {
  446. tcic_aux_setw(TCIC_AUX_SYSCFG, TCIC_SYSCFG_AUTOBUSY|0x0a00);
  447. free_irq(cs_irq, tcic_interrupt);
  448.     }
  449.     if (tcic_timer_pending)
  450. del_timer(&poll_timer);
  451.     restore_flags(flags);
  452.     release_region(tcic_base, 16);
  453. } /* exit_tcic */
  454. /*====================================================================*/
  455. static u_int pending_events[2];
  456. static spinlock_t pending_event_lock = SPIN_LOCK_UNLOCKED;
  457. static void tcic_bh(void *dummy)
  458. {
  459. u_int events;
  460. int i;
  461. for (i=0; i < sockets; i++) {
  462. spin_lock_irq(&pending_event_lock);
  463. events = pending_events[i];
  464. pending_events[i] = 0;
  465. spin_unlock_irq(&pending_event_lock);
  466. if (socket_table[i].handler)
  467. socket_table[i].handler(socket_table[i].info, events);
  468. }
  469. }
  470. static struct tq_struct tcic_task = {
  471. routine: tcic_bh
  472. };
  473. static void tcic_interrupt(int irq, void *dev, struct pt_regs *regs)
  474. {
  475.     int i, quick = 0;
  476.     u_char latch, sstat;
  477.     u_short psock;
  478.     u_int events;
  479.     static volatile int active = 0;
  480.     if (active) {
  481. printk(KERN_NOTICE "tcic: reentered interrupt handler!n");
  482. return;
  483.     } else
  484. active = 1;
  485.     DEBUG(2, "tcic: tcic_interrupt()n");
  486.     
  487.     for (i = 0; i < sockets; i++) {
  488. psock = socket_table[i].psock;
  489. tcic_setl(TCIC_ADDR, (psock << TCIC_ADDR_SS_SHFT)
  490.   | TCIC_ADDR_INDREG | TCIC_SCF1(psock));
  491. sstat = tcic_getb(TCIC_SSTAT);
  492. latch = sstat ^ socket_table[psock].last_sstat;
  493. socket_table[i].last_sstat = sstat;
  494. if (tcic_getb(TCIC_ICSR) & TCIC_ICSR_CDCHG) {
  495.     tcic_setb(TCIC_ICSR, TCIC_ICSR_CLEAR);
  496.     quick = 1;
  497. }
  498. if ((latch == 0) || (socket_table[psock].handler == NULL))
  499.     continue;
  500. events = (latch & TCIC_SSTAT_CD) ? SS_DETECT : 0;
  501. events |= (latch & TCIC_SSTAT_WP) ? SS_WRPROT : 0;
  502. if (tcic_getw(TCIC_DATA) & TCIC_SCF1_IOSTS) {
  503.     events |= (latch & TCIC_SSTAT_LBAT1) ? SS_STSCHG : 0;
  504. } else {
  505.     events |= (latch & TCIC_SSTAT_RDY) ? SS_READY : 0;
  506.     events |= (latch & TCIC_SSTAT_LBAT1) ? SS_BATDEAD : 0;
  507.     events |= (latch & TCIC_SSTAT_LBAT2) ? SS_BATWARN : 0;
  508. }
  509. if (events) {
  510. spin_lock(&pending_event_lock);
  511. pending_events[i] |= events;
  512. spin_unlock(&pending_event_lock);
  513. schedule_task(&tcic_task);
  514. }
  515.     }
  516.     /* Schedule next poll, if needed */
  517.     if (((cs_irq == 0) || quick) && (!tcic_timer_pending)) {
  518. poll_timer.expires = jiffies + (quick ? poll_quick : poll_interval);
  519. add_timer(&poll_timer);
  520. tcic_timer_pending = 1;
  521.     }
  522.     active = 0;
  523.     
  524.     DEBUG(2, "tcic: interrupt donen");
  525.     
  526. } /* tcic_interrupt */
  527. static void tcic_timer(u_long data)
  528. {
  529.     DEBUG(2, "tcic: tcic_timer()n");
  530.     tcic_timer_pending = 0;
  531.     tcic_interrupt(0, NULL, NULL);
  532. } /* tcic_timer */
  533. /*====================================================================*/
  534. static int tcic_register_callback(unsigned int lsock, void (*handler)(void *, unsigned int), void * info)
  535. {
  536.     socket_table[lsock].handler = handler;
  537.     socket_table[lsock].info = info;
  538.     if (handler == NULL) {
  539. MOD_DEC_USE_COUNT;
  540.     } else {
  541. MOD_INC_USE_COUNT;
  542.     }
  543.     return 0;
  544. } /* tcic_register_callback */
  545. /*====================================================================*/
  546. static int tcic_get_status(unsigned int lsock, u_int *value)
  547. {
  548.     u_short psock = socket_table[lsock].psock;
  549.     u_char reg;
  550.     tcic_setl(TCIC_ADDR, (psock << TCIC_ADDR_SS_SHFT)
  551.       | TCIC_ADDR_INDREG | TCIC_SCF1(psock));
  552.     reg = tcic_getb(TCIC_SSTAT);
  553.     *value  = (reg & TCIC_SSTAT_CD) ? SS_DETECT : 0;
  554.     *value |= (reg & TCIC_SSTAT_WP) ? SS_WRPROT : 0;
  555.     if (tcic_getw(TCIC_DATA) & TCIC_SCF1_IOSTS) {
  556. *value |= (reg & TCIC_SSTAT_LBAT1) ? SS_STSCHG : 0;
  557.     } else {
  558. *value |= (reg & TCIC_SSTAT_RDY) ? SS_READY : 0;
  559. *value |= (reg & TCIC_SSTAT_LBAT1) ? SS_BATDEAD : 0;
  560. *value |= (reg & TCIC_SSTAT_LBAT2) ? SS_BATWARN : 0;
  561.     }
  562.     reg = tcic_getb(TCIC_PWR);
  563.     if (reg & (TCIC_PWR_VCC(psock)|TCIC_PWR_VPP(psock)))
  564. *value |= SS_POWERON;
  565.     DEBUG(1, "tcic: GetStatus(%d) = %#2.2xn", lsock, *value);
  566.     return 0;
  567. } /* tcic_get_status */
  568.   
  569. /*====================================================================*/
  570. static int tcic_inquire_socket(unsigned int lsock, socket_cap_t *cap)
  571. {
  572.     *cap = tcic_cap;
  573.     return 0;
  574. } /* tcic_inquire_socket */
  575. /*====================================================================*/
  576. static int tcic_get_socket(unsigned int lsock, socket_state_t *state)
  577. {
  578.     u_short psock = socket_table[lsock].psock;
  579.     u_char reg;
  580.     u_short scf1, scf2;
  581.     
  582.     tcic_setl(TCIC_ADDR, (psock << TCIC_ADDR_SS_SHFT)
  583.       | TCIC_ADDR_INDREG | TCIC_SCF1(psock));
  584.     scf1 = tcic_getw(TCIC_DATA);
  585.     state->flags = (scf1 & TCIC_SCF1_IOSTS) ? SS_IOCARD : 0;
  586.     state->flags |= (scf1 & TCIC_SCF1_DMA_MASK) ? SS_DMA_MODE : 0;
  587.     state->flags |= (scf1 & TCIC_SCF1_SPKR) ? SS_SPKR_ENA : 0;
  588.     if (tcic_getb(TCIC_SCTRL) & TCIC_SCTRL_ENA)
  589. state->flags |= SS_OUTPUT_ENA;
  590.     state->io_irq = scf1 & TCIC_SCF1_IRQ_MASK;
  591.     if (state->io_irq == 1) state->io_irq = 11;
  592.     reg = tcic_getb(TCIC_PWR);
  593.     state->Vcc = state->Vpp = 0;
  594.     if (reg & TCIC_PWR_VCC(psock)) {
  595. if (reg & TCIC_PWR_VPP(psock))
  596.     state->Vcc = 50;
  597. else
  598.     state->Vcc = state->Vpp = 50;
  599.     } else {
  600. if (reg & TCIC_PWR_VPP(psock)) {
  601.     state->Vcc = 50;
  602.     state->Vpp = 120;
  603. }
  604.     }
  605.     reg = tcic_aux_getb(TCIC_AUX_ILOCK);
  606.     state->flags |= (reg & TCIC_ILOCK_CRESET) ? SS_RESET : 0;
  607.     /* Card status change interrupt mask */
  608.     tcic_setw(TCIC_ADDR, TCIC_SCF2(psock));
  609.     scf2 = tcic_getw(TCIC_DATA);
  610.     state->csc_mask = (scf2 & TCIC_SCF2_MCD) ? 0 : SS_DETECT;
  611.     if (state->flags & SS_IOCARD) {
  612. state->csc_mask |= (scf2 & TCIC_SCF2_MLBAT1) ? 0 : SS_STSCHG;
  613.     } else {
  614. state->csc_mask |= (scf2 & TCIC_SCF2_MLBAT1) ? 0 : SS_BATDEAD;
  615. state->csc_mask |= (scf2 & TCIC_SCF2_MLBAT2) ? 0 : SS_BATWARN;
  616. state->csc_mask |= (scf2 & TCIC_SCF2_MRDY) ? 0 : SS_READY;
  617.     }
  618.     DEBUG(1, "tcic: GetSocket(%d) = flags %#3.3x, Vcc %d, Vpp %d, "
  619.   "io_irq %d, csc_mask %#2.2xn", lsock, state->flags,
  620.   state->Vcc, state->Vpp, state->io_irq, state->csc_mask);
  621.     return 0;
  622. } /* tcic_get_socket */
  623. /*====================================================================*/
  624. static int tcic_set_socket(unsigned int lsock, socket_state_t *state)
  625. {
  626.     u_short psock = socket_table[lsock].psock;
  627.     u_char reg;
  628.     u_short scf1, scf2;
  629.     DEBUG(1, "tcic: SetSocket(%d, flags %#3.3x, Vcc %d, Vpp %d, "
  630.   "io_irq %d, csc_mask %#2.2x)n", lsock, state->flags,
  631.   state->Vcc, state->Vpp, state->io_irq, state->csc_mask);
  632.     tcic_setw(TCIC_ADDR+2, (psock << TCIC_SS_SHFT) | TCIC_ADR2_INDREG);
  633.     reg = tcic_getb(TCIC_PWR);
  634.     reg &= ~(TCIC_PWR_VCC(psock) | TCIC_PWR_VPP(psock));
  635.     if (state->Vcc == 50) {
  636. switch (state->Vpp) {
  637. case 0:   reg |= TCIC_PWR_VCC(psock) | TCIC_PWR_VPP(psock); break;
  638. case 50:  reg |= TCIC_PWR_VCC(psock); break;
  639. case 120: reg |= TCIC_PWR_VPP(psock); break;
  640. default:  return -EINVAL;
  641. }
  642.     } else if (state->Vcc != 0)
  643. return -EINVAL;
  644.     if (reg != tcic_getb(TCIC_PWR))
  645. tcic_setb(TCIC_PWR, reg);
  646.     reg = TCIC_ILOCK_HOLD_CCLK | TCIC_ILOCK_CWAIT;
  647.     if (state->flags & SS_OUTPUT_ENA) {
  648. tcic_setb(TCIC_SCTRL, TCIC_SCTRL_ENA);
  649. reg |= TCIC_ILOCK_CRESENA;
  650.     } else
  651. tcic_setb(TCIC_SCTRL, 0);
  652.     if (state->flags & SS_RESET)
  653. reg |= TCIC_ILOCK_CRESET;
  654.     tcic_aux_setb(TCIC_AUX_ILOCK, reg);
  655.     
  656.     tcic_setw(TCIC_ADDR, TCIC_SCF1(psock));
  657.     scf1 = TCIC_SCF1_FINPACK;
  658.     scf1 |= TCIC_IRQ(state->io_irq);
  659.     if (state->flags & SS_IOCARD) {
  660. scf1 |= TCIC_SCF1_IOSTS;
  661. if (state->flags & SS_SPKR_ENA)
  662.     scf1 |= TCIC_SCF1_SPKR;
  663. if (state->flags & SS_DMA_MODE)
  664.     scf1 |= TCIC_SCF1_DREQ2 << TCIC_SCF1_DMA_SHIFT;
  665.     }
  666.     tcic_setw(TCIC_DATA, scf1);
  667.     /* Some general setup stuff, and configure status interrupt */
  668.     reg = TCIC_WAIT_ASYNC | TCIC_WAIT_SENSE | to_cycles(250);
  669.     tcic_aux_setb(TCIC_AUX_WCTL, reg);
  670.     tcic_aux_setw(TCIC_AUX_SYSCFG, TCIC_SYSCFG_AUTOBUSY|0x0a00|
  671.   TCIC_IRQ(cs_irq));
  672.     
  673.     /* Card status change interrupt mask */
  674.     tcic_setw(TCIC_ADDR, TCIC_SCF2(psock));
  675.     scf2 = TCIC_SCF2_MALL;
  676.     if (state->csc_mask & SS_DETECT) scf2 &= ~TCIC_SCF2_MCD;
  677.     if (state->flags & SS_IOCARD) {
  678. if (state->csc_mask & SS_STSCHG) reg &= ~TCIC_SCF2_MLBAT1;
  679.     } else {
  680. if (state->csc_mask & SS_BATDEAD) reg &= ~TCIC_SCF2_MLBAT1;
  681. if (state->csc_mask & SS_BATWARN) reg &= ~TCIC_SCF2_MLBAT2;
  682. if (state->csc_mask & SS_READY) reg &= ~TCIC_SCF2_MRDY;
  683.     }
  684.     tcic_setw(TCIC_DATA, scf2);
  685.     /* For the ISA bus, the irq should be active-high totem-pole */
  686.     tcic_setb(TCIC_IENA, TCIC_IENA_CDCHG | TCIC_IENA_CFG_HIGH);
  687.     return 0;
  688. } /* tcic_set_socket */
  689.   
  690. /*====================================================================*/
  691. static int tcic_get_io_map(unsigned int lsock, struct pccard_io_map *io)
  692. {
  693.     u_short psock = socket_table[lsock].psock;
  694.     u_short base, ioctl;
  695.     u_int addr;
  696.     
  697.     if (io->map > 1) return -EINVAL;
  698.     tcic_setw(TCIC_ADDR+2, TCIC_ADR2_INDREG | (psock << TCIC_SS_SHFT));
  699.     addr = TCIC_IWIN(psock, io->map);
  700.     tcic_setw(TCIC_ADDR, addr + TCIC_IBASE_X);
  701.     base = tcic_getw(TCIC_DATA);
  702.     tcic_setw(TCIC_ADDR, addr + TCIC_ICTL_X);
  703.     ioctl = tcic_getw(TCIC_DATA);
  704.     if (ioctl & TCIC_ICTL_TINY)
  705. io->start = io->stop = base;
  706.     else {
  707. io->start = base & (base-1);
  708. io->stop = io->start + (base ^ (base-1));
  709.     }
  710.     io->speed = to_ns(ioctl & TCIC_ICTL_WSCNT_MASK);
  711.     io->flags  = (ioctl & TCIC_ICTL_ENA) ? MAP_ACTIVE : 0;
  712.     switch (ioctl & TCIC_ICTL_BW_MASK) {
  713.     case TCIC_ICTL_BW_DYN:
  714. io->flags |= MAP_AUTOSZ; break;
  715.     case TCIC_ICTL_BW_16:
  716. io->flags |= MAP_16BIT; break;
  717.     default:
  718. break;
  719.     }
  720.     DEBUG(1, "tcic: GetIOMap(%d, %d) = %#2.2x, %d ns, "
  721.   "%#4.4x-%#4.4xn", lsock, io->map, io->flags,
  722.   io->speed, io->start, io->stop);
  723.     return 0;
  724. } /* tcic_get_io_map */
  725. /*====================================================================*/
  726. static int tcic_set_io_map(unsigned int lsock, struct pccard_io_map *io)
  727. {
  728.     u_short psock = socket_table[lsock].psock;
  729.     u_int addr;
  730.     u_short base, len, ioctl;
  731.     
  732.     DEBUG(1, "tcic: SetIOMap(%d, %d, %#2.2x, %d ns, "
  733.   "%#4.4x-%#4.4x)n", lsock, io->map, io->flags,
  734.   io->speed, io->start, io->stop);
  735.     if ((io->map > 1) || (io->start > 0xffff) || (io->stop > 0xffff) ||
  736. (io->stop < io->start)) return -EINVAL;
  737.     tcic_setw(TCIC_ADDR+2, TCIC_ADR2_INDREG | (psock << TCIC_SS_SHFT));
  738.     addr = TCIC_IWIN(psock, io->map);
  739.     base = io->start; len = io->stop - io->start;
  740.     /* Check to see that len+1 is power of two, etc */
  741.     if ((len & (len+1)) || (base & len)) return -EINVAL;
  742.     base |= (len+1)>>1;
  743.     tcic_setw(TCIC_ADDR, addr + TCIC_IBASE_X);
  744.     tcic_setw(TCIC_DATA, base);
  745.     
  746.     ioctl  = (psock << TCIC_ICTL_SS_SHFT);
  747.     ioctl |= (len == 0) ? TCIC_ICTL_TINY : 0;
  748.     ioctl |= (io->flags & MAP_ACTIVE) ? TCIC_ICTL_ENA : 0;
  749.     ioctl |= to_cycles(io->speed) & TCIC_ICTL_WSCNT_MASK;
  750.     if (!(io->flags & MAP_AUTOSZ)) {
  751. ioctl |= TCIC_ICTL_QUIET;
  752. ioctl |= (io->flags & MAP_16BIT) ? TCIC_ICTL_BW_16 : TCIC_ICTL_BW_8;
  753.     }
  754.     tcic_setw(TCIC_ADDR, addr + TCIC_ICTL_X);
  755.     tcic_setw(TCIC_DATA, ioctl);
  756.     
  757.     return 0;
  758. } /* tcic_set_io_map */
  759. /*====================================================================*/
  760. static int tcic_get_mem_map(unsigned int lsock, struct pccard_mem_map *mem)
  761. {
  762.     u_short psock = socket_table[lsock].psock;
  763.     u_short addr, ctl;
  764.     u_long base, mmap;
  765.     
  766.     if (mem->map > 3) return -EINVAL;
  767.     tcic_setw(TCIC_ADDR+2, TCIC_ADR2_INDREG | (psock << TCIC_SS_SHFT));
  768.     addr = TCIC_MWIN(psock, mem->map);
  769.     
  770.     tcic_setw(TCIC_ADDR, addr + TCIC_MBASE_X);
  771.     base = tcic_getw(TCIC_DATA);
  772.     if (base & TCIC_MBASE_4K_BIT) {
  773. mem->sys_start = base & TCIC_MBASE_HA_MASK;
  774. mem->sys_stop = mem->sys_start;
  775.     } else {
  776. base &= TCIC_MBASE_HA_MASK;
  777. mem->sys_start = (base & (base-1));
  778. mem->sys_stop = mem->sys_start + (base ^ (base-1));
  779.     }
  780.     mem->sys_start = mem->sys_start << TCIC_MBASE_HA_SHFT;
  781.     mem->sys_stop = (mem->sys_stop << TCIC_MBASE_HA_SHFT) + 0x0fff;
  782.     
  783.     tcic_setw(TCIC_ADDR, addr + TCIC_MMAP_X);
  784.     mmap = tcic_getw(TCIC_DATA);
  785.     mem->flags = (mmap & TCIC_MMAP_REG) ? MAP_ATTRIB : 0;
  786.     mmap &= TCIC_MMAP_CA_MASK;
  787.     mem->card_start = mem->sys_start + (mmap << TCIC_MMAP_CA_SHFT);
  788.     mem->card_start &= 0x3ffffff;
  789.     
  790.     tcic_setw(TCIC_ADDR, addr + TCIC_MCTL_X);
  791.     ctl = tcic_getw(TCIC_DATA);
  792.     mem->flags |= (ctl & TCIC_MCTL_ENA) ? MAP_ACTIVE : 0;
  793.     mem->flags |= (ctl & TCIC_MCTL_B8) ? 0 : MAP_16BIT;
  794.     mem->flags |= (ctl & TCIC_MCTL_WP) ? MAP_WRPROT : 0;
  795.     mem->speed = to_ns(ctl & TCIC_MCTL_WSCNT_MASK);
  796.     
  797.     DEBUG(1, "tcic: GetMemMap(%d, %d) = %#2.2x, %d ns, "
  798.   "%#5.5lx-%#5.5lx, %#5.5xn", lsock, mem->map, mem->flags,
  799.   mem->speed, mem->sys_start, mem->sys_stop, mem->card_start);
  800.     return 0;
  801. } /* tcic_get_mem_map */
  802. /*====================================================================*/
  803.   
  804. static int tcic_set_mem_map(unsigned int lsock, struct pccard_mem_map *mem)
  805. {
  806.     u_short psock = socket_table[lsock].psock;
  807.     u_short addr, ctl;
  808.     u_long base, len, mmap;
  809.     DEBUG(1, "tcic: SetMemMap(%d, %d, %#2.2x, %d ns, "
  810.   "%#5.5lx-%#5.5lx, %#5.5x)n", lsock, mem->map, mem->flags,
  811.   mem->speed, mem->sys_start, mem->sys_stop, mem->card_start);
  812.     if ((mem->map > 3) || (mem->card_start > 0x3ffffff) ||
  813. (mem->sys_start > 0xffffff) || (mem->sys_stop > 0xffffff) ||
  814. (mem->sys_start > mem->sys_stop) || (mem->speed > 1000))
  815. return -EINVAL;
  816.     tcic_setw(TCIC_ADDR+2, TCIC_ADR2_INDREG | (psock << TCIC_SS_SHFT));
  817.     addr = TCIC_MWIN(psock, mem->map);
  818.     base = mem->sys_start; len = mem->sys_stop - mem->sys_start;
  819.     if ((len & (len+1)) || (base & len)) return -EINVAL;
  820.     if (len == 0x0fff)
  821. base = (base >> TCIC_MBASE_HA_SHFT) | TCIC_MBASE_4K_BIT;
  822.     else
  823. base = (base | (len+1)>>1) >> TCIC_MBASE_HA_SHFT;
  824.     tcic_setw(TCIC_ADDR, addr + TCIC_MBASE_X);
  825.     tcic_setw(TCIC_DATA, base);
  826.     
  827.     mmap = mem->card_start - mem->sys_start;
  828.     mmap = (mmap >> TCIC_MMAP_CA_SHFT) & TCIC_MMAP_CA_MASK;
  829.     if (mem->flags & MAP_ATTRIB) mmap |= TCIC_MMAP_REG;
  830.     tcic_setw(TCIC_ADDR, addr + TCIC_MMAP_X);
  831.     tcic_setw(TCIC_DATA, mmap);
  832.     ctl  = TCIC_MCTL_QUIET | (psock << TCIC_MCTL_SS_SHFT);
  833.     ctl |= to_cycles(mem->speed) & TCIC_MCTL_WSCNT_MASK;
  834.     ctl |= (mem->flags & MAP_16BIT) ? 0 : TCIC_MCTL_B8;
  835.     ctl |= (mem->flags & MAP_WRPROT) ? TCIC_MCTL_WP : 0;
  836.     ctl |= (mem->flags & MAP_ACTIVE) ? TCIC_MCTL_ENA : 0;
  837.     tcic_setw(TCIC_ADDR, addr + TCIC_MCTL_X);
  838.     tcic_setw(TCIC_DATA, ctl);
  839.     
  840.     return 0;
  841. } /* tcic_set_mem_map */
  842. /*====================================================================*/
  843. static void tcic_proc_setup(unsigned int sock, struct proc_dir_entry *base)
  844. {
  845. }
  846. static int tcic_init(unsigned int s)
  847. {
  848. int i;
  849. pccard_io_map io = { 0, 0, 0, 0, 1 };
  850. pccard_mem_map mem = { 0, 0, 0, 0, 0, 0 };
  851. mem.sys_stop = 0x1000;
  852. tcic_set_socket(s, &dead_socket);
  853. for (i = 0; i < 2; i++) {
  854. io.map = i;
  855. tcic_set_io_map(s, &io);
  856. }
  857. for (i = 0; i < 5; i++) {
  858. mem.map = i;
  859. tcic_set_mem_map(s, &mem);
  860. }
  861. return 0;
  862. }
  863. static int tcic_suspend(unsigned int sock)
  864. {
  865. return tcic_set_socket(sock, &dead_socket);
  866. }
  867. static struct pccard_operations tcic_operations = {
  868. tcic_init,
  869. tcic_suspend,
  870. tcic_register_callback,
  871. tcic_inquire_socket,
  872. tcic_get_status,
  873. tcic_get_socket,
  874. tcic_set_socket,
  875. tcic_get_io_map,
  876. tcic_set_io_map,
  877. tcic_get_mem_map,
  878. tcic_set_mem_map,
  879. tcic_proc_setup
  880. };
  881. /*====================================================================*/
  882. module_init(init_tcic);
  883. module_exit(exit_tcic);