2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2002-08-27 09:48:53 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2002
|
|
|
|
* Sysgo Real-Time Solutions, GmbH <www.elinos.com>
|
|
|
|
* Marius Groeger <mgroeger@sysgo.de>
|
|
|
|
*
|
|
|
|
* (C) Copyright 2002
|
|
|
|
* Sysgo Real-Time Solutions, GmbH <www.elinos.com>
|
|
|
|
* Alex Zuepke <azu@sysgo.de>
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* CPU specific code
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
|
|
|
#include <command.h>
|
2019-11-14 19:57:37 +00:00
|
|
|
#include <cpu_func.h>
|
2019-11-14 19:57:42 +00:00
|
|
|
#include <irq_func.h>
|
2009-04-05 11:02:43 +00:00
|
|
|
#include <asm/system.h>
|
2014-04-15 14:13:48 +00:00
|
|
|
#include <asm/io.h>
|
2002-08-27 09:48:53 +00:00
|
|
|
|
2009-04-05 11:06:31 +00:00
|
|
|
static void cache_flush(void);
|
|
|
|
|
2002-08-27 09:48:53 +00:00
|
|
|
int cleanup_before_linux (void)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* this function is called just before we call linux
|
|
|
|
* it prepares the processor for linux
|
|
|
|
*
|
|
|
|
* just disable everything that can disturb booting linux
|
|
|
|
*/
|
|
|
|
|
2019-11-14 19:57:40 +00:00
|
|
|
disable_interrupts();
|
2002-08-27 09:48:53 +00:00
|
|
|
|
|
|
|
/* turn off I-cache */
|
2009-04-05 11:06:31 +00:00
|
|
|
icache_disable();
|
|
|
|
dcache_disable();
|
2002-08-27 09:48:53 +00:00
|
|
|
|
|
|
|
/* flush I-cache */
|
2009-04-05 11:06:31 +00:00
|
|
|
cache_flush();
|
2002-08-27 09:48:53 +00:00
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
2009-04-05 11:06:31 +00:00
|
|
|
/* flush I/D-cache */
|
|
|
|
static void cache_flush (void)
|
2002-08-27 09:48:53 +00:00
|
|
|
{
|
2009-04-05 11:06:31 +00:00
|
|
|
unsigned long i = 0;
|
2002-08-27 09:48:53 +00:00
|
|
|
|
2009-04-05 11:06:31 +00:00
|
|
|
asm ("mcr p15, 0, %0, c7, c5, 0": :"r" (i));
|
2002-08-27 09:48:53 +00:00
|
|
|
}
|
2014-04-15 14:13:48 +00:00
|
|
|
|
|
|
|
#define RST_BASE 0x90030000
|
|
|
|
#define RSRR 0x00
|
|
|
|
#define RCSR 0x04
|
|
|
|
|
|
|
|
__attribute__((noreturn)) void reset_cpu(ulong addr __attribute__((unused)))
|
|
|
|
{
|
|
|
|
/* repeat endlessly */
|
|
|
|
while (1) {
|
|
|
|
writel(0, RST_BASE + RCSR);
|
|
|
|
writel(1, RST_BASE + RSRR);
|
|
|
|
}
|
|
|
|
}
|