2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2009-09-22 06:53:21 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2009 Freescale Semiconductor, Inc.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
2012-08-18 00:46:29 +00:00
|
|
|
#include <asm/processor.h>
|
|
|
|
#include <asm/global_data.h>
|
2013-10-22 19:39:02 +00:00
|
|
|
#include <fsl_ifc.h>
|
2009-09-22 06:53:21 +00:00
|
|
|
#include <asm/io.h>
|
2020-05-10 17:40:11 +00:00
|
|
|
#include <linux/delay.h>
|
2009-09-22 06:53:21 +00:00
|
|
|
|
2012-08-18 00:46:29 +00:00
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
|
|
|
|
2014-04-30 21:43:47 +00:00
|
|
|
ulong cpu_init_f(void)
|
2009-09-22 06:53:21 +00:00
|
|
|
{
|
2012-09-21 00:02:18 +00:00
|
|
|
#ifdef CONFIG_SYS_INIT_L2_ADDR
|
2009-09-22 06:53:21 +00:00
|
|
|
ccsr_l2cache_t *l2cache = (void *)CONFIG_SYS_MPC85xx_L2_ADDR;
|
|
|
|
|
|
|
|
out_be32(&l2cache->l2srbar0, CONFIG_SYS_INIT_L2_ADDR);
|
|
|
|
|
|
|
|
/* set MBECCDIS=1, SBECCDIS=1 */
|
|
|
|
out_be32(&l2cache->l2errdis,
|
|
|
|
(MPC85xx_L2ERRDIS_MBECC | MPC85xx_L2ERRDIS_SBECC));
|
|
|
|
|
|
|
|
/* set L2E=1 & L2SRAM=001 */
|
|
|
|
out_be32(&l2cache->l2ctl,
|
|
|
|
(MPC85xx_L2CTL_L2E | MPC85xx_L2CTL_L2SRAM_ENTIRE));
|
|
|
|
#endif
|
2014-04-30 21:43:47 +00:00
|
|
|
|
|
|
|
return 0;
|
2009-09-22 06:53:21 +00:00
|
|
|
}
|
2012-08-18 00:46:29 +00:00
|
|
|
|
|
|
|
#ifndef CONFIG_SYS_FSL_TBCLK_DIV
|
|
|
|
#define CONFIG_SYS_FSL_TBCLK_DIV 8
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void udelay(unsigned long usec)
|
|
|
|
{
|
|
|
|
u32 ticks_per_usec = gd->bus_clk / (CONFIG_SYS_FSL_TBCLK_DIV * 1000000);
|
|
|
|
u32 ticks = ticks_per_usec * usec;
|
|
|
|
u32 s = mfspr(SPRN_TBRL);
|
|
|
|
|
|
|
|
while ((mfspr(SPRN_TBRL) - s) < ticks);
|
|
|
|
}
|