blob: a7c583cc38744441f8a70948362b3601baf843a5 [file] [log] [blame]
wdenkc6097192002-11-03 00:24:07 +00001/*
2 * (C) Copyright 2001
3 * Rob Taylor, Flying Pig Systems. robt@flyingpig.com.
4 *
5 * (C) Copyright 2001, 2002
6 * Wolfgang Denk, DENX Software Engineering, <wd@denx.de>
7
8 * See file CREDITS for list of people who contributed to this
9 * project.
10 *
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License as
13 * published by the Free Software Foundation; either version 2 of
14 * the License, or (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
24 * MA 02111-1307 USA
25 */
26
27#include <common.h>
28#include <mpc824x.h>
29#include <asm/processor.h>
30#include <pci.h>
31
32#define BOARD_REV_REG 0xFE80002B
33
34int checkboard (void)
35{
36 DECLARE_GLOBAL_DATA_PTR;
37
38 char revision = *(volatile char *)(BOARD_REV_REG);
39 char buf[32];
40
41 puts ("Board: CU824 ");
42 printf("Revision %d ", revision);
43 printf("Local Bus at %s MHz\n", strmhz(buf, gd->bus_clk));
44
45 return 0;
46}
47
48long int initdram(int board_type)
49{
50 int i, cnt;
51 volatile uchar * base = CFG_SDRAM_BASE;
52 volatile ulong * addr;
53 ulong save[32];
54 ulong val, ret = 0;
55
56 for (i=0, cnt=(CFG_MAX_RAM_SIZE / sizeof(long)) >> 1; cnt > 0; cnt >>= 1) {
57 addr = (volatile ulong *)base + cnt;
58 save[i++] = *addr;
59 *addr = ~cnt;
60 }
61
62 addr = (volatile ulong *)base;
63 save[i] = *addr;
64 *addr = 0;
65
66 if (*addr != 0) {
67 *addr = save[i];
68 goto Done;
69 }
70
71 for (cnt = 1; cnt <= CFG_MAX_RAM_SIZE / sizeof(long); cnt <<= 1) {
72 addr = (volatile ulong *)base + cnt;
73 val = *addr;
74 *addr = save[--i];
75 if (val != ~cnt) {
76 ulong new_bank0_end = cnt * sizeof(long) - 1;
77 ulong mear1 = mpc824x_mpc107_getreg(MEAR1);
78 ulong emear1 = mpc824x_mpc107_getreg(EMEAR1);
79 mear1 = (mear1 & 0xFFFFFF00) |
80 ((new_bank0_end & MICR_ADDR_MASK) >> MICR_ADDR_SHIFT);
81 emear1 = (emear1 & 0xFFFFFF00) |
82 ((new_bank0_end & MICR_ADDR_MASK) >> MICR_EADDR_SHIFT);
83 mpc824x_mpc107_setreg(MEAR1, mear1);
84 mpc824x_mpc107_setreg(EMEAR1, emear1);
85
86 ret = cnt * sizeof(long);
87 goto Done;
88 }
89 }
90
91 ret = CFG_MAX_RAM_SIZE;
92Done:
93 return ret;
94}
95
96/*
97 * Initialize PCI Devices, report devices found.
98 */
99#ifndef CONFIG_PCI_PNP
100static struct pci_config_table pci_sandpoint_config_table[] = {
101 { PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID,
102 PCI_BUS(CFG_ETH_DEV_FN), PCI_DEV(CFG_ETH_DEV_FN), PCI_FUNC(CFG_ETH_DEV_FN),
103 pci_cfgfunc_config_device, { CFG_ETH_IOBASE,
104 0,
105 PCI_COMMAND_IO | PCI_COMMAND_MASTER }},
106 { }
107};
108#endif
109
110struct pci_controller hose = {
111#ifndef CONFIG_PCI_PNP
112 config_table: pci_sandpoint_config_table,
113#endif
114};
115
stroesead10dd92003-02-14 11:21:23 +0000116void pci_init_board(void)
wdenkc6097192002-11-03 00:24:07 +0000117{
118 pci_mpc824x_init(&hose);
119}