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.
21 lines
504 B
21 lines
504 B
/*
|
|
* Copyright (C) 2015 Atmel Corporation
|
|
* Wenyou Yang <wenyou.yang@atmel.com>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#include <common.h>
|
|
#include <asm/io.h>
|
|
#include <asm/arch/sama5_sfr.h>
|
|
|
|
void redirect_int_from_saic_to_aic(void)
|
|
{
|
|
struct atmel_sfr *sfr = (struct atmel_sfr *)ATMEL_BASE_SFR;
|
|
u32 key32;
|
|
|
|
if (!(readl(&sfr->aicredir) & ATMEL_SFR_AICREDIR_NSAIC)) {
|
|
key32 = readl(&sfr->sn1) ^ ATMEL_SFR_AICREDIR_KEY;
|
|
writel((key32 | ATMEL_SFR_AICREDIR_NSAIC), &sfr->aicredir);
|
|
}
|
|
}
|
|
|