]> git.sur5r.net Git - freertos/commit
Add starting point for IGLOO2 RISV-V demo project.
authorrtel <rtel@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Wed, 20 Jun 2018 21:18:14 +0000 (21:18 +0000)
committerrtel <rtel@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Wed, 20 Jun 2018 21:18:14 +0000 (21:18 +0000)
commit09822a7bb37f298bf9b10851635b4752ac56caf9
tree11640adecabbc380c8bbaea2bd59c2156fe1c7ad
parent8af74bf4974519815c2ee1e2b4bd7edb919e68f2
Add starting point for IGLOO2 RISV-V demo project.

git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@2553 1d2547de-c912-0410-9cb9-b8ca96c0e9e2
42 files changed:
FreeRTOS/Demo/RISC-V_IGLOO2_Creative_SoftConsole/.cproject [new file with mode: 0644]
FreeRTOS/Demo/RISC-V_IGLOO2_Creative_SoftConsole/.project [new file with mode: 0644]
FreeRTOS/Demo/RISC-V_IGLOO2_Creative_SoftConsole/.settings/language.settings.xml [new file with mode: 0644]
FreeRTOS/Demo/RISC-V_IGLOO2_Creative_SoftConsole/FreeRTOSConfig.h [new file with mode: 0644]
FreeRTOS/Demo/RISC-V_IGLOO2_Creative_SoftConsole/README.md [new file with mode: 0644]
FreeRTOS/Demo/RISC-V_IGLOO2_Creative_SoftConsole/RTOSDemo Debug.launch [new file with mode: 0644]
FreeRTOS/Demo/RISC-V_IGLOO2_Creative_SoftConsole/drivers/Core16550/core16550_regs.h [new file with mode: 0644]
FreeRTOS/Demo/RISC-V_IGLOO2_Creative_SoftConsole/drivers/Core16550/core_16550.c [new file with mode: 0644]
FreeRTOS/Demo/RISC-V_IGLOO2_Creative_SoftConsole/drivers/Core16550/core_16550.h [new file with mode: 0644]
FreeRTOS/Demo/RISC-V_IGLOO2_Creative_SoftConsole/drivers/CoreGPIO/core_gpio.c [new file with mode: 0644]
FreeRTOS/Demo/RISC-V_IGLOO2_Creative_SoftConsole/drivers/CoreGPIO/core_gpio.h [new file with mode: 0644]
FreeRTOS/Demo/RISC-V_IGLOO2_Creative_SoftConsole/drivers/CoreGPIO/coregpio_regs.h [new file with mode: 0644]
FreeRTOS/Demo/RISC-V_IGLOO2_Creative_SoftConsole/drivers/CoreI2C/core_i2c.c [new file with mode: 0644]
FreeRTOS/Demo/RISC-V_IGLOO2_Creative_SoftConsole/drivers/CoreI2C/core_i2c.h [new file with mode: 0644]
FreeRTOS/Demo/RISC-V_IGLOO2_Creative_SoftConsole/drivers/CoreI2C/core_smbus_regs.h [new file with mode: 0644]
FreeRTOS/Demo/RISC-V_IGLOO2_Creative_SoftConsole/drivers/CoreI2C/i2c_interrupt.c [new file with mode: 0644]
FreeRTOS/Demo/RISC-V_IGLOO2_Creative_SoftConsole/drivers/CoreTimer/core_timer.c [new file with mode: 0644]
FreeRTOS/Demo/RISC-V_IGLOO2_Creative_SoftConsole/drivers/CoreTimer/core_timer.h [new file with mode: 0644]
FreeRTOS/Demo/RISC-V_IGLOO2_Creative_SoftConsole/drivers/CoreTimer/coretimer_regs.h [new file with mode: 0644]
FreeRTOS/Demo/RISC-V_IGLOO2_Creative_SoftConsole/drivers/CoreUARTapb/core_uart_apb.c [new file with mode: 0644]
FreeRTOS/Demo/RISC-V_IGLOO2_Creative_SoftConsole/drivers/CoreUARTapb/core_uart_apb.h [new file with mode: 0644]
FreeRTOS/Demo/RISC-V_IGLOO2_Creative_SoftConsole/drivers/CoreUARTapb/coreuartapb_regs.h [new file with mode: 0644]
FreeRTOS/Demo/RISC-V_IGLOO2_Creative_SoftConsole/hal/cpu_types.h [new file with mode: 0644]
FreeRTOS/Demo/RISC-V_IGLOO2_Creative_SoftConsole/hal/hal.h [new file with mode: 0644]
FreeRTOS/Demo/RISC-V_IGLOO2_Creative_SoftConsole/hal/hal_assert.h [new file with mode: 0644]
FreeRTOS/Demo/RISC-V_IGLOO2_Creative_SoftConsole/hal/hal_irq.c [new file with mode: 0644]
FreeRTOS/Demo/RISC-V_IGLOO2_Creative_SoftConsole/hal/hw_macros.h [new file with mode: 0644]
FreeRTOS/Demo/RISC-V_IGLOO2_Creative_SoftConsole/hal/hw_reg_access.S [new file with mode: 0644]
FreeRTOS/Demo/RISC-V_IGLOO2_Creative_SoftConsole/hal/hw_reg_access.h [new file with mode: 0644]
FreeRTOS/Demo/RISC-V_IGLOO2_Creative_SoftConsole/hw_platform.h [new file with mode: 0644]
FreeRTOS/Demo/RISC-V_IGLOO2_Creative_SoftConsole/main.c [new file with mode: 0644]
FreeRTOS/Demo/RISC-V_IGLOO2_Creative_SoftConsole/riscv_hal/encoding.h [new file with mode: 0644]
FreeRTOS/Demo/RISC-V_IGLOO2_Creative_SoftConsole/riscv_hal/entry.S [new file with mode: 0644]
FreeRTOS/Demo/RISC-V_IGLOO2_Creative_SoftConsole/riscv_hal/init.c [new file with mode: 0644]
FreeRTOS/Demo/RISC-V_IGLOO2_Creative_SoftConsole/riscv_hal/microsemi-riscv-igloo2.ld [new file with mode: 0644]
FreeRTOS/Demo/RISC-V_IGLOO2_Creative_SoftConsole/riscv_hal/microsemi-riscv-ram.ld [new file with mode: 0644]
FreeRTOS/Demo/RISC-V_IGLOO2_Creative_SoftConsole/riscv_hal/riscv_hal.c [new file with mode: 0644]
FreeRTOS/Demo/RISC-V_IGLOO2_Creative_SoftConsole/riscv_hal/riscv_hal.h [new file with mode: 0644]
FreeRTOS/Demo/RISC-V_IGLOO2_Creative_SoftConsole/riscv_hal/riscv_hal_stubs.c [new file with mode: 0644]
FreeRTOS/Demo/RISC-V_IGLOO2_Creative_SoftConsole/riscv_hal/riscv_plic.h [new file with mode: 0644]
FreeRTOS/Demo/RISC-V_IGLOO2_Creative_SoftConsole/riscv_hal/sample_hw_platform.h [new file with mode: 0644]
FreeRTOS/Demo/RISC-V_IGLOO2_Creative_SoftConsole/riscv_hal/syscall.c [new file with mode: 0644]