wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1 | /* |
| 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 | |
| 34 | int 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 | |
| 48 | long 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; |
| 92 | Done: |
| 93 | return ret; |
| 94 | } |
| 95 | |
| 96 | /* |
| 97 | * Initialize PCI Devices, report devices found. |
| 98 | */ |
| 99 | #ifndef CONFIG_PCI_PNP |
| 100 | static struct pci_config_table pci_sandpoint_config_table[] = { |
wdenk | ef5fe75 | 2003-03-12 10:41:04 +0000 | [diff] [blame] | 101 | { PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, 0x0f, PCI_ANY_ID, |
| 102 | pci_cfgfunc_config_device, { PCI_ENET0_IOADDR, |
| 103 | PCI_ENET0_MEMADDR, |
| 104 | PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER }}, |
| 105 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 106 | { } |
| 107 | }; |
| 108 | #endif |
| 109 | |
| 110 | struct pci_controller hose = { |
| 111 | #ifndef CONFIG_PCI_PNP |
| 112 | config_table: pci_sandpoint_config_table, |
| 113 | #endif |
| 114 | }; |
| 115 | |
stroese | f5dd410 | 2003-02-14 11:21:23 +0000 | [diff] [blame] | 116 | void pci_init_board(void) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 117 | { |
| 118 | pci_mpc824x_init(&hose); |
| 119 | } |