2004-12-18 22:35:43 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2000-2004
|
|
|
|
* Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
|
|
*
|
|
|
|
* See file CREDITS for list of people who contributed to this
|
|
|
|
* project.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2 of
|
|
|
|
* the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
|
|
|
* MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
#define DEBUG
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <common.h>
|
|
|
|
#include <mpc8xx.h>
|
|
|
|
#include <i2c.h>
|
2005-07-05 11:35:27 +00:00
|
|
|
#include <miiphy.h>
|
2004-12-18 22:35:43 +00:00
|
|
|
|
2005-10-28 20:30:33 +00:00
|
|
|
int fec8xx_miiphy_write(char *devname, unsigned char addr,
|
|
|
|
unsigned char reg, unsigned short value);
|
2004-12-18 22:35:43 +00:00
|
|
|
|
|
|
|
/*********************************************************************/
|
|
|
|
/* UPMA Pre Initilization Table by WV (Miron MT48LC16M16A2-7E B) */
|
|
|
|
/*********************************************************************/
|
|
|
|
const uint sdram_init_upm_table[] = {
|
|
|
|
/* SDRAM Initialisation Sequence (offset 0 in UPMA RAM) WV */
|
|
|
|
/* NOP - Precharge - AutoRefr - NOP - NOP */
|
|
|
|
/* NOP - AutoRefr - NOP */
|
|
|
|
/* NOP - NOP - LoadModeR - NOP - Active */
|
|
|
|
/* Position of Single Read */
|
|
|
|
0x0ffffc04, 0x0ff77c04, 0x0ff5fc04, 0x0ffffc04, 0x0ffffc04,
|
|
|
|
0x0ffffc04, 0x0ff5fc04, 0x0ffffc04,
|
|
|
|
|
|
|
|
/* Burst Read. (offset 8 in UPMA RAM) */
|
|
|
|
/* Cycle lent for Initialisation WV */
|
|
|
|
0x0ffffc04, 0x0ffffc34, 0x0f057c34, 0x0ffffc30, 0x1ff7fc05,
|
|
|
|
0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF,
|
|
|
|
0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF,
|
|
|
|
|
|
|
|
/* Single Write. (offset 18 in UPMA RAM) */
|
|
|
|
0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF,
|
|
|
|
0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF,
|
|
|
|
|
|
|
|
/* Burst Write. (offset 20 in UPMA RAM) */
|
|
|
|
0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF,
|
|
|
|
0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF,
|
|
|
|
0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF,
|
|
|
|
|
|
|
|
/* Refresh (offset 30 in UPMA RAM) */
|
|
|
|
0x0FF77C04, 0x0FFFFC04, 0x0FF5FC84, 0x0FFFFC04, 0x0FFFFC04,
|
|
|
|
0x0FFFFC84, 0x1FFFFC05, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF,
|
|
|
|
0xFFFFFFFF, 0xFFFFFFFF,
|
|
|
|
|
|
|
|
/* Exception. (offset 3c in UPMA RAM) */
|
|
|
|
0x7FFFFC05, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF,
|
|
|
|
};
|
|
|
|
|
|
|
|
/*********************************************************************/
|
|
|
|
/* UPMA initilization table. */
|
|
|
|
/*********************************************************************/
|
|
|
|
const uint sdram_upm_table[] = {
|
|
|
|
/* single read. (offset 0 in UPMA RAM) */
|
|
|
|
0x0F07FC04, 0x0FFFFC04, 0x00BDFC04, 0x0FF77C00, 0x1FFFFC05,
|
|
|
|
0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF, /* 0x05-0x07 new WV */
|
|
|
|
|
|
|
|
/* Burst Read. (offset 8 in UPMA RAM) */
|
|
|
|
0x0F07FC04, 0x0FFFFC04, 0x00BDFC04, 0x00FFFC00, 0x00FFFC00,
|
|
|
|
0x00FFFC00, 0x0FF77C00, 0x1FFFFC05, 0xFFFFFFFF, 0xFFFFFFFF,
|
|
|
|
0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF,
|
|
|
|
|
|
|
|
/* Single Write. (offset 18 in UPMA RAM) */
|
|
|
|
0x0F07FC04, 0x0FFFFC00, 0x00BD7C04, 0x0FFFFC04, 0x0FF77C04,
|
|
|
|
0x1FFFFC05, 0xFFFFFFFF, 0xFFFFFFFF,
|
|
|
|
|
|
|
|
/* Burst Write. (offset 20 in UPMA RAM) */
|
|
|
|
0x0F07FC04, 0x0FFFFC00, 0x00BD7C00, 0x00FFFC00, 0x00FFFC00,
|
|
|
|
0x00FFFC04, 0x0FFFFC04, 0x0FF77C04, 0x1FFFFC05, 0xFFFFFFFF,
|
|
|
|
0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF,
|
|
|
|
|
|
|
|
/* Refresh (offset 30 in UPMA RAM) */
|
|
|
|
0x0FF77C04, 0x0FFFFC04, 0x0FF5FC84, 0x0FFFFC04, 0x0FFFFC04,
|
|
|
|
0x0FFFFC84, 0x1FFFFC05, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF,
|
|
|
|
0xFFFFFFFF, 0xFFFFFFFF,
|
|
|
|
|
|
|
|
/* Exception. (offset 3c in UPMA RAM) */
|
|
|
|
0x7FFFFC05, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF, /* 0x3C new WV */
|
|
|
|
};
|
|
|
|
|
|
|
|
/*********************************************************************/
|
|
|
|
/* UPMB initilization table. */
|
|
|
|
/*********************************************************************/
|
|
|
|
const uint mpm_upm_table[] = {
|
|
|
|
/* single read. (offset 0 in upm RAM) */
|
|
|
|
0x8FF00004, 0x0FF00004, 0x0FF81004, 0x1FF00001,
|
|
|
|
0x1FF00001, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF,
|
|
|
|
|
|
|
|
/* burst read. (Offset 8 in upm RAM) */
|
|
|
|
0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF,
|
|
|
|
0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF,
|
|
|
|
0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF,
|
|
|
|
0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF,
|
|
|
|
|
|
|
|
/* single write. (Offset 0x18 in upm RAM) */
|
|
|
|
0x8FF00004, 0x0FF00004, 0x0FF81004, 0x0FF00004,
|
|
|
|
0x0FF00004, 0x1FF00001, 0xFFFFFFFF, 0xFFFFFFFF,
|
|
|
|
|
|
|
|
/* burst write. (Offset 0x20 in upm RAM) */
|
|
|
|
0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF,
|
|
|
|
0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF,
|
|
|
|
0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF,
|
|
|
|
0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF,
|
|
|
|
|
|
|
|
/* Refresh cycle, offset 0x30 */
|
|
|
|
0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF,
|
|
|
|
0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF,
|
|
|
|
0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF,
|
|
|
|
|
|
|
|
/* Exception, 0ffset 0x3C */
|
|
|
|
0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF,
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
int board_switch(void)
|
|
|
|
{
|
|
|
|
volatile pcmconf8xx_t *pcmp;
|
|
|
|
|
2008-10-16 13:01:15 +00:00
|
|
|
pcmp = (pcmconf8xx_t *)(&(((immap_t *)CONFIG_SYS_IMMR)->im_pcmcia));
|
2004-12-18 22:35:43 +00:00
|
|
|
|
|
|
|
return ((pcmp->pcmc_pipr >> 24) & 0xf);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Check Board Identity:
|
|
|
|
*/
|
|
|
|
int checkboard (void)
|
|
|
|
{
|
2005-10-13 14:45:02 +00:00
|
|
|
char str[64];
|
Rename getenv_r() into getenv_f()
While running from flash, i. e. before relocation, we have only a
limited C runtime environment without writable data segment. In this
phase, some configurations (for example with environment in EEPROM)
must not use the normal getenv(), but a special function. This
function had been called getenv_r(), with the idea that the "_r"
suffix would mean the same as in the _r_eentrant versions of some of
the C library functions (for example getdate vs. getdate_r, getgrent
vs. getgrent_r, etc.).
Unfortunately this was a misleading name, as in U-Boot the "_r"
generally means "running from RAM", i. e. _after_ relocation.
To avoid confusion, rename into getenv_f() [as "running from flash"]
Signed-off-by: Wolfgang Denk <wd@denx.de>
Acked-by: Detlev Zundel <dzu@denx.de>
2010-07-24 19:55:43 +00:00
|
|
|
int i = getenv_f("serial#", str, sizeof(str));
|
2004-12-18 22:35:43 +00:00
|
|
|
|
|
|
|
puts ("Board: ");
|
|
|
|
|
|
|
|
if (i == -1) {
|
|
|
|
puts ("### No HW ID - assuming UC100");
|
|
|
|
} else {
|
|
|
|
puts(str);
|
|
|
|
}
|
|
|
|
|
|
|
|
printf (" (SWITCH=%1X)\n", board_switch());
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Initialize SDRAM
|
|
|
|
*/
|
2008-06-09 21:03:40 +00:00
|
|
|
phys_size_t initdram (int board_type)
|
2004-12-18 22:35:43 +00:00
|
|
|
{
|
2008-10-16 13:01:15 +00:00
|
|
|
volatile immap_t *immap = (immap_t *) CONFIG_SYS_IMMR;
|
2004-12-18 22:35:43 +00:00
|
|
|
volatile memctl8xx_t *memctl = &immap->im_memctl;
|
|
|
|
|
|
|
|
/*---------------------------------------------------------------------*/
|
|
|
|
/* Initialize the UPMA/UPMB registers with the appropriate table. */
|
|
|
|
/*---------------------------------------------------------------------*/
|
|
|
|
upmconfig (UPMA, (uint *) sdram_init_upm_table,
|
|
|
|
sizeof (sdram_init_upm_table) / sizeof (uint));
|
|
|
|
upmconfig (UPMB, (uint *) mpm_upm_table,
|
|
|
|
sizeof (mpm_upm_table) / sizeof (uint));
|
|
|
|
|
|
|
|
/*---------------------------------------------------------------------*/
|
|
|
|
/* Memory Periodic Timer Prescaler: divide by 16 */
|
|
|
|
/*---------------------------------------------------------------------*/
|
|
|
|
memctl->memc_mptpr = 0x0200; /* Divide by 32 WV */
|
|
|
|
|
2008-10-16 13:01:15 +00:00
|
|
|
memctl->memc_mamr = CONFIG_SYS_MAMR_VAL & 0xFF7FFFFF; /* Bit 8 := "0" Kein Refresh WV */
|
|
|
|
memctl->memc_mbmr = CONFIG_SYS_MBMR_VAL;
|
2004-12-18 22:35:43 +00:00
|
|
|
|
|
|
|
/*---------------------------------------------------------------------*/
|
|
|
|
/* Initialize the Memory Controller registers, MPTPR, Chip Select 1 */
|
|
|
|
/* for SDRAM */
|
|
|
|
/* */
|
|
|
|
/* NOTE: The refresh rate in MAMR reg is set according to the lowest */
|
|
|
|
/* clock rate (16.67MHz) to allow proper operation for all ADS */
|
|
|
|
/* clock frequencies. */
|
|
|
|
/*---------------------------------------------------------------------*/
|
2008-10-16 13:01:15 +00:00
|
|
|
memctl->memc_or1 = CONFIG_SYS_OR1_PRELIM;
|
|
|
|
memctl->memc_br1 = CONFIG_SYS_BR1_PRELIM;
|
2004-12-18 22:35:43 +00:00
|
|
|
|
|
|
|
/*-------------------------------------------------------------------*/
|
|
|
|
/* Wait at least 200 usec for DRAM to stabilize, this magic number */
|
|
|
|
/* obtained from the init code. */
|
|
|
|
/*-------------------------------------------------------------------*/
|
|
|
|
udelay(200);
|
|
|
|
|
|
|
|
memctl->memc_mamr = (memctl->memc_mamr | 0x04) & ~0x08;
|
|
|
|
|
2008-10-16 13:01:15 +00:00
|
|
|
memctl->memc_br1 = CONFIG_SYS_BR1_PRELIM;
|
|
|
|
memctl->memc_or1 = CONFIG_SYS_OR1_PRELIM;
|
2004-12-18 22:35:43 +00:00
|
|
|
|
|
|
|
/*---------------------------------------------------------------------*/
|
|
|
|
/* run MRS command in location 5-8 of UPMB. */
|
|
|
|
/*---------------------------------------------------------------------*/
|
|
|
|
memctl->memc_mar = 0x88;
|
|
|
|
/* RUN UPMA on CS1 1-time from UPMA addr 0x05 */
|
|
|
|
|
|
|
|
memctl->memc_mcr = 0x80002100;
|
|
|
|
/* RUN UPMA on CS1 1-time from UPMA addr 0x00 WV */
|
|
|
|
|
|
|
|
udelay(200);
|
|
|
|
|
|
|
|
/*---------------------------------------------------------------------*/
|
|
|
|
/* Initialisation for normal access WV */
|
|
|
|
/*---------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
/*---------------------------------------------------------------------*/
|
|
|
|
/* Initialize the UPMA register with the appropriate table. */
|
|
|
|
/*---------------------------------------------------------------------*/
|
|
|
|
upmconfig (UPMA, (uint *) sdram_upm_table,
|
|
|
|
sizeof (sdram_upm_table) / sizeof (uint));
|
|
|
|
|
|
|
|
/*---------------------------------------------------------------------*/
|
|
|
|
/* rerstore MBMR value (4-beat refresh burst.) */
|
|
|
|
/*---------------------------------------------------------------------*/
|
2008-10-16 13:01:15 +00:00
|
|
|
memctl->memc_mamr = CONFIG_SYS_MAMR_VAL | 0x00800000; /* Bit 8 := "1" Refresh Enable WV */
|
2004-12-18 22:35:43 +00:00
|
|
|
|
|
|
|
udelay(200);
|
|
|
|
|
|
|
|
return (64 * 1024 * 1024); /* fixed setup for 64MBytes! */
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int misc_init_r (void)
|
|
|
|
{
|
|
|
|
uchar val;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Make sure that RTC has clock output enabled (triggers watchdog!)
|
|
|
|
*/
|
2008-10-16 13:01:15 +00:00
|
|
|
val = i2c_reg_read (CONFIG_SYS_I2C_RTC_ADDR, 0x0D);
|
2004-12-18 22:35:43 +00:00
|
|
|
val |= 0x80;
|
2008-10-16 13:01:15 +00:00
|
|
|
i2c_reg_write (CONFIG_SYS_I2C_RTC_ADDR, 0x0D, val);
|
2004-12-18 22:35:43 +00:00
|
|
|
|
2005-07-05 11:35:27 +00:00
|
|
|
/*
|
|
|
|
* Configure PHY to setup LED's correctly and use 100MBit, FD
|
|
|
|
*/
|
|
|
|
mii_init();
|
|
|
|
|
2005-10-28 20:30:33 +00:00
|
|
|
/* disable auto-negotiation, 100mbit, full-duplex */
|
2010-12-23 20:40:12 +00:00
|
|
|
fec8xx_miiphy_write(NULL, 0, MII_BMCR, 0x2100);
|
2005-10-28 20:30:33 +00:00
|
|
|
|
|
|
|
/* set LED's to Link, Transmit, Receive */
|
2010-12-23 20:40:12 +00:00
|
|
|
fec8xx_miiphy_write(NULL, 0, MII_NWAYTEST, 0x4122);
|
2005-07-05 11:35:27 +00:00
|
|
|
|
2004-12-18 22:35:43 +00:00
|
|
|
return 0;
|
|
|
|
}
|