* arch/arm/src/arm_a_r/arm.h
*
* 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
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* 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.
*
****************************************************************************/
*
* "ARM Architecture Reference Manual, ARMv7-A and ARMv7-R edition",
* Copyright 1996-1998, 2000, 2004-2012 ARM.
* All rights reserved. ARM DDI 0406C.c (ID051414)
*/
#ifndef __ARCH_ARM_SRC_ARM_A_R_ARM_H
#define __ARCH_ARM_SRC_ARM_A_R_ARM_H
* Included Files
****************************************************************************/
#ifndef __ASSEMBLY__
# include <nuttx/compiler.h>
#endif
* Pre-processor Definitions
****************************************************************************/
#define PSR_MODE_SHIFT (0)
#define PSR_MODE_MASK (31 << PSR_MODE_SHIFT)
# define PSR_MODE_USR (16 << PSR_MODE_SHIFT)
# define PSR_MODE_FIQ (17 << PSR_MODE_SHIFT)
# define PSR_MODE_IRQ (18 << PSR_MODE_SHIFT)
# define PSR_MODE_SVC (19 << PSR_MODE_SHIFT)
# define PSR_MODE_MON (22 << PSR_MODE_SHIFT)
# define PSR_MODE_ABT (23 << PSR_MODE_SHIFT)
# define PSR_MODE_HYP (26 << PSR_MODE_SHIFT)
# define PSR_MODE_UND (27 << PSR_MODE_SHIFT)
# define PSR_MODE_SYS (31 << PSR_MODE_SHIFT)
#define PSR_T_BIT (1 << 5)
#define PSR_MASK_SHIFT (6)
#define PSR_MASK_MASK (7 << PSR_GE_SHIFT)
# define PSR_F_BIT (1 << 6)
# define PSR_I_BIT (1 << 7)
# define PSR_A_BIT (1 << 8)
#define PSR_E_BIT (1 << 9)
#define PSR_IT27_SHIFT (10)
#define PSR_IT27_MASK (0x3f << PSR_IT27_SHIFT)
#define PSR_GE_SHIFT (16)
#define PSR_GE_MASK (15 << PSR_GE_SHIFT)
#define PSR_J_BIT (1 << 24)
#define PSR_IT01_SHIFT (25)
#define PSR_IT01_MASK (3 << PSR_IT01_SHIFT)
#define PSR_Q_BIT (1 << 27)
#define PSR_V_BIT (1 << 28)
#define PSR_C_BIT (1 << 29)
#define PSR_Z_BIT (1 << 30)
#define PSR_N_BIT (1 << 31)
* Inline Functions
****************************************************************************/
#ifndef __ASSEMBLY__
static inline_function void arm_finish_busy_wait(void)
{
#if defined(CONFIG_ARM_BUSY_WAIT) && defined(CONFIG_SMP)
uintptr_t address = CONFIG_ARM_BUSY_WAIT_FLAG_ADDR;
*(uint32_t *)address = 1;
up_flush_dcache(address, address + sizeof(uint32_t));
#endif
}
#endif
* Public Data
****************************************************************************/
* Public Function Prototypes
****************************************************************************/
#ifndef __ASSEMBLY__
#ifdef __cplusplus
#define EXTERN extern "C"
extern "C"
{
#else
#define EXTERN extern
#endif
* Name: arm_boot
*
* Description:
* Complete boot operations started in arm_head.S
*
* Boot Sequence
*
* 1. The __start entry point in armv8-r/arm_head.S is invoked upon power-
* on reset.
* 2. __start prepares CPU for code execution.
*
****************************************************************************/
void arm_boot(void);
* Name: arm_data_initialize
*
* Description:
* Clear all of .bss to zero; set .data to the correct initial values.
*
* Input Parameters:
* None
*
* Returned Value:
* None
*
****************************************************************************/
void arm_data_initialize(void);
#undef EXTERN
#ifdef __cplusplus
}
#endif
#endif
#endif