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

📄 pci.c

📁 著名操作系统Plan 9的第三版的部分核心源代码。现在很难找到了。Plan 9是bell实验室开发的Unix后继者。
💻 C
📖 第 1 页 / 共 2 页
字号:
/* * PCI support code. */#include "u.h"#include "../port/lib.h"#include "mem.h"#include "dat.h"#include "fns.h"#include "io.h"#include "../port/error.h"#define DBG	if(0) pcilogstruct{	char	output[16384];	int	ptr;}PCICONS;intpcilog(char *fmt, ...){	int n;	va_list arg;	char buf[PRINTSIZE];	va_start(arg, fmt);	n = doprint(buf, buf+sizeof(buf), fmt, arg) - buf;	va_end(arg);	memmove(PCICONS.output+PCICONS.ptr, buf, n);	PCICONS.ptr += n;	return n;}enum{					/* configuration mechanism #1 */	PciADDR		= 0xCF8,	/* CONFIG_ADDRESS */	PciDATA		= 0xCFC,	/* CONFIG_DATA */					/* configuration mechanism #2 */	PciCSE		= 0xCF8,	/* configuration space enable */	PciFORWARD	= 0xCFA,	/* which bus */	MaxFNO		= 7,	MaxUBN		= 255,	NOBIOS		= 0,		/* initialise if the BIOS didn't */};enum{					/* command register */	IOen		= (1<<0),	MEMen		= (1<<1),	MASen		= (1<<2),	MemWrInv	= (1<<4),	PErrEn		= (1<<6),	SErrEn		= (1<<8),};static Lock pcicfglock;static Lock pcicfginitlock;static int pcicfgmode = -1;static int pcimaxdno;static Pcidev* pciroot;static Pcidev* pcilist;static Pcidev* pcitail;static int pcicfgrw32(int, int, int, int);static int pcicfgrw8(int, int, int, int);static char* bustypes[] = {	"CBUSI",	"CBUSII",	"EISA",	"FUTURE",	"INTERN",	"ISA",	"MBI",	"MBII",	"MCA",	"MPI",	"MPSA",	"NUBUS",	"PCI",	"PCMCIA",	"TC",	"VL",	"VME",	"XPRESS",};#pragma	varargck	type	"T"	intstatic inttbdfconv(va_list* arg, Fconv* f){	char *p;	int l, type, tbdf;	p = malloc(READSTR);	if(p == nil){		strconv("(tbdfconv)", f);		return sizeof(int);	}			switch(f->chr){	case 'T':		tbdf = va_arg(*arg, int);		type = BUSTYPE(tbdf);		if(type < nelem(bustypes))			l = snprint(p, READSTR, bustypes[type]);		else			l = snprint(p, READSTR, "%d", type);		snprint(p+l, READSTR-l, ".%d.%d.%d",			BUSBNO(tbdf), BUSDNO(tbdf), BUSFNO(tbdf));		break;	default:		snprint(p, READSTR, "(tbdfconv)");		break;	}	strconv(p, f);	free(p);	return sizeof(int);}ulongpcibarsize(Pcidev *p, int rno){	ulong v, size;	v = pcicfgrw32(p->tbdf, rno, 0, 1);	pcicfgrw32(p->tbdf, rno, 0xFFFFFFF0, 0);	size = pcicfgrw32(p->tbdf, rno, 0, 1);	if(v & 1)		size |= 0xFFFF0000;	pcicfgrw32(p->tbdf, rno, v, 0);	return -(size & ~0x0F);}static intpcisizcmp(void *a, void *b){	Pcisiz *aa, *bb;	aa = a;	bb = b;	return aa->siz - bb->siz;}static ulongpcimask(ulong v){	ulong m;	m = BI2BY*sizeof(v);	for(m = 1<<(m-1); m != 0; m >>= 1) {		if(m & v)			break;	}	m--;	if((v & m) == 0)		return v;	v |= m;	return v+1;}static voidpcibusmap(Pcidev *root, ulong *pmema, ulong *pioa, int wrreg){	Pcidev *p;	int ntb, i, size, rno, hole;	ulong v, mema, ioa, sioa, smema, base, limit;	Pcisiz *table, *tptr, *mtb, *itb;	extern void qsort(void*, long, long, int (*)(void*, void*));	if(!NOBIOS)		return;	ioa = *pioa;	mema = *pmema;	DBG("pcibusmap wr=%d %T mem=%luX io=%luX\n", 		wrreg, root->tbdf, mema, ioa);	ntb = 0;	for(p = root; p != nil; p = p->link)		ntb++;	ntb *= (PciCIS-PciBAR0)/4;	table = malloc(2*ntb*sizeof(Pcisiz));	itb = table;	mtb = table+ntb;	/*	 * Build a table of sizes	 */	for(p = root; p != nil; p = p->link) {		if(p->ccrb == 0x06) {			if(p->ccru != 0x04 || p->bridge == nil) {//				DBG("pci: ignored bridge %T\n", p->tbdf);				continue;			}			sioa = ioa;			smema = mema;			pcibusmap(p->bridge, &smema, &sioa, 0);			hole = pcimask(smema-mema);			if(hole < (1<<20))				hole = 1<<20;			p->mema.size = hole;			hole = pcimask(sioa-ioa);			if(hole < (1<<12))				hole = 1<<12;			p->ioa.size = hole;			itb->dev = p;			itb->bar = -1;			itb->siz = p->ioa.size;			itb++;			mtb->dev = p;			mtb->bar = -1;			mtb->siz = p->mema.size;			mtb++;			continue;		}		for(i = 0; i <= 5; i++) {			rno = PciBAR0 + i*4;			v = pcicfgrw32(p->tbdf, rno, 0, 1);			size = pcibarsize(p, rno);			if(size == 0)				continue;			if(v & 1) {				itb->dev = p;				itb->bar = i;				itb->siz = size;				itb++;			}			else {				mtb->dev = p;				mtb->bar = i;				mtb->siz = size;				mtb++;			}			p->mem[i].size = size;		}	}	/*	 * Sort both tables IO smallest first, Memory largest	 */	qsort(table, itb-table, sizeof(Pcisiz), pcisizcmp);	tptr = table+ntb;	qsort(tptr, mtb-tptr, sizeof(Pcisiz), pcisizcmp);	/*	 * Allocate IO address space on this bus	 */	for(tptr = table; tptr < itb; tptr++) {		hole = tptr->siz;		if(tptr->bar == -1)			hole = 1<<12;		ioa = (ioa+hole-1) & ~(hole-1);		p = tptr->dev;		if(tptr->bar == -1)			p->ioa.bar = ioa;		else {			p->pcr |= IOen;			p->mem[tptr->bar].bar = ioa|1;			if(wrreg)				pcicfgrw32(p->tbdf, PciBAR0+(tptr->bar*4), ioa|1, 0);		}		ioa += tptr->siz;	}	/*	 * Allocate Memory address space on this bus	 */	for(tptr = table+ntb; tptr < mtb; tptr++) {		hole = tptr->siz;		if(tptr->bar == -1)			hole = 1<<20;		mema = (mema+hole-1) & ~(hole-1);		p = tptr->dev;		if(tptr->bar == -1)			p->mema.bar = mema;		else {			p->pcr |= MEMen;			p->mem[tptr->bar].bar = mema;			if(wrreg)				pcicfgrw32(p->tbdf, PciBAR0+(tptr->bar*4), mema, 0);		}		mema += tptr->siz;	}	*pmema = mema;	*pioa = ioa;	free(table);	if(wrreg == 0)		return;	/*	 * Finally set all the bridge addresses & registers	 */	for(p = root; p != nil; p = p->link) {		if(p->bridge == nil) {			pcicfgrw8(p->tbdf, PciLTR, 64, 0);			p->pcr |= MASen;			pcicfgrw32(p->tbdf, PciPCR, p->pcr, 0);			continue;		}		base = p->ioa.bar;		limit = base+p->ioa.size-1;		v = pcicfgrw32(p->tbdf, PciBAR3, 0, 1);		v = (v&0xFFFF0000)|(limit & 0xF000)|((base & 0xF000)>>8);		pcicfgrw32(p->tbdf, PciBAR3, v, 0);		v = (limit & 0xFFFF0000)|(base>>16);		pcicfgrw32(p->tbdf, 0x30, v, 0);		base = p->mema.bar;		limit = base+p->mema.size-1;		v = (limit & 0xFFF00000)|((base & 0xFFF00000)>>16);		pcicfgrw32(p->tbdf, PciBAR4, v, 0);		/*		 * Disable memory prefetch		 */		pcicfgrw32(p->tbdf, PciBAR5, 0x0000FFFF, 0);		pcicfgrw8(p->tbdf, PciLTR, 64, 0);		/*		 * Enable the bridge		 */		v = 0xFFFF0000 | IOen | MEMen | MASen;		pcicfgrw32(p->tbdf, PciPCR, v, 0);		sioa = p->ioa.bar;		smema = p->mema.bar;		pcibusmap(p->bridge, &smema, &sioa, 1);	}}static intpciscan(int bno, Pcidev** list){	Pcidev *p, *head, *tail;	int dno, fno, i, hdt, l, maxfno, maxubn, rno, sbn, tbdf, ubn;	maxubn = bno;	head = nil;	tail = nil;	for(dno = 0; dno <= pcimaxdno; dno++){		maxfno = 0;		for(fno = 0; fno <= maxfno; fno++){			/*			 * For this possible device, form the			 * bus+device+function triplet needed to address it			 * and try to read the vendor and device ID.			 * If successful, allocate a device struct and			 * start to fill it in with some useful information			 * from the device's configuration space.			 */			tbdf = MKBUS(BusPCI, bno, dno, fno);			l = pcicfgrw32(tbdf, PciVID, 0, 1);			if(l == 0xFFFFFFFF || l == 0)				continue;			p = malloc(sizeof(*p));			p->tbdf = tbdf;			p->vid = l;			p->did = l>>16;			if(pcilist != nil)				pcitail->list = p;			else				pcilist = p;			pcitail = p;			p->rid = pcicfgr8(p, PciRID);			p->ccrp = pcicfgr8(p, PciCCRp);			p->ccru = pcicfgr8(p, PciCCRu);			p->ccrb = pcicfgr8(p, PciCCRb);			p->pcr = pcicfgr32(p, PciPCR);			p->intl = pcicfgr8(p, PciINTL);			/*			 * If the device is a multi-function device adjust the			 * loop count so all possible functions are checked.			 */			hdt = pcicfgr8(p, PciHDT);			if(hdt & 0x80)				maxfno = MaxFNO;			/*			 * If appropriate, read the base address registers			 * and work out the sizes.			 */			switch(p->ccrb) {			case 0x01:		/* mass storage controller */			case 0x02:		/* network controller */			case 0x03:		/* display controller */			case 0x04:		/* multimedia device */			case 0x07:		/* simple comm. controllers */			case 0x08:		/* base system peripherals */			case 0x09:		/* input devices */

⌨️ 快捷键说明

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