2022-01-15 07:01:10 +01:00
|
|
|
/****************************************************************************
|
|
|
|
* arch/sparc/src/common/up_internal.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.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef __ARCH_SPARC_SRC_COMMON_UP_INTERNAL_H
|
|
|
|
#define __ARCH_SPARC_SRC_COMMON_UP_INTERNAL_H
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
|
|
|
#ifndef __ASSEMBLY__
|
2022-02-01 02:21:17 +01:00
|
|
|
# include <nuttx/arch.h>
|
|
|
|
# include <sys/types.h>
|
2022-01-15 07:01:10 +01:00
|
|
|
# include <stdint.h>
|
|
|
|
# include <stdbool.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
# include "sparc_v8.h"
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Pre-processor Definitions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/* Determine which (if any) console driver to use. If a console is enabled
|
|
|
|
* and no other console device is specified, then a serial console is
|
|
|
|
* assumed.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef CONFIG_DEV_CONSOLE
|
|
|
|
# undef USE_SERIALDRIVER
|
|
|
|
# undef USE_EARLYSERIALINIT
|
|
|
|
# undef CONFIG_DEV_LOWCONSOLE
|
|
|
|
# undef CONFIG_RAMLOG_CONSOLE
|
|
|
|
#else
|
|
|
|
# if defined(CONFIG_RAMLOG_CONSOLE)
|
|
|
|
# undef USE_SERIALDRIVER
|
|
|
|
# undef USE_EARLYSERIALINIT
|
|
|
|
# undef CONFIG_DEV_LOWCONSOLE
|
|
|
|
# elif defined(CONFIG_DEV_LOWCONSOLE)
|
|
|
|
# undef USE_SERIALDRIVER
|
|
|
|
# undef USE_EARLYSERIALINIT
|
|
|
|
# else
|
|
|
|
# define USE_SERIALDRIVER 1
|
|
|
|
# define USE_EARLYSERIALINIT 1
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* If some other device is used as the console, then the serial driver may
|
|
|
|
* still be needed. Let's assume that if the upper half serial driver is
|
|
|
|
* built, then the lower half will also be needed. There is no need for
|
|
|
|
* the early serial initialization in this case.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#if !defined(USE_SERIALDRIVER) && defined(CONFIG_STANDARD_SERIAL)
|
|
|
|
# define USE_SERIALDRIVER 1
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Check if an interrupt stack size is configured */
|
|
|
|
|
|
|
|
#ifndef CONFIG_ARCH_INTERRUPTSTACK
|
|
|
|
# define CONFIG_ARCH_INTERRUPTSTACK 0
|
|
|
|
#endif
|
|
|
|
|
2022-02-15 17:59:06 +01:00
|
|
|
/* sparc requires at least a 4-byte stack alignment. For floating point use,
|
|
|
|
* however, the stack must be aligned to 8-byte addresses.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define STACK_ALIGNMENT 8
|
|
|
|
|
|
|
|
/* Stack alignment macros */
|
|
|
|
|
|
|
|
#define STACK_ALIGN_MASK (STACK_ALIGNMENT - 1)
|
|
|
|
#define STACK_ALIGN_DOWN(a) ((a) & ~STACK_ALIGN_MASK)
|
|
|
|
#define STACK_ALIGN_UP(a) (((a) + STACK_ALIGN_MASK) & ~STACK_ALIGN_MASK)
|
|
|
|
|
2022-01-15 07:01:10 +01:00
|
|
|
/* This is the value used to mark the stack for subsequent stack monitoring
|
|
|
|
* logic.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define STACK_COLOR 0xdeadbeef
|
|
|
|
#define INTSTACK_COLOR 0xdeadbeef
|
|
|
|
#define HEAP_COLOR 'h'
|
|
|
|
|
2022-03-11 17:41:15 +01:00
|
|
|
#define getreg8(a) (*(volatile uint8_t *)(a))
|
|
|
|
#define putreg8(v,a) (*(volatile uint8_t *)(a) = (v))
|
|
|
|
#define getreg16(a) (*(volatile uint16_t *)(a))
|
|
|
|
#define putreg16(v,a) (*(volatile uint16_t *)(a) = (v))
|
|
|
|
#define getreg32(a) (*(volatile uint32_t *)(a))
|
|
|
|
#define putreg32(v,a) (*(volatile uint32_t *)(a) = (v))
|
|
|
|
|
2022-01-15 07:01:10 +01:00
|
|
|
/****************************************************************************
|
|
|
|
* Public Types
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef __ASSEMBLY__
|
|
|
|
typedef void (*up_vector_t)(void);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Data
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef __ASSEMBLY__
|
|
|
|
/* This is the beginning of heap as provided from up_head.S. This is the
|
|
|
|
* first address in DRAM after the loaded program+bss+idle stack. The end
|
|
|
|
* of the heap is CONFIG_RAM_END
|
|
|
|
*/
|
|
|
|
|
|
|
|
extern uint32_t g_idle_topstack;
|
|
|
|
|
|
|
|
/* Address of the saved user stack pointer */
|
|
|
|
|
|
|
|
#if CONFIG_ARCH_INTERRUPTSTACK > 3
|
|
|
|
extern void g_intstackbase;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* These 'addresses' of these values are setup by the linker script.They are
|
|
|
|
* not actual uint32_t storage locations! They are only used meaningfully in
|
|
|
|
* the following way:
|
|
|
|
*
|
|
|
|
* - The linker script defines, for example, the symbol_sdata.
|
|
|
|
* - The declaration extern uint32_t _sdata; makes C happy. C will believe
|
|
|
|
* that the value _sdata is the address of a uint32_t variable _data
|
|
|
|
* (it is not!).
|
|
|
|
* - We can recoved the linker value then by simply taking the address of
|
|
|
|
* of _data. like: uint32_t *pdata = &_sdata;
|
|
|
|
*/
|
|
|
|
|
|
|
|
extern uint32_t _text_start; /* Start of .text */
|
|
|
|
extern uint32_t _etext; /* End+1 of .text + .rodata */
|
|
|
|
extern const uint32_t _rodata_start; /* Start of .data in FLASH */
|
|
|
|
extern uint32_t _sdata; /* Start of .data */
|
|
|
|
extern uint32_t _edata; /* End+1 of .data */
|
|
|
|
extern uint32_t _bss_start; /* Start of .bss */
|
|
|
|
extern uint32_t _end; /* End+1 of .bss */
|
|
|
|
#ifdef CONFIG_ARCH_RAMFUNCS
|
|
|
|
extern uint32_t _sramfunc; /* Start of ramfuncs */
|
|
|
|
extern uint32_t _eramfunc; /* End+1 of ramfuncs */
|
|
|
|
extern uint32_t _ramfunc_loadaddr; /* Start of ramfuncs in FLASH */
|
|
|
|
extern uint32_t _ramfunc_sizeof; /* Size of ramfuncs */
|
|
|
|
extern uint32_t _bmxdkpba_address; /* BMX register setting */
|
|
|
|
extern uint32_t _bmxdudba_address; /* BMX register setting */
|
|
|
|
extern uint32_t _bmxdupba_address; /* BMX register setting */
|
|
|
|
#endif /* CONFIG_ARCH_RAMFUNCS */
|
|
|
|
#endif /* __ASSEMBLY__ */
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Inline Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef __ASSEMBLY__
|
|
|
|
|
|
|
|
/* Common Functions *********************************************************/
|
|
|
|
|
|
|
|
/* Common functions define in arch/sparc/src/common. These may be replaced
|
|
|
|
* with chip-specific functions of the same name if needed. See also
|
|
|
|
* functions prototyped in include/nuttx/arch.h.
|
|
|
|
*/
|
|
|
|
|
2022-03-11 17:41:15 +01:00
|
|
|
/* Atomic modification of registers */
|
|
|
|
|
|
|
|
void modifyreg8(unsigned int addr, uint8_t clearbits, uint8_t setbits);
|
|
|
|
void modifyreg16(unsigned int addr, uint16_t clearbits, uint16_t setbits);
|
|
|
|
void modifyreg32(unsigned int addr, uint32_t clearbits, uint32_t setbits);
|
|
|
|
|
2022-01-15 07:01:10 +01:00
|
|
|
/* Context switching */
|
|
|
|
|
|
|
|
void up_copystate(uint32_t *dest, uint32_t *src);
|
|
|
|
|
|
|
|
/* Serial output */
|
|
|
|
|
|
|
|
void up_lowputs(const char *str);
|
|
|
|
|
|
|
|
/* Debug */
|
|
|
|
|
|
|
|
#ifdef CONFIG_ARCH_STACKDUMP
|
|
|
|
void up_dumpstate(void);
|
|
|
|
#else
|
|
|
|
# define up_dumpstate()
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Software interrupt 0 handler */
|
|
|
|
|
2022-04-17 14:45:54 +02:00
|
|
|
int up_swint0(int irq, void *context, void *arg);
|
2022-01-15 07:01:10 +01:00
|
|
|
|
|
|
|
/* Software interrupt 1 handler */
|
|
|
|
|
2022-04-17 14:45:54 +02:00
|
|
|
int up_swint1(int irq, void *context, void *arg);
|
2022-01-15 07:01:10 +01:00
|
|
|
|
|
|
|
/* Signals */
|
|
|
|
|
|
|
|
void up_sigdeliver(void);
|
|
|
|
|
|
|
|
/* Chip-specific functions **************************************************/
|
|
|
|
|
|
|
|
/* Chip specific functions defined in arch/sparc/src/<chip> */
|
|
|
|
|
|
|
|
/* IRQs */
|
|
|
|
|
|
|
|
bool up_pending_irq(int irq);
|
|
|
|
void up_clrpend_irq(int irq);
|
|
|
|
|
|
|
|
/* DMA */
|
|
|
|
|
|
|
|
#ifdef CONFIG_ARCH_DMA
|
|
|
|
void weak_function up_dma_initialize(void);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Memory management */
|
|
|
|
|
|
|
|
#if CONFIG_MM_REGIONS > 1
|
|
|
|
void up_addregion(void);
|
|
|
|
#else
|
|
|
|
# define up_addregion()
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Serial output */
|
|
|
|
|
|
|
|
void up_lowputc(char ch);
|
|
|
|
void up_earlyserialinit(void);
|
|
|
|
void up_serialinit(void);
|
|
|
|
|
|
|
|
/* Network */
|
|
|
|
|
|
|
|
#if defined(CONFIG_NET) && !defined(CONFIG_NETDEV_LATEINIT)
|
|
|
|
void up_netinitialize(void);
|
|
|
|
#else
|
|
|
|
# define up_netinitialize()
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* USB */
|
|
|
|
|
|
|
|
#ifdef CONFIG_USBDEV
|
|
|
|
void up_usbinitialize(void);
|
|
|
|
void up_usbuninitialize(void);
|
|
|
|
#else
|
|
|
|
# define up_usbinitialize()
|
|
|
|
# define up_usbuninitialize()
|
|
|
|
#endif
|
|
|
|
|
2022-02-01 02:21:17 +01:00
|
|
|
/* Debug ********************************************************************/
|
|
|
|
#ifdef CONFIG_STACK_COLORATION
|
2022-04-17 14:45:54 +02:00
|
|
|
void up_stack_color(void *stackbase, size_t nbytes);
|
2022-02-01 02:21:17 +01:00
|
|
|
#endif
|
|
|
|
|
2022-01-15 07:01:10 +01:00
|
|
|
#endif /* __ASSEMBLY__ */
|
|
|
|
#endif /* __ARCH_SPARC_SRC_COMMON_UP_INTERNAL_H */
|