Compare commits
	
		
			83 Commits
		
	
	
		
			fbe6560e79
			...
			develop
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| fced281870 | |||
| 703fbf67b4 | |||
| 59d0a22738 | |||
| 3df19468e9 | |||
| bf0e4ec057 | |||
| 018e07ecee | |||
| fc37441911 | |||
| b5cee82f3e | |||
| 20161cc1af | |||
| 0843d92878 | |||
| a7b4e7b715 | |||
| b69fd19910 | |||
| 25306948c9 | |||
| 74fd5b0a2b | |||
| ca36d3ef84 | |||
| a33b51a708 | |||
| 82bd81bb60 | |||
| 5353d7d258 | |||
| b9e5f33cb6 | |||
| 99c6214381 | |||
| 6e2a7a12fe | |||
| 2bde14a398 | |||
| f37242efa7 | |||
| 41d38e698d | |||
| 92d01b9db4 | |||
| 
						 | 
					5f26d9081c | ||
| 
						 | 
					30cebaa066 | ||
| 540397494a | |||
| 853d1c33ec | |||
| e0807b8cdd | |||
| 8cb34baacf | |||
| 546851f509 | |||
| 569df1536a | |||
| e1ea5a98d6 | |||
| c73bc9e144 | |||
| db3a2d68d6 | |||
| 
						 | 
					cb6be16832 | ||
| 
						 | 
					2ab28cf7f7 | ||
| 
						 | 
					263d7d9074 | ||
| 
						 | 
					aca6bc8a20 | ||
| c88caf9906 | |||
| 38246a05ce | |||
| c3d9e5fa6f | |||
| 3b95d0a7cd | |||
| 427f8e8b0b | |||
| 890d4478a3 | |||
| 7d55172d51 | |||
| 39969f0e29 | |||
| 
						 | 
					e7a21b627e | ||
| ada4881d33 | |||
| f21ea46bef | |||
| 3042e0e124 | |||
| 8bb7365819 | |||
| b9b8c51957 | |||
| b6ce43f57a | |||
| 428d3ac285 | |||
| 
						 | 
					141a4ed247 | ||
| 19e7a3e85e | |||
| e372f59715 | |||
| 
						 | 
					b34365534c | ||
| 06cbc26688 | |||
| 25623e74a0 | |||
| 2231ae4106 | |||
| c37b7243b4 | |||
| 
						 | 
					42a696bebd | ||
| 
						 | 
					08846df05e | ||
| 669c85afa2 | |||
| 
						 | 
					db3ff44066 | ||
| a9aa746f81 | |||
| bfc7e9f00b | |||
| fcf8543c06 | |||
| 74b43d9bc1 | |||
| 71217499f2 | |||
| c83b10df38 | |||
| 24b64bce3e | |||
| b921b9c71f | |||
| 9770c7b86c | |||
| deba022043 | |||
| 7a3360d072 | |||
| 097765d92b | |||
| bd02644a2f | |||
| 800dd52519 | |||
| 7fc7e97fe3 | 
@@ -1,27 +1,44 @@
 | 
				
			|||||||
cmake_minimum_required(VERSION 3.21)
 | 
					cmake_minimum_required(VERSION 3.21)
 | 
				
			||||||
project(mnrs-bsp LANGUAGES ASM C)
 | 
					include(CheckLinkerFlag)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					project(mnrs-bsp LANGUAGES ASM C)
 | 
				
			||||||
 | 
					set(LINKER_SCRIPT "${CMAKE_CURRENT_SOURCE_DIR}/env/${BOARD}/link.lds"
 | 
				
			||||||
 | 
					    CACHE FILEPATH "Linker script to use for BSP linking")
 | 
				
			||||||
 | 
					set(BSP_STARTUP "${CMAKE_CURRENT_SOURCE_DIR}/env/start.S"
 | 
				
			||||||
 | 
					    CACHE FILEPATH "Path to the BSP startup assembly file")
 | 
				
			||||||
 | 
					set(BSP_TRAP_HANDLER "${CMAKE_CURRENT_SOURCE_DIR}/env/entry.S"
 | 
				
			||||||
 | 
					    CACHE FILEPATH "Assembly file implementing trap handler")
 | 
				
			||||||
if(NOT DEFINED BOARD)
 | 
					if(NOT DEFINED BOARD)
 | 
				
			||||||
message(FATAL_ERROR "No Board selected")
 | 
					message(FATAL_ERROR "No Board selected")
 | 
				
			||||||
endif()
 | 
					endif()
 | 
				
			||||||
add_compile_definitions("BOARD_${BOARD}")
 | 
					add_compile_definitions("BOARD_${BOARD}")
 | 
				
			||||||
# check if we are building for a testbench, adjust the Base accordingly
 | 
					
 | 
				
			||||||
set(BOARD_BASE ${BOARD})
 | 
					set(TESTBENCHES "rtl" "TGCP")
 | 
				
			||||||
 | 
					list(FIND TESTBENCHES ${BOARD} _index)
 | 
				
			||||||
 | 
					if(NOT _index EQUAL -1)
 | 
				
			||||||
 | 
					    set(BOARD "testbench/${BOARD}")
 | 
				
			||||||
 | 
					endif()
 | 
				
			||||||
 | 
					
 | 
				
			||||||
option(SEMIHOSTING "Enable semihosting support" OFF)
 | 
					option(SEMIHOSTING "Enable semihosting support" OFF)
 | 
				
			||||||
if(SEMIHOSTING)
 | 
					if(SEMIHOSTING)
 | 
				
			||||||
    add_compile_definitions(SEMIHOSTING)
 | 
					    add_compile_definitions(SEMIHOSTING)
 | 
				
			||||||
endif()
 | 
					endif()
 | 
				
			||||||
 | 
					
 | 
				
			||||||
add_library(startup STATIC env/start.S env/entry.S)
 | 
					add_library(startup STATIC ${BSP_STARTUP} ${BSP_TRAP_HANDLER})
 | 
				
			||||||
target_include_directories(startup PUBLIC env include)
 | 
					target_include_directories(startup PUBLIC env include)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
add_subdirectory(libwrap)
 | 
					add_subdirectory(libwrap)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
add_library(bsp STATIC env/${BOARD_BASE}/init.c)
 | 
					add_library(bsp STATIC env/${BOARD}/init.c)
 | 
				
			||||||
target_link_libraries(bsp PUBLIC startup wrap)
 | 
					target_link_libraries(bsp PUBLIC startup wrap)
 | 
				
			||||||
target_include_directories(bsp PUBLIC env/${BOARD_BASE})
 | 
					target_include_directories(bsp PUBLIC env/${BOARD})
 | 
				
			||||||
target_link_options(bsp INTERFACE LINKER:--no-warn-rwx-segments -nostartfiles -T ${CMAKE_CURRENT_SOURCE_DIR}/env/${BOARD_BASE}/link.lds)
 | 
					
 | 
				
			||||||
 | 
					check_linker_flag(C "LINKER:--no-warn-rwx-segments" HAS_NO_WARN_RWX_SEGMENTS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					if(HAS_NO_WARN_RWX_SEGMENTS)
 | 
				
			||||||
 | 
					    target_link_options(bsp INTERFACE LINKER:--no-warn-rwx-segments)
 | 
				
			||||||
 | 
					endif()
 | 
				
			||||||
 | 
					target_link_options(bsp INTERFACE LINKER: -nostartfiles -T ${LINKER_SCRIPT})
 | 
				
			||||||
 | 
					
 | 
				
			||||||
if(SEMIHOSTING)
 | 
					if(SEMIHOSTING)
 | 
				
			||||||
    target_include_directories(bsp INTERFACE include)
 | 
					    target_include_directories(bsp INTERFACE include)
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -52,7 +52,7 @@ set( CMAKE_OBJCOPY      ${RISCV_TOOLCHAIN_BIN_PATH}/${CROSS_COMPILE}objcopy
 | 
				
			|||||||
set( CMAKE_OBJDUMP      ${RISCV_TOOLCHAIN_BIN_PATH}/${CROSS_COMPILE}objdump
 | 
					set( CMAKE_OBJDUMP      ${RISCV_TOOLCHAIN_BIN_PATH}/${CROSS_COMPILE}objdump
 | 
				
			||||||
     CACHE FILEPATH "The toolchain objdump command " FORCE )
 | 
					     CACHE FILEPATH "The toolchain objdump command " FORCE )
 | 
				
			||||||
 | 
					
 | 
				
			||||||
set( CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -march=${RISCV_ARCH} -mabi=${RISCV_ABI}" )
 | 
					set( CMAKE_C_FLAGS "-march=${RISCV_ARCH} -mabi=${RISCV_ABI} -mcmodel=medany" )
 | 
				
			||||||
 | 
					
 | 
				
			||||||
set( CMAKE_C_FLAGS "${CMAKE_C_FLAGS}" CACHE STRING "" )
 | 
					set( CMAKE_C_FLAGS "${CMAKE_C_FLAGS}" CACHE STRING "" )
 | 
				
			||||||
set( CMAKE_CXX_FLAGS "${CMAKE_C_FLAGS}" CACHE STRING "" )
 | 
					set( CMAKE_CXX_FLAGS "${CMAKE_C_FLAGS}" CACHE STRING "" )
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										59
									
								
								cmake/rv64gc.cmake
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										59
									
								
								cmake/rv64gc.cmake
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,59 @@
 | 
				
			|||||||
 | 
					# Look for GCC in path
 | 
				
			||||||
 | 
					# https://xpack.github.io/riscv-none-embed-gcc/
 | 
				
			||||||
 | 
					FIND_FILE( RISCV_XPACK_GCC_COMPILER_EXE "riscv-none-embed-gcc.exe" PATHS ENV INCLUDE)
 | 
				
			||||||
 | 
					FIND_FILE( RISCV_XPACK_GCC_COMPILER "riscv-none-embed-gcc" PATHS ENV INCLUDE)
 | 
				
			||||||
 | 
					# New versions of xpack
 | 
				
			||||||
 | 
					FIND_FILE( RISCV_XPACK_NEW_GCC_COMPILER_EXE "riscv-none-elf-gcc.exe" PATHS ENV INCLUDE)
 | 
				
			||||||
 | 
					FIND_FILE( RISCV_XPACK_NEW_GCC_COMPILER "riscv-none-elf-gcc" PATHS ENV INCLUDE)
 | 
				
			||||||
 | 
					# Look for RISC-V github GCC
 | 
				
			||||||
 | 
					# https://github.com/riscv/riscv-gnu-toolchain
 | 
				
			||||||
 | 
					FIND_FILE( RISCV_XPACK_GCC_COMPILER_EXT "riscv64-unknown-elf-gcc.exe" PATHS ENV INCLUDE)
 | 
				
			||||||
 | 
					FIND_FILE( RISCV_XPACK_GCC_COMPILER "riscv64-unknown-elf-gcc" PATHS ENV INCLUDE)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					# Select which is found
 | 
				
			||||||
 | 
					if (EXISTS ${RISCV_XPACK_NEW_GCC_COMPILER})
 | 
				
			||||||
 | 
					set( RISCV_GCC_COMPILER ${RISCV_XPACK_NEW_GCC_COMPILER})
 | 
				
			||||||
 | 
					elseif (EXISTS ${RISCV_XPACK_GCC_NEW_COMPILER_EXE})
 | 
				
			||||||
 | 
					set( RISCV_GCC_COMPILER ${RISCV_XPACK_NEW_GCC_COMPILER_EXE})
 | 
				
			||||||
 | 
					elseif (EXISTS ${RISCV_XPACK_GCC_COMPILER})
 | 
				
			||||||
 | 
					set( RISCV_GCC_COMPILER ${RISCV_XPACK_GCC_COMPILER})
 | 
				
			||||||
 | 
					elseif (EXISTS ${RISCV_XPACK_GCC_COMPILER_EXE})
 | 
				
			||||||
 | 
					set( RISCV_GCC_COMPILER ${RISCV_XPACK_GCC_COMPILER_EXE})
 | 
				
			||||||
 | 
					elseif (EXISTS ${RISCV_GITHUB_GCC_COMPILER})
 | 
				
			||||||
 | 
					set( RISCV_GCC_COMPILER ${RISCV_GITHUB_GCC_COMPILER})
 | 
				
			||||||
 | 
					elseif (EXISTS ${RISCV_GITHUB_GCC_COMPILER_EXE})
 | 
				
			||||||
 | 
					set( RISCV_GCC_COMPILER ${RISCV_GITHUB_GCC_COMPILER_EXE})
 | 
				
			||||||
 | 
					else()
 | 
				
			||||||
 | 
					message(FATAL_ERROR "RISC-V GCC not found. ${RISCV_GITHUB_GCC_COMPILER} ${RISCV_XPACK_GCC_COMPILER} ${RISCV_GITHUB_GCC_COMPILER_EXE} ${RISCV_XPACK_GCC_COMPILER_EXE}")
 | 
				
			||||||
 | 
					endif()
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					get_filename_component(RISCV_TOOLCHAIN_BIN_PATH ${RISCV_GCC_COMPILER} DIRECTORY)
 | 
				
			||||||
 | 
					get_filename_component(RISCV_TOOLCHAIN_BIN_GCC ${RISCV_GCC_COMPILER} NAME_WE)
 | 
				
			||||||
 | 
					get_filename_component(RISCV_TOOLCHAIN_BIN_EXT ${RISCV_GCC_COMPILER} EXT)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					STRING(REGEX REPLACE "\-gcc" "-" CROSS_COMPILE ${RISCV_TOOLCHAIN_BIN_GCC})
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					# The Generic system name is used for embedded targets (targets without OS)
 | 
				
			||||||
 | 
					set(CMAKE_SYSTEM_NAME Generic )
 | 
				
			||||||
 | 
					set(CMAKE_EXECUTABLE_SUFFIX_C ".elf")
 | 
				
			||||||
 | 
					set(RISCV_ARCH rv64gc )
 | 
				
			||||||
 | 
					set(RISCV_ABI lp64d)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					set(CMAKE_ASM_COMPILER {CROSS_COMPILE}gcc )
 | 
				
			||||||
 | 
					set(CMAKE_AR ${CROSS_COMPILE}ar)
 | 
				
			||||||
 | 
					set(CMAKE_ASM_COMPILER ${CROSS_COMPILE}gcc)
 | 
				
			||||||
 | 
					set(CMAKE_C_COMPILER ${CROSS_COMPILE}gcc)
 | 
				
			||||||
 | 
					set(CMAKE_CXX_COMPILER ${CROSS_COMPILE}g++)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					set( CMAKE_OBJCOPY      ${RISCV_TOOLCHAIN_BIN_PATH}/${CROSS_COMPILE}objcopy
 | 
				
			||||||
 | 
					     CACHE FILEPATH "The toolchain objcopy command " FORCE )
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					set( CMAKE_OBJDUMP      ${RISCV_TOOLCHAIN_BIN_PATH}/${CROSS_COMPILE}objdump
 | 
				
			||||||
 | 
					     CACHE FILEPATH "The toolchain objdump command " FORCE )
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					set( CMAKE_C_FLAGS "-march=${RISCV_ARCH} -mabi=${RISCV_ABI} -mcmodel=medany" )
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					set( CMAKE_C_FLAGS "${CMAKE_C_FLAGS}" CACHE STRING "" )
 | 
				
			||||||
 | 
					set( CMAKE_CXX_FLAGS "${CMAKE_C_FLAGS}" CACHE STRING "" )
 | 
				
			||||||
 | 
					set( CMAKE_ASM_FLAGS "${CMAKE_C_FLAGS}" CACHE STRING "" )
 | 
				
			||||||
							
								
								
									
										6
									
								
								env/common-clang.mk
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										6
									
								
								env/common-clang.mk
									
									
									
									
										vendored
									
									
								
							@@ -63,10 +63,6 @@ $(CXX_OBJS): %.o: %.cpp $(HEADERS)
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
.PHONY: clean
 | 
					.PHONY: clean
 | 
				
			||||||
clean:
 | 
					clean:
 | 
				
			||||||
	rm -f $(TARGET) $(LINK_OBJS)
 | 
						rm -f $(CLEAN_OBJS) $(LIBWRAP) *.a *.hex *.map *.dis *.elf *.o
 | 
				
			||||||
 | 
					 | 
				
			||||||
.PHONY: clean-all
 | 
					 | 
				
			||||||
clean-all:
 | 
					 | 
				
			||||||
	rm -f $(CLEAN_OBJS) $(LIBWRAP)
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
endif
 | 
					endif
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										4
									
								
								env/common-gcc.mk
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										4
									
								
								env/common-gcc.mk
									
									
									
									
										vendored
									
									
								
							@@ -28,7 +28,7 @@ INCLUDES += -I$(PLATFORM_DIR)
 | 
				
			|||||||
INCLUDES += -I$(BSP_BASE)/libwrap/sys/
 | 
					INCLUDES += -I$(BSP_BASE)/libwrap/sys/
 | 
				
			||||||
 | 
					
 | 
				
			||||||
LDFLAGS += -march=$(RISCV_ARCH) -mabi=$(RISCV_ABI)
 | 
					LDFLAGS += -march=$(RISCV_ARCH) -mabi=$(RISCV_ABI)
 | 
				
			||||||
LDFLAGS += -L$(ENV_DIR)
 | 
					LDFLAGS += -L$(ENV_DIR) -L$(PLATFORM_DIR)
 | 
				
			||||||
LD_SCRIPT += -T $(LINKER_SCRIPT) -Wl,--no-warn-rwx-segments -Wl,-Map=$(TARGET).map  -nostartfiles 
 | 
					LD_SCRIPT += -T $(LINKER_SCRIPT) -Wl,--no-warn-rwx-segments -Wl,-Map=$(TARGET).map  -nostartfiles 
 | 
				
			||||||
 | 
					
 | 
				
			||||||
ifneq (,$(findstring specs=nano.specs,$(LDFLAGS), LD_SCRIPT))
 | 
					ifneq (,$(findstring specs=nano.specs,$(LDFLAGS), LD_SCRIPT))
 | 
				
			||||||
@@ -82,6 +82,6 @@ $(CXX_OBJS): %.o: %.cpp $(HEADERS)
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
.PHONY: clean
 | 
					.PHONY: clean
 | 
				
			||||||
clean:
 | 
					clean:
 | 
				
			||||||
	rm -f $(CLEAN_OBJS) $(LIBWRAP) *.a *.hex *.map *.dis *.elf
 | 
						rm -f $(CLEAN_OBJS) $(LIBWRAP) *.a *.hex *.map *.dis *.elf *.o
 | 
				
			||||||
 | 
					
 | 
				
			||||||
endif
 | 
					endif
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										30
									
								
								env/iss/CMakeLists.txt
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										30
									
								
								env/iss/CMakeLists.txt
									
									
									
									
										vendored
									
									
								
							@@ -1,30 +0,0 @@
 | 
				
			|||||||
#cmake_minimum_required(VERSION 3.12)
 | 
					 | 
				
			||||||
project(iss)
 | 
					 | 
				
			||||||
message(STATUS " here in iss")
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
# Create library for ISS board support
 | 
					 | 
				
			||||||
add_library(board_iss STATIC
 | 
					 | 
				
			||||||
    init.c
 | 
					 | 
				
			||||||
    write.c
 | 
					 | 
				
			||||||
)
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
# Include directories
 | 
					 | 
				
			||||||
target_include_directories(board_iss PUBLIC
 | 
					 | 
				
			||||||
    ${BSP_BASE}/include
 | 
					 | 
				
			||||||
    ${BSP_BASE}/env
 | 
					 | 
				
			||||||
    ${CMAKE_CURRENT_SOURCE_DIR}
 | 
					 | 
				
			||||||
)
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
# Set compile options
 | 
					 | 
				
			||||||
target_compile_options(board_iss PRIVATE
 | 
					 | 
				
			||||||
    -march=${RISCV_ARCH}_zicsr_zifencei
 | 
					 | 
				
			||||||
    -mabi=${RISCV_ABI}
 | 
					 | 
				
			||||||
    -mcmodel=medany
 | 
					 | 
				
			||||||
    -ffunction-sections
 | 
					 | 
				
			||||||
    -fdata-sections
 | 
					 | 
				
			||||||
)
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
# Add compile definitions
 | 
					 | 
				
			||||||
target_compile_definitions(board_iss PRIVATE
 | 
					 | 
				
			||||||
    BOARD_${BOARD}
 | 
					 | 
				
			||||||
)
 | 
					 | 
				
			||||||
							
								
								
									
										15
									
								
								env/iss/bsp_read.c
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										15
									
								
								env/iss/bsp_read.c
									
									
									
									
										vendored
									
									
								
							@@ -3,17 +3,4 @@
 | 
				
			|||||||
#include <sys/types.h>
 | 
					#include <sys/types.h>
 | 
				
			||||||
#include <unistd.h>
 | 
					#include <unistd.h>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
ssize_t _bsp_read(int fd, void *ptr, size_t len) {
 | 
					ssize_t _bsp_read(int fd, void *ptr, size_t len) { return EOF; }
 | 
				
			||||||
  uint8_t *current = (uint8_t *)ptr;
 | 
					 | 
				
			||||||
  volatile uint32_t *uart_rx = (uint32_t *)0xFFFF0000;
 | 
					 | 
				
			||||||
  ssize_t result = 0;
 | 
					 | 
				
			||||||
  if (isatty(fd)) {
 | 
					 | 
				
			||||||
    for (current = (uint8_t *)ptr; (current < ((uint8_t *)ptr) + len);
 | 
					 | 
				
			||||||
         current++) {
 | 
					 | 
				
			||||||
      *current = *uart_rx;
 | 
					 | 
				
			||||||
      result++;
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
    return result;
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
  return EOF;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										15
									
								
								env/iss/bsp_write.c
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										15
									
								
								env/iss/bsp_write.c
									
									
									
									
										vendored
									
									
								
							@@ -5,12 +5,19 @@
 | 
				
			|||||||
#include <sys/types.h>
 | 
					#include <sys/types.h>
 | 
				
			||||||
#include <unistd.h>
 | 
					#include <unistd.h>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#include <string.h>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					extern volatile uint64_t tohost;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
ssize_t _bsp_write(int fd, const void *ptr, size_t len) {
 | 
					ssize_t _bsp_write(int fd, const void *ptr, size_t len) {
 | 
				
			||||||
  const uint8_t *current = (const uint8_t *)ptr;
 | 
					
 | 
				
			||||||
  if (isatty(fd)) {
 | 
					  if (isatty(fd)) {
 | 
				
			||||||
    for (size_t jj = 0; jj < len; jj++) {
 | 
					    volatile uint64_t payload[8];
 | 
				
			||||||
      *((uint32_t *)0xFFFF0000) = current[jj];
 | 
					    memset((void *)payload, 0, 8 * sizeof(uint64_t));
 | 
				
			||||||
    }
 | 
					    payload[0] = 64;
 | 
				
			||||||
 | 
					    payload[2] = (uintptr_t)ptr;
 | 
				
			||||||
 | 
					    payload[3] = len;
 | 
				
			||||||
 | 
					    tohost = (uintptr_t)payload;
 | 
				
			||||||
    return len;
 | 
					    return len;
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										39
									
								
								env/iss/link.lds
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										39
									
								
								env/iss/link.lds
									
									
									
									
										vendored
									
									
								
							@@ -5,7 +5,7 @@ ENTRY( _start )
 | 
				
			|||||||
MEMORY
 | 
					MEMORY
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
  flash (rxai!w) : ORIGIN = 0x00000000, LENGTH = 1M
 | 
					  flash (rxai!w) : ORIGIN = 0x00000000, LENGTH = 1M
 | 
				
			||||||
  ram (wxa!ri) :   ORIGIN = 0x10000000, LENGTH = 16K
 | 
					  ram (wxa!ri) :   ORIGIN = 0x20000000, LENGTH = 1M
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
PHDRS
 | 
					PHDRS
 | 
				
			||||||
@@ -13,11 +13,12 @@ PHDRS
 | 
				
			|||||||
  flash PT_LOAD;
 | 
					  flash PT_LOAD;
 | 
				
			||||||
  ram_init PT_LOAD;
 | 
					  ram_init PT_LOAD;
 | 
				
			||||||
  ram PT_NULL;
 | 
					  ram PT_NULL;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
SECTIONS
 | 
					SECTIONS
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
  __stack_size = DEFINED(__stack_size) ? __stack_size : 2K;
 | 
					  __stack_size = DEFINED(__stack_size) ? __stack_size : 8K;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  .init ORIGIN(flash)        :
 | 
					  .init ORIGIN(flash)        :
 | 
				
			||||||
  {
 | 
					  {
 | 
				
			||||||
@@ -48,6 +49,18 @@ SECTIONS
 | 
				
			|||||||
    *(.gnu.linkonce.r.*)
 | 
					    *(.gnu.linkonce.r.*)
 | 
				
			||||||
  } >flash AT>flash :flash
 | 
					  } >flash AT>flash :flash
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  .srodata        :
 | 
				
			||||||
 | 
					  {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    PROVIDE( _gp = . + 0x800 );
 | 
				
			||||||
 | 
					    *(.srodata.cst16)
 | 
				
			||||||
 | 
					    *(.srodata.cst8)
 | 
				
			||||||
 | 
					    *(.srodata.cst4)
 | 
				
			||||||
 | 
					    *(.srodata.cst2)
 | 
				
			||||||
 | 
					    *(.srodata .srodata.*)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  } >flash AT>flash :flash
 | 
				
			||||||
 | 
					  
 | 
				
			||||||
  . = ALIGN(4);
 | 
					  . = ALIGN(4);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  .preinit_array  :
 | 
					  .preinit_array  :
 | 
				
			||||||
@@ -123,23 +136,16 @@ SECTIONS
 | 
				
			|||||||
    *(.gnu.linkonce.d.*)
 | 
					    *(.gnu.linkonce.d.*)
 | 
				
			||||||
  } >ram AT>flash :ram_init
 | 
					  } >ram AT>flash :ram_init
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  .srodata        :
 | 
					 
 | 
				
			||||||
  {
 | 
					 | 
				
			||||||
    PROVIDE( _gp = . + 0x800 );
 | 
					 | 
				
			||||||
    *(.srodata.cst16)
 | 
					 | 
				
			||||||
    *(.srodata.cst8)
 | 
					 | 
				
			||||||
    *(.srodata.cst4)
 | 
					 | 
				
			||||||
    *(.srodata.cst2)
 | 
					 | 
				
			||||||
    *(.srodata .srodata.*)
 | 
					 | 
				
			||||||
  } >ram AT>flash :ram_init
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  .sdata          :
 | 
					  .sdata          :
 | 
				
			||||||
  {
 | 
					  {    
 | 
				
			||||||
 | 
					     
 | 
				
			||||||
    __SDATA_BEGIN__ = .;
 | 
					    __SDATA_BEGIN__ = .;
 | 
				
			||||||
    *(.sdata .sdata.*)
 | 
					    *(.sdata .sdata.*)
 | 
				
			||||||
    *(.gnu.linkonce.s.*)
 | 
					    *(.gnu.linkonce.s.*)
 | 
				
			||||||
  } >ram AT>flash :ram_init
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  } >ram AT>flash :ram_init
 | 
				
			||||||
 | 
					 
 | 
				
			||||||
  . = ALIGN(4);
 | 
					  . = ALIGN(4);
 | 
				
			||||||
  PROVIDE( _edata = . );
 | 
					  PROVIDE( _edata = . );
 | 
				
			||||||
  PROVIDE( edata = . );
 | 
					  PROVIDE( edata = . );
 | 
				
			||||||
@@ -169,6 +175,7 @@ SECTIONS
 | 
				
			|||||||
    PROVIDE( _sp = . );
 | 
					    PROVIDE( _sp = . );
 | 
				
			||||||
  } >ram AT>ram :ram
 | 
					  } >ram AT>ram :ram
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  PROVIDE( tohost = 0xfffffff0 );
 | 
					  PROVIDE( tohost = . );
 | 
				
			||||||
  PROVIDE( fromhost = 0xfffffff8 );
 | 
					  PROVIDE( fromhost = . + 8 );
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										3
									
								
								env/iss/platform.h
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										3
									
								
								env/iss/platform.h
									
									
									
									
										vendored
									
									
								
							@@ -22,6 +22,9 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
#include <stdint.h>
 | 
					#include <stdint.h>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					extern volatile uintptr_t tohost;
 | 
				
			||||||
 | 
					extern volatile uintptr_t fromhost;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
void init_pll(void);
 | 
					void init_pll(void);
 | 
				
			||||||
unsigned long get_cpu_freq(void);
 | 
					unsigned long get_cpu_freq(void);
 | 
				
			||||||
unsigned long get_timer_freq(void);
 | 
					unsigned long get_timer_freq(void);
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										21
									
								
								env/moonlight/bsp_read.c
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										21
									
								
								env/moonlight/bsp_read.c
									
									
									
									
										vendored
									
									
										Normal file
									
								
							@@ -0,0 +1,21 @@
 | 
				
			|||||||
 | 
					#include "platform.h"
 | 
				
			||||||
 | 
					#include <stdint.h>
 | 
				
			||||||
 | 
					#include <stdio.h>
 | 
				
			||||||
 | 
					#include <sys/types.h>
 | 
				
			||||||
 | 
					#include <unistd.h>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					ssize_t _bsp_read(int fd, void *ptr, size_t len) {
 | 
				
			||||||
 | 
					  uint8_t *current = (uint8_t *)ptr;
 | 
				
			||||||
 | 
					  ssize_t result = 0;
 | 
				
			||||||
 | 
					  if (isatty(fd)) {
 | 
				
			||||||
 | 
					    for (current = (uint8_t *)ptr; (current < ((uint8_t *)ptr) + len) &&
 | 
				
			||||||
 | 
					                                   (get_uart_rx_tx_reg_rx_avail(uart) > 0);
 | 
				
			||||||
 | 
					         current++) {
 | 
				
			||||||
 | 
					      *current = uart_read(uart);
 | 
				
			||||||
 | 
					      result++;
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    return result;
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					  return EOF;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
							
								
								
									
										21
									
								
								env/moonlight/bsp_write.c
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										21
									
								
								env/moonlight/bsp_write.c
									
									
									
									
										vendored
									
									
										Normal file
									
								
							@@ -0,0 +1,21 @@
 | 
				
			|||||||
 | 
					/* See LICENSE of license details. */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#include "platform.h"
 | 
				
			||||||
 | 
					#include <errno.h>
 | 
				
			||||||
 | 
					#include <stdint.h>
 | 
				
			||||||
 | 
					#include <sys/types.h>
 | 
				
			||||||
 | 
					#include <unistd.h>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					ssize_t _bsp_write(int fd, const void *ptr, size_t len) {
 | 
				
			||||||
 | 
					  const uint8_t *current = (const uint8_t *)ptr;
 | 
				
			||||||
 | 
					  if (isatty(fd)) {
 | 
				
			||||||
 | 
					    for (size_t jj = 0; jj < len; jj++) {
 | 
				
			||||||
 | 
					      uart_write(uart, current[jj]);
 | 
				
			||||||
 | 
					      if (current[jj] == '\n') {
 | 
				
			||||||
 | 
					        uart_write(uart, '\r');
 | 
				
			||||||
 | 
					      }
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					    return len;
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					  return 1;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
							
								
								
									
										167
									
								
								env/moonlight/camera.lds
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										167
									
								
								env/moonlight/camera.lds
									
									
									
									
										vendored
									
									
										Normal file
									
								
							@@ -0,0 +1,167 @@
 | 
				
			|||||||
 | 
					OUTPUT_ARCH( "riscv" )
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					ENTRY( _start )
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					MEMORY
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
					  rom (rxai!w) : ORIGIN = 0x80000000, LENGTH = 16k
 | 
				
			||||||
 | 
					  ram (wxa!ri) : ORIGIN = 0x80004000, LENGTH = 112k
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					PHDRS
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
					  rom PT_LOAD;
 | 
				
			||||||
 | 
					  ram_init PT_LOAD;
 | 
				
			||||||
 | 
					  ram PT_NULL;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					SECTIONS
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
					  __stack_size = DEFINED(__stack_size) ? __stack_size : 2K;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  .init ORIGIN(rom)        :
 | 
				
			||||||
 | 
					  {
 | 
				
			||||||
 | 
					    KEEP (*(SORT_NONE(.init)))
 | 
				
			||||||
 | 
					  } >rom AT>rom :rom
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  .text           :
 | 
				
			||||||
 | 
					  {
 | 
				
			||||||
 | 
					    *(.text.unlikely .text.unlikely.*)
 | 
				
			||||||
 | 
					    *(.text.startup .text.startup.*)
 | 
				
			||||||
 | 
					    *(.text .text.*)
 | 
				
			||||||
 | 
					    *(.gnu.linkonce.t.*)
 | 
				
			||||||
 | 
					  } >rom AT>rom :rom
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  .fini           :
 | 
				
			||||||
 | 
					  {
 | 
				
			||||||
 | 
					    KEEP (*(SORT_NONE(.fini)))
 | 
				
			||||||
 | 
					  } >rom AT>rom :rom
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  PROVIDE (__etext = .);
 | 
				
			||||||
 | 
					  PROVIDE (_etext = .);
 | 
				
			||||||
 | 
					  PROVIDE (etext = .);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  .rodata         :
 | 
				
			||||||
 | 
					  {
 | 
				
			||||||
 | 
					    *(.rdata)
 | 
				
			||||||
 | 
					    *(.rodata .rodata.*)
 | 
				
			||||||
 | 
					    *(.gnu.linkonce.r.*)
 | 
				
			||||||
 | 
					  } >rom AT>rom :rom
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  . = ALIGN(4);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  .preinit_array  :
 | 
				
			||||||
 | 
					  {
 | 
				
			||||||
 | 
					    PROVIDE_HIDDEN (__preinit_array_start = .);
 | 
				
			||||||
 | 
					    KEEP (*(.preinit_array))
 | 
				
			||||||
 | 
					    PROVIDE_HIDDEN (__preinit_array_end = .);
 | 
				
			||||||
 | 
					  } >rom AT>rom :rom
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  .init_array     :
 | 
				
			||||||
 | 
					  {
 | 
				
			||||||
 | 
					    PROVIDE_HIDDEN (__init_array_start = .);
 | 
				
			||||||
 | 
					    KEEP (*(SORT_BY_INIT_PRIORITY(.init_array.*) SORT_BY_INIT_PRIORITY(.ctors.*)))
 | 
				
			||||||
 | 
					    KEEP (*(.init_array EXCLUDE_FILE (*crtbegin.o *crtbegin?.o *crtend.o *crtend?.o ) .ctors))
 | 
				
			||||||
 | 
					    PROVIDE_HIDDEN (__init_array_end = .);
 | 
				
			||||||
 | 
					  } >rom AT>rom :rom
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  .fini_array     :
 | 
				
			||||||
 | 
					  {
 | 
				
			||||||
 | 
					    PROVIDE_HIDDEN (__fini_array_start = .);
 | 
				
			||||||
 | 
					    KEEP (*(SORT_BY_INIT_PRIORITY(.fini_array.*) SORT_BY_INIT_PRIORITY(.dtors.*)))
 | 
				
			||||||
 | 
					    KEEP (*(.fini_array EXCLUDE_FILE (*crtbegin.o *crtbegin?.o *crtend.o *crtend?.o ) .dtors))
 | 
				
			||||||
 | 
					    PROVIDE_HIDDEN (__fini_array_end = .);
 | 
				
			||||||
 | 
					  } >rom AT>rom :rom
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  .ctors          :
 | 
				
			||||||
 | 
					  {
 | 
				
			||||||
 | 
					    /* gcc uses crtbegin.o to find the start of
 | 
				
			||||||
 | 
					       the constructors, so we make sure it is
 | 
				
			||||||
 | 
					       first.  Because this is a wildcard, it
 | 
				
			||||||
 | 
					       doesn't matter if the user does not
 | 
				
			||||||
 | 
					       actually link against crtbegin.o; the
 | 
				
			||||||
 | 
					       linker won't look for a file to match a
 | 
				
			||||||
 | 
					       wildcard.  The wildcard also means that it
 | 
				
			||||||
 | 
					       doesn't matter which directory crtbegin.o
 | 
				
			||||||
 | 
					       is in.  */
 | 
				
			||||||
 | 
					    KEEP (*crtbegin.o(.ctors))
 | 
				
			||||||
 | 
					    KEEP (*crtbegin?.o(.ctors))
 | 
				
			||||||
 | 
					    /* We don't want to include the .ctor section from
 | 
				
			||||||
 | 
					       the crtend.o file until after the sorted ctors.
 | 
				
			||||||
 | 
					       The .ctor section from the crtend file contains the
 | 
				
			||||||
 | 
					       end of ctors marker and it must be last */
 | 
				
			||||||
 | 
					    KEEP (*(EXCLUDE_FILE (*crtend.o *crtend?.o ) .ctors))
 | 
				
			||||||
 | 
					    KEEP (*(SORT(.ctors.*)))
 | 
				
			||||||
 | 
					    KEEP (*(.ctors))
 | 
				
			||||||
 | 
					  } >rom AT>rom :rom
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  .dtors          :
 | 
				
			||||||
 | 
					  {
 | 
				
			||||||
 | 
					    KEEP (*crtbegin.o(.dtors))
 | 
				
			||||||
 | 
					    KEEP (*crtbegin?.o(.dtors))
 | 
				
			||||||
 | 
					    KEEP (*(EXCLUDE_FILE (*crtend.o *crtend?.o ) .dtors))
 | 
				
			||||||
 | 
					    KEEP (*(SORT(.dtors.*)))
 | 
				
			||||||
 | 
					    KEEP (*(.dtors))
 | 
				
			||||||
 | 
					  } >rom AT>rom :rom
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  .lalign         :
 | 
				
			||||||
 | 
					  {
 | 
				
			||||||
 | 
					    . = ALIGN(4);
 | 
				
			||||||
 | 
					    PROVIDE( _data_lma = . );
 | 
				
			||||||
 | 
					  } >rom AT>rom :rom
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  .dalign         :
 | 
				
			||||||
 | 
					  {
 | 
				
			||||||
 | 
					    . = ALIGN(4);
 | 
				
			||||||
 | 
					    PROVIDE( _data = . );
 | 
				
			||||||
 | 
					  } >ram AT>rom :ram_init
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  .data          :
 | 
				
			||||||
 | 
					  {
 | 
				
			||||||
 | 
					    *(.data .data.*)
 | 
				
			||||||
 | 
					    *(.gnu.linkonce.d.*)
 | 
				
			||||||
 | 
					  } >ram AT>rom :ram_init
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  .srodata        :
 | 
				
			||||||
 | 
					  {
 | 
				
			||||||
 | 
					    PROVIDE( __global_pointer$ = . + 0x800 );
 | 
				
			||||||
 | 
					    *(.srodata.cst16)
 | 
				
			||||||
 | 
					    *(.srodata.cst8)
 | 
				
			||||||
 | 
					    *(.srodata.cst4)
 | 
				
			||||||
 | 
					    *(.srodata.cst2)
 | 
				
			||||||
 | 
					    *(.srodata .srodata.*)
 | 
				
			||||||
 | 
					  } >ram AT>rom :ram_init
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  .sdata          :
 | 
				
			||||||
 | 
					  {
 | 
				
			||||||
 | 
					    *(.sdata .sdata.*)
 | 
				
			||||||
 | 
					    *(.gnu.linkonce.s.*)
 | 
				
			||||||
 | 
					  } >ram AT>rom :ram_init
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  . = ALIGN(4);
 | 
				
			||||||
 | 
					  PROVIDE( _edata = . );
 | 
				
			||||||
 | 
					  PROVIDE( edata = . );
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  PROVIDE( _fbss = . );
 | 
				
			||||||
 | 
					  PROVIDE( __bss_start = . );
 | 
				
			||||||
 | 
					  .bss            :
 | 
				
			||||||
 | 
					  {
 | 
				
			||||||
 | 
					    *(.sbss*)
 | 
				
			||||||
 | 
					    *(.gnu.linkonce.sb.*)
 | 
				
			||||||
 | 
					    *(.bss .bss.*)
 | 
				
			||||||
 | 
					    *(.gnu.linkonce.b.*)
 | 
				
			||||||
 | 
					    *(COMMON)
 | 
				
			||||||
 | 
					    . = ALIGN(4);
 | 
				
			||||||
 | 
					  } >ram AT>ram :ram
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  . = ALIGN(8);
 | 
				
			||||||
 | 
					  PROVIDE( _end = . );
 | 
				
			||||||
 | 
					  PROVIDE( end = . );
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  .stack ORIGIN(ram) + LENGTH(ram) - __stack_size :
 | 
				
			||||||
 | 
					  {
 | 
				
			||||||
 | 
					    PROVIDE( _heap_end = . );
 | 
				
			||||||
 | 
					    . = __stack_size;
 | 
				
			||||||
 | 
					    PROVIDE( _sp = . );
 | 
				
			||||||
 | 
					  } >ram AT>ram :ram
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
							
								
								
									
										33
									
								
								env/moonlight/link.lds
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										33
									
								
								env/moonlight/link.lds
									
									
									
									
										vendored
									
									
								
							@@ -4,10 +4,10 @@ ENTRY( _start )
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
MEMORY
 | 
					MEMORY
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
  rom   (rxai!w) : ORIGIN = 0xFFFFE000, LENGTH = 4k
 | 
					  rom   (rxai!w) : ORIGIN = 0xFFFFE000, LENGTH = 2k
 | 
				
			||||||
  flash (rxai!w) : ORIGIN = 0xE0000000, LENGTH = 4M
 | 
					  flash (rxai!w) : ORIGIN = 0xE0000000, LENGTH = 16M
 | 
				
			||||||
  ram (wxa!ri) :   ORIGIN = 0x80000000, LENGTH = 32K
 | 
					  ram   (wxa!ri) : ORIGIN = 0xC0000000, LENGTH = 128K
 | 
				
			||||||
  dram (wxa!ri) :  ORIGIN = 0x00000000, LENGTH = 256M
 | 
					  dram  (wxa!ri) : ORIGIN = 0x00000000, LENGTH = 2048M
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
PHDRS
 | 
					PHDRS
 | 
				
			||||||
@@ -107,6 +107,11 @@ SECTIONS
 | 
				
			|||||||
    KEEP (*(.dtors))
 | 
					    KEEP (*(.dtors))
 | 
				
			||||||
  } >flash AT>flash :flash
 | 
					  } >flash AT>flash :flash
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  .dummy          :
 | 
				
			||||||
 | 
					  {
 | 
				
			||||||
 | 
						*(.comment.*)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
  .lalign         :
 | 
					  .lalign         :
 | 
				
			||||||
  {
 | 
					  {
 | 
				
			||||||
    . = ALIGN(4);
 | 
					    . = ALIGN(4);
 | 
				
			||||||
@@ -126,6 +131,13 @@ SECTIONS
 | 
				
			|||||||
    *(.gnu.linkonce.d.*)
 | 
					    *(.gnu.linkonce.d.*)
 | 
				
			||||||
  } >ram AT>flash :ram_init
 | 
					  } >ram AT>flash :ram_init
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  .sdata          :
 | 
				
			||||||
 | 
					  {
 | 
				
			||||||
 | 
					    __SDATA_BEGIN__ = .;
 | 
				
			||||||
 | 
					    *(.sdata .sdata.*)
 | 
				
			||||||
 | 
					    *(.gnu.linkonce.s.*)
 | 
				
			||||||
 | 
					  } >ram AT>flash :ram_init
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  .srodata        :
 | 
					  .srodata        :
 | 
				
			||||||
  {
 | 
					  {
 | 
				
			||||||
    *(.srodata.cst16)
 | 
					    *(.srodata.cst16)
 | 
				
			||||||
@@ -135,13 +147,6 @@ SECTIONS
 | 
				
			|||||||
    *(.srodata .srodata.*)
 | 
					    *(.srodata .srodata.*)
 | 
				
			||||||
  } >ram AT>flash :ram_init
 | 
					  } >ram AT>flash :ram_init
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  .sdata          :
 | 
					 | 
				
			||||||
  {
 | 
					 | 
				
			||||||
    __SDATA_BEGIN__ = .;
 | 
					 | 
				
			||||||
    *(.sdata .sdata.*)
 | 
					 | 
				
			||||||
    *(.gnu.linkonce.s.*)
 | 
					 | 
				
			||||||
  } >ram AT>flash :ram_init
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  . = ALIGN(4);
 | 
					  . = ALIGN(4);
 | 
				
			||||||
  PROVIDE( _edata = . );
 | 
					  PROVIDE( _edata = . );
 | 
				
			||||||
  PROVIDE( edata = . );
 | 
					  PROVIDE( edata = . );
 | 
				
			||||||
@@ -171,6 +176,8 @@ SECTIONS
 | 
				
			|||||||
    PROVIDE( _sp = . );
 | 
					    PROVIDE( _sp = . );
 | 
				
			||||||
  } >ram AT>ram :ram
 | 
					  } >ram AT>ram :ram
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  PROVIDE( tohost = 0xfffffff0 );
 | 
					
 | 
				
			||||||
  PROVIDE( fromhost = 0xfffffff8 );
 | 
					  
 | 
				
			||||||
 | 
					  PROVIDE( tohost = . );
 | 
				
			||||||
 | 
					  PROVIDE( fromhost = . + 8 );
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										59
									
								
								env/moonlight/platform.h
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										59
									
								
								env/moonlight/platform.h
									
									
									
									
										vendored
									
									
								
							@@ -4,43 +4,50 @@
 | 
				
			|||||||
#define _ISS_PLATFORM_H
 | 
					#define _ISS_PLATFORM_H
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#if __riscv_xlen == 32
 | 
					#if __riscv_xlen == 32
 | 
				
			||||||
#define MCAUSE_INT         0x80000000UL
 | 
					#define MCAUSE_INT 0x80000000UL
 | 
				
			||||||
#define MCAUSE_CAUSE       0x000003FFUL
 | 
					#define MCAUSE_CAUSE 0x000003FFUL
 | 
				
			||||||
#else
 | 
					#else
 | 
				
			||||||
#define MCAUSE_INT         0x8000000000000000UL
 | 
					#define MCAUSE_INT 0x8000000000000000UL
 | 
				
			||||||
#define MCAUSE_CAUSE       0x00000000000003FFUL
 | 
					#define MCAUSE_CAUSE 0x00000000000003FFUL
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define APB_BUS
 | 
					#define APB_BUS
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include "ehrenberg/devices/gpio.h"
 | 
					#include "minres/devices/aclint.h"
 | 
				
			||||||
#include "ehrenberg/devices/uart.h"
 | 
					#include "minres/devices/camera.h"
 | 
				
			||||||
#include "ehrenberg/devices/timer.h"
 | 
					#include "minres/devices/dma.h"
 | 
				
			||||||
#include "ehrenberg/devices/aclint.h"
 | 
					#include "minres/devices/gen/sysctrl.h"
 | 
				
			||||||
#include "ehrenberg/devices/qspi.h"
 | 
					#include "minres/devices/gpio.h"
 | 
				
			||||||
#include "ehrenberg/devices/i2s.h"
 | 
					#include "minres/devices/i2s.h"
 | 
				
			||||||
#include "ehrenberg/devices/camera.h"
 | 
					#include "minres/devices/msg_if.h"
 | 
				
			||||||
#include "ehrenberg/devices/dma.h"
 | 
					#include "minres/devices/qspi.h"
 | 
				
			||||||
#include "ehrenberg/devices/msg_if.h"
 | 
					#include "minres/devices/timer.h"
 | 
				
			||||||
 | 
					#include "minres/devices/uart.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define PERIPH(TYPE, ADDR) ((volatile TYPE*) (ADDR))
 | 
					#define PERIPH(TYPE, ADDR) ((volatile TYPE *)(ADDR))
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define APB_BASE 0xF0000000
 | 
					#define APB_BASE 0xF0000000
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define gpio        PERIPH(gpio_t,         APB_BASE+0x0000)
 | 
					#define gpio PERIPH(gpio_t, APB_BASE + 0x0000)
 | 
				
			||||||
#define uart        PERIPH(uart_t,         APB_BASE+0x1000)
 | 
					#define uart PERIPH(uart_t, APB_BASE + 0x01000)
 | 
				
			||||||
#define timer       PERIPH(timercounter_t, APB_BASE+0x20000)
 | 
					#define timer PERIPH(timercounter_t, APB_BASE + 0x20000)
 | 
				
			||||||
#define aclint      PERIPH(aclint_t,       APB_BASE+0x30000)
 | 
					#define aclint PERIPH(aclint_t, APB_BASE + 0x30000)
 | 
				
			||||||
#define irq         PERIPH(irq_t,          APB_BASE+0x40000)
 | 
					#define sysctrl PERIPH(sysctrl_t, APB_BASE + 0x40000)
 | 
				
			||||||
#define qspi        PERIPH(qspi_t,         APB_BASE+0x50000)
 | 
					#define qspi PERIPH(qspi_t, APB_BASE + 0x50000)
 | 
				
			||||||
#define i2s         PERIPH(i2s_t,          APB_BASE+0x90000)
 | 
					#define i2s PERIPH(i2s_t, APB_BASE + 0x90000)
 | 
				
			||||||
#define camera      PERIPH(camera_t,       APB_BASE+0xA0000)
 | 
					#define camera PERIPH(camera_t, APB_BASE + 0xA0000)
 | 
				
			||||||
#define dma         PERIPH(dma_t,          APB_BASE+0xB0000)
 | 
					#define dma PERIPH(dma_t, APB_BASE + 0xB0000)
 | 
				
			||||||
#define msgif       PERIPH(msgif_t,        APB_BASE+0xC0000)
 | 
					#define msgif PERIPH(mkcontrolclusterstreamcontroller_t, APB_BASE + 0xC0000)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#include "minres/devices/fki_cluster_info.h"
 | 
				
			||||||
 | 
					#include "minres/devices/flexki_messages.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define XIP_START_LOC 0xE0040000
 | 
					#ifndef XIP_START_LOC
 | 
				
			||||||
#define RAM_START_LOC 0x80000000
 | 
					#define XIP_START_LOC 0xE0000000
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
 | 
					#ifndef RAM_START_LOC
 | 
				
			||||||
 | 
					#define RAM_START_LOC 0xC0000000
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// Misc
 | 
					// Misc
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										22
									
								
								env/moonlight/ram.lds
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										22
									
								
								env/moonlight/ram.lds
									
									
									
									
										vendored
									
									
								
							@@ -4,8 +4,8 @@ ENTRY( _start )
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
MEMORY
 | 
					MEMORY
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
  rom (rxai!w) : ORIGIN = 0x80000000, LENGTH = 128k
 | 
					  rom (rxai!w) : ORIGIN = 0xC0000000, LENGTH = 64k
 | 
				
			||||||
  ram (wxa!ri) : ORIGIN = 0x80004000, LENGTH = 128k
 | 
					  ram (wxa!ri) : ORIGIN = 0xC0010000, LENGTH = 64k
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
PHDRS
 | 
					PHDRS
 | 
				
			||||||
@@ -118,10 +118,18 @@ SECTIONS
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
  .data          :
 | 
					  .data          :
 | 
				
			||||||
  {
 | 
					  {
 | 
				
			||||||
 | 
					    __DATA_BEGIN__ = .;
 | 
				
			||||||
    *(.data .data.*)
 | 
					    *(.data .data.*)
 | 
				
			||||||
    *(.gnu.linkonce.d.*)
 | 
					    *(.gnu.linkonce.d.*)
 | 
				
			||||||
  } >ram AT>rom :ram_init
 | 
					  } >ram AT>rom :ram_init
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  .sdata          :
 | 
				
			||||||
 | 
					  {
 | 
				
			||||||
 | 
					    __SDATA_BEGIN__ = .;
 | 
				
			||||||
 | 
					    *(.sdata .sdata.*)
 | 
				
			||||||
 | 
					    *(.gnu.linkonce.s.*)
 | 
				
			||||||
 | 
					  } >ram AT>rom :ram_init
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  .srodata        :
 | 
					  .srodata        :
 | 
				
			||||||
  {
 | 
					  {
 | 
				
			||||||
    PROVIDE( __global_pointer$ = . + 0x800 );
 | 
					    PROVIDE( __global_pointer$ = . + 0x800 );
 | 
				
			||||||
@@ -132,12 +140,6 @@ SECTIONS
 | 
				
			|||||||
    *(.srodata .srodata.*)
 | 
					    *(.srodata .srodata.*)
 | 
				
			||||||
  } >ram AT>rom :ram_init
 | 
					  } >ram AT>rom :ram_init
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  .sdata          :
 | 
					 | 
				
			||||||
  {
 | 
					 | 
				
			||||||
    *(.sdata .sdata.*)
 | 
					 | 
				
			||||||
    *(.gnu.linkonce.s.*)
 | 
					 | 
				
			||||||
  } >ram AT>rom :ram_init
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  . = ALIGN(4);
 | 
					  . = ALIGN(4);
 | 
				
			||||||
  PROVIDE( _edata = . );
 | 
					  PROVIDE( _edata = . );
 | 
				
			||||||
  PROVIDE( edata = . );
 | 
					  PROVIDE( edata = . );
 | 
				
			||||||
@@ -155,6 +157,7 @@ SECTIONS
 | 
				
			|||||||
  } >ram AT>ram :ram
 | 
					  } >ram AT>ram :ram
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  . = ALIGN(8);
 | 
					  . = ALIGN(8);
 | 
				
			||||||
 | 
					  __BSS_END__ = .;
 | 
				
			||||||
  PROVIDE( _end = . );
 | 
					  PROVIDE( _end = . );
 | 
				
			||||||
  PROVIDE( end = . );
 | 
					  PROVIDE( end = . );
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -164,4 +167,7 @@ SECTIONS
 | 
				
			|||||||
    . = __stack_size;
 | 
					    . = __stack_size;
 | 
				
			||||||
    PROVIDE( _sp = . );
 | 
					    PROVIDE( _sp = . );
 | 
				
			||||||
  } >ram AT>ram :ram
 | 
					  } >ram AT>ram :ram
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  PROVIDE( tohost = 0xfffffff0 );
 | 
				
			||||||
 | 
					  PROVIDE( fromhost = 0xfffffff8 );
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										21
									
								
								env/moonlight/rom.lds
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										21
									
								
								env/moonlight/rom.lds
									
									
									
									
										vendored
									
									
								
							@@ -4,8 +4,8 @@ ENTRY( _start )
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
MEMORY
 | 
					MEMORY
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
  rom (rxai!w) : ORIGIN = 0xF0080000, LENGTH = 4k
 | 
					  rom (rxai!w) : ORIGIN = 0xF0080000, LENGTH = 2k
 | 
				
			||||||
  ram (wxa!ri) : ORIGIN = 0x80000000, LENGTH = 32k
 | 
					  ram (wxa!ri) : ORIGIN = 0xC0000000, LENGTH = 128k
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
PHDRS
 | 
					PHDRS
 | 
				
			||||||
@@ -118,13 +118,20 @@ SECTIONS
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
  .data          :
 | 
					  .data          :
 | 
				
			||||||
  {
 | 
					  {
 | 
				
			||||||
 | 
					    __DATA_BEGIN__ = .;
 | 
				
			||||||
    *(.data .data.*)
 | 
					    *(.data .data.*)
 | 
				
			||||||
    *(.gnu.linkonce.d.*)
 | 
					    *(.gnu.linkonce.d.*)
 | 
				
			||||||
  } >ram AT>rom :ram_init
 | 
					  } >ram AT>rom :ram_init
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  .sdata          :
 | 
				
			||||||
 | 
					  {
 | 
				
			||||||
 | 
					    __SDATA_BEGIN__ = .;
 | 
				
			||||||
 | 
					    *(.sdata .sdata.*)
 | 
				
			||||||
 | 
					    *(.gnu.linkonce.s.*)
 | 
				
			||||||
 | 
					  } >ram AT>rom :ram_init
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  .srodata        :
 | 
					  .srodata        :
 | 
				
			||||||
  {
 | 
					  {
 | 
				
			||||||
    PROVIDE( __global_pointer$ = . + 0x800 );
 | 
					 | 
				
			||||||
    *(.srodata.cst16)
 | 
					    *(.srodata.cst16)
 | 
				
			||||||
    *(.srodata.cst8)
 | 
					    *(.srodata.cst8)
 | 
				
			||||||
    *(.srodata.cst4)
 | 
					    *(.srodata.cst4)
 | 
				
			||||||
@@ -132,12 +139,6 @@ SECTIONS
 | 
				
			|||||||
    *(.srodata .srodata.*)
 | 
					    *(.srodata .srodata.*)
 | 
				
			||||||
  } >ram AT>rom :ram_init
 | 
					  } >ram AT>rom :ram_init
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  .sdata          :
 | 
					 | 
				
			||||||
  {
 | 
					 | 
				
			||||||
    *(.sdata .sdata.*)
 | 
					 | 
				
			||||||
    *(.gnu.linkonce.s.*)
 | 
					 | 
				
			||||||
  } >ram AT>rom :ram_init
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  . = ALIGN(4);
 | 
					  . = ALIGN(4);
 | 
				
			||||||
  PROVIDE( _edata = . );
 | 
					  PROVIDE( _edata = . );
 | 
				
			||||||
  PROVIDE( edata = . );
 | 
					  PROVIDE( edata = . );
 | 
				
			||||||
@@ -155,6 +156,8 @@ SECTIONS
 | 
				
			|||||||
  } >ram AT>ram :ram
 | 
					  } >ram AT>ram :ram
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  . = ALIGN(8);
 | 
					  . = ALIGN(8);
 | 
				
			||||||
 | 
					  __BSS_END__ = .;
 | 
				
			||||||
 | 
					  __global_pointer$ = MIN(__SDATA_BEGIN__ + 0x800,  MAX(__DATA_BEGIN__ + 0x800, __BSS_END__ - 0x800));
 | 
				
			||||||
  PROVIDE( _end = . );
 | 
					  PROVIDE( _end = . );
 | 
				
			||||||
  PROVIDE( end = . );
 | 
					  PROVIDE( end = . );
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										180
									
								
								env/moonlight/spi_flash.lds
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										180
									
								
								env/moonlight/spi_flash.lds
									
									
									
									
										vendored
									
									
										Normal file
									
								
							@@ -0,0 +1,180 @@
 | 
				
			|||||||
 | 
					OUTPUT_ARCH( "riscv" )
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					ENTRY( _start )
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					MEMORY
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
					  flash (rxai!w) : ORIGIN = 0xE0000000, LENGTH = 16M
 | 
				
			||||||
 | 
					  ram   (wxa!ri) : ORIGIN = 0xC0000000, LENGTH = 128K
 | 
				
			||||||
 | 
					  dram  (wxa!ri) : ORIGIN = 0x00000000, LENGTH = 2048M
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					PHDRS
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
					  flash PT_LOAD;
 | 
				
			||||||
 | 
					  ram_init PT_LOAD;
 | 
				
			||||||
 | 
					  ram PT_NULL;
 | 
				
			||||||
 | 
					  dram PT_NULL;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					SECTIONS
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
					  __stack_size = DEFINED(__stack_size) ? __stack_size : 2K;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  .init ORIGIN(flash)        :
 | 
				
			||||||
 | 
					  {
 | 
				
			||||||
 | 
					    KEEP (*(SORT_NONE(.init)))
 | 
				
			||||||
 | 
					  } >flash AT>flash :flash
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  .text           :
 | 
				
			||||||
 | 
					  {
 | 
				
			||||||
 | 
					    *(.text.unlikely .text.unlikely.*)
 | 
				
			||||||
 | 
					    *(.text.startup .text.startup.*)
 | 
				
			||||||
 | 
					    *(.text .text.*)
 | 
				
			||||||
 | 
					    *(.gnu.linkonce.t.*)
 | 
				
			||||||
 | 
					  } >flash AT>flash :flash
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  .fini           :
 | 
				
			||||||
 | 
					  {
 | 
				
			||||||
 | 
					    KEEP (*(SORT_NONE(.fini)))
 | 
				
			||||||
 | 
					  } >flash AT>flash :flash
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  PROVIDE (__etext = .);
 | 
				
			||||||
 | 
					  PROVIDE (_etext = .);
 | 
				
			||||||
 | 
					  PROVIDE (etext = .);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  .rodata         :
 | 
				
			||||||
 | 
					  {
 | 
				
			||||||
 | 
					    *(.rdata)
 | 
				
			||||||
 | 
					    *(.rodata .rodata.*)
 | 
				
			||||||
 | 
					    *(.gnu.linkonce.r.*)
 | 
				
			||||||
 | 
					  } >flash AT>flash :flash
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  . = ALIGN(4);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  .preinit_array  :
 | 
				
			||||||
 | 
					  {
 | 
				
			||||||
 | 
					    PROVIDE_HIDDEN (__preinit_array_start = .);
 | 
				
			||||||
 | 
					    KEEP (*(.preinit_array))
 | 
				
			||||||
 | 
					    PROVIDE_HIDDEN (__preinit_array_end = .);
 | 
				
			||||||
 | 
					  } >flash AT>flash :flash
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  .init_array     :
 | 
				
			||||||
 | 
					  {
 | 
				
			||||||
 | 
					    PROVIDE_HIDDEN (__init_array_start = .);
 | 
				
			||||||
 | 
					    KEEP (*(SORT_BY_INIT_PRIORITY(.init_array.*) SORT_BY_INIT_PRIORITY(.ctors.*)))
 | 
				
			||||||
 | 
					    KEEP (*(.init_array EXCLUDE_FILE (*crtbegin.o *crtbegin?.o *crtend.o *crtend?.o ) .ctors))
 | 
				
			||||||
 | 
					    PROVIDE_HIDDEN (__init_array_end = .);
 | 
				
			||||||
 | 
					  } >flash AT>flash :flash
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  .fini_array     :
 | 
				
			||||||
 | 
					  {
 | 
				
			||||||
 | 
					    PROVIDE_HIDDEN (__fini_array_start = .);
 | 
				
			||||||
 | 
					    KEEP (*(SORT_BY_INIT_PRIORITY(.fini_array.*) SORT_BY_INIT_PRIORITY(.dtors.*)))
 | 
				
			||||||
 | 
					    KEEP (*(.fini_array EXCLUDE_FILE (*crtbegin.o *crtbegin?.o *crtend.o *crtend?.o ) .dtors))
 | 
				
			||||||
 | 
					    PROVIDE_HIDDEN (__fini_array_end = .);
 | 
				
			||||||
 | 
					  } >flash AT>flash :flash
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  .ctors          :
 | 
				
			||||||
 | 
					  {
 | 
				
			||||||
 | 
					    /* gcc uses crtbegin.o to find the start of
 | 
				
			||||||
 | 
					       the constructors, so we make sure it is
 | 
				
			||||||
 | 
					       first.  Because this is a wildcard, it
 | 
				
			||||||
 | 
					       doesn't matter if the user does not
 | 
				
			||||||
 | 
					       actually link against crtbegin.o; the
 | 
				
			||||||
 | 
					       linker won't look for a file to match a
 | 
				
			||||||
 | 
					       wildcard.  The wildcard also means that it
 | 
				
			||||||
 | 
					       doesn't matter which directory crtbegin.o
 | 
				
			||||||
 | 
					       is in.  */
 | 
				
			||||||
 | 
					    KEEP (*crtbegin.o(.ctors))
 | 
				
			||||||
 | 
					    KEEP (*crtbegin?.o(.ctors))
 | 
				
			||||||
 | 
					    /* We don't want to include the .ctor section from
 | 
				
			||||||
 | 
					       the crtend.o file until after the sorted ctors.
 | 
				
			||||||
 | 
					       The .ctor section from the crtend file contains the
 | 
				
			||||||
 | 
					       end of ctors marker and it must be last */
 | 
				
			||||||
 | 
					    KEEP (*(EXCLUDE_FILE (*crtend.o *crtend?.o ) .ctors))
 | 
				
			||||||
 | 
					    KEEP (*(SORT(.ctors.*)))
 | 
				
			||||||
 | 
					    KEEP (*(.ctors))
 | 
				
			||||||
 | 
					  } >flash AT>flash :flash
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  .dtors          :
 | 
				
			||||||
 | 
					  {
 | 
				
			||||||
 | 
					    KEEP (*crtbegin.o(.dtors))
 | 
				
			||||||
 | 
					    KEEP (*crtbegin?.o(.dtors))
 | 
				
			||||||
 | 
					    KEEP (*(EXCLUDE_FILE (*crtend.o *crtend?.o ) .dtors))
 | 
				
			||||||
 | 
					    KEEP (*(SORT(.dtors.*)))
 | 
				
			||||||
 | 
					    KEEP (*(.dtors))
 | 
				
			||||||
 | 
					  } >flash AT>flash :flash
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  .dummy          :
 | 
				
			||||||
 | 
					  {
 | 
				
			||||||
 | 
						*(.comment.*)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					  .lalign         :
 | 
				
			||||||
 | 
					  {
 | 
				
			||||||
 | 
					    . = ALIGN(4);
 | 
				
			||||||
 | 
					    PROVIDE( _data_lma = . );
 | 
				
			||||||
 | 
					  } >flash AT>flash :flash
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  .dalign         :
 | 
				
			||||||
 | 
					  {
 | 
				
			||||||
 | 
					    . = ALIGN(4);
 | 
				
			||||||
 | 
					    PROVIDE( _data = . );
 | 
				
			||||||
 | 
					  } >ram AT>flash :ram_init
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  .data          :
 | 
				
			||||||
 | 
					  {
 | 
				
			||||||
 | 
					    __DATA_BEGIN__ = .;
 | 
				
			||||||
 | 
					    *(.data .data.*)
 | 
				
			||||||
 | 
					    *(.gnu.linkonce.d.*)
 | 
				
			||||||
 | 
					  } >ram AT>flash :ram_init
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  .sdata          :
 | 
				
			||||||
 | 
					  {
 | 
				
			||||||
 | 
					    __SDATA_BEGIN__ = .;
 | 
				
			||||||
 | 
					    *(.sdata .sdata.*)
 | 
				
			||||||
 | 
					    *(.gnu.linkonce.s.*)
 | 
				
			||||||
 | 
					  } >ram AT>flash :ram_init
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  .srodata        :
 | 
				
			||||||
 | 
					  {
 | 
				
			||||||
 | 
					    *(.srodata.cst16)
 | 
				
			||||||
 | 
					    *(.srodata.cst8)
 | 
				
			||||||
 | 
					    *(.srodata.cst4)
 | 
				
			||||||
 | 
					    *(.srodata.cst2)
 | 
				
			||||||
 | 
					    *(.srodata .srodata.*)
 | 
				
			||||||
 | 
					  } >ram AT>flash :ram_init
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  . = ALIGN(4);
 | 
				
			||||||
 | 
					  PROVIDE( _edata = . );
 | 
				
			||||||
 | 
					  PROVIDE( edata = . );
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  PROVIDE( _fbss = . );
 | 
				
			||||||
 | 
					  PROVIDE( __bss_start = . );
 | 
				
			||||||
 | 
					  .bss            :
 | 
				
			||||||
 | 
					  {
 | 
				
			||||||
 | 
					    *(.sbss*)
 | 
				
			||||||
 | 
					    *(.gnu.linkonce.sb.*)
 | 
				
			||||||
 | 
					    *(.bss .bss.*)
 | 
				
			||||||
 | 
					    *(.gnu.linkonce.b.*)
 | 
				
			||||||
 | 
					    *(COMMON)
 | 
				
			||||||
 | 
					    . = ALIGN(4);
 | 
				
			||||||
 | 
					  } >ram AT>ram :ram
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  . = ALIGN(8);
 | 
				
			||||||
 | 
					  __BSS_END__ = .;
 | 
				
			||||||
 | 
					  __global_pointer$ = MIN(__SDATA_BEGIN__ + 0x800,  MAX(__DATA_BEGIN__ + 0x800, __BSS_END__ - 0x800));
 | 
				
			||||||
 | 
					  PROVIDE( _end = . );
 | 
				
			||||||
 | 
					  PROVIDE( end = . );
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  .stack ORIGIN(ram) + LENGTH(ram) - __stack_size :
 | 
				
			||||||
 | 
					  {
 | 
				
			||||||
 | 
					    PROVIDE( _heap_end = . );
 | 
				
			||||||
 | 
						PROVIDE( tohost = . );
 | 
				
			||||||
 | 
					  	PROVIDE( fromhost = . );
 | 
				
			||||||
 | 
					    . = __stack_size;
 | 
				
			||||||
 | 
					    PROVIDE( _sp = . );
 | 
				
			||||||
 | 
					  } >ram AT>ram :ram
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
							
								
								
									
										1
									
								
								env/riscv_vp/.gitignore
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								env/riscv_vp/.gitignore
									
									
									
									
										vendored
									
									
										Normal file
									
								
							@@ -0,0 +1 @@
 | 
				
			|||||||
 | 
					/*.o
 | 
				
			||||||
							
								
								
									
										21
									
								
								env/riscv_vp/bsp_read.c
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										21
									
								
								env/riscv_vp/bsp_read.c
									
									
									
									
										vendored
									
									
										Normal file
									
								
							@@ -0,0 +1,21 @@
 | 
				
			|||||||
 | 
					#include "platform.h"
 | 
				
			||||||
 | 
					#include <stdint.h>
 | 
				
			||||||
 | 
					#include <stdio.h>
 | 
				
			||||||
 | 
					#include <sys/types.h>
 | 
				
			||||||
 | 
					#include <unistd.h>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					ssize_t _bsp_read(int fd, void *ptr, size_t len) {
 | 
				
			||||||
 | 
					  uint8_t *current = (uint8_t *)ptr;
 | 
				
			||||||
 | 
					  ssize_t result = 0;
 | 
				
			||||||
 | 
					  if (isatty(fd)) {
 | 
				
			||||||
 | 
					    for (current = (uint8_t *)ptr; (current < ((uint8_t *)ptr) + len) &&
 | 
				
			||||||
 | 
					                                   (get_uart_rx_tx_reg_rx_avail(uart) > 0);
 | 
				
			||||||
 | 
					         current++) {
 | 
				
			||||||
 | 
					      *current = uart_read(uart);
 | 
				
			||||||
 | 
					      result++;
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    return result;
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					  return EOF;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
							
								
								
									
										21
									
								
								env/riscv_vp/bsp_write.c
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										21
									
								
								env/riscv_vp/bsp_write.c
									
									
									
									
										vendored
									
									
										Normal file
									
								
							@@ -0,0 +1,21 @@
 | 
				
			|||||||
 | 
					/* See LICENSE of license details. */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#include "platform.h"
 | 
				
			||||||
 | 
					#include <errno.h>
 | 
				
			||||||
 | 
					#include <stdint.h>
 | 
				
			||||||
 | 
					#include <sys/types.h>
 | 
				
			||||||
 | 
					#include <unistd.h>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					ssize_t _bsp_write(int fd, const void *ptr, size_t len) {
 | 
				
			||||||
 | 
					  const uint8_t *current = (const uint8_t *)ptr;
 | 
				
			||||||
 | 
					  if (isatty(fd)) {
 | 
				
			||||||
 | 
					    for (size_t jj = 0; jj < len; jj++) {
 | 
				
			||||||
 | 
					      uart_write(uart, current[jj]);
 | 
				
			||||||
 | 
					      if (current[jj] == '\n') {
 | 
				
			||||||
 | 
					        uart_write(uart, '\r');
 | 
				
			||||||
 | 
					      }
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					    return len;
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					  return 1;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
							
								
								
									
										177
									
								
								env/riscv_vp/flash.lds
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										177
									
								
								env/riscv_vp/flash.lds
									
									
									
									
										vendored
									
									
										Normal file
									
								
							@@ -0,0 +1,177 @@
 | 
				
			|||||||
 | 
					OUTPUT_ARCH( "riscv" )
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					ENTRY( _start )
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					INCLUDE memory_map.ld
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					PHDRS
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
					  flash PT_LOAD;
 | 
				
			||||||
 | 
					  ram_init PT_LOAD;
 | 
				
			||||||
 | 
					  ram PT_NULL;
 | 
				
			||||||
 | 
					  dram PT_NULL;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					SECTIONS
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
					  __stack_size = DEFINED(__stack_size) ? __stack_size : 2K;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  .init ORIGIN(flash)        :
 | 
				
			||||||
 | 
					  {
 | 
				
			||||||
 | 
					    KEEP (*(SORT_NONE(.init)))
 | 
				
			||||||
 | 
					  } >flash AT>flash :flash
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  .text           :
 | 
				
			||||||
 | 
					  {
 | 
				
			||||||
 | 
					    *(.text.unlikely .text.unlikely.*)
 | 
				
			||||||
 | 
					    *(.text.startup .text.startup.*)
 | 
				
			||||||
 | 
					    *(.text .text.*)
 | 
				
			||||||
 | 
					    *(.gnu.linkonce.t.*)
 | 
				
			||||||
 | 
					  } >flash AT>flash :flash
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  .fini           :
 | 
				
			||||||
 | 
					  {
 | 
				
			||||||
 | 
					    KEEP (*(SORT_NONE(.fini)))
 | 
				
			||||||
 | 
					  } >flash AT>flash :flash
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  PROVIDE (__etext = .);
 | 
				
			||||||
 | 
					  PROVIDE (_etext = .);
 | 
				
			||||||
 | 
					  PROVIDE (etext = .);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  .rodata         :
 | 
				
			||||||
 | 
					  {
 | 
				
			||||||
 | 
					    *(.rdata)
 | 
				
			||||||
 | 
					    *(.rodata .rodata.*)
 | 
				
			||||||
 | 
					    *(.gnu.linkonce.r.*)
 | 
				
			||||||
 | 
					  } >flash AT>flash :flash
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  . = ALIGN(4);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  .preinit_array  :
 | 
				
			||||||
 | 
					  {
 | 
				
			||||||
 | 
					    PROVIDE_HIDDEN (__preinit_array_start = .);
 | 
				
			||||||
 | 
					    KEEP (*(.preinit_array))
 | 
				
			||||||
 | 
					    PROVIDE_HIDDEN (__preinit_array_end = .);
 | 
				
			||||||
 | 
					  } >flash AT>flash :flash
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  .init_array     :
 | 
				
			||||||
 | 
					  {
 | 
				
			||||||
 | 
					    PROVIDE_HIDDEN (__init_array_start = .);
 | 
				
			||||||
 | 
					    KEEP (*(SORT_BY_INIT_PRIORITY(.init_array.*) SORT_BY_INIT_PRIORITY(.ctors.*)))
 | 
				
			||||||
 | 
					    KEEP (*(.init_array EXCLUDE_FILE (*crtbegin.o *crtbegin?.o *crtend.o *crtend?.o ) .ctors))
 | 
				
			||||||
 | 
					    PROVIDE_HIDDEN (__init_array_end = .);
 | 
				
			||||||
 | 
					  } >flash AT>flash :flash
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  .fini_array     :
 | 
				
			||||||
 | 
					  {
 | 
				
			||||||
 | 
					    PROVIDE_HIDDEN (__fini_array_start = .);
 | 
				
			||||||
 | 
					    KEEP (*(SORT_BY_INIT_PRIORITY(.fini_array.*) SORT_BY_INIT_PRIORITY(.dtors.*)))
 | 
				
			||||||
 | 
					    KEEP (*(.fini_array EXCLUDE_FILE (*crtbegin.o *crtbegin?.o *crtend.o *crtend?.o ) .dtors))
 | 
				
			||||||
 | 
					    PROVIDE_HIDDEN (__fini_array_end = .);
 | 
				
			||||||
 | 
					  } >flash AT>flash :flash
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  .ctors          :
 | 
				
			||||||
 | 
					  {
 | 
				
			||||||
 | 
					    /* gcc uses crtbegin.o to find the start of
 | 
				
			||||||
 | 
					       the constructors, so we make sure it is
 | 
				
			||||||
 | 
					       first.  Because this is a wildcard, it
 | 
				
			||||||
 | 
					       doesn't matter if the user does not
 | 
				
			||||||
 | 
					       actually link against crtbegin.o; the
 | 
				
			||||||
 | 
					       linker won't look for a file to match a
 | 
				
			||||||
 | 
					       wildcard.  The wildcard also means that it
 | 
				
			||||||
 | 
					       doesn't matter which directory crtbegin.o
 | 
				
			||||||
 | 
					       is in.  */
 | 
				
			||||||
 | 
					    KEEP (*crtbegin.o(.ctors))
 | 
				
			||||||
 | 
					    KEEP (*crtbegin?.o(.ctors))
 | 
				
			||||||
 | 
					    /* We don't want to include the .ctor section from
 | 
				
			||||||
 | 
					       the crtend.o file until after the sorted ctors.
 | 
				
			||||||
 | 
					       The .ctor section from the crtend file contains the
 | 
				
			||||||
 | 
					       end of ctors marker and it must be last */
 | 
				
			||||||
 | 
					    KEEP (*(EXCLUDE_FILE (*crtend.o *crtend?.o ) .ctors))
 | 
				
			||||||
 | 
					    KEEP (*(SORT(.ctors.*)))
 | 
				
			||||||
 | 
					    KEEP (*(.ctors))
 | 
				
			||||||
 | 
					  } >flash AT>flash :flash
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  .dtors          :
 | 
				
			||||||
 | 
					  {
 | 
				
			||||||
 | 
					    KEEP (*crtbegin.o(.dtors))
 | 
				
			||||||
 | 
					    KEEP (*crtbegin?.o(.dtors))
 | 
				
			||||||
 | 
					    KEEP (*(EXCLUDE_FILE (*crtend.o *crtend?.o ) .dtors))
 | 
				
			||||||
 | 
					    KEEP (*(SORT(.dtors.*)))
 | 
				
			||||||
 | 
					    KEEP (*(.dtors))
 | 
				
			||||||
 | 
					  } >flash AT>flash :flash
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  .dummy          :
 | 
				
			||||||
 | 
					  {
 | 
				
			||||||
 | 
						*(.comment.*)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					  .lalign         :
 | 
				
			||||||
 | 
					  {
 | 
				
			||||||
 | 
					    . = ALIGN(4);
 | 
				
			||||||
 | 
					    PROVIDE( _data_lma = . );
 | 
				
			||||||
 | 
					  } >flash AT>flash :flash
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  .dalign         :
 | 
				
			||||||
 | 
					  {
 | 
				
			||||||
 | 
					    . = ALIGN(4);
 | 
				
			||||||
 | 
					    PROVIDE( _data = . );
 | 
				
			||||||
 | 
					  } >ram AT>flash :ram_init
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  .data          :
 | 
				
			||||||
 | 
					  {
 | 
				
			||||||
 | 
					    __DATA_BEGIN__ = .;
 | 
				
			||||||
 | 
					    *(.data .data.*)
 | 
				
			||||||
 | 
					    *(.gnu.linkonce.d.*)
 | 
				
			||||||
 | 
					  } >ram AT>flash :ram_init
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  .sdata          :
 | 
				
			||||||
 | 
					  {
 | 
				
			||||||
 | 
					    __SDATA_BEGIN__ = .;
 | 
				
			||||||
 | 
					    *(.sdata .sdata.*)
 | 
				
			||||||
 | 
					    *(.gnu.linkonce.s.*)
 | 
				
			||||||
 | 
					  } >ram AT>flash :ram_init
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  .srodata        :
 | 
				
			||||||
 | 
					  {
 | 
				
			||||||
 | 
					    *(.srodata.cst16)
 | 
				
			||||||
 | 
					    *(.srodata.cst8)
 | 
				
			||||||
 | 
					    *(.srodata.cst4)
 | 
				
			||||||
 | 
					    *(.srodata.cst2)
 | 
				
			||||||
 | 
					    *(.srodata .srodata.*)
 | 
				
			||||||
 | 
					  } >ram AT>flash :ram_init
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  . = ALIGN(4);
 | 
				
			||||||
 | 
					  PROVIDE( _edata = . );
 | 
				
			||||||
 | 
					  PROVIDE( edata = . );
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  PROVIDE( _fbss = . );
 | 
				
			||||||
 | 
					  PROVIDE( __bss_start = . );
 | 
				
			||||||
 | 
					  .bss            :
 | 
				
			||||||
 | 
					  {
 | 
				
			||||||
 | 
					    *(.sbss*)
 | 
				
			||||||
 | 
					    *(.gnu.linkonce.sb.*)
 | 
				
			||||||
 | 
					    *(.bss .bss.*)
 | 
				
			||||||
 | 
					    *(.gnu.linkonce.b.*)
 | 
				
			||||||
 | 
					    *(COMMON)
 | 
				
			||||||
 | 
					    . = ALIGN(4);
 | 
				
			||||||
 | 
					  } >ram AT>ram :ram
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  . = ALIGN(8);
 | 
				
			||||||
 | 
					  __BSS_END__ = .;
 | 
				
			||||||
 | 
					  __global_pointer$ = MIN(__SDATA_BEGIN__ + 0x800,  MAX(__DATA_BEGIN__ + 0x800, __BSS_END__ - 0x800));
 | 
				
			||||||
 | 
					  PROVIDE( _end = . );
 | 
				
			||||||
 | 
					  PROVIDE( end = . );
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  .stack ORIGIN(ram) + LENGTH(ram) - __stack_size :
 | 
				
			||||||
 | 
					  {
 | 
				
			||||||
 | 
					    PROVIDE( _heap_end = . );
 | 
				
			||||||
 | 
					    . = __stack_size;
 | 
				
			||||||
 | 
					    PROVIDE( _sp = . );
 | 
				
			||||||
 | 
					  } >ram AT>ram :ram
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  
 | 
				
			||||||
 | 
					  PROVIDE( tohost = . );
 | 
				
			||||||
 | 
					  PROVIDE( fromhost = . + 8 );
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
							
								
								
									
										138
									
								
								env/riscv_vp/init.c
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										138
									
								
								env/riscv_vp/init.c
									
									
									
									
										vendored
									
									
										Normal file
									
								
							@@ -0,0 +1,138 @@
 | 
				
			|||||||
 | 
					#include <stdint.h>
 | 
				
			||||||
 | 
					#include <stdio.h>
 | 
				
			||||||
 | 
					#include <unistd.h>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#include "platform.h"
 | 
				
			||||||
 | 
					#include "encoding.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					extern int main(int argc, char** argv);
 | 
				
			||||||
 | 
					extern void trap_entry(void);
 | 
				
			||||||
 | 
					#define IRQ_M_SOFT   3
 | 
				
			||||||
 | 
					#define IRQ_M_TIMER  7
 | 
				
			||||||
 | 
					#define IRQ_M_EXT    11
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define NUM_INTERRUPTS 16
 | 
				
			||||||
 | 
					#define MTIMER_NEXT_TICK_INC 1000
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					void handle_m_ext_interrupt(void);
 | 
				
			||||||
 | 
					void handle_m_time_interrupt(void);
 | 
				
			||||||
 | 
					uint32_t handle_trap(uint32_t mcause, uint32_t mepc, uint32_t sp);
 | 
				
			||||||
 | 
					void default_handler(void);
 | 
				
			||||||
 | 
					void _init(void);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					typedef void (*my_interrupt_function_ptr_t) (void);
 | 
				
			||||||
 | 
					my_interrupt_function_ptr_t localISR[NUM_INTERRUPTS] __attribute__((aligned(64)));
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					static unsigned long mtime_lo(void)
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
					    unsigned long ret;
 | 
				
			||||||
 | 
					    __asm volatile("rdtime %0":"=r"(ret));
 | 
				
			||||||
 | 
					    return ret;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#if __riscv_xlen==32
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					static uint32_t mtime_hi(void)
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
					    unsigned long ret;
 | 
				
			||||||
 | 
					    __asm volatile("rdtimeh %0":"=r"(ret));
 | 
				
			||||||
 | 
					    return ret;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					uint64_t get_timer_value(void)
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
					  while (1) {
 | 
				
			||||||
 | 
					    uint32_t hi = mtime_hi();
 | 
				
			||||||
 | 
					    uint32_t lo = mtime_lo();
 | 
				
			||||||
 | 
					    if (hi == mtime_hi())
 | 
				
			||||||
 | 
					      return ((uint64_t)hi << 32) | lo;
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#elif __riscv_xlen==64
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					uint64_t get_timer_value()
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
					  return mtime_lo();
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					unsigned long get_timer_freq()
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
					  return 32768;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					unsigned long get_cpu_freq()
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
					  return 100000000;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					void init_pll(void){
 | 
				
			||||||
 | 
					    //TODO: implement initialization
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					static void uart_init(size_t baud_rate)
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
					  //TODO: implement initialization
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					void __attribute__((weak)) handle_m_ext_interrupt(){
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					void __attribute__((weak)) handle_m_time_interrupt(){
 | 
				
			||||||
 | 
					  uint64_t time = get_aclint_mtime(aclint);
 | 
				
			||||||
 | 
					  time+=MTIMER_NEXT_TICK_INC;
 | 
				
			||||||
 | 
					  set_aclint_mtimecmp(aclint, time);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					void __attribute__((weak)) default_handler(void) {
 | 
				
			||||||
 | 
					  puts("default handler\n");
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					void __attribute__((weak)) interrupt_handler(unsigned) {
 | 
				
			||||||
 | 
					  puts("interrupt handler\n");
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					uint32_t handle_trap(uint32_t mcause, uint32_t mepc, uint32_t sp){
 | 
				
			||||||
 | 
					  if ((mcause & MCAUSE_INT)) {
 | 
				
			||||||
 | 
					    if ((mcause & MCAUSE_CAUSE) == IRQ_M_EXT) {
 | 
				
			||||||
 | 
					      handle_m_ext_interrupt();
 | 
				
			||||||
 | 
					    } else if (((mcause & MCAUSE_CAUSE) == IRQ_M_TIMER)){ 
 | 
				
			||||||
 | 
					      handle_m_time_interrupt();
 | 
				
			||||||
 | 
					    } else {
 | 
				
			||||||
 | 
					      interrupt_handler(mcause& ~MCAUSE_INT);
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					  } else {
 | 
				
			||||||
 | 
					    write(1, "trap\n", 5);
 | 
				
			||||||
 | 
					    _exit(1 + mcause);
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					  return mepc;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					void _init()
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
					  
 | 
				
			||||||
 | 
					#ifndef NO_INIT
 | 
				
			||||||
 | 
					  init_pll();
 | 
				
			||||||
 | 
					  uart_init(115200);
 | 
				
			||||||
 | 
					  printf("core freq at %lu Hz\n", get_cpu_freq());
 | 
				
			||||||
 | 
					  write_csr(mtvec, &trap_entry);
 | 
				
			||||||
 | 
					  if (read_csr(misa) & (1 << ('F' - 'A'))) { // if F extension is present
 | 
				
			||||||
 | 
					    write_csr(mstatus, MSTATUS_FS); // allow FPU instructions without trapping
 | 
				
			||||||
 | 
					    write_csr(fcsr, 0); // initialize rounding mode, undefined at reset
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					  int i=0;
 | 
				
			||||||
 | 
					  while(i<NUM_INTERRUPTS)  {
 | 
				
			||||||
 | 
					    localISR[i++] = default_handler;
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
 | 
					  
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					void _fini(void)
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
							
								
								
									
										7
									
								
								env/riscv_vp/memory_map.ld
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										7
									
								
								env/riscv_vp/memory_map.ld
									
									
									
									
										vendored
									
									
										Normal file
									
								
							@@ -0,0 +1,7 @@
 | 
				
			|||||||
 | 
					MEMORY
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
					  ram   (wxa!ri) : ORIGIN = 0x00000000, LENGTH = 128K
 | 
				
			||||||
 | 
					  rom   (rxai!w) : ORIGIN = 0x10080000, LENGTH = 8k
 | 
				
			||||||
 | 
					  flash (rxai!w) : ORIGIN = 0x20000000, LENGTH = 16M
 | 
				
			||||||
 | 
					  dram  (wxa!ri) : ORIGIN = 0x40000000, LENGTH = 2048M
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
							
								
								
									
										48
									
								
								env/riscv_vp/platform.h
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										48
									
								
								env/riscv_vp/platform.h
									
									
									
									
										vendored
									
									
										Normal file
									
								
							@@ -0,0 +1,48 @@
 | 
				
			|||||||
 | 
					// See LICENSE for license details.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#ifndef _ISS_PLATFORM_H
 | 
				
			||||||
 | 
					#define _ISS_PLATFORM_H
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#if __riscv_xlen == 32
 | 
				
			||||||
 | 
					#define MCAUSE_INT 0x80000000UL
 | 
				
			||||||
 | 
					#define MCAUSE_CAUSE 0x000003FFUL
 | 
				
			||||||
 | 
					#else
 | 
				
			||||||
 | 
					#define MCAUSE_INT 0x8000000000000000UL
 | 
				
			||||||
 | 
					#define MCAUSE_CAUSE 0x00000000000003FFUL
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define APB_BUS
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#include "minres/devices/aclint.h"
 | 
				
			||||||
 | 
					#include "minres/devices/dma.h"
 | 
				
			||||||
 | 
					#include "minres/devices/gen/sysctrl.h"
 | 
				
			||||||
 | 
					#include "minres/devices/gpio.h"
 | 
				
			||||||
 | 
					#include "minres/devices/i2s.h"
 | 
				
			||||||
 | 
					#include "minres/devices/qspi.h"
 | 
				
			||||||
 | 
					#include "minres/devices/timer.h"
 | 
				
			||||||
 | 
					#include "minres/devices/uart.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define PERIPH(TYPE, ADDR) ((volatile TYPE*)(ADDR))
 | 
				
			||||||
 | 
					// values from memory_map.ld
 | 
				
			||||||
 | 
					#define XIP_START_LOC 0x20000000
 | 
				
			||||||
 | 
					#define RAM_START_LOC 0x00000000
 | 
				
			||||||
 | 
					#define APB_BASE 0x10000000
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define gpio PERIPH(gpio_t, APB_BASE + 0x0000)
 | 
				
			||||||
 | 
					#define uart PERIPH(uart_t, APB_BASE + 0x01000)
 | 
				
			||||||
 | 
					#define timer PERIPH(timercounter_t, APB_BASE + 0x20000)
 | 
				
			||||||
 | 
					#define aclint PERIPH(aclint_t, APB_BASE + 0x30000)
 | 
				
			||||||
 | 
					#define sysctrl PERIPH(sysctrl_t, APB_BASE + 0x40000)
 | 
				
			||||||
 | 
					#define qspi PERIPH(qspi_t, APB_BASE + 0x50000)
 | 
				
			||||||
 | 
					#define i2s PERIPH(i2s_t, APB_BASE + 0x90000)
 | 
				
			||||||
 | 
					#define dma PERIPH(dma_t, APB_BASE + 0xB0000)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					// Misc
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#include <stdint.h>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					void init_pll(void);
 | 
				
			||||||
 | 
					unsigned long get_cpu_freq(void);
 | 
				
			||||||
 | 
					unsigned long get_timer_freq(void);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#endif /* _ISS_PLATFORM_H */
 | 
				
			||||||
							
								
								
									
										177
									
								
								env/riscv_vp/rom.lds
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										177
									
								
								env/riscv_vp/rom.lds
									
									
									
									
										vendored
									
									
										Normal file
									
								
							@@ -0,0 +1,177 @@
 | 
				
			|||||||
 | 
					OUTPUT_ARCH( "riscv" )
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					ENTRY( _start )
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					INCLUDE memory_map.ld
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					PHDRS
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
					  rom PT_LOAD;
 | 
				
			||||||
 | 
					  ram_init PT_LOAD;
 | 
				
			||||||
 | 
					  ram PT_NULL;
 | 
				
			||||||
 | 
					  dram PT_NULL;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					SECTIONS
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
					  __stack_size = DEFINED(__stack_size) ? __stack_size : 2K;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  .init ORIGIN(rom)        :
 | 
				
			||||||
 | 
					  {
 | 
				
			||||||
 | 
					    KEEP (*(SORT_NONE(.init)))
 | 
				
			||||||
 | 
					  } >rom AT>rom :rom
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  .text           :
 | 
				
			||||||
 | 
					  {
 | 
				
			||||||
 | 
					    *(.text.unlikely .text.unlikely.*)
 | 
				
			||||||
 | 
					    *(.text.startup .text.startup.*)
 | 
				
			||||||
 | 
					    *(.text .text.*)
 | 
				
			||||||
 | 
					    *(.gnu.linkonce.t.*)
 | 
				
			||||||
 | 
					  } >rom AT>rom :rom
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  .fini           :
 | 
				
			||||||
 | 
					  {
 | 
				
			||||||
 | 
					    KEEP (*(SORT_NONE(.fini)))
 | 
				
			||||||
 | 
					  } >rom AT>rom :rom
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  PROVIDE (__etext = .);
 | 
				
			||||||
 | 
					  PROVIDE (_etext = .);
 | 
				
			||||||
 | 
					  PROVIDE (etext = .);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  .rodata         :
 | 
				
			||||||
 | 
					  {
 | 
				
			||||||
 | 
					    *(.rdata)
 | 
				
			||||||
 | 
					    *(.rodata .rodata.*)
 | 
				
			||||||
 | 
					    *(.gnu.linkonce.r.*)
 | 
				
			||||||
 | 
					  } >rom AT>rom :rom
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  . = ALIGN(4);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  .preinit_array  :
 | 
				
			||||||
 | 
					  {
 | 
				
			||||||
 | 
					    PROVIDE_HIDDEN (__preinit_array_start = .);
 | 
				
			||||||
 | 
					    KEEP (*(.preinit_array))
 | 
				
			||||||
 | 
					    PROVIDE_HIDDEN (__preinit_array_end = .);
 | 
				
			||||||
 | 
					  } >rom AT>rom :rom
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  .init_array     :
 | 
				
			||||||
 | 
					  {
 | 
				
			||||||
 | 
					    PROVIDE_HIDDEN (__init_array_start = .);
 | 
				
			||||||
 | 
					    KEEP (*(SORT_BY_INIT_PRIORITY(.init_array.*) SORT_BY_INIT_PRIORITY(.ctors.*)))
 | 
				
			||||||
 | 
					    KEEP (*(.init_array EXCLUDE_FILE (*crtbegin.o *crtbegin?.o *crtend.o *crtend?.o ) .ctors))
 | 
				
			||||||
 | 
					    PROVIDE_HIDDEN (__init_array_end = .);
 | 
				
			||||||
 | 
					  } >rom AT>rom :rom
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  .fini_array     :
 | 
				
			||||||
 | 
					  {
 | 
				
			||||||
 | 
					    PROVIDE_HIDDEN (__fini_array_start = .);
 | 
				
			||||||
 | 
					    KEEP (*(SORT_BY_INIT_PRIORITY(.fini_array.*) SORT_BY_INIT_PRIORITY(.dtors.*)))
 | 
				
			||||||
 | 
					    KEEP (*(.fini_array EXCLUDE_FILE (*crtbegin.o *crtbegin?.o *crtend.o *crtend?.o ) .dtors))
 | 
				
			||||||
 | 
					    PROVIDE_HIDDEN (__fini_array_end = .);
 | 
				
			||||||
 | 
					  } >rom AT>rom :rom
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  .ctors          :
 | 
				
			||||||
 | 
					  {
 | 
				
			||||||
 | 
					    /* gcc uses crtbegin.o to find the start of
 | 
				
			||||||
 | 
					       the constructors, so we make sure it is
 | 
				
			||||||
 | 
					       first.  Because this is a wildcard, it
 | 
				
			||||||
 | 
					       doesn't matter if the user does not
 | 
				
			||||||
 | 
					       actually link against crtbegin.o; the
 | 
				
			||||||
 | 
					       linker won't look for a file to match a
 | 
				
			||||||
 | 
					       wildcard.  The wildcard also means that it
 | 
				
			||||||
 | 
					       doesn't matter which directory crtbegin.o
 | 
				
			||||||
 | 
					       is in.  */
 | 
				
			||||||
 | 
					    KEEP (*crtbegin.o(.ctors))
 | 
				
			||||||
 | 
					    KEEP (*crtbegin?.o(.ctors))
 | 
				
			||||||
 | 
					    /* We don't want to include the .ctor section from
 | 
				
			||||||
 | 
					       the crtend.o file until after the sorted ctors.
 | 
				
			||||||
 | 
					       The .ctor section from the crtend file contains the
 | 
				
			||||||
 | 
					       end of ctors marker and it must be last */
 | 
				
			||||||
 | 
					    KEEP (*(EXCLUDE_FILE (*crtend.o *crtend?.o ) .ctors))
 | 
				
			||||||
 | 
					    KEEP (*(SORT(.ctors.*)))
 | 
				
			||||||
 | 
					    KEEP (*(.ctors))
 | 
				
			||||||
 | 
					  } >rom AT>rom :rom
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  .dtors          :
 | 
				
			||||||
 | 
					  {
 | 
				
			||||||
 | 
					    KEEP (*crtbegin.o(.dtors))
 | 
				
			||||||
 | 
					    KEEP (*crtbegin?.o(.dtors))
 | 
				
			||||||
 | 
					    KEEP (*(EXCLUDE_FILE (*crtend.o *crtend?.o ) .dtors))
 | 
				
			||||||
 | 
					    KEEP (*(SORT(.dtors.*)))
 | 
				
			||||||
 | 
					    KEEP (*(.dtors))
 | 
				
			||||||
 | 
					  } >rom AT>rom :rom
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  .dummy          :
 | 
				
			||||||
 | 
					  {
 | 
				
			||||||
 | 
						*(.comment.*)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					  .lalign         :
 | 
				
			||||||
 | 
					  {
 | 
				
			||||||
 | 
					    . = ALIGN(4);
 | 
				
			||||||
 | 
					    PROVIDE( _data_lma = . );
 | 
				
			||||||
 | 
					  } >rom AT>rom :rom
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  .dalign         :
 | 
				
			||||||
 | 
					  {
 | 
				
			||||||
 | 
					    . = ALIGN(4);
 | 
				
			||||||
 | 
					    PROVIDE( _data = . );
 | 
				
			||||||
 | 
					  } >ram AT>rom :ram_init
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  .data          :
 | 
				
			||||||
 | 
					  {
 | 
				
			||||||
 | 
					    __DATA_BEGIN__ = .;
 | 
				
			||||||
 | 
					    *(.data .data.*)
 | 
				
			||||||
 | 
					    *(.gnu.linkonce.d.*)
 | 
				
			||||||
 | 
					  } >ram AT>rom :ram_init
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  .sdata          :
 | 
				
			||||||
 | 
					  {
 | 
				
			||||||
 | 
					    __SDATA_BEGIN__ = .;
 | 
				
			||||||
 | 
					    *(.sdata .sdata.*)
 | 
				
			||||||
 | 
					    *(.gnu.linkonce.s.*)
 | 
				
			||||||
 | 
					  } >ram AT>rom :ram_init
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  .srodata        :
 | 
				
			||||||
 | 
					  {
 | 
				
			||||||
 | 
					    *(.srodata.cst16)
 | 
				
			||||||
 | 
					    *(.srodata.cst8)
 | 
				
			||||||
 | 
					    *(.srodata.cst4)
 | 
				
			||||||
 | 
					    *(.srodata.cst2)
 | 
				
			||||||
 | 
					    *(.srodata .srodata.*)
 | 
				
			||||||
 | 
					  } >ram AT>rom :ram_init
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  . = ALIGN(4);
 | 
				
			||||||
 | 
					  PROVIDE( _edata = . );
 | 
				
			||||||
 | 
					  PROVIDE( edata = . );
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  PROVIDE( _fbss = . );
 | 
				
			||||||
 | 
					  PROVIDE( __bss_start = . );
 | 
				
			||||||
 | 
					  .bss            :
 | 
				
			||||||
 | 
					  {
 | 
				
			||||||
 | 
					    *(.sbss*)
 | 
				
			||||||
 | 
					    *(.gnu.linkonce.sb.*)
 | 
				
			||||||
 | 
					    *(.bss .bss.*)
 | 
				
			||||||
 | 
					    *(.gnu.linkonce.b.*)
 | 
				
			||||||
 | 
					    *(COMMON)
 | 
				
			||||||
 | 
					    . = ALIGN(4);
 | 
				
			||||||
 | 
					  } >ram AT>ram :ram
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  . = ALIGN(8);
 | 
				
			||||||
 | 
					  __BSS_END__ = .;
 | 
				
			||||||
 | 
					  __global_pointer$ = MIN(__SDATA_BEGIN__ + 0x800,  MAX(__DATA_BEGIN__ + 0x800, __BSS_END__ - 0x800));
 | 
				
			||||||
 | 
					  PROVIDE( _end = . );
 | 
				
			||||||
 | 
					  PROVIDE( end = . );
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  .stack ORIGIN(ram) + LENGTH(ram) - __stack_size :
 | 
				
			||||||
 | 
					  {
 | 
				
			||||||
 | 
					    PROVIDE( _heap_end = . );
 | 
				
			||||||
 | 
					    . = __stack_size;
 | 
				
			||||||
 | 
					    PROVIDE( _sp = . );
 | 
				
			||||||
 | 
					  } >ram AT>ram :ram
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  
 | 
				
			||||||
 | 
					  PROVIDE( tohost = . );
 | 
				
			||||||
 | 
					  PROVIDE( fromhost = . + 8 );
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
							
								
								
									
										2
									
								
								env/start.S
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								env/start.S
									
									
									
									
										vendored
									
									
								
							@@ -9,11 +9,13 @@ _start:
 | 
				
			|||||||
.option push
 | 
					.option push
 | 
				
			||||||
.option norelax
 | 
					.option norelax
 | 
				
			||||||
.option norvc
 | 
					.option norvc
 | 
				
			||||||
 | 
					//#ifdef WITH_SIGNATURE
 | 
				
			||||||
	j 1f
 | 
						j 1f
 | 
				
			||||||
	.2byte	0x4e4d
 | 
						.2byte	0x4e4d
 | 
				
			||||||
	.2byte	0x5352
 | 
						.2byte	0x5352
 | 
				
			||||||
	.4byte  0x669
 | 
						.4byte  0x669
 | 
				
			||||||
1:
 | 
					1:
 | 
				
			||||||
 | 
					//#endif
 | 
				
			||||||
    la gp, __global_pointer$
 | 
					    la gp, __global_pointer$
 | 
				
			||||||
.option pop
 | 
					.option pop
 | 
				
			||||||
	la sp, _sp
 | 
						la sp, _sp
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										19
									
								
								env/testbench/rtl/bsp_read.c
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										19
									
								
								env/testbench/rtl/bsp_read.c
									
									
									
									
										vendored
									
									
										Normal file
									
								
							@@ -0,0 +1,19 @@
 | 
				
			|||||||
 | 
					#include <stdint.h>
 | 
				
			||||||
 | 
					#include <stdio.h>
 | 
				
			||||||
 | 
					#include <sys/types.h>
 | 
				
			||||||
 | 
					#include <unistd.h>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					ssize_t _bsp_read(int fd, void *ptr, size_t len) {
 | 
				
			||||||
 | 
					  uint8_t *current = (uint8_t *)ptr;
 | 
				
			||||||
 | 
					  volatile uint32_t *uart_rx = (uint32_t *)0xFFFF0000;
 | 
				
			||||||
 | 
					  ssize_t result = 0;
 | 
				
			||||||
 | 
					  if (isatty(fd)) {
 | 
				
			||||||
 | 
					    for (current = (uint8_t *)ptr; (current < ((uint8_t *)ptr) + len);
 | 
				
			||||||
 | 
					         current++) {
 | 
				
			||||||
 | 
					      *current = *uart_rx;
 | 
				
			||||||
 | 
					      result++;
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					    return result;
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					  return EOF;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
							
								
								
									
										18
									
								
								env/testbench/rtl/bsp_write.c
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										18
									
								
								env/testbench/rtl/bsp_write.c
									
									
									
									
										vendored
									
									
										Normal file
									
								
							@@ -0,0 +1,18 @@
 | 
				
			|||||||
 | 
					/* See LICENSE of license details. */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#include <errno.h>
 | 
				
			||||||
 | 
					#include <stdint.h>
 | 
				
			||||||
 | 
					#include <sys/types.h>
 | 
				
			||||||
 | 
					#include <unistd.h>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					ssize_t _bsp_write(int fd, const void *ptr, size_t len) {
 | 
				
			||||||
 | 
					  const uint8_t *current = (const uint8_t *)ptr;
 | 
				
			||||||
 | 
					  if (isatty(fd)) {
 | 
				
			||||||
 | 
					    for (size_t jj = 0; jj < len; jj++) {
 | 
				
			||||||
 | 
					      *((uint32_t *)0xFFFF0000) = current[jj];
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					    return len;
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  return 1;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
							
								
								
									
										2
									
								
								env/tgc_vp
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								env/tgc_vp
									
									
									
									
										vendored
									
									
								
							@@ -1 +1 @@
 | 
				
			|||||||
ehrenberg
 | 
					moonlight/
 | 
				
			||||||
@@ -16,6 +16,7 @@ static uint64_t get_aclint_mtime(volatile aclint_t* reg){
 | 
				
			|||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static void set_aclint_mtimecmp(volatile aclint_t* reg, uint64_t value){
 | 
					static void set_aclint_mtimecmp(volatile aclint_t* reg, uint64_t value){
 | 
				
			||||||
 | 
					    set_aclint_mtimecmp0lo(reg, (uint32_t)0xFFFFFFFF);
 | 
				
			||||||
    set_aclint_mtimecmp0hi(reg, (uint32_t)(value >> 32));
 | 
					    set_aclint_mtimecmp0hi(reg, (uint32_t)(value >> 32));
 | 
				
			||||||
    set_aclint_mtimecmp0lo(reg, (uint32_t)value);
 | 
					    set_aclint_mtimecmp0lo(reg, (uint32_t)value);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										388
									
								
								include/minres/devices/fki_cluster_info.h
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										388
									
								
								include/minres/devices/fki_cluster_info.h
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,388 @@
 | 
				
			|||||||
 | 
					#ifndef _FKI_CLUSTER_INFO_H
 | 
				
			||||||
 | 
					#define _FKI_CLUSTER_INFO_H
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					static uint8_t fki_ccc(uint8_t cluster);
 | 
				
			||||||
 | 
					static uint8_t fki_dma(uint8_t cluster);
 | 
				
			||||||
 | 
					static uint8_t fki_axi2stream(uint8_t cluster);
 | 
				
			||||||
 | 
					static uint8_t fki_stream2axi(uint8_t cluster);
 | 
				
			||||||
 | 
					static uint8_t fki_dma_adapter(uint8_t cluster);
 | 
				
			||||||
 | 
					static inline uint32_t fki_addr_ccc_peMapping(uint8_t cluster);
 | 
				
			||||||
 | 
					static inline uint32_t fki_addr_sram1(uint8_t cluster);
 | 
				
			||||||
 | 
					static inline uint32_t fki_addr_sram2(uint8_t cluster);
 | 
				
			||||||
 | 
					static inline uint32_t fki_addr_cntrl_cva5(uint8_t cluster);
 | 
				
			||||||
 | 
					static inline uint32_t fki_addr_cntrl_tgc(uint8_t cluster);
 | 
				
			||||||
 | 
					static inline uint32_t fki_addr_ccc_idxTasks(uint8_t cluster);
 | 
				
			||||||
 | 
					static inline uint32_t fki_addr_cntrl_tgc_clusterReg(uint8_t cluster);
 | 
				
			||||||
 | 
					static inline uint32_t fki_addr_ccc_idxJobs(uint8_t cluster);
 | 
				
			||||||
 | 
					static inline uint32_t fki_addr_cntrl_cva5_clusterReg(uint8_t cluster);
 | 
				
			||||||
 | 
					static inline uint32_t fki_addr_ccc_configMem(uint8_t cluster);
 | 
				
			||||||
 | 
					static inline uint32_t fki_addr_aes_adapter(uint8_t cluster);
 | 
				
			||||||
 | 
					static inline uint32_t fki_addr_ut_adapter(uint8_t cluster);
 | 
				
			||||||
 | 
					static inline uint32_t fki_addr_sram0(uint8_t cluster);
 | 
				
			||||||
 | 
					static inline uint32_t fki_addr_sram3(uint8_t cluster);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define Compute0 2
 | 
				
			||||||
 | 
					#define Compute0_ccc 2,0
 | 
				
			||||||
 | 
					#define Compute0_stream2axi 2,1
 | 
				
			||||||
 | 
					#define Compute0_axi2stream 2,2
 | 
				
			||||||
 | 
					#define Compute0_dma 2,4
 | 
				
			||||||
 | 
					#define Compute0_dma_adapter 2,5
 | 
				
			||||||
 | 
					#define ADDR_Compute0_ccc_idxJobs 0x80004000
 | 
				
			||||||
 | 
					#define BYTES_Compute0_ccc_idxJobs 4096
 | 
				
			||||||
 | 
					#define HIGH_Compute0_ccc_idxJobs 0x80004fff
 | 
				
			||||||
 | 
					#define ADDR_Compute0_ccc_idxTasks 0x80005000
 | 
				
			||||||
 | 
					#define BYTES_Compute0_ccc_idxTasks 4096
 | 
				
			||||||
 | 
					#define HIGH_Compute0_ccc_idxTasks 0x80005fff
 | 
				
			||||||
 | 
					#define ADDR_Compute0_ccc_configMem 0x80000000
 | 
				
			||||||
 | 
					#define BYTES_Compute0_ccc_configMem 16384
 | 
				
			||||||
 | 
					#define HIGH_Compute0_ccc_configMem 0x80003fff
 | 
				
			||||||
 | 
					#define ADDR_Compute0_ccc_peMapping 0x80006000
 | 
				
			||||||
 | 
					#define BYTES_Compute0_ccc_peMapping 4096
 | 
				
			||||||
 | 
					#define HIGH_Compute0_ccc_peMapping 0x80006fff
 | 
				
			||||||
 | 
					#define ADDR_Compute0_aes_adapter 0x80007000
 | 
				
			||||||
 | 
					#define BYTES_Compute0_aes_adapter 4096
 | 
				
			||||||
 | 
					#define HIGH_Compute0_aes_adapter 0x80007fff
 | 
				
			||||||
 | 
					#define ADDR_Compute0_cntrl_cva5_clusterReg 0x8000a000
 | 
				
			||||||
 | 
					#define BYTES_Compute0_cntrl_cva5_clusterReg 4096
 | 
				
			||||||
 | 
					#define HIGH_Compute0_cntrl_cva5_clusterReg 0x8000afff
 | 
				
			||||||
 | 
					#define ADDR_Compute0_cntrl_cva5 0x80008000
 | 
				
			||||||
 | 
					#define BYTES_Compute0_cntrl_cva5 8192
 | 
				
			||||||
 | 
					#define HIGH_Compute0_cntrl_cva5 0x80009fff
 | 
				
			||||||
 | 
					#define ADDR_Compute0_cntrl_tgc_clusterReg 0x8000d000
 | 
				
			||||||
 | 
					#define BYTES_Compute0_cntrl_tgc_clusterReg 4096
 | 
				
			||||||
 | 
					#define HIGH_Compute0_cntrl_tgc_clusterReg 0x8000dfff
 | 
				
			||||||
 | 
					#define ADDR_Compute0_cntrl_tgc 0x8000b000
 | 
				
			||||||
 | 
					#define BYTES_Compute0_cntrl_tgc 8192
 | 
				
			||||||
 | 
					#define HIGH_Compute0_cntrl_tgc 0x8000cfff
 | 
				
			||||||
 | 
					#define ADDR_Compute0_ut_adapter 0x8000e000
 | 
				
			||||||
 | 
					#define BYTES_Compute0_ut_adapter 8192
 | 
				
			||||||
 | 
					#define HIGH_Compute0_ut_adapter 0x8000ffff
 | 
				
			||||||
 | 
					#define ADDR_Compute0_sram0 0x80010000
 | 
				
			||||||
 | 
					#define BYTES_Compute0_sram0 524288
 | 
				
			||||||
 | 
					#define HIGH_Compute0_sram0 0x8008ffff
 | 
				
			||||||
 | 
					#define ADDR_Compute0_sram1 0x80090000
 | 
				
			||||||
 | 
					#define BYTES_Compute0_sram1 262144
 | 
				
			||||||
 | 
					#define HIGH_Compute0_sram1 0x800cffff
 | 
				
			||||||
 | 
					#define ADDR_Compute0_sram2 0x800d0000
 | 
				
			||||||
 | 
					#define BYTES_Compute0_sram2 262144
 | 
				
			||||||
 | 
					#define HIGH_Compute0_sram2 0x8010ffff
 | 
				
			||||||
 | 
					#define ADDR_Compute0_sram3 0x80110000
 | 
				
			||||||
 | 
					#define BYTES_Compute0_sram3 262144
 | 
				
			||||||
 | 
					#define HIGH_Compute0_sram3 0x8014ffff
 | 
				
			||||||
 | 
					#define Compute1 3
 | 
				
			||||||
 | 
					#define Compute1_ccc 3,0
 | 
				
			||||||
 | 
					#define Compute1_stream2axi 3,1
 | 
				
			||||||
 | 
					#define Compute1_axi2stream 3,2
 | 
				
			||||||
 | 
					#define Compute1_dma 3,4
 | 
				
			||||||
 | 
					#define Compute1_dma_adapter 3,5
 | 
				
			||||||
 | 
					#define ADDR_Compute1_ccc_idxJobs 0x90004000
 | 
				
			||||||
 | 
					#define BYTES_Compute1_ccc_idxJobs 4096
 | 
				
			||||||
 | 
					#define HIGH_Compute1_ccc_idxJobs 0x90004fff
 | 
				
			||||||
 | 
					#define ADDR_Compute1_ccc_idxTasks 0x90005000
 | 
				
			||||||
 | 
					#define BYTES_Compute1_ccc_idxTasks 4096
 | 
				
			||||||
 | 
					#define HIGH_Compute1_ccc_idxTasks 0x90005fff
 | 
				
			||||||
 | 
					#define ADDR_Compute1_ccc_configMem 0x90000000
 | 
				
			||||||
 | 
					#define BYTES_Compute1_ccc_configMem 16384
 | 
				
			||||||
 | 
					#define HIGH_Compute1_ccc_configMem 0x90003fff
 | 
				
			||||||
 | 
					#define ADDR_Compute1_ccc_peMapping 0x90006000
 | 
				
			||||||
 | 
					#define BYTES_Compute1_ccc_peMapping 4096
 | 
				
			||||||
 | 
					#define HIGH_Compute1_ccc_peMapping 0x90006fff
 | 
				
			||||||
 | 
					#define ADDR_Compute1_aes_adapter 0x90007000
 | 
				
			||||||
 | 
					#define BYTES_Compute1_aes_adapter 4096
 | 
				
			||||||
 | 
					#define HIGH_Compute1_aes_adapter 0x90007fff
 | 
				
			||||||
 | 
					#define ADDR_Compute1_cntrl_cva5_clusterReg 0x8000a000
 | 
				
			||||||
 | 
					#define BYTES_Compute1_cntrl_cva5_clusterReg 4096
 | 
				
			||||||
 | 
					#define HIGH_Compute1_cntrl_cva5_clusterReg 0x8000afff
 | 
				
			||||||
 | 
					#define ADDR_Compute1_cntrl_cva5 0x90008000
 | 
				
			||||||
 | 
					#define BYTES_Compute1_cntrl_cva5 12288
 | 
				
			||||||
 | 
					#define HIGH_Compute1_cntrl_cva5 0x9000afff
 | 
				
			||||||
 | 
					#define ADDR_Compute1_cntrl_tgc_clusterReg 0x8000d000
 | 
				
			||||||
 | 
					#define BYTES_Compute1_cntrl_tgc_clusterReg 4096
 | 
				
			||||||
 | 
					#define HIGH_Compute1_cntrl_tgc_clusterReg 0x8000dfff
 | 
				
			||||||
 | 
					#define ADDR_Compute1_cntrl_tgc 0x9000b000
 | 
				
			||||||
 | 
					#define BYTES_Compute1_cntrl_tgc 12288
 | 
				
			||||||
 | 
					#define HIGH_Compute1_cntrl_tgc 0x9000dfff
 | 
				
			||||||
 | 
					#define ADDR_Compute1_ut_adapter 0x9000e000
 | 
				
			||||||
 | 
					#define BYTES_Compute1_ut_adapter 8192
 | 
				
			||||||
 | 
					#define HIGH_Compute1_ut_adapter 0x9000ffff
 | 
				
			||||||
 | 
					#define ADDR_Compute1_sram0 0x90010000
 | 
				
			||||||
 | 
					#define BYTES_Compute1_sram0 524288
 | 
				
			||||||
 | 
					#define HIGH_Compute1_sram0 0x9008ffff
 | 
				
			||||||
 | 
					#define ADDR_Compute1_sram1 0x90090000
 | 
				
			||||||
 | 
					#define BYTES_Compute1_sram1 262144
 | 
				
			||||||
 | 
					#define HIGH_Compute1_sram1 0x900cffff
 | 
				
			||||||
 | 
					#define ADDR_Compute1_sram2 0x900d0000
 | 
				
			||||||
 | 
					#define BYTES_Compute1_sram2 262144
 | 
				
			||||||
 | 
					#define HIGH_Compute1_sram2 0x9010ffff
 | 
				
			||||||
 | 
					#define ADDR_Compute1_sram3 0x90110000
 | 
				
			||||||
 | 
					#define BYTES_Compute1_sram3 262144
 | 
				
			||||||
 | 
					#define HIGH_Compute1_sram3 0x9014ffff
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					static uint8_t fki_ccc(uint8_t cluster) {
 | 
				
			||||||
 | 
						switch(cluster) {
 | 
				
			||||||
 | 
							case 2: {
 | 
				
			||||||
 | 
								return 0;
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
							case 3: {
 | 
				
			||||||
 | 
								return 0;
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
							default: {
 | 
				
			||||||
 | 
								return -1;
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					static uint8_t fki_dma(uint8_t cluster) {
 | 
				
			||||||
 | 
						switch(cluster) {
 | 
				
			||||||
 | 
							case 3: {
 | 
				
			||||||
 | 
								return 4;
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
							case 2: {
 | 
				
			||||||
 | 
								return 4;
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
							default: {
 | 
				
			||||||
 | 
								return -1;
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					static uint8_t fki_axi2stream(uint8_t cluster) {
 | 
				
			||||||
 | 
						switch(cluster) {
 | 
				
			||||||
 | 
							case 3: {
 | 
				
			||||||
 | 
								return 2;
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
							case 2: {
 | 
				
			||||||
 | 
								return 2;
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
							default: {
 | 
				
			||||||
 | 
								return -1;
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					static uint8_t fki_stream2axi(uint8_t cluster) {
 | 
				
			||||||
 | 
						switch(cluster) {
 | 
				
			||||||
 | 
							case 3: {
 | 
				
			||||||
 | 
								return 1;
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
							case 2: {
 | 
				
			||||||
 | 
								return 1;
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
							default: {
 | 
				
			||||||
 | 
								return -1;
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					static uint8_t fki_dma_adapter(uint8_t cluster) {
 | 
				
			||||||
 | 
						switch(cluster) {
 | 
				
			||||||
 | 
							case 2: {
 | 
				
			||||||
 | 
								return 5;
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
							case 3: {
 | 
				
			||||||
 | 
								return 5;
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
							default: {
 | 
				
			||||||
 | 
								return -1;
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					static inline uint32_t fki_addr_ccc_peMapping(uint8_t cluster) {
 | 
				
			||||||
 | 
						switch(cluster) {
 | 
				
			||||||
 | 
							case 2: {
 | 
				
			||||||
 | 
								return 0x80006000;
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
							case 3: {
 | 
				
			||||||
 | 
								return 0x90006000;
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
							default: {
 | 
				
			||||||
 | 
								return -1;
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					static inline uint32_t fki_addr_sram1(uint8_t cluster) {
 | 
				
			||||||
 | 
						switch(cluster) {
 | 
				
			||||||
 | 
							case 3: {
 | 
				
			||||||
 | 
								return 0x90090000;
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
							case 2: {
 | 
				
			||||||
 | 
								return 0x80090000;
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
							default: {
 | 
				
			||||||
 | 
								return -1;
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					static inline uint32_t fki_addr_sram2(uint8_t cluster) {
 | 
				
			||||||
 | 
						switch(cluster) {
 | 
				
			||||||
 | 
							case 2: {
 | 
				
			||||||
 | 
								return 0x800d0000;
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
							case 3: {
 | 
				
			||||||
 | 
								return 0x900d0000;
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
							default: {
 | 
				
			||||||
 | 
								return -1;
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					static inline uint32_t fki_addr_cntrl_cva5(uint8_t cluster) {
 | 
				
			||||||
 | 
						switch(cluster) {
 | 
				
			||||||
 | 
							case 2: {
 | 
				
			||||||
 | 
								return 0x80008000;
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
							case 3: {
 | 
				
			||||||
 | 
								return 0x90008000;
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
							default: {
 | 
				
			||||||
 | 
								return -1;
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					static inline uint32_t fki_addr_cntrl_tgc(uint8_t cluster) {
 | 
				
			||||||
 | 
						switch(cluster) {
 | 
				
			||||||
 | 
							case 2: {
 | 
				
			||||||
 | 
								return 0x8000b000;
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
							case 3: {
 | 
				
			||||||
 | 
								return 0x9000b000;
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
							default: {
 | 
				
			||||||
 | 
								return -1;
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					static inline uint32_t fki_addr_ccc_idxTasks(uint8_t cluster) {
 | 
				
			||||||
 | 
						switch(cluster) {
 | 
				
			||||||
 | 
							case 2: {
 | 
				
			||||||
 | 
								return 0x80005000;
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
							case 3: {
 | 
				
			||||||
 | 
								return 0x90005000;
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
							default: {
 | 
				
			||||||
 | 
								return -1;
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					static inline uint32_t fki_addr_cntrl_tgc_clusterReg(uint8_t cluster) {
 | 
				
			||||||
 | 
						switch(cluster) {
 | 
				
			||||||
 | 
							case 3: {
 | 
				
			||||||
 | 
								return 0x8000d000;
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
							case 2: {
 | 
				
			||||||
 | 
								return 0x8000d000;
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
							default: {
 | 
				
			||||||
 | 
								return -1;
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					static inline uint32_t fki_addr_ccc_idxJobs(uint8_t cluster) {
 | 
				
			||||||
 | 
						switch(cluster) {
 | 
				
			||||||
 | 
							case 2: {
 | 
				
			||||||
 | 
								return 0x80004000;
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
							case 3: {
 | 
				
			||||||
 | 
								return 0x90004000;
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
							default: {
 | 
				
			||||||
 | 
								return -1;
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					static inline uint32_t fki_addr_cntrl_cva5_clusterReg(uint8_t cluster) {
 | 
				
			||||||
 | 
						switch(cluster) {
 | 
				
			||||||
 | 
							case 2: {
 | 
				
			||||||
 | 
								return 0x8000a000;
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
							case 3: {
 | 
				
			||||||
 | 
								return 0x8000a000;
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
							default: {
 | 
				
			||||||
 | 
								return -1;
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					static inline uint32_t fki_addr_ccc_configMem(uint8_t cluster) {
 | 
				
			||||||
 | 
						switch(cluster) {
 | 
				
			||||||
 | 
							case 3: {
 | 
				
			||||||
 | 
								return 0x90000000;
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
							case 2: {
 | 
				
			||||||
 | 
								return 0x80000000;
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
							default: {
 | 
				
			||||||
 | 
								return -1;
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					static inline uint32_t fki_addr_aes_adapter(uint8_t cluster) {
 | 
				
			||||||
 | 
						switch(cluster) {
 | 
				
			||||||
 | 
							case 2: {
 | 
				
			||||||
 | 
								return 0x80007000;
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
							case 3: {
 | 
				
			||||||
 | 
								return 0x90007000;
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
							default: {
 | 
				
			||||||
 | 
								return -1;
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					static inline uint32_t fki_addr_ut_adapter(uint8_t cluster) {
 | 
				
			||||||
 | 
						switch(cluster) {
 | 
				
			||||||
 | 
							case 3: {
 | 
				
			||||||
 | 
								return 0x9000e000;
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
							case 2: {
 | 
				
			||||||
 | 
								return 0x8000e000;
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
							default: {
 | 
				
			||||||
 | 
								return -1;
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					static inline uint32_t fki_addr_sram0(uint8_t cluster) {
 | 
				
			||||||
 | 
						switch(cluster) {
 | 
				
			||||||
 | 
							case 2: {
 | 
				
			||||||
 | 
								return 0x80010000;
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
							case 3: {
 | 
				
			||||||
 | 
								return 0x90010000;
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
							default: {
 | 
				
			||||||
 | 
								return -1;
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					static inline uint32_t fki_addr_sram3(uint8_t cluster) {
 | 
				
			||||||
 | 
						switch(cluster) {
 | 
				
			||||||
 | 
							case 2: {
 | 
				
			||||||
 | 
								return 0x80110000;
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
							case 3: {
 | 
				
			||||||
 | 
								return 0x90110000;
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
							default: {
 | 
				
			||||||
 | 
								return -1;
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#endif //_FKI_CLUSTER_INFO_H
 | 
				
			||||||
							
								
								
									
										77
									
								
								include/minres/devices/flexki_messages.h
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										77
									
								
								include/minres/devices/flexki_messages.h
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,77 @@
 | 
				
			|||||||
 | 
					#ifndef _FLEXKI_MESSAGES_H
 | 
				
			||||||
 | 
					#define _FLEXKI_MESSAGES_H
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#include "fki_cluster_info.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#include <stdbool.h>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					static void send_msg(uint32_t cluster, uint32_t component, uint32_t msg_len, uint32_t msg_id, uint32_t* words) {
 | 
				
			||||||
 | 
					    set_mkcontrolclusterstreamcontroller_REG_HEADER_RECIPIENT_COMPONENT(msgif, component);
 | 
				
			||||||
 | 
						set_mkcontrolclusterstreamcontroller_REG_HEADER_RECIPIENT_CLUSTER(msgif, cluster);
 | 
				
			||||||
 | 
						set_mkcontrolclusterstreamcontroller_REG_HEADER_MESSAGE_LENGTH(msgif, msg_len);
 | 
				
			||||||
 | 
						set_mkcontrolclusterstreamcontroller_REG_HEADER_MESSAGE_ID(msgif, msg_id);
 | 
				
			||||||
 | 
					    for (uint32_t i = 0; i < msg_len; i = i + 1) {
 | 
				
			||||||
 | 
					        switch (i) {
 | 
				
			||||||
 | 
					            case 0:
 | 
				
			||||||
 | 
					                set_mkcontrolclusterstreamcontroller_REG_PAYLOAD_0(msgif, words[i]);
 | 
				
			||||||
 | 
					                break;
 | 
				
			||||||
 | 
					            case 1:
 | 
				
			||||||
 | 
					                set_mkcontrolclusterstreamcontroller_REG_PAYLOAD_1(msgif, words[i]);
 | 
				
			||||||
 | 
					                break;
 | 
				
			||||||
 | 
					            case 2:
 | 
				
			||||||
 | 
					                set_mkcontrolclusterstreamcontroller_REG_PAYLOAD_2(msgif, words[i]);
 | 
				
			||||||
 | 
					                break;
 | 
				
			||||||
 | 
					            case 3:
 | 
				
			||||||
 | 
					                set_mkcontrolclusterstreamcontroller_REG_PAYLOAD_3(msgif, words[i]);
 | 
				
			||||||
 | 
					                break;
 | 
				
			||||||
 | 
					            case 4:
 | 
				
			||||||
 | 
					                set_mkcontrolclusterstreamcontroller_REG_PAYLOAD_4(msgif, words[i]);
 | 
				
			||||||
 | 
					                break;
 | 
				
			||||||
 | 
					            case 5:
 | 
				
			||||||
 | 
					                set_mkcontrolclusterstreamcontroller_REG_PAYLOAD_5(msgif, words[i]);
 | 
				
			||||||
 | 
					                break;
 | 
				
			||||||
 | 
					            case 6:
 | 
				
			||||||
 | 
					                set_mkcontrolclusterstreamcontroller_REG_PAYLOAD_6(msgif, words[i]);
 | 
				
			||||||
 | 
					                break;
 | 
				
			||||||
 | 
					            case 7:
 | 
				
			||||||
 | 
					                set_mkcontrolclusterstreamcontroller_REG_PAYLOAD_7(msgif, words[i]);
 | 
				
			||||||
 | 
					                break;
 | 
				
			||||||
 | 
					            default:
 | 
				
			||||||
 | 
					                break;
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					    set_mkcontrolclusterstreamcontroller_REG_SEND(msgif, 1);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					static uint32_t check_response(void) {
 | 
				
			||||||
 | 
					    while (true) {
 | 
				
			||||||
 | 
					        if (get_mkcontrolclusterstreamcontroller_REG_ACK_PENDING_RESPONSE(msgif) != 0) {
 | 
				
			||||||
 | 
					            return get_mkcontrolclusterstreamcontroller_REG_RECV_ID_RECV_ID(msgif);
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					static uint32_t wait_response(uint32_t msg_id) {
 | 
				
			||||||
 | 
					    while (true) {
 | 
				
			||||||
 | 
					        if (get_mkcontrolclusterstreamcontroller_REG_ACK_PENDING_RESPONSE(msgif) != 0) {
 | 
				
			||||||
 | 
					            if (get_mkcontrolclusterstreamcontroller_REG_RECV_ID_RECV_ID(msgif) == msg_id) {
 | 
				
			||||||
 | 
					                break;
 | 
				
			||||||
 | 
					            }
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
						uint32_t response_payload = get_mkcontrolclusterstreamcontroller_REG_RECV_PAYLOAD(msgif);
 | 
				
			||||||
 | 
						set_mkcontrolclusterstreamcontroller_REG_ACK_ACK(msgif, 1);
 | 
				
			||||||
 | 
						return response_payload;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					static void fki_dma_transfer(uint32_t cluster, uint32_t msg_id, uint32_t srcAddr, uint32_t destAddr, uint32_t bytes) {
 | 
				
			||||||
 | 
					    uint32_t values[] = {
 | 
				
			||||||
 | 
					        0,
 | 
				
			||||||
 | 
					        srcAddr,
 | 
				
			||||||
 | 
					        destAddr,
 | 
				
			||||||
 | 
					        bytes
 | 
				
			||||||
 | 
					    };
 | 
				
			||||||
 | 
					    send_msg(cluster, fki_dma(cluster), 4, msg_id, values);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#endif /* _FLEXKI_MESSAGES_H */
 | 
				
			||||||
@@ -1,11 +1,11 @@
 | 
				
			|||||||
/*
 | 
					/*
 | 
				
			||||||
* Copyright (c) 2023 - 2024 MINRES Technologies GmbH
 | 
					 * Copyright (c) 2023 - 2024 MINRES Technologies GmbH
 | 
				
			||||||
*
 | 
					 *
 | 
				
			||||||
* SPDX-License-Identifier: Apache-2.0
 | 
					 * SPDX-License-Identifier: Apache-2.0
 | 
				
			||||||
*
 | 
					 *
 | 
				
			||||||
* Generated at 2024-08-02 08:46:07 UTC 
 | 
					 * Generated at 2024-08-02 08:46:07 UTC
 | 
				
			||||||
* by peakrdl_mnrs version 1.2.7
 | 
					 * by peakrdl_mnrs version 1.2.7
 | 
				
			||||||
*/
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifndef _BSP_ACLINT_H
 | 
					#ifndef _BSP_ACLINT_H
 | 
				
			||||||
#define _BSP_ACLINT_H
 | 
					#define _BSP_ACLINT_H
 | 
				
			||||||
@@ -13,14 +13,14 @@
 | 
				
			|||||||
#include <stdint.h>
 | 
					#include <stdint.h>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
typedef struct {
 | 
					typedef struct {
 | 
				
			||||||
    volatile uint32_t MSIP0;
 | 
					  volatile uint32_t MSIP0;
 | 
				
			||||||
    uint8_t fill0[16380];
 | 
					  uint8_t fill0[16380];
 | 
				
			||||||
    volatile uint32_t MTIMECMP0LO;
 | 
					  volatile uint32_t MTIMECMP0LO;
 | 
				
			||||||
    volatile uint32_t MTIMECMP0HI;
 | 
					  volatile uint32_t MTIMECMP0HI;
 | 
				
			||||||
    uint8_t fill1[32752];
 | 
					  uint8_t fill1[32752];
 | 
				
			||||||
    volatile uint32_t MTIME_LO;
 | 
					  volatile uint32_t MTIME_LO;
 | 
				
			||||||
    volatile uint32_t MTIME_HI;
 | 
					  volatile uint32_t MTIME_HI;
 | 
				
			||||||
}aclint_t;
 | 
					} aclint_t;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define ACLINT_MSIP0_OFFS 0
 | 
					#define ACLINT_MSIP0_OFFS 0
 | 
				
			||||||
#define ACLINT_MSIP0_MASK 0x1
 | 
					#define ACLINT_MSIP0_MASK 0x1
 | 
				
			||||||
@@ -42,50 +42,34 @@ typedef struct {
 | 
				
			|||||||
#define ACLINT_MTIME_HI_MASK 0xffffffff
 | 
					#define ACLINT_MTIME_HI_MASK 0xffffffff
 | 
				
			||||||
#define ACLINT_MTIME_HI(V) ((V & ACLINT_MTIME_HI_MASK) << ACLINT_MTIME_HI_OFFS)
 | 
					#define ACLINT_MTIME_HI(V) ((V & ACLINT_MTIME_HI_MASK) << ACLINT_MTIME_HI_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//ACLINT_MSIP0
 | 
					// ACLINT_MSIP0
 | 
				
			||||||
inline uint32_t get_aclint_msip0(volatile aclint_t* reg){
 | 
					static inline uint32_t get_aclint_msip0(volatile aclint_t* reg) { return reg->MSIP0; }
 | 
				
			||||||
     return reg->MSIP0;
 | 
					static inline void set_aclint_msip0(volatile aclint_t* reg, uint32_t value) { reg->MSIP0 = value; }
 | 
				
			||||||
}
 | 
					static inline uint32_t get_aclint_msip0_msip(volatile aclint_t* reg) { return (reg->MSIP0 >> 0) & 0x1; }
 | 
				
			||||||
inline void set_aclint_msip0(volatile aclint_t* reg, uint32_t value){
 | 
					static inline void set_aclint_msip0_msip(volatile aclint_t* reg, uint8_t value) { reg->MSIP0 = (reg->MSIP0 & ~(0x1U << 0)) | (value << 0); }
 | 
				
			||||||
     reg->MSIP0 = value;
 | 
					
 | 
				
			||||||
}
 | 
					// ACLINT_MTIMECMP0LO
 | 
				
			||||||
inline uint32_t get_aclint_msip0_msip(volatile aclint_t* reg){
 | 
					static inline uint32_t get_aclint_mtimecmp0lo(volatile aclint_t* reg) { return (reg->MTIMECMP0LO >> 0) & 0xffffffff; }
 | 
				
			||||||
    return (reg->MSIP0 >> 0) & 0x1;
 | 
					static inline void set_aclint_mtimecmp0lo(volatile aclint_t* reg, uint32_t value) {
 | 
				
			||||||
}
 | 
					  reg->MTIMECMP0LO = (reg->MTIMECMP0LO & ~(0xffffffffU << 0)) | (value << 0);
 | 
				
			||||||
inline void set_aclint_msip0_msip(volatile aclint_t* reg, uint8_t value){
 | 
					 | 
				
			||||||
    reg->MSIP0 = (reg->MSIP0 & ~(0x1U << 0)) | (value << 0);
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//ACLINT_MTIMECMP0LO
 | 
					// ACLINT_MTIMECMP0HI
 | 
				
			||||||
inline uint32_t get_aclint_mtimecmp0lo(volatile aclint_t* reg){
 | 
					static inline uint32_t get_aclint_mtimecmp0hi(volatile aclint_t* reg) { return (reg->MTIMECMP0HI >> 0) & 0xffffffff; }
 | 
				
			||||||
    return (reg->MTIMECMP0LO >> 0) & 0xffffffff;
 | 
					static inline void set_aclint_mtimecmp0hi(volatile aclint_t* reg, uint32_t value) {
 | 
				
			||||||
}
 | 
					  reg->MTIMECMP0HI = (reg->MTIMECMP0HI & ~(0xffffffffU << 0)) | (value << 0);
 | 
				
			||||||
inline void set_aclint_mtimecmp0lo(volatile aclint_t* reg, uint32_t value){
 | 
					 | 
				
			||||||
    reg->MTIMECMP0LO = (reg->MTIMECMP0LO & ~(0xffffffffU << 0)) | (value << 0);
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//ACLINT_MTIMECMP0HI
 | 
					// ACLINT_MTIME_LO
 | 
				
			||||||
inline uint32_t get_aclint_mtimecmp0hi(volatile aclint_t* reg){
 | 
					static inline uint32_t get_aclint_mtime_lo(volatile aclint_t* reg) { return (reg->MTIME_LO >> 0) & 0xffffffff; }
 | 
				
			||||||
    return (reg->MTIMECMP0HI >> 0) & 0xffffffff;
 | 
					static inline void set_aclint_mtime_lo(volatile aclint_t* reg, uint32_t value) {
 | 
				
			||||||
}
 | 
					  reg->MTIME_LO = (reg->MTIME_LO & ~(0xffffffffU << 0)) | (value << 0);
 | 
				
			||||||
inline void set_aclint_mtimecmp0hi(volatile aclint_t* reg, uint32_t value){
 | 
					 | 
				
			||||||
    reg->MTIMECMP0HI = (reg->MTIMECMP0HI & ~(0xffffffffU << 0)) | (value << 0);
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//ACLINT_MTIME_LO
 | 
					// ACLINT_MTIME_HI
 | 
				
			||||||
inline uint32_t get_aclint_mtime_lo(volatile aclint_t* reg){
 | 
					static inline uint32_t get_aclint_mtime_hi(volatile aclint_t* reg) { return (reg->MTIME_HI >> 0) & 0xffffffff; }
 | 
				
			||||||
    return (reg->MTIME_LO >> 0) & 0xffffffff;
 | 
					static inline void set_aclint_mtime_hi(volatile aclint_t* reg, uint32_t value) {
 | 
				
			||||||
}
 | 
					  reg->MTIME_HI = (reg->MTIME_HI & ~(0xffffffffU << 0)) | (value << 0);
 | 
				
			||||||
inline void set_aclint_mtime_lo(volatile aclint_t* reg, uint32_t value){
 | 
					 | 
				
			||||||
    reg->MTIME_LO = (reg->MTIME_LO & ~(0xffffffffU << 0)) | (value << 0);
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
//ACLINT_MTIME_HI
 | 
					 | 
				
			||||||
inline uint32_t get_aclint_mtime_hi(volatile aclint_t* reg){
 | 
					 | 
				
			||||||
    return (reg->MTIME_HI >> 0) & 0xffffffff;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline void set_aclint_mtime_hi(volatile aclint_t* reg, uint32_t value){
 | 
					 | 
				
			||||||
    reg->MTIME_HI = (reg->MTIME_HI & ~(0xffffffffU << 0)) | (value << 0);
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#endif /* _BSP_ACLINT_H */
 | 
					#endif /* _BSP_ACLINT_H */
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,11 +1,11 @@
 | 
				
			|||||||
/*
 | 
					/*
 | 
				
			||||||
* Copyright (c) 2023 - 2024 MINRES Technologies GmbH
 | 
					 * Copyright (c) 2023 - 2025 MINRES Technologies GmbH
 | 
				
			||||||
*
 | 
					 *
 | 
				
			||||||
* SPDX-License-Identifier: Apache-2.0
 | 
					 * SPDX-License-Identifier: Apache-2.0
 | 
				
			||||||
*
 | 
					 *
 | 
				
			||||||
* Generated at 2024-09-10 14:29:50 UTC 
 | 
					 * Generated at 2025-02-17 15:56:47 UTC
 | 
				
			||||||
* by peakrdl_mnrs version 1.2.9
 | 
					 * by peakrdl_mnrs version 1.2.9
 | 
				
			||||||
*/
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifndef _BSP_APB3SPI_H
 | 
					#ifndef _BSP_APB3SPI_H
 | 
				
			||||||
#define _BSP_APB3SPI_H
 | 
					#define _BSP_APB3SPI_H
 | 
				
			||||||
@@ -13,25 +13,25 @@
 | 
				
			|||||||
#include <stdint.h>
 | 
					#include <stdint.h>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
typedef struct {
 | 
					typedef struct {
 | 
				
			||||||
    volatile uint32_t DATA;
 | 
					  volatile uint32_t DATA;
 | 
				
			||||||
    volatile uint32_t STATUS;
 | 
					  volatile uint32_t STATUS;
 | 
				
			||||||
    volatile uint32_t CONFIG;
 | 
					  volatile uint32_t CONFIG;
 | 
				
			||||||
    volatile uint32_t INTR;
 | 
					  volatile uint32_t INTR;
 | 
				
			||||||
    uint8_t fill0[16];
 | 
					  uint8_t fill0[16];
 | 
				
			||||||
    volatile uint32_t SCLK_CONFIG;
 | 
					  volatile uint32_t SCLK_CONFIG;
 | 
				
			||||||
    volatile uint32_t SSGEN_SETUP;
 | 
					  volatile uint32_t SSGEN_SETUP;
 | 
				
			||||||
    volatile uint32_t SSGEN_HOLD;
 | 
					  volatile uint32_t SSGEN_HOLD;
 | 
				
			||||||
    volatile uint32_t SSGEN_DISABLE;
 | 
					  volatile uint32_t SSGEN_DISABLE;
 | 
				
			||||||
    volatile uint32_t SSGEN_ACTIVE_HIGH;
 | 
					  volatile uint32_t SSGEN_ACTIVE_HIGH;
 | 
				
			||||||
    uint8_t fill1[12];
 | 
					  uint8_t fill1[12];
 | 
				
			||||||
    volatile uint32_t XIP_ENABLE;
 | 
					  volatile uint32_t XIP_ENABLE;
 | 
				
			||||||
    volatile uint32_t XIP_CONFIG;
 | 
					  volatile uint32_t XIP_CONFIG;
 | 
				
			||||||
    volatile uint32_t XIP_MODE;
 | 
					  volatile uint32_t XIP_MODE;
 | 
				
			||||||
    uint8_t fill2[4];
 | 
					  uint8_t fill2[4];
 | 
				
			||||||
    volatile uint32_t XIP_WRITE;
 | 
					  volatile uint32_t XIP_WRITE;
 | 
				
			||||||
    volatile uint32_t XIP_READ_WRITE;
 | 
					  volatile uint32_t XIP_READ_WRITE;
 | 
				
			||||||
    volatile uint32_t XIP_READ;
 | 
					  volatile uint32_t XIP_READ;
 | 
				
			||||||
}apb3spi_t;
 | 
					} apb3spi_t;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define APB3SPI_DATA_DATA_OFFS 0
 | 
					#define APB3SPI_DATA_DATA_OFFS 0
 | 
				
			||||||
#define APB3SPI_DATA_DATA_MASK 0xff
 | 
					#define APB3SPI_DATA_DATA_MASK 0xff
 | 
				
			||||||
@@ -45,9 +45,9 @@ typedef struct {
 | 
				
			|||||||
#define APB3SPI_DATA_READ_MASK 0x1
 | 
					#define APB3SPI_DATA_READ_MASK 0x1
 | 
				
			||||||
#define APB3SPI_DATA_READ(V) ((V & APB3SPI_DATA_READ_MASK) << APB3SPI_DATA_READ_OFFS)
 | 
					#define APB3SPI_DATA_READ(V) ((V & APB3SPI_DATA_READ_MASK) << APB3SPI_DATA_READ_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define APB3SPI_DATA_KIND_OFFS 11
 | 
					#define APB3SPI_DATA_SSGEN_OFFS 11
 | 
				
			||||||
#define APB3SPI_DATA_KIND_MASK 0x1
 | 
					#define APB3SPI_DATA_SSGEN_MASK 0x1
 | 
				
			||||||
#define APB3SPI_DATA_KIND(V) ((V & APB3SPI_DATA_KIND_MASK) << APB3SPI_DATA_KIND_OFFS)
 | 
					#define APB3SPI_DATA_SSGEN(V) ((V & APB3SPI_DATA_SSGEN_MASK) << APB3SPI_DATA_SSGEN_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define APB3SPI_DATA_RX_DATA_INVALID_OFFS 31
 | 
					#define APB3SPI_DATA_RX_DATA_INVALID_OFFS 31
 | 
				
			||||||
#define APB3SPI_DATA_RX_DATA_INVALID_MASK 0x1
 | 
					#define APB3SPI_DATA_RX_DATA_INVALID_MASK 0x1
 | 
				
			||||||
@@ -157,268 +157,154 @@ typedef struct {
 | 
				
			|||||||
#define APB3SPI_XIP_READ_MASK 0xff
 | 
					#define APB3SPI_XIP_READ_MASK 0xff
 | 
				
			||||||
#define APB3SPI_XIP_READ(V) ((V & APB3SPI_XIP_READ_MASK) << APB3SPI_XIP_READ_OFFS)
 | 
					#define APB3SPI_XIP_READ(V) ((V & APB3SPI_XIP_READ_MASK) << APB3SPI_XIP_READ_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//APB3SPI_DATA
 | 
					// APB3SPI_DATA
 | 
				
			||||||
inline uint32_t get_apb3spi_data(volatile apb3spi_t* reg){
 | 
					static inline uint32_t get_apb3spi_data(volatile apb3spi_t* reg) { return reg->DATA; }
 | 
				
			||||||
     return reg->DATA;
 | 
					static inline void set_apb3spi_data(volatile apb3spi_t* reg, uint32_t value) { reg->DATA = value; }
 | 
				
			||||||
 | 
					static inline void set_apb3spi_data_data(volatile apb3spi_t* reg, uint8_t value) { reg->DATA = (reg->DATA & ~(0xffU << 0)) | (value << 0); }
 | 
				
			||||||
 | 
					static inline uint32_t get_apb3spi_data_write(volatile apb3spi_t* reg) { return (reg->DATA >> 8) & 0x1; }
 | 
				
			||||||
 | 
					static inline void set_apb3spi_data_write(volatile apb3spi_t* reg, uint8_t value) { reg->DATA = (reg->DATA & ~(0x1U << 8)) | (value << 8); }
 | 
				
			||||||
 | 
					static inline uint32_t get_apb3spi_data_read(volatile apb3spi_t* reg) { return (reg->DATA >> 9) & 0x1; }
 | 
				
			||||||
 | 
					static inline void set_apb3spi_data_read(volatile apb3spi_t* reg, uint8_t value) { reg->DATA = (reg->DATA & ~(0x1U << 9)) | (value << 9); }
 | 
				
			||||||
 | 
					static inline uint32_t get_apb3spi_data_ssgen(volatile apb3spi_t* reg) { return (reg->DATA >> 11) & 0x1; }
 | 
				
			||||||
 | 
					static inline void set_apb3spi_data_ssgen(volatile apb3spi_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->DATA = (reg->DATA & ~(0x1U << 11)) | (value << 11);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
inline void set_apb3spi_data(volatile apb3spi_t* reg, uint32_t value){
 | 
					static inline uint32_t get_apb3spi_data_rx_data_invalid(volatile apb3spi_t* reg) { return (reg->DATA >> 31) & 0x1; }
 | 
				
			||||||
     reg->DATA = value;
 | 
					
 | 
				
			||||||
 | 
					// APB3SPI_STATUS
 | 
				
			||||||
 | 
					static inline uint32_t get_apb3spi_status(volatile apb3spi_t* reg) { return reg->STATUS; }
 | 
				
			||||||
 | 
					static inline uint32_t get_apb3spi_status_tx_free(volatile apb3spi_t* reg) { return (reg->STATUS >> 0) & 0x3f; }
 | 
				
			||||||
 | 
					static inline uint32_t get_apb3spi_status_rx_avail(volatile apb3spi_t* reg) { return (reg->STATUS >> 16) & 0x3f; }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					// APB3SPI_CONFIG
 | 
				
			||||||
 | 
					static inline uint32_t get_apb3spi_config(volatile apb3spi_t* reg) { return reg->CONFIG; }
 | 
				
			||||||
 | 
					static inline void set_apb3spi_config(volatile apb3spi_t* reg, uint32_t value) { reg->CONFIG = value; }
 | 
				
			||||||
 | 
					static inline uint32_t get_apb3spi_config_kind(volatile apb3spi_t* reg) { return (reg->CONFIG >> 0) & 0x3; }
 | 
				
			||||||
 | 
					static inline void set_apb3spi_config_kind(volatile apb3spi_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->CONFIG = (reg->CONFIG & ~(0x3U << 0)) | (value << 0);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
inline void set_apb3spi_data_data(volatile apb3spi_t* reg, uint8_t value){
 | 
					static inline uint32_t get_apb3spi_config_mode(volatile apb3spi_t* reg) { return (reg->CONFIG >> 4) & 0x3; }
 | 
				
			||||||
    reg->DATA = (reg->DATA & ~(0xffU << 0)) | (value << 0);
 | 
					static inline void set_apb3spi_config_mode(volatile apb3spi_t* reg, uint8_t value) {
 | 
				
			||||||
}
 | 
					  reg->CONFIG = (reg->CONFIG & ~(0x3U << 4)) | (value << 4);
 | 
				
			||||||
inline uint32_t get_apb3spi_data_write(volatile apb3spi_t* reg){
 | 
					 | 
				
			||||||
    return (reg->DATA >> 8) & 0x1;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline void set_apb3spi_data_write(volatile apb3spi_t* reg, uint8_t value){
 | 
					 | 
				
			||||||
    reg->DATA = (reg->DATA & ~(0x1U << 8)) | (value << 8);
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline uint32_t get_apb3spi_data_read(volatile apb3spi_t* reg){
 | 
					 | 
				
			||||||
    return (reg->DATA >> 9) & 0x1;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline void set_apb3spi_data_read(volatile apb3spi_t* reg, uint8_t value){
 | 
					 | 
				
			||||||
    reg->DATA = (reg->DATA & ~(0x1U << 9)) | (value << 9);
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline uint32_t get_apb3spi_data_kind(volatile apb3spi_t* reg){
 | 
					 | 
				
			||||||
    return (reg->DATA >> 11) & 0x1;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline void set_apb3spi_data_kind(volatile apb3spi_t* reg, uint8_t value){
 | 
					 | 
				
			||||||
    reg->DATA = (reg->DATA & ~(0x1U << 11)) | (value << 11);
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline uint32_t get_apb3spi_data_rx_data_invalid(volatile apb3spi_t* reg){
 | 
					 | 
				
			||||||
    return (reg->DATA >> 31) & 0x1;
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//APB3SPI_STATUS
 | 
					// APB3SPI_INTR
 | 
				
			||||||
inline uint32_t get_apb3spi_status(volatile apb3spi_t* reg){
 | 
					static inline uint32_t get_apb3spi_intr(volatile apb3spi_t* reg) { return reg->INTR; }
 | 
				
			||||||
     return reg->STATUS;
 | 
					static inline void set_apb3spi_intr(volatile apb3spi_t* reg, uint32_t value) { reg->INTR = value; }
 | 
				
			||||||
}
 | 
					static inline uint32_t get_apb3spi_intr_tx_ie(volatile apb3spi_t* reg) { return (reg->INTR >> 0) & 0x1; }
 | 
				
			||||||
inline uint32_t get_apb3spi_status_tx_free(volatile apb3spi_t* reg){
 | 
					static inline void set_apb3spi_intr_tx_ie(volatile apb3spi_t* reg, uint8_t value) { reg->INTR = (reg->INTR & ~(0x1U << 0)) | (value << 0); }
 | 
				
			||||||
    return (reg->STATUS >> 0) & 0x3f;
 | 
					static inline uint32_t get_apb3spi_intr_rx_ie(volatile apb3spi_t* reg) { return (reg->INTR >> 1) & 0x1; }
 | 
				
			||||||
}
 | 
					static inline void set_apb3spi_intr_rx_ie(volatile apb3spi_t* reg, uint8_t value) { reg->INTR = (reg->INTR & ~(0x1U << 1)) | (value << 1); }
 | 
				
			||||||
inline uint32_t get_apb3spi_status_rx_avail(volatile apb3spi_t* reg){
 | 
					static inline uint32_t get_apb3spi_intr_tx_ip(volatile apb3spi_t* reg) { return (reg->INTR >> 8) & 0x1; }
 | 
				
			||||||
    return (reg->STATUS >> 16) & 0x3f;
 | 
					static inline void set_apb3spi_intr_tx_ip(volatile apb3spi_t* reg, uint8_t value) { reg->INTR = (reg->INTR & ~(0x1U << 8)) | (value << 8); }
 | 
				
			||||||
 | 
					static inline uint32_t get_apb3spi_intr_rx_ip(volatile apb3spi_t* reg) { return (reg->INTR >> 9) & 0x1; }
 | 
				
			||||||
 | 
					static inline void set_apb3spi_intr_rx_ip(volatile apb3spi_t* reg, uint8_t value) { reg->INTR = (reg->INTR & ~(0x1U << 9)) | (value << 9); }
 | 
				
			||||||
 | 
					static inline uint32_t get_apb3spi_intr_tx_active(volatile apb3spi_t* reg) { return (reg->INTR >> 16) & 0x1; }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					// APB3SPI_SCLK_CONFIG
 | 
				
			||||||
 | 
					static inline uint32_t get_apb3spi_sclk_config(volatile apb3spi_t* reg) { return reg->SCLK_CONFIG; }
 | 
				
			||||||
 | 
					static inline void set_apb3spi_sclk_config(volatile apb3spi_t* reg, uint32_t value) { reg->SCLK_CONFIG = value; }
 | 
				
			||||||
 | 
					static inline uint32_t get_apb3spi_sclk_config_clk_divider(volatile apb3spi_t* reg) { return (reg->SCLK_CONFIG >> 0) & 0xfff; }
 | 
				
			||||||
 | 
					static inline void set_apb3spi_sclk_config_clk_divider(volatile apb3spi_t* reg, uint16_t value) {
 | 
				
			||||||
 | 
					  reg->SCLK_CONFIG = (reg->SCLK_CONFIG & ~(0xfffU << 0)) | (value << 0);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//APB3SPI_CONFIG
 | 
					// APB3SPI_SSGEN_SETUP
 | 
				
			||||||
inline uint32_t get_apb3spi_config(volatile apb3spi_t* reg){
 | 
					static inline uint32_t get_apb3spi_ssgen_setup(volatile apb3spi_t* reg) { return reg->SSGEN_SETUP; }
 | 
				
			||||||
     return reg->CONFIG;
 | 
					static inline void set_apb3spi_ssgen_setup(volatile apb3spi_t* reg, uint32_t value) { reg->SSGEN_SETUP = value; }
 | 
				
			||||||
}
 | 
					static inline uint32_t get_apb3spi_ssgen_setup_setup_cycles(volatile apb3spi_t* reg) { return (reg->SSGEN_SETUP >> 0) & 0xfff; }
 | 
				
			||||||
inline void set_apb3spi_config(volatile apb3spi_t* reg, uint32_t value){
 | 
					static inline void set_apb3spi_ssgen_setup_setup_cycles(volatile apb3spi_t* reg, uint16_t value) {
 | 
				
			||||||
     reg->CONFIG = value;
 | 
					  reg->SSGEN_SETUP = (reg->SSGEN_SETUP & ~(0xfffU << 0)) | (value << 0);
 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline uint32_t get_apb3spi_config_kind(volatile apb3spi_t* reg){
 | 
					 | 
				
			||||||
    return (reg->CONFIG >> 0) & 0x3;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline void set_apb3spi_config_kind(volatile apb3spi_t* reg, uint8_t value){
 | 
					 | 
				
			||||||
    reg->CONFIG = (reg->CONFIG & ~(0x3U << 0)) | (value << 0);
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline uint32_t get_apb3spi_config_mode(volatile apb3spi_t* reg){
 | 
					 | 
				
			||||||
    return (reg->CONFIG >> 4) & 0x3;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline void set_apb3spi_config_mode(volatile apb3spi_t* reg, uint8_t value){
 | 
					 | 
				
			||||||
    reg->CONFIG = (reg->CONFIG & ~(0x3U << 4)) | (value << 4);
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//APB3SPI_INTR
 | 
					// APB3SPI_SSGEN_HOLD
 | 
				
			||||||
inline uint32_t get_apb3spi_intr(volatile apb3spi_t* reg){
 | 
					static inline uint32_t get_apb3spi_ssgen_hold(volatile apb3spi_t* reg) { return reg->SSGEN_HOLD; }
 | 
				
			||||||
     return reg->INTR;
 | 
					static inline void set_apb3spi_ssgen_hold(volatile apb3spi_t* reg, uint32_t value) { reg->SSGEN_HOLD = value; }
 | 
				
			||||||
}
 | 
					static inline uint32_t get_apb3spi_ssgen_hold_hold_cycles(volatile apb3spi_t* reg) { return (reg->SSGEN_HOLD >> 0) & 0xfff; }
 | 
				
			||||||
inline void set_apb3spi_intr(volatile apb3spi_t* reg, uint32_t value){
 | 
					static inline void set_apb3spi_ssgen_hold_hold_cycles(volatile apb3spi_t* reg, uint16_t value) {
 | 
				
			||||||
     reg->INTR = value;
 | 
					  reg->SSGEN_HOLD = (reg->SSGEN_HOLD & ~(0xfffU << 0)) | (value << 0);
 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline uint32_t get_apb3spi_intr_tx_ie(volatile apb3spi_t* reg){
 | 
					 | 
				
			||||||
    return (reg->INTR >> 0) & 0x1;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline void set_apb3spi_intr_tx_ie(volatile apb3spi_t* reg, uint8_t value){
 | 
					 | 
				
			||||||
    reg->INTR = (reg->INTR & ~(0x1U << 0)) | (value << 0);
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline uint32_t get_apb3spi_intr_rx_ie(volatile apb3spi_t* reg){
 | 
					 | 
				
			||||||
    return (reg->INTR >> 1) & 0x1;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline void set_apb3spi_intr_rx_ie(volatile apb3spi_t* reg, uint8_t value){
 | 
					 | 
				
			||||||
    reg->INTR = (reg->INTR & ~(0x1U << 1)) | (value << 1);
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline uint32_t get_apb3spi_intr_tx_ip(volatile apb3spi_t* reg){
 | 
					 | 
				
			||||||
    return (reg->INTR >> 8) & 0x1;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline uint32_t get_apb3spi_intr_rx_ip(volatile apb3spi_t* reg){
 | 
					 | 
				
			||||||
    return (reg->INTR >> 9) & 0x1;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline uint32_t get_apb3spi_intr_tx_active(volatile apb3spi_t* reg){
 | 
					 | 
				
			||||||
    return (reg->INTR >> 16) & 0x1;
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//APB3SPI_SCLK_CONFIG
 | 
					// APB3SPI_SSGEN_DISABLE
 | 
				
			||||||
inline uint32_t get_apb3spi_sclk_config(volatile apb3spi_t* reg){
 | 
					static inline uint32_t get_apb3spi_ssgen_disable(volatile apb3spi_t* reg) { return reg->SSGEN_DISABLE; }
 | 
				
			||||||
     return reg->SCLK_CONFIG;
 | 
					static inline void set_apb3spi_ssgen_disable(volatile apb3spi_t* reg, uint32_t value) { reg->SSGEN_DISABLE = value; }
 | 
				
			||||||
}
 | 
					static inline uint32_t get_apb3spi_ssgen_disable_disable_cycles(volatile apb3spi_t* reg) { return (reg->SSGEN_DISABLE >> 0) & 0xfff; }
 | 
				
			||||||
inline void set_apb3spi_sclk_config(volatile apb3spi_t* reg, uint32_t value){
 | 
					static inline void set_apb3spi_ssgen_disable_disable_cycles(volatile apb3spi_t* reg, uint16_t value) {
 | 
				
			||||||
     reg->SCLK_CONFIG = value;
 | 
					  reg->SSGEN_DISABLE = (reg->SSGEN_DISABLE & ~(0xfffU << 0)) | (value << 0);
 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline uint32_t get_apb3spi_sclk_config_clk_divider(volatile apb3spi_t* reg){
 | 
					 | 
				
			||||||
    return (reg->SCLK_CONFIG >> 0) & 0xfff;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline void set_apb3spi_sclk_config_clk_divider(volatile apb3spi_t* reg, uint16_t value){
 | 
					 | 
				
			||||||
    reg->SCLK_CONFIG = (reg->SCLK_CONFIG & ~(0xfffU << 0)) | (value << 0);
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//APB3SPI_SSGEN_SETUP
 | 
					// APB3SPI_SSGEN_ACTIVE_HIGH
 | 
				
			||||||
inline uint32_t get_apb3spi_ssgen_setup(volatile apb3spi_t* reg){
 | 
					static inline uint32_t get_apb3spi_ssgen_active_high(volatile apb3spi_t* reg) { return reg->SSGEN_ACTIVE_HIGH; }
 | 
				
			||||||
     return reg->SSGEN_SETUP;
 | 
					static inline void set_apb3spi_ssgen_active_high(volatile apb3spi_t* reg, uint32_t value) { reg->SSGEN_ACTIVE_HIGH = value; }
 | 
				
			||||||
 | 
					static inline uint32_t get_apb3spi_ssgen_active_high_spi_cs_active_high(volatile apb3spi_t* reg) {
 | 
				
			||||||
 | 
					  return (reg->SSGEN_ACTIVE_HIGH >> 0) & 0x1;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
inline void set_apb3spi_ssgen_setup(volatile apb3spi_t* reg, uint32_t value){
 | 
					static inline void set_apb3spi_ssgen_active_high_spi_cs_active_high(volatile apb3spi_t* reg, uint8_t value) {
 | 
				
			||||||
     reg->SSGEN_SETUP = value;
 | 
					  reg->SSGEN_ACTIVE_HIGH = (reg->SSGEN_ACTIVE_HIGH & ~(0x1U << 0)) | (value << 0);
 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline uint32_t get_apb3spi_ssgen_setup_setup_cycles(volatile apb3spi_t* reg){
 | 
					 | 
				
			||||||
    return (reg->SSGEN_SETUP >> 0) & 0xfff;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline void set_apb3spi_ssgen_setup_setup_cycles(volatile apb3spi_t* reg, uint16_t value){
 | 
					 | 
				
			||||||
    reg->SSGEN_SETUP = (reg->SSGEN_SETUP & ~(0xfffU << 0)) | (value << 0);
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//APB3SPI_SSGEN_HOLD
 | 
					// APB3SPI_XIP_ENABLE
 | 
				
			||||||
inline uint32_t get_apb3spi_ssgen_hold(volatile apb3spi_t* reg){
 | 
					static inline uint32_t get_apb3spi_xip_enable(volatile apb3spi_t* reg) { return reg->XIP_ENABLE; }
 | 
				
			||||||
     return reg->SSGEN_HOLD;
 | 
					static inline void set_apb3spi_xip_enable(volatile apb3spi_t* reg, uint32_t value) { reg->XIP_ENABLE = value; }
 | 
				
			||||||
}
 | 
					static inline uint32_t get_apb3spi_xip_enable_enable(volatile apb3spi_t* reg) { return (reg->XIP_ENABLE >> 0) & 0x1; }
 | 
				
			||||||
inline void set_apb3spi_ssgen_hold(volatile apb3spi_t* reg, uint32_t value){
 | 
					static inline void set_apb3spi_xip_enable_enable(volatile apb3spi_t* reg, uint8_t value) {
 | 
				
			||||||
     reg->SSGEN_HOLD = value;
 | 
					  reg->XIP_ENABLE = (reg->XIP_ENABLE & ~(0x1U << 0)) | (value << 0);
 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline uint32_t get_apb3spi_ssgen_hold_hold_cycles(volatile apb3spi_t* reg){
 | 
					 | 
				
			||||||
    return (reg->SSGEN_HOLD >> 0) & 0xfff;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline void set_apb3spi_ssgen_hold_hold_cycles(volatile apb3spi_t* reg, uint16_t value){
 | 
					 | 
				
			||||||
    reg->SSGEN_HOLD = (reg->SSGEN_HOLD & ~(0xfffU << 0)) | (value << 0);
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//APB3SPI_SSGEN_DISABLE
 | 
					// APB3SPI_XIP_CONFIG
 | 
				
			||||||
inline uint32_t get_apb3spi_ssgen_disable(volatile apb3spi_t* reg){
 | 
					static inline uint32_t get_apb3spi_xip_config(volatile apb3spi_t* reg) { return reg->XIP_CONFIG; }
 | 
				
			||||||
     return reg->SSGEN_DISABLE;
 | 
					static inline void set_apb3spi_xip_config(volatile apb3spi_t* reg, uint32_t value) { reg->XIP_CONFIG = value; }
 | 
				
			||||||
 | 
					static inline uint32_t get_apb3spi_xip_config_instruction(volatile apb3spi_t* reg) { return (reg->XIP_CONFIG >> 0) & 0xff; }
 | 
				
			||||||
 | 
					static inline void set_apb3spi_xip_config_instruction(volatile apb3spi_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->XIP_CONFIG = (reg->XIP_CONFIG & ~(0xffU << 0)) | (value << 0);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
inline void set_apb3spi_ssgen_disable(volatile apb3spi_t* reg, uint32_t value){
 | 
					static inline uint32_t get_apb3spi_xip_config_enable(volatile apb3spi_t* reg) { return (reg->XIP_CONFIG >> 8) & 0x1; }
 | 
				
			||||||
     reg->SSGEN_DISABLE = value;
 | 
					static inline void set_apb3spi_xip_config_enable(volatile apb3spi_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->XIP_CONFIG = (reg->XIP_CONFIG & ~(0x1U << 8)) | (value << 8);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
inline uint32_t get_apb3spi_ssgen_disable_disable_cycles(volatile apb3spi_t* reg){
 | 
					static inline uint32_t get_apb3spi_xip_config_dummy_value(volatile apb3spi_t* reg) { return (reg->XIP_CONFIG >> 16) & 0xff; }
 | 
				
			||||||
    return (reg->SSGEN_DISABLE >> 0) & 0xfff;
 | 
					static inline void set_apb3spi_xip_config_dummy_value(volatile apb3spi_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->XIP_CONFIG = (reg->XIP_CONFIG & ~(0xffU << 16)) | (value << 16);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
inline void set_apb3spi_ssgen_disable_disable_cycles(volatile apb3spi_t* reg, uint16_t value){
 | 
					static inline uint32_t get_apb3spi_xip_config_dummy_count(volatile apb3spi_t* reg) { return (reg->XIP_CONFIG >> 24) & 0xf; }
 | 
				
			||||||
    reg->SSGEN_DISABLE = (reg->SSGEN_DISABLE & ~(0xfffU << 0)) | (value << 0);
 | 
					static inline void set_apb3spi_xip_config_dummy_count(volatile apb3spi_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->XIP_CONFIG = (reg->XIP_CONFIG & ~(0xfU << 24)) | (value << 24);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//APB3SPI_SSGEN_ACTIVE_HIGH
 | 
					// APB3SPI_XIP_MODE
 | 
				
			||||||
inline uint32_t get_apb3spi_ssgen_active_high(volatile apb3spi_t* reg){
 | 
					static inline uint32_t get_apb3spi_xip_mode(volatile apb3spi_t* reg) { return reg->XIP_MODE; }
 | 
				
			||||||
     return reg->SSGEN_ACTIVE_HIGH;
 | 
					static inline void set_apb3spi_xip_mode(volatile apb3spi_t* reg, uint32_t value) { reg->XIP_MODE = value; }
 | 
				
			||||||
 | 
					static inline uint32_t get_apb3spi_xip_mode_instruction(volatile apb3spi_t* reg) { return (reg->XIP_MODE >> 0) & 0x3; }
 | 
				
			||||||
 | 
					static inline void set_apb3spi_xip_mode_instruction(volatile apb3spi_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->XIP_MODE = (reg->XIP_MODE & ~(0x3U << 0)) | (value << 0);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
inline void set_apb3spi_ssgen_active_high(volatile apb3spi_t* reg, uint32_t value){
 | 
					static inline uint32_t get_apb3spi_xip_mode_address(volatile apb3spi_t* reg) { return (reg->XIP_MODE >> 8) & 0x3; }
 | 
				
			||||||
     reg->SSGEN_ACTIVE_HIGH = value;
 | 
					static inline void set_apb3spi_xip_mode_address(volatile apb3spi_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->XIP_MODE = (reg->XIP_MODE & ~(0x3U << 8)) | (value << 8);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
inline uint32_t get_apb3spi_ssgen_active_high_spi_cs_active_high(volatile apb3spi_t* reg){
 | 
					static inline uint32_t get_apb3spi_xip_mode_dummy(volatile apb3spi_t* reg) { return (reg->XIP_MODE >> 16) & 0x3; }
 | 
				
			||||||
    return (reg->SSGEN_ACTIVE_HIGH >> 0) & 0x1;
 | 
					static inline void set_apb3spi_xip_mode_dummy(volatile apb3spi_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->XIP_MODE = (reg->XIP_MODE & ~(0x3U << 16)) | (value << 16);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
inline void set_apb3spi_ssgen_active_high_spi_cs_active_high(volatile apb3spi_t* reg, uint8_t value){
 | 
					static inline uint32_t get_apb3spi_xip_mode_payload(volatile apb3spi_t* reg) { return (reg->XIP_MODE >> 24) & 0x3; }
 | 
				
			||||||
    reg->SSGEN_ACTIVE_HIGH = (reg->SSGEN_ACTIVE_HIGH & ~(0x1U << 0)) | (value << 0);
 | 
					static inline void set_apb3spi_xip_mode_payload(volatile apb3spi_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->XIP_MODE = (reg->XIP_MODE & ~(0x3U << 24)) | (value << 24);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//APB3SPI_XIP_ENABLE
 | 
					// APB3SPI_XIP_WRITE
 | 
				
			||||||
inline uint32_t get_apb3spi_xip_enable(volatile apb3spi_t* reg){
 | 
					static inline void set_apb3spi_xip_write(volatile apb3spi_t* reg, uint32_t value) { reg->XIP_WRITE = value; }
 | 
				
			||||||
     return reg->XIP_ENABLE;
 | 
					static inline void set_apb3spi_xip_write_data(volatile apb3spi_t* reg, uint8_t value) {
 | 
				
			||||||
}
 | 
					  reg->XIP_WRITE = (reg->XIP_WRITE & ~(0xffU << 0)) | (value << 0);
 | 
				
			||||||
inline void set_apb3spi_xip_enable(volatile apb3spi_t* reg, uint32_t value){
 | 
					 | 
				
			||||||
     reg->XIP_ENABLE = value;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline uint32_t get_apb3spi_xip_enable_enable(volatile apb3spi_t* reg){
 | 
					 | 
				
			||||||
    return (reg->XIP_ENABLE >> 0) & 0x1;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline void set_apb3spi_xip_enable_enable(volatile apb3spi_t* reg, uint8_t value){
 | 
					 | 
				
			||||||
    reg->XIP_ENABLE = (reg->XIP_ENABLE & ~(0x1U << 0)) | (value << 0);
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//APB3SPI_XIP_CONFIG
 | 
					// APB3SPI_XIP_READ_WRITE
 | 
				
			||||||
inline uint32_t get_apb3spi_xip_config(volatile apb3spi_t* reg){
 | 
					static inline void set_apb3spi_xip_read_write(volatile apb3spi_t* reg, uint32_t value) { reg->XIP_READ_WRITE = value; }
 | 
				
			||||||
     return reg->XIP_CONFIG;
 | 
					static inline void set_apb3spi_xip_read_write_data(volatile apb3spi_t* reg, uint8_t value) {
 | 
				
			||||||
}
 | 
					  reg->XIP_READ_WRITE = (reg->XIP_READ_WRITE & ~(0xffU << 0)) | (value << 0);
 | 
				
			||||||
inline void set_apb3spi_xip_config(volatile apb3spi_t* reg, uint32_t value){
 | 
					 | 
				
			||||||
     reg->XIP_CONFIG = value;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline uint32_t get_apb3spi_xip_config_instruction(volatile apb3spi_t* reg){
 | 
					 | 
				
			||||||
    return (reg->XIP_CONFIG >> 0) & 0xff;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline void set_apb3spi_xip_config_instruction(volatile apb3spi_t* reg, uint8_t value){
 | 
					 | 
				
			||||||
    reg->XIP_CONFIG = (reg->XIP_CONFIG & ~(0xffU << 0)) | (value << 0);
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline uint32_t get_apb3spi_xip_config_enable(volatile apb3spi_t* reg){
 | 
					 | 
				
			||||||
    return (reg->XIP_CONFIG >> 8) & 0x1;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline void set_apb3spi_xip_config_enable(volatile apb3spi_t* reg, uint8_t value){
 | 
					 | 
				
			||||||
    reg->XIP_CONFIG = (reg->XIP_CONFIG & ~(0x1U << 8)) | (value << 8);
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline uint32_t get_apb3spi_xip_config_dummy_value(volatile apb3spi_t* reg){
 | 
					 | 
				
			||||||
    return (reg->XIP_CONFIG >> 16) & 0xff;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline void set_apb3spi_xip_config_dummy_value(volatile apb3spi_t* reg, uint8_t value){
 | 
					 | 
				
			||||||
    reg->XIP_CONFIG = (reg->XIP_CONFIG & ~(0xffU << 16)) | (value << 16);
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline uint32_t get_apb3spi_xip_config_dummy_count(volatile apb3spi_t* reg){
 | 
					 | 
				
			||||||
    return (reg->XIP_CONFIG >> 24) & 0xf;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline void set_apb3spi_xip_config_dummy_count(volatile apb3spi_t* reg, uint8_t value){
 | 
					 | 
				
			||||||
    reg->XIP_CONFIG = (reg->XIP_CONFIG & ~(0xfU << 24)) | (value << 24);
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//APB3SPI_XIP_MODE
 | 
					// APB3SPI_XIP_READ
 | 
				
			||||||
inline uint32_t get_apb3spi_xip_mode(volatile apb3spi_t* reg){
 | 
					static inline uint32_t get_apb3spi_xip_read(volatile apb3spi_t* reg) { return reg->XIP_READ; }
 | 
				
			||||||
     return reg->XIP_MODE;
 | 
					static inline uint32_t get_apb3spi_xip_read_data(volatile apb3spi_t* reg) { return (reg->XIP_READ >> 0) & 0xff; }
 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline void set_apb3spi_xip_mode(volatile apb3spi_t* reg, uint32_t value){
 | 
					 | 
				
			||||||
     reg->XIP_MODE = value;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline uint32_t get_apb3spi_xip_mode_instruction(volatile apb3spi_t* reg){
 | 
					 | 
				
			||||||
    return (reg->XIP_MODE >> 0) & 0x3;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline void set_apb3spi_xip_mode_instruction(volatile apb3spi_t* reg, uint8_t value){
 | 
					 | 
				
			||||||
    reg->XIP_MODE = (reg->XIP_MODE & ~(0x3U << 0)) | (value << 0);
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline uint32_t get_apb3spi_xip_mode_address(volatile apb3spi_t* reg){
 | 
					 | 
				
			||||||
    return (reg->XIP_MODE >> 8) & 0x3;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline void set_apb3spi_xip_mode_address(volatile apb3spi_t* reg, uint8_t value){
 | 
					 | 
				
			||||||
    reg->XIP_MODE = (reg->XIP_MODE & ~(0x3U << 8)) | (value << 8);
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline uint32_t get_apb3spi_xip_mode_dummy(volatile apb3spi_t* reg){
 | 
					 | 
				
			||||||
    return (reg->XIP_MODE >> 16) & 0x3;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline void set_apb3spi_xip_mode_dummy(volatile apb3spi_t* reg, uint8_t value){
 | 
					 | 
				
			||||||
    reg->XIP_MODE = (reg->XIP_MODE & ~(0x3U << 16)) | (value << 16);
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline uint32_t get_apb3spi_xip_mode_payload(volatile apb3spi_t* reg){
 | 
					 | 
				
			||||||
    return (reg->XIP_MODE >> 24) & 0x3;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline void set_apb3spi_xip_mode_payload(volatile apb3spi_t* reg, uint8_t value){
 | 
					 | 
				
			||||||
    reg->XIP_MODE = (reg->XIP_MODE & ~(0x3U << 24)) | (value << 24);
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
//APB3SPI_XIP_WRITE
 | 
					 | 
				
			||||||
inline void set_apb3spi_xip_write(volatile apb3spi_t* reg, uint32_t value){
 | 
					 | 
				
			||||||
     reg->XIP_WRITE = value;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline void set_apb3spi_xip_write_data(volatile apb3spi_t* reg, uint8_t value){
 | 
					 | 
				
			||||||
    reg->XIP_WRITE = (reg->XIP_WRITE & ~(0xffU << 0)) | (value << 0);
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
//APB3SPI_XIP_READ_WRITE
 | 
					 | 
				
			||||||
inline void set_apb3spi_xip_read_write(volatile apb3spi_t* reg, uint32_t value){
 | 
					 | 
				
			||||||
     reg->XIP_READ_WRITE = value;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline void set_apb3spi_xip_read_write_data(volatile apb3spi_t* reg, uint8_t value){
 | 
					 | 
				
			||||||
    reg->XIP_READ_WRITE = (reg->XIP_READ_WRITE & ~(0xffU << 0)) | (value << 0);
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
//APB3SPI_XIP_READ
 | 
					 | 
				
			||||||
inline uint32_t get_apb3spi_xip_read(volatile apb3spi_t* reg){
 | 
					 | 
				
			||||||
     return reg->XIP_READ;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline uint32_t get_apb3spi_xip_read_data(volatile apb3spi_t* reg){
 | 
					 | 
				
			||||||
    return (reg->XIP_READ >> 0) & 0xff;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
#endif /* _BSP_APB3SPI_H */
 | 
					#endif /* _BSP_APB3SPI_H */
 | 
				
			||||||
@@ -1,11 +1,11 @@
 | 
				
			|||||||
/*
 | 
					/*
 | 
				
			||||||
* Copyright (c) 2023 - 2024 MINRES Technologies GmbH
 | 
					 * Copyright (c) 2023 - 2025 MINRES Technologies GmbH
 | 
				
			||||||
*
 | 
					 *
 | 
				
			||||||
* SPDX-License-Identifier: Apache-2.0
 | 
					 * SPDX-License-Identifier: Apache-2.0
 | 
				
			||||||
*
 | 
					 *
 | 
				
			||||||
* Generated at 2024-09-10 14:29:50 UTC 
 | 
					 * Generated at 2025-02-28 17:25:03 UTC
 | 
				
			||||||
* by peakrdl_mnrs version 1.2.9
 | 
					 * by peakrdl_mnrs version 1.2.9
 | 
				
			||||||
*/
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifndef _BSP_CAMERA_H
 | 
					#ifndef _BSP_CAMERA_H
 | 
				
			||||||
#define _BSP_CAMERA_H
 | 
					#define _BSP_CAMERA_H
 | 
				
			||||||
@@ -13,23 +13,99 @@
 | 
				
			|||||||
#include <stdint.h>
 | 
					#include <stdint.h>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
typedef struct {
 | 
					typedef struct {
 | 
				
			||||||
    volatile uint32_t PIXEL;
 | 
					  volatile uint32_t PIXEL;
 | 
				
			||||||
    volatile uint32_t STATUS;
 | 
					  volatile uint32_t CONFIG;
 | 
				
			||||||
    volatile uint32_t CAMERA_CLOCK_CTRL;
 | 
					  volatile uint32_t CONFIG2;
 | 
				
			||||||
    volatile uint32_t IE;
 | 
					  volatile uint32_t DATA_SIZE;
 | 
				
			||||||
    volatile uint32_t IP;
 | 
					  volatile uint32_t START;
 | 
				
			||||||
}camera_t;
 | 
					  volatile uint32_t STATUS;
 | 
				
			||||||
 | 
					  volatile uint32_t CAMERA_CLOCK_CTRL;
 | 
				
			||||||
 | 
					  volatile uint32_t IE;
 | 
				
			||||||
 | 
					  volatile uint32_t IP;
 | 
				
			||||||
 | 
					} camera_t;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define CAMERA_PIXEL_OFFS 0
 | 
					#define CAMERA_PIXEL_OFFS 0
 | 
				
			||||||
#define CAMERA_PIXEL_MASK 0x7ff
 | 
					#define CAMERA_PIXEL_MASK 0xffffffff
 | 
				
			||||||
#define CAMERA_PIXEL(V) ((V & CAMERA_PIXEL_MASK) << CAMERA_PIXEL_OFFS)
 | 
					#define CAMERA_PIXEL(V) ((V & CAMERA_PIXEL_MASK) << CAMERA_PIXEL_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define CAMERA_CONFIG_OUTPUT_CURR_OFFS 0
 | 
				
			||||||
 | 
					#define CAMERA_CONFIG_OUTPUT_CURR_MASK 0x3
 | 
				
			||||||
 | 
					#define CAMERA_CONFIG_OUTPUT_CURR(V) ((V & CAMERA_CONFIG_OUTPUT_CURR_MASK) << CAMERA_CONFIG_OUTPUT_CURR_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define CAMERA_CONFIG_OFFSET_RAMP_OFFS 2
 | 
				
			||||||
 | 
					#define CAMERA_CONFIG_OFFSET_RAMP_MASK 0x3
 | 
				
			||||||
 | 
					#define CAMERA_CONFIG_OFFSET_RAMP(V) ((V & CAMERA_CONFIG_OFFSET_RAMP_MASK) << CAMERA_CONFIG_OFFSET_RAMP_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define CAMERA_CONFIG_RAMP_GAIN_OFFS 4
 | 
				
			||||||
 | 
					#define CAMERA_CONFIG_RAMP_GAIN_MASK 0x3
 | 
				
			||||||
 | 
					#define CAMERA_CONFIG_RAMP_GAIN(V) ((V & CAMERA_CONFIG_RAMP_GAIN_MASK) << CAMERA_CONFIG_RAMP_GAIN_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define CAMERA_CONFIG_VRST_PIX_OFFS 6
 | 
				
			||||||
 | 
					#define CAMERA_CONFIG_VRST_PIX_MASK 0x3
 | 
				
			||||||
 | 
					#define CAMERA_CONFIG_VRST_PIX(V) ((V & CAMERA_CONFIG_VRST_PIX_MASK) << CAMERA_CONFIG_VRST_PIX_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define CAMERA_CONFIG_ROWS_IN_RESET_OFFS 8
 | 
				
			||||||
 | 
					#define CAMERA_CONFIG_ROWS_IN_RESET_MASK 0xff
 | 
				
			||||||
 | 
					#define CAMERA_CONFIG_ROWS_IN_RESET(V) ((V & CAMERA_CONFIG_ROWS_IN_RESET_MASK) << CAMERA_CONFIG_ROWS_IN_RESET_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define CAMERA_CONFIG_HIGH_SPEED_OFFS 16
 | 
				
			||||||
 | 
					#define CAMERA_CONFIG_HIGH_SPEED_MASK 0x1
 | 
				
			||||||
 | 
					#define CAMERA_CONFIG_HIGH_SPEED(V) ((V & CAMERA_CONFIG_HIGH_SPEED_MASK) << CAMERA_CONFIG_HIGH_SPEED_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define CAMERA_CONFIG_IDLE_MODE_OFFS 17
 | 
				
			||||||
 | 
					#define CAMERA_CONFIG_IDLE_MODE_MASK 0x1
 | 
				
			||||||
 | 
					#define CAMERA_CONFIG_IDLE_MODE(V) ((V & CAMERA_CONFIG_IDLE_MODE_MASK) << CAMERA_CONFIG_IDLE_MODE_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define CAMERA_CONFIG_CVC_CURR_OFFS 18
 | 
				
			||||||
 | 
					#define CAMERA_CONFIG_CVC_CURR_MASK 0x3
 | 
				
			||||||
 | 
					#define CAMERA_CONFIG_CVC_CURR(V) ((V & CAMERA_CONFIG_CVC_CURR_MASK) << CAMERA_CONFIG_CVC_CURR_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define CAMERA_CONFIG_VREF_OFFS 20
 | 
				
			||||||
 | 
					#define CAMERA_CONFIG_VREF_MASK 0x3
 | 
				
			||||||
 | 
					#define CAMERA_CONFIG_VREF(V) ((V & CAMERA_CONFIG_VREF_MASK) << CAMERA_CONFIG_VREF_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define CAMERA_CONFIG_MCLK_MODE_OFFS 22
 | 
				
			||||||
 | 
					#define CAMERA_CONFIG_MCLK_MODE_MASK 0x3
 | 
				
			||||||
 | 
					#define CAMERA_CONFIG_MCLK_MODE(V) ((V & CAMERA_CONFIG_MCLK_MODE_MASK) << CAMERA_CONFIG_MCLK_MODE_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define CAMERA_CONFIG_OUTPUT_MODE_OFFS 24
 | 
				
			||||||
 | 
					#define CAMERA_CONFIG_OUTPUT_MODE_MASK 0x1
 | 
				
			||||||
 | 
					#define CAMERA_CONFIG_OUTPUT_MODE(V) ((V & CAMERA_CONFIG_OUTPUT_MODE_MASK) << CAMERA_CONFIG_OUTPUT_MODE_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define CAMERA_CONFIG_CDS_GAIN_OFFS 25
 | 
				
			||||||
 | 
					#define CAMERA_CONFIG_CDS_GAIN_MASK 0x1
 | 
				
			||||||
 | 
					#define CAMERA_CONFIG_CDS_GAIN(V) ((V & CAMERA_CONFIG_CDS_GAIN_MASK) << CAMERA_CONFIG_CDS_GAIN_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define CAMERA_CONFIG_BIAS_CURR_INCREASE_OFFS 26
 | 
				
			||||||
 | 
					#define CAMERA_CONFIG_BIAS_CURR_INCREASE_MASK 0x1
 | 
				
			||||||
 | 
					#define CAMERA_CONFIG_BIAS_CURR_INCREASE(V) ((V & CAMERA_CONFIG_BIAS_CURR_INCREASE_MASK) << CAMERA_CONFIG_BIAS_CURR_INCREASE_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define CAMERA_CONFIG_ROWS_DELAY_OFFS 27
 | 
				
			||||||
 | 
					#define CAMERA_CONFIG_ROWS_DELAY_MASK 0x1f
 | 
				
			||||||
 | 
					#define CAMERA_CONFIG_ROWS_DELAY(V) ((V & CAMERA_CONFIG_ROWS_DELAY_MASK) << CAMERA_CONFIG_ROWS_DELAY_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define CAMERA_CONFIG2_AUTO_IDLE_OFFS 0
 | 
				
			||||||
 | 
					#define CAMERA_CONFIG2_AUTO_IDLE_MASK 0x1
 | 
				
			||||||
 | 
					#define CAMERA_CONFIG2_AUTO_IDLE(V) ((V & CAMERA_CONFIG2_AUTO_IDLE_MASK) << CAMERA_CONFIG2_AUTO_IDLE_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define CAMERA_CONFIG2_AUTO_DISCARD_FRAME_OFFS 1
 | 
				
			||||||
 | 
					#define CAMERA_CONFIG2_AUTO_DISCARD_FRAME_MASK 0x1
 | 
				
			||||||
 | 
					#define CAMERA_CONFIG2_AUTO_DISCARD_FRAME(V) ((V & CAMERA_CONFIG2_AUTO_DISCARD_FRAME_MASK) << CAMERA_CONFIG2_AUTO_DISCARD_FRAME_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define CAMERA_DATA_SIZE_OFFS 0
 | 
				
			||||||
 | 
					#define CAMERA_DATA_SIZE_MASK 0x3
 | 
				
			||||||
 | 
					#define CAMERA_DATA_SIZE(V) ((V & CAMERA_DATA_SIZE_MASK) << CAMERA_DATA_SIZE_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define CAMERA_START_OFFS 0
 | 
				
			||||||
 | 
					#define CAMERA_START_MASK 0x1
 | 
				
			||||||
 | 
					#define CAMERA_START(V) ((V & CAMERA_START_MASK) << CAMERA_START_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define CAMERA_STATUS_OFFS 0
 | 
					#define CAMERA_STATUS_OFFS 0
 | 
				
			||||||
#define CAMERA_STATUS_MASK 0x1
 | 
					#define CAMERA_STATUS_MASK 0x1
 | 
				
			||||||
#define CAMERA_STATUS(V) ((V & CAMERA_STATUS_MASK) << CAMERA_STATUS_OFFS)
 | 
					#define CAMERA_STATUS(V) ((V & CAMERA_STATUS_MASK) << CAMERA_STATUS_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define CAMERA_CAMERA_CLOCK_CTRL_OFFS 0
 | 
					#define CAMERA_CAMERA_CLOCK_CTRL_OFFS 0
 | 
				
			||||||
#define CAMERA_CAMERA_CLOCK_CTRL_MASK 0xfffff
 | 
					#define CAMERA_CAMERA_CLOCK_CTRL_MASK 0xfff
 | 
				
			||||||
#define CAMERA_CAMERA_CLOCK_CTRL(V) ((V & CAMERA_CAMERA_CLOCK_CTRL_MASK) << CAMERA_CAMERA_CLOCK_CTRL_OFFS)
 | 
					#define CAMERA_CAMERA_CLOCK_CTRL(V) ((V & CAMERA_CAMERA_CLOCK_CTRL_MASK) << CAMERA_CAMERA_CLOCK_CTRL_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define CAMERA_IE_EN_PIXEL_AVAIL_OFFS 0
 | 
					#define CAMERA_IE_EN_PIXEL_AVAIL_OFFS 0
 | 
				
			||||||
@@ -48,80 +124,134 @@ typedef struct {
 | 
				
			|||||||
#define CAMERA_IP_FRAME_FINISHED_IRQ_PEND_MASK 0x1
 | 
					#define CAMERA_IP_FRAME_FINISHED_IRQ_PEND_MASK 0x1
 | 
				
			||||||
#define CAMERA_IP_FRAME_FINISHED_IRQ_PEND(V) ((V & CAMERA_IP_FRAME_FINISHED_IRQ_PEND_MASK) << CAMERA_IP_FRAME_FINISHED_IRQ_PEND_OFFS)
 | 
					#define CAMERA_IP_FRAME_FINISHED_IRQ_PEND(V) ((V & CAMERA_IP_FRAME_FINISHED_IRQ_PEND_MASK) << CAMERA_IP_FRAME_FINISHED_IRQ_PEND_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//CAMERA_PIXEL
 | 
					// CAMERA_PIXEL
 | 
				
			||||||
inline uint32_t get_camera_pixel(volatile camera_t* reg){
 | 
					static inline uint32_t get_camera_pixel(volatile camera_t* reg) { return (reg->PIXEL >> 0) & 0xffffffff; }
 | 
				
			||||||
     return reg->PIXEL;
 | 
					static inline void set_camera_pixel(volatile camera_t* reg, uint32_t value) {
 | 
				
			||||||
}
 | 
					  reg->PIXEL = (reg->PIXEL & ~(0xffffffffU << 0)) | (value << 0);
 | 
				
			||||||
inline void set_camera_pixel(volatile camera_t* reg, uint32_t value){
 | 
					 | 
				
			||||||
     reg->PIXEL = value;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline uint32_t get_camera_pixel_data(volatile camera_t* reg){
 | 
					 | 
				
			||||||
    return (reg->PIXEL >> 0) & 0x7ff;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline void set_camera_pixel_data(volatile camera_t* reg, uint16_t value){
 | 
					 | 
				
			||||||
    reg->PIXEL = (reg->PIXEL & ~(0x7ffU << 0)) | (value << 0);
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//CAMERA_STATUS
 | 
					// CAMERA_CONFIG
 | 
				
			||||||
inline uint32_t get_camera_status(volatile camera_t* reg){
 | 
					static inline uint32_t get_camera_config(volatile camera_t* reg) { return reg->CONFIG; }
 | 
				
			||||||
     return reg->STATUS;
 | 
					static inline void set_camera_config(volatile camera_t* reg, uint32_t value) { reg->CONFIG = value; }
 | 
				
			||||||
 | 
					static inline uint32_t get_camera_config_output_curr(volatile camera_t* reg) { return (reg->CONFIG >> 0) & 0x3; }
 | 
				
			||||||
 | 
					static inline void set_camera_config_output_curr(volatile camera_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->CONFIG = (reg->CONFIG & ~(0x3U << 0)) | (value << 0);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
inline uint32_t get_camera_status_pixel_avail(volatile camera_t* reg){
 | 
					static inline uint32_t get_camera_config_offset_ramp(volatile camera_t* reg) { return (reg->CONFIG >> 2) & 0x3; }
 | 
				
			||||||
    return (reg->STATUS >> 0) & 0x1;
 | 
					static inline void set_camera_config_offset_ramp(volatile camera_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->CONFIG = (reg->CONFIG & ~(0x3U << 2)) | (value << 2);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					static inline uint32_t get_camera_config_ramp_gain(volatile camera_t* reg) { return (reg->CONFIG >> 4) & 0x3; }
 | 
				
			||||||
 | 
					static inline void set_camera_config_ramp_gain(volatile camera_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->CONFIG = (reg->CONFIG & ~(0x3U << 4)) | (value << 4);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					static inline uint32_t get_camera_config_vrst_pix(volatile camera_t* reg) { return (reg->CONFIG >> 6) & 0x3; }
 | 
				
			||||||
 | 
					static inline void set_camera_config_vrst_pix(volatile camera_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->CONFIG = (reg->CONFIG & ~(0x3U << 6)) | (value << 6);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					static inline uint32_t get_camera_config_rows_in_reset(volatile camera_t* reg) { return (reg->CONFIG >> 8) & 0xff; }
 | 
				
			||||||
 | 
					static inline void set_camera_config_rows_in_reset(volatile camera_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->CONFIG = (reg->CONFIG & ~(0xffU << 8)) | (value << 8);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					static inline uint32_t get_camera_config_high_speed(volatile camera_t* reg) { return (reg->CONFIG >> 16) & 0x1; }
 | 
				
			||||||
 | 
					static inline void set_camera_config_high_speed(volatile camera_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->CONFIG = (reg->CONFIG & ~(0x1U << 16)) | (value << 16);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					static inline uint32_t get_camera_config_idle_mode(volatile camera_t* reg) { return (reg->CONFIG >> 17) & 0x1; }
 | 
				
			||||||
 | 
					static inline void set_camera_config_idle_mode(volatile camera_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->CONFIG = (reg->CONFIG & ~(0x1U << 17)) | (value << 17);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					static inline uint32_t get_camera_config_cvc_curr(volatile camera_t* reg) { return (reg->CONFIG >> 18) & 0x3; }
 | 
				
			||||||
 | 
					static inline void set_camera_config_cvc_curr(volatile camera_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->CONFIG = (reg->CONFIG & ~(0x3U << 18)) | (value << 18);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					static inline uint32_t get_camera_config_vref(volatile camera_t* reg) { return (reg->CONFIG >> 20) & 0x3; }
 | 
				
			||||||
 | 
					static inline void set_camera_config_vref(volatile camera_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->CONFIG = (reg->CONFIG & ~(0x3U << 20)) | (value << 20);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					static inline uint32_t get_camera_config_mclk_mode(volatile camera_t* reg) { return (reg->CONFIG >> 22) & 0x3; }
 | 
				
			||||||
 | 
					static inline void set_camera_config_mclk_mode(volatile camera_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->CONFIG = (reg->CONFIG & ~(0x3U << 22)) | (value << 22);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					static inline uint32_t get_camera_config_output_mode(volatile camera_t* reg) { return (reg->CONFIG >> 24) & 0x1; }
 | 
				
			||||||
 | 
					static inline void set_camera_config_output_mode(volatile camera_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->CONFIG = (reg->CONFIG & ~(0x1U << 24)) | (value << 24);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					static inline uint32_t get_camera_config_cds_gain(volatile camera_t* reg) { return (reg->CONFIG >> 25) & 0x1; }
 | 
				
			||||||
 | 
					static inline void set_camera_config_cds_gain(volatile camera_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->CONFIG = (reg->CONFIG & ~(0x1U << 25)) | (value << 25);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					static inline uint32_t get_camera_config_bias_curr_increase(volatile camera_t* reg) { return (reg->CONFIG >> 26) & 0x1; }
 | 
				
			||||||
 | 
					static inline void set_camera_config_bias_curr_increase(volatile camera_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->CONFIG = (reg->CONFIG & ~(0x1U << 26)) | (value << 26);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					static inline uint32_t get_camera_config_rows_delay(volatile camera_t* reg) { return (reg->CONFIG >> 27) & 0x1f; }
 | 
				
			||||||
 | 
					static inline void set_camera_config_rows_delay(volatile camera_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->CONFIG = (reg->CONFIG & ~(0x1fU << 27)) | (value << 27);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//CAMERA_CAMERA_CLOCK_CTRL
 | 
					// CAMERA_CONFIG2
 | 
				
			||||||
inline uint32_t get_camera_camera_clock_ctrl(volatile camera_t* reg){
 | 
					static inline uint32_t get_camera_config2(volatile camera_t* reg) { return reg->CONFIG2; }
 | 
				
			||||||
     return reg->CAMERA_CLOCK_CTRL;
 | 
					static inline void set_camera_config2(volatile camera_t* reg, uint32_t value) { reg->CONFIG2 = value; }
 | 
				
			||||||
 | 
					static inline uint32_t get_camera_config2_auto_idle(volatile camera_t* reg) { return (reg->CONFIG2 >> 0) & 0x1; }
 | 
				
			||||||
 | 
					static inline void set_camera_config2_auto_idle(volatile camera_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->CONFIG2 = (reg->CONFIG2 & ~(0x1U << 0)) | (value << 0);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
inline void set_camera_camera_clock_ctrl(volatile camera_t* reg, uint32_t value){
 | 
					static inline uint32_t get_camera_config2_auto_discard_frame(volatile camera_t* reg) { return (reg->CONFIG2 >> 1) & 0x1; }
 | 
				
			||||||
     reg->CAMERA_CLOCK_CTRL = value;
 | 
					static inline void set_camera_config2_auto_discard_frame(volatile camera_t* reg, uint8_t value) {
 | 
				
			||||||
}
 | 
					  reg->CONFIG2 = (reg->CONFIG2 & ~(0x1U << 1)) | (value << 1);
 | 
				
			||||||
inline uint32_t get_camera_camera_clock_ctrl_divider(volatile camera_t* reg){
 | 
					 | 
				
			||||||
    return (reg->CAMERA_CLOCK_CTRL >> 0) & 0xfffff;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline void set_camera_camera_clock_ctrl_divider(volatile camera_t* reg, uint32_t value){
 | 
					 | 
				
			||||||
    reg->CAMERA_CLOCK_CTRL = (reg->CAMERA_CLOCK_CTRL & ~(0xfffffU << 0)) | (value << 0);
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//CAMERA_IE
 | 
					// CAMERA_DATA_SIZE
 | 
				
			||||||
inline uint32_t get_camera_ie(volatile camera_t* reg){
 | 
					static inline uint32_t get_camera_data_size(volatile camera_t* reg) { return reg->DATA_SIZE; }
 | 
				
			||||||
     return reg->IE;
 | 
					static inline void set_camera_data_size(volatile camera_t* reg, uint32_t value) { reg->DATA_SIZE = value; }
 | 
				
			||||||
}
 | 
					static inline uint32_t get_camera_data_size_data_size(volatile camera_t* reg) { return (reg->DATA_SIZE >> 0) & 0x3; }
 | 
				
			||||||
inline void set_camera_ie(volatile camera_t* reg, uint32_t value){
 | 
					static inline void set_camera_data_size_data_size(volatile camera_t* reg, uint8_t value) {
 | 
				
			||||||
     reg->IE = value;
 | 
					  reg->DATA_SIZE = (reg->DATA_SIZE & ~(0x3U << 0)) | (value << 0);
 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline uint32_t get_camera_ie_en_pixel_avail(volatile camera_t* reg){
 | 
					 | 
				
			||||||
    return (reg->IE >> 0) & 0x1;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline void set_camera_ie_en_pixel_avail(volatile camera_t* reg, uint8_t value){
 | 
					 | 
				
			||||||
    reg->IE = (reg->IE & ~(0x1U << 0)) | (value << 0);
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline uint32_t get_camera_ie_en_frame_finished(volatile camera_t* reg){
 | 
					 | 
				
			||||||
    return (reg->IE >> 1) & 0x1;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline void set_camera_ie_en_frame_finished(volatile camera_t* reg, uint8_t value){
 | 
					 | 
				
			||||||
    reg->IE = (reg->IE & ~(0x1U << 1)) | (value << 1);
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//CAMERA_IP
 | 
					// CAMERA_START
 | 
				
			||||||
inline uint32_t get_camera_ip(volatile camera_t* reg){
 | 
					static inline uint32_t get_camera_start(volatile camera_t* reg) { return reg->START; }
 | 
				
			||||||
     return reg->IP;
 | 
					static inline void set_camera_start(volatile camera_t* reg, uint32_t value) { reg->START = value; }
 | 
				
			||||||
 | 
					static inline uint32_t get_camera_start_start(volatile camera_t* reg) { return (reg->START >> 0) & 0x1; }
 | 
				
			||||||
 | 
					static inline void set_camera_start_start(volatile camera_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->START = (reg->START & ~(0x1U << 0)) | (value << 0);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
inline void set_camera_ip(volatile camera_t* reg, uint32_t value){
 | 
					
 | 
				
			||||||
     reg->IP = value;
 | 
					// CAMERA_STATUS
 | 
				
			||||||
 | 
					static inline uint32_t get_camera_status(volatile camera_t* reg) { return reg->STATUS; }
 | 
				
			||||||
 | 
					static inline uint32_t get_camera_status_pixel_avail(volatile camera_t* reg) { return (reg->STATUS >> 0) & 0x1; }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					// CAMERA_CAMERA_CLOCK_CTRL
 | 
				
			||||||
 | 
					static inline uint32_t get_camera_camera_clock_ctrl(volatile camera_t* reg) { return reg->CAMERA_CLOCK_CTRL; }
 | 
				
			||||||
 | 
					static inline void set_camera_camera_clock_ctrl(volatile camera_t* reg, uint32_t value) { reg->CAMERA_CLOCK_CTRL = value; }
 | 
				
			||||||
 | 
					static inline uint32_t get_camera_camera_clock_ctrl_divider(volatile camera_t* reg) { return (reg->CAMERA_CLOCK_CTRL >> 0) & 0xfff; }
 | 
				
			||||||
 | 
					static inline void set_camera_camera_clock_ctrl_divider(volatile camera_t* reg, uint16_t value) {
 | 
				
			||||||
 | 
					  reg->CAMERA_CLOCK_CTRL = (reg->CAMERA_CLOCK_CTRL & ~(0xfffU << 0)) | (value << 0);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
inline uint32_t get_camera_ip_pixel_avail_irq_pend(volatile camera_t* reg){
 | 
					
 | 
				
			||||||
    return (reg->IP >> 0) & 0x1;
 | 
					// CAMERA_IE
 | 
				
			||||||
 | 
					static inline uint32_t get_camera_ie(volatile camera_t* reg) { return reg->IE; }
 | 
				
			||||||
 | 
					static inline void set_camera_ie(volatile camera_t* reg, uint32_t value) { reg->IE = value; }
 | 
				
			||||||
 | 
					static inline uint32_t get_camera_ie_en_pixel_avail(volatile camera_t* reg) { return (reg->IE >> 0) & 0x1; }
 | 
				
			||||||
 | 
					static inline void set_camera_ie_en_pixel_avail(volatile camera_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->IE = (reg->IE & ~(0x1U << 0)) | (value << 0);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
inline void set_camera_ip_pixel_avail_irq_pend(volatile camera_t* reg, uint8_t value){
 | 
					static inline uint32_t get_camera_ie_en_frame_finished(volatile camera_t* reg) { return (reg->IE >> 1) & 0x1; }
 | 
				
			||||||
    reg->IP = (reg->IP & ~(0x1U << 0)) | (value << 0);
 | 
					static inline void set_camera_ie_en_frame_finished(volatile camera_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->IE = (reg->IE & ~(0x1U << 1)) | (value << 1);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
inline uint32_t get_camera_ip_frame_finished_irq_pend(volatile camera_t* reg){
 | 
					
 | 
				
			||||||
    return (reg->IP >> 1) & 0x1;
 | 
					// CAMERA_IP
 | 
				
			||||||
 | 
					static inline uint32_t get_camera_ip(volatile camera_t* reg) { return reg->IP; }
 | 
				
			||||||
 | 
					static inline void set_camera_ip(volatile camera_t* reg, uint32_t value) { reg->IP = value; }
 | 
				
			||||||
 | 
					static inline uint32_t get_camera_ip_pixel_avail_irq_pend(volatile camera_t* reg) { return (reg->IP >> 0) & 0x1; }
 | 
				
			||||||
 | 
					static inline void set_camera_ip_pixel_avail_irq_pend(volatile camera_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->IP = (reg->IP & ~(0x1U << 0)) | (value << 0);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
inline void set_camera_ip_frame_finished_irq_pend(volatile camera_t* reg, uint8_t value){
 | 
					static inline uint32_t get_camera_ip_frame_finished_irq_pend(volatile camera_t* reg) { return (reg->IP >> 1) & 0x1; }
 | 
				
			||||||
    reg->IP = (reg->IP & ~(0x1U << 1)) | (value << 1);
 | 
					static inline void set_camera_ip_frame_finished_irq_pend(volatile camera_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->IP = (reg->IP & ~(0x1U << 1)) | (value << 1);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#endif /* _BSP_CAMERA_H */
 | 
					#endif /* _BSP_CAMERA_H */
 | 
				
			||||||
@@ -1,11 +1,11 @@
 | 
				
			|||||||
/*
 | 
					/*
 | 
				
			||||||
* Copyright (c) 2023 - 2024 MINRES Technologies GmbH
 | 
					 * Copyright (c) 2023 - 2024 MINRES Technologies GmbH
 | 
				
			||||||
*
 | 
					 *
 | 
				
			||||||
* SPDX-License-Identifier: Apache-2.0
 | 
					 * SPDX-License-Identifier: Apache-2.0
 | 
				
			||||||
*
 | 
					 *
 | 
				
			||||||
* Generated at 2024-08-02 08:46:07 UTC 
 | 
					 * Generated at 2024-08-02 08:46:07 UTC
 | 
				
			||||||
* by peakrdl_mnrs version 1.2.7
 | 
					 * by peakrdl_mnrs version 1.2.7
 | 
				
			||||||
*/
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifndef _BSP_DMA_H
 | 
					#ifndef _BSP_DMA_H
 | 
				
			||||||
#define _BSP_DMA_H
 | 
					#define _BSP_DMA_H
 | 
				
			||||||
@@ -13,23 +13,23 @@
 | 
				
			|||||||
#include <stdint.h>
 | 
					#include <stdint.h>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
typedef struct {
 | 
					typedef struct {
 | 
				
			||||||
    volatile uint32_t CONTROL;
 | 
					  volatile uint32_t CONTROL;
 | 
				
			||||||
    volatile uint32_t STATUS;
 | 
					  volatile uint32_t STATUS;
 | 
				
			||||||
    volatile uint32_t IE;
 | 
					  volatile uint32_t IE;
 | 
				
			||||||
    volatile uint32_t IP;
 | 
					  volatile uint32_t IP;
 | 
				
			||||||
    volatile uint32_t CH0_EVENT;
 | 
					  volatile uint32_t CH0_EVENT;
 | 
				
			||||||
    volatile uint32_t CH0_TRANSFER;
 | 
					  volatile uint32_t CH0_TRANSFER;
 | 
				
			||||||
    volatile uint32_t CH0_SRC_START_ADDR;
 | 
					  volatile uint32_t CH0_SRC_START_ADDR;
 | 
				
			||||||
    volatile uint32_t CH0_SRC_ADDR_INC;
 | 
					  volatile uint32_t CH0_SRC_ADDR_INC;
 | 
				
			||||||
    volatile uint32_t CH0_DST_START_ADDR;
 | 
					  volatile uint32_t CH0_DST_START_ADDR;
 | 
				
			||||||
    volatile uint32_t CH0_DST_ADDR_INC;
 | 
					  volatile uint32_t CH0_DST_ADDR_INC;
 | 
				
			||||||
    volatile uint32_t CH1_EVENT;
 | 
					  volatile uint32_t CH1_EVENT;
 | 
				
			||||||
    volatile uint32_t CH1_TRANSFER;
 | 
					  volatile uint32_t CH1_TRANSFER;
 | 
				
			||||||
    volatile uint32_t CH1_SRC_START_ADDR;
 | 
					  volatile uint32_t CH1_SRC_START_ADDR;
 | 
				
			||||||
    volatile uint32_t CH1_SRC_ADDR_INC;
 | 
					  volatile uint32_t CH1_SRC_ADDR_INC;
 | 
				
			||||||
    volatile uint32_t CH1_DST_START_ADDR;
 | 
					  volatile uint32_t CH1_DST_START_ADDR;
 | 
				
			||||||
    volatile uint32_t CH1_DST_ADDR_INC;
 | 
					  volatile uint32_t CH1_DST_ADDR_INC;
 | 
				
			||||||
}dma_t;
 | 
					} dma_t;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define DMA_CONTROL_CH0_ENABLE_TRANSFER_OFFS 0
 | 
					#define DMA_CONTROL_CH0_ENABLE_TRANSFER_OFFS 0
 | 
				
			||||||
#define DMA_CONTROL_CH0_ENABLE_TRANSFER_MASK 0x1
 | 
					#define DMA_CONTROL_CH0_ENABLE_TRANSFER_MASK 0x1
 | 
				
			||||||
@@ -167,288 +167,176 @@ typedef struct {
 | 
				
			|||||||
#define DMA_CH1_DST_ADDR_INC_DST_STRIDE_MASK 0xfffff
 | 
					#define DMA_CH1_DST_ADDR_INC_DST_STRIDE_MASK 0xfffff
 | 
				
			||||||
#define DMA_CH1_DST_ADDR_INC_DST_STRIDE(V) ((V & DMA_CH1_DST_ADDR_INC_DST_STRIDE_MASK) << DMA_CH1_DST_ADDR_INC_DST_STRIDE_OFFS)
 | 
					#define DMA_CH1_DST_ADDR_INC_DST_STRIDE(V) ((V & DMA_CH1_DST_ADDR_INC_DST_STRIDE_MASK) << DMA_CH1_DST_ADDR_INC_DST_STRIDE_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//DMA_CONTROL
 | 
					// DMA_CONTROL
 | 
				
			||||||
inline uint32_t get_dma_control(volatile dma_t* reg){
 | 
					static inline uint32_t get_dma_control(volatile dma_t* reg) { return reg->CONTROL; }
 | 
				
			||||||
     return reg->CONTROL;
 | 
					static inline void set_dma_control(volatile dma_t* reg, uint32_t value) { reg->CONTROL = value; }
 | 
				
			||||||
 | 
					static inline uint32_t get_dma_control_ch0_enable_transfer(volatile dma_t* reg) { return (reg->CONTROL >> 0) & 0x1; }
 | 
				
			||||||
 | 
					static inline void set_dma_control_ch0_enable_transfer(volatile dma_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->CONTROL = (reg->CONTROL & ~(0x1U << 0)) | (value << 0);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
inline void set_dma_control(volatile dma_t* reg, uint32_t value){
 | 
					static inline uint32_t get_dma_control_ch1_enable_transfer(volatile dma_t* reg) { return (reg->CONTROL >> 1) & 0x1; }
 | 
				
			||||||
     reg->CONTROL = value;
 | 
					static inline void set_dma_control_ch1_enable_transfer(volatile dma_t* reg, uint8_t value) {
 | 
				
			||||||
}
 | 
					  reg->CONTROL = (reg->CONTROL & ~(0x1U << 1)) | (value << 1);
 | 
				
			||||||
inline uint32_t get_dma_control_ch0_enable_transfer(volatile dma_t* reg){
 | 
					 | 
				
			||||||
    return (reg->CONTROL >> 0) & 0x1;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline void set_dma_control_ch0_enable_transfer(volatile dma_t* reg, uint8_t value){
 | 
					 | 
				
			||||||
    reg->CONTROL = (reg->CONTROL & ~(0x1U << 0)) | (value << 0);
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline uint32_t get_dma_control_ch1_enable_transfer(volatile dma_t* reg){
 | 
					 | 
				
			||||||
    return (reg->CONTROL >> 1) & 0x1;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline void set_dma_control_ch1_enable_transfer(volatile dma_t* reg, uint8_t value){
 | 
					 | 
				
			||||||
    reg->CONTROL = (reg->CONTROL & ~(0x1U << 1)) | (value << 1);
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//DMA_STATUS
 | 
					// DMA_STATUS
 | 
				
			||||||
inline uint32_t get_dma_status(volatile dma_t* reg){
 | 
					static inline uint32_t get_dma_status(volatile dma_t* reg) { return reg->STATUS; }
 | 
				
			||||||
     return reg->STATUS;
 | 
					static inline uint32_t get_dma_status_ch0_busy(volatile dma_t* reg) { return (reg->STATUS >> 0) & 0x1; }
 | 
				
			||||||
 | 
					static inline uint32_t get_dma_status_ch1_busy(volatile dma_t* reg) { return (reg->STATUS >> 1) & 0x1; }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					// DMA_IE
 | 
				
			||||||
 | 
					static inline uint32_t get_dma_ie(volatile dma_t* reg) { return reg->IE; }
 | 
				
			||||||
 | 
					static inline void set_dma_ie(volatile dma_t* reg, uint32_t value) { reg->IE = value; }
 | 
				
			||||||
 | 
					static inline uint32_t get_dma_ie_ch0_ie_seg_transfer_done(volatile dma_t* reg) { return (reg->IE >> 0) & 0x1; }
 | 
				
			||||||
 | 
					static inline void set_dma_ie_ch0_ie_seg_transfer_done(volatile dma_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->IE = (reg->IE & ~(0x1U << 0)) | (value << 0);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
inline uint32_t get_dma_status_ch0_busy(volatile dma_t* reg){
 | 
					static inline uint32_t get_dma_ie_ch0_ie_transfer_done(volatile dma_t* reg) { return (reg->IE >> 1) & 0x1; }
 | 
				
			||||||
    return (reg->STATUS >> 0) & 0x1;
 | 
					static inline void set_dma_ie_ch0_ie_transfer_done(volatile dma_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->IE = (reg->IE & ~(0x1U << 1)) | (value << 1);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
inline uint32_t get_dma_status_ch1_busy(volatile dma_t* reg){
 | 
					static inline uint32_t get_dma_ie_ch1_ie_seg_transfer_done(volatile dma_t* reg) { return (reg->IE >> 2) & 0x1; }
 | 
				
			||||||
    return (reg->STATUS >> 1) & 0x1;
 | 
					static inline void set_dma_ie_ch1_ie_seg_transfer_done(volatile dma_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->IE = (reg->IE & ~(0x1U << 2)) | (value << 2);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					static inline uint32_t get_dma_ie_ch1_ie_transfer_done(volatile dma_t* reg) { return (reg->IE >> 3) & 0x1; }
 | 
				
			||||||
 | 
					static inline void set_dma_ie_ch1_ie_transfer_done(volatile dma_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->IE = (reg->IE & ~(0x1U << 3)) | (value << 3);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//DMA_IE
 | 
					// DMA_IP
 | 
				
			||||||
inline uint32_t get_dma_ie(volatile dma_t* reg){
 | 
					static inline uint32_t get_dma_ip(volatile dma_t* reg) { return reg->IP; }
 | 
				
			||||||
     return reg->IE;
 | 
					static inline uint32_t get_dma_ip_ch0_ip_seg_transfer_done(volatile dma_t* reg) { return (reg->IP >> 0) & 0x1; }
 | 
				
			||||||
 | 
					static inline uint32_t get_dma_ip_ch0_ip_transfer_done(volatile dma_t* reg) { return (reg->IP >> 1) & 0x1; }
 | 
				
			||||||
 | 
					static inline uint32_t get_dma_ip_ch1_ip_seg_transfer_done(volatile dma_t* reg) { return (reg->IP >> 2) & 0x1; }
 | 
				
			||||||
 | 
					static inline uint32_t get_dma_ip_ch1_ip_transfer_done(volatile dma_t* reg) { return (reg->IP >> 3) & 0x1; }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					// DMA_CH0_EVENT
 | 
				
			||||||
 | 
					static inline uint32_t get_dma_ch0_event(volatile dma_t* reg) { return reg->CH0_EVENT; }
 | 
				
			||||||
 | 
					static inline void set_dma_ch0_event(volatile dma_t* reg, uint32_t value) { reg->CH0_EVENT = value; }
 | 
				
			||||||
 | 
					static inline uint32_t get_dma_ch0_event_select(volatile dma_t* reg) { return (reg->CH0_EVENT >> 0) & 0x1f; }
 | 
				
			||||||
 | 
					static inline void set_dma_ch0_event_select(volatile dma_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->CH0_EVENT = (reg->CH0_EVENT & ~(0x1fU << 0)) | (value << 0);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
inline void set_dma_ie(volatile dma_t* reg, uint32_t value){
 | 
					static inline uint32_t get_dma_ch0_event_combine(volatile dma_t* reg) { return (reg->CH0_EVENT >> 31) & 0x1; }
 | 
				
			||||||
     reg->IE = value;
 | 
					static inline void set_dma_ch0_event_combine(volatile dma_t* reg, uint8_t value) {
 | 
				
			||||||
}
 | 
					  reg->CH0_EVENT = (reg->CH0_EVENT & ~(0x1U << 31)) | (value << 31);
 | 
				
			||||||
inline uint32_t get_dma_ie_ch0_ie_seg_transfer_done(volatile dma_t* reg){
 | 
					 | 
				
			||||||
    return (reg->IE >> 0) & 0x1;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline void set_dma_ie_ch0_ie_seg_transfer_done(volatile dma_t* reg, uint8_t value){
 | 
					 | 
				
			||||||
    reg->IE = (reg->IE & ~(0x1U << 0)) | (value << 0);
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline uint32_t get_dma_ie_ch0_ie_transfer_done(volatile dma_t* reg){
 | 
					 | 
				
			||||||
    return (reg->IE >> 1) & 0x1;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline void set_dma_ie_ch0_ie_transfer_done(volatile dma_t* reg, uint8_t value){
 | 
					 | 
				
			||||||
    reg->IE = (reg->IE & ~(0x1U << 1)) | (value << 1);
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline uint32_t get_dma_ie_ch1_ie_seg_transfer_done(volatile dma_t* reg){
 | 
					 | 
				
			||||||
    return (reg->IE >> 2) & 0x1;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline void set_dma_ie_ch1_ie_seg_transfer_done(volatile dma_t* reg, uint8_t value){
 | 
					 | 
				
			||||||
    reg->IE = (reg->IE & ~(0x1U << 2)) | (value << 2);
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline uint32_t get_dma_ie_ch1_ie_transfer_done(volatile dma_t* reg){
 | 
					 | 
				
			||||||
    return (reg->IE >> 3) & 0x1;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline void set_dma_ie_ch1_ie_transfer_done(volatile dma_t* reg, uint8_t value){
 | 
					 | 
				
			||||||
    reg->IE = (reg->IE & ~(0x1U << 3)) | (value << 3);
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//DMA_IP
 | 
					// DMA_CH0_TRANSFER
 | 
				
			||||||
inline uint32_t get_dma_ip(volatile dma_t* reg){
 | 
					static inline uint32_t get_dma_ch0_transfer(volatile dma_t* reg) { return reg->CH0_TRANSFER; }
 | 
				
			||||||
     return reg->IP;
 | 
					static inline void set_dma_ch0_transfer(volatile dma_t* reg, uint32_t value) { reg->CH0_TRANSFER = value; }
 | 
				
			||||||
 | 
					static inline uint32_t get_dma_ch0_transfer_width(volatile dma_t* reg) { return (reg->CH0_TRANSFER >> 0) & 0x3; }
 | 
				
			||||||
 | 
					static inline void set_dma_ch0_transfer_width(volatile dma_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->CH0_TRANSFER = (reg->CH0_TRANSFER & ~(0x3U << 0)) | (value << 0);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
inline uint32_t get_dma_ip_ch0_ip_seg_transfer_done(volatile dma_t* reg){
 | 
					static inline uint32_t get_dma_ch0_transfer_seg_length(volatile dma_t* reg) { return (reg->CH0_TRANSFER >> 2) & 0x3ff; }
 | 
				
			||||||
    return (reg->IP >> 0) & 0x1;
 | 
					static inline void set_dma_ch0_transfer_seg_length(volatile dma_t* reg, uint16_t value) {
 | 
				
			||||||
 | 
					  reg->CH0_TRANSFER = (reg->CH0_TRANSFER & ~(0x3ffU << 2)) | (value << 2);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
inline uint32_t get_dma_ip_ch0_ip_transfer_done(volatile dma_t* reg){
 | 
					static inline uint32_t get_dma_ch0_transfer_seg_count(volatile dma_t* reg) { return (reg->CH0_TRANSFER >> 12) & 0xfffff; }
 | 
				
			||||||
    return (reg->IP >> 1) & 0x1;
 | 
					static inline void set_dma_ch0_transfer_seg_count(volatile dma_t* reg, uint32_t value) {
 | 
				
			||||||
}
 | 
					  reg->CH0_TRANSFER = (reg->CH0_TRANSFER & ~(0xfffffU << 12)) | (value << 12);
 | 
				
			||||||
inline uint32_t get_dma_ip_ch1_ip_seg_transfer_done(volatile dma_t* reg){
 | 
					 | 
				
			||||||
    return (reg->IP >> 2) & 0x1;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline uint32_t get_dma_ip_ch1_ip_transfer_done(volatile dma_t* reg){
 | 
					 | 
				
			||||||
    return (reg->IP >> 3) & 0x1;
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//DMA_CH0_EVENT
 | 
					// DMA_CH0_SRC_START_ADDR
 | 
				
			||||||
inline uint32_t get_dma_ch0_event(volatile dma_t* reg){
 | 
					static inline uint32_t get_dma_ch0_src_start_addr(volatile dma_t* reg) { return (reg->CH0_SRC_START_ADDR >> 0) & 0xffffffff; }
 | 
				
			||||||
     return reg->CH0_EVENT;
 | 
					static inline void set_dma_ch0_src_start_addr(volatile dma_t* reg, uint32_t value) {
 | 
				
			||||||
}
 | 
					  reg->CH0_SRC_START_ADDR = (reg->CH0_SRC_START_ADDR & ~(0xffffffffU << 0)) | (value << 0);
 | 
				
			||||||
inline void set_dma_ch0_event(volatile dma_t* reg, uint32_t value){
 | 
					 | 
				
			||||||
     reg->CH0_EVENT = value;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline uint32_t get_dma_ch0_event_select(volatile dma_t* reg){
 | 
					 | 
				
			||||||
    return (reg->CH0_EVENT >> 0) & 0x1f;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline void set_dma_ch0_event_select(volatile dma_t* reg, uint8_t value){
 | 
					 | 
				
			||||||
    reg->CH0_EVENT = (reg->CH0_EVENT & ~(0x1fU << 0)) | (value << 0);
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline uint32_t get_dma_ch0_event_combine(volatile dma_t* reg){
 | 
					 | 
				
			||||||
    return (reg->CH0_EVENT >> 31) & 0x1;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline void set_dma_ch0_event_combine(volatile dma_t* reg, uint8_t value){
 | 
					 | 
				
			||||||
    reg->CH0_EVENT = (reg->CH0_EVENT & ~(0x1U << 31)) | (value << 31);
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//DMA_CH0_TRANSFER
 | 
					// DMA_CH0_SRC_ADDR_INC
 | 
				
			||||||
inline uint32_t get_dma_ch0_transfer(volatile dma_t* reg){
 | 
					static inline uint32_t get_dma_ch0_src_addr_inc(volatile dma_t* reg) { return reg->CH0_SRC_ADDR_INC; }
 | 
				
			||||||
     return reg->CH0_TRANSFER;
 | 
					static inline void set_dma_ch0_src_addr_inc(volatile dma_t* reg, uint32_t value) { reg->CH0_SRC_ADDR_INC = value; }
 | 
				
			||||||
 | 
					static inline uint32_t get_dma_ch0_src_addr_inc_src_step(volatile dma_t* reg) { return (reg->CH0_SRC_ADDR_INC >> 0) & 0xfff; }
 | 
				
			||||||
 | 
					static inline void set_dma_ch0_src_addr_inc_src_step(volatile dma_t* reg, uint16_t value) {
 | 
				
			||||||
 | 
					  reg->CH0_SRC_ADDR_INC = (reg->CH0_SRC_ADDR_INC & ~(0xfffU << 0)) | (value << 0);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
inline void set_dma_ch0_transfer(volatile dma_t* reg, uint32_t value){
 | 
					static inline uint32_t get_dma_ch0_src_addr_inc_src_stride(volatile dma_t* reg) { return (reg->CH0_SRC_ADDR_INC >> 12) & 0xfffff; }
 | 
				
			||||||
     reg->CH0_TRANSFER = value;
 | 
					static inline void set_dma_ch0_src_addr_inc_src_stride(volatile dma_t* reg, uint32_t value) {
 | 
				
			||||||
}
 | 
					  reg->CH0_SRC_ADDR_INC = (reg->CH0_SRC_ADDR_INC & ~(0xfffffU << 12)) | (value << 12);
 | 
				
			||||||
inline uint32_t get_dma_ch0_transfer_width(volatile dma_t* reg){
 | 
					 | 
				
			||||||
    return (reg->CH0_TRANSFER >> 0) & 0x3;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline void set_dma_ch0_transfer_width(volatile dma_t* reg, uint8_t value){
 | 
					 | 
				
			||||||
    reg->CH0_TRANSFER = (reg->CH0_TRANSFER & ~(0x3U << 0)) | (value << 0);
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline uint32_t get_dma_ch0_transfer_seg_length(volatile dma_t* reg){
 | 
					 | 
				
			||||||
    return (reg->CH0_TRANSFER >> 2) & 0x3ff;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline void set_dma_ch0_transfer_seg_length(volatile dma_t* reg, uint16_t value){
 | 
					 | 
				
			||||||
    reg->CH0_TRANSFER = (reg->CH0_TRANSFER & ~(0x3ffU << 2)) | (value << 2);
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline uint32_t get_dma_ch0_transfer_seg_count(volatile dma_t* reg){
 | 
					 | 
				
			||||||
    return (reg->CH0_TRANSFER >> 12) & 0xfffff;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline void set_dma_ch0_transfer_seg_count(volatile dma_t* reg, uint32_t value){
 | 
					 | 
				
			||||||
    reg->CH0_TRANSFER = (reg->CH0_TRANSFER & ~(0xfffffU << 12)) | (value << 12);
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//DMA_CH0_SRC_START_ADDR
 | 
					// DMA_CH0_DST_START_ADDR
 | 
				
			||||||
inline uint32_t get_dma_ch0_src_start_addr(volatile dma_t* reg){
 | 
					static inline uint32_t get_dma_ch0_dst_start_addr(volatile dma_t* reg) { return (reg->CH0_DST_START_ADDR >> 0) & 0xffffffff; }
 | 
				
			||||||
    return (reg->CH0_SRC_START_ADDR >> 0) & 0xffffffff;
 | 
					static inline void set_dma_ch0_dst_start_addr(volatile dma_t* reg, uint32_t value) {
 | 
				
			||||||
}
 | 
					  reg->CH0_DST_START_ADDR = (reg->CH0_DST_START_ADDR & ~(0xffffffffU << 0)) | (value << 0);
 | 
				
			||||||
inline void set_dma_ch0_src_start_addr(volatile dma_t* reg, uint32_t value){
 | 
					 | 
				
			||||||
    reg->CH0_SRC_START_ADDR = (reg->CH0_SRC_START_ADDR & ~(0xffffffffU << 0)) | (value << 0);
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//DMA_CH0_SRC_ADDR_INC
 | 
					// DMA_CH0_DST_ADDR_INC
 | 
				
			||||||
inline uint32_t get_dma_ch0_src_addr_inc(volatile dma_t* reg){
 | 
					static inline uint32_t get_dma_ch0_dst_addr_inc(volatile dma_t* reg) { return reg->CH0_DST_ADDR_INC; }
 | 
				
			||||||
     return reg->CH0_SRC_ADDR_INC;
 | 
					static inline void set_dma_ch0_dst_addr_inc(volatile dma_t* reg, uint32_t value) { reg->CH0_DST_ADDR_INC = value; }
 | 
				
			||||||
 | 
					static inline uint32_t get_dma_ch0_dst_addr_inc_dst_step(volatile dma_t* reg) { return (reg->CH0_DST_ADDR_INC >> 0) & 0xfff; }
 | 
				
			||||||
 | 
					static inline void set_dma_ch0_dst_addr_inc_dst_step(volatile dma_t* reg, uint16_t value) {
 | 
				
			||||||
 | 
					  reg->CH0_DST_ADDR_INC = (reg->CH0_DST_ADDR_INC & ~(0xfffU << 0)) | (value << 0);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
inline void set_dma_ch0_src_addr_inc(volatile dma_t* reg, uint32_t value){
 | 
					static inline uint32_t get_dma_ch0_dst_addr_inc_dst_stride(volatile dma_t* reg) { return (reg->CH0_DST_ADDR_INC >> 12) & 0xfffff; }
 | 
				
			||||||
     reg->CH0_SRC_ADDR_INC = value;
 | 
					static inline void set_dma_ch0_dst_addr_inc_dst_stride(volatile dma_t* reg, uint32_t value) {
 | 
				
			||||||
}
 | 
					  reg->CH0_DST_ADDR_INC = (reg->CH0_DST_ADDR_INC & ~(0xfffffU << 12)) | (value << 12);
 | 
				
			||||||
inline uint32_t get_dma_ch0_src_addr_inc_src_step(volatile dma_t* reg){
 | 
					 | 
				
			||||||
    return (reg->CH0_SRC_ADDR_INC >> 0) & 0xfff;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline void set_dma_ch0_src_addr_inc_src_step(volatile dma_t* reg, uint16_t value){
 | 
					 | 
				
			||||||
    reg->CH0_SRC_ADDR_INC = (reg->CH0_SRC_ADDR_INC & ~(0xfffU << 0)) | (value << 0);
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline uint32_t get_dma_ch0_src_addr_inc_src_stride(volatile dma_t* reg){
 | 
					 | 
				
			||||||
    return (reg->CH0_SRC_ADDR_INC >> 12) & 0xfffff;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline void set_dma_ch0_src_addr_inc_src_stride(volatile dma_t* reg, uint32_t value){
 | 
					 | 
				
			||||||
    reg->CH0_SRC_ADDR_INC = (reg->CH0_SRC_ADDR_INC & ~(0xfffffU << 12)) | (value << 12);
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//DMA_CH0_DST_START_ADDR
 | 
					// DMA_CH1_EVENT
 | 
				
			||||||
inline uint32_t get_dma_ch0_dst_start_addr(volatile dma_t* reg){
 | 
					static inline uint32_t get_dma_ch1_event(volatile dma_t* reg) { return reg->CH1_EVENT; }
 | 
				
			||||||
    return (reg->CH0_DST_START_ADDR >> 0) & 0xffffffff;
 | 
					static inline void set_dma_ch1_event(volatile dma_t* reg, uint32_t value) { reg->CH1_EVENT = value; }
 | 
				
			||||||
 | 
					static inline uint32_t get_dma_ch1_event_select(volatile dma_t* reg) { return (reg->CH1_EVENT >> 0) & 0x1f; }
 | 
				
			||||||
 | 
					static inline void set_dma_ch1_event_select(volatile dma_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->CH1_EVENT = (reg->CH1_EVENT & ~(0x1fU << 0)) | (value << 0);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
inline void set_dma_ch0_dst_start_addr(volatile dma_t* reg, uint32_t value){
 | 
					static inline uint32_t get_dma_ch1_event_combine(volatile dma_t* reg) { return (reg->CH1_EVENT >> 31) & 0x1; }
 | 
				
			||||||
    reg->CH0_DST_START_ADDR = (reg->CH0_DST_START_ADDR & ~(0xffffffffU << 0)) | (value << 0);
 | 
					static inline void set_dma_ch1_event_combine(volatile dma_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->CH1_EVENT = (reg->CH1_EVENT & ~(0x1U << 31)) | (value << 31);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//DMA_CH0_DST_ADDR_INC
 | 
					// DMA_CH1_TRANSFER
 | 
				
			||||||
inline uint32_t get_dma_ch0_dst_addr_inc(volatile dma_t* reg){
 | 
					static inline uint32_t get_dma_ch1_transfer(volatile dma_t* reg) { return reg->CH1_TRANSFER; }
 | 
				
			||||||
     return reg->CH0_DST_ADDR_INC;
 | 
					static inline void set_dma_ch1_transfer(volatile dma_t* reg, uint32_t value) { reg->CH1_TRANSFER = value; }
 | 
				
			||||||
 | 
					static inline uint32_t get_dma_ch1_transfer_width(volatile dma_t* reg) { return (reg->CH1_TRANSFER >> 0) & 0x3; }
 | 
				
			||||||
 | 
					static inline void set_dma_ch1_transfer_width(volatile dma_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->CH1_TRANSFER = (reg->CH1_TRANSFER & ~(0x3U << 0)) | (value << 0);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
inline void set_dma_ch0_dst_addr_inc(volatile dma_t* reg, uint32_t value){
 | 
					static inline uint32_t get_dma_ch1_transfer_seg_length(volatile dma_t* reg) { return (reg->CH1_TRANSFER >> 2) & 0x3ff; }
 | 
				
			||||||
     reg->CH0_DST_ADDR_INC = value;
 | 
					static inline void set_dma_ch1_transfer_seg_length(volatile dma_t* reg, uint16_t value) {
 | 
				
			||||||
 | 
					  reg->CH1_TRANSFER = (reg->CH1_TRANSFER & ~(0x3ffU << 2)) | (value << 2);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
inline uint32_t get_dma_ch0_dst_addr_inc_dst_step(volatile dma_t* reg){
 | 
					static inline uint32_t get_dma_ch1_transfer_seg_count(volatile dma_t* reg) { return (reg->CH1_TRANSFER >> 12) & 0xfffff; }
 | 
				
			||||||
    return (reg->CH0_DST_ADDR_INC >> 0) & 0xfff;
 | 
					static inline void set_dma_ch1_transfer_seg_count(volatile dma_t* reg, uint32_t value) {
 | 
				
			||||||
}
 | 
					  reg->CH1_TRANSFER = (reg->CH1_TRANSFER & ~(0xfffffU << 12)) | (value << 12);
 | 
				
			||||||
inline void set_dma_ch0_dst_addr_inc_dst_step(volatile dma_t* reg, uint16_t value){
 | 
					 | 
				
			||||||
    reg->CH0_DST_ADDR_INC = (reg->CH0_DST_ADDR_INC & ~(0xfffU << 0)) | (value << 0);
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline uint32_t get_dma_ch0_dst_addr_inc_dst_stride(volatile dma_t* reg){
 | 
					 | 
				
			||||||
    return (reg->CH0_DST_ADDR_INC >> 12) & 0xfffff;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline void set_dma_ch0_dst_addr_inc_dst_stride(volatile dma_t* reg, uint32_t value){
 | 
					 | 
				
			||||||
    reg->CH0_DST_ADDR_INC = (reg->CH0_DST_ADDR_INC & ~(0xfffffU << 12)) | (value << 12);
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//DMA_CH1_EVENT
 | 
					// DMA_CH1_SRC_START_ADDR
 | 
				
			||||||
inline uint32_t get_dma_ch1_event(volatile dma_t* reg){
 | 
					static inline uint32_t get_dma_ch1_src_start_addr(volatile dma_t* reg) { return (reg->CH1_SRC_START_ADDR >> 0) & 0xffffffff; }
 | 
				
			||||||
     return reg->CH1_EVENT;
 | 
					static inline void set_dma_ch1_src_start_addr(volatile dma_t* reg, uint32_t value) {
 | 
				
			||||||
}
 | 
					  reg->CH1_SRC_START_ADDR = (reg->CH1_SRC_START_ADDR & ~(0xffffffffU << 0)) | (value << 0);
 | 
				
			||||||
inline void set_dma_ch1_event(volatile dma_t* reg, uint32_t value){
 | 
					 | 
				
			||||||
     reg->CH1_EVENT = value;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline uint32_t get_dma_ch1_event_select(volatile dma_t* reg){
 | 
					 | 
				
			||||||
    return (reg->CH1_EVENT >> 0) & 0x1f;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline void set_dma_ch1_event_select(volatile dma_t* reg, uint8_t value){
 | 
					 | 
				
			||||||
    reg->CH1_EVENT = (reg->CH1_EVENT & ~(0x1fU << 0)) | (value << 0);
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline uint32_t get_dma_ch1_event_combine(volatile dma_t* reg){
 | 
					 | 
				
			||||||
    return (reg->CH1_EVENT >> 31) & 0x1;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline void set_dma_ch1_event_combine(volatile dma_t* reg, uint8_t value){
 | 
					 | 
				
			||||||
    reg->CH1_EVENT = (reg->CH1_EVENT & ~(0x1U << 31)) | (value << 31);
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//DMA_CH1_TRANSFER
 | 
					// DMA_CH1_SRC_ADDR_INC
 | 
				
			||||||
inline uint32_t get_dma_ch1_transfer(volatile dma_t* reg){
 | 
					static inline uint32_t get_dma_ch1_src_addr_inc(volatile dma_t* reg) { return reg->CH1_SRC_ADDR_INC; }
 | 
				
			||||||
     return reg->CH1_TRANSFER;
 | 
					static inline void set_dma_ch1_src_addr_inc(volatile dma_t* reg, uint32_t value) { reg->CH1_SRC_ADDR_INC = value; }
 | 
				
			||||||
 | 
					static inline uint32_t get_dma_ch1_src_addr_inc_src_step(volatile dma_t* reg) { return (reg->CH1_SRC_ADDR_INC >> 0) & 0xfff; }
 | 
				
			||||||
 | 
					static inline void set_dma_ch1_src_addr_inc_src_step(volatile dma_t* reg, uint16_t value) {
 | 
				
			||||||
 | 
					  reg->CH1_SRC_ADDR_INC = (reg->CH1_SRC_ADDR_INC & ~(0xfffU << 0)) | (value << 0);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
inline void set_dma_ch1_transfer(volatile dma_t* reg, uint32_t value){
 | 
					static inline uint32_t get_dma_ch1_src_addr_inc_src_stride(volatile dma_t* reg) { return (reg->CH1_SRC_ADDR_INC >> 12) & 0xfffff; }
 | 
				
			||||||
     reg->CH1_TRANSFER = value;
 | 
					static inline void set_dma_ch1_src_addr_inc_src_stride(volatile dma_t* reg, uint32_t value) {
 | 
				
			||||||
}
 | 
					  reg->CH1_SRC_ADDR_INC = (reg->CH1_SRC_ADDR_INC & ~(0xfffffU << 12)) | (value << 12);
 | 
				
			||||||
inline uint32_t get_dma_ch1_transfer_width(volatile dma_t* reg){
 | 
					 | 
				
			||||||
    return (reg->CH1_TRANSFER >> 0) & 0x3;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline void set_dma_ch1_transfer_width(volatile dma_t* reg, uint8_t value){
 | 
					 | 
				
			||||||
    reg->CH1_TRANSFER = (reg->CH1_TRANSFER & ~(0x3U << 0)) | (value << 0);
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline uint32_t get_dma_ch1_transfer_seg_length(volatile dma_t* reg){
 | 
					 | 
				
			||||||
    return (reg->CH1_TRANSFER >> 2) & 0x3ff;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline void set_dma_ch1_transfer_seg_length(volatile dma_t* reg, uint16_t value){
 | 
					 | 
				
			||||||
    reg->CH1_TRANSFER = (reg->CH1_TRANSFER & ~(0x3ffU << 2)) | (value << 2);
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline uint32_t get_dma_ch1_transfer_seg_count(volatile dma_t* reg){
 | 
					 | 
				
			||||||
    return (reg->CH1_TRANSFER >> 12) & 0xfffff;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline void set_dma_ch1_transfer_seg_count(volatile dma_t* reg, uint32_t value){
 | 
					 | 
				
			||||||
    reg->CH1_TRANSFER = (reg->CH1_TRANSFER & ~(0xfffffU << 12)) | (value << 12);
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//DMA_CH1_SRC_START_ADDR
 | 
					// DMA_CH1_DST_START_ADDR
 | 
				
			||||||
inline uint32_t get_dma_ch1_src_start_addr(volatile dma_t* reg){
 | 
					static inline uint32_t get_dma_ch1_dst_start_addr(volatile dma_t* reg) { return (reg->CH1_DST_START_ADDR >> 0) & 0xffffffff; }
 | 
				
			||||||
    return (reg->CH1_SRC_START_ADDR >> 0) & 0xffffffff;
 | 
					static inline void set_dma_ch1_dst_start_addr(volatile dma_t* reg, uint32_t value) {
 | 
				
			||||||
}
 | 
					  reg->CH1_DST_START_ADDR = (reg->CH1_DST_START_ADDR & ~(0xffffffffU << 0)) | (value << 0);
 | 
				
			||||||
inline void set_dma_ch1_src_start_addr(volatile dma_t* reg, uint32_t value){
 | 
					 | 
				
			||||||
    reg->CH1_SRC_START_ADDR = (reg->CH1_SRC_START_ADDR & ~(0xffffffffU << 0)) | (value << 0);
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//DMA_CH1_SRC_ADDR_INC
 | 
					// DMA_CH1_DST_ADDR_INC
 | 
				
			||||||
inline uint32_t get_dma_ch1_src_addr_inc(volatile dma_t* reg){
 | 
					static inline uint32_t get_dma_ch1_dst_addr_inc(volatile dma_t* reg) { return reg->CH1_DST_ADDR_INC; }
 | 
				
			||||||
     return reg->CH1_SRC_ADDR_INC;
 | 
					static inline void set_dma_ch1_dst_addr_inc(volatile dma_t* reg, uint32_t value) { reg->CH1_DST_ADDR_INC = value; }
 | 
				
			||||||
 | 
					static inline uint32_t get_dma_ch1_dst_addr_inc_dst_step(volatile dma_t* reg) { return (reg->CH1_DST_ADDR_INC >> 0) & 0xfff; }
 | 
				
			||||||
 | 
					static inline void set_dma_ch1_dst_addr_inc_dst_step(volatile dma_t* reg, uint16_t value) {
 | 
				
			||||||
 | 
					  reg->CH1_DST_ADDR_INC = (reg->CH1_DST_ADDR_INC & ~(0xfffU << 0)) | (value << 0);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
inline void set_dma_ch1_src_addr_inc(volatile dma_t* reg, uint32_t value){
 | 
					static inline uint32_t get_dma_ch1_dst_addr_inc_dst_stride(volatile dma_t* reg) { return (reg->CH1_DST_ADDR_INC >> 12) & 0xfffff; }
 | 
				
			||||||
     reg->CH1_SRC_ADDR_INC = value;
 | 
					static inline void set_dma_ch1_dst_addr_inc_dst_stride(volatile dma_t* reg, uint32_t value) {
 | 
				
			||||||
}
 | 
					  reg->CH1_DST_ADDR_INC = (reg->CH1_DST_ADDR_INC & ~(0xfffffU << 12)) | (value << 12);
 | 
				
			||||||
inline uint32_t get_dma_ch1_src_addr_inc_src_step(volatile dma_t* reg){
 | 
					 | 
				
			||||||
    return (reg->CH1_SRC_ADDR_INC >> 0) & 0xfff;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline void set_dma_ch1_src_addr_inc_src_step(volatile dma_t* reg, uint16_t value){
 | 
					 | 
				
			||||||
    reg->CH1_SRC_ADDR_INC = (reg->CH1_SRC_ADDR_INC & ~(0xfffU << 0)) | (value << 0);
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline uint32_t get_dma_ch1_src_addr_inc_src_stride(volatile dma_t* reg){
 | 
					 | 
				
			||||||
    return (reg->CH1_SRC_ADDR_INC >> 12) & 0xfffff;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline void set_dma_ch1_src_addr_inc_src_stride(volatile dma_t* reg, uint32_t value){
 | 
					 | 
				
			||||||
    reg->CH1_SRC_ADDR_INC = (reg->CH1_SRC_ADDR_INC & ~(0xfffffU << 12)) | (value << 12);
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
//DMA_CH1_DST_START_ADDR
 | 
					 | 
				
			||||||
inline uint32_t get_dma_ch1_dst_start_addr(volatile dma_t* reg){
 | 
					 | 
				
			||||||
    return (reg->CH1_DST_START_ADDR >> 0) & 0xffffffff;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline void set_dma_ch1_dst_start_addr(volatile dma_t* reg, uint32_t value){
 | 
					 | 
				
			||||||
    reg->CH1_DST_START_ADDR = (reg->CH1_DST_START_ADDR & ~(0xffffffffU << 0)) | (value << 0);
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
//DMA_CH1_DST_ADDR_INC
 | 
					 | 
				
			||||||
inline uint32_t get_dma_ch1_dst_addr_inc(volatile dma_t* reg){
 | 
					 | 
				
			||||||
     return reg->CH1_DST_ADDR_INC;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline void set_dma_ch1_dst_addr_inc(volatile dma_t* reg, uint32_t value){
 | 
					 | 
				
			||||||
     reg->CH1_DST_ADDR_INC = value;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline uint32_t get_dma_ch1_dst_addr_inc_dst_step(volatile dma_t* reg){
 | 
					 | 
				
			||||||
    return (reg->CH1_DST_ADDR_INC >> 0) & 0xfff;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline void set_dma_ch1_dst_addr_inc_dst_step(volatile dma_t* reg, uint16_t value){
 | 
					 | 
				
			||||||
    reg->CH1_DST_ADDR_INC = (reg->CH1_DST_ADDR_INC & ~(0xfffU << 0)) | (value << 0);
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline uint32_t get_dma_ch1_dst_addr_inc_dst_stride(volatile dma_t* reg){
 | 
					 | 
				
			||||||
    return (reg->CH1_DST_ADDR_INC >> 12) & 0xfffff;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline void set_dma_ch1_dst_addr_inc_dst_stride(volatile dma_t* reg, uint32_t value){
 | 
					 | 
				
			||||||
    reg->CH1_DST_ADDR_INC = (reg->CH1_DST_ADDR_INC & ~(0xfffffU << 12)) | (value << 12);
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#endif /* _BSP_DMA_H */
 | 
					#endif /* _BSP_DMA_H */
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,11 +1,11 @@
 | 
				
			|||||||
/*
 | 
					/*
 | 
				
			||||||
* Copyright (c) 2023 - 2024 MINRES Technologies GmbH
 | 
					 * Copyright (c) 2023 - 2024 MINRES Technologies GmbH
 | 
				
			||||||
*
 | 
					 *
 | 
				
			||||||
* SPDX-License-Identifier: Apache-2.0
 | 
					 * SPDX-License-Identifier: Apache-2.0
 | 
				
			||||||
*
 | 
					 *
 | 
				
			||||||
* Generated at 2024-08-09 14:18:51 UTC 
 | 
					 * Generated at 2024-12-06 09:43:24 UTC
 | 
				
			||||||
* by peakrdl_mnrs version 1.2.8
 | 
					 * by peakrdl_mnrs version 1.2.9
 | 
				
			||||||
*/
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifndef _BSP_GPIO_H
 | 
					#ifndef _BSP_GPIO_H
 | 
				
			||||||
#define _BSP_GPIO_H
 | 
					#define _BSP_GPIO_H
 | 
				
			||||||
@@ -13,15 +13,21 @@
 | 
				
			|||||||
#include <stdint.h>
 | 
					#include <stdint.h>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
typedef struct {
 | 
					typedef struct {
 | 
				
			||||||
    volatile uint32_t VALUE;
 | 
					  volatile uint32_t VALUE;
 | 
				
			||||||
    volatile uint32_t WRITE;
 | 
					  volatile uint32_t WRITE;
 | 
				
			||||||
    volatile uint32_t WRITEENABLE;
 | 
					  volatile uint32_t WRITEENABLE;
 | 
				
			||||||
    volatile uint32_t IE;
 | 
					  volatile uint32_t PULLUP;
 | 
				
			||||||
    volatile uint32_t IP;
 | 
					  volatile uint32_t PULDOWN;
 | 
				
			||||||
    volatile uint32_t IRQ_TRIGGER;
 | 
					  volatile uint32_t DRIVESTRENGTH_0;
 | 
				
			||||||
    volatile uint32_t IRQ_TYPE;
 | 
					  volatile uint32_t DRIVESTRENGTH_1;
 | 
				
			||||||
    volatile uint32_t BOOT_SEL;
 | 
					  volatile uint32_t DRIVESTRENGTH_2;
 | 
				
			||||||
}gpio_t;
 | 
					  volatile uint32_t DRIVESTRENGTH_3;
 | 
				
			||||||
 | 
					  volatile uint32_t IE;
 | 
				
			||||||
 | 
					  volatile uint32_t IP;
 | 
				
			||||||
 | 
					  volatile uint32_t IRQ_TRIGGER;
 | 
				
			||||||
 | 
					  volatile uint32_t IRQ_TYPE;
 | 
				
			||||||
 | 
					  volatile uint32_t BOOT_SEL;
 | 
				
			||||||
 | 
					} gpio_t;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define GPIO_VALUE_OFFS 0
 | 
					#define GPIO_VALUE_OFFS 0
 | 
				
			||||||
#define GPIO_VALUE_MASK 0xffffffff
 | 
					#define GPIO_VALUE_MASK 0xffffffff
 | 
				
			||||||
@@ -35,6 +41,142 @@ typedef struct {
 | 
				
			|||||||
#define GPIO_WRITEENABLE_MASK 0xffffffff
 | 
					#define GPIO_WRITEENABLE_MASK 0xffffffff
 | 
				
			||||||
#define GPIO_WRITEENABLE(V) ((V & GPIO_WRITEENABLE_MASK) << GPIO_WRITEENABLE_OFFS)
 | 
					#define GPIO_WRITEENABLE(V) ((V & GPIO_WRITEENABLE_MASK) << GPIO_WRITEENABLE_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define GPIO_PULLUP_OFFS 0
 | 
				
			||||||
 | 
					#define GPIO_PULLUP_MASK 0xffffffff
 | 
				
			||||||
 | 
					#define GPIO_PULLUP(V) ((V & GPIO_PULLUP_MASK) << GPIO_PULLUP_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define GPIO_PULDOWN_OFFS 0
 | 
				
			||||||
 | 
					#define GPIO_PULDOWN_MASK 0xffffffff
 | 
				
			||||||
 | 
					#define GPIO_PULDOWN(V) ((V & GPIO_PULDOWN_MASK) << GPIO_PULDOWN_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_0_PIN_0_OFFS 0
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_0_PIN_0_MASK 0x7
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_0_PIN_0(V) ((V & GPIO_DRIVESTRENGTH_0_PIN_0_MASK) << GPIO_DRIVESTRENGTH_0_PIN_0_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_0_PIN_1_OFFS 4
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_0_PIN_1_MASK 0x7
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_0_PIN_1(V) ((V & GPIO_DRIVESTRENGTH_0_PIN_1_MASK) << GPIO_DRIVESTRENGTH_0_PIN_1_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_0_PIN_2_OFFS 8
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_0_PIN_2_MASK 0x7
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_0_PIN_2(V) ((V & GPIO_DRIVESTRENGTH_0_PIN_2_MASK) << GPIO_DRIVESTRENGTH_0_PIN_2_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_0_PIN_3_OFFS 12
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_0_PIN_3_MASK 0x7
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_0_PIN_3(V) ((V & GPIO_DRIVESTRENGTH_0_PIN_3_MASK) << GPIO_DRIVESTRENGTH_0_PIN_3_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_0_PIN_4_OFFS 16
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_0_PIN_4_MASK 0x7
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_0_PIN_4(V) ((V & GPIO_DRIVESTRENGTH_0_PIN_4_MASK) << GPIO_DRIVESTRENGTH_0_PIN_4_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_0_PIN_5_OFFS 20
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_0_PIN_5_MASK 0x7
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_0_PIN_5(V) ((V & GPIO_DRIVESTRENGTH_0_PIN_5_MASK) << GPIO_DRIVESTRENGTH_0_PIN_5_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_0_PIN_6_OFFS 24
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_0_PIN_6_MASK 0x7
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_0_PIN_6(V) ((V & GPIO_DRIVESTRENGTH_0_PIN_6_MASK) << GPIO_DRIVESTRENGTH_0_PIN_6_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_0_PIN_7_OFFS 28
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_0_PIN_7_MASK 0x7
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_0_PIN_7(V) ((V & GPIO_DRIVESTRENGTH_0_PIN_7_MASK) << GPIO_DRIVESTRENGTH_0_PIN_7_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_1_PIN_8_OFFS 0
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_1_PIN_8_MASK 0x7
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_1_PIN_8(V) ((V & GPIO_DRIVESTRENGTH_1_PIN_8_MASK) << GPIO_DRIVESTRENGTH_1_PIN_8_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_1_PIN_9_OFFS 4
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_1_PIN_9_MASK 0x7
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_1_PIN_9(V) ((V & GPIO_DRIVESTRENGTH_1_PIN_9_MASK) << GPIO_DRIVESTRENGTH_1_PIN_9_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_1_PIN_10_OFFS 8
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_1_PIN_10_MASK 0x7
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_1_PIN_10(V) ((V & GPIO_DRIVESTRENGTH_1_PIN_10_MASK) << GPIO_DRIVESTRENGTH_1_PIN_10_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_1_PIN_11_OFFS 12
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_1_PIN_11_MASK 0x7
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_1_PIN_11(V) ((V & GPIO_DRIVESTRENGTH_1_PIN_11_MASK) << GPIO_DRIVESTRENGTH_1_PIN_11_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_1_PIN_12_OFFS 16
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_1_PIN_12_MASK 0x7
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_1_PIN_12(V) ((V & GPIO_DRIVESTRENGTH_1_PIN_12_MASK) << GPIO_DRIVESTRENGTH_1_PIN_12_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_1_PIN_13_OFFS 20
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_1_PIN_13_MASK 0x7
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_1_PIN_13(V) ((V & GPIO_DRIVESTRENGTH_1_PIN_13_MASK) << GPIO_DRIVESTRENGTH_1_PIN_13_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_1_PIN_14_OFFS 24
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_1_PIN_14_MASK 0x7
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_1_PIN_14(V) ((V & GPIO_DRIVESTRENGTH_1_PIN_14_MASK) << GPIO_DRIVESTRENGTH_1_PIN_14_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_1_PIN_15_OFFS 28
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_1_PIN_15_MASK 0x7
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_1_PIN_15(V) ((V & GPIO_DRIVESTRENGTH_1_PIN_15_MASK) << GPIO_DRIVESTRENGTH_1_PIN_15_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_2_PIN_16_OFFS 0
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_2_PIN_16_MASK 0x7
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_2_PIN_16(V) ((V & GPIO_DRIVESTRENGTH_2_PIN_16_MASK) << GPIO_DRIVESTRENGTH_2_PIN_16_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_2_PIN_17_OFFS 4
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_2_PIN_17_MASK 0x7
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_2_PIN_17(V) ((V & GPIO_DRIVESTRENGTH_2_PIN_17_MASK) << GPIO_DRIVESTRENGTH_2_PIN_17_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_2_PIN_18_OFFS 8
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_2_PIN_18_MASK 0x7
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_2_PIN_18(V) ((V & GPIO_DRIVESTRENGTH_2_PIN_18_MASK) << GPIO_DRIVESTRENGTH_2_PIN_18_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_2_PIN_19_OFFS 12
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_2_PIN_19_MASK 0x7
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_2_PIN_19(V) ((V & GPIO_DRIVESTRENGTH_2_PIN_19_MASK) << GPIO_DRIVESTRENGTH_2_PIN_19_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_2_PIN_20_OFFS 16
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_2_PIN_20_MASK 0x7
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_2_PIN_20(V) ((V & GPIO_DRIVESTRENGTH_2_PIN_20_MASK) << GPIO_DRIVESTRENGTH_2_PIN_20_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_2_PIN_21_OFFS 20
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_2_PIN_21_MASK 0x7
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_2_PIN_21(V) ((V & GPIO_DRIVESTRENGTH_2_PIN_21_MASK) << GPIO_DRIVESTRENGTH_2_PIN_21_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_2_PIN_22_OFFS 24
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_2_PIN_22_MASK 0x7
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_2_PIN_22(V) ((V & GPIO_DRIVESTRENGTH_2_PIN_22_MASK) << GPIO_DRIVESTRENGTH_2_PIN_22_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_2_PIN_23_OFFS 28
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_2_PIN_23_MASK 0x7
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_2_PIN_23(V) ((V & GPIO_DRIVESTRENGTH_2_PIN_23_MASK) << GPIO_DRIVESTRENGTH_2_PIN_23_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_3_PIN_24_OFFS 0
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_3_PIN_24_MASK 0x7
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_3_PIN_24(V) ((V & GPIO_DRIVESTRENGTH_3_PIN_24_MASK) << GPIO_DRIVESTRENGTH_3_PIN_24_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_3_PIN_25_OFFS 4
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_3_PIN_25_MASK 0x7
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_3_PIN_25(V) ((V & GPIO_DRIVESTRENGTH_3_PIN_25_MASK) << GPIO_DRIVESTRENGTH_3_PIN_25_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_3_PIN_26_OFFS 8
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_3_PIN_26_MASK 0x7
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_3_PIN_26(V) ((V & GPIO_DRIVESTRENGTH_3_PIN_26_MASK) << GPIO_DRIVESTRENGTH_3_PIN_26_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_3_PIN_27_OFFS 12
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_3_PIN_27_MASK 0x7
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_3_PIN_27(V) ((V & GPIO_DRIVESTRENGTH_3_PIN_27_MASK) << GPIO_DRIVESTRENGTH_3_PIN_27_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_3_PIN_28_OFFS 16
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_3_PIN_28_MASK 0x7
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_3_PIN_28(V) ((V & GPIO_DRIVESTRENGTH_3_PIN_28_MASK) << GPIO_DRIVESTRENGTH_3_PIN_28_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_3_PIN_29_OFFS 20
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_3_PIN_29_MASK 0x7
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_3_PIN_29(V) ((V & GPIO_DRIVESTRENGTH_3_PIN_29_MASK) << GPIO_DRIVESTRENGTH_3_PIN_29_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_3_PIN_30_OFFS 24
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_3_PIN_30_MASK 0x7
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_3_PIN_30(V) ((V & GPIO_DRIVESTRENGTH_3_PIN_30_MASK) << GPIO_DRIVESTRENGTH_3_PIN_30_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_3_PIN_31_OFFS 28
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_3_PIN_31_MASK 0x7
 | 
				
			||||||
 | 
					#define GPIO_DRIVESTRENGTH_3_PIN_31(V) ((V & GPIO_DRIVESTRENGTH_3_PIN_31_MASK) << GPIO_DRIVESTRENGTH_3_PIN_31_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define GPIO_IE_OFFS 0
 | 
					#define GPIO_IE_OFFS 0
 | 
				
			||||||
#define GPIO_IE_MASK 0xffffffff
 | 
					#define GPIO_IE_MASK 0xffffffff
 | 
				
			||||||
#define GPIO_IE(V) ((V & GPIO_IE_MASK) << GPIO_IE_OFFS)
 | 
					#define GPIO_IE(V) ((V & GPIO_IE_MASK) << GPIO_IE_OFFS)
 | 
				
			||||||
@@ -55,65 +197,197 @@ typedef struct {
 | 
				
			|||||||
#define GPIO_BOOT_SEL_MASK 0x7
 | 
					#define GPIO_BOOT_SEL_MASK 0x7
 | 
				
			||||||
#define GPIO_BOOT_SEL(V) ((V & GPIO_BOOT_SEL_MASK) << GPIO_BOOT_SEL_OFFS)
 | 
					#define GPIO_BOOT_SEL(V) ((V & GPIO_BOOT_SEL_MASK) << GPIO_BOOT_SEL_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//GPIO_VALUE
 | 
					// GPIO_VALUE
 | 
				
			||||||
inline uint32_t get_gpio_value(volatile gpio_t* reg){
 | 
					static inline uint32_t get_gpio_value(volatile gpio_t* reg) { return (reg->VALUE >> 0) & 0xffffffff; }
 | 
				
			||||||
    return (reg->VALUE >> 0) & 0xffffffff;
 | 
					
 | 
				
			||||||
 | 
					// GPIO_WRITE
 | 
				
			||||||
 | 
					static inline uint32_t get_gpio_write(volatile gpio_t* reg) { return (reg->WRITE >> 0) & 0xffffffff; }
 | 
				
			||||||
 | 
					static inline void set_gpio_write(volatile gpio_t* reg, uint32_t value) { reg->WRITE = (reg->WRITE & ~(0xffffffffU << 0)) | (value << 0); }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					// GPIO_WRITEENABLE
 | 
				
			||||||
 | 
					static inline uint32_t get_gpio_writeEnable(volatile gpio_t* reg) { return (reg->WRITEENABLE >> 0) & 0xffffffff; }
 | 
				
			||||||
 | 
					static inline void set_gpio_writeEnable(volatile gpio_t* reg, uint32_t value) {
 | 
				
			||||||
 | 
					  reg->WRITEENABLE = (reg->WRITEENABLE & ~(0xffffffffU << 0)) | (value << 0);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//GPIO_WRITE
 | 
					// GPIO_PULLUP
 | 
				
			||||||
inline uint32_t get_gpio_write(volatile gpio_t* reg){
 | 
					static inline uint32_t get_gpio_pullup(volatile gpio_t* reg) { return (reg->PULLUP >> 0) & 0xffffffff; }
 | 
				
			||||||
    return (reg->WRITE >> 0) & 0xffffffff;
 | 
					static inline void set_gpio_pullup(volatile gpio_t* reg, uint32_t value) {
 | 
				
			||||||
}
 | 
					  reg->PULLUP = (reg->PULLUP & ~(0xffffffffU << 0)) | (value << 0);
 | 
				
			||||||
inline void set_gpio_write(volatile gpio_t* reg, uint32_t value){
 | 
					 | 
				
			||||||
    reg->WRITE = (reg->WRITE & ~(0xffffffffU << 0)) | (value << 0);
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//GPIO_WRITEENABLE
 | 
					// GPIO_PULDOWN
 | 
				
			||||||
inline uint32_t get_gpio_writeEnable(volatile gpio_t* reg){
 | 
					static inline uint32_t get_gpio_puldown(volatile gpio_t* reg) { return (reg->PULDOWN >> 0) & 0xffffffff; }
 | 
				
			||||||
    return (reg->WRITEENABLE >> 0) & 0xffffffff;
 | 
					static inline void set_gpio_puldown(volatile gpio_t* reg, uint32_t value) {
 | 
				
			||||||
}
 | 
					  reg->PULDOWN = (reg->PULDOWN & ~(0xffffffffU << 0)) | (value << 0);
 | 
				
			||||||
inline void set_gpio_writeEnable(volatile gpio_t* reg, uint32_t value){
 | 
					 | 
				
			||||||
    reg->WRITEENABLE = (reg->WRITEENABLE & ~(0xffffffffU << 0)) | (value << 0);
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//GPIO_IE
 | 
					// GPIO_DRIVESTRENGTH_0
 | 
				
			||||||
inline uint32_t get_gpio_ie(volatile gpio_t* reg){
 | 
					static inline uint32_t get_gpio_driveStrength_0(volatile gpio_t* reg) { return reg->DRIVESTRENGTH_0; }
 | 
				
			||||||
    return (reg->IE >> 0) & 0xffffffff;
 | 
					static inline void set_gpio_driveStrength_0(volatile gpio_t* reg, uint32_t value) { reg->DRIVESTRENGTH_0 = value; }
 | 
				
			||||||
 | 
					static inline uint32_t get_gpio_driveStrength_0_pin_0(volatile gpio_t* reg) { return (reg->DRIVESTRENGTH_0 >> 0) & 0x7; }
 | 
				
			||||||
 | 
					static inline void set_gpio_driveStrength_0_pin_0(volatile gpio_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->DRIVESTRENGTH_0 = (reg->DRIVESTRENGTH_0 & ~(0x7U << 0)) | (value << 0);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
inline void set_gpio_ie(volatile gpio_t* reg, uint32_t value){
 | 
					static inline uint32_t get_gpio_driveStrength_0_pin_1(volatile gpio_t* reg) { return (reg->DRIVESTRENGTH_0 >> 4) & 0x7; }
 | 
				
			||||||
    reg->IE = (reg->IE & ~(0xffffffffU << 0)) | (value << 0);
 | 
					static inline void set_gpio_driveStrength_0_pin_1(volatile gpio_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->DRIVESTRENGTH_0 = (reg->DRIVESTRENGTH_0 & ~(0x7U << 4)) | (value << 4);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					static inline uint32_t get_gpio_driveStrength_0_pin_2(volatile gpio_t* reg) { return (reg->DRIVESTRENGTH_0 >> 8) & 0x7; }
 | 
				
			||||||
 | 
					static inline void set_gpio_driveStrength_0_pin_2(volatile gpio_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->DRIVESTRENGTH_0 = (reg->DRIVESTRENGTH_0 & ~(0x7U << 8)) | (value << 8);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					static inline uint32_t get_gpio_driveStrength_0_pin_3(volatile gpio_t* reg) { return (reg->DRIVESTRENGTH_0 >> 12) & 0x7; }
 | 
				
			||||||
 | 
					static inline void set_gpio_driveStrength_0_pin_3(volatile gpio_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->DRIVESTRENGTH_0 = (reg->DRIVESTRENGTH_0 & ~(0x7U << 12)) | (value << 12);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					static inline uint32_t get_gpio_driveStrength_0_pin_4(volatile gpio_t* reg) { return (reg->DRIVESTRENGTH_0 >> 16) & 0x7; }
 | 
				
			||||||
 | 
					static inline void set_gpio_driveStrength_0_pin_4(volatile gpio_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->DRIVESTRENGTH_0 = (reg->DRIVESTRENGTH_0 & ~(0x7U << 16)) | (value << 16);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					static inline uint32_t get_gpio_driveStrength_0_pin_5(volatile gpio_t* reg) { return (reg->DRIVESTRENGTH_0 >> 20) & 0x7; }
 | 
				
			||||||
 | 
					static inline void set_gpio_driveStrength_0_pin_5(volatile gpio_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->DRIVESTRENGTH_0 = (reg->DRIVESTRENGTH_0 & ~(0x7U << 20)) | (value << 20);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					static inline uint32_t get_gpio_driveStrength_0_pin_6(volatile gpio_t* reg) { return (reg->DRIVESTRENGTH_0 >> 24) & 0x7; }
 | 
				
			||||||
 | 
					static inline void set_gpio_driveStrength_0_pin_6(volatile gpio_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->DRIVESTRENGTH_0 = (reg->DRIVESTRENGTH_0 & ~(0x7U << 24)) | (value << 24);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					static inline uint32_t get_gpio_driveStrength_0_pin_7(volatile gpio_t* reg) { return (reg->DRIVESTRENGTH_0 >> 28) & 0x7; }
 | 
				
			||||||
 | 
					static inline void set_gpio_driveStrength_0_pin_7(volatile gpio_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->DRIVESTRENGTH_0 = (reg->DRIVESTRENGTH_0 & ~(0x7U << 28)) | (value << 28);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//GPIO_IP
 | 
					// GPIO_DRIVESTRENGTH_1
 | 
				
			||||||
inline uint32_t get_gpio_ip(volatile gpio_t* reg){
 | 
					static inline uint32_t get_gpio_driveStrength_1(volatile gpio_t* reg) { return reg->DRIVESTRENGTH_1; }
 | 
				
			||||||
    return (reg->IP >> 0) & 0xffffffff;
 | 
					static inline void set_gpio_driveStrength_1(volatile gpio_t* reg, uint32_t value) { reg->DRIVESTRENGTH_1 = value; }
 | 
				
			||||||
 | 
					static inline uint32_t get_gpio_driveStrength_1_pin_8(volatile gpio_t* reg) { return (reg->DRIVESTRENGTH_1 >> 0) & 0x7; }
 | 
				
			||||||
 | 
					static inline void set_gpio_driveStrength_1_pin_8(volatile gpio_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->DRIVESTRENGTH_1 = (reg->DRIVESTRENGTH_1 & ~(0x7U << 0)) | (value << 0);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
inline void set_gpio_ip(volatile gpio_t* reg, uint32_t value){
 | 
					static inline uint32_t get_gpio_driveStrength_1_pin_9(volatile gpio_t* reg) { return (reg->DRIVESTRENGTH_1 >> 4) & 0x7; }
 | 
				
			||||||
    reg->IP = (reg->IP & ~(0xffffffffU << 0)) | (value << 0);
 | 
					static inline void set_gpio_driveStrength_1_pin_9(volatile gpio_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->DRIVESTRENGTH_1 = (reg->DRIVESTRENGTH_1 & ~(0x7U << 4)) | (value << 4);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					static inline uint32_t get_gpio_driveStrength_1_pin_10(volatile gpio_t* reg) { return (reg->DRIVESTRENGTH_1 >> 8) & 0x7; }
 | 
				
			||||||
 | 
					static inline void set_gpio_driveStrength_1_pin_10(volatile gpio_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->DRIVESTRENGTH_1 = (reg->DRIVESTRENGTH_1 & ~(0x7U << 8)) | (value << 8);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					static inline uint32_t get_gpio_driveStrength_1_pin_11(volatile gpio_t* reg) { return (reg->DRIVESTRENGTH_1 >> 12) & 0x7; }
 | 
				
			||||||
 | 
					static inline void set_gpio_driveStrength_1_pin_11(volatile gpio_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->DRIVESTRENGTH_1 = (reg->DRIVESTRENGTH_1 & ~(0x7U << 12)) | (value << 12);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					static inline uint32_t get_gpio_driveStrength_1_pin_12(volatile gpio_t* reg) { return (reg->DRIVESTRENGTH_1 >> 16) & 0x7; }
 | 
				
			||||||
 | 
					static inline void set_gpio_driveStrength_1_pin_12(volatile gpio_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->DRIVESTRENGTH_1 = (reg->DRIVESTRENGTH_1 & ~(0x7U << 16)) | (value << 16);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					static inline uint32_t get_gpio_driveStrength_1_pin_13(volatile gpio_t* reg) { return (reg->DRIVESTRENGTH_1 >> 20) & 0x7; }
 | 
				
			||||||
 | 
					static inline void set_gpio_driveStrength_1_pin_13(volatile gpio_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->DRIVESTRENGTH_1 = (reg->DRIVESTRENGTH_1 & ~(0x7U << 20)) | (value << 20);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					static inline uint32_t get_gpio_driveStrength_1_pin_14(volatile gpio_t* reg) { return (reg->DRIVESTRENGTH_1 >> 24) & 0x7; }
 | 
				
			||||||
 | 
					static inline void set_gpio_driveStrength_1_pin_14(volatile gpio_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->DRIVESTRENGTH_1 = (reg->DRIVESTRENGTH_1 & ~(0x7U << 24)) | (value << 24);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					static inline uint32_t get_gpio_driveStrength_1_pin_15(volatile gpio_t* reg) { return (reg->DRIVESTRENGTH_1 >> 28) & 0x7; }
 | 
				
			||||||
 | 
					static inline void set_gpio_driveStrength_1_pin_15(volatile gpio_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->DRIVESTRENGTH_1 = (reg->DRIVESTRENGTH_1 & ~(0x7U << 28)) | (value << 28);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//GPIO_IRQ_TRIGGER
 | 
					// GPIO_DRIVESTRENGTH_2
 | 
				
			||||||
inline uint32_t get_gpio_irq_trigger(volatile gpio_t* reg){
 | 
					static inline uint32_t get_gpio_driveStrength_2(volatile gpio_t* reg) { return reg->DRIVESTRENGTH_2; }
 | 
				
			||||||
    return (reg->IRQ_TRIGGER >> 0) & 0xffffffff;
 | 
					static inline void set_gpio_driveStrength_2(volatile gpio_t* reg, uint32_t value) { reg->DRIVESTRENGTH_2 = value; }
 | 
				
			||||||
 | 
					static inline uint32_t get_gpio_driveStrength_2_pin_16(volatile gpio_t* reg) { return (reg->DRIVESTRENGTH_2 >> 0) & 0x7; }
 | 
				
			||||||
 | 
					static inline void set_gpio_driveStrength_2_pin_16(volatile gpio_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->DRIVESTRENGTH_2 = (reg->DRIVESTRENGTH_2 & ~(0x7U << 0)) | (value << 0);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
inline void set_gpio_irq_trigger(volatile gpio_t* reg, uint32_t value){
 | 
					static inline uint32_t get_gpio_driveStrength_2_pin_17(volatile gpio_t* reg) { return (reg->DRIVESTRENGTH_2 >> 4) & 0x7; }
 | 
				
			||||||
    reg->IRQ_TRIGGER = (reg->IRQ_TRIGGER & ~(0xffffffffU << 0)) | (value << 0);
 | 
					static inline void set_gpio_driveStrength_2_pin_17(volatile gpio_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->DRIVESTRENGTH_2 = (reg->DRIVESTRENGTH_2 & ~(0x7U << 4)) | (value << 4);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					static inline uint32_t get_gpio_driveStrength_2_pin_18(volatile gpio_t* reg) { return (reg->DRIVESTRENGTH_2 >> 8) & 0x7; }
 | 
				
			||||||
 | 
					static inline void set_gpio_driveStrength_2_pin_18(volatile gpio_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->DRIVESTRENGTH_2 = (reg->DRIVESTRENGTH_2 & ~(0x7U << 8)) | (value << 8);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					static inline uint32_t get_gpio_driveStrength_2_pin_19(volatile gpio_t* reg) { return (reg->DRIVESTRENGTH_2 >> 12) & 0x7; }
 | 
				
			||||||
 | 
					static inline void set_gpio_driveStrength_2_pin_19(volatile gpio_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->DRIVESTRENGTH_2 = (reg->DRIVESTRENGTH_2 & ~(0x7U << 12)) | (value << 12);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					static inline uint32_t get_gpio_driveStrength_2_pin_20(volatile gpio_t* reg) { return (reg->DRIVESTRENGTH_2 >> 16) & 0x7; }
 | 
				
			||||||
 | 
					static inline void set_gpio_driveStrength_2_pin_20(volatile gpio_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->DRIVESTRENGTH_2 = (reg->DRIVESTRENGTH_2 & ~(0x7U << 16)) | (value << 16);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					static inline uint32_t get_gpio_driveStrength_2_pin_21(volatile gpio_t* reg) { return (reg->DRIVESTRENGTH_2 >> 20) & 0x7; }
 | 
				
			||||||
 | 
					static inline void set_gpio_driveStrength_2_pin_21(volatile gpio_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->DRIVESTRENGTH_2 = (reg->DRIVESTRENGTH_2 & ~(0x7U << 20)) | (value << 20);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					static inline uint32_t get_gpio_driveStrength_2_pin_22(volatile gpio_t* reg) { return (reg->DRIVESTRENGTH_2 >> 24) & 0x7; }
 | 
				
			||||||
 | 
					static inline void set_gpio_driveStrength_2_pin_22(volatile gpio_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->DRIVESTRENGTH_2 = (reg->DRIVESTRENGTH_2 & ~(0x7U << 24)) | (value << 24);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					static inline uint32_t get_gpio_driveStrength_2_pin_23(volatile gpio_t* reg) { return (reg->DRIVESTRENGTH_2 >> 28) & 0x7; }
 | 
				
			||||||
 | 
					static inline void set_gpio_driveStrength_2_pin_23(volatile gpio_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->DRIVESTRENGTH_2 = (reg->DRIVESTRENGTH_2 & ~(0x7U << 28)) | (value << 28);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//GPIO_IRQ_TYPE
 | 
					// GPIO_DRIVESTRENGTH_3
 | 
				
			||||||
inline uint32_t get_gpio_irq_type(volatile gpio_t* reg){
 | 
					static inline uint32_t get_gpio_driveStrength_3(volatile gpio_t* reg) { return reg->DRIVESTRENGTH_3; }
 | 
				
			||||||
    return (reg->IRQ_TYPE >> 0) & 0xffffffff;
 | 
					static inline void set_gpio_driveStrength_3(volatile gpio_t* reg, uint32_t value) { reg->DRIVESTRENGTH_3 = value; }
 | 
				
			||||||
 | 
					static inline uint32_t get_gpio_driveStrength_3_pin_24(volatile gpio_t* reg) { return (reg->DRIVESTRENGTH_3 >> 0) & 0x7; }
 | 
				
			||||||
 | 
					static inline void set_gpio_driveStrength_3_pin_24(volatile gpio_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->DRIVESTRENGTH_3 = (reg->DRIVESTRENGTH_3 & ~(0x7U << 0)) | (value << 0);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
inline void set_gpio_irq_type(volatile gpio_t* reg, uint32_t value){
 | 
					static inline uint32_t get_gpio_driveStrength_3_pin_25(volatile gpio_t* reg) { return (reg->DRIVESTRENGTH_3 >> 4) & 0x7; }
 | 
				
			||||||
    reg->IRQ_TYPE = (reg->IRQ_TYPE & ~(0xffffffffU << 0)) | (value << 0);
 | 
					static inline void set_gpio_driveStrength_3_pin_25(volatile gpio_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->DRIVESTRENGTH_3 = (reg->DRIVESTRENGTH_3 & ~(0x7U << 4)) | (value << 4);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					static inline uint32_t get_gpio_driveStrength_3_pin_26(volatile gpio_t* reg) { return (reg->DRIVESTRENGTH_3 >> 8) & 0x7; }
 | 
				
			||||||
 | 
					static inline void set_gpio_driveStrength_3_pin_26(volatile gpio_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->DRIVESTRENGTH_3 = (reg->DRIVESTRENGTH_3 & ~(0x7U << 8)) | (value << 8);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					static inline uint32_t get_gpio_driveStrength_3_pin_27(volatile gpio_t* reg) { return (reg->DRIVESTRENGTH_3 >> 12) & 0x7; }
 | 
				
			||||||
 | 
					static inline void set_gpio_driveStrength_3_pin_27(volatile gpio_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->DRIVESTRENGTH_3 = (reg->DRIVESTRENGTH_3 & ~(0x7U << 12)) | (value << 12);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					static inline uint32_t get_gpio_driveStrength_3_pin_28(volatile gpio_t* reg) { return (reg->DRIVESTRENGTH_3 >> 16) & 0x7; }
 | 
				
			||||||
 | 
					static inline void set_gpio_driveStrength_3_pin_28(volatile gpio_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->DRIVESTRENGTH_3 = (reg->DRIVESTRENGTH_3 & ~(0x7U << 16)) | (value << 16);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					static inline uint32_t get_gpio_driveStrength_3_pin_29(volatile gpio_t* reg) { return (reg->DRIVESTRENGTH_3 >> 20) & 0x7; }
 | 
				
			||||||
 | 
					static inline void set_gpio_driveStrength_3_pin_29(volatile gpio_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->DRIVESTRENGTH_3 = (reg->DRIVESTRENGTH_3 & ~(0x7U << 20)) | (value << 20);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					static inline uint32_t get_gpio_driveStrength_3_pin_30(volatile gpio_t* reg) { return (reg->DRIVESTRENGTH_3 >> 24) & 0x7; }
 | 
				
			||||||
 | 
					static inline void set_gpio_driveStrength_3_pin_30(volatile gpio_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->DRIVESTRENGTH_3 = (reg->DRIVESTRENGTH_3 & ~(0x7U << 24)) | (value << 24);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					static inline uint32_t get_gpio_driveStrength_3_pin_31(volatile gpio_t* reg) { return (reg->DRIVESTRENGTH_3 >> 28) & 0x7; }
 | 
				
			||||||
 | 
					static inline void set_gpio_driveStrength_3_pin_31(volatile gpio_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->DRIVESTRENGTH_3 = (reg->DRIVESTRENGTH_3 & ~(0x7U << 28)) | (value << 28);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//GPIO_BOOT_SEL
 | 
					// GPIO_IE
 | 
				
			||||||
inline uint32_t get_gpio_boot_sel(volatile gpio_t* reg){
 | 
					static inline uint32_t get_gpio_ie(volatile gpio_t* reg) { return (reg->IE >> 0) & 0xffffffff; }
 | 
				
			||||||
     return reg->BOOT_SEL;
 | 
					static inline void set_gpio_ie(volatile gpio_t* reg, uint32_t value) { reg->IE = (reg->IE & ~(0xffffffffU << 0)) | (value << 0); }
 | 
				
			||||||
}
 | 
					
 | 
				
			||||||
inline uint32_t get_gpio_boot_sel_bootSel(volatile gpio_t* reg){
 | 
					// GPIO_IP
 | 
				
			||||||
    return (reg->BOOT_SEL >> 0) & 0x7;
 | 
					static inline uint32_t get_gpio_ip(volatile gpio_t* reg) { return (reg->IP >> 0) & 0xffffffff; }
 | 
				
			||||||
 | 
					static inline void set_gpio_ip(volatile gpio_t* reg, uint32_t value) { reg->IP = (reg->IP & ~(0xffffffffU << 0)) | (value << 0); }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					// GPIO_IRQ_TRIGGER
 | 
				
			||||||
 | 
					static inline uint32_t get_gpio_irq_trigger(volatile gpio_t* reg) { return (reg->IRQ_TRIGGER >> 0) & 0xffffffff; }
 | 
				
			||||||
 | 
					static inline void set_gpio_irq_trigger(volatile gpio_t* reg, uint32_t value) {
 | 
				
			||||||
 | 
					  reg->IRQ_TRIGGER = (reg->IRQ_TRIGGER & ~(0xffffffffU << 0)) | (value << 0);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#endif /* _BSP_GPIO_H */
 | 
					// GPIO_IRQ_TYPE
 | 
				
			||||||
 | 
					static inline uint32_t get_gpio_irq_type(volatile gpio_t* reg) { return (reg->IRQ_TYPE >> 0) & 0xffffffff; }
 | 
				
			||||||
 | 
					static inline void set_gpio_irq_type(volatile gpio_t* reg, uint32_t value) {
 | 
				
			||||||
 | 
					  reg->IRQ_TYPE = (reg->IRQ_TYPE & ~(0xffffffffU << 0)) | (value << 0);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					// GPIO_BOOT_SEL
 | 
				
			||||||
 | 
					static inline uint32_t get_gpio_boot_sel(volatile gpio_t* reg) { return reg->BOOT_SEL; }
 | 
				
			||||||
 | 
					static inline uint32_t get_gpio_boot_sel_bootSel(volatile gpio_t* reg) { return (reg->BOOT_SEL >> 0) & 0x7; }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#endif /* _BSP_GPIO_H */
 | 
				
			||||||
@@ -1,11 +1,11 @@
 | 
				
			|||||||
/*
 | 
					/*
 | 
				
			||||||
* Copyright (c) 2023 - 2024 MINRES Technologies GmbH
 | 
					 * Copyright (c) 2023 - 2024 MINRES Technologies GmbH
 | 
				
			||||||
*
 | 
					 *
 | 
				
			||||||
* SPDX-License-Identifier: Apache-2.0
 | 
					 * SPDX-License-Identifier: Apache-2.0
 | 
				
			||||||
*
 | 
					 *
 | 
				
			||||||
* Generated at 2024-09-10 14:29:50 UTC 
 | 
					 * Generated at 2024-12-28 11:01:24 UTC
 | 
				
			||||||
* by peakrdl_mnrs version 1.2.9
 | 
					 * by peakrdl_mnrs version 1.2.9
 | 
				
			||||||
*/
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifndef _BSP_I2S_H
 | 
					#ifndef _BSP_I2S_H
 | 
				
			||||||
#define _BSP_I2S_H
 | 
					#define _BSP_I2S_H
 | 
				
			||||||
@@ -13,15 +13,16 @@
 | 
				
			|||||||
#include <stdint.h>
 | 
					#include <stdint.h>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
typedef struct {
 | 
					typedef struct {
 | 
				
			||||||
    volatile uint32_t LEFT_CH;
 | 
					  volatile uint32_t LEFT_CH;
 | 
				
			||||||
    volatile uint32_t RIGHT_CH;
 | 
					  volatile uint32_t RIGHT_CH;
 | 
				
			||||||
    volatile uint32_t CONTROL;
 | 
					  volatile uint32_t CONTROL;
 | 
				
			||||||
    volatile uint32_t STATUS;
 | 
					  volatile uint32_t STATUS;
 | 
				
			||||||
    volatile uint32_t I2S_CLOCK_CTRL;
 | 
					  volatile uint32_t I2S_CLOCK_CTRL;
 | 
				
			||||||
    volatile uint32_t PDM_CLOCK_CTRL;
 | 
					  volatile uint32_t PDM_CLOCK_CTRL;
 | 
				
			||||||
    volatile uint32_t IE;
 | 
					  volatile uint32_t PDM_FILTER_CTRL;
 | 
				
			||||||
    volatile uint32_t IP;
 | 
					  volatile uint32_t IE;
 | 
				
			||||||
}i2s_t;
 | 
					  volatile uint32_t IP;
 | 
				
			||||||
 | 
					} i2s_t;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define I2S_LEFT_CH_OFFS 0
 | 
					#define I2S_LEFT_CH_OFFS 0
 | 
				
			||||||
#define I2S_LEFT_CH_MASK 0xffffffff
 | 
					#define I2S_LEFT_CH_MASK 0xffffffff
 | 
				
			||||||
@@ -71,14 +72,26 @@ typedef struct {
 | 
				
			|||||||
#define I2S_STATUS_RIGHT_AVAIL_MASK 0x1
 | 
					#define I2S_STATUS_RIGHT_AVAIL_MASK 0x1
 | 
				
			||||||
#define I2S_STATUS_RIGHT_AVAIL(V) ((V & I2S_STATUS_RIGHT_AVAIL_MASK) << I2S_STATUS_RIGHT_AVAIL_OFFS)
 | 
					#define I2S_STATUS_RIGHT_AVAIL(V) ((V & I2S_STATUS_RIGHT_AVAIL_MASK) << I2S_STATUS_RIGHT_AVAIL_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define I2S_STATUS_LEFT_OVERFLOW_OFFS 4
 | 
				
			||||||
 | 
					#define I2S_STATUS_LEFT_OVERFLOW_MASK 0x1
 | 
				
			||||||
 | 
					#define I2S_STATUS_LEFT_OVERFLOW(V) ((V & I2S_STATUS_LEFT_OVERFLOW_MASK) << I2S_STATUS_LEFT_OVERFLOW_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define I2S_STATUS_RIGHT_OVERFLOW_OFFS 5
 | 
				
			||||||
 | 
					#define I2S_STATUS_RIGHT_OVERFLOW_MASK 0x1
 | 
				
			||||||
 | 
					#define I2S_STATUS_RIGHT_OVERFLOW(V) ((V & I2S_STATUS_RIGHT_OVERFLOW_MASK) << I2S_STATUS_RIGHT_OVERFLOW_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define I2S_I2S_CLOCK_CTRL_OFFS 0
 | 
					#define I2S_I2S_CLOCK_CTRL_OFFS 0
 | 
				
			||||||
#define I2S_I2S_CLOCK_CTRL_MASK 0xfffff
 | 
					#define I2S_I2S_CLOCK_CTRL_MASK 0xfffff
 | 
				
			||||||
#define I2S_I2S_CLOCK_CTRL(V) ((V & I2S_I2S_CLOCK_CTRL_MASK) << I2S_I2S_CLOCK_CTRL_OFFS)
 | 
					#define I2S_I2S_CLOCK_CTRL(V) ((V & I2S_I2S_CLOCK_CTRL_MASK) << I2S_I2S_CLOCK_CTRL_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define I2S_PDM_CLOCK_CTRL_OFFS 0
 | 
					#define I2S_PDM_CLOCK_CTRL_OFFS 0
 | 
				
			||||||
#define I2S_PDM_CLOCK_CTRL_MASK 0x3ff
 | 
					#define I2S_PDM_CLOCK_CTRL_MASK 0xff
 | 
				
			||||||
#define I2S_PDM_CLOCK_CTRL(V) ((V & I2S_PDM_CLOCK_CTRL_MASK) << I2S_PDM_CLOCK_CTRL_OFFS)
 | 
					#define I2S_PDM_CLOCK_CTRL(V) ((V & I2S_PDM_CLOCK_CTRL_MASK) << I2S_PDM_CLOCK_CTRL_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define I2S_PDM_FILTER_CTRL_OFFS 0
 | 
				
			||||||
 | 
					#define I2S_PDM_FILTER_CTRL_MASK 0x3ff
 | 
				
			||||||
 | 
					#define I2S_PDM_FILTER_CTRL(V) ((V & I2S_PDM_FILTER_CTRL_MASK) << I2S_PDM_FILTER_CTRL_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define I2S_IE_EN_LEFT_SAMPLE_AVAIL_OFFS 0
 | 
					#define I2S_IE_EN_LEFT_SAMPLE_AVAIL_OFFS 0
 | 
				
			||||||
#define I2S_IE_EN_LEFT_SAMPLE_AVAIL_MASK 0x1
 | 
					#define I2S_IE_EN_LEFT_SAMPLE_AVAIL_MASK 0x1
 | 
				
			||||||
#define I2S_IE_EN_LEFT_SAMPLE_AVAIL(V) ((V & I2S_IE_EN_LEFT_SAMPLE_AVAIL_MASK) << I2S_IE_EN_LEFT_SAMPLE_AVAIL_OFFS)
 | 
					#define I2S_IE_EN_LEFT_SAMPLE_AVAIL(V) ((V & I2S_IE_EN_LEFT_SAMPLE_AVAIL_MASK) << I2S_IE_EN_LEFT_SAMPLE_AVAIL_OFFS)
 | 
				
			||||||
@@ -95,134 +108,93 @@ typedef struct {
 | 
				
			|||||||
#define I2S_IP_RIGHT_SAMPLE_AVAIL_MASK 0x1
 | 
					#define I2S_IP_RIGHT_SAMPLE_AVAIL_MASK 0x1
 | 
				
			||||||
#define I2S_IP_RIGHT_SAMPLE_AVAIL(V) ((V & I2S_IP_RIGHT_SAMPLE_AVAIL_MASK) << I2S_IP_RIGHT_SAMPLE_AVAIL_OFFS)
 | 
					#define I2S_IP_RIGHT_SAMPLE_AVAIL(V) ((V & I2S_IP_RIGHT_SAMPLE_AVAIL_MASK) << I2S_IP_RIGHT_SAMPLE_AVAIL_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//I2S_LEFT_CH
 | 
					// I2S_LEFT_CH
 | 
				
			||||||
inline uint32_t get_i2s_left_ch(volatile i2s_t* reg){
 | 
					static inline uint32_t get_i2s_left_ch(volatile i2s_t* reg) { return (reg->LEFT_CH >> 0) & 0xffffffff; }
 | 
				
			||||||
    return (reg->LEFT_CH >> 0) & 0xffffffff;
 | 
					
 | 
				
			||||||
 | 
					// I2S_RIGHT_CH
 | 
				
			||||||
 | 
					static inline uint32_t get_i2s_right_ch(volatile i2s_t* reg) { return (reg->RIGHT_CH >> 0) & 0xffffffff; }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					// I2S_CONTROL
 | 
				
			||||||
 | 
					static inline uint32_t get_i2s_control(volatile i2s_t* reg) { return reg->CONTROL; }
 | 
				
			||||||
 | 
					static inline void set_i2s_control(volatile i2s_t* reg, uint32_t value) { reg->CONTROL = value; }
 | 
				
			||||||
 | 
					static inline uint32_t get_i2s_control_mode(volatile i2s_t* reg) { return (reg->CONTROL >> 0) & 0x3; }
 | 
				
			||||||
 | 
					static inline void set_i2s_control_mode(volatile i2s_t* reg, uint8_t value) { reg->CONTROL = (reg->CONTROL & ~(0x3U << 0)) | (value << 0); }
 | 
				
			||||||
 | 
					static inline uint32_t get_i2s_control_disable_left(volatile i2s_t* reg) { return (reg->CONTROL >> 2) & 0x1; }
 | 
				
			||||||
 | 
					static inline void set_i2s_control_disable_left(volatile i2s_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->CONTROL = (reg->CONTROL & ~(0x1U << 2)) | (value << 2);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					static inline uint32_t get_i2s_control_disable_right(volatile i2s_t* reg) { return (reg->CONTROL >> 3) & 0x1; }
 | 
				
			||||||
 | 
					static inline void set_i2s_control_disable_right(volatile i2s_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->CONTROL = (reg->CONTROL & ~(0x1U << 3)) | (value << 3);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					static inline uint32_t get_i2s_control_is_master(volatile i2s_t* reg) { return (reg->CONTROL >> 4) & 0x1; }
 | 
				
			||||||
 | 
					static inline void set_i2s_control_is_master(volatile i2s_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->CONTROL = (reg->CONTROL & ~(0x1U << 4)) | (value << 4);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					static inline uint32_t get_i2s_control_sample_size(volatile i2s_t* reg) { return (reg->CONTROL >> 5) & 0x3; }
 | 
				
			||||||
 | 
					static inline void set_i2s_control_sample_size(volatile i2s_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->CONTROL = (reg->CONTROL & ~(0x3U << 5)) | (value << 5);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					static inline uint32_t get_i2s_control_pdm_scale(volatile i2s_t* reg) { return (reg->CONTROL >> 7) & 0x7; }
 | 
				
			||||||
 | 
					static inline void set_i2s_control_pdm_scale(volatile i2s_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->CONTROL = (reg->CONTROL & ~(0x7U << 7)) | (value << 7);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//I2S_RIGHT_CH
 | 
					// I2S_STATUS
 | 
				
			||||||
inline uint32_t get_i2s_right_ch(volatile i2s_t* reg){
 | 
					static inline uint32_t get_i2s_status(volatile i2s_t* reg) { return reg->STATUS; }
 | 
				
			||||||
    return (reg->RIGHT_CH >> 0) & 0xffffffff;
 | 
					static inline void set_i2s_status(volatile i2s_t* reg, uint32_t value) { reg->STATUS = value; }
 | 
				
			||||||
 | 
					static inline uint32_t get_i2s_status_enabled(volatile i2s_t* reg) { return (reg->STATUS >> 0) & 0x1; }
 | 
				
			||||||
 | 
					static inline uint32_t get_i2s_status_active(volatile i2s_t* reg) { return (reg->STATUS >> 1) & 0x1; }
 | 
				
			||||||
 | 
					static inline uint32_t get_i2s_status_left_avail(volatile i2s_t* reg) { return (reg->STATUS >> 2) & 0x1; }
 | 
				
			||||||
 | 
					static inline uint32_t get_i2s_status_right_avail(volatile i2s_t* reg) { return (reg->STATUS >> 3) & 0x1; }
 | 
				
			||||||
 | 
					static inline uint32_t get_i2s_status_left_overflow(volatile i2s_t* reg) { return (reg->STATUS >> 4) & 0x1; }
 | 
				
			||||||
 | 
					static inline void set_i2s_status_left_overflow(volatile i2s_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->STATUS = (reg->STATUS & ~(0x1U << 4)) | (value << 4);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					static inline uint32_t get_i2s_status_right_overflow(volatile i2s_t* reg) { return (reg->STATUS >> 5) & 0x1; }
 | 
				
			||||||
 | 
					static inline void set_i2s_status_right_overflow(volatile i2s_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->STATUS = (reg->STATUS & ~(0x1U << 5)) | (value << 5);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//I2S_CONTROL
 | 
					// I2S_I2S_CLOCK_CTRL
 | 
				
			||||||
inline uint32_t get_i2s_control(volatile i2s_t* reg){
 | 
					static inline uint32_t get_i2s_i2s_clock_ctrl(volatile i2s_t* reg) { return reg->I2S_CLOCK_CTRL; }
 | 
				
			||||||
     return reg->CONTROL;
 | 
					static inline void set_i2s_i2s_clock_ctrl(volatile i2s_t* reg, uint32_t value) { reg->I2S_CLOCK_CTRL = value; }
 | 
				
			||||||
}
 | 
					static inline uint32_t get_i2s_i2s_clock_ctrl_divider(volatile i2s_t* reg) { return (reg->I2S_CLOCK_CTRL >> 0) & 0xfffff; }
 | 
				
			||||||
inline void set_i2s_control(volatile i2s_t* reg, uint32_t value){
 | 
					static inline void set_i2s_i2s_clock_ctrl_divider(volatile i2s_t* reg, uint32_t value) {
 | 
				
			||||||
     reg->CONTROL = value;
 | 
					  reg->I2S_CLOCK_CTRL = (reg->I2S_CLOCK_CTRL & ~(0xfffffU << 0)) | (value << 0);
 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline uint32_t get_i2s_control_mode(volatile i2s_t* reg){
 | 
					 | 
				
			||||||
    return (reg->CONTROL >> 0) & 0x3;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline void set_i2s_control_mode(volatile i2s_t* reg, uint8_t value){
 | 
					 | 
				
			||||||
    reg->CONTROL = (reg->CONTROL & ~(0x3U << 0)) | (value << 0);
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline uint32_t get_i2s_control_disable_left(volatile i2s_t* reg){
 | 
					 | 
				
			||||||
    return (reg->CONTROL >> 2) & 0x1;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline void set_i2s_control_disable_left(volatile i2s_t* reg, uint8_t value){
 | 
					 | 
				
			||||||
    reg->CONTROL = (reg->CONTROL & ~(0x1U << 2)) | (value << 2);
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline uint32_t get_i2s_control_disable_right(volatile i2s_t* reg){
 | 
					 | 
				
			||||||
    return (reg->CONTROL >> 3) & 0x1;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline void set_i2s_control_disable_right(volatile i2s_t* reg, uint8_t value){
 | 
					 | 
				
			||||||
    reg->CONTROL = (reg->CONTROL & ~(0x1U << 3)) | (value << 3);
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline uint32_t get_i2s_control_is_master(volatile i2s_t* reg){
 | 
					 | 
				
			||||||
    return (reg->CONTROL >> 4) & 0x1;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline void set_i2s_control_is_master(volatile i2s_t* reg, uint8_t value){
 | 
					 | 
				
			||||||
    reg->CONTROL = (reg->CONTROL & ~(0x1U << 4)) | (value << 4);
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline uint32_t get_i2s_control_sample_size(volatile i2s_t* reg){
 | 
					 | 
				
			||||||
    return (reg->CONTROL >> 5) & 0x3;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline void set_i2s_control_sample_size(volatile i2s_t* reg, uint8_t value){
 | 
					 | 
				
			||||||
    reg->CONTROL = (reg->CONTROL & ~(0x3U << 5)) | (value << 5);
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline uint32_t get_i2s_control_pdm_scale(volatile i2s_t* reg){
 | 
					 | 
				
			||||||
    return (reg->CONTROL >> 7) & 0x7;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline void set_i2s_control_pdm_scale(volatile i2s_t* reg, uint8_t value){
 | 
					 | 
				
			||||||
    reg->CONTROL = (reg->CONTROL & ~(0x7U << 7)) | (value << 7);
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//I2S_STATUS
 | 
					// I2S_PDM_CLOCK_CTRL
 | 
				
			||||||
inline uint32_t get_i2s_status(volatile i2s_t* reg){
 | 
					static inline uint32_t get_i2s_pdm_clock_ctrl(volatile i2s_t* reg) { return reg->PDM_CLOCK_CTRL; }
 | 
				
			||||||
     return reg->STATUS;
 | 
					static inline void set_i2s_pdm_clock_ctrl(volatile i2s_t* reg, uint32_t value) { reg->PDM_CLOCK_CTRL = value; }
 | 
				
			||||||
}
 | 
					static inline uint32_t get_i2s_pdm_clock_ctrl_divider(volatile i2s_t* reg) { return (reg->PDM_CLOCK_CTRL >> 0) & 0xff; }
 | 
				
			||||||
inline uint32_t get_i2s_status_enabled(volatile i2s_t* reg){
 | 
					static inline void set_i2s_pdm_clock_ctrl_divider(volatile i2s_t* reg, uint8_t value) {
 | 
				
			||||||
    return (reg->STATUS >> 0) & 0x1;
 | 
					  reg->PDM_CLOCK_CTRL = (reg->PDM_CLOCK_CTRL & ~(0xffU << 0)) | (value << 0);
 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline uint32_t get_i2s_status_active(volatile i2s_t* reg){
 | 
					 | 
				
			||||||
    return (reg->STATUS >> 1) & 0x1;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline uint32_t get_i2s_status_left_avail(volatile i2s_t* reg){
 | 
					 | 
				
			||||||
    return (reg->STATUS >> 2) & 0x1;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline uint32_t get_i2s_status_right_avail(volatile i2s_t* reg){
 | 
					 | 
				
			||||||
    return (reg->STATUS >> 3) & 0x1;
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//I2S_I2S_CLOCK_CTRL
 | 
					// I2S_PDM_FILTER_CTRL
 | 
				
			||||||
inline uint32_t get_i2s_i2s_clock_ctrl(volatile i2s_t* reg){
 | 
					static inline uint32_t get_i2s_pdm_filter_ctrl(volatile i2s_t* reg) { return reg->PDM_FILTER_CTRL; }
 | 
				
			||||||
     return reg->I2S_CLOCK_CTRL;
 | 
					static inline void set_i2s_pdm_filter_ctrl(volatile i2s_t* reg, uint32_t value) { reg->PDM_FILTER_CTRL = value; }
 | 
				
			||||||
}
 | 
					static inline uint32_t get_i2s_pdm_filter_ctrl_decimationFactor(volatile i2s_t* reg) { return (reg->PDM_FILTER_CTRL >> 0) & 0x3ff; }
 | 
				
			||||||
inline void set_i2s_i2s_clock_ctrl(volatile i2s_t* reg, uint32_t value){
 | 
					static inline void set_i2s_pdm_filter_ctrl_decimationFactor(volatile i2s_t* reg, uint16_t value) {
 | 
				
			||||||
     reg->I2S_CLOCK_CTRL = value;
 | 
					  reg->PDM_FILTER_CTRL = (reg->PDM_FILTER_CTRL & ~(0x3ffU << 0)) | (value << 0);
 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline uint32_t get_i2s_i2s_clock_ctrl_divider(volatile i2s_t* reg){
 | 
					 | 
				
			||||||
    return (reg->I2S_CLOCK_CTRL >> 0) & 0xfffff;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline void set_i2s_i2s_clock_ctrl_divider(volatile i2s_t* reg, uint32_t value){
 | 
					 | 
				
			||||||
    reg->I2S_CLOCK_CTRL = (reg->I2S_CLOCK_CTRL & ~(0xfffffU << 0)) | (value << 0);
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//I2S_PDM_CLOCK_CTRL
 | 
					// I2S_IE
 | 
				
			||||||
inline uint32_t get_i2s_pdm_clock_ctrl(volatile i2s_t* reg){
 | 
					static inline uint32_t get_i2s_ie(volatile i2s_t* reg) { return reg->IE; }
 | 
				
			||||||
     return reg->PDM_CLOCK_CTRL;
 | 
					static inline void set_i2s_ie(volatile i2s_t* reg, uint32_t value) { reg->IE = value; }
 | 
				
			||||||
 | 
					static inline uint32_t get_i2s_ie_en_left_sample_avail(volatile i2s_t* reg) { return (reg->IE >> 0) & 0x1; }
 | 
				
			||||||
 | 
					static inline void set_i2s_ie_en_left_sample_avail(volatile i2s_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->IE = (reg->IE & ~(0x1U << 0)) | (value << 0);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
inline void set_i2s_pdm_clock_ctrl(volatile i2s_t* reg, uint32_t value){
 | 
					static inline uint32_t get_i2s_ie_en_right_sample_avail(volatile i2s_t* reg) { return (reg->IE >> 1) & 0x1; }
 | 
				
			||||||
     reg->PDM_CLOCK_CTRL = value;
 | 
					static inline void set_i2s_ie_en_right_sample_avail(volatile i2s_t* reg, uint8_t value) {
 | 
				
			||||||
}
 | 
					  reg->IE = (reg->IE & ~(0x1U << 1)) | (value << 1);
 | 
				
			||||||
inline uint32_t get_i2s_pdm_clock_ctrl_divider(volatile i2s_t* reg){
 | 
					 | 
				
			||||||
    return (reg->PDM_CLOCK_CTRL >> 0) & 0x3ff;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline void set_i2s_pdm_clock_ctrl_divider(volatile i2s_t* reg, uint16_t value){
 | 
					 | 
				
			||||||
    reg->PDM_CLOCK_CTRL = (reg->PDM_CLOCK_CTRL & ~(0x3ffU << 0)) | (value << 0);
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//I2S_IE
 | 
					// I2S_IP
 | 
				
			||||||
inline uint32_t get_i2s_ie(volatile i2s_t* reg){
 | 
					static inline uint32_t get_i2s_ip(volatile i2s_t* reg) { return reg->IP; }
 | 
				
			||||||
     return reg->IE;
 | 
					static inline uint32_t get_i2s_ip_left_sample_avail(volatile i2s_t* reg) { return (reg->IP >> 0) & 0x1; }
 | 
				
			||||||
}
 | 
					static inline uint32_t get_i2s_ip_right_sample_avail(volatile i2s_t* reg) { return (reg->IP >> 1) & 0x1; }
 | 
				
			||||||
inline void set_i2s_ie(volatile i2s_t* reg, uint32_t value){
 | 
					 | 
				
			||||||
     reg->IE = value;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline uint32_t get_i2s_ie_en_left_sample_avail(volatile i2s_t* reg){
 | 
					 | 
				
			||||||
    return (reg->IE >> 0) & 0x1;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline void set_i2s_ie_en_left_sample_avail(volatile i2s_t* reg, uint8_t value){
 | 
					 | 
				
			||||||
    reg->IE = (reg->IE & ~(0x1U << 0)) | (value << 0);
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline uint32_t get_i2s_ie_en_right_sample_avail(volatile i2s_t* reg){
 | 
					 | 
				
			||||||
    return (reg->IE >> 1) & 0x1;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline void set_i2s_ie_en_right_sample_avail(volatile i2s_t* reg, uint8_t value){
 | 
					 | 
				
			||||||
    reg->IE = (reg->IE & ~(0x1U << 1)) | (value << 1);
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
//I2S_IP
 | 
					 | 
				
			||||||
inline uint32_t get_i2s_ip(volatile i2s_t* reg){
 | 
					 | 
				
			||||||
     return reg->IP;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline uint32_t get_i2s_ip_left_sample_avail(volatile i2s_t* reg){
 | 
					 | 
				
			||||||
    return (reg->IP >> 0) & 0x1;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline uint32_t get_i2s_ip_right_sample_avail(volatile i2s_t* reg){
 | 
					 | 
				
			||||||
    return (reg->IP >> 1) & 0x1;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
#endif /* _BSP_I2S_H */
 | 
					#endif /* _BSP_I2S_H */
 | 
				
			||||||
							
								
								
									
										231
									
								
								include/minres/devices/gen/mkcontrolclusterstreamcontroller.h
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										231
									
								
								include/minres/devices/gen/mkcontrolclusterstreamcontroller.h
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,231 @@
 | 
				
			|||||||
 | 
					/*
 | 
				
			||||||
 | 
					 * Copyright (c) 2023 - 2025 MINRES Technologies GmbH
 | 
				
			||||||
 | 
					 *
 | 
				
			||||||
 | 
					 * SPDX-License-Identifier: Apache-2.0
 | 
				
			||||||
 | 
					 *
 | 
				
			||||||
 | 
					 * Generated at 2025-02-18 11:11:47 UTC
 | 
				
			||||||
 | 
					 * by peakrdl_mnrs version 1.2.9
 | 
				
			||||||
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#ifndef _BSP_MKCONTROLCLUSTERSTREAMCONTROLLER_H
 | 
				
			||||||
 | 
					#define _BSP_MKCONTROLCLUSTERSTREAMCONTROLLER_H
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#include <stdint.h>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					typedef struct {
 | 
				
			||||||
 | 
					  volatile uint32_t REG_SEND;
 | 
				
			||||||
 | 
					  volatile uint32_t REG_HEADER;
 | 
				
			||||||
 | 
					  volatile uint32_t REG_ACK;
 | 
				
			||||||
 | 
					  volatile uint32_t REG_RECV_ID;
 | 
				
			||||||
 | 
					  volatile uint32_t REG_RECV_PAYLOAD;
 | 
				
			||||||
 | 
					  uint8_t fill0[12];
 | 
				
			||||||
 | 
					  volatile uint32_t REG_PAYLOAD_0;
 | 
				
			||||||
 | 
					  volatile uint32_t REG_PAYLOAD_1;
 | 
				
			||||||
 | 
					  volatile uint32_t REG_PAYLOAD_2;
 | 
				
			||||||
 | 
					  volatile uint32_t REG_PAYLOAD_3;
 | 
				
			||||||
 | 
					  volatile uint32_t REG_PAYLOAD_4;
 | 
				
			||||||
 | 
					  volatile uint32_t REG_PAYLOAD_5;
 | 
				
			||||||
 | 
					  volatile uint32_t REG_PAYLOAD_6;
 | 
				
			||||||
 | 
					  volatile uint32_t REG_PAYLOAD_7;
 | 
				
			||||||
 | 
					} mkcontrolclusterstreamcontroller_t;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define MKCONTROLCLUSTERSTREAMCONTROLLER_REG_SEND_OFFS 0
 | 
				
			||||||
 | 
					#define MKCONTROLCLUSTERSTREAMCONTROLLER_REG_SEND_MASK 0x1
 | 
				
			||||||
 | 
					#define MKCONTROLCLUSTERSTREAMCONTROLLER_REG_SEND(V) \
 | 
				
			||||||
 | 
					  ((V & MKCONTROLCLUSTERSTREAMCONTROLLER_REG_SEND_MASK) << MKCONTROLCLUSTERSTREAMCONTROLLER_REG_SEND_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define MKCONTROLCLUSTERSTREAMCONTROLLER_REG_HEADER_MESSAGE_ID_OFFS 0
 | 
				
			||||||
 | 
					#define MKCONTROLCLUSTERSTREAMCONTROLLER_REG_HEADER_MESSAGE_ID_MASK 0xf
 | 
				
			||||||
 | 
					#define MKCONTROLCLUSTERSTREAMCONTROLLER_REG_HEADER_MESSAGE_ID(V) \
 | 
				
			||||||
 | 
					  ((V & MKCONTROLCLUSTERSTREAMCONTROLLER_REG_HEADER_MESSAGE_ID_MASK) << MKCONTROLCLUSTERSTREAMCONTROLLER_REG_HEADER_MESSAGE_ID_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define MKCONTROLCLUSTERSTREAMCONTROLLER_REG_HEADER_MESSAGE_LENGTH_OFFS 4
 | 
				
			||||||
 | 
					#define MKCONTROLCLUSTERSTREAMCONTROLLER_REG_HEADER_MESSAGE_LENGTH_MASK 0xf
 | 
				
			||||||
 | 
					#define MKCONTROLCLUSTERSTREAMCONTROLLER_REG_HEADER_MESSAGE_LENGTH(V) \
 | 
				
			||||||
 | 
					  ((V & MKCONTROLCLUSTERSTREAMCONTROLLER_REG_HEADER_MESSAGE_LENGTH_MASK) << MKCONTROLCLUSTERSTREAMCONTROLLER_REG_HEADER_MESSAGE_LENGTH_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define MKCONTROLCLUSTERSTREAMCONTROLLER_REG_HEADER_RECIPIENT_COMPONENT_OFFS 8
 | 
				
			||||||
 | 
					#define MKCONTROLCLUSTERSTREAMCONTROLLER_REG_HEADER_RECIPIENT_COMPONENT_MASK 0x7
 | 
				
			||||||
 | 
					#define MKCONTROLCLUSTERSTREAMCONTROLLER_REG_HEADER_RECIPIENT_COMPONENT(V)    \
 | 
				
			||||||
 | 
					  ((V & MKCONTROLCLUSTERSTREAMCONTROLLER_REG_HEADER_RECIPIENT_COMPONENT_MASK) \
 | 
				
			||||||
 | 
					   << MKCONTROLCLUSTERSTREAMCONTROLLER_REG_HEADER_RECIPIENT_COMPONENT_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define MKCONTROLCLUSTERSTREAMCONTROLLER_REG_HEADER_RECIPIENT_CLUSTER_OFFS 11
 | 
				
			||||||
 | 
					#define MKCONTROLCLUSTERSTREAMCONTROLLER_REG_HEADER_RECIPIENT_CLUSTER_MASK 0x3
 | 
				
			||||||
 | 
					#define MKCONTROLCLUSTERSTREAMCONTROLLER_REG_HEADER_RECIPIENT_CLUSTER(V)    \
 | 
				
			||||||
 | 
					  ((V & MKCONTROLCLUSTERSTREAMCONTROLLER_REG_HEADER_RECIPIENT_CLUSTER_MASK) \
 | 
				
			||||||
 | 
					   << MKCONTROLCLUSTERSTREAMCONTROLLER_REG_HEADER_RECIPIENT_CLUSTER_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define MKCONTROLCLUSTERSTREAMCONTROLLER_REG_ACK_ACK_OFFS 0
 | 
				
			||||||
 | 
					#define MKCONTROLCLUSTERSTREAMCONTROLLER_REG_ACK_ACK_MASK 0x1
 | 
				
			||||||
 | 
					#define MKCONTROLCLUSTERSTREAMCONTROLLER_REG_ACK_ACK(V) \
 | 
				
			||||||
 | 
					  ((V & MKCONTROLCLUSTERSTREAMCONTROLLER_REG_ACK_ACK_MASK) << MKCONTROLCLUSTERSTREAMCONTROLLER_REG_ACK_ACK_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define MKCONTROLCLUSTERSTREAMCONTROLLER_REG_ACK_PENDING_RESPONSE_OFFS 1
 | 
				
			||||||
 | 
					#define MKCONTROLCLUSTERSTREAMCONTROLLER_REG_ACK_PENDING_RESPONSE_MASK 0x1
 | 
				
			||||||
 | 
					#define MKCONTROLCLUSTERSTREAMCONTROLLER_REG_ACK_PENDING_RESPONSE(V) \
 | 
				
			||||||
 | 
					  ((V & MKCONTROLCLUSTERSTREAMCONTROLLER_REG_ACK_PENDING_RESPONSE_MASK) << MKCONTROLCLUSTERSTREAMCONTROLLER_REG_ACK_PENDING_RESPONSE_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define MKCONTROLCLUSTERSTREAMCONTROLLER_REG_RECV_ID_OFFS 0
 | 
				
			||||||
 | 
					#define MKCONTROLCLUSTERSTREAMCONTROLLER_REG_RECV_ID_MASK 0xf
 | 
				
			||||||
 | 
					#define MKCONTROLCLUSTERSTREAMCONTROLLER_REG_RECV_ID(V) \
 | 
				
			||||||
 | 
					  ((V & MKCONTROLCLUSTERSTREAMCONTROLLER_REG_RECV_ID_MASK) << MKCONTROLCLUSTERSTREAMCONTROLLER_REG_RECV_ID_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define MKCONTROLCLUSTERSTREAMCONTROLLER_REG_RECV_PAYLOAD_OFFS 0
 | 
				
			||||||
 | 
					#define MKCONTROLCLUSTERSTREAMCONTROLLER_REG_RECV_PAYLOAD_MASK 0xffffffff
 | 
				
			||||||
 | 
					#define MKCONTROLCLUSTERSTREAMCONTROLLER_REG_RECV_PAYLOAD(V) \
 | 
				
			||||||
 | 
					  ((V & MKCONTROLCLUSTERSTREAMCONTROLLER_REG_RECV_PAYLOAD_MASK) << MKCONTROLCLUSTERSTREAMCONTROLLER_REG_RECV_PAYLOAD_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define MKCONTROLCLUSTERSTREAMCONTROLLER_REG_PAYLOAD_0_OFFS 0
 | 
				
			||||||
 | 
					#define MKCONTROLCLUSTERSTREAMCONTROLLER_REG_PAYLOAD_0_MASK 0xffffffff
 | 
				
			||||||
 | 
					#define MKCONTROLCLUSTERSTREAMCONTROLLER_REG_PAYLOAD_0(V) \
 | 
				
			||||||
 | 
					  ((V & MKCONTROLCLUSTERSTREAMCONTROLLER_REG_PAYLOAD_0_MASK) << MKCONTROLCLUSTERSTREAMCONTROLLER_REG_PAYLOAD_0_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define MKCONTROLCLUSTERSTREAMCONTROLLER_REG_PAYLOAD_1_OFFS 0
 | 
				
			||||||
 | 
					#define MKCONTROLCLUSTERSTREAMCONTROLLER_REG_PAYLOAD_1_MASK 0xffffffff
 | 
				
			||||||
 | 
					#define MKCONTROLCLUSTERSTREAMCONTROLLER_REG_PAYLOAD_1(V) \
 | 
				
			||||||
 | 
					  ((V & MKCONTROLCLUSTERSTREAMCONTROLLER_REG_PAYLOAD_1_MASK) << MKCONTROLCLUSTERSTREAMCONTROLLER_REG_PAYLOAD_1_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define MKCONTROLCLUSTERSTREAMCONTROLLER_REG_PAYLOAD_2_OFFS 0
 | 
				
			||||||
 | 
					#define MKCONTROLCLUSTERSTREAMCONTROLLER_REG_PAYLOAD_2_MASK 0xffffffff
 | 
				
			||||||
 | 
					#define MKCONTROLCLUSTERSTREAMCONTROLLER_REG_PAYLOAD_2(V) \
 | 
				
			||||||
 | 
					  ((V & MKCONTROLCLUSTERSTREAMCONTROLLER_REG_PAYLOAD_2_MASK) << MKCONTROLCLUSTERSTREAMCONTROLLER_REG_PAYLOAD_2_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define MKCONTROLCLUSTERSTREAMCONTROLLER_REG_PAYLOAD_3_OFFS 0
 | 
				
			||||||
 | 
					#define MKCONTROLCLUSTERSTREAMCONTROLLER_REG_PAYLOAD_3_MASK 0xffffffff
 | 
				
			||||||
 | 
					#define MKCONTROLCLUSTERSTREAMCONTROLLER_REG_PAYLOAD_3(V) \
 | 
				
			||||||
 | 
					  ((V & MKCONTROLCLUSTERSTREAMCONTROLLER_REG_PAYLOAD_3_MASK) << MKCONTROLCLUSTERSTREAMCONTROLLER_REG_PAYLOAD_3_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define MKCONTROLCLUSTERSTREAMCONTROLLER_REG_PAYLOAD_4_OFFS 0
 | 
				
			||||||
 | 
					#define MKCONTROLCLUSTERSTREAMCONTROLLER_REG_PAYLOAD_4_MASK 0xffffffff
 | 
				
			||||||
 | 
					#define MKCONTROLCLUSTERSTREAMCONTROLLER_REG_PAYLOAD_4(V) \
 | 
				
			||||||
 | 
					  ((V & MKCONTROLCLUSTERSTREAMCONTROLLER_REG_PAYLOAD_4_MASK) << MKCONTROLCLUSTERSTREAMCONTROLLER_REG_PAYLOAD_4_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define MKCONTROLCLUSTERSTREAMCONTROLLER_REG_PAYLOAD_5_OFFS 0
 | 
				
			||||||
 | 
					#define MKCONTROLCLUSTERSTREAMCONTROLLER_REG_PAYLOAD_5_MASK 0xffffffff
 | 
				
			||||||
 | 
					#define MKCONTROLCLUSTERSTREAMCONTROLLER_REG_PAYLOAD_5(V) \
 | 
				
			||||||
 | 
					  ((V & MKCONTROLCLUSTERSTREAMCONTROLLER_REG_PAYLOAD_5_MASK) << MKCONTROLCLUSTERSTREAMCONTROLLER_REG_PAYLOAD_5_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define MKCONTROLCLUSTERSTREAMCONTROLLER_REG_PAYLOAD_6_OFFS 0
 | 
				
			||||||
 | 
					#define MKCONTROLCLUSTERSTREAMCONTROLLER_REG_PAYLOAD_6_MASK 0xffffffff
 | 
				
			||||||
 | 
					#define MKCONTROLCLUSTERSTREAMCONTROLLER_REG_PAYLOAD_6(V) \
 | 
				
			||||||
 | 
					  ((V & MKCONTROLCLUSTERSTREAMCONTROLLER_REG_PAYLOAD_6_MASK) << MKCONTROLCLUSTERSTREAMCONTROLLER_REG_PAYLOAD_6_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define MKCONTROLCLUSTERSTREAMCONTROLLER_REG_PAYLOAD_7_OFFS 0
 | 
				
			||||||
 | 
					#define MKCONTROLCLUSTERSTREAMCONTROLLER_REG_PAYLOAD_7_MASK 0xffffffff
 | 
				
			||||||
 | 
					#define MKCONTROLCLUSTERSTREAMCONTROLLER_REG_PAYLOAD_7(V) \
 | 
				
			||||||
 | 
					  ((V & MKCONTROLCLUSTERSTREAMCONTROLLER_REG_PAYLOAD_7_MASK) << MKCONTROLCLUSTERSTREAMCONTROLLER_REG_PAYLOAD_7_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					// MKCONTROLCLUSTERSTREAMCONTROLLER_REG_SEND
 | 
				
			||||||
 | 
					static inline void set_mkcontrolclusterstreamcontroller_REG_SEND(volatile mkcontrolclusterstreamcontroller_t* reg, uint32_t value) {
 | 
				
			||||||
 | 
					  reg->REG_SEND = value;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					static inline void set_mkcontrolclusterstreamcontroller_REG_SEND_SEND(volatile mkcontrolclusterstreamcontroller_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->REG_SEND = (reg->REG_SEND & ~(0x1U << 0)) | (value << 0);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					// MKCONTROLCLUSTERSTREAMCONTROLLER_REG_HEADER
 | 
				
			||||||
 | 
					static inline uint32_t get_mkcontrolclusterstreamcontroller_REG_HEADER(volatile mkcontrolclusterstreamcontroller_t* reg) {
 | 
				
			||||||
 | 
					  return reg->REG_HEADER;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					static inline void set_mkcontrolclusterstreamcontroller_REG_HEADER(volatile mkcontrolclusterstreamcontroller_t* reg, uint32_t value) {
 | 
				
			||||||
 | 
					  reg->REG_HEADER = value;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					static inline uint32_t get_mkcontrolclusterstreamcontroller_REG_HEADER_MESSAGE_ID(volatile mkcontrolclusterstreamcontroller_t* reg) {
 | 
				
			||||||
 | 
					  return (reg->REG_HEADER >> 0) & 0xf;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					static inline void set_mkcontrolclusterstreamcontroller_REG_HEADER_MESSAGE_ID(volatile mkcontrolclusterstreamcontroller_t* reg,
 | 
				
			||||||
 | 
					                                                                              uint8_t value) {
 | 
				
			||||||
 | 
					  reg->REG_HEADER = (reg->REG_HEADER & ~(0xfU << 0)) | (value << 0);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					static inline uint32_t get_mkcontrolclusterstreamcontroller_REG_HEADER_MESSAGE_LENGTH(volatile mkcontrolclusterstreamcontroller_t* reg) {
 | 
				
			||||||
 | 
					  return (reg->REG_HEADER >> 4) & 0xf;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					static inline void set_mkcontrolclusterstreamcontroller_REG_HEADER_MESSAGE_LENGTH(volatile mkcontrolclusterstreamcontroller_t* reg,
 | 
				
			||||||
 | 
					                                                                                  uint8_t value) {
 | 
				
			||||||
 | 
					  reg->REG_HEADER = (reg->REG_HEADER & ~(0xfU << 4)) | (value << 4);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					static inline uint32_t get_mkcontrolclusterstreamcontroller_REG_HEADER_RECIPIENT_COMPONENT(
 | 
				
			||||||
 | 
					    volatile mkcontrolclusterstreamcontroller_t* reg) {
 | 
				
			||||||
 | 
					  return (reg->REG_HEADER >> 8) & 0x7;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					static inline void set_mkcontrolclusterstreamcontroller_REG_HEADER_RECIPIENT_COMPONENT(volatile mkcontrolclusterstreamcontroller_t* reg,
 | 
				
			||||||
 | 
					                                                                                       uint8_t value) {
 | 
				
			||||||
 | 
					  reg->REG_HEADER = (reg->REG_HEADER & ~(0x7U << 8)) | (value << 8);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					static inline uint32_t get_mkcontrolclusterstreamcontroller_REG_HEADER_RECIPIENT_CLUSTER(volatile mkcontrolclusterstreamcontroller_t* reg) {
 | 
				
			||||||
 | 
					  return (reg->REG_HEADER >> 11) & 0x3;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					static inline void set_mkcontrolclusterstreamcontroller_REG_HEADER_RECIPIENT_CLUSTER(volatile mkcontrolclusterstreamcontroller_t* reg,
 | 
				
			||||||
 | 
					                                                                                     uint8_t value) {
 | 
				
			||||||
 | 
					  reg->REG_HEADER = (reg->REG_HEADER & ~(0x3U << 11)) | (value << 11);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					// MKCONTROLCLUSTERSTREAMCONTROLLER_REG_ACK
 | 
				
			||||||
 | 
					static inline uint32_t get_mkcontrolclusterstreamcontroller_REG_ACK(volatile mkcontrolclusterstreamcontroller_t* reg) {
 | 
				
			||||||
 | 
					  return reg->REG_ACK;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					static inline void set_mkcontrolclusterstreamcontroller_REG_ACK(volatile mkcontrolclusterstreamcontroller_t* reg, uint32_t value) {
 | 
				
			||||||
 | 
					  reg->REG_ACK = value;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					static inline void set_mkcontrolclusterstreamcontroller_REG_ACK_ACK(volatile mkcontrolclusterstreamcontroller_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->REG_ACK = (reg->REG_ACK & ~(0x1U << 0)) | (value << 0);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					static inline uint32_t get_mkcontrolclusterstreamcontroller_REG_ACK_PENDING_RESPONSE(volatile mkcontrolclusterstreamcontroller_t* reg) {
 | 
				
			||||||
 | 
					  return (reg->REG_ACK >> 1) & 0x1;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					// MKCONTROLCLUSTERSTREAMCONTROLLER_REG_RECV_ID
 | 
				
			||||||
 | 
					static inline uint32_t get_mkcontrolclusterstreamcontroller_REG_RECV_ID(volatile mkcontrolclusterstreamcontroller_t* reg) {
 | 
				
			||||||
 | 
					  return reg->REG_RECV_ID;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					static inline uint32_t get_mkcontrolclusterstreamcontroller_REG_RECV_ID_RECV_ID(volatile mkcontrolclusterstreamcontroller_t* reg) {
 | 
				
			||||||
 | 
					  return (reg->REG_RECV_ID >> 0) & 0xf;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					// MKCONTROLCLUSTERSTREAMCONTROLLER_REG_RECV_PAYLOAD
 | 
				
			||||||
 | 
					static inline uint32_t get_mkcontrolclusterstreamcontroller_REG_RECV_PAYLOAD(volatile mkcontrolclusterstreamcontroller_t* reg) {
 | 
				
			||||||
 | 
					  return (reg->REG_RECV_PAYLOAD >> 0) & 0xffffffff;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					// MKCONTROLCLUSTERSTREAMCONTROLLER_REG_PAYLOAD_0
 | 
				
			||||||
 | 
					static inline void set_mkcontrolclusterstreamcontroller_REG_PAYLOAD_0(volatile mkcontrolclusterstreamcontroller_t* reg, uint32_t value) {
 | 
				
			||||||
 | 
					  reg->REG_PAYLOAD_0 = (reg->REG_PAYLOAD_0 & ~(0xffffffffU << 0)) | (value << 0);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					// MKCONTROLCLUSTERSTREAMCONTROLLER_REG_PAYLOAD_1
 | 
				
			||||||
 | 
					static inline void set_mkcontrolclusterstreamcontroller_REG_PAYLOAD_1(volatile mkcontrolclusterstreamcontroller_t* reg, uint32_t value) {
 | 
				
			||||||
 | 
					  reg->REG_PAYLOAD_1 = (reg->REG_PAYLOAD_1 & ~(0xffffffffU << 0)) | (value << 0);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					// MKCONTROLCLUSTERSTREAMCONTROLLER_REG_PAYLOAD_2
 | 
				
			||||||
 | 
					static inline void set_mkcontrolclusterstreamcontroller_REG_PAYLOAD_2(volatile mkcontrolclusterstreamcontroller_t* reg, uint32_t value) {
 | 
				
			||||||
 | 
					  reg->REG_PAYLOAD_2 = (reg->REG_PAYLOAD_2 & ~(0xffffffffU << 0)) | (value << 0);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					// MKCONTROLCLUSTERSTREAMCONTROLLER_REG_PAYLOAD_3
 | 
				
			||||||
 | 
					static inline void set_mkcontrolclusterstreamcontroller_REG_PAYLOAD_3(volatile mkcontrolclusterstreamcontroller_t* reg, uint32_t value) {
 | 
				
			||||||
 | 
					  reg->REG_PAYLOAD_3 = (reg->REG_PAYLOAD_3 & ~(0xffffffffU << 0)) | (value << 0);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					// MKCONTROLCLUSTERSTREAMCONTROLLER_REG_PAYLOAD_4
 | 
				
			||||||
 | 
					static inline void set_mkcontrolclusterstreamcontroller_REG_PAYLOAD_4(volatile mkcontrolclusterstreamcontroller_t* reg, uint32_t value) {
 | 
				
			||||||
 | 
					  reg->REG_PAYLOAD_4 = (reg->REG_PAYLOAD_4 & ~(0xffffffffU << 0)) | (value << 0);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					// MKCONTROLCLUSTERSTREAMCONTROLLER_REG_PAYLOAD_5
 | 
				
			||||||
 | 
					static inline void set_mkcontrolclusterstreamcontroller_REG_PAYLOAD_5(volatile mkcontrolclusterstreamcontroller_t* reg, uint32_t value) {
 | 
				
			||||||
 | 
					  reg->REG_PAYLOAD_5 = (reg->REG_PAYLOAD_5 & ~(0xffffffffU << 0)) | (value << 0);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					// MKCONTROLCLUSTERSTREAMCONTROLLER_REG_PAYLOAD_6
 | 
				
			||||||
 | 
					static inline void set_mkcontrolclusterstreamcontroller_REG_PAYLOAD_6(volatile mkcontrolclusterstreamcontroller_t* reg, uint32_t value) {
 | 
				
			||||||
 | 
					  reg->REG_PAYLOAD_6 = (reg->REG_PAYLOAD_6 & ~(0xffffffffU << 0)) | (value << 0);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					// MKCONTROLCLUSTERSTREAMCONTROLLER_REG_PAYLOAD_7
 | 
				
			||||||
 | 
					static inline void set_mkcontrolclusterstreamcontroller_REG_PAYLOAD_7(volatile mkcontrolclusterstreamcontroller_t* reg, uint32_t value) {
 | 
				
			||||||
 | 
					  reg->REG_PAYLOAD_7 = (reg->REG_PAYLOAD_7 & ~(0xffffffffU << 0)) | (value << 0);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#endif /* _BSP_MKCONTROLCLUSTERSTREAMCONTROLLER_H */
 | 
				
			||||||
@@ -1,11 +1,11 @@
 | 
				
			|||||||
/*
 | 
					/*
 | 
				
			||||||
* Copyright (c) 2023 - 2024 MINRES Technologies GmbH
 | 
					 * Copyright (c) 2023 - 2024 MINRES Technologies GmbH
 | 
				
			||||||
*
 | 
					 *
 | 
				
			||||||
* SPDX-License-Identifier: Apache-2.0
 | 
					 * SPDX-License-Identifier: Apache-2.0
 | 
				
			||||||
*
 | 
					 *
 | 
				
			||||||
* Generated at 2024-11-05 12:12:15 UTC 
 | 
					 * Generated at 2024-11-20 11:54:52 UTC
 | 
				
			||||||
* by peakrdl_mnrs version 1.2.7
 | 
					 * by peakrdl_mnrs version 1.2.7
 | 
				
			||||||
*/
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifndef _BSP_MSGIF_H
 | 
					#ifndef _BSP_MSGIF_H
 | 
				
			||||||
#define _BSP_MSGIF_H
 | 
					#define _BSP_MSGIF_H
 | 
				
			||||||
@@ -13,41 +13,42 @@
 | 
				
			|||||||
#include <stdint.h>
 | 
					#include <stdint.h>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
typedef struct {
 | 
					typedef struct {
 | 
				
			||||||
    volatile uint32_t REG_SEND;
 | 
					  volatile uint32_t REG_SEND;
 | 
				
			||||||
    volatile uint32_t REG_HEADER;
 | 
					  volatile uint32_t REG_HEADER;
 | 
				
			||||||
    volatile uint32_t REG_ACK;
 | 
					  volatile uint32_t REG_ACK;
 | 
				
			||||||
    volatile uint32_t REG_RECV_ID;
 | 
					  volatile uint32_t REG_RECV_ID;
 | 
				
			||||||
    volatile uint32_t REG_RECV_PAYLOAD;
 | 
					  volatile uint32_t REG_RECV_PAYLOAD;
 | 
				
			||||||
    uint8_t fill0[12];
 | 
					  uint8_t fill0[12];
 | 
				
			||||||
    volatile uint32_t REG_PAYLOAD_0;
 | 
					  volatile uint32_t REG_PAYLOAD_0;
 | 
				
			||||||
    volatile uint32_t REG_PAYLOAD_1;
 | 
					  volatile uint32_t REG_PAYLOAD_1;
 | 
				
			||||||
    volatile uint32_t REG_PAYLOAD_2;
 | 
					  volatile uint32_t REG_PAYLOAD_2;
 | 
				
			||||||
    volatile uint32_t REG_PAYLOAD_3;
 | 
					  volatile uint32_t REG_PAYLOAD_3;
 | 
				
			||||||
    volatile uint32_t REG_PAYLOAD_4;
 | 
					  volatile uint32_t REG_PAYLOAD_4;
 | 
				
			||||||
    volatile uint32_t REG_PAYLOAD_5;
 | 
					  volatile uint32_t REG_PAYLOAD_5;
 | 
				
			||||||
    volatile uint32_t REG_PAYLOAD_6;
 | 
					  volatile uint32_t REG_PAYLOAD_6;
 | 
				
			||||||
    volatile uint32_t REG_PAYLOAD_7;
 | 
					  volatile uint32_t REG_PAYLOAD_7;
 | 
				
			||||||
}msgif_t;
 | 
					} msgif_t;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define MSGIF_REG_SEND_OFFS 0
 | 
					#define MSGIF_REG_SEND_OFFS 0
 | 
				
			||||||
#define MSGIF_REG_SEND_MASK 0x1
 | 
					#define MSGIF_REG_SEND_MASK 0x1
 | 
				
			||||||
#define MSGIF_REG_SEND(V) ((V & MSGIF_REG_SEND_MASK) << MSGIF_REG_SEND_OFFS)
 | 
					#define MSGIF_REG_SEND(V) ((V & MSGIF_REG_SEND_MASK) << MSGIF_REG_SEND_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define MSGIF_REG_HEADER_RECIPIENT_COMPONENT_OFFS 0
 | 
					#define MSGIF_REG_HEADER_MESSAGE_ID_OFFS 0
 | 
				
			||||||
#define MSGIF_REG_HEADER_RECIPIENT_COMPONENT_MASK 0x7
 | 
					#define MSGIF_REG_HEADER_MESSAGE_ID_MASK 0xf
 | 
				
			||||||
#define MSGIF_REG_HEADER_RECIPIENT_COMPONENT(V) ((V & MSGIF_REG_HEADER_RECIPIENT_COMPONENT_MASK) << MSGIF_REG_HEADER_RECIPIENT_COMPONENT_OFFS)
 | 
					#define MSGIF_REG_HEADER_MESSAGE_ID(V) ((V & MSGIF_REG_HEADER_MESSAGE_ID_MASK) << MSGIF_REG_HEADER_MESSAGE_ID_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define MSGIF_REG_HEADER_RECIPIENT_CLUSTER_OFFS 3
 | 
					#define MSGIF_REG_HEADER_MESSAGE_LENGTH_OFFS 4
 | 
				
			||||||
#define MSGIF_REG_HEADER_RECIPIENT_CLUSTER_MASK 0x3
 | 
					 | 
				
			||||||
#define MSGIF_REG_HEADER_RECIPIENT_CLUSTER(V) ((V & MSGIF_REG_HEADER_RECIPIENT_CLUSTER_MASK) << MSGIF_REG_HEADER_RECIPIENT_CLUSTER_OFFS)
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#define MSGIF_REG_HEADER_MESSAGE_LENGTH_OFFS 5
 | 
					 | 
				
			||||||
#define MSGIF_REG_HEADER_MESSAGE_LENGTH_MASK 0xf
 | 
					#define MSGIF_REG_HEADER_MESSAGE_LENGTH_MASK 0xf
 | 
				
			||||||
#define MSGIF_REG_HEADER_MESSAGE_LENGTH(V) ((V & MSGIF_REG_HEADER_MESSAGE_LENGTH_MASK) << MSGIF_REG_HEADER_MESSAGE_LENGTH_OFFS)
 | 
					#define MSGIF_REG_HEADER_MESSAGE_LENGTH(V) ((V & MSGIF_REG_HEADER_MESSAGE_LENGTH_MASK) << MSGIF_REG_HEADER_MESSAGE_LENGTH_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define MSGIF_REG_HEADER_MESSAGE_ID_OFFS 9
 | 
					#define MSGIF_REG_HEADER_RECIPIENT_COMPONENT_OFFS 8
 | 
				
			||||||
#define MSGIF_REG_HEADER_MESSAGE_ID_MASK 0xf
 | 
					#define MSGIF_REG_HEADER_RECIPIENT_COMPONENT_MASK 0x7
 | 
				
			||||||
#define MSGIF_REG_HEADER_MESSAGE_ID(V) ((V & MSGIF_REG_HEADER_MESSAGE_ID_MASK) << MSGIF_REG_HEADER_MESSAGE_ID_OFFS)
 | 
					#define MSGIF_REG_HEADER_RECIPIENT_COMPONENT(V) \
 | 
				
			||||||
 | 
					  ((V & MSGIF_REG_HEADER_RECIPIENT_COMPONENT_MASK) << MSGIF_REG_HEADER_RECIPIENT_COMPONENT_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define MSGIF_REG_HEADER_RECIPIENT_CLUSTER_OFFS 11
 | 
				
			||||||
 | 
					#define MSGIF_REG_HEADER_RECIPIENT_CLUSTER_MASK 0x3
 | 
				
			||||||
 | 
					#define MSGIF_REG_HEADER_RECIPIENT_CLUSTER(V) ((V & MSGIF_REG_HEADER_RECIPIENT_CLUSTER_MASK) << MSGIF_REG_HEADER_RECIPIENT_CLUSTER_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define MSGIF_REG_ACK_OFFS 0
 | 
					#define MSGIF_REG_ACK_OFFS 0
 | 
				
			||||||
#define MSGIF_REG_ACK_MASK 0x1
 | 
					#define MSGIF_REG_ACK_MASK 0x1
 | 
				
			||||||
@@ -93,105 +94,83 @@ typedef struct {
 | 
				
			|||||||
#define MSGIF_REG_PAYLOAD_7_MASK 0xffffffff
 | 
					#define MSGIF_REG_PAYLOAD_7_MASK 0xffffffff
 | 
				
			||||||
#define MSGIF_REG_PAYLOAD_7(V) ((V & MSGIF_REG_PAYLOAD_7_MASK) << MSGIF_REG_PAYLOAD_7_OFFS)
 | 
					#define MSGIF_REG_PAYLOAD_7(V) ((V & MSGIF_REG_PAYLOAD_7_MASK) << MSGIF_REG_PAYLOAD_7_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//MSGIF_REG_SEND
 | 
					// MSGIF_REG_SEND
 | 
				
			||||||
inline void set_msgif_REG_SEND(volatile msgif_t* reg, uint32_t value){
 | 
					static inline void set_msgif_REG_SEND(volatile msgif_t* reg, uint32_t value) { reg->REG_SEND = value; }
 | 
				
			||||||
     reg->REG_SEND = value;
 | 
					static inline void set_msgif_REG_SEND_SEND(volatile msgif_t* reg, uint8_t value) {
 | 
				
			||||||
}
 | 
					  reg->REG_SEND = (reg->REG_SEND & ~(0x1U << 0)) | (value << 0);
 | 
				
			||||||
inline void set_msgif_REG_SEND_SEND(volatile msgif_t* reg, uint8_t value){
 | 
					 | 
				
			||||||
    reg->REG_SEND = (reg->REG_SEND & ~(0x1U << 0)) | (value << 0);
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//MSGIF_REG_HEADER
 | 
					// MSGIF_REG_HEADER
 | 
				
			||||||
inline uint32_t get_msgif_REG_HEADER(volatile msgif_t* reg){
 | 
					static inline uint32_t get_msgif_REG_HEADER(volatile msgif_t* reg) { return reg->REG_HEADER; }
 | 
				
			||||||
     return reg->REG_HEADER;
 | 
					static inline void set_msgif_REG_HEADER(volatile msgif_t* reg, uint32_t value) { reg->REG_HEADER = value; }
 | 
				
			||||||
 | 
					static inline uint32_t get_msgif_REG_HEADER_MESSAGE_ID(volatile msgif_t* reg) { return (reg->REG_HEADER >> 0) & 0xf; }
 | 
				
			||||||
 | 
					static inline void set_msgif_REG_HEADER_MESSAGE_ID(volatile msgif_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->REG_HEADER = (reg->REG_HEADER & ~(0xfU << 0)) | (value << 0);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
inline void set_msgif_REG_HEADER(volatile msgif_t* reg, uint32_t value){
 | 
					static inline uint32_t get_msgif_REG_HEADER_MESSAGE_LENGTH(volatile msgif_t* reg) { return (reg->REG_HEADER >> 4) & 0xf; }
 | 
				
			||||||
     reg->REG_HEADER = value;
 | 
					static inline void set_msgif_REG_HEADER_MESSAGE_LENGTH(volatile msgif_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->REG_HEADER = (reg->REG_HEADER & ~(0xfU << 4)) | (value << 4);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
inline uint32_t get_msgif_REG_HEADER_RECIPIENT_COMPONENT(volatile msgif_t* reg){
 | 
					static inline uint32_t get_msgif_REG_HEADER_RECIPIENT_COMPONENT(volatile msgif_t* reg) { return (reg->REG_HEADER >> 8) & 0x7; }
 | 
				
			||||||
    return (reg->REG_HEADER >> 0) & 0x7;
 | 
					static inline void set_msgif_REG_HEADER_RECIPIENT_COMPONENT(volatile msgif_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->REG_HEADER = (reg->REG_HEADER & ~(0x7U << 8)) | (value << 8);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
inline void set_msgif_REG_HEADER_RECIPIENT_COMPONENT(volatile msgif_t* reg, uint8_t value){
 | 
					static inline uint32_t get_msgif_REG_HEADER_RECIPIENT_CLUSTER(volatile msgif_t* reg) { return (reg->REG_HEADER >> 11) & 0x3; }
 | 
				
			||||||
    reg->REG_HEADER = (reg->REG_HEADER & ~(0x7U << 0)) | (value << 0);
 | 
					static inline void set_msgif_REG_HEADER_RECIPIENT_CLUSTER(volatile msgif_t* reg, uint8_t value) {
 | 
				
			||||||
}
 | 
					  reg->REG_HEADER = (reg->REG_HEADER & ~(0x3U << 11)) | (value << 11);
 | 
				
			||||||
inline uint32_t get_msgif_REG_HEADER_RECIPIENT_CLUSTER(volatile msgif_t* reg){
 | 
					 | 
				
			||||||
    return (reg->REG_HEADER >> 3) & 0x3;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline void set_msgif_REG_HEADER_RECIPIENT_CLUSTER(volatile msgif_t* reg, uint8_t value){
 | 
					 | 
				
			||||||
    reg->REG_HEADER = (reg->REG_HEADER & ~(0x3U << 3)) | (value << 3);
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline uint32_t get_msgif_REG_HEADER_MESSAGE_LENGTH(volatile msgif_t* reg){
 | 
					 | 
				
			||||||
    return (reg->REG_HEADER >> 5) & 0xf;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline void set_msgif_REG_HEADER_MESSAGE_LENGTH(volatile msgif_t* reg, uint8_t value){
 | 
					 | 
				
			||||||
    reg->REG_HEADER = (reg->REG_HEADER & ~(0xfU << 5)) | (value << 5);
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline uint32_t get_msgif_REG_HEADER_MESSAGE_ID(volatile msgif_t* reg){
 | 
					 | 
				
			||||||
    return (reg->REG_HEADER >> 9) & 0xf;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline void set_msgif_REG_HEADER_MESSAGE_ID(volatile msgif_t* reg, uint8_t value){
 | 
					 | 
				
			||||||
    reg->REG_HEADER = (reg->REG_HEADER & ~(0xfU << 9)) | (value << 9);
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//MSGIF_REG_ACK
 | 
					// MSGIF_REG_ACK
 | 
				
			||||||
inline void set_msgif_REG_ACK(volatile msgif_t* reg, uint32_t value){
 | 
					static inline void set_msgif_REG_ACK(volatile msgif_t* reg, uint32_t value) { reg->REG_ACK = value; }
 | 
				
			||||||
     reg->REG_ACK = value;
 | 
					static inline void set_msgif_REG_ACK_ACK(volatile msgif_t* reg, uint8_t value) {
 | 
				
			||||||
}
 | 
					  reg->REG_ACK = (reg->REG_ACK & ~(0x1U << 0)) | (value << 0);
 | 
				
			||||||
inline void set_msgif_REG_ACK_ACK(volatile msgif_t* reg, uint8_t value){
 | 
					 | 
				
			||||||
    reg->REG_ACK = (reg->REG_ACK & ~(0x1U << 0)) | (value << 0);
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//MSGIF_REG_RECV_ID
 | 
					// MSGIF_REG_RECV_ID
 | 
				
			||||||
inline uint32_t get_msgif_REG_RECV_ID(volatile msgif_t* reg){
 | 
					static inline uint32_t get_msgif_REG_RECV_ID(volatile msgif_t* reg) { return reg->REG_RECV_ID; }
 | 
				
			||||||
     return reg->REG_RECV_ID;
 | 
					static inline uint32_t get_msgif_REG_RECV_ID_RECV_ID(volatile msgif_t* reg) { return (reg->REG_RECV_ID >> 0) & 0xf; }
 | 
				
			||||||
}
 | 
					
 | 
				
			||||||
inline uint32_t get_msgif_REG_RECV_ID_RECV_ID(volatile msgif_t* reg){
 | 
					// MSGIF_REG_RECV_PAYLOAD
 | 
				
			||||||
    return (reg->REG_RECV_ID >> 0) & 0xf;
 | 
					static inline uint32_t get_msgif_REG_RECV_PAYLOAD(volatile msgif_t* reg) { return (reg->REG_RECV_PAYLOAD >> 0) & 0xffffffff; }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					// MSGIF_REG_PAYLOAD_0
 | 
				
			||||||
 | 
					static inline void set_msgif_REG_PAYLOAD_0(volatile msgif_t* reg, uint32_t value) {
 | 
				
			||||||
 | 
					  reg->REG_PAYLOAD_0 = (reg->REG_PAYLOAD_0 & ~(0xffffffffU << 0)) | (value << 0);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//MSGIF_REG_RECV_PAYLOAD
 | 
					// MSGIF_REG_PAYLOAD_1
 | 
				
			||||||
inline uint32_t get_msgif_REG_RECV_PAYLOAD(volatile msgif_t* reg){
 | 
					static inline void set_msgif_REG_PAYLOAD_1(volatile msgif_t* reg, uint32_t value) {
 | 
				
			||||||
    return (reg->REG_RECV_PAYLOAD >> 0) & 0xffffffff;
 | 
					  reg->REG_PAYLOAD_1 = (reg->REG_PAYLOAD_1 & ~(0xffffffffU << 0)) | (value << 0);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//MSGIF_REG_PAYLOAD_0
 | 
					// MSGIF_REG_PAYLOAD_2
 | 
				
			||||||
inline void set_msgif_REG_PAYLOAD_0(volatile msgif_t* reg, uint32_t value){
 | 
					static inline void set_msgif_REG_PAYLOAD_2(volatile msgif_t* reg, uint32_t value) {
 | 
				
			||||||
    reg->REG_PAYLOAD_0 = (reg->REG_PAYLOAD_0 & ~(0xffffffffU << 0)) | (value << 0);
 | 
					  reg->REG_PAYLOAD_2 = (reg->REG_PAYLOAD_2 & ~(0xffffffffU << 0)) | (value << 0);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//MSGIF_REG_PAYLOAD_1
 | 
					// MSGIF_REG_PAYLOAD_3
 | 
				
			||||||
inline void set_msgif_REG_PAYLOAD_1(volatile msgif_t* reg, uint32_t value){
 | 
					static inline void set_msgif_REG_PAYLOAD_3(volatile msgif_t* reg, uint32_t value) {
 | 
				
			||||||
    reg->REG_PAYLOAD_1 = (reg->REG_PAYLOAD_1 & ~(0xffffffffU << 0)) | (value << 0);
 | 
					  reg->REG_PAYLOAD_3 = (reg->REG_PAYLOAD_3 & ~(0xffffffffU << 0)) | (value << 0);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//MSGIF_REG_PAYLOAD_2
 | 
					// MSGIF_REG_PAYLOAD_4
 | 
				
			||||||
inline void set_msgif_REG_PAYLOAD_2(volatile msgif_t* reg, uint32_t value){
 | 
					static inline void set_msgif_REG_PAYLOAD_4(volatile msgif_t* reg, uint32_t value) {
 | 
				
			||||||
    reg->REG_PAYLOAD_2 = (reg->REG_PAYLOAD_2 & ~(0xffffffffU << 0)) | (value << 0);
 | 
					  reg->REG_PAYLOAD_4 = (reg->REG_PAYLOAD_4 & ~(0xffffffffU << 0)) | (value << 0);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//MSGIF_REG_PAYLOAD_3
 | 
					// MSGIF_REG_PAYLOAD_5
 | 
				
			||||||
inline void set_msgif_REG_PAYLOAD_3(volatile msgif_t* reg, uint32_t value){
 | 
					static inline void set_msgif_REG_PAYLOAD_5(volatile msgif_t* reg, uint32_t value) {
 | 
				
			||||||
    reg->REG_PAYLOAD_3 = (reg->REG_PAYLOAD_3 & ~(0xffffffffU << 0)) | (value << 0);
 | 
					  reg->REG_PAYLOAD_5 = (reg->REG_PAYLOAD_5 & ~(0xffffffffU << 0)) | (value << 0);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//MSGIF_REG_PAYLOAD_4
 | 
					// MSGIF_REG_PAYLOAD_6
 | 
				
			||||||
inline void set_msgif_REG_PAYLOAD_4(volatile msgif_t* reg, uint32_t value){
 | 
					static inline void set_msgif_REG_PAYLOAD_6(volatile msgif_t* reg, uint32_t value) {
 | 
				
			||||||
    reg->REG_PAYLOAD_4 = (reg->REG_PAYLOAD_4 & ~(0xffffffffU << 0)) | (value << 0);
 | 
					  reg->REG_PAYLOAD_6 = (reg->REG_PAYLOAD_6 & ~(0xffffffffU << 0)) | (value << 0);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//MSGIF_REG_PAYLOAD_5
 | 
					// MSGIF_REG_PAYLOAD_7
 | 
				
			||||||
inline void set_msgif_REG_PAYLOAD_5(volatile msgif_t* reg, uint32_t value){
 | 
					static inline void set_msgif_REG_PAYLOAD_7(volatile msgif_t* reg, uint32_t value) {
 | 
				
			||||||
    reg->REG_PAYLOAD_5 = (reg->REG_PAYLOAD_5 & ~(0xffffffffU << 0)) | (value << 0);
 | 
					  reg->REG_PAYLOAD_7 = (reg->REG_PAYLOAD_7 & ~(0xffffffffU << 0)) | (value << 0);
 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
//MSGIF_REG_PAYLOAD_6
 | 
					 | 
				
			||||||
inline void set_msgif_REG_PAYLOAD_6(volatile msgif_t* reg, uint32_t value){
 | 
					 | 
				
			||||||
    reg->REG_PAYLOAD_6 = (reg->REG_PAYLOAD_6 & ~(0xffffffffU << 0)) | (value << 0);
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
//MSGIF_REG_PAYLOAD_7
 | 
					 | 
				
			||||||
inline void set_msgif_REG_PAYLOAD_7(volatile msgif_t* reg, uint32_t value){
 | 
					 | 
				
			||||||
    reg->REG_PAYLOAD_7 = (reg->REG_PAYLOAD_7 & ~(0xffffffffU << 0)) | (value << 0);
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#endif /* _BSP_MSGIF_H */
 | 
					#endif /* _BSP_MSGIF_H */
 | 
				
			||||||
							
								
								
									
										94
									
								
								include/minres/devices/gen/sysctrl.h
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										94
									
								
								include/minres/devices/gen/sysctrl.h
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,94 @@
 | 
				
			|||||||
 | 
					/*
 | 
				
			||||||
 | 
					 * Copyright (c) 2023 - 2025 MINRES Technologies GmbH
 | 
				
			||||||
 | 
					 *
 | 
				
			||||||
 | 
					 * SPDX-License-Identifier: Apache-2.0
 | 
				
			||||||
 | 
					 *
 | 
				
			||||||
 | 
					 * Generated at 2025-02-19 17:15:41 UTC
 | 
				
			||||||
 | 
					 * by peakrdl_mnrs version 1.2.9
 | 
				
			||||||
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#ifndef _BSP_SYSCTRL_H
 | 
				
			||||||
 | 
					#define _BSP_SYSCTRL_H
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#include <stdint.h>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					typedef struct {
 | 
				
			||||||
 | 
					  volatile uint32_t SYSCTRL;
 | 
				
			||||||
 | 
					  volatile uint32_t PLLCTRL;
 | 
				
			||||||
 | 
					  volatile uint32_t AXI_BACKUP;
 | 
				
			||||||
 | 
					} sysctrl_t;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define SYSCTRL_SYSCTRL_CC0_RESET_OFFS 0
 | 
				
			||||||
 | 
					#define SYSCTRL_SYSCTRL_CC0_RESET_MASK 0x3
 | 
				
			||||||
 | 
					#define SYSCTRL_SYSCTRL_CC0_RESET(V) ((V & SYSCTRL_SYSCTRL_CC0_RESET_MASK) << SYSCTRL_SYSCTRL_CC0_RESET_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define SYSCTRL_SYSCTRL_CC1_RESET_OFFS 2
 | 
				
			||||||
 | 
					#define SYSCTRL_SYSCTRL_CC1_RESET_MASK 0x3
 | 
				
			||||||
 | 
					#define SYSCTRL_SYSCTRL_CC1_RESET(V) ((V & SYSCTRL_SYSCTRL_CC1_RESET_MASK) << SYSCTRL_SYSCTRL_CC1_RESET_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define SYSCTRL_SYSCTRL_MEM_RESET_OFFS 4
 | 
				
			||||||
 | 
					#define SYSCTRL_SYSCTRL_MEM_RESET_MASK 0x1
 | 
				
			||||||
 | 
					#define SYSCTRL_SYSCTRL_MEM_RESET(V) ((V & SYSCTRL_SYSCTRL_MEM_RESET_MASK) << SYSCTRL_SYSCTRL_MEM_RESET_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define SYSCTRL_PLLCTRL_P_COUNTER_OFFS 0
 | 
				
			||||||
 | 
					#define SYSCTRL_PLLCTRL_P_COUNTER_MASK 0x3f
 | 
				
			||||||
 | 
					#define SYSCTRL_PLLCTRL_P_COUNTER(V) ((V & SYSCTRL_PLLCTRL_P_COUNTER_MASK) << SYSCTRL_PLLCTRL_P_COUNTER_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define SYSCTRL_PLLCTRL_S_COUNTER_OFFS 6
 | 
				
			||||||
 | 
					#define SYSCTRL_PLLCTRL_S_COUNTER_MASK 0x3
 | 
				
			||||||
 | 
					#define SYSCTRL_PLLCTRL_S_COUNTER(V) ((V & SYSCTRL_PLLCTRL_S_COUNTER_MASK) << SYSCTRL_PLLCTRL_S_COUNTER_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define SYSCTRL_PLLCTRL_CLK_SEL_OFFS 8
 | 
				
			||||||
 | 
					#define SYSCTRL_PLLCTRL_CLK_SEL_MASK 0x3
 | 
				
			||||||
 | 
					#define SYSCTRL_PLLCTRL_CLK_SEL(V) ((V & SYSCTRL_PLLCTRL_CLK_SEL_MASK) << SYSCTRL_PLLCTRL_CLK_SEL_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define SYSCTRL_PLLCTRL_LOCKED_OFFS 31
 | 
				
			||||||
 | 
					#define SYSCTRL_PLLCTRL_LOCKED_MASK 0x1
 | 
				
			||||||
 | 
					#define SYSCTRL_PLLCTRL_LOCKED(V) ((V & SYSCTRL_PLLCTRL_LOCKED_MASK) << SYSCTRL_PLLCTRL_LOCKED_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define SYSCTRL_AXI_BACKUP_OFFS 0
 | 
				
			||||||
 | 
					#define SYSCTRL_AXI_BACKUP_MASK 0x1f
 | 
				
			||||||
 | 
					#define SYSCTRL_AXI_BACKUP(V) ((V & SYSCTRL_AXI_BACKUP_MASK) << SYSCTRL_AXI_BACKUP_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					// SYSCTRL_SYSCTRL
 | 
				
			||||||
 | 
					static inline uint32_t get_sysctrl_sysctrl(volatile sysctrl_t* reg) { return reg->SYSCTRL; }
 | 
				
			||||||
 | 
					static inline void set_sysctrl_sysctrl(volatile sysctrl_t* reg, uint32_t value) { reg->SYSCTRL = value; }
 | 
				
			||||||
 | 
					static inline uint32_t get_sysctrl_sysctrl_cc0_reset(volatile sysctrl_t* reg) { return (reg->SYSCTRL >> 0) & 0x3; }
 | 
				
			||||||
 | 
					static inline void set_sysctrl_sysctrl_cc0_reset(volatile sysctrl_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->SYSCTRL = (reg->SYSCTRL & ~(0x3U << 0)) | (value << 0);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					static inline uint32_t get_sysctrl_sysctrl_cc1_reset(volatile sysctrl_t* reg) { return (reg->SYSCTRL >> 2) & 0x3; }
 | 
				
			||||||
 | 
					static inline void set_sysctrl_sysctrl_cc1_reset(volatile sysctrl_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->SYSCTRL = (reg->SYSCTRL & ~(0x3U << 2)) | (value << 2);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					static inline uint32_t get_sysctrl_sysctrl_mem_reset(volatile sysctrl_t* reg) { return (reg->SYSCTRL >> 4) & 0x1; }
 | 
				
			||||||
 | 
					static inline void set_sysctrl_sysctrl_mem_reset(volatile sysctrl_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->SYSCTRL = (reg->SYSCTRL & ~(0x1U << 4)) | (value << 4);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					// SYSCTRL_PLLCTRL
 | 
				
			||||||
 | 
					static inline uint32_t get_sysctrl_pllctrl(volatile sysctrl_t* reg) { return reg->PLLCTRL; }
 | 
				
			||||||
 | 
					static inline void set_sysctrl_pllctrl(volatile sysctrl_t* reg, uint32_t value) { reg->PLLCTRL = value; }
 | 
				
			||||||
 | 
					static inline uint32_t get_sysctrl_pllctrl_p_counter(volatile sysctrl_t* reg) { return (reg->PLLCTRL >> 0) & 0x3f; }
 | 
				
			||||||
 | 
					static inline void set_sysctrl_pllctrl_p_counter(volatile sysctrl_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->PLLCTRL = (reg->PLLCTRL & ~(0x3fU << 0)) | (value << 0);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					static inline uint32_t get_sysctrl_pllctrl_s_counter(volatile sysctrl_t* reg) { return (reg->PLLCTRL >> 6) & 0x3; }
 | 
				
			||||||
 | 
					static inline void set_sysctrl_pllctrl_s_counter(volatile sysctrl_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->PLLCTRL = (reg->PLLCTRL & ~(0x3U << 6)) | (value << 6);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					static inline uint32_t get_sysctrl_pllctrl_clk_sel(volatile sysctrl_t* reg) { return (reg->PLLCTRL >> 8) & 0x3; }
 | 
				
			||||||
 | 
					static inline void set_sysctrl_pllctrl_clk_sel(volatile sysctrl_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->PLLCTRL = (reg->PLLCTRL & ~(0x3U << 8)) | (value << 8);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					static inline uint32_t get_sysctrl_pllctrl_locked(volatile sysctrl_t* reg) { return (reg->PLLCTRL >> 31) & 0x1; }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					// SYSCTRL_AXI_BACKUP
 | 
				
			||||||
 | 
					static inline uint32_t get_sysctrl_axi_backup(volatile sysctrl_t* reg) { return reg->AXI_BACKUP; }
 | 
				
			||||||
 | 
					static inline void set_sysctrl_axi_backup(volatile sysctrl_t* reg, uint32_t value) { reg->AXI_BACKUP = value; }
 | 
				
			||||||
 | 
					static inline uint32_t get_sysctrl_axi_backup_page(volatile sysctrl_t* reg) { return (reg->AXI_BACKUP >> 0) & 0x1f; }
 | 
				
			||||||
 | 
					static inline void set_sysctrl_axi_backup_page(volatile sysctrl_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->AXI_BACKUP = (reg->AXI_BACKUP & ~(0x1fU << 0)) | (value << 0);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#endif /* _BSP_SYSCTRL_H */
 | 
				
			||||||
@@ -1,11 +1,11 @@
 | 
				
			|||||||
/*
 | 
					/*
 | 
				
			||||||
* Copyright (c) 2023 - 2024 MINRES Technologies GmbH
 | 
					 * Copyright (c) 2023 - 2024 MINRES Technologies GmbH
 | 
				
			||||||
*
 | 
					 *
 | 
				
			||||||
* SPDX-License-Identifier: Apache-2.0
 | 
					 * SPDX-License-Identifier: Apache-2.0
 | 
				
			||||||
*
 | 
					 *
 | 
				
			||||||
* Generated at 2024-08-02 08:46:07 UTC 
 | 
					 * Generated at 2024-12-26 18:07:07 UTC
 | 
				
			||||||
* by peakrdl_mnrs version 1.2.7
 | 
					 * by peakrdl_mnrs version 1.2.9
 | 
				
			||||||
*/
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifndef _BSP_TIMERCOUNTER_H
 | 
					#ifndef _BSP_TIMERCOUNTER_H
 | 
				
			||||||
#define _BSP_TIMERCOUNTER_H
 | 
					#define _BSP_TIMERCOUNTER_H
 | 
				
			||||||
@@ -13,14 +13,14 @@
 | 
				
			|||||||
#include <stdint.h>
 | 
					#include <stdint.h>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
typedef struct {
 | 
					typedef struct {
 | 
				
			||||||
    volatile uint32_t PRESCALER;
 | 
					  volatile uint32_t PRESCALER;
 | 
				
			||||||
    volatile uint32_t T0_CTRL;
 | 
					  volatile uint32_t T0_CTRL;
 | 
				
			||||||
    volatile uint32_t T0_OVERFLOW;
 | 
					  volatile uint32_t T0_OVERFLOW;
 | 
				
			||||||
    volatile uint32_t T0_VALUE;
 | 
					  volatile uint32_t T0_COUNTER;
 | 
				
			||||||
    volatile uint32_t T1_CTRL;
 | 
					  volatile uint32_t T1_CTRL;
 | 
				
			||||||
    volatile uint32_t T1_OVERFLOW;
 | 
					  volatile uint32_t T1_OVERFLOW;
 | 
				
			||||||
    volatile uint32_t T1_VALUE;
 | 
					  volatile uint32_t T1_COUNTER;
 | 
				
			||||||
}timercounter_t;
 | 
					} timercounter_t;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define TIMERCOUNTER_PRESCALER_OFFS 0
 | 
					#define TIMERCOUNTER_PRESCALER_OFFS 0
 | 
				
			||||||
#define TIMERCOUNTER_PRESCALER_MASK 0xffff
 | 
					#define TIMERCOUNTER_PRESCALER_MASK 0xffff
 | 
				
			||||||
@@ -38,9 +38,9 @@ typedef struct {
 | 
				
			|||||||
#define TIMERCOUNTER_T0_OVERFLOW_MASK 0xffffffff
 | 
					#define TIMERCOUNTER_T0_OVERFLOW_MASK 0xffffffff
 | 
				
			||||||
#define TIMERCOUNTER_T0_OVERFLOW(V) ((V & TIMERCOUNTER_T0_OVERFLOW_MASK) << TIMERCOUNTER_T0_OVERFLOW_OFFS)
 | 
					#define TIMERCOUNTER_T0_OVERFLOW(V) ((V & TIMERCOUNTER_T0_OVERFLOW_MASK) << TIMERCOUNTER_T0_OVERFLOW_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define TIMERCOUNTER_T0_VALUE_OFFS 0
 | 
					#define TIMERCOUNTER_T0_COUNTER_OFFS 0
 | 
				
			||||||
#define TIMERCOUNTER_T0_VALUE_MASK 0xffffffff
 | 
					#define TIMERCOUNTER_T0_COUNTER_MASK 0xffffffff
 | 
				
			||||||
#define TIMERCOUNTER_T0_VALUE(V) ((V & TIMERCOUNTER_T0_VALUE_MASK) << TIMERCOUNTER_T0_VALUE_OFFS)
 | 
					#define TIMERCOUNTER_T0_COUNTER(V) ((V & TIMERCOUNTER_T0_COUNTER_MASK) << TIMERCOUNTER_T0_COUNTER_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define TIMERCOUNTER_T1_CTRL_ENABLE_OFFS 0
 | 
					#define TIMERCOUNTER_T1_CTRL_ENABLE_OFFS 0
 | 
				
			||||||
#define TIMERCOUNTER_T1_CTRL_ENABLE_MASK 0x7
 | 
					#define TIMERCOUNTER_T1_CTRL_ENABLE_MASK 0x7
 | 
				
			||||||
@@ -54,88 +54,58 @@ typedef struct {
 | 
				
			|||||||
#define TIMERCOUNTER_T1_OVERFLOW_MASK 0xffffffff
 | 
					#define TIMERCOUNTER_T1_OVERFLOW_MASK 0xffffffff
 | 
				
			||||||
#define TIMERCOUNTER_T1_OVERFLOW(V) ((V & TIMERCOUNTER_T1_OVERFLOW_MASK) << TIMERCOUNTER_T1_OVERFLOW_OFFS)
 | 
					#define TIMERCOUNTER_T1_OVERFLOW(V) ((V & TIMERCOUNTER_T1_OVERFLOW_MASK) << TIMERCOUNTER_T1_OVERFLOW_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define TIMERCOUNTER_T1_VALUE_OFFS 0
 | 
					#define TIMERCOUNTER_T1_COUNTER_OFFS 0
 | 
				
			||||||
#define TIMERCOUNTER_T1_VALUE_MASK 0xffffffff
 | 
					#define TIMERCOUNTER_T1_COUNTER_MASK 0xffffffff
 | 
				
			||||||
#define TIMERCOUNTER_T1_VALUE(V) ((V & TIMERCOUNTER_T1_VALUE_MASK) << TIMERCOUNTER_T1_VALUE_OFFS)
 | 
					#define TIMERCOUNTER_T1_COUNTER(V) ((V & TIMERCOUNTER_T1_COUNTER_MASK) << TIMERCOUNTER_T1_COUNTER_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//TIMERCOUNTER_PRESCALER
 | 
					// TIMERCOUNTER_PRESCALER
 | 
				
			||||||
inline uint32_t get_timercounter_prescaler(volatile timercounter_t* reg){
 | 
					static inline uint32_t get_timercounter_prescaler(volatile timercounter_t* reg) { return reg->PRESCALER; }
 | 
				
			||||||
     return reg->PRESCALER;
 | 
					static inline void set_timercounter_prescaler(volatile timercounter_t* reg, uint32_t value) { reg->PRESCALER = value; }
 | 
				
			||||||
}
 | 
					static inline uint32_t get_timercounter_prescaler_limit(volatile timercounter_t* reg) { return (reg->PRESCALER >> 0) & 0xffff; }
 | 
				
			||||||
inline void set_timercounter_prescaler(volatile timercounter_t* reg, uint32_t value){
 | 
					static inline void set_timercounter_prescaler_limit(volatile timercounter_t* reg, uint16_t value) {
 | 
				
			||||||
     reg->PRESCALER = value;
 | 
					  reg->PRESCALER = (reg->PRESCALER & ~(0xffffU << 0)) | (value << 0);
 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline uint32_t get_timercounter_prescaler_limit(volatile timercounter_t* reg){
 | 
					 | 
				
			||||||
    return (reg->PRESCALER >> 0) & 0xffff;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline void set_timercounter_prescaler_limit(volatile timercounter_t* reg, uint16_t value){
 | 
					 | 
				
			||||||
    reg->PRESCALER = (reg->PRESCALER & ~(0xffffU << 0)) | (value << 0);
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//TIMERCOUNTER_T0_CTRL
 | 
					// TIMERCOUNTER_T0_CTRL
 | 
				
			||||||
inline uint32_t get_timercounter_t0_ctrl(volatile timercounter_t* reg){
 | 
					static inline uint32_t get_timercounter_t0_ctrl(volatile timercounter_t* reg) { return reg->T0_CTRL; }
 | 
				
			||||||
     return reg->T0_CTRL;
 | 
					static inline void set_timercounter_t0_ctrl(volatile timercounter_t* reg, uint32_t value) { reg->T0_CTRL = value; }
 | 
				
			||||||
 | 
					static inline uint32_t get_timercounter_t0_ctrl_enable(volatile timercounter_t* reg) { return (reg->T0_CTRL >> 0) & 0x7; }
 | 
				
			||||||
 | 
					static inline void set_timercounter_t0_ctrl_enable(volatile timercounter_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->T0_CTRL = (reg->T0_CTRL & ~(0x7U << 0)) | (value << 0);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
inline void set_timercounter_t0_ctrl(volatile timercounter_t* reg, uint32_t value){
 | 
					static inline uint32_t get_timercounter_t0_ctrl_clear(volatile timercounter_t* reg) { return (reg->T0_CTRL >> 3) & 0x3; }
 | 
				
			||||||
     reg->T0_CTRL = value;
 | 
					static inline void set_timercounter_t0_ctrl_clear(volatile timercounter_t* reg, uint8_t value) {
 | 
				
			||||||
}
 | 
					  reg->T0_CTRL = (reg->T0_CTRL & ~(0x3U << 3)) | (value << 3);
 | 
				
			||||||
inline uint32_t get_timercounter_t0_ctrl_enable(volatile timercounter_t* reg){
 | 
					 | 
				
			||||||
    return (reg->T0_CTRL >> 0) & 0x7;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline void set_timercounter_t0_ctrl_enable(volatile timercounter_t* reg, uint8_t value){
 | 
					 | 
				
			||||||
    reg->T0_CTRL = (reg->T0_CTRL & ~(0x7U << 0)) | (value << 0);
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline uint32_t get_timercounter_t0_ctrl_clear(volatile timercounter_t* reg){
 | 
					 | 
				
			||||||
    return (reg->T0_CTRL >> 3) & 0x3;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline void set_timercounter_t0_ctrl_clear(volatile timercounter_t* reg, uint8_t value){
 | 
					 | 
				
			||||||
    reg->T0_CTRL = (reg->T0_CTRL & ~(0x3U << 3)) | (value << 3);
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//TIMERCOUNTER_T0_OVERFLOW
 | 
					// TIMERCOUNTER_T0_OVERFLOW
 | 
				
			||||||
inline uint32_t get_timercounter_t0_overflow(volatile timercounter_t* reg){
 | 
					static inline uint32_t get_timercounter_t0_overflow(volatile timercounter_t* reg) { return (reg->T0_OVERFLOW >> 0) & 0xffffffff; }
 | 
				
			||||||
    return (reg->T0_OVERFLOW >> 0) & 0xffffffff;
 | 
					static inline void set_timercounter_t0_overflow(volatile timercounter_t* reg, uint32_t value) {
 | 
				
			||||||
}
 | 
					  reg->T0_OVERFLOW = (reg->T0_OVERFLOW & ~(0xffffffffU << 0)) | (value << 0);
 | 
				
			||||||
inline void set_timercounter_t0_overflow(volatile timercounter_t* reg, uint32_t value){
 | 
					 | 
				
			||||||
    reg->T0_OVERFLOW = (reg->T0_OVERFLOW & ~(0xffffffffU << 0)) | (value << 0);
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//TIMERCOUNTER_T0_VALUE
 | 
					// TIMERCOUNTER_T0_COUNTER
 | 
				
			||||||
inline uint32_t get_timercounter_t0_value(volatile timercounter_t* reg){
 | 
					static inline uint32_t get_timercounter_t0_counter(volatile timercounter_t* reg) { return (reg->T0_COUNTER >> 0) & 0xffffffff; }
 | 
				
			||||||
    return (reg->T0_VALUE >> 0) & 0xffffffff;
 | 
					
 | 
				
			||||||
 | 
					// TIMERCOUNTER_T1_CTRL
 | 
				
			||||||
 | 
					static inline uint32_t get_timercounter_t1_ctrl(volatile timercounter_t* reg) { return reg->T1_CTRL; }
 | 
				
			||||||
 | 
					static inline void set_timercounter_t1_ctrl(volatile timercounter_t* reg, uint32_t value) { reg->T1_CTRL = value; }
 | 
				
			||||||
 | 
					static inline uint32_t get_timercounter_t1_ctrl_enable(volatile timercounter_t* reg) { return (reg->T1_CTRL >> 0) & 0x7; }
 | 
				
			||||||
 | 
					static inline void set_timercounter_t1_ctrl_enable(volatile timercounter_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->T1_CTRL = (reg->T1_CTRL & ~(0x7U << 0)) | (value << 0);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					static inline uint32_t get_timercounter_t1_ctrl_clear(volatile timercounter_t* reg) { return (reg->T1_CTRL >> 3) & 0x3; }
 | 
				
			||||||
 | 
					static inline void set_timercounter_t1_ctrl_clear(volatile timercounter_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->T1_CTRL = (reg->T1_CTRL & ~(0x3U << 3)) | (value << 3);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//TIMERCOUNTER_T1_CTRL
 | 
					// TIMERCOUNTER_T1_OVERFLOW
 | 
				
			||||||
inline uint32_t get_timercounter_t1_ctrl(volatile timercounter_t* reg){
 | 
					static inline uint32_t get_timercounter_t1_overflow(volatile timercounter_t* reg) { return (reg->T1_OVERFLOW >> 0) & 0xffffffff; }
 | 
				
			||||||
     return reg->T1_CTRL;
 | 
					static inline void set_timercounter_t1_overflow(volatile timercounter_t* reg, uint32_t value) {
 | 
				
			||||||
}
 | 
					  reg->T1_OVERFLOW = (reg->T1_OVERFLOW & ~(0xffffffffU << 0)) | (value << 0);
 | 
				
			||||||
inline void set_timercounter_t1_ctrl(volatile timercounter_t* reg, uint32_t value){
 | 
					 | 
				
			||||||
     reg->T1_CTRL = value;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline uint32_t get_timercounter_t1_ctrl_enable(volatile timercounter_t* reg){
 | 
					 | 
				
			||||||
    return (reg->T1_CTRL >> 0) & 0x7;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline void set_timercounter_t1_ctrl_enable(volatile timercounter_t* reg, uint8_t value){
 | 
					 | 
				
			||||||
    reg->T1_CTRL = (reg->T1_CTRL & ~(0x7U << 0)) | (value << 0);
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline uint32_t get_timercounter_t1_ctrl_clear(volatile timercounter_t* reg){
 | 
					 | 
				
			||||||
    return (reg->T1_CTRL >> 3) & 0x3;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline void set_timercounter_t1_ctrl_clear(volatile timercounter_t* reg, uint8_t value){
 | 
					 | 
				
			||||||
    reg->T1_CTRL = (reg->T1_CTRL & ~(0x3U << 3)) | (value << 3);
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//TIMERCOUNTER_T1_OVERFLOW
 | 
					// TIMERCOUNTER_T1_COUNTER
 | 
				
			||||||
inline uint32_t get_timercounter_t1_overflow(volatile timercounter_t* reg){
 | 
					static inline uint32_t get_timercounter_t1_counter(volatile timercounter_t* reg) { return (reg->T1_COUNTER >> 0) & 0xffffffff; }
 | 
				
			||||||
    return (reg->T1_OVERFLOW >> 0) & 0xffffffff;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline void set_timercounter_t1_overflow(volatile timercounter_t* reg, uint32_t value){
 | 
					 | 
				
			||||||
    reg->T1_OVERFLOW = (reg->T1_OVERFLOW & ~(0xffffffffU << 0)) | (value << 0);
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
//TIMERCOUNTER_T1_VALUE
 | 
					#endif /* _BSP_TIMERCOUNTER_H */
 | 
				
			||||||
inline uint32_t get_timercounter_t1_value(volatile timercounter_t* reg){
 | 
					 | 
				
			||||||
    return (reg->T1_VALUE >> 0) & 0xffffffff;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#endif /* _BSP_TIMERCOUNTER_H */
 | 
					 | 
				
			||||||
@@ -1,11 +1,11 @@
 | 
				
			|||||||
/*
 | 
					/*
 | 
				
			||||||
* Copyright (c) 2023 - 2024 MINRES Technologies GmbH
 | 
					 * Copyright (c) 2023 - 2024 MINRES Technologies GmbH
 | 
				
			||||||
*
 | 
					 *
 | 
				
			||||||
* SPDX-License-Identifier: Apache-2.0
 | 
					 * SPDX-License-Identifier: Apache-2.0
 | 
				
			||||||
*
 | 
					 *
 | 
				
			||||||
* Generated at 2024-08-02 08:46:07 UTC 
 | 
					 * Generated at 2024-08-02 08:46:07 UTC
 | 
				
			||||||
* by peakrdl_mnrs version 1.2.7
 | 
					 * by peakrdl_mnrs version 1.2.7
 | 
				
			||||||
*/
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifndef _BSP_UART_H
 | 
					#ifndef _BSP_UART_H
 | 
				
			||||||
#define _BSP_UART_H
 | 
					#define _BSP_UART_H
 | 
				
			||||||
@@ -13,12 +13,12 @@
 | 
				
			|||||||
#include <stdint.h>
 | 
					#include <stdint.h>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
typedef struct {
 | 
					typedef struct {
 | 
				
			||||||
    volatile uint32_t RX_TX_REG;
 | 
					  volatile uint32_t RX_TX_REG;
 | 
				
			||||||
    volatile uint32_t INT_CTRL_REG;
 | 
					  volatile uint32_t INT_CTRL_REG;
 | 
				
			||||||
    volatile uint32_t CLK_DIVIDER_REG;
 | 
					  volatile uint32_t CLK_DIVIDER_REG;
 | 
				
			||||||
    volatile uint32_t FRAME_CONFIG_REG;
 | 
					  volatile uint32_t FRAME_CONFIG_REG;
 | 
				
			||||||
    volatile uint32_t STATUS_REG;
 | 
					  volatile uint32_t STATUS_REG;
 | 
				
			||||||
}uart_t;
 | 
					} uart_t;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define UART_RX_TX_REG_DATA_OFFS 0
 | 
					#define UART_RX_TX_REG_DATA_OFFS 0
 | 
				
			||||||
#define UART_RX_TX_REG_DATA_MASK 0xff
 | 
					#define UART_RX_TX_REG_DATA_MASK 0xff
 | 
				
			||||||
@@ -100,137 +100,77 @@ typedef struct {
 | 
				
			|||||||
#define UART_STATUS_REG_CLEAR_BREAK_MASK 0x1
 | 
					#define UART_STATUS_REG_CLEAR_BREAK_MASK 0x1
 | 
				
			||||||
#define UART_STATUS_REG_CLEAR_BREAK(V) ((V & UART_STATUS_REG_CLEAR_BREAK_MASK) << UART_STATUS_REG_CLEAR_BREAK_OFFS)
 | 
					#define UART_STATUS_REG_CLEAR_BREAK(V) ((V & UART_STATUS_REG_CLEAR_BREAK_MASK) << UART_STATUS_REG_CLEAR_BREAK_OFFS)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//UART_RX_TX_REG
 | 
					// UART_RX_TX_REG
 | 
				
			||||||
inline uint32_t get_uart_rx_tx_reg(volatile uart_t* reg){
 | 
					static inline uint32_t get_uart_rx_tx_reg(volatile uart_t* reg) { return reg->RX_TX_REG; }
 | 
				
			||||||
     return reg->RX_TX_REG;
 | 
					static inline void set_uart_rx_tx_reg(volatile uart_t* reg, uint32_t value) { reg->RX_TX_REG = value; }
 | 
				
			||||||
 | 
					static inline uint32_t get_uart_rx_tx_reg_data(volatile uart_t* reg) { return (reg->RX_TX_REG >> 0) & 0xff; }
 | 
				
			||||||
 | 
					static inline void set_uart_rx_tx_reg_data(volatile uart_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->RX_TX_REG = (reg->RX_TX_REG & ~(0xffU << 0)) | (value << 0);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
inline void set_uart_rx_tx_reg(volatile uart_t* reg, uint32_t value){
 | 
					static inline uint32_t get_uart_rx_tx_reg_rx_avail(volatile uart_t* reg) { return (reg->RX_TX_REG >> 14) & 0x1; }
 | 
				
			||||||
     reg->RX_TX_REG = value;
 | 
					static inline uint32_t get_uart_rx_tx_reg_tx_free(volatile uart_t* reg) { return (reg->RX_TX_REG >> 15) & 0x1; }
 | 
				
			||||||
 | 
					static inline uint32_t get_uart_rx_tx_reg_tx_empty(volatile uart_t* reg) { return (reg->RX_TX_REG >> 16) & 0x1; }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					// UART_INT_CTRL_REG
 | 
				
			||||||
 | 
					static inline uint32_t get_uart_int_ctrl_reg(volatile uart_t* reg) { return reg->INT_CTRL_REG; }
 | 
				
			||||||
 | 
					static inline void set_uart_int_ctrl_reg(volatile uart_t* reg, uint32_t value) { reg->INT_CTRL_REG = value; }
 | 
				
			||||||
 | 
					static inline uint32_t get_uart_int_ctrl_reg_write_intr_enable(volatile uart_t* reg) { return (reg->INT_CTRL_REG >> 0) & 0x1; }
 | 
				
			||||||
 | 
					static inline void set_uart_int_ctrl_reg_write_intr_enable(volatile uart_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->INT_CTRL_REG = (reg->INT_CTRL_REG & ~(0x1U << 0)) | (value << 0);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
inline uint32_t get_uart_rx_tx_reg_data(volatile uart_t* reg){
 | 
					static inline uint32_t get_uart_int_ctrl_reg_read_intr_enable(volatile uart_t* reg) { return (reg->INT_CTRL_REG >> 1) & 0x1; }
 | 
				
			||||||
    return (reg->RX_TX_REG >> 0) & 0xff;
 | 
					static inline void set_uart_int_ctrl_reg_read_intr_enable(volatile uart_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->INT_CTRL_REG = (reg->INT_CTRL_REG & ~(0x1U << 1)) | (value << 1);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
inline void set_uart_rx_tx_reg_data(volatile uart_t* reg, uint8_t value){
 | 
					static inline uint32_t get_uart_int_ctrl_reg_break_intr_enable(volatile uart_t* reg) { return (reg->INT_CTRL_REG >> 2) & 0x1; }
 | 
				
			||||||
    reg->RX_TX_REG = (reg->RX_TX_REG & ~(0xffU << 0)) | (value << 0);
 | 
					static inline void set_uart_int_ctrl_reg_break_intr_enable(volatile uart_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->INT_CTRL_REG = (reg->INT_CTRL_REG & ~(0x1U << 2)) | (value << 2);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
inline uint32_t get_uart_rx_tx_reg_rx_avail(volatile uart_t* reg){
 | 
					static inline uint32_t get_uart_int_ctrl_reg_write_intr_pend(volatile uart_t* reg) { return (reg->INT_CTRL_REG >> 8) & 0x1; }
 | 
				
			||||||
    return (reg->RX_TX_REG >> 14) & 0x1;
 | 
					static inline uint32_t get_uart_int_ctrl_reg_read_intr_pend(volatile uart_t* reg) { return (reg->INT_CTRL_REG >> 9) & 0x1; }
 | 
				
			||||||
}
 | 
					static inline uint32_t get_uart_int_ctrl_reg_break_intr_pend(volatile uart_t* reg) { return (reg->INT_CTRL_REG >> 10) & 0x1; }
 | 
				
			||||||
inline uint32_t get_uart_rx_tx_reg_tx_free(volatile uart_t* reg){
 | 
					
 | 
				
			||||||
    return (reg->RX_TX_REG >> 15) & 0x1;
 | 
					// UART_CLK_DIVIDER_REG
 | 
				
			||||||
}
 | 
					static inline uint32_t get_uart_clk_divider_reg(volatile uart_t* reg) { return reg->CLK_DIVIDER_REG; }
 | 
				
			||||||
inline uint32_t get_uart_rx_tx_reg_tx_empty(volatile uart_t* reg){
 | 
					static inline void set_uart_clk_divider_reg(volatile uart_t* reg, uint32_t value) { reg->CLK_DIVIDER_REG = value; }
 | 
				
			||||||
    return (reg->RX_TX_REG >> 16) & 0x1;
 | 
					static inline uint32_t get_uart_clk_divider_reg_clock_divider(volatile uart_t* reg) { return (reg->CLK_DIVIDER_REG >> 0) & 0xfffff; }
 | 
				
			||||||
 | 
					static inline void set_uart_clk_divider_reg_clock_divider(volatile uart_t* reg, uint32_t value) {
 | 
				
			||||||
 | 
					  reg->CLK_DIVIDER_REG = (reg->CLK_DIVIDER_REG & ~(0xfffffU << 0)) | (value << 0);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//UART_INT_CTRL_REG
 | 
					// UART_FRAME_CONFIG_REG
 | 
				
			||||||
inline uint32_t get_uart_int_ctrl_reg(volatile uart_t* reg){
 | 
					static inline uint32_t get_uart_frame_config_reg(volatile uart_t* reg) { return reg->FRAME_CONFIG_REG; }
 | 
				
			||||||
     return reg->INT_CTRL_REG;
 | 
					static inline void set_uart_frame_config_reg(volatile uart_t* reg, uint32_t value) { reg->FRAME_CONFIG_REG = value; }
 | 
				
			||||||
 | 
					static inline uint32_t get_uart_frame_config_reg_data_length(volatile uart_t* reg) { return (reg->FRAME_CONFIG_REG >> 0) & 0x7; }
 | 
				
			||||||
 | 
					static inline void set_uart_frame_config_reg_data_length(volatile uart_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->FRAME_CONFIG_REG = (reg->FRAME_CONFIG_REG & ~(0x7U << 0)) | (value << 0);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
inline void set_uart_int_ctrl_reg(volatile uart_t* reg, uint32_t value){
 | 
					static inline uint32_t get_uart_frame_config_reg_parity(volatile uart_t* reg) { return (reg->FRAME_CONFIG_REG >> 3) & 0x3; }
 | 
				
			||||||
     reg->INT_CTRL_REG = value;
 | 
					static inline void set_uart_frame_config_reg_parity(volatile uart_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->FRAME_CONFIG_REG = (reg->FRAME_CONFIG_REG & ~(0x3U << 3)) | (value << 3);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
inline uint32_t get_uart_int_ctrl_reg_write_intr_enable(volatile uart_t* reg){
 | 
					static inline uint32_t get_uart_frame_config_reg_stop_bit(volatile uart_t* reg) { return (reg->FRAME_CONFIG_REG >> 5) & 0x1; }
 | 
				
			||||||
    return (reg->INT_CTRL_REG >> 0) & 0x1;
 | 
					static inline void set_uart_frame_config_reg_stop_bit(volatile uart_t* reg, uint8_t value) {
 | 
				
			||||||
}
 | 
					  reg->FRAME_CONFIG_REG = (reg->FRAME_CONFIG_REG & ~(0x1U << 5)) | (value << 5);
 | 
				
			||||||
inline void set_uart_int_ctrl_reg_write_intr_enable(volatile uart_t* reg, uint8_t value){
 | 
					 | 
				
			||||||
    reg->INT_CTRL_REG = (reg->INT_CTRL_REG & ~(0x1U << 0)) | (value << 0);
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline uint32_t get_uart_int_ctrl_reg_read_intr_enable(volatile uart_t* reg){
 | 
					 | 
				
			||||||
    return (reg->INT_CTRL_REG >> 1) & 0x1;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline void set_uart_int_ctrl_reg_read_intr_enable(volatile uart_t* reg, uint8_t value){
 | 
					 | 
				
			||||||
    reg->INT_CTRL_REG = (reg->INT_CTRL_REG & ~(0x1U << 1)) | (value << 1);
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline uint32_t get_uart_int_ctrl_reg_break_intr_enable(volatile uart_t* reg){
 | 
					 | 
				
			||||||
    return (reg->INT_CTRL_REG >> 2) & 0x1;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline void set_uart_int_ctrl_reg_break_intr_enable(volatile uart_t* reg, uint8_t value){
 | 
					 | 
				
			||||||
    reg->INT_CTRL_REG = (reg->INT_CTRL_REG & ~(0x1U << 2)) | (value << 2);
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline uint32_t get_uart_int_ctrl_reg_write_intr_pend(volatile uart_t* reg){
 | 
					 | 
				
			||||||
    return (reg->INT_CTRL_REG >> 8) & 0x1;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline uint32_t get_uart_int_ctrl_reg_read_intr_pend(volatile uart_t* reg){
 | 
					 | 
				
			||||||
    return (reg->INT_CTRL_REG >> 9) & 0x1;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline uint32_t get_uart_int_ctrl_reg_break_intr_pend(volatile uart_t* reg){
 | 
					 | 
				
			||||||
    return (reg->INT_CTRL_REG >> 10) & 0x1;
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//UART_CLK_DIVIDER_REG
 | 
					// UART_STATUS_REG
 | 
				
			||||||
inline uint32_t get_uart_clk_divider_reg(volatile uart_t* reg){
 | 
					static inline uint32_t get_uart_status_reg(volatile uart_t* reg) { return reg->STATUS_REG; }
 | 
				
			||||||
     return reg->CLK_DIVIDER_REG;
 | 
					static inline void set_uart_status_reg(volatile uart_t* reg, uint32_t value) { reg->STATUS_REG = value; }
 | 
				
			||||||
 | 
					static inline uint32_t get_uart_status_reg_read_error(volatile uart_t* reg) { return (reg->STATUS_REG >> 0) & 0x1; }
 | 
				
			||||||
 | 
					static inline uint32_t get_uart_status_reg_stall(volatile uart_t* reg) { return (reg->STATUS_REG >> 1) & 0x1; }
 | 
				
			||||||
 | 
					static inline uint32_t get_uart_status_reg_break_line(volatile uart_t* reg) { return (reg->STATUS_REG >> 8) & 0x1; }
 | 
				
			||||||
 | 
					static inline uint32_t get_uart_status_reg_break_detected(volatile uart_t* reg) { return (reg->STATUS_REG >> 9) & 0x1; }
 | 
				
			||||||
 | 
					static inline void set_uart_status_reg_break_detected(volatile uart_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->STATUS_REG = (reg->STATUS_REG & ~(0x1U << 9)) | (value << 9);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
inline void set_uart_clk_divider_reg(volatile uart_t* reg, uint32_t value){
 | 
					static inline uint32_t get_uart_status_reg_set_break(volatile uart_t* reg) { return (reg->STATUS_REG >> 10) & 0x1; }
 | 
				
			||||||
     reg->CLK_DIVIDER_REG = value;
 | 
					static inline void set_uart_status_reg_set_break(volatile uart_t* reg, uint8_t value) {
 | 
				
			||||||
 | 
					  reg->STATUS_REG = (reg->STATUS_REG & ~(0x1U << 10)) | (value << 10);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
inline uint32_t get_uart_clk_divider_reg_clock_divider(volatile uart_t* reg){
 | 
					static inline uint32_t get_uart_status_reg_clear_break(volatile uart_t* reg) { return (reg->STATUS_REG >> 11) & 0x1; }
 | 
				
			||||||
    return (reg->CLK_DIVIDER_REG >> 0) & 0xfffff;
 | 
					static inline void set_uart_status_reg_clear_break(volatile uart_t* reg, uint8_t value) {
 | 
				
			||||||
}
 | 
					  reg->STATUS_REG = (reg->STATUS_REG & ~(0x1U << 11)) | (value << 11);
 | 
				
			||||||
inline void set_uart_clk_divider_reg_clock_divider(volatile uart_t* reg, uint32_t value){
 | 
					 | 
				
			||||||
    reg->CLK_DIVIDER_REG = (reg->CLK_DIVIDER_REG & ~(0xfffffU << 0)) | (value << 0);
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
//UART_FRAME_CONFIG_REG
 | 
					 | 
				
			||||||
inline uint32_t get_uart_frame_config_reg(volatile uart_t* reg){
 | 
					 | 
				
			||||||
     return reg->FRAME_CONFIG_REG;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline void set_uart_frame_config_reg(volatile uart_t* reg, uint32_t value){
 | 
					 | 
				
			||||||
     reg->FRAME_CONFIG_REG = value;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline uint32_t get_uart_frame_config_reg_data_length(volatile uart_t* reg){
 | 
					 | 
				
			||||||
    return (reg->FRAME_CONFIG_REG >> 0) & 0x7;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline void set_uart_frame_config_reg_data_length(volatile uart_t* reg, uint8_t value){
 | 
					 | 
				
			||||||
    reg->FRAME_CONFIG_REG = (reg->FRAME_CONFIG_REG & ~(0x7U << 0)) | (value << 0);
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline uint32_t get_uart_frame_config_reg_parity(volatile uart_t* reg){
 | 
					 | 
				
			||||||
    return (reg->FRAME_CONFIG_REG >> 3) & 0x3;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline void set_uart_frame_config_reg_parity(volatile uart_t* reg, uint8_t value){
 | 
					 | 
				
			||||||
    reg->FRAME_CONFIG_REG = (reg->FRAME_CONFIG_REG & ~(0x3U << 3)) | (value << 3);
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline uint32_t get_uart_frame_config_reg_stop_bit(volatile uart_t* reg){
 | 
					 | 
				
			||||||
    return (reg->FRAME_CONFIG_REG >> 5) & 0x1;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline void set_uart_frame_config_reg_stop_bit(volatile uart_t* reg, uint8_t value){
 | 
					 | 
				
			||||||
    reg->FRAME_CONFIG_REG = (reg->FRAME_CONFIG_REG & ~(0x1U << 5)) | (value << 5);
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
//UART_STATUS_REG
 | 
					 | 
				
			||||||
inline uint32_t get_uart_status_reg(volatile uart_t* reg){
 | 
					 | 
				
			||||||
     return reg->STATUS_REG;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline void set_uart_status_reg(volatile uart_t* reg, uint32_t value){
 | 
					 | 
				
			||||||
     reg->STATUS_REG = value;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline uint32_t get_uart_status_reg_read_error(volatile uart_t* reg){
 | 
					 | 
				
			||||||
    return (reg->STATUS_REG >> 0) & 0x1;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline uint32_t get_uart_status_reg_stall(volatile uart_t* reg){
 | 
					 | 
				
			||||||
    return (reg->STATUS_REG >> 1) & 0x1;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline uint32_t get_uart_status_reg_break_line(volatile uart_t* reg){
 | 
					 | 
				
			||||||
    return (reg->STATUS_REG >> 8) & 0x1;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline uint32_t get_uart_status_reg_break_detected(volatile uart_t* reg){
 | 
					 | 
				
			||||||
    return (reg->STATUS_REG >> 9) & 0x1;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline void set_uart_status_reg_break_detected(volatile uart_t* reg, uint8_t value){
 | 
					 | 
				
			||||||
    reg->STATUS_REG = (reg->STATUS_REG & ~(0x1U << 9)) | (value << 9);
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline uint32_t get_uart_status_reg_set_break(volatile uart_t* reg){
 | 
					 | 
				
			||||||
    return (reg->STATUS_REG >> 10) & 0x1;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline void set_uart_status_reg_set_break(volatile uart_t* reg, uint8_t value){
 | 
					 | 
				
			||||||
    reg->STATUS_REG = (reg->STATUS_REG & ~(0x1U << 10)) | (value << 10);
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline uint32_t get_uart_status_reg_clear_break(volatile uart_t* reg){
 | 
					 | 
				
			||||||
    return (reg->STATUS_REG >> 11) & 0x1;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
inline void set_uart_status_reg_clear_break(volatile uart_t* reg, uint8_t value){
 | 
					 | 
				
			||||||
    reg->STATUS_REG = (reg->STATUS_REG & ~(0x1U << 11)) | (value << 11);
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#endif /* _BSP_UART_H */
 | 
					#endif /* _BSP_UART_H */
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -2,11 +2,12 @@
 | 
				
			|||||||
#define _DEVICES_GPIO_H
 | 
					#define _DEVICES_GPIO_H
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include <stdint.h>
 | 
					#include <stdint.h>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include "gen/gpio.h"
 | 
					#include "gen/gpio.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
inline void gpio_init(volatile gpio_t* reg) {
 | 
					static inline void gpio_init(volatile gpio_t* reg) {
 | 
				
			||||||
    set_gpio_write(reg, 0);
 | 
					  set_gpio_write(reg, 0);
 | 
				
			||||||
    set_gpio_writeEnable(reg, 0);
 | 
					  set_gpio_writeEnable(reg, 0);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#endif /* _DEVICES_GPIO_H */
 | 
					#endif /* _DEVICES_GPIO_H */
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -5,7 +5,6 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
#define irq_t void*
 | 
					#define irq_t void*
 | 
				
			||||||
 | 
					
 | 
				
			||||||
inline void irq_init(volatile irq_t* reg){
 | 
					static inline void irq_init(volatile irq_t* reg) {}
 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
#endif /* _DEVICES_INTERRUPT_H */
 | 
					#endif /* _DEVICES_INTERRUPT_H */
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,6 +1,6 @@
 | 
				
			|||||||
#ifndef _DEVICES_MSG_IF_H
 | 
					#ifndef _DEVICES_MSG_IF_H
 | 
				
			||||||
#define _DEVICES_MSG_IF_H
 | 
					#define _DEVICES_MSG_IF_H
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include "gen/msgif.h"
 | 
					#include "gen/mkcontrolclusterstreamcontroller.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#endif /* _DEVICES_MSG_IF_H */
 | 
					#endif /* _DEVICES_MSG_IF_H */
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,18 +1,18 @@
 | 
				
			|||||||
#ifndef _DEVICES_QSPI_H
 | 
					#ifndef _DEVICES_QSPI_H
 | 
				
			||||||
#define _DEVICES_QSPI_H
 | 
					#define _DEVICES_QSPI_H
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include <stdint.h>
 | 
					 | 
				
			||||||
#include "gen/apb3spi.h"
 | 
					#include "gen/apb3spi.h"
 | 
				
			||||||
 | 
					#include <stdint.h>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define qspi_t apb3spi_t
 | 
					#define qspi_t apb3spi_t
 | 
				
			||||||
typedef struct {
 | 
					typedef struct {
 | 
				
			||||||
    uint32_t cpol;
 | 
					  uint32_t cpol;
 | 
				
			||||||
    uint32_t cpha;
 | 
					  uint32_t cpha;
 | 
				
			||||||
    uint32_t mode;
 | 
					  uint32_t mode;
 | 
				
			||||||
    uint32_t clkDivider;
 | 
					  uint32_t clkDivider;
 | 
				
			||||||
    uint32_t ssSetup;
 | 
					  uint32_t ssSetup;
 | 
				
			||||||
    uint32_t ssHold;
 | 
					  uint32_t ssHold;
 | 
				
			||||||
    uint32_t ssDisable;
 | 
					  uint32_t ssDisable;
 | 
				
			||||||
} spi_cfg;
 | 
					} spi_cfg;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define SPI_CMD_WRITE (1 << 8)
 | 
					#define SPI_CMD_WRITE (1 << 8)
 | 
				
			||||||
@@ -26,57 +26,67 @@ typedef struct {
 | 
				
			|||||||
#define SPI_STATUS_CMD_INT_FLAG = (1 << 8)
 | 
					#define SPI_STATUS_CMD_INT_FLAG = (1 << 8)
 | 
				
			||||||
#define SPI_STATUS_RSP_INT_FLAG = (1 << 9)
 | 
					#define SPI_STATUS_RSP_INT_FLAG = (1 << 9)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static inline void spi_configure(volatile qspi_t* qspi, spi_cfg *config){
 | 
					static inline void spi_configure(volatile qspi_t *qspi, spi_cfg *config) {
 | 
				
			||||||
    set_apb3spi_config(qspi, (config->cpol << 0) | (config->cpha << 1) | (config->mode << 4));
 | 
					  set_apb3spi_config(qspi, (config->cpol << 0) | (config->cpha << 1) |
 | 
				
			||||||
    set_apb3spi_sclk_config(qspi, config->clkDivider);
 | 
					                               (config->mode << 4));
 | 
				
			||||||
    set_apb3spi_ssgen_setup(qspi, config->ssSetup);
 | 
					  set_apb3spi_sclk_config(qspi, config->clkDivider);
 | 
				
			||||||
    set_apb3spi_ssgen_hold(qspi, config->ssHold);
 | 
					  set_apb3spi_ssgen_setup(qspi, config->ssSetup);
 | 
				
			||||||
    set_apb3spi_ssgen_disable(qspi, config->ssDisable);
 | 
					  set_apb3spi_ssgen_hold(qspi, config->ssHold);
 | 
				
			||||||
 | 
					  set_apb3spi_ssgen_disable(qspi, config->ssDisable);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static inline void spi_init(volatile qspi_t* spi){
 | 
					static inline void spi_init(volatile qspi_t *spi) {
 | 
				
			||||||
    spi_cfg spiCfg;
 | 
					  spi_cfg spiCfg;
 | 
				
			||||||
    spiCfg.cpol = 0;
 | 
					  spiCfg.cpol = 0;
 | 
				
			||||||
    spiCfg.cpha = 0;
 | 
					  spiCfg.cpha = 0;
 | 
				
			||||||
    spiCfg.mode = 0;
 | 
					  spiCfg.mode = 0;
 | 
				
			||||||
    spiCfg.clkDivider = 2;
 | 
					  spiCfg.clkDivider = 2;
 | 
				
			||||||
    spiCfg.ssSetup = 2;
 | 
					  spiCfg.ssSetup = 2;
 | 
				
			||||||
    spiCfg.ssHold = 2;
 | 
					  spiCfg.ssHold = 2;
 | 
				
			||||||
    spiCfg.ssDisable = 2;
 | 
					  spiCfg.ssDisable = 2;
 | 
				
			||||||
    spi_configure(spi, &spiCfg);
 | 
					  spi_configure(spi, &spiCfg);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static inline uint32_t spi_cmd_avail(volatile qspi_t* qspi){
 | 
					static inline uint32_t spi_cmd_avail(volatile qspi_t *qspi) {
 | 
				
			||||||
    return qspi->STATUS & 0xFFFF;
 | 
					  return qspi->STATUS & 0xFFFF;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
static inline uint32_t spi_rsp_occupied(volatile qspi_t* qspi){
 | 
					static inline uint32_t spi_rsp_occupied(volatile qspi_t *qspi) {
 | 
				
			||||||
    return qspi->STATUS >> 16;
 | 
					  return qspi->STATUS >> 16;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static inline void spi_write(volatile qspi_t* qspi, uint8_t data){
 | 
					static inline void spi_write(volatile qspi_t *qspi, uint8_t data) {
 | 
				
			||||||
    while(spi_cmd_avail(qspi) == 0);
 | 
					  while (spi_cmd_avail(qspi) == 0)
 | 
				
			||||||
    qspi->DATA = data | SPI_CMD_WRITE;
 | 
					    ;
 | 
				
			||||||
 | 
					  qspi->DATA = data | SPI_CMD_WRITE;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static inline uint8_t spi_read(volatile qspi_t* qspi){
 | 
					static inline uint8_t spi_read(volatile qspi_t *qspi) {
 | 
				
			||||||
    while(spi_cmd_avail(qspi) == 0);
 | 
					  while (spi_cmd_avail(qspi) == 0)
 | 
				
			||||||
    qspi->DATA = SPI_CMD_READ;
 | 
					    ;
 | 
				
			||||||
    while(spi_rsp_occupied(qspi) == 0);
 | 
					  qspi->DATA = SPI_CMD_READ;
 | 
				
			||||||
    while((qspi->DATA & 0x80000000)==0);
 | 
					  while (spi_rsp_occupied(qspi) == 0)
 | 
				
			||||||
    return qspi->DATA;
 | 
					    ;
 | 
				
			||||||
 | 
					  int32_t data;
 | 
				
			||||||
 | 
					  do {
 | 
				
			||||||
 | 
					      data = qspi->DATA ;
 | 
				
			||||||
 | 
					  } while (data<0);
 | 
				
			||||||
 | 
					  return data;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static inline void spi_select(volatile qspi_t* qspi, uint32_t slaveId){
 | 
					static inline void spi_select(volatile qspi_t *qspi, uint32_t slaveId) {
 | 
				
			||||||
    while(spi_cmd_avail(qspi) == 0);
 | 
					  while (spi_cmd_avail(qspi) == 0)
 | 
				
			||||||
    qspi->DATA = slaveId | 0x80 | SPI_CMD_SS;
 | 
					    ;
 | 
				
			||||||
 | 
					  qspi->DATA = (slaveId & 0x3) | 0x80 | SPI_CMD_SS;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static inline void spi_deselect(volatile qspi_t* qspi, uint32_t slaveId){
 | 
					static inline void spi_deselect(volatile qspi_t *qspi, uint32_t slaveId) {
 | 
				
			||||||
    while(spi_cmd_avail(qspi) == 0);
 | 
					  while (spi_cmd_avail(qspi) == 0)
 | 
				
			||||||
    qspi->DATA = slaveId | SPI_CMD_SS;
 | 
					    ;
 | 
				
			||||||
 | 
					  qspi->DATA = (slaveId & 0x3) | SPI_CMD_SS;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static inline void spi_wait_tx_idle(volatile qspi_t* qspi){
 | 
					static inline void spi_wait_tx_idle(volatile qspi_t *qspi) {
 | 
				
			||||||
    while(spi_cmd_avail(qspi) < 0x20);
 | 
					  while (spi_cmd_avail(qspi) < 0x20)
 | 
				
			||||||
 | 
					    ;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
#endif /* _DEVICES_QSPI_H */
 | 
					#endif /* _DEVICES_QSPI_H */
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										6
									
								
								include/minres/devices/sysctrl.h
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										6
									
								
								include/minres/devices/sysctrl.h
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,6 @@
 | 
				
			|||||||
 | 
					#ifndef _DEVICES_SYSCTRL_IF_H
 | 
				
			||||||
 | 
					#define _DEVICES_SYSCTRL_IF_H
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#include "gen/sysctrl.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#endif /* _DEVICES_sysctrl_IF_H */
 | 
				
			||||||
@@ -2,18 +2,13 @@
 | 
				
			|||||||
#define _DEVICES_TIMER_H
 | 
					#define _DEVICES_TIMER_H
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include <stdint.h>
 | 
					#include <stdint.h>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include "gen/timercounter.h"
 | 
					#include "gen/timercounter.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
inline void prescaler_init(timercounter_t* reg, uint16_t value){
 | 
					static inline void prescaler_init(timercounter_t *reg, uint16_t value) { set_timercounter_prescaler(reg, value); }
 | 
				
			||||||
    set_timercounter_prescaler(reg, value);
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
inline void timer_t0__init(timercounter_t *reg){
 | 
					static inline void timer_t0__init(timercounter_t *reg) { set_timercounter_t0_overflow(reg, 0xffffffff); }
 | 
				
			||||||
    set_timercounter_t0_overflow(reg, 0xffffffff);
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
inline void timer_t1__init(timercounter_t *reg){
 | 
					static inline void timer_t1__init(timercounter_t *reg) { set_timercounter_t1_overflow(reg, 0xffffffff); }
 | 
				
			||||||
    set_timercounter_t1_overflow(reg, 0xffffffff);
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
#endif /* _DEVICES_TIMER_H */
 | 
					#endif /* _DEVICES_TIMER_H */
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -21,7 +21,7 @@ static inline void uart_write(volatile uart_t* reg, uint8_t data){
 | 
				
			|||||||
    set_uart_rx_tx_reg_data(reg, data);
 | 
					    set_uart_rx_tx_reg_data(reg, data);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static inline inline uint8_t uart_read(volatile uart_t* reg){
 | 
					static inline uint8_t uart_read(volatile uart_t* reg){
 | 
				
			||||||
    uint32_t res = get_uart_rx_tx_reg_data(reg);
 | 
					    uint32_t res = get_uart_rx_tx_reg_data(reg);
 | 
				
			||||||
    while((res&0x10000) == 0) res = get_uart_rx_tx_reg_data(reg);
 | 
					    while((res&0x10000) == 0) res = get_uart_rx_tx_reg_data(reg);
 | 
				
			||||||
    return res;
 | 
					    return res;
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -35,6 +35,7 @@ foreach(FILE ${LIB_SOURCES})
 | 
				
			|||||||
    endif()
 | 
					    endif()
 | 
				
			||||||
endforeach()
 | 
					endforeach()
 | 
				
			||||||
 | 
					
 | 
				
			||||||
add_library(wrap STATIC ${LIB_SOURCES} ../env/${BOARD_BASE}/bsp_write.c ../env/${BOARD_BASE}/bsp_read.c)
 | 
					add_library(wrap STATIC ${LIB_SOURCES} ../env/${BOARD}/bsp_write.c ../env/${BOARD}/bsp_read.c)
 | 
				
			||||||
 | 
					target_include_directories(wrap PUBLIC ../include)
 | 
				
			||||||
target_link_options(wrap INTERFACE ${WRAP_ARGS})
 | 
					target_link_options(wrap INTERFACE ${WRAP_ARGS})
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -2,16 +2,15 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
/* These functions are intended for embedded RV32 systems and are
 | 
					/* These functions are intended for embedded RV32 systems and are
 | 
				
			||||||
   obviously incorrect in general. */
 | 
					   obviously incorrect in general. */
 | 
				
			||||||
 | 
					void *__wrap_malloc(unsigned long sz);
 | 
				
			||||||
 | 
					void __wrap_free(void *ptr);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
void* __wrap_malloc(unsigned long sz)
 | 
					void *__wrap_malloc(unsigned long sz) {
 | 
				
			||||||
{
 | 
					  extern void *sbrk(long);
 | 
				
			||||||
  extern void* sbrk(long);
 | 
					  void *res = sbrk(sz);
 | 
				
			||||||
  void* res = sbrk(sz);
 | 
					 | 
				
			||||||
  if ((long)res == -1)
 | 
					  if ((long)res == -1)
 | 
				
			||||||
    return 0;
 | 
					    return 0;
 | 
				
			||||||
  return res;
 | 
					  return res;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
void __wrap_free(void* ptr)
 | 
					void __wrap_free(void *ptr) { (void)(ptr); }
 | 
				
			||||||
{
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,6 +1,7 @@
 | 
				
			|||||||
/* See LICENSE of license details. */
 | 
					/* See LICENSE of license details. */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include "weak_under_alias.h"
 | 
					#include "weak_under_alias.h"
 | 
				
			||||||
 | 
					#include <stdint.h>
 | 
				
			||||||
#include <unistd.h>
 | 
					#include <unistd.h>
 | 
				
			||||||
#if defined(SEMIHOSTING)
 | 
					#if defined(SEMIHOSTING)
 | 
				
			||||||
#include "semihosting.h"
 | 
					#include "semihosting.h"
 | 
				
			||||||
@@ -15,21 +16,17 @@ extern volatile uint32_t fromhost;
 | 
				
			|||||||
#endif
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
void write_hex(int fd, uint32_t hex);
 | 
					void write_hex(int fd, uint32_t hex);
 | 
				
			||||||
 | 
					extern void __libc_fini_array(void);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
void __wrap_exit(int code) {
 | 
					void __wrap_exit(int code) {
 | 
				
			||||||
  /*#if defined(SEMIHOSTING)
 | 
					#ifndef HAVE_NO_INIT_FINI
 | 
				
			||||||
    sh_exit();
 | 
					  __libc_fini_array();
 | 
				
			||||||
    return;
 | 
					#endif
 | 
				
			||||||
  #endif*/
 | 
					 | 
				
			||||||
  // volatile uint32_t* leds = (uint32_t*) (GPIO_BASE_ADDR + GPIO_OUT_OFFSET);
 | 
					 | 
				
			||||||
  const char message[] = "\nProgam has exited with code:";
 | 
					  const char message[] = "\nProgam has exited with code:";
 | 
				
			||||||
  //*leds = (~(code));
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  write(STDERR_FILENO, message, sizeof(message) - 1);
 | 
					  write(STDERR_FILENO, message, sizeof(message) - 1);
 | 
				
			||||||
  write_hex(STDERR_FILENO, code);
 | 
					  write_hex(STDERR_FILENO, code);
 | 
				
			||||||
  write(STDERR_FILENO, "\n", 1);
 | 
					  write(STDERR_FILENO, "\n", 1);
 | 
				
			||||||
  tohost = code + 1;
 | 
					  tohost = (code << 1) + 1;
 | 
				
			||||||
  write(STDERR_FILENO, "\x04", 1);
 | 
					 | 
				
			||||||
  for (;;)
 | 
					  for (;;)
 | 
				
			||||||
    ;
 | 
					    ;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -2,10 +2,14 @@
 | 
				
			|||||||
#include <string.h>
 | 
					#include <string.h>
 | 
				
			||||||
#include <unistd.h>
 | 
					#include <unistd.h>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
extern ssize_t _bsp_write(int, const void *, size_t);
 | 
					extern ssize_t _bsp_write(int, const void*, size_t);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
int __wrap_puts(const char *s) {
 | 
					int __wrap_puts(const char* s) {    
 | 
				
			||||||
  int len = strlen(s);
 | 
					     if(!s) return -1;
 | 
				
			||||||
  return _bsp_write(0, s, len);
 | 
					     const char* str = s;
 | 
				
			||||||
 | 
					     while(*str) 
 | 
				
			||||||
 | 
					          ++str;
 | 
				
			||||||
 | 
					     *(char*)str='\n';
 | 
				
			||||||
 | 
					     return _bsp_write(STDOUT_FILENO, s, (str - s)+1);   
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
weak_under_alias(puts);
 | 
					    weak_under_alias(puts);
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,4 +1,5 @@
 | 
				
			|||||||
#include "weak_under_alias.h"
 | 
					#include "weak_under_alias.h"
 | 
				
			||||||
 | 
					#include <stdint.h>
 | 
				
			||||||
#include <unistd.h>
 | 
					#include <unistd.h>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
extern ssize_t _bsp_write(int, const void *, size_t);
 | 
					extern ssize_t _bsp_write(int, const void *, size_t);
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user