1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-19 11:33:51 +01:00
RIOT/cpu/fe310/include/cpu_conf.h
Marian Buschsieweke cac44edec7
tree-wide: replace multiple empty lines with one
For each C source/header `$file`: `sed -e '/^$/N;/^\n$/D' -i $file`.
2025-05-21 22:51:04 +02:00

49 lines
834 B
C

/*
* Copyright (C) 2017 Ken Rabold
*
* 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.
*/
#pragma once
/**
* @ingroup cpu_fe310
* @{
*
* @file
* @brief CPU specific configuration options
*
* @author Ken Rabold
*/
#include "cpu_conf_common.h"
#include "vendor/platform.h"
#ifdef __cplusplus
extern "C" {
#endif
/**
* @brief Base address of the CLINT
*/
#define CLINT_BASE_ADDR (CLINT_CTRL_ADDR)
/**
* @brief Base address of the PLIC peripheral
*/
#define PLIC_BASE_ADDR (PLIC_CTRL_ADDR)
/**
* @brief Number of available PMP regions
* Note, the upper 8 regions are hardwired to zero!
*/
#define NUM_PMP_ENTRIES 16
#ifdef __cplusplus
}
#endif
/** @} */