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

📄 cardbus.c

📁 讲述linux的初始化过程
💻 C
字号:
/*======================================================================      Cardbus device configuration        cardbus.c 1.63 1999/11/08 20:47:02    The contents of this file are subject to the Mozilla Public    License Version 1.1 (the "License"); you may not use this file    except in compliance with the License. You may obtain a copy of    the License at http://www.mozilla.org/MPL/    Software distributed under the License is distributed on an "AS    IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or    implied. See the License for the specific language governing    rights and limitations under the License.    The initial developer of the original code is David A. Hinds    <dhinds@pcmcia.sourceforge.org>.  Portions created by David A. Hinds    are Copyright (C) 1999 David A. Hinds.  All Rights Reserved.    Alternatively, the contents of this file may be used under the    terms of the GNU Public License version 2 (the "GPL"), in which    case the provisions of the GPL are applicable instead of the    above.  If you wish to allow the use of your version of this file    only under the terms of the GPL and not to allow others to use    your version of this file under the MPL, indicate your decision    by deleting the provisions above and replace them with the notice    and other provisions required by the GPL.  If you do not delete    the provisions above, a recipient may use your version of this    file under either the MPL or the GPL.        These routines handle allocating resources for Cardbus cards, as    well as setting up and shutting down Cardbus sockets.  They are    called from cs.c in response to Request/ReleaseConfiguration and    Request/ReleaseIO calls.======================================================================*//* * This file is going away.  Cardbus handling has been re-written to be * more of a PCI bridge thing, and the PCI code basically does all the * resource handling. This has wrappers to make the rest of the PCMCIA * subsystem not notice that it's not here any more. * *		Linus, Jan 2000 */#define __NO_VERSION__#include <linux/module.h>#include <linux/kernel.h>#include <linux/string.h>#include <linux/malloc.h>#include <linux/mm.h>#include <linux/pci.h>#include <linux/ioport.h>#include <asm/irq.h>#include <asm/io.h>#define IN_CARD_SERVICES#include <pcmcia/version.h>#include <pcmcia/cs_types.h>#include <pcmcia/ss.h>#include <pcmcia/cs.h>#include <pcmcia/bulkmem.h>#include <pcmcia/cistpl.h>#include "cs_internal.h"#include "rsrc_mgr.h"#ifdef PCMCIA_DEBUGstatic int pc_debug = PCMCIA_DEBUG;#endif/*====================================================================*/#define FIND_FIRST_BIT(n)	((n) - ((n) & ((n)-1)))#define pci_readb		pci_read_config_byte#define pci_writeb		pci_write_config_byte#define pci_readw		pci_read_config_word#define pci_writew		pci_write_config_word#define pci_readl		pci_read_config_dword#define pci_writel		pci_write_config_dword/* Offsets in the Expansion ROM Image Header */#define ROM_SIGNATURE		0x0000	/* 2 bytes */#define ROM_DATA_PTR		0x0018	/* 2 bytes *//* Offsets in the CardBus PC Card Data Structure */#define PCDATA_SIGNATURE	0x0000	/* 4 bytes */#define PCDATA_VPD_PTR		0x0008	/* 2 bytes */#define PCDATA_LENGTH		0x000a	/* 2 bytes */#define PCDATA_REVISION		0x000c#define PCDATA_IMAGE_SZ		0x0010	/* 2 bytes */#define PCDATA_ROM_LEVEL	0x0012	/* 2 bytes */#define PCDATA_CODE_TYPE	0x0014#define PCDATA_INDICATOR	0x0015typedef struct cb_config_t {	struct pci_dev dev;} cb_config_t;/*=====================================================================    Expansion ROM's have a special layout, and pointers specify an    image number and an offset within that image.  xlate_rom_addr()    converts an image/offset address to an absolute offset from the    ROM's base address.    =====================================================================*/static u_int xlate_rom_addr(u_char * b, u_int addr){	u_int img = 0, ofs = 0, sz;	u_short data;	while ((readb(b) == 0x55) && (readb(b + 1) == 0xaa)) {		if (img == (addr >> 28))			return (addr & 0x0fffffff) + ofs;		data = readb(b + ROM_DATA_PTR) + (readb(b + ROM_DATA_PTR + 1) << 8);		sz = 512 * (readb(b + data + PCDATA_IMAGE_SZ) +			    (readb(b + data + PCDATA_IMAGE_SZ + 1) << 8));		if ((sz == 0) || (readb(b + data + PCDATA_INDICATOR) & 0x80))			break;		b += sz;		ofs += sz;		img++;	}	return 0;}/*=====================================================================    These are similar to setup_cis_mem and release_cis_mem for 16-bit    cards.  The "result" that is used externally is the cb_cis_virt    pointer in the socket_info_t structure.    =====================================================================*/void cb_release_cis_mem(socket_info_t * s){	if (s->cb_cis_virt) {		DEBUG(1, "cs: cb_release_cis_mem()\n");		iounmap(s->cb_cis_virt);		s->cb_cis_virt = NULL;		s->cb_cis_res = 0;	}}static int cb_setup_cis_mem(socket_info_t * s, struct pci_dev *dev, struct resource *res){	unsigned int start, size;	if (res == s->cb_cis_res)		return 0;	if (s->cb_cis_res)		cb_release_cis_mem(s);	start = res->start;	size = res->end - start + 1;	s->cb_cis_virt = ioremap(start, size);	if (!s->cb_cis_virt)		return -1;	s->cb_cis_res = res;	return 0;}/*=====================================================================    This is used by the CIS processing code to read CIS information    from a CardBus device.    =====================================================================*/void read_cb_mem(socket_info_t * s, u_char fn, int space,		 u_int addr, u_int len, void *ptr){	struct pci_dev *dev;	struct resource *res;	DEBUG(3, "cs: read_cb_mem(%d, %#x, %u)\n", space, addr, len);	if (!s->cb_config)		goto fail;	dev = &s->cb_config[fn].dev;	/* Config space? */	if (space == 0) {		if (addr + len > 0x100)			goto fail;		for (; len; addr++, ptr++, len--)			pci_readb(dev, addr, (u_char *) ptr);		return;	}	res = dev->resource + space - 1;	if (!res->flags)		goto fail;	if (cb_setup_cis_mem(s, dev, res) != 0)		goto fail;	if (space == 7) {		addr = xlate_rom_addr(s->cb_cis_virt, addr);		if (addr == 0)			goto fail;	}	if (addr + len > res->end - res->start)		goto fail;	memcpy_fromio(ptr, s->cb_cis_virt + addr, len);	return;fail:	memset(ptr, 0xff, len);	return;}/*=====================================================================    cb_alloc() and cb_free() allocate and free the kernel data    structures for a Cardbus device, and handle the lowest level PCI    device setup issues.    =====================================================================*/int cb_alloc(socket_info_t * s){	struct pci_bus *bus;	struct pci_dev tmp;	u_short vend, v, dev;	u_char i, hdr, fn;	cb_config_t *c;	int irq;	bus = s->cap.cb_dev->subordinate;	memset(&tmp, 0, sizeof(tmp));	tmp.bus = bus;	tmp.sysdata = bus->sysdata;	tmp.devfn = 0;	pci_readw(&tmp, PCI_VENDOR_ID, &vend);	pci_readw(&tmp, PCI_DEVICE_ID, &dev);	printk(KERN_INFO "cs: cb_alloc(bus %d): vendor 0x%04x, "	       "device 0x%04x\n", bus->number, vend, dev);	pci_readb(&tmp, PCI_HEADER_TYPE, &hdr);	fn = 1;	if (hdr & 0x80) {		do {			tmp.devfn = fn;			if (pci_readw(&tmp, PCI_VENDOR_ID, &v) || !v || v == 0xffff)				break;			fn++;		} while (fn < 8);	}	s->functions = fn;	c = kmalloc(fn * sizeof(struct cb_config_t), GFP_ATOMIC);	if (!c)		return CS_OUT_OF_RESOURCE;	memset(c, 0, fn * sizeof(struct cb_config_t));	irq = s->cap.pci_irq;	for (i = 0; i < fn; i++) {		struct pci_dev *dev = &c[i].dev;		u8 irq_pin;		int r;		dev->bus = bus;		dev->sysdata = bus->sysdata;		dev->devfn = i;		dev->vendor = vend;		pci_readw(dev, PCI_DEVICE_ID, &dev->device);		dev->hdr_type = hdr & 0x7f;		pci_setup_device(dev);		/* FIXME: Do we need to enable the expansion ROM? */		for (r = 0; r < 7; r++) {			struct resource *res = dev->resource + r;			if (res->flags)				pci_assign_resource(dev, r);		}		pci_enable_device(dev); /* XXX check return */		/* Does this function have an interrupt at all? */		pci_readb(dev, PCI_INTERRUPT_PIN, &irq_pin);		if (irq_pin) {			dev->irq = irq;			pci_writeb(dev, PCI_INTERRUPT_LINE, irq);		}		pci_insert_device(dev, bus);	}	s->cb_config = c;	s->irq.AssignedIRQ = irq;	return CS_SUCCESS;}void cb_free(socket_info_t * s){	cb_config_t *c = s->cb_config;	if (c) {		int i;		s->cb_config = NULL;		for (i = 0 ; i < s->functions ; i++)			pci_remove_device(&c[i].dev);		kfree(c);		printk(KERN_INFO "cs: cb_free(bus %d)\n", s->cap.cb_dev->subordinate->number);	}}/*=====================================================================    cb_config() has the job of allocating all system resources that    a Cardbus card requires.  Rather than using the CIS (which seems    to not always be present), it treats the card as an ordinary PCI    device, and probes the base address registers to determine each    function's IO and memory space needs.    It is called from the RequestIO card service.    ======================================================================*/int cb_config(socket_info_t * s){	return CS_SUCCESS;}/*======================================================================    cb_release() releases all the system resources (IO and memory    space, and interrupt) committed for a Cardbus card by a prior call    to cb_config().    It is called from the ReleaseIO() service.    ======================================================================*/void cb_release(socket_info_t * s){	DEBUG(0, "cs: cb_release(bus %d)\n", s->cap.cb_dev->subordinate->number);}/*=====================================================================    cb_enable() has the job of configuring a socket for a Cardbus    card, and initializing the card's PCI configuration registers.    It first sets up the Cardbus bridge windows, for IO and memory    accesses.  Then, it initializes each card function's base address    registers, interrupt line register, and command register.    It is called as part of the RequestConfiguration card service.    It should be called after a previous call to cb_config() (via the    RequestIO service).    ======================================================================*/void cb_enable(socket_info_t * s){	struct pci_dev *dev;	u_char i;	DEBUG(0, "cs: cb_enable(bus %d)\n", s->cap.cb_dev->subordinate->number);	/* Configure bridge */	cb_release_cis_mem(s);	/* Set up PCI interrupt and command registers */	for (i = 0; i < s->functions; i++) {		dev = &s->cb_config[i].dev;		pci_writeb(dev, PCI_COMMAND, PCI_COMMAND_MASTER |			   PCI_COMMAND_IO | PCI_COMMAND_MEMORY);		pci_writeb(dev, PCI_CACHE_LINE_SIZE, L1_CACHE_BYTES / 4);	}	if (s->irq.AssignedIRQ) {		for (i = 0; i < s->functions; i++) {			dev = &s->cb_config[i].dev;			pci_writeb(dev, PCI_INTERRUPT_LINE, s->irq.AssignedIRQ);		}		s->socket.io_irq = s->irq.AssignedIRQ;		s->ss_entry->set_socket(s->sock, &s->socket);	}}/*======================================================================    cb_disable() unconfigures a Cardbus card previously set up by    cb_enable().    It is called from the ReleaseConfiguration service.    ======================================================================*/void cb_disable(socket_info_t * s){	DEBUG(0, "cs: cb_disable(bus %d)\n", s->cap.cb_dev->subordinate->number);	/* Turn off bridge windows */	cb_release_cis_mem(s);}

⌨️ 快捷键说明

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