3 * Rob Taylor, Flying Pig Systems. robt@flyingpig.com.
5 * (C) Copyright 2001-2006
6 * Wolfgang Denk, DENX Software Engineering, <wd@denx.de>
8 * SPDX-License-Identifier: GPL-2.0+
13 #include <asm/processor.h>
17 DECLARE_GLOBAL_DATA_PTR;
19 #define BOARD_REV_REG 0xFE80002B
23 char revision = *(volatile char *)(BOARD_REV_REG);
26 puts ("Board: CU824 ");
27 printf("Revision %d ", revision);
28 printf("Local Bus at %s MHz\n", strmhz(buf, gd->bus_clk));
33 phys_size_t initdram(int board_type)
40 size = get_ram_size(CONFIG_SYS_SDRAM_BASE, CONFIG_SYS_MAX_RAM_SIZE);
42 new_bank0_end = size - 1;
43 mear1 = mpc824x_mpc107_getreg(MEAR1);
44 emear1 = mpc824x_mpc107_getreg(EMEAR1);
45 mear1 = (mear1 & 0xFFFFFF00) |
46 ((new_bank0_end & MICR_ADDR_MASK) >> MICR_ADDR_SHIFT);
47 emear1 = (emear1 & 0xFFFFFF00) |
48 ((new_bank0_end & MICR_ADDR_MASK) >> MICR_EADDR_SHIFT);
49 mpc824x_mpc107_setreg(MEAR1, mear1);
50 mpc824x_mpc107_setreg(EMEAR1, emear1);
56 * Initialize PCI Devices, report devices found.
58 #ifndef CONFIG_PCI_PNP
59 static struct pci_config_table pci_sandpoint_config_table[] = {
60 { PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, 0x0f, PCI_ANY_ID,
61 pci_cfgfunc_config_device, { PCI_ENET0_IOADDR,
63 PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER }},
69 struct pci_controller hose = {
70 #ifndef CONFIG_PCI_PNP
71 config_table: pci_sandpoint_config_table,
75 void pci_init_board(void)
77 pci_mpc824x_init(&hose);
80 int board_eth_init(bd_t *bis)
82 return pci_eth_init(bis);