2008-12-14 08:47:13 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2008 Texas Insturments
|
|
|
|
*
|
|
|
|
* (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>
|
2008-12-14 08:47:13 +00:00
|
|
|
*
|
2013-07-08 07:37:19 +00:00
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
2008-12-14 08:47:13 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* CPU specific code
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
|
|
|
#include <command.h>
|
2009-04-05 11:02:43 +00:00
|
|
|
#include <asm/system.h>
|
2009-06-20 09:02:17 +00:00
|
|
|
#include <asm/cache.h>
|
2011-06-16 23:30:49 +00:00
|
|
|
#include <asm/armv7.h>
|
2012-07-31 08:59:32 +00:00
|
|
|
#include <linux/compiler.h>
|
2008-12-14 08:47:13 +00:00
|
|
|
|
2012-07-31 08:59:32 +00:00
|
|
|
void __weak cpu_cache_initialization(void){}
|
|
|
|
|
2008-12-14 08:47:13 +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 ...
|
|
|
|
*/
|
2012-03-15 04:01:41 +00:00
|
|
|
#ifndef CONFIG_SPL_BUILD
|
2008-12-14 08:47:13 +00:00
|
|
|
disable_interrupts();
|
2012-03-15 04:01:41 +00:00
|
|
|
#endif
|
2008-12-14 08:47:13 +00:00
|
|
|
|
2011-06-16 23:30:49 +00:00
|
|
|
/*
|
|
|
|
* Turn off I-cache and invalidate it
|
|
|
|
*/
|
2008-12-14 08:47:13 +00:00
|
|
|
icache_disable();
|
2011-06-16 23:30:49 +00:00
|
|
|
invalidate_icache_all();
|
2008-12-14 08:47:13 +00:00
|
|
|
|
2011-06-16 23:30:49 +00:00
|
|
|
/*
|
|
|
|
* turn off D-cache
|
|
|
|
* dcache_disable() in turn flushes the d-cache and disables MMU
|
|
|
|
*/
|
|
|
|
dcache_disable();
|
2011-11-21 23:33:58 +00:00
|
|
|
v7_outer_cache_disable();
|
2008-12-14 08:47:13 +00:00
|
|
|
|
2011-06-16 23:30:49 +00:00
|
|
|
/*
|
|
|
|
* After D-cache is flushed and before it is disabled there may
|
|
|
|
* be some new valid entries brought into the cache. We are sure
|
|
|
|
* that these lines are not dirty and will not affect our execution.
|
|
|
|
* (because unwinding the call-stack and setting a bit in CP15 SCTRL
|
|
|
|
* is all we did during this. We have not pushed anything on to the
|
|
|
|
* stack. Neither have we affected any static data)
|
|
|
|
* So just invalidate the entire d-cache again to avoid coherency
|
|
|
|
* problems for kernel
|
|
|
|
*/
|
|
|
|
invalidate_dcache_all();
|
2008-12-14 08:47:13 +00:00
|
|
|
|
2012-07-31 08:59:32 +00:00
|
|
|
/*
|
|
|
|
* Some CPU need more cache attention before starting the kernel.
|
|
|
|
*/
|
|
|
|
cpu_cache_initialization();
|
|
|
|
|
2008-12-14 08:47:13 +00:00
|
|
|
return 0;
|
|
|
|
}
|