iq80331-pci.c

来自「Linux Kernel 2.6.9 for OMAP1710」· C语言 代码 · 共 139 行

C
139
字号
/* * arch/arm/mach-iop3xx/iq80331-pci.c * * PCI support for the Intel IQ80331 reference board * * Author: Dave Jiang <dave.jiang@intel.com> * Copyright (C) 2003 Intel Corp. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. */#include <linux/kernel.h>#include <linux/pci.h>#include <linux/init.h>#include <asm/hardware.h>#include <asm/irq.h>#include <asm/mach/pci.h>#include <asm/mach-types.h>/* * The following macro is used to lookup irqs in a standard table * format for those systems that do not already have PCI * interrupts properly routed.  We assume 1 <= pin <= 4 */#define PCI_IRQ_TABLE_LOOKUP(minid,maxid)	\({ int _ctl_ = -1;				\   unsigned int _idsel = idsel - minid;		\   if (_idsel <= maxid)				\      _ctl_ = pci_irq_table[_idsel][pin-1];	\   _ctl_; })#define INTA	IRQ_IQ80331_INTA#define INTB	IRQ_IQ80331_INTB#define INTC	IRQ_IQ80331_INTC#define INTD	IRQ_IQ80331_INTD//#define INTE	IRQ_IQ80331_I82544static inline int __initiq80331_map_irq(struct pci_dev *dev, u8 idsel, u8 pin){	static int pci_irq_table[][4] = {		/*		 * PCI IDSEL/INTPIN->INTLINE		 * A       B       C       D		 */		{INTB, INTC, INTD, INTA}, /* PCI-X Slot */		{INTC, INTC, INTC, INTC}, /* GigE  */	};	BUG_ON(pin < 1 || pin > 4);	return PCI_IRQ_TABLE_LOOKUP(1, 7);}static int iq80331_setup(int nr, struct pci_sys_data *sys){	struct resource *res;	if(nr != 0)		return 0;	res = kmalloc(sizeof(struct resource) * 2, GFP_KERNEL);	if (!res)		panic("PCI: unable to alloc resources");	memset(res, 0, sizeof(struct resource) * 2);	res[0].start = IQ80331_PCI_IO_BASE + 0x6e000000;	res[0].end   = IQ80331_PCI_IO_BASE + IQ80331_PCI_IO_SIZE - 1 + IQ80331_PCI_IO_OFFSET;	res[0].name  = "IQ80331 PCI I/O Space";	res[0].flags = IORESOURCE_IO;	res[1].start = IQ80331_PCI_MEM_BASE;	res[1].end   = IQ80331_PCI_MEM_BASE + IQ80331_PCI_MEM_SIZE;	res[1].name  = "IQ80331 PCI Memory Space";	res[1].flags = IORESOURCE_MEM;	request_resource(&ioport_resource, &res[0]);	request_resource(&iomem_resource, &res[1]);	/*	 * Since the IQ80331 is a slave card on a PCI backplane,	 * it uses BAR1 to reserve a portion of PCI memory space for	 * use with the private devices on the secondary bus	 * (GigE and PCI-X slot). We read BAR1 and configure	 * our outbound translation windows to target that	 * address range and assign all devices in that	 * address range. W/O this, certain BIOSes will fail	 * to boot as the IQ80331 claims addresses that are	 * in use by other devices.	 *	 * Note that the same cannot be done  with I/O space,	 * so hopefully the host will stick to the lower 64K for	 * PCI I/O and leave us alone.	 */	sys->mem_offset = IQ80331_PCI_MEM_BASE -		(*IOP331_IABAR1 & PCI_BASE_ADDRESS_MEM_MASK);	sys->resource[0] = &res[0];	sys->resource[1] = &res[1];	sys->resource[2] = NULL;	sys->io_offset   = IQ80331_PCI_IO_OFFSET;	iop3xx_pcibios_min_io = IQ80331_PCI_IO_BASE;	iop3xx_pcibios_min_mem = IQ80331_PCI_MEM_BASE;	return 1;}static void iq80331_preinit(void){	iop331_init();}static struct hw_pci iq80331_pci __initdata = {	.swizzle	= pci_std_swizzle,	.nr_controllers = 1,	.setup		= iq80331_setup,	.scan		= iop331_scan_bus,	.preinit	= iq80331_preinit,	.map_irq	= iq80331_map_irq};static int __init iq80331_pci_init(void){	if (machine_is_iq80331())		pci_common_init(&iq80331_pci);	return 0;}subsys_initcall(iq80331_pci_init);

⌨️ 快捷键说明

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