2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2005-07-28 15:08:46 +00:00
|
|
|
/*
|
2007-09-18 04:36:11 +00:00
|
|
|
* Copyright (C) 2004-2007 Freescale Semiconductor, Inc.
|
2005-07-28 15:08:46 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* CPU specific code for the MPC83xx family.
|
|
|
|
*
|
|
|
|
* Derived from the MPC8260 and MPC85xx.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
|
|
|
#include <watchdog.h>
|
|
|
|
#include <command.h>
|
|
|
|
#include <mpc83xx.h>
|
|
|
|
#include <asm/processor.h>
|
2018-03-04 16:20:11 +00:00
|
|
|
#include <linux/libfdt.h>
|
2008-08-31 21:33:26 +00:00
|
|
|
#include <tsec.h>
|
2008-10-23 06:32:48 +00:00
|
|
|
#include <netdev.h>
|
2008-10-30 21:50:14 +00:00
|
|
|
#include <fsl_esdhc.h>
|
2019-01-21 08:17:25 +00:00
|
|
|
#if defined(CONFIG_BOOTCOUNT_LIMIT) && !defined(CONFIG_ARCH_MPC831X)
|
2014-06-03 08:27:07 +00:00
|
|
|
#include <linux/immap_qe.h>
|
2009-02-24 10:30:51 +00:00
|
|
|
#include <asm/io.h>
|
|
|
|
#endif
|
2005-07-28 15:08:46 +00:00
|
|
|
|
2006-03-31 16:32:53 +00:00
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
|
|
|
|
2018-08-06 08:23:45 +00:00
|
|
|
#ifndef CONFIG_CPU_MPC83XX
|
2005-07-28 15:08:46 +00:00
|
|
|
int checkcpu(void)
|
|
|
|
{
|
2006-11-04 01:33:44 +00:00
|
|
|
volatile immap_t *immr;
|
2005-07-28 15:08:46 +00:00
|
|
|
ulong clock = gd->cpu_clk;
|
|
|
|
u32 pvr = get_pvr();
|
2006-11-04 01:33:44 +00:00
|
|
|
u32 spridr;
|
2005-07-28 15:08:46 +00:00
|
|
|
char buf[32];
|
2017-03-28 16:27:27 +00:00
|
|
|
int ret;
|
2008-03-28 15:19:07 +00:00
|
|
|
int i;
|
|
|
|
|
|
|
|
const struct cpu_type {
|
|
|
|
char name[15];
|
|
|
|
u32 partid;
|
|
|
|
} cpu_type_list [] = {
|
2010-06-28 12:44:33 +00:00
|
|
|
CPU_TYPE_ENTRY(8308),
|
2012-10-10 22:13:08 +00:00
|
|
|
CPU_TYPE_ENTRY(8309),
|
2008-03-28 15:19:07 +00:00
|
|
|
CPU_TYPE_ENTRY(8311),
|
|
|
|
CPU_TYPE_ENTRY(8313),
|
|
|
|
CPU_TYPE_ENTRY(8314),
|
|
|
|
CPU_TYPE_ENTRY(8315),
|
|
|
|
CPU_TYPE_ENTRY(8321),
|
|
|
|
CPU_TYPE_ENTRY(8323),
|
|
|
|
CPU_TYPE_ENTRY(8343),
|
|
|
|
CPU_TYPE_ENTRY(8347_TBGA_),
|
|
|
|
CPU_TYPE_ENTRY(8347_PBGA_),
|
|
|
|
CPU_TYPE_ENTRY(8349),
|
|
|
|
CPU_TYPE_ENTRY(8358_TBGA_),
|
|
|
|
CPU_TYPE_ENTRY(8358_PBGA_),
|
|
|
|
CPU_TYPE_ENTRY(8360),
|
|
|
|
CPU_TYPE_ENTRY(8377),
|
|
|
|
CPU_TYPE_ENTRY(8378),
|
|
|
|
CPU_TYPE_ENTRY(8379),
|
|
|
|
};
|
2005-07-28 15:08:46 +00:00
|
|
|
|
2008-10-16 13:01:15 +00:00
|
|
|
immr = (immap_t *)CONFIG_SYS_IMMR;
|
2006-11-04 01:33:44 +00:00
|
|
|
|
2017-03-28 16:27:27 +00:00
|
|
|
ret = prt_83xx_rsr();
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
2007-04-30 20:26:21 +00:00
|
|
|
puts("CPU: ");
|
2007-04-16 19:34:16 +00:00
|
|
|
|
|
|
|
switch (pvr & 0xffff0000) {
|
|
|
|
case PVR_E300C1:
|
|
|
|
printf("e300c1, ");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PVR_E300C2:
|
|
|
|
printf("e300c2, ");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PVR_E300C3:
|
|
|
|
printf("e300c3, ");
|
|
|
|
break;
|
|
|
|
|
2007-09-18 04:36:11 +00:00
|
|
|
case PVR_E300C4:
|
|
|
|
printf("e300c4, ");
|
|
|
|
break;
|
|
|
|
|
2007-04-16 19:34:16 +00:00
|
|
|
default:
|
|
|
|
printf("Unknown core, ");
|
2005-07-28 15:08:46 +00:00
|
|
|
}
|
|
|
|
|
2006-11-04 01:33:44 +00:00
|
|
|
spridr = immr->sysconf.spridr;
|
2005-10-17 00:39:53 +00:00
|
|
|
|
2008-03-28 15:19:07 +00:00
|
|
|
for (i = 0; i < ARRAY_SIZE(cpu_type_list); i++)
|
|
|
|
if (cpu_type_list[i].partid == PARTID_NO_E(spridr)) {
|
|
|
|
puts("MPC");
|
|
|
|
puts(cpu_type_list[i].name);
|
|
|
|
if (IS_E_PROCESSOR(spridr))
|
|
|
|
puts("E");
|
2010-04-15 22:36:02 +00:00
|
|
|
if ((SPR_FAMILY(spridr) == SPR_834X_FAMILY ||
|
|
|
|
SPR_FAMILY(spridr) == SPR_836X_FAMILY) &&
|
|
|
|
REVID_MAJOR(spridr) >= 2)
|
2008-03-28 15:19:07 +00:00
|
|
|
puts("A");
|
|
|
|
printf(", Rev: %d.%d", REVID_MAJOR(spridr),
|
|
|
|
REVID_MINOR(spridr));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (i == ARRAY_SIZE(cpu_type_list))
|
|
|
|
printf("(SPRIDR %08x unknown), ", spridr);
|
|
|
|
|
|
|
|
printf(" at %s MHz, ", strmhz(buf, clock));
|
|
|
|
|
2012-12-13 20:48:47 +00:00
|
|
|
printf("CSB: %s MHz\n", strmhz(buf, gd->arch.csb_clk));
|
2007-04-30 20:26:21 +00:00
|
|
|
|
2005-07-28 15:08:46 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2018-08-06 08:23:45 +00:00
|
|
|
#endif
|
2005-07-28 15:08:46 +00:00
|
|
|
|
2018-08-06 08:23:35 +00:00
|
|
|
#ifndef CONFIG_SYSRESET
|
2005-07-28 15:08:46 +00:00
|
|
|
int
|
2010-06-28 20:00:46 +00:00
|
|
|
do_reset (cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[])
|
2005-07-28 15:08:46 +00:00
|
|
|
{
|
2005-08-05 17:49:35 +00:00
|
|
|
ulong msr;
|
|
|
|
#ifndef MPC83xx_RESET
|
|
|
|
ulong addr;
|
|
|
|
#endif
|
2005-07-28 15:08:46 +00:00
|
|
|
|
2008-10-16 13:01:15 +00:00
|
|
|
volatile immap_t *immap = (immap_t *) CONFIG_SYS_IMMR;
|
2005-07-28 15:08:46 +00:00
|
|
|
|
2010-02-15 08:02:32 +00:00
|
|
|
puts("Resetting the board.\n");
|
|
|
|
|
2005-07-28 15:08:46 +00:00
|
|
|
#ifdef MPC83xx_RESET
|
2010-02-15 08:02:32 +00:00
|
|
|
|
2005-07-28 15:08:46 +00:00
|
|
|
/* Interrupts and MMU off */
|
2019-01-21 08:18:21 +00:00
|
|
|
msr = mfmsr();
|
|
|
|
msr &= ~(MSR_EE | MSR_IR | MSR_DR);
|
|
|
|
mtmsr(msr);
|
2005-07-28 15:08:46 +00:00
|
|
|
|
|
|
|
/* enable Reset Control Reg */
|
|
|
|
immap->reset.rpr = 0x52535445;
|
2019-01-21 08:18:21 +00:00
|
|
|
sync();
|
|
|
|
isync();
|
2005-07-28 15:08:46 +00:00
|
|
|
|
|
|
|
/* confirm Reset Control Reg is enabled */
|
2019-01-21 08:18:21 +00:00
|
|
|
while(!((immap->reset.rcer) & RCER_CRE))
|
|
|
|
;
|
2005-07-28 15:08:46 +00:00
|
|
|
|
|
|
|
udelay(200);
|
|
|
|
|
|
|
|
/* perform reset, only one bit */
|
2005-08-05 17:49:35 +00:00
|
|
|
immap->reset.rcr = RCR_SWHR;
|
|
|
|
|
|
|
|
#else /* ! MPC83xx_RESET */
|
2005-07-28 15:08:46 +00:00
|
|
|
|
2005-08-05 17:49:35 +00:00
|
|
|
immap->reset.rmr = RMR_CSRE; /* Checkstop Reset enable */
|
|
|
|
|
|
|
|
/* Interrupts and MMU off */
|
2019-01-21 08:18:21 +00:00
|
|
|
msr = mfmsr();
|
2005-07-28 15:08:46 +00:00
|
|
|
msr &= ~(MSR_ME | MSR_EE | MSR_IR | MSR_DR);
|
2019-01-21 08:18:21 +00:00
|
|
|
mtmsr(msr);
|
2005-07-28 15:08:46 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Trying to execute the next instruction at a non-existing address
|
|
|
|
* should cause a machine check, resulting in reset
|
|
|
|
*/
|
2008-10-16 13:01:15 +00:00
|
|
|
addr = CONFIG_SYS_RESET_ADDRESS;
|
2005-07-28 15:08:46 +00:00
|
|
|
|
|
|
|
((void (*)(void)) addr) ();
|
2005-08-05 17:49:35 +00:00
|
|
|
#endif /* MPC83xx_RESET */
|
|
|
|
|
2005-07-28 15:08:46 +00:00
|
|
|
return 1;
|
|
|
|
}
|
2018-08-06 08:23:35 +00:00
|
|
|
#endif
|
2005-07-28 15:08:46 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Get timebase clock frequency (like cpu_clk in Hz)
|
|
|
|
*/
|
2018-08-06 08:23:38 +00:00
|
|
|
#ifndef CONFIG_TIMER
|
2005-07-28 15:08:46 +00:00
|
|
|
unsigned long get_tbclk(void)
|
|
|
|
{
|
2016-09-06 13:17:38 +00:00
|
|
|
return (gd->bus_clk + 3L) / 4L;
|
2005-07-28 15:08:46 +00:00
|
|
|
}
|
2018-08-06 08:23:38 +00:00
|
|
|
#endif
|
2005-07-28 15:08:46 +00:00
|
|
|
|
|
|
|
#if defined(CONFIG_WATCHDOG)
|
|
|
|
void watchdog_reset (void)
|
|
|
|
{
|
2006-11-01 00:44:42 +00:00
|
|
|
int re_enable = disable_interrupts();
|
|
|
|
|
|
|
|
/* Reset the 83xx watchdog */
|
2008-10-16 13:01:15 +00:00
|
|
|
volatile immap_t *immr = (immap_t *) CONFIG_SYS_IMMR;
|
2006-11-01 00:44:42 +00:00
|
|
|
immr->wdt.swsrr = 0x556c;
|
|
|
|
immr->wdt.swsrr = 0xaa39;
|
|
|
|
|
|
|
|
if (re_enable)
|
|
|
|
enable_interrupts ();
|
2005-07-28 15:08:46 +00:00
|
|
|
}
|
2006-11-01 00:44:42 +00:00
|
|
|
#endif
|
2006-01-11 22:48:10 +00:00
|
|
|
|
2019-01-21 08:18:19 +00:00
|
|
|
#ifndef CONFIG_DM_ETH
|
2008-08-31 21:33:26 +00:00
|
|
|
/*
|
|
|
|
* Initializes on-chip ethernet controllers.
|
|
|
|
* to override, implement board_eth_init()
|
2008-06-24 05:57:27 +00:00
|
|
|
*/
|
|
|
|
int cpu_eth_init(bd_t *bis)
|
|
|
|
{
|
2009-06-04 20:12:41 +00:00
|
|
|
#if defined(CONFIG_UEC_ETH)
|
|
|
|
uec_standard_init(bis);
|
2008-10-23 06:32:48 +00:00
|
|
|
#endif
|
2009-06-04 20:12:41 +00:00
|
|
|
|
2008-08-31 21:33:26 +00:00
|
|
|
#if defined(CONFIG_TSEC_ENET)
|
|
|
|
tsec_standard_init(bis);
|
2008-06-24 05:57:27 +00:00
|
|
|
#endif
|
|
|
|
return 0;
|
|
|
|
}
|
2019-01-21 08:18:19 +00:00
|
|
|
#endif /* !CONFIG_DM_ETH */
|
2008-10-30 21:50:14 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Initializes on-chip MMC controllers.
|
|
|
|
* to override, implement board_mmc_init()
|
|
|
|
*/
|
|
|
|
int cpu_mmc_init(bd_t *bis)
|
|
|
|
{
|
|
|
|
#ifdef CONFIG_FSL_ESDHC
|
|
|
|
return fsl_esdhc_mmc_init(bis);
|
|
|
|
#else
|
|
|
|
return 0;
|
|
|
|
#endif
|
|
|
|
}
|
2019-01-21 08:18:20 +00:00
|
|
|
|
|
|
|
void ppcDWstore(unsigned int *addr, unsigned int *value)
|
|
|
|
{
|
|
|
|
asm("lfd 1, 0(%1)\n\t"
|
|
|
|
"stfd 1, 0(%0)"
|
|
|
|
:
|
|
|
|
: "r" (addr), "r" (value)
|
|
|
|
: "memory");
|
|
|
|
}
|
|
|
|
|
|
|
|
void ppcDWload(unsigned int *addr, unsigned int *ret)
|
|
|
|
{
|
|
|
|
asm("lfd 1, 0(%0)\n\t"
|
|
|
|
"stfd 1, 0(%1)"
|
|
|
|
:
|
|
|
|
: "r" (addr), "r" (ret)
|
|
|
|
: "memory");
|
|
|
|
}
|