]> git.ipfire.org Git - people/ms/u-boot.git/blame - board/cu824/cu824.c
Add GPL-2.0+ SPDX-License-Identifier to source files
[people/ms/u-boot.git] / board / cu824 / cu824.c
CommitLineData
c609719b
WD
1/*
2 * (C) Copyright 2001
3 * Rob Taylor, Flying Pig Systems. robt@flyingpig.com.
4 *
d87080b7 5 * (C) Copyright 2001-2006
c609719b
WD
6 * Wolfgang Denk, DENX Software Engineering, <wd@denx.de>
7
1a459660 8 * SPDX-License-Identifier: GPL-2.0+
c609719b
WD
9 */
10
11#include <common.h>
12#include <mpc824x.h>
13#include <asm/processor.h>
14#include <pci.h>
8ca0b3f9 15#include <netdev.h>
c609719b 16
d87080b7
WD
17DECLARE_GLOBAL_DATA_PTR;
18
c609719b
WD
19#define BOARD_REV_REG 0xFE80002B
20
21int checkboard (void)
22{
c609719b
WD
23 char revision = *(volatile char *)(BOARD_REV_REG);
24 char buf[32];
25
26 puts ("Board: CU824 ");
27 printf("Revision %d ", revision);
28 printf("Local Bus at %s MHz\n", strmhz(buf, gd->bus_clk));
29
30 return 0;
31}
32
9973e3c6 33phys_size_t initdram(int board_type)
c609719b 34{
c83bf6a2
WD
35 long size;
36 long new_bank0_end;
37 long mear1;
38 long emear1;
39
6d0f6bcf 40 size = get_ram_size(CONFIG_SYS_SDRAM_BASE, CONFIG_SYS_MAX_RAM_SIZE);
c83bf6a2
WD
41
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);
51
52 return (size);
c609719b
WD
53}
54
55/*
56 * Initialize PCI Devices, report devices found.
57 */
58#ifndef CONFIG_PCI_PNP
59static struct pci_config_table pci_sandpoint_config_table[] = {
3bac3513
WD
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,
62 PCI_ENET0_MEMADDR,
63 PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER }},
64
c609719b
WD
65 { }
66};
67#endif
68
69struct pci_controller hose = {
70#ifndef CONFIG_PCI_PNP
71 config_table: pci_sandpoint_config_table,
72#endif
73};
74
ad10dd9a 75void pci_init_board(void)
c609719b
WD
76{
77 pci_mpc824x_init(&hose);
78}
8ca0b3f9
BW
79
80int board_eth_init(bd_t *bis)
81{
82 return pci_eth_init(bis);
83}