OpenCores
URL https://opencores.org/ocsvn/neorv32/neorv32/trunk

Subversion Repositories neorv32

[/] [neorv32/] [trunk/] [sw/] [lib/] [include/] [neorv32_cpu.h] - Diff between revs 64 and 65

Go to most recent revision | Show entire file | Details | Blame | View Log

Rev 64 Rev 65
Line 67... Line 67...
 **************************************************************************/
 **************************************************************************/
extern int __neorv32_crt0_after_main(int32_t return_code) __attribute__ ((weak));
extern int __neorv32_crt0_after_main(int32_t return_code) __attribute__ ((weak));
 
 
 
 
/**********************************************************************//**
/**********************************************************************//**
 * Store unsigned word to address space.
 * Store unsigned word to address space if atomic access reservation is still valid.
 *
 *
 * @note An unaligned access address will raise an alignment exception.
 * @note An unaligned access address will raise an alignment exception.
 *
 *
 * @param[in] addr Address (32-bit).
 * @param[in] addr Address (32-bit).
 * @param[in] wdata Data word (32-bit) to store.
 * @param[in] wdata Data word (32-bit) to store.
 * @return Operation status (32-bit).
 * @return Operation status (32-bit, zero if success).
 **************************************************************************/
 **************************************************************************/
inline uint32_t __attribute__ ((always_inline)) neorv32_cpu_store_conditional(uint32_t addr, uint32_t wdata) {
inline uint32_t __attribute__ ((always_inline)) neorv32_cpu_store_conditional(uint32_t addr, uint32_t wdata) {
 
 
#if defined __riscv_atomic || defined __riscv_a
#if defined __riscv_atomic || defined __riscv_a
  register uint32_t reg_addr = addr;
  register uint32_t reg_addr = addr;
Line 92... Line 92...
#endif
#endif
}
}
 
 
 
 
/**********************************************************************//**
/**********************************************************************//**
 * Conditional store unsigned word to address space if atomic access reservation is valid.
 * Conditional store unsigned word to address space.
 *
 *
 * @note An unaligned access address will raise an alignment exception.
 * @note An unaligned access address will raise an alignment exception.
 *
 *
 * @param[in] addr Address (32-bit).
 * @param[in] addr Address (32-bit).
 * @param[in] wdata Data word (32-bit) to store.
 * @param[in] wdata Data word (32-bit) to store.
Line 252... Line 252...
 
 
 
 
/**********************************************************************//**
/**********************************************************************//**
 * Put CPU into "sleep" mode.
 * Put CPU into "sleep" mode.
 *
 *
 * @note This function executes the WFI insstruction.
 * @note This function executes the WFI instruction.
 * The WFI (wait for interrupt) instruction will make the CPU stall until
 * The WFI (wait for interrupt) instruction will make the CPU stall until
 * an interupt request is detected. Interrupts have to be globally enabled
 * an interrupt request is detected. Interrupts have to be globally enabled
 * and at least one external source must be enabled (like the MTI machine
 * and at least one external source must be enabled (like the MTI machine
 * timer interrupt) to allow the CPU to wake up again. If 'Zicsr' CPU extension is disabled,
 * timer interrupt) to allow the CPU to wake up again. If 'Zicsr' CPU extension is disabled,
 * this will permanently stall the CPU.
 * this will permanently stall the CPU.
 **************************************************************************/
 **************************************************************************/
inline void __attribute__ ((always_inline)) neorv32_cpu_sleep(void) {
inline void __attribute__ ((always_inline)) neorv32_cpu_sleep(void) {

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.