mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:52:44 +01:00
Merge pull request #12477 from francois-berder/mips-refactor
cpu: mips*: Reorganize headers
This commit is contained in:
commit
80c00339a4
@ -11,6 +11,7 @@
|
||||
#include <mips/m32c0.h>
|
||||
#include <mips/regdef.h>
|
||||
#include <mips/asm.h>
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <assert.h>
|
||||
#include <malloc.h>
|
||||
|
@ -9,13 +9,13 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* @defgroup cpu_mips_pic32mz Microchip PIC32MZ
|
||||
* @defgroup cpu_mips32r2_common Imagination Technologies MIPS32R2 Common
|
||||
* @ingroup cpu
|
||||
* @brief CPU definitions for Microchip PIC32MZ devices.
|
||||
* @brief CPU definitions for MIPS32R2 devices.
|
||||
* @{
|
||||
*
|
||||
* @file
|
||||
* @brief CPU definitions for Microchip PIC32MZ devices.
|
||||
* @brief CPU definitions for MIPS32R2 devices.
|
||||
*
|
||||
* @author Neil Jones <neil.jones@imgtec.com>
|
||||
*/
|
||||
@ -23,20 +23,14 @@
|
||||
#ifndef CPU_H
|
||||
#define CPU_H
|
||||
|
||||
#include <stdint.h>
|
||||
#include "cpu_conf.h"
|
||||
#include "irq.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#include <stdio.h>
|
||||
#include <inttypes.h>
|
||||
#include <assert.h>
|
||||
#include "irq.h"
|
||||
|
||||
/**
|
||||
* @brief We run from flash on PIC32
|
||||
*/
|
||||
#define FLASH_XIP (1)
|
||||
|
||||
/**
|
||||
* @brief Print the last instruction's address
|
||||
*
|
@ -7,8 +7,7 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* @defgroup cpu_mips32r2_common Imagination Technologies MIPS32R2 Common
|
||||
* @ingroup cpu
|
||||
* @ingroup cpu_mips32r2_common
|
||||
* @brief Imagination Technologies MIPS32R2 Common implementation
|
||||
* @{
|
||||
*
|
||||
|
@ -26,6 +26,11 @@
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
/**
|
||||
* @brief We run from flash on PIC32
|
||||
*/
|
||||
#define FLASH_XIP (1)
|
||||
|
||||
/**
|
||||
* @name Power management configuration
|
||||
* @{
|
||||
|
@ -1,60 +0,0 @@
|
||||
/*
|
||||
* Copyright (C) 2016,2017, Imagination Technologies Limited and/or its
|
||||
* affiliated group companies.
|
||||
*
|
||||
* 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.#
|
||||
*
|
||||
*/
|
||||
|
||||
/**
|
||||
* @defgroup cpu_mips_pic32mx Microchip PIC32MX
|
||||
* @ingroup cpu
|
||||
* @brief CPU definitions for Microchip PIC32MX devices.
|
||||
* @{
|
||||
*
|
||||
* @file
|
||||
* @brief CPU definitions for pic32mx devices.
|
||||
*
|
||||
* @author Neil Jones <neil.jones@imgtec.com>
|
||||
*/
|
||||
|
||||
#ifndef CPU_H
|
||||
#define CPU_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#include <stdio.h>
|
||||
#include <inttypes.h>
|
||||
#include <assert.h>
|
||||
#include "irq.h"
|
||||
|
||||
/**
|
||||
* @brief We run from flash on PIC32
|
||||
*/
|
||||
#define FLASH_XIP (1)
|
||||
|
||||
/**
|
||||
* @brief Print the last instruction's address
|
||||
*
|
||||
* @todo: Not supported
|
||||
*/
|
||||
static inline void cpu_print_last_instruction(void)
|
||||
{
|
||||
/* This function must exist else RIOT won't compile */
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief Initialize the CPU, set IRQ priorities
|
||||
*/
|
||||
void cpu_init(void);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* CPU_H */
|
||||
/** @} */
|
@ -9,7 +9,8 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* @ingroup cpu_mips_pic32mx
|
||||
* @defgroup cpu_mips_pic32mx PIC32MX
|
||||
* @ingroup cpu
|
||||
* @{
|
||||
*
|
||||
* @file
|
||||
@ -21,6 +22,12 @@
|
||||
#ifndef CPU_CONF_H
|
||||
#define CPU_CONF_H
|
||||
|
||||
#ifdef CPU_MODEL_P32MX470F512H
|
||||
#include "vendor/p32mx470f512h.h"
|
||||
#else
|
||||
#error "No CPU headers for the defined CPU_MODEL found"
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
@ -9,7 +9,8 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* @ingroup cpu_mips_pic32mz
|
||||
* @defgroup cpu_mips_pic32mz PIC32MZ
|
||||
* @ingroup cpu
|
||||
* @{
|
||||
*
|
||||
* @file
|
||||
@ -21,6 +22,12 @@
|
||||
#ifndef CPU_CONF_H
|
||||
#define CPU_CONF_H
|
||||
|
||||
#ifdef CPU_MODEL_P32MZ2048EFG100
|
||||
#include "vendor/p32mz2048efg100.h"
|
||||
#else
|
||||
#error "No CPU headers for the defined CPU_MODEL found"
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
@ -38,6 +38,7 @@ CFLAGS_DBG = -g3
|
||||
CFLAGS_OPT = -Os
|
||||
|
||||
CFLAGS += $(CFLAGS_CPU) $(CFLAGS_LINK) $(CFLAGS_OPT) $(CFLAGS_DBG)
|
||||
CFLAGS += -DCPU_MODEL_$(call uppercase_and_underscore,$(CPU_MODEL))
|
||||
|
||||
ifeq ($(USE_HARD_FLOAT),1)
|
||||
CFLAGS += -mhard-float -DMIPS_HARD_FLOAT
|
||||
|
Loading…
Reference in New Issue
Block a user