ep405.c

来自「是关于linux2.5.1的完全源码」· C语言 代码 · 共 188 行

C
188
字号
/* * BK Id: %F% %I% %G% %U% %#% * *    Copyright 2001 MontaVista Software Inc. *        <mlocke@mvista.com> * * 	Not much needed for the Embedded Planet 405gp board * *  	History: 11/09/2001 - armin *      added board_init to add in additional instuctions needed during platfrom_init *	cleaned up map_irq. *	  *	1/22/2002 - Armin *      converted pci to ocp * * */#include <linux/config.h>#include <linux/init.h>#include <linux/pci.h>#include <asm/system.h>#include <asm/pci-bridge.h>#include <asm/machdep.h>#include <asm/todc.h>#include <platforms/ibm_ocp.h>#undef DEBUG#ifdef DEBUG#define DBG(x...) printk(x)#else#define DBG(x...)#endifvoid *ep405_bcsr;void *ep405_nvram;int __initppc405_map_irq(struct pci_dev *dev, unsigned char idsel, unsigned char pin){	static char pci_irq_table[][4] =	    /*	     *      PCI IDSEL/INTPIN->INTLINE	     *      A       B       C       D	     */	{		{28, 28, 28, 28},	/* IDSEL 1 - PCI slot 1 */		{29, 29, 29, 29},	/* IDSEL 2 - PCI slot 2 */		{30, 30, 30, 30},	/* IDSEL 3 - PCI slot 3 */		{31, 31, 31, 31},	/* IDSEL 4 - PCI slot 4 */	};	const long min_idsel = 1, max_idsel = 4, irqs_per_slot = 4;	return PCI_IRQ_TABLE_LOOKUP;};void __initboard_setup_arch(void){#ifdef CONFIG_PPC_RTC	/* FIXME: what if NVRAM size is not 512k */	TODC_INIT(TODC_TYPE_DS1557, ep405_nvram, ep405_nvram, ep405_nvram, 8);#endif				/* CONFIG_PPC_RTC */}void __initbios_fixup(struct pci_controller *hose, void *pcil0_base){	unsigned int bar_response, bar;	struct pcil0_regs *pcip;	/*	 * Expected PCI mapping:	 *	 *  PLB addr             PCI memory addr	 *  ---------------------       ---------------------	 *  0000'0000 - 7fff'ffff <---  0000'0000 - 7fff'ffff	 *  8000'0000 - Bfff'ffff --->  8000'0000 - Bfff'ffff	 *	 *  PLB addr             PCI io addr	 *  ---------------------       ---------------------	 *  e800'0000 - e800'ffff --->  0000'0000 - 0001'0000	 *	 */#ifdef DEBUG	int i;	pcip = (struct pcil0_regs *) pcil0_base;	printk("ioremap PCLIO_BASE = 0x%x\n", pcip);	printk("PCI bridge regs before fixup \n");	for (i = 0; i <= 3; i++) {		printk(" pmm%dma\t0x%x\n", i, in_le32(&(pcip->pmm[i].ma)));		printk(" pmm%dma\t0x%x\n", i, in_le32(&(pcip->pmm[i].la)));		printk(" pmm%dma\t0x%x\n", i, in_le32(&(pcip->pmm[i].pcila)));		printk(" pmm%dma\t0x%x\n", i, in_le32(&(pcip->pmm[i].pciha)));	}	printk(" ptm1ms\t0x%x\n", in_le32(&(pcip->ptm1ms)));	printk(" ptm1la\t0x%x\n", in_le32(&(pcip->ptm1la)));	printk(" ptm2ms\t0x%x\n", in_le32(&(pcip->ptm2ms)));	printk(" ptm2la\t0x%x\n", in_le32(&(pcip->ptm2la)));#else	pcip = (struct pcil0_regs *) pcil0_base;#endif	/* added for IBM boot rom version 1.15 bios bar changes  -AK */	/* Disable region first */	out_le32((void *) &(pcip->pmm[0].ma), 0x00000000);	/* PLB starting addr, PCI: 0x80000000 */	out_le32((void *) &(pcip->pmm[0].la), 0x80000000);	/* PCI start addr, 0x80000000 */	out_le32((void *) &(pcip->pmm[0].pcila), PPC405_PCI_MEM_BASE);	/* 512MB range of PLB to PCI */	out_le32((void *) &(pcip->pmm[0].pciha), 0x00000000);	/* Enable no pre-fetch, enable region */	out_le32((void *) &(pcip->pmm[0].ma), ((0xffffffff -						(PPC405_PCI_UPPER_MEM -						 PPC405_PCI_MEM_BASE)) | 0x01));	/* Disable region one */	out_le32((void *) &(pcip->pmm[1].ma), 0x00000000);	out_le32((void *) &(pcip->pmm[1].la), 0x00000000);	out_le32((void *) &(pcip->pmm[1].pcila), 0x00000000);	out_le32((void *) &(pcip->pmm[1].pciha), 0x00000000);	out_le32((void *) &(pcip->pmm[1].ma), 0x00000000);	out_le32((void *) &(pcip->ptm1ms), 0x00000000);	/* Disable region two */	out_le32((void *) &(pcip->pmm[2].ma), 0x00000000);	out_le32((void *) &(pcip->pmm[2].la), 0x00000000);	out_le32((void *) &(pcip->pmm[2].pcila), 0x00000000);	out_le32((void *) &(pcip->pmm[2].pciha), 0x00000000);	out_le32((void *) &(pcip->pmm[2].ma), 0x00000000);	out_le32((void *) &(pcip->ptm2ms), 0x00000000);	/* Zero config bars */	for (bar = PCI_BASE_ADDRESS_1; bar <= PCI_BASE_ADDRESS_2; bar += 4) {		early_write_config_dword(hose, hose->first_busno,					 PCI_FUNC(hose->first_busno), bar,					 0x00000000);		early_read_config_dword(hose, hose->first_busno,					PCI_FUNC(hose->first_busno), bar,					&bar_response);		DBG("BUS %d, device %d, Function %d bar 0x%8.8x is 0x%8.8x\n",		    hose->first_busno, PCI_SLOT(hose->first_busno),		    PCI_FUNC(hose->first_busno), bar, bar_response);	}	/* end work arround */#ifdef DEBUG	printk("PCI bridge regs after fixup \n");	for (i = 0; i <= 3; i++) {		printk(" pmm%dma\t0x%x\n", i, in_le32(&(pcip->pmm[i].ma)));		printk(" pmm%dma\t0x%x\n", i, in_le32(&(pcip->pmm[i].la)));		printk(" pmm%dma\t0x%x\n", i, in_le32(&(pcip->pmm[i].pcila)));		printk(" pmm%dma\t0x%x\n", i, in_le32(&(pcip->pmm[i].pciha)));	}	printk(" ptm1ms\t0x%x\n", in_le32(&(pcip->ptm1ms)));	printk(" ptm1la\t0x%x\n", in_le32(&(pcip->ptm1la)));	printk(" ptm2ms\t0x%x\n", in_le32(&(pcip->ptm2ms)));	printk(" ptm2la\t0x%x\n", in_le32(&(pcip->ptm2la)));#endif}void __initboard_io_mapping(void){	ep405_bcsr = ioremap(EP405_BCSR_PADDR, EP405_BCSR_SIZE);	ep405_nvram = ioremap(EP405_NVRAM_PADDR, EP405_NVRAM_SIZE);}void __initboard_setup_irq(void){}void __initboard_init(void){#ifdef CONFIG_PPC_RTC	ppc_md.time_init = todc_time_init;	ppc_md.set_rtc_time = todc_set_rtc_time;	ppc_md.get_rtc_time = todc_get_rtc_time;	ppc_md.nvram_read_val = todc_direct_read_val;	ppc_md.nvram_write_val = todc_direct_write_val;#endif}

⌨️ 快捷键说明

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