Lines Matching refs:tcic_base
63 static unsigned long tcic_base = TCIC_BASE; variable
88 module_param_hw(tcic_base, ulong, ioport, 0444);
126 u_char val = inb(tcic_base+reg); in tcic_getb()
127 printk(KERN_DEBUG "tcic_getb(%#lx) = %#x\n", tcic_base+reg, val); in tcic_getb()
133 u_short val = inw(tcic_base+reg); in tcic_getw()
134 printk(KERN_DEBUG "tcic_getw(%#lx) = %#x\n", tcic_base+reg, val); in tcic_getw()
140 printk(KERN_DEBUG "tcic_setb(%#lx, %#x)\n", tcic_base+reg, data); in tcic_setb()
141 outb(data, tcic_base+reg); in tcic_setb()
146 printk(KERN_DEBUG "tcic_setw(%#lx, %#x)\n", tcic_base+reg, data); in tcic_setw()
147 outw(data, tcic_base+reg); in tcic_setw()
150 #define tcic_getb(reg) inb(tcic_base+reg)
151 #define tcic_getw(reg) inw(tcic_base+reg)
152 #define tcic_setb(reg, data) outb(data, tcic_base+reg)
153 #define tcic_setw(reg, data) outw(data, tcic_base+reg)
159 printk(KERN_DEBUG "tcic_setl(%#x, %#lx)\n", tcic_base+reg, data); in tcic_setl()
161 outw(data & 0xffff, tcic_base+reg); in tcic_setl()
162 outw(data >> 16, tcic_base+reg+2); in tcic_setl()
372 if (!request_region(tcic_base, 16, "tcic-2")) { in init_tcic()
396 release_region(tcic_base, 16); in init_tcic()
517 release_region(tcic_base, 16); in exit_tcic()