📄 ecard.c
字号:
0x03, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00};static voidecard_irqexp_handler(unsigned int irq, struct irqdesc *desc, struct pt_regs *regs){ const unsigned int statusmask = 15; unsigned int status; status = __raw_readb(EXPMASK_STATUS) & statusmask; if (status) { unsigned int slot = first_set[status]; ecard_t *ec = slot_to_ecard(slot); if (ec->claimed) { struct irqdesc *d = irqdesc + ec->irq; /* * this ugly code is so that we can operate a * prioritorising system: * * Card 0 highest priority * Card 1 * Card 2 * Card 3 lowest priority * * Serial cards should go in 0/1, ethernet/scsi in 2/3 * otherwise you will lose serial data at high speeds! */ desc_handle_irq(ec->irq, d, regs); } else { printk(KERN_WARNING "card%d: interrupt from unclaimed " "card???\n", slot); have_expmask &= ~(1 << slot); __raw_writeb(have_expmask, EXPMASK_ENABLE); } } else printk(KERN_WARNING "Wild interrupt from backplane (masks)\n");}static int __init ecard_probeirqhw(void){ ecard_t *ec; int found; __raw_writeb(0x00, EXPMASK_ENABLE); __raw_writeb(0xff, EXPMASK_STATUS); found = (__raw_readb(EXPMASK_STATUS) & 15) == 0; __raw_writeb(0xff, EXPMASK_ENABLE); if (found) { printk(KERN_DEBUG "Expansion card interrupt " "management hardware found\n"); /* for each card present, set a bit to '1' */ have_expmask = 0x80000000; for (ec = cards; ec; ec = ec->next) have_expmask |= 1 << ec->slot_no; __raw_writeb(have_expmask, EXPMASK_ENABLE); } return found;}#else#define ecard_irqexp_handler NULL#define ecard_probeirqhw() (0)#endif#ifndef IO_EC_MEMC8_BASE#define IO_EC_MEMC8_BASE 0#endifunsigned int __ecard_address(ecard_t *ec, card_type_t type, card_speed_t speed){ unsigned long address = 0; int slot = ec->slot_no; if (ec->slot_no == 8) return IO_EC_MEMC8_BASE; ectcr &= ~(1 << slot); switch (type) { case ECARD_MEMC: if (slot < 4) address = IO_EC_MEMC_BASE + (slot << 12); break; case ECARD_IOC: if (slot < 4) address = IO_EC_IOC_BASE + (slot << 12);#ifdef IO_EC_IOC4_BASE else address = IO_EC_IOC4_BASE + ((slot - 4) << 12);#endif if (address) address += speed << 17; break;#ifdef IO_EC_EASI_BASE case ECARD_EASI: address = IO_EC_EASI_BASE + (slot << 22); if (speed == ECARD_FAST) ectcr |= 1 << slot; break;#endif default: break; }#ifdef IOMD_ECTCR iomd_writeb(ectcr, IOMD_ECTCR);#endif return address;}static int ecard_prints(char *buffer, ecard_t *ec){ char *start = buffer; buffer += sprintf(buffer, " %d: %s ", ec->slot_no, ec->type == ECARD_EASI ? "EASI" : " "); if (ec->cid.id == 0) { struct in_chunk_dir incd; buffer += sprintf(buffer, "[%04X:%04X] ", ec->cid.manufacturer, ec->cid.product); if (!ec->card_desc && ec->cid.cd && ecard_readchunk(&incd, ec, 0xf5, 0)) { ec->card_desc = kmalloc(strlen(incd.d.string)+1, GFP_KERNEL); if (ec->card_desc) strcpy((char *)ec->card_desc, incd.d.string); } buffer += sprintf(buffer, "%s\n", ec->card_desc ? ec->card_desc : "*unknown*"); } else buffer += sprintf(buffer, "Simple card %d\n", ec->cid.id); return buffer - start;}static int get_ecard_dev_info(char *buf, char **start, off_t pos, int count){ ecard_t *ec = cards; off_t at = 0; int len, cnt; cnt = 0; while (ec && count > cnt) { len = ecard_prints(buf, ec); at += len; if (at >= pos) { if (!*start) { *start = buf + (pos - (at - len)); cnt = at - pos; } else cnt += len; buf += len; } ec = ec->next; } return (count > cnt) ? cnt : count;}static struct proc_dir_entry *proc_bus_ecard_dir = NULL;static void ecard_proc_init(void){ proc_bus_ecard_dir = proc_mkdir("ecard", proc_bus); create_proc_info_entry("devices", 0, proc_bus_ecard_dir, get_ecard_dev_info);}#define ec_set_resource(ec,nr,st,sz) \ do { \ (ec)->resource[nr].name = ec->dev.bus_id; \ (ec)->resource[nr].start = st; \ (ec)->resource[nr].end = (st) + (sz) - 1; \ (ec)->resource[nr].flags = IORESOURCE_MEM; \ } while (0)static void __init ecard_free_card(struct expansion_card *ec){ int i; for (i = 0; i < ECARD_NUM_RESOURCES; i++) if (ec->resource[i].flags) release_resource(&ec->resource[i]); kfree(ec);}static struct expansion_card *__init ecard_alloc_card(int type, int slot){ struct expansion_card *ec; unsigned long base; int i; ec = kmalloc(sizeof(ecard_t), GFP_KERNEL); if (!ec) { ec = ERR_PTR(-ENOMEM); goto nomem; } memset(ec, 0, sizeof(ecard_t)); ec->slot_no = slot; ec->type = type; ec->irq = NO_IRQ; ec->fiq = NO_IRQ; ec->dma = NO_DMA; ec->ops = &ecard_default_ops; snprintf(ec->dev.bus_id, sizeof(ec->dev.bus_id), "ecard%d", slot); ec->dev.parent = NULL; ec->dev.bus = &ecard_bus_type; ec->dev.dma_mask = &ec->dma_mask; ec->dma_mask = (u64)0xffffffff; if (slot < 4) { ec_set_resource(ec, ECARD_RES_MEMC, PODSLOT_MEMC_BASE + (slot << 14), PODSLOT_MEMC_SIZE); base = PODSLOT_IOC0_BASE + (slot << 14); } else base = PODSLOT_IOC4_BASE + ((slot - 4) << 14);#ifdef CONFIG_ARCH_RPC if (slot < 8) { ec_set_resource(ec, ECARD_RES_EASI, PODSLOT_EASI_BASE + (slot << 24), PODSLOT_EASI_SIZE); } if (slot == 8) { ec_set_resource(ec, ECARD_RES_MEMC, NETSLOT_BASE, NETSLOT_SIZE); } else#endif for (i = 0; i <= ECARD_RES_IOCSYNC - ECARD_RES_IOCSLOW; i++) ec_set_resource(ec, i + ECARD_RES_IOCSLOW, base + (i << 19), PODSLOT_IOC_SIZE); for (i = 0; i < ECARD_NUM_RESOURCES; i++) { if (ec->resource[i].flags && request_resource(&iomem_resource, &ec->resource[i])) { printk(KERN_ERR "%s: resource(s) not available\n", ec->dev.bus_id); ec->resource[i].end -= ec->resource[i].start; ec->resource[i].start = 0; ec->resource[i].flags = 0; } } nomem: return ec;}static ssize_t ecard_show_irq(struct device *dev, struct device_attribute *attr, char *buf){ struct expansion_card *ec = ECARD_DEV(dev); return sprintf(buf, "%u\n", ec->irq);}static ssize_t ecard_show_dma(struct device *dev, struct device_attribute *attr, char *buf){ struct expansion_card *ec = ECARD_DEV(dev); return sprintf(buf, "%u\n", ec->dma);}static ssize_t ecard_show_resources(struct device *dev, struct device_attribute *attr, char *buf){ struct expansion_card *ec = ECARD_DEV(dev); char *str = buf; int i; for (i = 0; i < ECARD_NUM_RESOURCES; i++) str += sprintf(str, "%08lx %08lx %08lx\n", ec->resource[i].start, ec->resource[i].end, ec->resource[i].flags); return str - buf;}static ssize_t ecard_show_vendor(struct device *dev, struct device_attribute *attr, char *buf){ struct expansion_card *ec = ECARD_DEV(dev); return sprintf(buf, "%u\n", ec->cid.manufacturer);}static ssize_t ecard_show_device(struct device *dev, struct device_attribute *attr, char *buf){ struct expansion_card *ec = ECARD_DEV(dev); return sprintf(buf, "%u\n", ec->cid.product);}static ssize_t ecard_show_type(struct device *dev, struct device_attribute *attr, char *buf){ struct expansion_card *ec = ECARD_DEV(dev); return sprintf(buf, "%s\n", ec->type == ECARD_EASI ? "EASI" : "IOC");}static struct device_attribute ecard_dev_attrs[] = { __ATTR(device, S_IRUGO, ecard_show_device, NULL), __ATTR(dma, S_IRUGO, ecard_show_dma, NULL), __ATTR(irq, S_IRUGO, ecard_show_irq, NULL), __ATTR(resource, S_IRUGO, ecard_show_resources, NULL), __ATTR(type, S_IRUGO, ecard_show_type, NULL), __ATTR(vendor, S_IRUGO, ecard_show_vendor, NULL), __ATTR_NULL,};int ecard_request_resources(struct expansion_card *ec){ int i, err = 0; for (i = 0; i < ECARD_NUM_RESOURCES; i++) { if (ecard_resource_end(ec, i) && !request_mem_region(ecard_resource_start(ec, i), ecard_resource_len(ec, i), ec->dev.driver->name)) { err = -EBUSY; break; } } if (err) { while (i--) if (ecard_resource_end(ec, i)) release_mem_region(ecard_resource_start(ec, i), ecard_resource_len(ec, i)); } return err;}EXPORT_SYMBOL(ecard_request_resources);void ecard_release_resources(struct expansion_card *ec){ int i; for (i = 0; i < ECARD_NUM_RESOURCES; i++) if (ecard_resource_end(ec, i)) release_mem_region(ecard_resource_start(ec, i), ecard_resource_len(ec, i));}EXPORT_SYMBOL(ecard_release_resources);/* * Probe for an expansion card. * * If bit 1 of the first byte of the card is set, then the * card does not exist. */static int __initecard_probe(int slot, card_type_t type){ ecard_t **ecp; ecard_t *ec; struct ex_ecid cid; int i, rc; ec = ecard_alloc_card(type, slot); if (IS_ERR(ec)) { rc = PTR_ERR(ec); goto nomem; } rc = -ENODEV; if ((ec->podaddr = ecard_address(ec, type, ECARD_SYNC)) == 0) goto nodev; cid.r_zero = 1; ecard_readbytes(&cid, ec, 0, 16, 0); if (cid.r_zero) goto nodev; ec->cid.id = cid.r_id; ec->cid.cd = cid.r_cd; ec->cid.is = cid.r_is; ec->cid.w = cid.r_w; ec->cid.manufacturer = ecard_getu16(cid.r_manu); ec->cid.product = ecard_getu16(cid.r_prod); ec->cid.country = cid.r_country; ec->cid.irqmask = cid.r_irqmask; ec->cid.irqoff = ecard_gets24(cid.r_irqoff); ec->cid.fiqmask = cid.r_fiqmask; ec->cid.fiqoff = ecard_gets24(cid.r_fiqoff); ec->fiqaddr = ec->irqaddr = (void __iomem *)ioaddr(ec->podaddr); if (ec->cid.is) { ec->irqmask = ec->cid.irqmask; ec->irqaddr += ec->cid.irqoff; ec->fiqmask = ec->cid.fiqmask; ec->fiqaddr += ec->cid.fiqoff; } else { ec->irqmask = 1; ec->fiqmask = 4; } for (i = 0; i < sizeof(blacklist) / sizeof(*blacklist); i++) if (blacklist[i].manufacturer == ec->cid.manufacturer && blacklist[i].product == ec->cid.product) { ec->card_desc = blacklist[i].type; break; } /* * hook the interrupt handlers */ if (slot < 8) { ec->irq = 32 + slot; set_irq_chip(ec->irq, &ecard_chip); set_irq_handler(ec->irq, do_level_IRQ); set_irq_flags(ec->irq, IRQF_VALID); }#ifdef IO_EC_MEMC8_BASE if (slot == 8) ec->irq = 11;#endif#ifdef CONFIG_ARCH_RPC /* On RiscPC, only first two slots have DMA capability */ if (slot < 2) ec->dma = 2 + slot;#endif for (ecp = &cards; *ecp; ecp = &(*ecp)->next); *ecp = ec; slot_to_expcard[slot] = ec; device_register(&ec->dev); return 0; nodev: ecard_free_card(ec); nomem: return rc;}/* * Initialise the expansion card system. * Locate all hardware - interrupt management and * actual cards. */static int __init ecard_init(void){ int slot, irqhw, ret; ret = kernel_thread(ecard_task, NULL, CLONE_KERNEL); if (ret < 0) { printk(KERN_ERR "Ecard: unable to create kernel thread: %d\n", ret); return ret; } printk("Probing expansion cards\n"); for (slot = 0; slot < 8; slot ++) { if (ecard_probe(slot, ECARD_EASI) == -ENODEV) ecard_probe(slot, ECARD_IOC); }#ifdef IO_EC_MEMC8_BASE ecard_probe(8, ECARD_IOC);#endif irqhw = ecard_probeirqhw(); set_irq_chained_handler(IRQ_EXPANSIONCARD, irqhw ? ecard_irqexp_handler : ecard_irq_handler); ecard_proc_init(); return 0;}subsys_initcall(ecard_init);/* * ECARD "bus" */static const struct ecard_id *ecard_match_device(const struct ecard_id *ids, struct expansion_card *ec){ int i; for (i = 0; ids[i].manufacturer != 65535; i++) if (ec->cid.manufacturer == ids[i].manufacturer && ec->cid.product == ids[i].product) return ids + i; return NULL;}static int ecard_drv_probe(struct device *dev){ struct expansion_card *ec = ECARD_DEV(dev); struct ecard_driver *drv = ECARD_DRV(dev->driver); const struct ecard_id *id; int ret; id = ecard_match_device(drv->id_table, ec); ecard_claim(ec); ret = drv->probe(ec, id); if (ret) ecard_release(ec); return ret;}static int ecard_drv_remove(struct device *dev){ struct expansion_card *ec = ECARD_DEV(dev); struct ecard_driver *drv = ECARD_DRV(dev->driver); drv->remove(ec); ecard_release(ec); return 0;}/* * Before rebooting, we must make sure that the expansion card is in a * sensible state, so it can be re-detected. This means that the first * page of the ROM must be visible. We call the expansion cards reset * handler, if any. */static void ecard_drv_shutdown(struct device *dev){ struct expansion_card *ec = ECARD_DEV(dev); struct ecard_driver *drv = ECARD_DRV(dev->driver); struct ecard_request req; if (drv->shutdown) drv->shutdown(ec); ecard_release(ec); /* * If this card has a loader, call the reset handler. */ if (ec->loader) { req.fn = ecard_task_reset; req.ec = ec; ecard_call(&req); }}int ecard_register_driver(struct ecard_driver *drv){ drv->drv.bus = &ecard_bus_type; drv->drv.probe = ecard_drv_probe; drv->drv.remove = ecard_drv_remove; drv->drv.shutdown = ecard_drv_shutdown; return driver_register(&drv->drv);}void ecard_remove_driver(struct ecard_driver *drv){ driver_unregister(&drv->drv);}static int ecard_match(struct device *_dev, struct device_driver *_drv){ struct expansion_card *ec = ECARD_DEV(_dev); struct ecard_driver *drv = ECARD_DRV(_drv); int ret; if (drv->id_table) { ret = ecard_match_device(drv->id_table, ec) != NULL; } else { ret = ec->cid.id == drv->id; } return ret;}struct bus_type ecard_bus_type = { .name = "ecard", .dev_attrs = ecard_dev_attrs, .match = ecard_match,};static int ecard_bus_init(void){ return bus_register(&ecard_bus_type);}postcore_initcall(ecard_bus_init);EXPORT_SYMBOL(ecard_readchunk);EXPORT_SYMBOL(__ecard_address);EXPORT_SYMBOL(ecard_register_driver);EXPORT_SYMBOL(ecard_remove_driver);EXPORT_SYMBOL(ecard_bus_type);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -