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.
42 lines
848 B
42 lines
848 B
/*
|
|
* Copyright (c) 2018-2019, ARM Limited and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#include <platform_def.h>
|
|
|
|
#include <common/bl_common.h>
|
|
#include <common/debug.h>
|
|
#include <plat/arm/common/plat_arm.h>
|
|
#include <plat/common/platform.h>
|
|
#include <drivers/arm/sbsa.h>
|
|
|
|
#include "n1sdp_def.h"
|
|
|
|
/*
|
|
* Table of regions to map using the MMU.
|
|
* Replace or extend the below regions as required
|
|
*/
|
|
|
|
const mmap_region_t plat_arm_mmap[] = {
|
|
ARM_MAP_SHARED_RAM,
|
|
N1SDP_MAP_DEVICE,
|
|
N1SDP_MAP_NS_SRAM,
|
|
ARM_MAP_DRAM1,
|
|
ARM_MAP_DRAM2,
|
|
N1SDP_MAP_REMOTE_DEVICE,
|
|
N1SDP_MAP_REMOTE_DRAM1,
|
|
N1SDP_MAP_REMOTE_DRAM2,
|
|
{0}
|
|
};
|
|
|
|
void plat_arm_secure_wdt_start(void)
|
|
{
|
|
sbsa_wdog_start(SBSA_SECURE_WDOG_BASE, SBSA_SECURE_WDOG_TIMEOUT);
|
|
}
|
|
|
|
void plat_arm_secure_wdt_stop(void)
|
|
{
|
|
sbsa_wdog_stop(SBSA_SECURE_WDOG_BASE);
|
|
}
|
|
|