2 * (C) Copyright 2000-2005
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 * SPDX-License-Identifier: GPL-2.0+
9 #include <asm/processor.h>
12 DECLARE_GLOBAL_DATA_PTR;
14 long int spd_sdram(void);
16 int board_early_init_f(void)
18 mtdcr(UIC0SR, 0xFFFFFFFF); /* clear all ints */
19 mtdcr(UIC0ER, 0x00000000); /* disable all ints */
20 mtdcr(UIC0CR, 0x00000010);
21 mtdcr(UIC0PR, 0xFFFF7FF0); /* set int polarities */
22 mtdcr(UIC0TR, 0x00000010); /* set int trigger levels */
23 mtdcr(UIC0SR, 0xFFFFFFFF); /* clear all ints */
26 * Configure CPC0_PCI to enable PerWE as output
27 * and enable the internal PCI arbiter if selected
29 if (in_8((void *)FPGA_REG1) & FPGA_REG1_PCI_INT_ARB)
30 mtdcr(CPC0_PCI, CPC0_PCI_HOST_CFG_EN | CPC0_PCI_ARBIT_EN);
32 mtdcr(CPC0_PCI, CPC0_PCI_HOST_CFG_EN);
38 * Check Board Identity:
43 int i = getenv_f("serial#", buf, sizeof(buf));
45 puts("Board: Bubinga - AMCC PPC405EP Evaluation Board");
56 /* -------------------------------------------------------------------------
57 initdram() reads EEPROM via I2c. EEPROM contains all of
58 the necessary info for SDRAM controller configuration
59 ------------------------------------------------------------------------- */
62 gd->ram_size = spd_sdram();