Skip to content

Commit

Permalink
feat: support rpmsg_lite
Browse files Browse the repository at this point in the history
  • Loading branch information
Virus-V committed Nov 23, 2023
1 parent fb457a9 commit ebf0a10
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bouffalo_sdk
Submodule bouffalo_sdk updated 44 files
+0 −3 .gitignore
+19 −22 bsp/board/bl808dk/bl808_flash_m0.ld
+1 −0 components/CMakeLists.txt
+1 −0 components/amp/CMakeLists.txt
+32 −0 components/amp/rpmsg-lite/CMakeLists.txt
+29 −0 components/amp/rpmsg-lite/LICENSE
+116 −0 components/amp/rpmsg-lite/README.md
+115 −0 components/amp/rpmsg-lite/common/llist.c
+37 −0 components/amp/rpmsg-lite/include/environment/bm/rpmsg_env_specific.h
+47 −0 components/amp/rpmsg-lite/include/environment/freertos/rpmsg_env_specific.h
+62 −0 components/amp/rpmsg-lite/include/llist.h
+91 −0 components/amp/rpmsg-lite/include/platform/bl808/rpmsg_platform.h
+124 −0 components/amp/rpmsg-lite/include/rpmsg_compiler.h
+197 −0 components/amp/rpmsg-lite/include/rpmsg_default_config.h
+631 −0 components/amp/rpmsg-lite/include/rpmsg_env.h
+417 −0 components/amp/rpmsg-lite/include/rpmsg_lite.h
+142 −0 components/amp/rpmsg-lite/include/rpmsg_ns.h
+203 −0 components/amp/rpmsg-lite/include/rpmsg_queue.h
+171 −0 components/amp/rpmsg-lite/include/virtio_ring.h
+258 −0 components/amp/rpmsg-lite/include/virtqueue.h
+446 −0 components/amp/rpmsg-lite/rpmsg_lite/porting/environment/rpmsg_env_bm.c
+824 −0 components/amp/rpmsg-lite/rpmsg_lite/porting/environment/rpmsg_env_freertos.c
+256 −0 components/amp/rpmsg-lite/rpmsg_lite/porting/platform/bl808/rpmsg_platform.c
+1,400 −0 components/amp/rpmsg-lite/rpmsg_lite/rpmsg_lite.c
+189 −0 components/amp/rpmsg-lite/rpmsg_lite/rpmsg_ns.c
+227 −0 components/amp/rpmsg-lite/rpmsg_lite/rpmsg_queue.c
+762 −0 components/amp/rpmsg-lite/virtio/virtqueue.c
+2 −0 components/os/freertos/portable/GCC/RISC-V/c906/port.c
+11 −0 components/os/freertos/portable/GCC/RISC-V/c906/portASM.S
+2 −4 components/os/freertos/portable/GCC/RISC-V/c906/portmacro.h
+14 −1 drivers/soc/bl808/std/src/bl808_ipc.c
+1 −1 examples/freebsd_loader/loader_d0/main.c
+18 −0 examples/freebsd_loader/rpmsg_d0_test/CMakeLists.txt
+20 −0 examples/freebsd_loader/rpmsg_d0_test/Makefile
+235 −0 examples/freebsd_loader/rpmsg_d0_test/bl808_flash_d0.ld
+132 −0 examples/freebsd_loader/rpmsg_d0_test/include/FreeRTOSConfig.h
+196 −0 examples/freebsd_loader/rpmsg_d0_test/include/rpmsg_config.h
+14 −0 examples/freebsd_loader/rpmsg_d0_test/proj.conf
+125 −0 examples/freebsd_loader/rpmsg_d0_test/src/main.c
+4 −0 examples/freebsd_loader/rtos_m0/CMakeLists.txt
+2 −1 examples/freebsd_loader/rtos_m0/FreeRTOSConfig.h
+13 −72 examples/freebsd_loader/rtos_m0/main.c
+3 −0 examples/freebsd_loader/rtos_m0/proj.conf
+142 −0 examples/freebsd_loader/rtos_m0/rpmsg-bus.c
2 changes: 1 addition & 1 deletion crochet

0 comments on commit ebf0a10

Please sign in to comment.