tcic.c

来自「Linux Kernel 2.6.9 for OMAP1710」· C语言 代码 · 共 905 行 · 第 1/2 页

C
905
字号
/*======================================================================    Device driver for Databook TCIC-2 PCMCIA controller    tcic.c 1.111 2000/02/15 04:13:12    The contents of this file are subject to the Mozilla Public    License Version 1.1 (the "License"); you may not use this file    except in compliance with the License. You may obtain a copy of    the License at http://www.mozilla.org/MPL/    Software distributed under the License is distributed on an "AS    IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or    implied. See the License for the specific language governing    rights and limitations under the License.    The initial developer of the original code is David A. Hinds    <dahinds@users.sourceforge.net>.  Portions created by David A. Hinds    are Copyright (C) 1999 David A. Hinds.  All Rights Reserved.    Alternatively, the contents of this file may be used under the    terms of the GNU General Public License version 2 (the "GPL"), in which    case the provisions of the GPL are applicable instead of the    above.  If you wish to allow the use of your version of this file    only under the terms of the GPL and not to allow others to use    your version of this file under the MPL, indicate your decision    by deleting the provisions above and replace them with the notice    and other provisions required by the GPL.  If you do not delete    the provisions above, a recipient may use your version of this    file under either the MPL or the GPL.    ======================================================================*/#include <linux/module.h>#include <linux/moduleparam.h>#include <linux/init.h>#include <linux/types.h>#include <linux/fcntl.h>#include <linux/string.h>#include <linux/errno.h>#include <linux/interrupt.h>#include <linux/slab.h>#include <linux/timer.h>#include <linux/ioport.h>#include <linux/delay.h>#include <linux/workqueue.h>#include <linux/device.h>#include <asm/io.h>#include <asm/bitops.h>#include <asm/system.h>#include <pcmcia/version.h>#include <pcmcia/cs_types.h>#include <pcmcia/cs.h>#include <pcmcia/ss.h>#include "tcic.h"#ifdef DEBUGstatic int pc_debug;module_param(pc_debug, int, 0644);static const char version[] ="tcic.c 1.111 2000/02/15 04:13:12 (David Hinds)";#define debug(lvl, fmt, arg...) do {				\	if (pc_debug > (lvl))					\		printk(KERN_DEBUG "tcic: " fmt , ## arg);	\} while (0)#else#define debug(lvl, fmt, arg...) do { } while (0)#endifMODULE_AUTHOR("David Hinds <dahinds@users.sourceforge.net>");MODULE_DESCRIPTION("Databook TCIC-2 PCMCIA socket driver");MODULE_LICENSE("Dual MPL/GPL");/*====================================================================*//* Parameters that can be set with 'insmod' *//* The base port address of the TCIC-2 chip */static int tcic_base = TCIC_BASE;/* Specify a socket number to ignore */static int ignore = -1;/* Probe for safe interrupts? */static int do_scan = 1;/* Bit map of interrupts to choose from */static u_int irq_mask = 0xffff;static int irq_list[16];static int irq_list_count;/* The card status change interrupt -- 0 means autoselect */static int cs_irq;/* Poll status interval -- 0 means default to interrupt */static int poll_interval;/* Delay for card status double-checking */static int poll_quick = HZ/20;/* CCLK external clock time, in nanoseconds.  70 ns = 14.31818 MHz */static int cycle_time = 70;module_param(tcic_base, int, 0444);module_param(ignore, int, 0444);module_param(do_scan, int, 0444);module_param(irq_mask, int, 0444);module_param_array(irq_list, int, irq_list_count, 0444);module_param(cs_irq, int, 0444);module_param(poll_interval, int, 0444);module_param(poll_quick, int, 0444);module_param(cycle_time, int, 0444);/*====================================================================*/static irqreturn_t tcic_interrupt(int irq, void *dev, struct pt_regs *regs);static void tcic_timer(u_long data);static struct pccard_operations tcic_operations;struct tcic_socket {    u_short	psock;    u_char	last_sstat;    u_char	id;    struct pcmcia_socket	socket;};static struct timer_list poll_timer;static int tcic_timer_pending;static int sockets;static struct tcic_socket socket_table[2];/*====================================================================*//* Trick when selecting interrupts: the TCIC sktirq pin is supposed   to map to irq 11, but is coded as 0 or 1 in the irq registers. */#define TCIC_IRQ(x) ((x) ? (((x) == 11) ? 1 : (x)) : 15)#ifdef DEBUG_Xstatic u_char tcic_getb(u_char reg){    u_char val = inb(tcic_base+reg);    printk(KERN_DEBUG "tcic_getb(%#x) = %#x\n", tcic_base+reg, val);    return val;}static u_short tcic_getw(u_char reg){    u_short val = inw(tcic_base+reg);    printk(KERN_DEBUG "tcic_getw(%#x) = %#x\n", tcic_base+reg, val);    return val;}static void tcic_setb(u_char reg, u_char data){    printk(KERN_DEBUG "tcic_setb(%#x, %#x)\n", tcic_base+reg, data);    outb(data, tcic_base+reg);}static void tcic_setw(u_char reg, u_short data){    printk(KERN_DEBUG "tcic_setw(%#x, %#x)\n", tcic_base+reg, data);    outw(data, tcic_base+reg);}#else#define tcic_getb(reg) inb(tcic_base+reg)#define tcic_getw(reg) inw(tcic_base+reg)#define tcic_setb(reg, data) outb(data, tcic_base+reg)#define tcic_setw(reg, data) outw(data, tcic_base+reg)#endifstatic void tcic_setl(u_char reg, u_int data){#ifdef DEBUG_X    printk(KERN_DEBUG "tcic_setl(%#x, %#lx)\n", tcic_base+reg, data);#endif    outw(data & 0xffff, tcic_base+reg);    outw(data >> 16, tcic_base+reg+2);}static u_char tcic_aux_getb(u_short reg){    u_char mode = (tcic_getb(TCIC_MODE) & TCIC_MODE_PGMMASK) | reg;    tcic_setb(TCIC_MODE, mode);    return tcic_getb(TCIC_AUX);}static void tcic_aux_setb(u_short reg, u_char data){    u_char mode = (tcic_getb(TCIC_MODE) & TCIC_MODE_PGMMASK) | reg;    tcic_setb(TCIC_MODE, mode);    tcic_setb(TCIC_AUX, data);}static u_short tcic_aux_getw(u_short reg){    u_char mode = (tcic_getb(TCIC_MODE) & TCIC_MODE_PGMMASK) | reg;    tcic_setb(TCIC_MODE, mode);    return tcic_getw(TCIC_AUX);}static void tcic_aux_setw(u_short reg, u_short data){    u_char mode = (tcic_getb(TCIC_MODE) & TCIC_MODE_PGMMASK) | reg;    tcic_setb(TCIC_MODE, mode);    tcic_setw(TCIC_AUX, data);}/*====================================================================*//* Time conversion functions */static int to_cycles(int ns){    if (ns < 14)	return 0;    else	return 2*(ns-14)/cycle_time;}/*====================================================================*/static volatile u_int irq_hits;static irqreturn_t __init tcic_irq_count(int irq, void *dev, struct pt_regs *regs){    irq_hits++;    return IRQ_HANDLED;}static u_int __init try_irq(int irq){    u_short cfg;    irq_hits = 0;    if (request_irq(irq, tcic_irq_count, 0, "irq scan", tcic_irq_count) != 0)	return -1;    mdelay(10);    if (irq_hits) {	free_irq(irq, tcic_irq_count);	return -1;    }    /* Generate one interrupt */    cfg = TCIC_SYSCFG_AUTOBUSY | 0x0a00;    tcic_aux_setw(TCIC_AUX_SYSCFG, cfg | TCIC_IRQ(irq));    tcic_setb(TCIC_IENA, TCIC_IENA_ERR | TCIC_IENA_CFG_HIGH);    tcic_setb(TCIC_ICSR, TCIC_ICSR_ERR | TCIC_ICSR_JAM);    udelay(1000);    free_irq(irq, tcic_irq_count);    /* Turn off interrupts */    tcic_setb(TCIC_IENA, TCIC_IENA_CFG_OFF);    while (tcic_getb(TCIC_ICSR))	tcic_setb(TCIC_ICSR, TCIC_ICSR_JAM);    tcic_aux_setw(TCIC_AUX_SYSCFG, cfg);        return (irq_hits != 1);}static u_int __init irq_scan(u_int mask0){    u_int mask1;    int i;#ifdef __alpha__#define PIC 0x4d0    /* Don't probe level-triggered interrupts -- reserved for PCI */    int level_mask = inb_p(PIC) | (inb_p(PIC+1) << 8);    if (level_mask)	mask0 &= ~level_mask;#endif    mask1 = 0;    if (do_scan) {	for (i = 0; i < 16; i++)	    if ((mask0 & (1 << i)) && (try_irq(i) == 0))		mask1 |= (1 << i);	for (i = 0; i < 16; i++)	    if ((mask1 & (1 << i)) && (try_irq(i) != 0)) {		mask1 ^= (1 << i);	    }    }        if (mask1) {	printk("scanned");    } else {	/* Fallback: just find interrupts that aren't in use */	for (i = 0; i < 16; i++)	    if ((mask0 & (1 << i)) &&		(request_irq(i, tcic_irq_count, 0, "x", tcic_irq_count) == 0)) {		mask1 |= (1 << i);		free_irq(i, tcic_irq_count);	    }	printk("default");    }        printk(") = ");    for (i = 0; i < 16; i++)	if (mask1 & (1<<i))	    printk("%s%d", ((mask1 & ((1<<i)-1)) ? "," : ""), i);    printk(" ");        return mask1;}/*======================================================================    See if a card is present, powered up, in IO mode, and already    bound to a (non-PCMCIA) Linux driver.    We make an exception for cards that look like serial devices.    ======================================================================*/static int __init is_active(int s){    u_short scf1, ioctl, base, num;    u_char pwr, sstat;    u_int addr;        tcic_setl(TCIC_ADDR, (s << TCIC_ADDR_SS_SHFT)	      | TCIC_ADDR_INDREG | TCIC_SCF1(s));    scf1 = tcic_getw(TCIC_DATA);    pwr = tcic_getb(TCIC_PWR);    sstat = tcic_getb(TCIC_SSTAT);    addr = TCIC_IWIN(s, 0);    tcic_setw(TCIC_ADDR, addr + TCIC_IBASE_X);    base = tcic_getw(TCIC_DATA);    tcic_setw(TCIC_ADDR, addr + TCIC_ICTL_X);    ioctl = tcic_getw(TCIC_DATA);    if (ioctl & TCIC_ICTL_TINY)	num = 1;    else {	num = (base ^ (base-1));	base = base & (base-1);    }    if ((sstat & TCIC_SSTAT_CD) && (pwr & TCIC_PWR_VCC(s)) &&	(scf1 & TCIC_SCF1_IOSTS) && (ioctl & TCIC_ICTL_ENA) &&	(check_region(base, num) != 0) && ((base & 0xfeef) != 0x02e8))	return 1;    else	return 0;}/*======================================================================    This returns the revision code for the specified socket.    ======================================================================*/static int __init get_tcic_id(void){    u_short id;        tcic_aux_setw(TCIC_AUX_TEST, TCIC_TEST_DIAG);    id = tcic_aux_getw(TCIC_AUX_ILOCK);    id = (id & TCIC_ILOCKTEST_ID_MASK) >> TCIC_ILOCKTEST_ID_SH;    tcic_aux_setw(TCIC_AUX_TEST, 0);    return id;}/*====================================================================*/static int tcic_drv_suspend(struct device *dev, u32 state, u32 level){	int ret = 0;	if (level == SUSPEND_SAVE_STATE)		ret = pcmcia_socket_dev_suspend(dev, state);	return ret;}static int tcic_drv_resume(struct device *dev, u32 level){	int ret = 0;	if (level == RESUME_RESTORE_STATE)		ret = pcmcia_socket_dev_resume(dev);	return ret;}static struct device_driver tcic_driver = {	.name = "tcic-pcmcia",	.bus = &platform_bus_type,	.suspend = tcic_drv_suspend,	.resume = tcic_drv_resume,};static struct platform_device tcic_device = {	.name = "tcic-pcmcia",	.id = 0,};static int __init init_tcic(void){    int i, sock, ret = 0;    u_int mask, scan;    if (driver_register(&tcic_driver))	return -1;        printk(KERN_INFO "Databook TCIC-2 PCMCIA probe: ");    sock = 0;    if (!request_region(tcic_base, 16, "tcic-2")) {	printk("could not allocate ports,\n ");	driver_unregister(&tcic_driver);	return -ENODEV;    }    else {	tcic_setw(TCIC_ADDR, 0);	if (tcic_getw(TCIC_ADDR) == 0) {	    tcic_setw(TCIC_ADDR, 0xc3a5);	    if (tcic_getw(TCIC_ADDR) == 0xc3a5) sock = 2;	}	if (sock == 0) {	    /* See if resetting the controller does any good */	    tcic_setb(TCIC_SCTRL, TCIC_SCTRL_RESET);	    tcic_setb(TCIC_SCTRL, 0);	    tcic_setw(TCIC_ADDR, 0);	    if (tcic_getw(TCIC_ADDR) == 0) {		tcic_setw(TCIC_ADDR, 0xc3a5);		if (tcic_getw(TCIC_ADDR) == 0xc3a5) sock = 2;	    }	}    }    if (sock == 0) {	printk("not found.\n");	release_region(tcic_base, 16);	driver_unregister(&tcic_driver);	return -ENODEV;    }    sockets = 0;    for (i = 0; i < sock; i++) {	if ((i == ignore) || is_active(i)) continue;	socket_table[sockets].psock = i;	socket_table[sockets].id = get_tcic_id();	socket_table[sockets].socket.owner = THIS_MODULE;	/* only 16-bit cards, memory windows must be size-aligned */	/* No PCI or CardBus support */	socket_table[sockets].socket.features = SS_CAP_PCCARD | SS_CAP_MEM_ALIGN;	/* irq 14, 11, 10, 7, 6, 5, 4, 3 */	socket_table[sockets].socket.irq_mask = 0x4cf8;	/* 4K minimum window size */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?