2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2002-09-22 23:07:35 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2002
|
|
|
|
* Sysgo Real-Time Solutions, GmbH <www.elinos.com>
|
|
|
|
* Marius Groeger <mgroeger@sysgo.de>
|
|
|
|
*
|
|
|
|
* (C) Copyright 2002
|
2009-05-13 08:54:10 +00:00
|
|
|
* Gary Jennejohn, DENX Software Engineering, <garyj@denx.de>
|
2002-09-22 23:07:35 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* CPU specific code
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
|
|
|
#include <command.h>
|
2009-04-05 11:02:43 +00:00
|
|
|
#include <asm/system.h>
|
2002-09-22 23:07:35 +00:00
|
|
|
|
2009-04-05 11:06:31 +00:00
|
|
|
static void cache_flush(void);
|
2002-09-22 23:07:35 +00:00
|
|
|
|
|
|
|
int cleanup_before_linux (void)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* this function is called just before we call linux
|
|
|
|
* it prepares the processor for linux
|
|
|
|
*
|
|
|
|
* we turn off caches etc ...
|
|
|
|
*/
|
|
|
|
|
|
|
|
disable_interrupts ();
|
|
|
|
|
|
|
|
/* turn off I/D-cache */
|
2009-04-05 11:06:31 +00:00
|
|
|
icache_disable();
|
|
|
|
dcache_disable();
|
2002-09-22 23:07:35 +00:00
|
|
|
/* flush I/D-cache */
|
2009-04-05 11:06:31 +00:00
|
|
|
cache_flush();
|
2005-09-24 23:48:28 +00:00
|
|
|
|
2009-04-05 11:06:31 +00:00
|
|
|
return 0;
|
2002-09-22 23:07:35 +00:00
|
|
|
}
|
|
|
|
|
2009-04-05 11:06:31 +00:00
|
|
|
/* flush I/D-cache */
|
|
|
|
static void cache_flush (void)
|
2002-09-22 23:07:35 +00:00
|
|
|
{
|
2009-04-05 11:06:31 +00:00
|
|
|
unsigned long i = 0;
|
2002-09-22 23:07:35 +00:00
|
|
|
|
2009-04-05 11:06:31 +00:00
|
|
|
asm ("mcr p15, 0, %0, c7, c7, 0": :"r" (i));
|
2002-09-22 23:07:35 +00:00
|
|
|
}
|