blob: 4df7f0e24222337d83bb003fe60cca32923a1d75 [file] [log] [blame]
wdenkdb2f721f2003-03-06 00:58:30 +00001/*
2 * (C) Copyright 2003
3 * EMK Elektronik GmbH <www.emk-elektronik.de>
4 * Reinhard Meyer <r.meyer@emk-elektronik.de>
5 *
6 * Board specific routines for the TOP860
7 *
8 * - initialisation
9 * - interface to VPD data (mac address, clock speeds)
10 * - memory controller
11 * - serial io initialisation
12 * - ethernet io initialisation
13 *
14 * -----------------------------------------------------------------
15 * See file CREDITS for list of people who contributed to this
16 * project.
17 *
18 * This program is free software; you can redistribute it and/or
19 * modify it under the terms of the GNU General Public License as
20 * published by the Free Software Foundation; either version 2 of
21 * the License, or (at your option) any later version.
22 *
23 * This program is distributed in the hope that it will be useful,
24 * but WITHOUT ANY WARRANTY; without even the implied warranty of
25 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
26 * GNU General Public License for more details.
27 *
28 * You should have received a copy of the GNU General Public License
29 * along with this program; if not, write to the Free Software
30 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
31 * MA 02111-1307 USA
32 */
33
34#include <common.h>
35#include <commproc.h>
36#include <mpc8xx.h>
Wolfgang Denkf008b172011-11-29 22:17:57 +000037#include <asm/io.h>
wdenkdb2f721f2003-03-06 00:58:30 +000038
wdenk8bde7f72003-06-27 21:31:46 +000039/*****************************************************************************
40 * UPM table for 60ns EDO RAM at 25 MHz bus/external clock
41 *****************************************************************************/
wdenkdb2f721f2003-03-06 00:58:30 +000042static const uint edo_60ns_25MHz_tbl[] = {
wdenk8bde7f72003-06-27 21:31:46 +000043
44/* single read (offset 0x00 in upm ram) */
45 0x0ff3fc04,0x08f3fc04,0x00f3fc04,0x00f3fc00,
46 0x33f7fc07,0xfffffc05,0xfffffc05,0xfffffc05,
47/* burst read (offset 0x08 in upm ram) */
48 0x0ff3fc04,0x08f3fc04,0x00f3fc0c,0x0ff3fc40,
49 0x0cf3fc04,0x03f3fc48,0x0cf3fc04,0x03f3fc48,
50 0x0cf3fc04,0x03f3fc00,0x3ff7fc07,0xfffffc05,
51 0xfffffc05,0xfffffc05,0xfffffc05,0xfffffc05,
52/* single write (offset 0x18 in upm ram) */
53 0x0ffffc04,0x08fffc04,0x30fffc00,0xf1fffc07,
54 0xfffffc05,0xfffffc05,0xfffffc05,0xfffffc05,
55/* burst write (offset 0x20 in upm ram) */
56 0x0ffffc04,0x08fffc00,0x00fffc04,0x03fffc4c,
57 0x00fffc00,0x07fffc4c,0x00fffc00,0x0ffffc4c,
58 0x00fffc00,0x3ffffc07,0xfffffc05,0xfffffc05,
59 0xfffffc05,0xfffffc05,0xfffffc05,0xfffffc05,
60/* refresh (offset 0x30 in upm ram) */
61 0xc0fffc04,0x07fffc04,0x0ffffc04,0x0ffffc04,
62 0xfffffc05,0xfffffc05,0xfffffc05,0xfffffc05,
63 0xfffffc05,0xfffffc05,0xfffffc05,0xfffffc05,
64/* exception (offset 0x3C in upm ram) */
65 0xfffffc07,0xfffffc03,0xfffffc05,0xfffffc05,
wdenkdb2f721f2003-03-06 00:58:30 +000066};
67
wdenk8bde7f72003-06-27 21:31:46 +000068/*****************************************************************************
69 * Print Board Identity
70 *****************************************************************************/
wdenkdb2f721f2003-03-06 00:58:30 +000071int checkboard (void)
72{
73 puts ("Board:"CONFIG_IDENT_STRING"\n");
74 return (0);
75}
76
wdenk8bde7f72003-06-27 21:31:46 +000077/*****************************************************************************
78 * Initialize DRAM controller
79 *****************************************************************************/
Becky Bruce9973e3c2008-06-09 16:03:40 -050080phys_size_t initdram (int board_type)
wdenkdb2f721f2003-03-06 00:58:30 +000081{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020082 volatile immap_t *immap = (immap_t *) CONFIG_SYS_IMMR;
wdenkdb2f721f2003-03-06 00:58:30 +000083 volatile memctl8xx_t *memctl = &immap->im_memctl;
84
85 /*
86 * Only initialize memory controller when running from FLASH.
87 * When running from RAM, don't touch it.
88 */
wdenk8bde7f72003-06-27 21:31:46 +000089 if ((ulong) initdram & 0xff000000) {
90 volatile uint *addr1, *addr2;
Wolfgang Denkf008b172011-11-29 22:17:57 +000091 uint i;
wdenkdb2f721f2003-03-06 00:58:30 +000092
wdenk8bde7f72003-06-27 21:31:46 +000093 upmconfig (UPMA, (uint *) edo_60ns_25MHz_tbl,
94 sizeof (edo_60ns_25MHz_tbl) / sizeof (uint));
wdenkdb2f721f2003-03-06 00:58:30 +000095 memctl->memc_mptpr = 0x0200;
96 memctl->memc_mamr = 0x0ca20330;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020097 memctl->memc_or2 = -CONFIG_SYS_DRAM_MAX | OR_CSNT_SAM;
98 memctl->memc_br2 = CONFIG_SYS_DRAM_BASE | BR_MS_UPMA | BR_V;
wdenk8bde7f72003-06-27 21:31:46 +000099 /*
100 * Do 8 read accesses to DRAM
101 */
102 addr1 = (volatile uint *) 0;
103 addr2 = (volatile uint *) 0x00400000;
Wolfgang Denkf008b172011-11-29 22:17:57 +0000104 for (i = 0; i < 8; i++)
105 in_be32(addr1);
wdenk8bde7f72003-06-27 21:31:46 +0000106
107 /*
108 * Now check whether we got 4MB or 16MB populated
109 */
110 addr1[0] = 0x12345678;
111 addr1[1] = 0x9abcdef0;
112 addr2[0] = 0xfeedc0de;
113 addr2[1] = 0x47110815;
114 if (addr1[0] == 0xfeedc0de && addr1[1] == 0x47110815) {
115 /* only 4MB populated */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200116 memctl->memc_or2 = -(CONFIG_SYS_DRAM_MAX / 4) | OR_CSNT_SAM;
wdenk8bde7f72003-06-27 21:31:46 +0000117 }
118 }
119
wdenkdb2f721f2003-03-06 00:58:30 +0000120 return -(memctl->memc_or2 & 0xffff0000);
121}
wdenk8bde7f72003-06-27 21:31:46 +0000122
123/*****************************************************************************
wdenk63e73c92004-02-23 22:22:28 +0000124 * prepare for FLASH detection
125 *****************************************************************************/
126void flash_preinit(void)
127{
128}
129
130/*****************************************************************************
131 * finalize FLASH setup
132 *****************************************************************************/
133void flash_afterinit(uint bank, ulong start, ulong size)
134{
135}
136
137/*****************************************************************************
wdenk8bde7f72003-06-27 21:31:46 +0000138 * otherinits after RAM is there and we are relocated to RAM
139 * note: though this is an int function, nobody cares for the result!
140 *****************************************************************************/
wdenkdb2f721f2003-03-06 00:58:30 +0000141int misc_init_r (void)
wdenk8bde7f72003-06-27 21:31:46 +0000142{
143 /* read 'factory' part of EEPROM */
wdenk63e73c92004-02-23 22:22:28 +0000144 extern void read_factory_r (void);
145 read_factory_r ();
wdenk8bde7f72003-06-27 21:31:46 +0000146
wdenkdb2f721f2003-03-06 00:58:30 +0000147 return (0);
148}