2011-05-08 23:38:47 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* arch/mips/include/arch.h
|
|
|
|
*
|
2021-03-28 16:10:05 +02:00
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
|
|
* this work for additional information regarding copyright ownership. The
|
|
|
|
* ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
|
|
* "License"); you may not use this file except in compliance with the
|
|
|
|
* License. You may obtain a copy of the License at
|
2011-05-08 23:38:47 +02:00
|
|
|
*
|
2021-03-28 16:10:05 +02:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2011-05-08 23:38:47 +02:00
|
|
|
*
|
2021-03-28 16:10:05 +02:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
* License for the specific language governing permissions and limitations
|
|
|
|
* under the License.
|
2011-05-08 23:38:47 +02:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2020-04-05 23:00:04 +02:00
|
|
|
/* This file should never be included directly but, rather,
|
2011-05-08 23:38:47 +02:00
|
|
|
* only indirectly through nuttx/arch.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __ARCH_MIPS_INCLUDE_ARCH_H
|
|
|
|
#define __ARCH_MIPS_INCLUDE_ARCH_H
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
|
|
|
/****************************************************************************
|
2015-04-08 16:04:12 +02:00
|
|
|
* Pre-processor Definitions
|
2011-05-08 23:38:47 +02:00
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Inline functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
2020-07-08 20:39:29 +02:00
|
|
|
/****************************************************************************
|
2021-06-09 10:26:18 +02:00
|
|
|
* Name: up_getsp
|
2020-07-08 20:39:29 +02:00
|
|
|
****************************************************************************/
|
|
|
|
|
2021-06-09 10:26:18 +02:00
|
|
|
static inline uint32_t up_getsp(void)
|
2020-07-08 20:39:29 +02:00
|
|
|
{
|
|
|
|
register uint32_t sp;
|
|
|
|
__asm__
|
|
|
|
(
|
|
|
|
"\tadd %0, $0, $29\n"
|
|
|
|
: "=r"(sp)
|
|
|
|
);
|
|
|
|
return sp;
|
|
|
|
}
|
|
|
|
|
2011-05-08 23:38:47 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Public Types
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
2015-10-03 01:42:29 +02:00
|
|
|
* Public Data
|
2011-05-08 23:38:47 +02:00
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Function Prototypes
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
#define EXTERN extern "C"
|
2015-06-13 03:26:01 +02:00
|
|
|
extern "C"
|
|
|
|
{
|
2011-05-08 23:38:47 +02:00
|
|
|
#else
|
|
|
|
#define EXTERN extern
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#undef EXTERN
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* __ARCH_MIPS_INCLUDE_ARCH_H */
|