soc: nordic: add nRF9160 soc and mpu init configuration

This commit adds the nRF9160 fixup and the source files
for SOC and MPU boot configuration.

Signed-off-by: Ioannis Glaropoulos <Ioannis.Glaropoulos@nordicsemi.no>
This commit is contained in:
Ioannis Glaropoulos 2018-12-21 18:53:34 +01:00 committed by Anas Nashif
commit 5108990079
5 changed files with 166 additions and 1 deletions

View file

@ -0,0 +1,26 @@
/*
* Copyright (c) 2018 Nordic Semiconductor ASA
*
* SPDX-License-Identifier: Apache-2.0
*/
/**
* @file SoC configuration macros for the Nordic Semiconductor nRF91 family processors.
*/
#ifndef _NORDICSEMI_NRF91_SOC_H_
#define _NORDICSEMI_NRF91_SOC_H_
#ifndef _ASMLANGUAGE
#include <nrf.h>
/* Add include for DTS generated information */
#include <generated_dts_board.h>
#endif /* !_ASMLANGUAGE */
#define FLASH_PAGE_ERASE_MAX_TIME_US 89700UL
#define FLASH_PAGE_MAX_CNT 256UL
#endif /* _NORDICSEMI_NRF91_SOC_H_ */