亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來(lái)到蟲(chóng)蟲(chóng)下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲(chóng)蟲(chóng)下載站

?? pci-i386.c

?? linux-2.4.29操作系統(tǒng)的源碼
?? C
字號(hào):
/* *	Low-Level PCI Access for i386 machines * * Copyright 1993, 1994 Drew Eckhardt *      Visionary Computing *      (Unix and Linux consulting and custom programming) *      Drew@Colorado.EDU *      +1 (303) 786-7975 * * Drew's work was sponsored by: *	iX Multiuser Multitasking Magazine *	Hannover, Germany *	hm@ix.de * * Copyright 1997--2000 Martin Mares <mj@ucw.cz> * * For more information, please consult the following manuals (look at * http://www.pcisig.com/ for how to get them): * * PCI BIOS Specification * PCI Local Bus Specification * PCI to PCI Bridge Specification * PCI System Design Guide * * * CHANGELOG : * Jun 17, 1994 : Modified to accommodate the broken pre-PCI BIOS SPECIFICATION *	Revision 2.0 present on <thys@dennis.ee.up.ac.za>'s ASUS mainboard. * * Jan 5,  1995 : Modified to probe PCI hardware at boot time by Frederic *     Potter, potter@cao-vlsi.ibp.fr * * Jan 10, 1995 : Modified to store the information about configured pci *      devices into a list, which can be accessed via /proc/pci by *      Curtis Varner, cvarner@cs.ucr.edu * * Jan 12, 1995 : CPU-PCI bridge optimization support by Frederic Potter. *	Alpha version. Intel & UMC chipset support only. * * Apr 16, 1995 : Source merge with the DEC Alpha PCI support. Most of the code *	moved to drivers/pci/pci.c. * * Dec 7, 1996  : Added support for direct configuration access of boards *      with Intel compatible access schemes (tsbogend@alpha.franken.de) * * Feb 3, 1997  : Set internal functions to static, save/restore flags *	avoid dead locks reading broken PCI BIOS, werner@suse.de  * * Apr 26, 1997 : Fixed case when there is BIOS32, but not PCI BIOS *	(mj@atrey.karlin.mff.cuni.cz) * * May 7,  1997 : Added some missing cli()'s. [mj] *  * Jun 20, 1997 : Corrected problems in "conf1" type accesses. *      (paubert@iram.es) * * Aug 2,  1997 : Split to PCI BIOS handling and direct PCI access parts *	and cleaned it up...     Martin Mares <mj@atrey.karlin.mff.cuni.cz> * * Feb 6,  1998 : No longer using BIOS to find devices and device classes. [mj] * * May 1,  1998 : Support for peer host bridges. [mj] * * Jun 19, 1998 : Changed to use spinlocks, so that PCI configuration space *	can be accessed from interrupts even on SMP systems. [mj] * * August  1998 : Better support for peer host bridges and more paranoid *	checks for direct hardware access. Ugh, this file starts to look as *	a large gallery of common hardware bug workarounds (watch the comments) *	-- the PCI specs themselves are sane, but most implementors should be *	hit hard with \hammer scaled \magstep5. [mj] * * Jan 23, 1999 : More improvements to peer host bridge logic. i450NX fixup. [mj] * * Feb 8,  1999 : Added UM8886BF I/O address fixup. [mj] * * August  1999 : New resource management and configuration access stuff. [mj] * * Sep 19, 1999 : Use PCI IRQ routing tables for detection of peer host bridges. *		  Based on ideas by Chris Frantz and David Hinds. [mj] * * Sep 28, 1999 : Handle unreported/unassigned IRQs. Thanks to Shuu Yamaguchi *		  for a lot of patience during testing. [mj] * * Oct  8, 1999 : Split to pci-i386.c, pci-pc.c and pci-visws.c. [mj] */#include <linux/types.h>#include <linux/kernel.h>#include <linux/pci.h>#include <linux/init.h>#include <linux/ioport.h>#include <linux/errno.h>#include "pci-i386.h"voidpcibios_update_resource(struct pci_dev *dev, struct resource *root,			struct resource *res, int resource){	u32 new, check;	int reg;	new = res->start | (res->flags & PCI_REGION_FLAG_MASK);	if (resource < 6) {		reg = PCI_BASE_ADDRESS_0 + 4*resource;	} else if (resource == PCI_ROM_RESOURCE) {		res->flags |= PCI_ROM_ADDRESS_ENABLE;		new |= PCI_ROM_ADDRESS_ENABLE;		reg = dev->rom_base_reg;	} else {		/* Somebody might have asked allocation of a non-standard resource */		return;	}		pci_write_config_dword(dev, reg, new);	pci_read_config_dword(dev, reg, &check);	if ((new ^ check) & ((new & PCI_BASE_ADDRESS_SPACE_IO) ? PCI_BASE_ADDRESS_IO_MASK : PCI_BASE_ADDRESS_MEM_MASK)) {		printk(KERN_ERR "PCI: Error while updating region "		       "%s/%d (%08x != %08x)\n", dev->slot_name, resource,		       new, check);	}}/* * We need to avoid collisions with `mirrored' VGA ports * and other strange ISA hardware, so we always want the * addresses to be allocated in the 0x000-0x0ff region * modulo 0x400. * * Why? Because some silly external IO cards only decode * the low 10 bits of the IO address. The 0x00-0xff region * is reserved for motherboard devices that decode all 16 * bits, so it's ok to allocate at, say, 0x2800-0x28ff, * but we want to try to avoid allocating at 0x2900-0x2bff * which might have be mirrored at 0x0100-0x03ff.. */voidpcibios_align_resource(void *data, struct resource *res,		       unsigned long size, unsigned long align){	if (res->flags & IORESOURCE_IO) {		unsigned long start = res->start;		if (start & 0x300) {			start = (start + 0x3ff) & ~0x3ff;			res->start = start;		}	}}/* *  Handle resources of PCI devices.  If the world were perfect, we could *  just allocate all the resource regions and do nothing more.  It isn't. *  On the other hand, we cannot just re-allocate all devices, as it would *  require us to know lots of host bridge internals.  So we attempt to *  keep as much of the original configuration as possible, but tweak it *  when it's found to be wrong. * *  Known BIOS problems we have to work around: *	- I/O or memory regions not configured *	- regions configured, but not enabled in the command register *	- bogus I/O addresses above 64K used *	- expansion ROMs left enabled (this may sound harmless, but given *	  the fact the PCI specs explicitly allow address decoders to be *	  shared between expansion ROMs and other resource regions, it's *	  at least dangerous) * *  Our solution: *	(1) Allocate resources for all buses behind PCI-to-PCI bridges. *	    This gives us fixed barriers on where we can allocate. *	(2) Allocate resources for all enabled devices.  If there is *	    a collision, just mark the resource as unallocated. Also *	    disable expansion ROMs during this step. *	(3) Try to allocate resources for disabled devices.  If the *	    resources were assigned correctly, everything goes well, *	    if they weren't, they won't disturb allocation of other *	    resources. *	(4) Assign new addresses to resources which were either *	    not configured at all or misconfigured.  If explicitly *	    requested by the user, configure expansion ROM address *	    as well. */static void __init pcibios_allocate_bus_resources(struct list_head *bus_list){	struct list_head *ln;	struct pci_bus *bus;	struct pci_dev *dev;	int idx;	struct resource *r, *pr;	/* Depth-First Search on bus tree */	for (ln=bus_list->next; ln != bus_list; ln=ln->next) {		bus = pci_bus_b(ln);		if ((dev = bus->self)) {			for (idx = PCI_BRIDGE_RESOURCES; idx < PCI_NUM_RESOURCES; idx++) {				r = &dev->resource[idx];				if (!r->start)					continue;				pr = pci_find_parent_resource(dev, r);				if (!pr || request_resource(pr, r) < 0)					printk(KERN_ERR "PCI: Cannot allocate resource region %d of bridge %s\n", idx, dev->slot_name);			}		}		pcibios_allocate_bus_resources(&bus->children);	}}static void __init pcibios_allocate_resources(int pass){	struct pci_dev *dev;	int idx, disabled;	u16 command;	struct resource *r, *pr;	pci_for_each_dev(dev) {		pci_read_config_word(dev, PCI_COMMAND, &command);		for(idx = 0; idx < 6; idx++) {			r = &dev->resource[idx];			if (r->parent)		/* Already allocated */				continue;			if (!r->start)		/* Address not assigned at all */				continue;			if (r->flags & IORESOURCE_IO)				disabled = !(command & PCI_COMMAND_IO);			else				disabled = !(command & PCI_COMMAND_MEMORY);			if (pass == disabled) {				DBG("PCI: Resource %08lx-%08lx (f=%lx, d=%d, p=%d)\n",				    r->start, r->end, r->flags, disabled, pass);				pr = pci_find_parent_resource(dev, r);				if (!pr || request_resource(pr, r) < 0) {					printk(KERN_ERR "PCI: Cannot allocate resource region %d of device %s\n", idx, dev->slot_name);					/* We'll assign a new address later */					r->end -= r->start;					r->start = 0;				}			}		}		if (!pass) {			r = &dev->resource[PCI_ROM_RESOURCE];			if (r->flags & PCI_ROM_ADDRESS_ENABLE) {				/* Turn the ROM off, leave the resource region, but keep it unregistered. */				u32 reg;				DBG("PCI: Switching off ROM of %s\n", dev->slot_name);				r->flags &= ~PCI_ROM_ADDRESS_ENABLE;				pci_read_config_dword(dev, dev->rom_base_reg, &reg);				pci_write_config_dword(dev, dev->rom_base_reg, reg & ~PCI_ROM_ADDRESS_ENABLE);			}		}	}}static void __init pcibios_assign_resources(void){	struct pci_dev *dev;	int idx;	struct resource *r;	pci_for_each_dev(dev) {		int class = dev->class >> 8;		/* Don't touch classless devices and host bridges */		if (!class || class == PCI_CLASS_BRIDGE_HOST)			continue;		for(idx=0; idx<6; idx++) {			r = &dev->resource[idx];			/*			 *  Don't touch IDE controllers and I/O ports of video cards!			 */			if ((class == PCI_CLASS_STORAGE_IDE && idx < 4) ||			    (class == PCI_CLASS_DISPLAY_VGA && (r->flags & IORESOURCE_IO)))				continue;			/*			 *  We shall assign a new address to this resource, either because			 *  the BIOS forgot to do so or because we have decided the old			 *  address was unusable for some reason.			 */			if (!r->start && r->end)				pci_assign_resource(dev, idx);		}		if (pci_probe & PCI_ASSIGN_ROMS) {			r = &dev->resource[PCI_ROM_RESOURCE];			r->end -= r->start;			r->start = 0;			if (r->end)				pci_assign_resource(dev, PCI_ROM_RESOURCE);		}	}}void __init pcibios_set_cacheline_size(void){	struct cpuinfo_x86 *c = &boot_cpu_data;	pci_cache_line_size = 32 >> 2;	if (c->x86 >= 6 && c->x86_vendor == X86_VENDOR_AMD)		pci_cache_line_size = 64 >> 2;	/* K7 & K8 */	else if (c->x86 > 6 && c->x86_vendor == X86_VENDOR_INTEL)		pci_cache_line_size = 128 >> 2;	/* P4 */}void __init pcibios_resource_survey(void){	DBG("PCI: Allocating resources\n");	pcibios_allocate_bus_resources(&pci_root_buses);	pcibios_allocate_resources(0);	pcibios_allocate_resources(1);	pcibios_assign_resources();}int pcibios_enable_resources(struct pci_dev *dev, int mask){	u16 cmd, old_cmd;	int idx;	struct resource *r;	pci_read_config_word(dev, PCI_COMMAND, &cmd);	old_cmd = cmd;	for(idx=0; idx<6; idx++) {		/* Only set up the requested stuff */		if (!(mask & (1<<idx)))			continue;					r = &dev->resource[idx];		if (!r->start && r->end) {			printk(KERN_ERR "PCI: Device %s not available because of resource collisions\n", dev->slot_name);			return -EINVAL;		}		if (r->flags & IORESOURCE_IO)			cmd |= PCI_COMMAND_IO;		if (r->flags & IORESOURCE_MEM)			cmd |= PCI_COMMAND_MEMORY;	}	if (dev->resource[PCI_ROM_RESOURCE].start)		cmd |= PCI_COMMAND_MEMORY;	if (cmd != old_cmd) {		printk("PCI: Enabling device %s (%04x -> %04x)\n", dev->slot_name, old_cmd, cmd);		pci_write_config_word(dev, PCI_COMMAND, cmd);	}	return 0;}/* *  If we set up a device for bus mastering, we need to check the latency *  timer as certain crappy BIOSes forget to set it properly. */unsigned int pcibios_max_latency = 255;void pcibios_set_master(struct pci_dev *dev){	u8 lat;	pci_read_config_byte(dev, PCI_LATENCY_TIMER, &lat);	if (lat < 16)		lat = (64 <= pcibios_max_latency) ? 64 : pcibios_max_latency;	else if (lat > pcibios_max_latency)		lat = pcibios_max_latency;	else		return;	printk(KERN_DEBUG "PCI: Setting latency timer of device %s to %d\n", dev->slot_name, lat);	pci_write_config_byte(dev, PCI_LATENCY_TIMER, lat);}int pci_mmap_page_range(struct pci_dev *dev, struct vm_area_struct *vma,			enum pci_mmap_state mmap_state, int write_combine){	unsigned long prot;	/* I/O space cannot be accessed via normal processor loads and	 * stores on this platform.	 */	if (mmap_state == pci_mmap_io)		return -EINVAL;	/* Leave vm_pgoff as-is, the PCI space address is the physical	 * address on this platform.	 */	vma->vm_flags |= (VM_SHM | VM_LOCKED | VM_IO);	prot = pgprot_val(vma->vm_page_prot);	if (boot_cpu_data.x86 > 3)		prot |= _PAGE_PCD | _PAGE_PWT;	vma->vm_page_prot = __pgprot(prot);	/* Write-combine setting is ignored, it is changed via the mtrr	 * interfaces on this platform.	 */	if (remap_page_range(vma->vm_start, vma->vm_pgoff << PAGE_SHIFT,			     vma->vm_end - vma->vm_start,			     vma->vm_page_prot))		return -EAGAIN;	return 0;}

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美一区永久视频免费观看| 久久久久97国产精华液好用吗| 日韩精品免费专区| 欧美国产视频在线| 欧美日韩国产电影| 波多野结衣在线一区| 毛片av一区二区| 一区二区三区中文字幕电影| 久久这里只有精品视频网| 欧美在线|欧美| 成人黄色在线看| 精品一区精品二区高清| 午夜国产精品一区| 一区精品在线播放| 久久久久九九视频| 日韩亚洲电影在线| 在线这里只有精品| 99re这里只有精品6| 国产成人av一区二区三区在线观看| 日韩影院在线观看| 一区二区三区在线看| 日本一区二区成人在线| 精品国产乱码久久久久久图片| 欧美日韩综合色| 91小视频在线观看| 成+人+亚洲+综合天堂| 国产一区二区三区日韩| 青青草国产精品97视觉盛宴| 午夜不卡在线视频| 夜夜亚洲天天久久| 亚洲精品乱码久久久久久| 日本一区二区视频在线| 久久久久久久性| 日韩欧美一二三四区| 欧美一区二区三区免费| 3atv一区二区三区| 欧美一级一级性生活免费录像| 欧美日韩极品在线观看一区| 欧美色窝79yyyycom| 欧美日韩在线亚洲一区蜜芽| 欧美丝袜丝nylons| 欧美性欧美巨大黑白大战| 一本到三区不卡视频| 色天天综合久久久久综合片| 色妞www精品视频| 色妹子一区二区| 91久久人澡人人添人人爽欧美| 91社区在线播放| 色婷婷香蕉在线一区二区| 欧洲精品中文字幕| 欧美理论在线播放| 欧美一级高清片在线观看| 日韩欧美高清在线| 久久久亚洲精华液精华液精华液 | 久久国产尿小便嘘嘘尿| 青青草伊人久久| 精品一区二区三区在线观看| 国产麻豆视频精品| 福利一区二区在线观看| 99精品国产热久久91蜜凸| 色婷婷一区二区| 欧美一区二区成人| 久久久久99精品国产片| 国产精品久久久久久久久久久免费看 | 亚洲天堂2014| 亚洲国产日韩a在线播放| 日日骚欧美日韩| 国内偷窥港台综合视频在线播放| 成人天堂资源www在线| 91女人视频在线观看| 欧美日韩www| 久久综合狠狠综合久久综合88| 国产精品素人视频| 夜夜精品视频一区二区| 蜜臀91精品一区二区三区| 国产成人激情av| 精品污污网站免费看| 亚洲精品一区二区在线观看| 最新日韩在线视频| 日韩av一区二区在线影视| 国产精品一区二区免费不卡| 91久久人澡人人添人人爽欧美| 日韩视频在线一区二区| 国产精品高潮久久久久无| 五月激情综合网| 福利电影一区二区三区| 欧美精品日日鲁夜夜添| 国产欧美日产一区| 亚洲国产欧美日韩另类综合| 国产高清不卡一区二区| 在线影视一区二区三区| 26uuu国产日韩综合| 亚洲影院久久精品| 国产99久久久国产精品潘金网站| 欧美在线高清视频| 国产精品水嫩水嫩| 欧美a一区二区| 在线免费一区三区| 国产清纯白嫩初高生在线观看91 | 欧美丝袜第三区| 中文字幕欧美三区| 免费av成人在线| 色狠狠一区二区| 国产视频一区在线观看| 日韩成人av影视| 在线一区二区三区| 中文字幕日韩一区二区| 激情综合色播激情啊| 欧美日韩国产综合草草| 国产精品久久看| 国产一区二区三区香蕉| 91麻豆精品91久久久久久清纯| 亚洲欧洲日韩一区二区三区| 国产一区啦啦啦在线观看| 欧美一级精品大片| 亚洲一卡二卡三卡四卡无卡久久| av资源站一区| 欧美激情综合五月色丁香小说| 国产一区二区主播在线| 日韩一区二区中文字幕| 亚洲成人精品影院| 91精彩视频在线观看| 亚洲欧美在线高清| 成人污污视频在线观看| 欧美国产日产图区| 国产成人综合精品三级| 精品国产免费一区二区三区四区 | 91在线精品一区二区三区| 国产亚洲精品bt天堂精选| 精品一区二区在线播放| 精品国产免费视频| 精品一区二区三区日韩| 日韩欧美国产精品| 久久 天天综合| 精品人在线二区三区| 男男成人高潮片免费网站| 在线播放日韩导航| 日韩黄色在线观看| 777亚洲妇女| 蜜桃久久av一区| 26uuu国产日韩综合| 精品亚洲aⅴ乱码一区二区三区| 欧美一区二区人人喊爽| 理论电影国产精品| 欧美xingq一区二区| 国产一区二区导航在线播放| 久久久精品人体av艺术| 国产成人在线看| 中文字幕中文字幕中文字幕亚洲无线| 成人av影视在线观看| 国产精品丝袜在线| 色88888久久久久久影院野外| 一区二区三区精品久久久| 欧美军同video69gay| 麻豆免费精品视频| 久久综合视频网| 成人国产精品免费网站| 亚洲欧美日韩电影| 欧美日韩亚洲另类| 奇米影视一区二区三区小说| 久久无码av三级| youjizz国产精品| 亚洲一区二区视频| 欧美一区二区视频在线观看| 国产在线看一区| 中文字幕亚洲一区二区av在线 | 2020日本不卡一区二区视频| 高清在线观看日韩| 一区二区在线观看视频 | 欧美日韩综合在线| 麻豆一区二区在线| 中文字幕在线不卡一区| 欧美日韩免费一区二区三区| 久久电影网站中文字幕 | 蜜臂av日日欢夜夜爽一区| 久久久国产午夜精品| 色88888久久久久久影院野外| 久热成人在线视频| 国产精品国产馆在线真实露脸 | 粉嫩欧美一区二区三区高清影视 | 日韩和欧美的一区| 国产日本一区二区| 欧美主播一区二区三区| 精品一区二区三区免费播放| ㊣最新国产の精品bt伙计久久| 91精选在线观看| av福利精品导航| 日韩av在线免费观看不卡| 国产精品久久久爽爽爽麻豆色哟哟| 欧美探花视频资源| 成人免费看视频| 日韩黄色一级片| |精品福利一区二区三区| 欧美tk丨vk视频| 欧美综合在线视频| 国产69精品久久久久毛片| 日韩成人一区二区三区在线观看| 国产精品传媒在线| 日韩欧美一级在线播放| 欧亚一区二区三区|