2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
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
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 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>
|
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){}
|
|
|
|
|
2015-05-13 13:02:25 +00:00
|
|
|
int cleanup_before_linux_select(int flags)
|
2008-12-14 08:47:13 +00:00
|
|
|
{
|
|
|
|
/*
|
|
|
|
* 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
|
|
|
|
2015-05-13 13:02:25 +00:00
|
|
|
if (flags & CBL_DISABLE_CACHES) {
|
|
|
|
/*
|
|
|
|
* turn off D-cache
|
|
|
|
* dcache_disable() in turn flushes the d-cache and disables MMU
|
|
|
|
*/
|
|
|
|
dcache_disable();
|
|
|
|
v7_outer_cache_disable();
|
2008-12-14 08:47:13 +00:00
|
|
|
|
2015-05-13 13:02:25 +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();
|
2015-08-30 22:55:49 +00:00
|
|
|
|
|
|
|
icache_disable();
|
|
|
|
invalidate_icache_all();
|
2015-05-13 13:02:25 +00:00
|
|
|
} else {
|
2015-08-30 22:55:49 +00:00
|
|
|
/*
|
|
|
|
* Turn off I-cache and invalidate it
|
|
|
|
*/
|
|
|
|
icache_disable();
|
|
|
|
invalidate_icache_all();
|
|
|
|
|
2015-05-13 13:02:25 +00:00
|
|
|
flush_dcache_all();
|
|
|
|
invalidate_icache_all();
|
|
|
|
icache_enable();
|
|
|
|
}
|
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;
|
|
|
|
}
|
2015-05-13 13:02:25 +00:00
|
|
|
|
|
|
|
int cleanup_before_linux(void)
|
|
|
|
{
|
|
|
|
return cleanup_before_linux_select(CBL_ALL);
|
|
|
|
}
|