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.
27 lines
453 B
27 lines
453 B
10 years ago
|
/*
|
||
|
* Copyright (C) 2013 Xilinx, Inc. All rights reserved.
|
||
|
*
|
||
|
* SPDX-License-Identifier: GPL-2.0+
|
||
|
*/
|
||
|
|
||
|
#include <asm-offsets.h>
|
||
|
#include <config.h>
|
||
|
#include <linux/linkage.h>
|
||
|
|
||
|
ENTRY(lowlevel_init)
|
||
|
|
||
|
/* Enable the the VFP */
|
||
|
mrc p15, 0, r1, c1, c0, 2
|
||
|
orr r1, r1, #(0x3 << 20)
|
||
|
orr r1, r1, #(0x3 << 20)
|
||
|
mcr p15, 0, r1, c1, c0, 2
|
||
|
isb
|
||
|
fmrx r1, FPEXC
|
||
|
orr r1,r1, #(1<<30)
|
||
|
fmxr FPEXC, r1
|
||
|
|
||
|
/* Move back to caller */
|
||
|
mov pc, lr
|
||
|
|
||
|
ENDPROC(lowlevel_init)
|