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

📄 canyonlands.c

📁 uboot200903最新版本的通用uboot
💻 C
📖 第 1 页 / 共 2 页
字号:
}#endif/* *  pci_target_init * *	The bootstrap configuration provides default settings for the pci *	inbound map (PIM). But the bootstrap config choices are limited and *	may not be sufficient for a given board. */#if defined(CONFIG_PCI) && defined(CONFIG_SYS_PCI_TARGET_INIT)void pci_target_init(struct pci_controller * hose ){	/*	 * Disable everything	 */	out_le32((void *)PCIX0_PIM0SA, 0); /* disable */	out_le32((void *)PCIX0_PIM1SA, 0); /* disable */	out_le32((void *)PCIX0_PIM2SA, 0); /* disable */	out_le32((void *)PCIX0_EROMBA, 0); /* disable expansion rom */	/*	 * Map all of SDRAM to PCI address 0x0000_0000. Note that the 440	 * strapping options to not support sizes such as 128/256 MB.	 */	out_le32((void *)PCIX0_PIM0LAL, CONFIG_SYS_SDRAM_BASE);	out_le32((void *)PCIX0_PIM0LAH, 0);	out_le32((void *)PCIX0_PIM0SA, ~(gd->ram_size - 1) | 1);	out_le32((void *)PCIX0_BAR0, 0);	/*	 * Program the board's subsystem id/vendor id	 */	out_le16((void *)PCIX0_SBSYSVID, CONFIG_SYS_PCI_SUBSYS_VENDORID);	out_le16((void *)PCIX0_SBSYSID, CONFIG_SYS_PCI_SUBSYS_DEVICEID);	out_le16((void *)PCIX0_CMD, in16r(PCIX0_CMD) | PCI_COMMAND_MEMORY);}#endif	/* defined(CONFIG_PCI) && defined(CONFIG_SYS_PCI_TARGET_INIT) */#if defined(CONFIG_PCI)/* * is_pci_host * * This routine is called to determine if a pci scan should be * performed. With various hardware environments (especially cPCI and * PPMC) it's insufficient to depend on the state of the arbiter enable * bit in the strap register, or generic host/adapter assumptions. * * Rather than hard-code a bad assumption in the general 440 code, the * 440 pci code requires the board to decide at runtime. * * Return 0 for adapter mode, non-zero for host (monarch) mode. */int is_pci_host(struct pci_controller *hose){	/* Board is always configured as host. */	return (1);}static struct pci_controller pcie_hose[2] = {{0},{0}};void pcie_setup_hoses(int busno){	struct pci_controller *hose;	int i, bus;	int ret = 0;	char *env;	unsigned int delay;	int start;	/*	 * assume we're called after the PCIX hose is initialized, which takes	 * bus ID 0 and therefore start numbering PCIe's from 1.	 */	bus = busno;	/*	 * Canyonlands with SATA enabled has only one PCIe slot	 * (2nd one).	 */	if (gd->board_type == BOARD_CANYONLANDS_SATA)		start = 1;	else		start = 0;	for (i = start; i <= 1; i++) {		if (is_end_point(i))			ret = ppc4xx_init_pcie_endport(i);		else			ret = ppc4xx_init_pcie_rootport(i);		if (ret) {			printf("PCIE%d: initialization as %s failed\n", i,			       is_end_point(i) ? "endpoint" : "root-complex");			continue;		}		hose = &pcie_hose[i];		hose->first_busno = bus;		hose->last_busno = bus;		hose->current_busno = bus;		/* setup mem resource */		pci_set_region(hose->regions + 0,			       CONFIG_SYS_PCIE_MEMBASE + i * CONFIG_SYS_PCIE_MEMSIZE,			       CONFIG_SYS_PCIE_MEMBASE + i * CONFIG_SYS_PCIE_MEMSIZE,			       CONFIG_SYS_PCIE_MEMSIZE,			       PCI_REGION_MEM);		hose->region_count = 1;		pci_register_hose(hose);		if (is_end_point(i)) {			ppc4xx_setup_pcie_endpoint(hose, i);			/*			 * Reson for no scanning is endpoint can not generate			 * upstream configuration accesses.			 */		} else {			ppc4xx_setup_pcie_rootpoint(hose, i);			env = getenv ("pciscandelay");			if (env != NULL) {				delay = simple_strtoul(env, NULL, 10);				if (delay > 5)					printf("Warning, expect noticable delay before "					       "PCIe scan due to 'pciscandelay' value!\n");				mdelay(delay * 1000);			}			/*			 * Config access can only go down stream			 */			hose->last_busno = pci_hose_scan(hose);			bus = hose->last_busno + 1;		}	}}#endif /* CONFIG_PCI */int board_early_init_r (void){	/*	 * Canyonlands has 64MBytes of NOR FLASH (Spansion 29GL512), but the	 * boot EBC mapping only supports a maximum of 16MBytes	 * (4.ff00.0000 - 4.ffff.ffff).	 * To solve this problem, the FLASH has to get remapped to another	 * EBC address which accepts bigger regions:	 *	 * 0xfc00.0000 -> 4.cc00.0000	 */	/* Remap the NOR FLASH to 0xcc00.0000 ... 0xcfff.ffff */#if defined(CONFIG_NAND_U_BOOT) || defined(CONFIG_NAND_SPL)	mtebc(pb3cr, CONFIG_SYS_FLASH_BASE_PHYS_L | 0xda000);#else	mtebc(pb0cr, CONFIG_SYS_FLASH_BASE_PHYS_L | 0xda000);#endif	/* Remove TLB entry of boot EBC mapping */	remove_tlb(CONFIG_SYS_BOOT_BASE_ADDR, 16 << 20);	/* Add TLB entry for 0xfc00.0000 -> 0x4.cc00.0000 */	program_tlb(CONFIG_SYS_FLASH_BASE_PHYS, CONFIG_SYS_FLASH_BASE, CONFIG_SYS_FLASH_SIZE,		    TLB_WORD2_I_ENABLE);	/*	 * Now accessing of the whole 64Mbytes of NOR FLASH at virtual address	 * 0xfc00.0000 is possible	 */	/*	 * Clear potential errors resulting from auto-calibration.	 * If not done, then we could get an interrupt later on when	 * exceptions are enabled.	 */	set_mcsr(get_mcsr());	return 0;}#if !defined(CONFIG_ARCHES)int misc_init_r(void){	u32 sdr0_srst1 = 0;	u32 eth_cfg;	u32 pvr = get_pvr();	u8 val;	/*	 * Set EMAC mode/configuration (GMII, SGMII, RGMII...).	 * This is board specific, so let's do it here.	 */	mfsdr(SDR0_ETH_CFG, eth_cfg);	/* disable SGMII mode */	eth_cfg &= ~(SDR0_ETH_CFG_SGMII2_ENABLE |		     SDR0_ETH_CFG_SGMII1_ENABLE |		     SDR0_ETH_CFG_SGMII0_ENABLE);	/* Set the for 2 RGMII mode */	/* GMC0 EMAC4_0, GMC0 EMAC4_1, RGMII Bridge 0 */	eth_cfg &= ~SDR0_ETH_CFG_GMC0_BRIDGE_SEL;	if ((pvr == PVR_460EX_RA) || (pvr == PVR_460EX_SE_RA))		eth_cfg |= SDR0_ETH_CFG_GMC1_BRIDGE_SEL;	else		eth_cfg &= ~SDR0_ETH_CFG_GMC1_BRIDGE_SEL;	mtsdr(SDR0_ETH_CFG, eth_cfg);	/*	 * The AHB Bridge core is held in reset after power-on or reset	 * so enable it now	 */	mfsdr(SDR0_SRST1, sdr0_srst1);	sdr0_srst1 &= ~SDR0_SRST1_AHB;	mtsdr(SDR0_SRST1, sdr0_srst1);	/*	 * RTC/M41T62:	 * Disable square wave output: Batterie will be drained	 * quickly, when this output is not disabled	 */	val = i2c_reg_read(CONFIG_SYS_I2C_RTC_ADDR, 0xa);	val &= ~0x40;	i2c_reg_write(CONFIG_SYS_I2C_RTC_ADDR, 0xa, val);	return 0;}#else	/* defined(CONFIG_ARCHES) */int misc_init_r(void){	u32 eth_cfg = 0;	u32 eth_pll;	u32 reg;	/*	 * Set EMAC mode/configuration (GMII, SGMII, RGMII...).	 * This is board specific, so let's do it here.	 */	/* enable SGMII mode */	eth_cfg |= (SDR0_ETH_CFG_SGMII0_ENABLE |			SDR0_ETH_CFG_SGMII1_ENABLE |			SDR0_ETH_CFG_SGMII2_ENABLE);	/* Set EMAC for MDIO */	eth_cfg |= SDR0_ETH_CFG_MDIO_SEL_EMAC0;	/* bypass the TAHOE0/TAHOE1 cores for U-Boot */	eth_cfg |= (SDR0_ETH_CFG_TAHOE0_BYPASS | SDR0_ETH_CFG_TAHOE1_BYPASS);	mtsdr(SDR0_ETH_CFG, eth_cfg);	/* reset all SGMII interfaces */	mfsdr(SDR0_SRST1,   reg);	reg |= (SDR0_SRST1_SGMII0 | SDR0_SRST1_SGMII1 | SDR0_SRST1_SGMII2);	mtsdr(SDR0_SRST1, reg);	mtsdr(SDR0_ETH_STS, 0xFFFFFFFF);	mtsdr(SDR0_SRST1,   0x00000000);	do {		mfsdr(SDR0_ETH_PLL, eth_pll);	} while (!(eth_pll & SDR0_ETH_PLL_PLLLOCK));	return 0;}#endif	/* !defined(CONFIG_ARCHES) */#if defined(CONFIG_OF_LIBFDT) && defined(CONFIG_OF_BOARD_SETUP)void ft_board_setup(void *blob, bd_t *bd){	u32 val[4];	int rc;	ft_cpu_setup(blob, bd);	/* Fixup NOR mapping */	val[0] = 0;				/* chip select number */	val[1] = 0;				/* always 0 */	val[2] = CONFIG_SYS_FLASH_BASE_PHYS_L;		/* we fixed up this address */	val[3] = gd->bd->bi_flashsize;	rc = fdt_find_and_setprop(blob, "/plb/opb/ebc", "ranges",				  val, sizeof(val), 1);	if (rc) {		printf("Unable to update property NOR mapping, err=%s\n",		       fdt_strerror(rc));	}	if (gd->board_type == BOARD_CANYONLANDS_SATA) {		/*		 * When SATA is selected we need to disable the first PCIe		 * node in the device tree, so that Linux doesn't initialize		 * it.		 */		fdt_find_and_setprop(blob, "/plb/pciex@d00000000", "status",				     "disabled", sizeof("disabled"), 1);	}	if (gd->board_type == BOARD_CANYONLANDS_PCIE) {		/*		 * When PCIe is selected we need to disable the SATA		 * node in the device tree, so that Linux doesn't initialize		 * it.		 */		fdt_find_and_setprop(blob, "/plb/sata@bffd1000", "status",				     "disabled", sizeof("disabled"), 1);	}}#endif /* defined(CONFIG_OF_LIBFDT) && defined(CONFIG_OF_BOARD_SETUP) */

⌨️ 快捷键说明

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