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

📄 core_mcpcia.c

📁 《嵌入式系统设计与实例开发实验教材二源码》Linux内核移植与编译实验
💻 C
📖 第 1 页 / 共 2 页
字号:
static void __initmcpcia_new_hose(int h){	struct pci_controller *hose;	struct resource *io, *mem, *hae_mem;	int mid = MCPCIA_HOSE2MID(h);	hose = alloc_pci_controller();	if (h == 0)		pci_isa_hose = hose;	io = alloc_resource();	mem = alloc_resource();	hae_mem = alloc_resource();				hose->io_space = io;	hose->mem_space = hae_mem;	hose->sparse_mem_base = MCPCIA_SPARSE(mid) - IDENT_ADDR;	hose->dense_mem_base = MCPCIA_DENSE(mid) - IDENT_ADDR;	hose->sparse_io_base = MCPCIA_IO(mid) - IDENT_ADDR;	hose->dense_io_base = 0;	hose->config_space_base = MCPCIA_CONF(mid);	hose->index = h;	io->start = MCPCIA_IO(mid) - MCPCIA_IO_BIAS;	io->end = io->start + 0xffff;	io->name = pci_io_names[h];	io->flags = IORESOURCE_IO;	mem->start = MCPCIA_DENSE(mid) - MCPCIA_MEM_BIAS;	mem->end = mem->start + 0xffffffff;	mem->name = pci_mem_names[h];	mem->flags = IORESOURCE_MEM;	hae_mem->start = mem->start;	hae_mem->end = mem->start + MCPCIA_MEM_MASK;	hae_mem->name = pci_hae0_name;	hae_mem->flags = IORESOURCE_MEM;	if (request_resource(&ioport_resource, io) < 0)		printk(KERN_ERR "Failed to request IO on hose %d\n", h);	if (request_resource(&iomem_resource, mem) < 0)		printk(KERN_ERR "Failed to request MEM on hose %d\n", h);	if (request_resource(mem, hae_mem) < 0)		printk(KERN_ERR "Failed to request HAE_MEM on hose %d\n", h);}static voidmcpcia_pci_clr_err(int mid){	*(vuip)MCPCIA_CAP_ERR(mid);	*(vuip)MCPCIA_CAP_ERR(mid) = 0xffffffff;   /* Clear them all.  */	mb();	*(vuip)MCPCIA_CAP_ERR(mid);  /* Re-read for force write.  */}static void __initmcpcia_startup_hose(struct pci_controller *hose){	int mid = MCPCIA_HOSE2MID(hose->index);	unsigned int tmp;	mcpcia_pci_clr_err(mid);	/* 	 * Set up error reporting.	 */	tmp = *(vuip)MCPCIA_CAP_ERR(mid);	tmp |= 0x0006;		/* master/target abort */	*(vuip)MCPCIA_CAP_ERR(mid) = tmp;	mb();	tmp = *(vuip)MCPCIA_CAP_ERR(mid);	/*	 * Set up the PCI->physical memory translation windows.	 *	 * Window 0 is scatter-gather 8MB at 8MB (for isa)	 * Window 1 is scatter-gather (up to) 1GB at 1GB (for pci)	 * Window 2 is direct access 2GB at 2GB	 */	hose->sg_isa = iommu_arena_new(hose, 0x00800000, 0x00800000, 0);	hose->sg_pci = iommu_arena_new(hose, 0x40000000,				       size_for_memory(0x40000000), 0);	__direct_map_base = 0x80000000;	__direct_map_size = 0x80000000;	*(vuip)MCPCIA_W0_BASE(mid) = hose->sg_isa->dma_base | 3;	*(vuip)MCPCIA_W0_MASK(mid) = (hose->sg_isa->size - 1) & 0xfff00000;	*(vuip)MCPCIA_T0_BASE(mid) = virt_to_phys(hose->sg_isa->ptes) >> 8;	*(vuip)MCPCIA_W1_BASE(mid) = hose->sg_pci->dma_base | 3;	*(vuip)MCPCIA_W1_MASK(mid) = (hose->sg_pci->size - 1) & 0xfff00000;	*(vuip)MCPCIA_T1_BASE(mid) = virt_to_phys(hose->sg_pci->ptes) >> 8;	*(vuip)MCPCIA_W2_BASE(mid) = __direct_map_base | 1;	*(vuip)MCPCIA_W2_MASK(mid) = (__direct_map_size - 1) & 0xfff00000;	*(vuip)MCPCIA_T2_BASE(mid) = 0;	*(vuip)MCPCIA_W3_BASE(mid) = 0x0;	mcpcia_pci_tbi(hose, 0, -1);	*(vuip)MCPCIA_HBASE(mid) = 0x0;	mb();	*(vuip)MCPCIA_HAE_MEM(mid) = 0U;	mb();	*(vuip)MCPCIA_HAE_MEM(mid); /* read it back. */	*(vuip)MCPCIA_HAE_IO(mid) = 0;	mb();	*(vuip)MCPCIA_HAE_IO(mid);  /* read it back. */}void __initmcpcia_init_arch(void){	/* With multiple PCI busses, we play with I/O as physical addrs.  */	ioport_resource.end = ~0UL;	iomem_resource.end = ~0UL;	/* Allocate hose 0.  That's the one that all the ISA junk hangs	   off of, from which we'll be registering stuff here in a bit.	   Other hose detection is done in mcpcia_init_hoses, which is	   called from init_IRQ.  */	mcpcia_new_hose(0);}/* This is called from init_IRQ, since we cannot take interrupts   before then.  Which means we cannot do this in init_arch.  */void __initmcpcia_init_hoses(void){	struct pci_controller *hose;	int hose_count;	int h;	/* First, find how many hoses we have.  */	hose_count = 0;	for (h = 0; h < MCPCIA_MAX_HOSES; ++h) {		if (mcpcia_probe_hose(h)) {			if (h != 0)				mcpcia_new_hose(h);			hose_count++;		}	}	printk("mcpcia_init_hoses: found %d hoses\n", hose_count);	/* Now do init for each hose.  */	for (hose = hose_head; hose; hose = hose->next)		mcpcia_startup_hose(hose);}static voidmcpcia_print_uncorrectable(struct el_MCPCIA_uncorrected_frame_mcheck *logout){	struct el_common_EV5_uncorrectable_mcheck *frame;	int i;	frame = &logout->procdata;	/* Print PAL fields */	for (i = 0; i < 24; i += 2) {		printk("  paltmp[%d-%d] = %16lx %16lx\n",		       i, i+1, frame->paltemp[i], frame->paltemp[i+1]);	}	for (i = 0; i < 8; i += 2) {		printk("  shadow[%d-%d] = %16lx %16lx\n",		       i, i+1, frame->shadow[i], 		       frame->shadow[i+1]);	}	printk("  Addr of excepting instruction  = %16lx\n",	       frame->exc_addr);	printk("  Summary of arithmetic traps    = %16lx\n",	       frame->exc_sum);	printk("  Exception mask                 = %16lx\n",	       frame->exc_mask);	printk("  Base address for PALcode       = %16lx\n",	       frame->pal_base);	printk("  Interrupt Status Reg           = %16lx\n",	       frame->isr);	printk("  CURRENT SETUP OF EV5 IBOX      = %16lx\n",	       frame->icsr);	printk("  I-CACHE Reg %s parity error   = %16lx\n",	       (frame->ic_perr_stat & 0x800L) ? 	       "Data" : "Tag", 	       frame->ic_perr_stat); 	printk("  D-CACHE error Reg              = %16lx\n",	       frame->dc_perr_stat);	if (frame->dc_perr_stat & 0x2) {		switch (frame->dc_perr_stat & 0x03c) {		case 8:			printk("    Data error in bank 1\n");			break;		case 4:			printk("    Data error in bank 0\n");			break;		case 20:			printk("    Tag error in bank 1\n");			break;		case 10:			printk("    Tag error in bank 0\n");			break;		}	}	printk("  Effective VA                   = %16lx\n",	       frame->va);	printk("  Reason for D-stream            = %16lx\n",	       frame->mm_stat);	printk("  EV5 SCache address             = %16lx\n",	       frame->sc_addr);	printk("  EV5 SCache TAG/Data parity     = %16lx\n",	       frame->sc_stat);	printk("  EV5 BC_TAG_ADDR                = %16lx\n",	       frame->bc_tag_addr);	printk("  EV5 EI_ADDR: Phys addr of Xfer = %16lx\n",	       frame->ei_addr);	printk("  Fill Syndrome                  = %16lx\n",	       frame->fill_syndrome);	printk("  EI_STAT reg                    = %16lx\n",	       frame->ei_stat);	printk("  LD_LOCK                        = %16lx\n",	       frame->ld_lock);}static voidmcpcia_print_system_area(unsigned long la_ptr){	struct el_common *frame;	struct pci_controller *hose;	struct IOD_subpacket {	  unsigned long base;	  unsigned int whoami;	  unsigned int rsvd1;	  unsigned int pci_rev;	  unsigned int cap_ctrl;	  unsigned int hae_mem;	  unsigned int hae_io;	  unsigned int int_ctl;	  unsigned int int_reg;	  unsigned int int_mask0;	  unsigned int int_mask1;	  unsigned int mc_err0;	  unsigned int mc_err1;	  unsigned int cap_err;	  unsigned int rsvd2;	  unsigned int pci_err1;	  unsigned int mdpa_stat;	  unsigned int mdpa_syn;	  unsigned int mdpb_stat;	  unsigned int mdpb_syn;	  unsigned int rsvd3;	  unsigned int rsvd4;	  unsigned int rsvd5;	} *iodpp;	frame = (struct el_common *)la_ptr;	iodpp = (struct IOD_subpacket *) (la_ptr + frame->sys_offset);	for (hose = hose_head; hose; hose = hose->next, iodpp++) {	  printk("IOD %d Register Subpacket - Bridge Base Address %16lx\n",		 hose->index, iodpp->base);	  printk("  WHOAMI      = %8x\n", iodpp->whoami);	  printk("  PCI_REV     = %8x\n", iodpp->pci_rev);	  printk("  CAP_CTRL    = %8x\n", iodpp->cap_ctrl);	  printk("  HAE_MEM     = %8x\n", iodpp->hae_mem);	  printk("  HAE_IO      = %8x\n", iodpp->hae_io);	  printk("  INT_CTL     = %8x\n", iodpp->int_ctl);	  printk("  INT_REG     = %8x\n", iodpp->int_reg);	  printk("  INT_MASK0   = %8x\n", iodpp->int_mask0);	  printk("  INT_MASK1   = %8x\n", iodpp->int_mask1);	  printk("  MC_ERR0     = %8x\n", iodpp->mc_err0);	  printk("  MC_ERR1     = %8x\n", iodpp->mc_err1);	  printk("  CAP_ERR     = %8x\n", iodpp->cap_err);	  printk("  PCI_ERR1    = %8x\n", iodpp->pci_err1);	  printk("  MDPA_STAT   = %8x\n", iodpp->mdpa_stat);	  printk("  MDPA_SYN    = %8x\n", iodpp->mdpa_syn);	  printk("  MDPB_STAT   = %8x\n", iodpp->mdpb_stat);	  printk("  MDPB_SYN    = %8x\n", iodpp->mdpb_syn);	}}voidmcpcia_machine_check(unsigned long vector, unsigned long la_ptr,		     struct pt_regs * regs){	struct el_common *mchk_header;	struct el_MCPCIA_uncorrected_frame_mcheck *mchk_logout;	unsigned int cpu = smp_processor_id();	int expected;	mchk_header = (struct el_common *)la_ptr;	mchk_logout = (struct el_MCPCIA_uncorrected_frame_mcheck *)la_ptr;	expected = mcheck_expected(cpu);	mb();	mb();  /* magic */	draina();	switch (expected) {	case 0:	    {		/* FIXME: how do we figure out which hose the		   error was on?  */			struct pci_controller *hose;		for (hose = hose_head; hose; hose = hose->next)			mcpcia_pci_clr_err(MCPCIA_HOSE2MID(hose->index));		break;	    }	case 1:		mcpcia_pci_clr_err(mcheck_extra(cpu));		break;	default:		/* Otherwise, we're being called from mcpcia_probe_hose		   and there's no hose clear an error from.  */		break;	}	wrmces(0x7);	mb();	process_mcheck_info(vector, la_ptr, regs, "MCPCIA", expected != 0);	if (!expected && vector != 0x620 && vector != 0x630) {		mcpcia_print_uncorrectable(mchk_logout);		mcpcia_print_system_area(la_ptr);	}}

⌨️ 快捷键说明

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