2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2015-11-05 08:37:53 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2015 Atmel Corporation
|
|
|
|
* Wenyou Yang <wenyou.yang@atmel.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
2017-09-14 03:07:42 +00:00
|
|
|
#include <asm/hardware.h>
|
2015-11-05 08:37:53 +00:00
|
|
|
#include <asm/io.h>
|
2019-09-27 13:09:00 +00:00
|
|
|
#include <asm/arch/at91_sfr.h>
|
2015-11-05 08:37:53 +00:00
|
|
|
|
2019-08-08 07:48:28 +00:00
|
|
|
#if defined(CONFIG_SAMA5D2) || defined(CONFIG_SAMA5D4)
|
2015-11-05 08:37:53 +00:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|
2016-02-16 08:45:06 +00:00
|
|
|
|
|
|
|
void configure_2nd_sram_as_l2_cache(void)
|
|
|
|
{
|
|
|
|
struct atmel_sfr *sfr = (struct atmel_sfr *)ATMEL_BASE_SFR;
|
|
|
|
|
|
|
|
writel(1, &sfr->l2cc_hramc);
|
|
|
|
}
|
2019-08-08 07:48:28 +00:00
|
|
|
#endif
|
|
|
|
|
2019-08-08 07:48:30 +00:00
|
|
|
void configure_ddrcfg_input_buffers(bool open)
|
|
|
|
{
|
|
|
|
struct atmel_sfr *sfr = (struct atmel_sfr *)ATMEL_BASE_SFR;
|
|
|
|
|
|
|
|
if (open)
|
|
|
|
writel(ATMEL_SFR_DDRCFG_FDQIEN | ATMEL_SFR_DDRCFG_FDQSIEN,
|
|
|
|
&sfr->ddrcfg);
|
|
|
|
else
|
|
|
|
writel(0, &sfr->ddrcfg);
|
|
|
|
}
|
|
|
|
|