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.
35 lines
583 B
35 lines
583 B
/*
|
|
* Copyright (C) 2006 Atmel Corporation
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
#include <common.h>
|
|
|
|
#include <asm/sysreg.h>
|
|
|
|
int interrupt_init(void)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
void enable_interrupts(void)
|
|
{
|
|
asm volatile("csrf %0" : : "n"(SYSREG_GM_OFFSET));
|
|
}
|
|
|
|
int disable_interrupts(void)
|
|
{
|
|
unsigned long sr;
|
|
|
|
sr = sysreg_read(SR);
|
|
asm volatile("ssrf %0" : : "n"(SYSREG_GM_OFFSET));
|
|
|
|
#ifdef CONFIG_AT32UC3A0xxx
|
|
/* Two NOPs are required after masking interrupts on the
|
|
* AT32UC3A0512ES. See errata 41.4.5.5. */
|
|
asm("nop");
|
|
asm("nop");
|
|
#endif
|
|
|
|
return !SYSREG_BFEXT(GM, sr);
|
|
}
|
|
|