upstream u-boot with additional patches for our devices/boards:
https://lists.denx.de/pipermail/u-boot/2017-March/282789.html (AXP crashes) ;
Gbit ethernet patch for some LIME2 revisions ;
with SPI flash support
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
374 B
24 lines
374 B
8 years ago
|
/*
|
||
|
* Copyright (c) 2016, NVIDIA CORPORATION.
|
||
|
*
|
||
|
* SPDX-License-Identifier: GPL-2.0
|
||
|
*/
|
||
|
|
||
|
#include <common.h>
|
||
|
#include <asm/system.h>
|
||
|
|
||
|
#define SMC_SIP_INVOKE_MCE 0x82FFFF00
|
||
|
#define MCE_SMC_ROC_FLUSH_CACHE 11
|
||
|
|
||
|
int __asm_flush_l3_cache(void)
|
||
|
{
|
||
|
struct pt_regs regs = {0};
|
||
|
|
||
|
isb();
|
||
|
|
||
|
regs.regs[0] = SMC_SIP_INVOKE_MCE | MCE_SMC_ROC_FLUSH_CACHE;
|
||
|
smc_call(®s);
|
||
|
|
||
|
return 0;
|
||
|
}
|