⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 pci-pc.c

📁 讲述linux的初始化过程
💻 C
📖 第 1 页 / 共 2 页
字号:
		  "S" (&pci_indirect));	return (int) (ret & 0xff00) >> 8;}/* * Function table for BIOS32 access */static struct pci_ops pci_bios_access = {      pci_bios_read_config_byte,      pci_bios_read_config_word,      pci_bios_read_config_dword,      pci_bios_write_config_byte,      pci_bios_write_config_word,      pci_bios_write_config_dword};/* * Try to find PCI BIOS. */static struct pci_ops * __init pci_find_bios(void){	union bios32 *check;	unsigned char sum;	int i, length;	/*	 * Follow the standard procedure for locating the BIOS32 Service	 * directory by scanning the permissible address range from	 * 0xe0000 through 0xfffff for a valid BIOS32 structure.	 */	for (check = (union bios32 *) __va(0xe0000);	     check <= (union bios32 *) __va(0xffff0);	     ++check) {		if (check->fields.signature != BIOS32_SIGNATURE)			continue;		length = check->fields.length * 16;		if (!length)			continue;		sum = 0;		for (i = 0; i < length ; ++i)			sum += check->chars[i];		if (sum != 0)			continue;		if (check->fields.revision != 0) {			printk("PCI: unsupported BIOS32 revision %d at 0x%p, report to <mj@suse.cz>\n",				check->fields.revision, check);			continue;		}		DBG("PCI: BIOS32 Service Directory structure at 0x%p\n", check);		if (check->fields.entry >= 0x100000) {			printk("PCI: BIOS32 entry (0x%p) in high memory, cannot use.\n", check);			return NULL;		} else {			unsigned long bios32_entry = check->fields.entry;			DBG("PCI: BIOS32 Service Directory entry at 0x%lx\n", bios32_entry);			bios32_indirect.address = bios32_entry + PAGE_OFFSET;			if (check_pcibios())				return &pci_bios_access;		}		break;	/* Hopefully more than one BIOS32 cannot happen... */	}	return NULL;}/* * Sort the device list according to PCI BIOS. Nasty hack, but since some * fool forgot to define the `correct' device order in the PCI BIOS specs * and we want to be (possibly bug-to-bug ;-]) compatible with older kernels * which used BIOS ordering, we are bound to do this... */static void __init pcibios_sort(void){	LIST_HEAD(sorted_devices);	struct list_head *ln;	struct pci_dev *dev, *d;	int idx, found;	unsigned char bus, devfn;	DBG("PCI: Sorting device list...\n");	while (!list_empty(&pci_devices)) {		ln = pci_devices.next;		dev = pci_dev_g(ln);		idx = found = 0;		while (pci_bios_find_device(dev->vendor, dev->device, idx, &bus, &devfn) == PCIBIOS_SUCCESSFUL) {			idx++;			for (ln=pci_devices.next; ln != &pci_devices; ln=ln->next) {				d = pci_dev_g(ln);				if (d->bus->number == bus && d->devfn == devfn) {					list_del(&d->global_list);					list_add_tail(&d->global_list, &sorted_devices);					if (d == dev)						found = 1;					break;				}			}			if (ln == &pci_devices) {				printk("PCI: BIOS reporting unknown device %02x:%02x\n", bus, devfn);				/*				 * We must not continue scanning as several buggy BIOSes				 * return garbage after the last device. Grr.				 */				break;			}		}		if (!found) {			printk("PCI: Device %02x:%02x not found by BIOS\n",				dev->bus->number, dev->devfn);			list_del(&dev->global_list);			list_add_tail(&dev->global_list, &sorted_devices);		}	}	list_splice(&sorted_devices, &pci_devices);}/* *  BIOS Functions for IRQ Routing */struct irq_routing_options {	u16 size;	struct irq_info *table;	u16 segment;} __attribute__((packed));struct irq_routing_table * __init pcibios_get_irq_routing_table(void){	struct irq_routing_options opt;	struct irq_routing_table *rt = NULL;	int ret, map;	unsigned long page;	if (!pci_bios_present)		return NULL;	page = __get_free_page(GFP_KERNEL);	if (!page)		return NULL;	opt.table = (struct irq_info *) page;	opt.size = PAGE_SIZE;	opt.segment = __KERNEL_DS;	DBG("PCI: Fetching IRQ routing table... ");	__asm__("push %%es\n\t"		"push %%ds\n\t"		"pop  %%es\n\t"		"lcall (%%esi); cld\n\t"		"pop %%es\n\t"		"jc 1f\n\t"		"xor %%ah, %%ah\n"		"1:"		: "=a" (ret),		  "=b" (map)		: "0" (PCIBIOS_GET_ROUTING_OPTIONS),		  "1" (0),		  "D" ((long) &opt),		  "S" (&pci_indirect));	DBG("OK  ret=%d, size=%d, map=%x\n", ret, opt.size, map);	if (ret & 0xff00)		printk(KERN_ERR "PCI: Error %02x when fetching IRQ routing table.\n", (ret >> 8) & 0xff);	else if (opt.size) {		rt = kmalloc(sizeof(struct irq_routing_table) + opt.size, GFP_KERNEL);		if (rt) {			memset(rt, 0, sizeof(struct irq_routing_table));			rt->size = opt.size + sizeof(struct irq_routing_table);			rt->exclusive_irqs = map;			memcpy(rt->slots, (void *) page, opt.size);			printk("PCI: Using BIOS Interrupt Routing Table\n");		}	}	free_page(page);	return rt;}int pcibios_set_irq_routing(struct pci_dev *dev, int pin, int irq){	int ret;	__asm__("lcall (%%esi); cld\n\t"		"jc 1f\n\t"		"xor %%ah, %%ah\n"		"1:"		: "=a" (ret)		: "0" (PCIBIOS_SET_PCI_HW_INT),		  "b" ((dev->bus->number << 8) | dev->devfn),		  "c" ((irq << 8) | (pin + 10)),		  "S" (&pci_indirect));	return !(ret & 0xff00);}#endif/* * Several buggy motherboards address only 16 devices and mirror * them to next 16 IDs. We try to detect this `feature' on all * primary buses (those containing host bridges as they are * expected to be unique) and remove the ghost devices. */static void __init pcibios_fixup_ghosts(struct pci_bus *b){	struct list_head *ln, *mn;	struct pci_dev *d, *e;	int mirror = PCI_DEVFN(16,0);	int seen_host_bridge = 0;	int i;	DBG("PCI: Scanning for ghost devices on bus %d\n", b->number);	for (ln=b->devices.next; ln != &b->devices; ln=ln->next) {		d = pci_dev_b(ln);		if ((d->class >> 8) == PCI_CLASS_BRIDGE_HOST)			seen_host_bridge++;		for (mn=ln->next; mn != &b->devices; mn=mn->next) {			e = pci_dev_b(mn);			if (e->devfn != d->devfn + mirror ||			    e->vendor != d->vendor ||			    e->device != d->device ||			    e->class != d->class)				continue;			for(i=0; i<PCI_NUM_RESOURCES; i++)				if (e->resource[i].start != d->resource[i].start ||				    e->resource[i].end != d->resource[i].end ||				    e->resource[i].flags != d->resource[i].flags)					continue;			break;		}		if (mn == &b->devices)			return;	}	if (!seen_host_bridge)		return;	printk("PCI: Ignoring ghost devices on bus %02x\n", b->number);	ln = &b->devices;	while (ln->next != &b->devices) {		d = pci_dev_b(ln->next);		if (d->devfn >= mirror) {			list_del(&d->global_list);			list_del(&d->bus_list);			kfree(d);		} else			ln = ln->next;	}}/* * Discover remaining PCI buses in case there are peer host bridges. * We use the number of last PCI bus provided by the PCI BIOS. */static void __init pcibios_fixup_peer_bridges(void){	int n;	struct pci_bus bus;	struct pci_dev dev;	u16 l;	if (pcibios_last_bus <= 0 || pcibios_last_bus >= 0xff)		return;	DBG("PCI: Peer bridge fixup\n");	for (n=0; n <= pcibios_last_bus; n++) {		if (pci_bus_exists(&pci_root_buses, n))			continue;		bus.number = n;		bus.ops = pci_root_ops;		dev.bus = &bus;		for(dev.devfn=0; dev.devfn<256; dev.devfn += 8)			if (!pci_read_config_word(&dev, PCI_VENDOR_ID, &l) &&			    l != 0x0000 && l != 0xffff) {				DBG("Found device at %02x:%02x [%04x]\n", n, dev.devfn, l);				printk("PCI: Discovered peer bus %02x\n", n);				pci_scan_bus(n, pci_root_ops, NULL);				break;			}	}}/* * Exceptions for specific devices. Usually work-arounds for fatal design flaws. */static void __init pci_fixup_i450nx(struct pci_dev *d){	/*	 * i450NX -- Find and scan all secondary buses on all PXB's.	 */	int pxb, reg;	u8 busno, suba, subb;	printk("PCI: Searching for i450NX host bridges on %s\n", d->slot_name);	reg = 0xd0;	for(pxb=0; pxb<2; pxb++) {		pci_read_config_byte(d, reg++, &busno);		pci_read_config_byte(d, reg++, &suba);		pci_read_config_byte(d, reg++, &subb);		DBG("i450NX PXB %d: %02x/%02x/%02x\n", pxb, busno, suba, subb);		if (busno)			pci_scan_bus(busno, pci_root_ops, NULL);	/* Bus A */		if (suba < subb)			pci_scan_bus(suba+1, pci_root_ops, NULL);	/* Bus B */	}	pcibios_last_bus = -1;}static void __init pci_fixup_i450gx(struct pci_dev *d){	/*	 * i450GX and i450KX -- Find and scan all secondary buses.	 * (called separately for each PCI bridge found)	 */	u8 busno;	pci_read_config_byte(d, 0x4a, &busno);	printk("PCI: i440KX/GX host bridge %s: secondary bus %02x\n", d->slot_name, busno);	pci_scan_bus(busno, pci_root_ops, NULL);	pcibios_last_bus = -1;}static void __init pci_fixup_serverworks(struct pci_dev *d){	/*	 * ServerWorks host bridges -- Find and scan all secondary buses.	 * Register 0x44 contains first, 0x45 last bus number routed there.	 */	u8 busno;	pci_read_config_byte(d, 0x44, &busno);	printk("PCI: ServerWorks host bridge: secondary bus %02x\n", busno);	pci_scan_bus(busno, pci_root_ops, NULL);	pcibios_last_bus = -1;}static void __init pci_fixup_compaq(struct pci_dev *d){	/*		 * Compaq host bridges -- Find and scan all secondary buses.	 * This time registers 0xc8 and 0xc9.	 */	u8 busno;	pci_read_config_byte(d, 0xc8, &busno);	printk("PCI: Compaq host bridge: secondary bus %02x\n", busno);	pci_scan_bus(busno, pci_root_ops, NULL);	pcibios_last_bus = -1;}static void __init pci_fixup_umc_ide(struct pci_dev *d){	/*	 * UM8886BF IDE controller sets region type bits incorrectly,	 * therefore they look like memory despite of them being I/O.	 */	int i;	printk("PCI: Fixing base address flags for device %s\n", d->slot_name);	for(i=0; i<4; i++)		d->resource[i].flags |= PCI_BASE_ADDRESS_SPACE_IO;}static void __init pci_fixup_ide_bases(struct pci_dev *d){	int i;	/*	 * PCI IDE controllers use non-standard I/O port decoding, respect it.	 */	if ((d->class >> 8) != PCI_CLASS_STORAGE_IDE)		return;	DBG("PCI: IDE base address fixup for %s\n", d->slot_name);	for(i=0; i<4; i++) {		struct resource *r = &d->resource[i];		if ((r->start & ~0x80) == 0x374) {			r->start |= 2;			r->end = r->start;		}	}}static void __init pci_fixup_ide_trash(struct pci_dev *d){	int i;	/*	 * There exist PCI IDE controllers which have utter garbage	 * in first four base registers. Ignore that.	 */	DBG("PCI: IDE base address trash cleared for %s\n", d->slot_name);	for(i=0; i<4; i++)		d->resource[i].start = d->resource[i].end = d->resource[i].flags = 0;}static void __init pci_fixup_latency(struct pci_dev *d){	/*	 *  SiS 5597 and 5598 chipsets require latency timer set to	 *  at most 32 to avoid lockups.	 */	DBG("PCI: Setting max latency to 32\n");	pcibios_max_latency = 32;}struct pci_fixup pcibios_fixups[] = {	{ PCI_FIXUP_HEADER,	PCI_VENDOR_ID_INTEL,	PCI_DEVICE_ID_INTEL_82451NX,	pci_fixup_i450nx },	{ PCI_FIXUP_HEADER,	PCI_VENDOR_ID_INTEL,	PCI_DEVICE_ID_INTEL_82454GX,	pci_fixup_i450gx },	{ PCI_FIXUP_HEADER,	PCI_VENDOR_ID_SERVERWORKS,	PCI_DEVICE_ID_SERVERWORKS_HE,		pci_fixup_serverworks },	{ PCI_FIXUP_HEADER,	PCI_VENDOR_ID_SERVERWORKS,	PCI_DEVICE_ID_SERVERWORKS_LE,		pci_fixup_serverworks },	{ PCI_FIXUP_HEADER,	PCI_VENDOR_ID_SERVERWORKS,	PCI_DEVICE_ID_SERVERWORKS_CMIC_HE,	pci_fixup_serverworks },	{ PCI_FIXUP_HEADER,	PCI_VENDOR_ID_COMPAQ,	PCI_DEVICE_ID_COMPAQ_6010,	pci_fixup_compaq },	{ PCI_FIXUP_HEADER,	PCI_VENDOR_ID_UMC,	PCI_DEVICE_ID_UMC_UM8886BF,	pci_fixup_umc_ide },	{ PCI_FIXUP_HEADER,	PCI_VENDOR_ID_SI,	PCI_DEVICE_ID_SI_5513,		pci_fixup_ide_trash },	{ PCI_FIXUP_HEADER,	PCI_ANY_ID,		PCI_ANY_ID,			pci_fixup_ide_bases },	{ PCI_FIXUP_HEADER,	PCI_VENDOR_ID_SI,	PCI_DEVICE_ID_SI_5597,		pci_fixup_latency },	{ PCI_FIXUP_HEADER,	PCI_VENDOR_ID_SI,	PCI_DEVICE_ID_SI_5598,		pci_fixup_latency },	{ 0 }};/* *  Called after each bus is probed, but before its children *  are examined. */void __init pcibios_fixup_bus(struct pci_bus *b){	pcibios_fixup_ghosts(b);	pci_read_bridge_bases(b);}/* * Initialization. Try all known PCI access methods. Note that we support * using both PCI BIOS and direct access: in such cases, we use I/O ports * to access config space, but we still keep BIOS order of cards to be * compatible with 2.0.X. This should go away some day. */void __init pcibios_init(void){	struct pci_ops *bios = NULL;	struct pci_ops *dir = NULL;#ifdef CONFIG_PCI_BIOS	if ((pci_probe & PCI_PROBE_BIOS) && ((bios = pci_find_bios()))) {		pci_probe |= PCI_BIOS_SORT;		pci_bios_present = 1;	}#endif#ifdef CONFIG_PCI_DIRECT	if (pci_probe & (PCI_PROBE_CONF1 | PCI_PROBE_CONF2))		dir = pci_check_direct();#endif	if (dir)		pci_root_ops = dir;	else if (bios)		pci_root_ops = bios;	else {		printk("PCI: No PCI bus detected\n");		return;	}	printk("PCI: Probing PCI hardware\n");	pci_root_bus = pci_scan_bus(0, pci_root_ops, NULL);	pcibios_irq_init();	pcibios_fixup_peer_bridges();	pcibios_fixup_irqs();	pcibios_resource_survey();#ifdef CONFIG_PCI_BIOS	if ((pci_probe & PCI_BIOS_SORT) && !(pci_probe & PCI_NO_SORT))		pcibios_sort();#endif}char * __init pcibios_setup(char *str){	if (!strcmp(str, "off")) {		pci_probe = 0;		return NULL;	}#ifdef CONFIG_PCI_BIOS	else if (!strcmp(str, "bios")) {		pci_probe = PCI_PROBE_BIOS;		return NULL;	} else if (!strcmp(str, "nobios")) {		pci_probe &= ~PCI_PROBE_BIOS;		return NULL;	} else if (!strcmp(str, "nosort")) {		pci_probe |= PCI_NO_SORT;		return NULL;	} else if (!strcmp(str, "biosirq")) {		pci_probe |= PCI_BIOS_IRQ_SCAN;		return NULL;	}#endif#ifdef CONFIG_PCI_DIRECT	else if (!strcmp(str, "conf1")) {		pci_probe = PCI_PROBE_CONF1 | PCI_NO_CHECKS;		return NULL;	}	else if (!strcmp(str, "conf2")) {		pci_probe = PCI_PROBE_CONF2 | PCI_NO_CHECKS;		return NULL;	}#endif	else if (!strcmp(str, "rom")) {		pci_probe |= PCI_ASSIGN_ROMS;		return NULL;	} else if (!strncmp(str, "irqmask=", 8)) {		pcibios_irq_mask = simple_strtol(str+8, NULL, 0);		return NULL;	} else if (!strncmp(str, "lastbus=", 8)) {		pcibios_last_bus = simple_strtol(str+8, NULL, 0);		return NULL;	}	return str;}int pcibios_enable_device(struct pci_dev *dev){	int err;	if ((err = pcibios_enable_resources(dev)) < 0)		return err;	pcibios_enable_irq(dev);	return 0;}

⌨️ 快捷键说明

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