2017-11-13 16:08:54 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2015-2017 Freie Universität Berlin
|
|
|
|
*
|
|
|
|
* This file is subject to the terms and conditions of the GNU Lesser
|
|
|
|
* General Public License v2.1. See the file LICENSE in the top level
|
|
|
|
* directory for more details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2019-07-06 22:38:41 +02:00
|
|
|
* @ingroup cpu_efm32
|
2017-11-13 16:08:54 +01:00
|
|
|
* @{
|
|
|
|
*
|
|
|
|
* @file
|
|
|
|
* @brief Implementation specific CPU configuration options
|
|
|
|
*
|
|
|
|
* @author Hauke Petersen <hauke.petersen@fu-berlin.de>
|
|
|
|
* @author Bas Stottelaar <basstottelaar@gmail.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef CPU_CONF_H
|
|
|
|
#define CPU_CONF_H
|
|
|
|
|
|
|
|
#include "cpu_conf_common.h"
|
|
|
|
|
|
|
|
#include "em_device.h"
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/**
|
2017-11-29 19:50:50 +01:00
|
|
|
* @brief ARM Cortex-M specific CPU configuration
|
2017-11-13 16:08:54 +01:00
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
#define CPU_DEFAULT_IRQ_PRIO (1U)
|
2017-11-29 19:50:50 +01:00
|
|
|
#define CPU_IRQ_NUMOF (EXT_IRQ_COUNT + 1)
|
|
|
|
#define CPU_FLASH_BASE (FLASH_BASE)
|
2017-11-13 16:08:54 +01:00
|
|
|
/** @} */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Flash page configuration
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
#define FLASHPAGE_SIZE (FLASH_PAGE_SIZE)
|
|
|
|
#define FLASHPAGE_NUMOF (FLASH_SIZE / FLASH_PAGE_SIZE)
|
2019-08-04 12:32:54 +02:00
|
|
|
/* The minimum block size which can be written is 4B. However, the erase
|
|
|
|
* block is always FLASHPAGE_SIZE.
|
|
|
|
*/
|
2020-11-09 16:43:55 +01:00
|
|
|
#define FLASHPAGE_WRITE_BLOCK_SIZE (4U)
|
2019-08-04 12:32:54 +02:00
|
|
|
/* Writing should be always 4 bytes aligned */
|
2020-11-09 16:43:55 +01:00
|
|
|
#define FLASHPAGE_WRITE_BLOCK_ALIGNMENT (4U)
|
2017-11-13 16:08:54 +01:00
|
|
|
/** @} */
|
|
|
|
|
2020-07-14 22:35:04 +02:00
|
|
|
/**
|
|
|
|
* @brief Bit-Band configuration
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
#ifdef BITBAND_RAM_BASE
|
|
|
|
#define CPU_HAS_BITBAND 1
|
|
|
|
#endif
|
|
|
|
/** @} */
|
|
|
|
|
2017-11-13 16:08:54 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* CPU_CONF_H */
|
|
|
|
/** @} */
|