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

📄 devi82365.c

📁 这是一个同样来自贝尔实验室的和UNIX有着渊源的操作系统, 其简洁的设计和实现易于我们学习和理解
💻 C
📖 第 1 页 / 共 2 页
字号:
#include "u.h"#include "../port/lib.h"#include "mem.h"#include "dat.h"#include "fns.h"#include "../port/error.h"#include "io.h"/* *  Intel 82365SL PCIC controller and compatibles. */enum{	/*	 *  registers indices	 */	Rid=		0x0,		/* identification and revision */	Ris=		0x1,		/* interface status */	Rpc=	 	0x2,		/* power control */	 Foutena=	 (1<<7),	/*  output enable */	 Fautopower=	 (1<<5),	/*  automatic power switching */	 Fcardena=	 (1<<4),	/*  PC card enable */	Rigc= 		0x3,		/* interrupt and general control */	 Fiocard=	 (1<<5),	/*  I/O card (vs memory) */	 Fnotreset=	 (1<<6),	/*  reset if not set */		 FSMIena=	 (1<<4),	/*  enable change interrupt on SMI */ 	Rcsc= 		0x4,		/* card status change */	Rcscic= 	0x5,		/* card status change interrupt config */	 Fchangeena=	 (1<<3),	/*  card changed */	 Fbwarnena=	 (1<<1),	/*  card battery warning */	 Fbdeadena=	 (1<<0),	/*  card battery dead */	Rwe= 		0x6,		/* address window enable */	 Fmem16=	 (1<<5),	/*  use A23-A12 to decode address */	Rio= 		0x7,		/* I/O control */	 Fwidth16=	 (1<<0),	/*  16 bit data width */	 Fiocs16=	 (1<<1),	/*  IOCS16 determines data width */	 Fzerows=	 (1<<2),	/*  zero wait state */	 Ftiming=	 (1<<3),	/*  timing register to use */	Riobtm0lo=	0x8,		/* I/O address 0 start low byte */	Riobtm0hi=	0x9,		/* I/O address 0 start high byte */	Riotop0lo=	0xa,		/* I/O address 0 stop low byte */	Riotop0hi=	0xb,		/* I/O address 0 stop high byte */	Riobtm1lo=	0xc,		/* I/O address 1 start low byte */	Riobtm1hi=	0xd,		/* I/O address 1 start high byte */	Riotop1lo=	0xe,		/* I/O address 1 stop low byte */	Riotop1hi=	0xf,		/* I/O address 1 stop high byte */	Rmap=		0x10,		/* map 0 */	/*	 *  CL-PD67xx extension registers	 */	Rmisc1=		0x16,		/* misc control 1 */	 F5Vdetect=	 (1<<0),	 Fvcc3V=	 (1<<1),	 Fpmint=	 (1<<2),	 Fpsirq=	 (1<<3),	 Fspeaker=	 (1<<4),	 Finpack=	 (1<<7),	Rfifo=		0x17,		/* fifo control */	 Fflush=	 (1<<7),	/*  flush fifo */	Rmisc2=		0x1E,		/* misc control 2 */	 Flowpow=	 (1<<1),	/*  low power mode */	Rchipinfo=	0x1F,		/* chip information */	Ratactl=	0x26,		/* ATA control */	/*	 *  offsets into the system memory address maps	 */	Mbtmlo=		0x0,		/* System mem addr mapping start low byte */	Mbtmhi=		0x1,		/* System mem addr mapping start high byte */	 F16bit=	 (1<<7),	/*  16-bit wide data path */	Mtoplo=		0x2,		/* System mem addr mapping stop low byte */	Mtophi=		0x3,		/* System mem addr mapping stop high byte */	 Ftimer1=	 (1<<6),	/*  timer set 1 */	Mofflo=		0x4,		/* Card memory offset address low byte */	Moffhi=		0x5,		/* Card memory offset address high byte */	 Fregactive=	 (1<<6),	/*  attribute memory */	/*	 *  configuration registers - they start at an offset in attribute	 *  memory found in the CIS.	 */	Rconfig=	0,	 Creset=	 (1<<7),	/*  reset device */	 Clevel=	 (1<<6),	/*  level sensitive interrupt line */	 Cirq=		 (1<<2),	/*  IRQ enable */	 Cdecode=	 (1<<1),	/*  address decode */	 Cfunc=		 (1<<0),	/*  function enable */	Riobase0=	5,	Riobase1=	6,	Riosize=	9,};#define MAP(x,o)	(Rmap + (x)*0x8 + o)typedef struct I82365	I82365;/* a controller */enum{	Ti82365,	Tpd6710,	Tpd6720,	Tvg46x,};struct I82365{	int	type;	int	dev;	int	nslot;	int	xreg;		/* index register address */	int	dreg;		/* data register address */	int	irq;};static I82365 *controller[4];static int ncontroller;static PCMslot	*slot;static PCMslot	*lastslot;static nslot;static void	i82365intr(Ureg*, void*);static int	pcmio(int, ISAConf*);static long	pcmread(int, int, void*, long, vlong);static long	pcmwrite(int, int, void*, long, vlong);static void i82365dump(PCMslot*);/* *  reading and writing card registers */static ucharrdreg(PCMslot *pp, int index){	outb(((I82365*)pp->cp)->xreg, pp->base + index);	return inb(((I82365*)pp->cp)->dreg);}static voidwrreg(PCMslot *pp, int index, uchar val){	outb(((I82365*)pp->cp)->xreg, pp->base + index);	outb(((I82365*)pp->cp)->dreg, val);}/* *  get info about card */static voidslotinfo(PCMslot *pp){	uchar isr;	isr = rdreg(pp, Ris);	pp->occupied = (isr & (3<<2)) == (3<<2);	pp->powered = isr & (1<<6);	pp->battery = (isr & 3) == 3;	pp->wrprot = isr & (1<<4);	pp->busy = isr & (1<<5);	pp->msec = TK2MS(MACHP(0)->ticks);}static intvcode(int volt){	switch(volt){	case 5:		return 1;	case 12:		return 2;	default:		return 0;	}}/* *  enable the slot card */static voidslotena(PCMslot *pp){	if(pp->enabled)		return;	/* power up and unreset, wait's are empirical (???) */	wrreg(pp, Rpc, Fautopower|Foutena|Fcardena);	delay(300);	wrreg(pp, Rigc, 0);	delay(100);	wrreg(pp, Rigc, Fnotreset);	delay(500);	/* get configuration */	slotinfo(pp);	if(pp->occupied){		pcmcisread(pp);		pp->enabled = 1;	} else		wrreg(pp, Rpc, Fautopower);}/* *  disable the slot card */static voidslotdis(PCMslot *pp){	wrreg(pp, Rpc, 0);	/* turn off card power */	wrreg(pp, Rwe, 0);	/* no windows */	pp->enabled = 0;}/* *  status change interrupt */static voidi82365intr(Ureg *, void *){	uchar csc, was;	PCMslot *pp;	if(slot == 0)		return;	for(pp = slot; pp < lastslot; pp++){		csc = rdreg(pp, Rcsc);		was = pp->occupied;		slotinfo(pp);		if(csc & (1<<3) && was != pp->occupied){			if(!pp->occupied)				slotdis(pp);		}	}}enum{	Mshift=	12,	Mgran=	(1<<Mshift),	/* granularity of maps */	Mmask=	~(Mgran-1),	/* mask for address bits important to the chip */};/* *  get a map for pc card region, return corrected len */PCMmap*pcmmap(int slotno, ulong offset, int len, int attr){	PCMslot *pp;	uchar we, bit;	PCMmap *m, *nm;	int i;	ulong e;	pp = slot + slotno;	lock(&pp->mlock);	/* convert offset to granularity */	if(len <= 0)		len = 1;	e = ROUND(offset+len, Mgran);	offset &= Mmask;	len = e - offset;	/* look for a map that covers the right area */	we = rdreg(pp, Rwe);	bit = 1;	nm = 0;	for(m = pp->mmap; m < &pp->mmap[nelem(pp->mmap)]; m++){		if((we & bit))		if(m->attr == attr)		if(offset >= m->ca && e <= m->cea){			m->ref++;			unlock(&pp->mlock);			return m;		}		bit <<= 1;		if(nm == 0 && m->ref == 0)			nm = m;	}	m = nm;	if(m == 0){		unlock(&pp->mlock);		return 0;	}	/* if isa space isn't big enough, free it and get more */	if(m->len < len){		if(m->isa){			umbfree(m->isa, m->len);			m->len = 0;		}		m->isa = PADDR(umbmalloc(0, len, Mgran));		if(m->isa == 0){			print("pcmmap: out of isa space\n");			unlock(&pp->mlock);			return 0;		}		m->len = len;	}	/* set up new map */	m->ca = offset;	m->cea = m->ca + m->len;	m->attr = attr;	i = m-pp->mmap;	bit = 1<<i;	wrreg(pp, Rwe, we & ~bit);		/* disable map before changing it */	wrreg(pp, MAP(i, Mbtmlo), m->isa>>Mshift);	wrreg(pp, MAP(i, Mbtmhi), (m->isa>>(Mshift+8)) | F16bit);	wrreg(pp, MAP(i, Mtoplo), (m->isa+m->len-1)>>Mshift);	wrreg(pp, MAP(i, Mtophi), ((m->isa+m->len-1)>>(Mshift+8)));	offset -= m->isa;	offset &= (1<<25)-1;	offset >>= Mshift;	wrreg(pp, MAP(i, Mofflo), offset);	wrreg(pp, MAP(i, Moffhi), (offset>>8) | (attr ? Fregactive : 0));	wrreg(pp, Rwe, we | bit);		/* enable map */	m->ref = 1;	unlock(&pp->mlock);	return m;}voidpcmunmap(int slotno, PCMmap* m){	PCMslot *pp;	pp = slot + slotno;	lock(&pp->mlock);	m->ref--;	unlock(&pp->mlock);}static voidincrefp(PCMslot *pp){	lock(pp);	if(pp->ref++ == 0)		slotena(pp);	unlock(pp);}static voiddecrefp(PCMslot *pp){	lock(pp);	if(pp->ref-- == 1)		slotdis(pp);	unlock(pp);}/* *  look for a card whose version contains 'idstr' */static intpcmcia_pcmspecial(char *idstr, ISAConf *isa){	PCMslot *pp;	extern char *strstr(char*, char*);	int enabled;	for(pp = slot; pp < lastslot; pp++){		if(pp->special)			continue;	/* already taken */		/*		 *  make sure we don't power on cards when we already know what's		 *  in them.  We'll reread every two minutes if necessary		 */		enabled = 0;		if (pp->msec == ~0 || TK2MS(MACHP(0)->ticks) - pp->msec > 120000){			increfp(pp);			enabled++;		}		if(pp->occupied) {			if(strstr(pp->verstr, idstr)){				if (!enabled){					enabled = 1;					increfp(pp);				}				if(isa == 0 || pcmio(pp->slotno, isa) == 0){					pp->special = 1;					return pp->slotno;				}			}		} else			pp->special = 1;		if (enabled)			decrefp(pp);	}	return -1;}static voidpcmcia_pcmspecialclose(int slotno){	PCMslot *pp;	if(slotno >= nslot)		panic("pcmspecialclose");	pp = slot + slotno;	pp->special = 0;	decrefp(pp);}enum{	Qdir,	Qmem,	Qattr,	Qctl,	Nents = 3,};#define SLOTNO(c)	((ulong)((c->qid.path>>8)&0xff))#define TYPE(c)	((ulong)(c->qid.path&0xff))#define QID(s,t)	(((s)<<8)|(t))static intpcmgen(Chan *c, char*, Dirtab *, int , int i, Dir *dp){	int slotno;	Qid qid;	long len;	PCMslot *pp;	if(i == DEVDOTDOT){		mkqid(&qid, Qdir, 0, QTDIR);		devdir(c, qid, "#y", 0, eve, 0555, dp);		return 1;	}	if(i >= Nents*nslot)		return -1;	slotno = i/Nents;	pp = slot + slotno;	len = 0;	switch(i%Nents){	case 0:		qid.path = QID(slotno, Qmem);		snprint(up->genbuf, sizeof up->genbuf, "pcm%dmem", slotno);		len = pp->memlen;		break;	case 1:		qid.path = QID(slotno, Qattr);		snprint(up->genbuf, sizeof up->genbuf, "pcm%dattr", slotno);		len = pp->memlen;		break;	case 2:		qid.path = QID(slotno, Qctl);		snprint(up->genbuf, sizeof up->genbuf, "pcm%dctl", slotno);		break;	}	qid.vers = 0;	qid.type = QTFILE;	devdir(c, qid, up->genbuf, len, eve, 0660, dp);	return 1;}static char *chipname[] ={[Ti82365]	"Intel 82365SL",[Tpd6710]	"Cirrus Logic CL-PD6710",[Tpd6720]	"Cirrus Logic CL-PD6720",[Tvg46x]	"Vadem VG-46x",};static I82365*i82365probe(int x, int d, int dev){	uchar c, id;	I82365 *cp;	ISAConf isa;	int i, nslot;	outb(x, Rid + (dev<<7));	id = inb(d);	if((id & 0xf0) != 0x80)		return 0;		/* not a memory & I/O card */	if((id & 0x0f) == 0x00)		return 0;		/* no revision number, not possible */	cp = xalloc(sizeof(I82365));	cp->xreg = x;	cp->dreg = d;	cp->dev = dev;	cp->type = Ti82365;	cp->nslot = 2;	switch(id){	case 0x82:	case 0x83:	case 0x84:		/* could be a cirrus */		outb(x, Rchipinfo + (dev<<7));		outb(d, 0);		c = inb(d);		if((c & 0xc0) != 0xc0)			break;		c = inb(d);		if((c & 0xc0) != 0x00)			break;		if(c & 0x20){			cp->type = Tpd6720;		} else {			cp->type = Tpd6710;			cp->nslot = 1;		}		/* low power mode */		outb(x, Rmisc2 + (dev<<7));		c = inb(d);		outb(d, c & ~Flowpow);		break;	}	/* if it's not a Cirrus, it could be a Vadem... */	if(cp->type == Ti82365){		/* unlock the Vadem extended regs */		outb(x, 0x0E + (dev<<7));

⌨️ 快捷键说明

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