Lines Matching refs:base
12 MODULE_PARM_DESC(io, "base I/O address of controller (0x140, 0x150, 0x160, 0x170)");
89 int i, base = 0, irq = 0;
109 /* read I/O base from BIOS area */
111 base = readb(p + sig->base_offset) +
114 if (base) {
115 dev_info(dev, "BIOS at 0x%lx specifies I/O base 0x%x\n",
116 bios_base, base);
117 } else { /* no I/O base in BIOS area */
124 base = ports[ndev - ADDRESS_COUNT];
130 if (!request_region(base, FDOMAIN_REGION_SIZE, "fdomain_isa"))
133 irq = irqs[(inb(base + REG_CFG1) & CFG1_IRQ_MASK) >> 1];
138 sh = fdomain_create(base, irq, this_id, dev);
140 release_region(base, FDOMAIN_REGION_SIZE);
160 dev_err(dev, "base 0x%x already in use", io[ndev]);
169 dev_err(dev, "controller not found at base 0x%x", io[ndev]);
181 int base = sh->io_port;
184 release_region(base, FDOMAIN_REGION_SIZE);