From e9864bb0b812ba3e89c1c46b360872f503d6b4f1 Mon Sep 17 00:00:00 2001 From: thread-liu Date: Wed, 23 Sep 2020 13:42:09 +0800 Subject: [PATCH] [add] openamp for stm32mp157-dk1 --- bsp/stm32/stm32mp157a-st-discovery/.config | 1 + bsp/stm32/stm32mp157a-st-discovery/.cproject | 30 +- .../board/CubeMX_Config/CM4/Inc/ipcc.h | 58 ++ .../board/CubeMX_Config/CM4/Inc/mbox_ipcc.h | 39 + .../board/CubeMX_Config/CM4/Inc/openamp.h | 58 ++ .../CubeMX_Config/CM4/Inc/openamp_conf.h | 242 +++++ .../board/CubeMX_Config/CM4/Inc/openamp_log.h | 134 +++ .../board/CubeMX_Config/CM4/Inc/rsc_table.h | 43 + .../board/CubeMX_Config/CM4/Src/mbox_ipcc.c | 182 ++++ .../board/CubeMX_Config/CM4/Src/openamp.c | 176 ++++ .../board/CubeMX_Config/CM4/Src/openamp_log.c | 102 ++ .../board/CubeMX_Config/CM4/Src/rsc_table.c | 174 ++++ .../CM4/Src/stm32mp1xx_hal_msp.c | 14 +- .../stm32mp157a-st-discovery/board/Kconfig | 6 + .../stm32mp157a-st-discovery/board/SConscript | 25 + .../stm32mp157a-st-discovery/board/board.c | 20 +- .../stm32mp157a-st-discovery/board/board.h | 28 +- .../board/linker_scripts/link.icf | 38 +- .../board/ports/OpenAMP/drv_openamp.c | 292 ++++++ .../board/ports/OpenAMP/drv_openamp.h | 41 + .../board/ports/OpenAMP/libmetal/lib/dma.c | 58 ++ .../libmetal/lib/include/metal/alloc.h | 46 + .../libmetal/lib/include/metal/assert.h | 24 + .../libmetal/lib/include/metal/atomic.h | 32 + .../libmetal/lib/include/metal/cache.h | 57 ++ .../libmetal/lib/include/metal/compiler.h | 25 + .../lib/include/metal/compiler/gcc/atomic.h | 123 +++ .../lib/include/metal/compiler/gcc/compiler.h | 27 + .../lib/include/metal/compiler/iar/compiler.h | 27 + .../lib/include/metal/compiler/iar/errno.h | 289 ++++++ .../include/metal/compiler/mdk-arm/errno.h | 137 +++ .../libmetal/lib/include/metal/condition.h | 73 ++ .../libmetal/lib/include/metal/config.h | 50 + .../OpenAMP/libmetal/lib/include/metal/cpu.h | 17 + .../libmetal/lib/include/metal/device.h | 176 ++++ .../OpenAMP/libmetal/lib/include/metal/dma.h | 79 ++ .../libmetal/lib/include/metal/errno.h | 24 + .../OpenAMP/libmetal/lib/include/metal/io.h | 354 +++++++ .../OpenAMP/libmetal/lib/include/metal/irq.h | 116 +++ .../OpenAMP/libmetal/lib/include/metal/list.h | 102 ++ .../OpenAMP/libmetal/lib/include/metal/log.h | 93 ++ .../libmetal/lib/include/metal/mutex.h | 87 ++ .../lib/include/metal/processor/arm/atomic.h | 15 + .../lib/include/metal/processor/arm/cpu.h | 17 + .../libmetal/lib/include/metal/shmem.h | 83 ++ .../libmetal/lib/include/metal/sleep.h | 44 + .../libmetal/lib/include/metal/spinlock.h | 71 ++ .../OpenAMP/libmetal/lib/include/metal/sys.h | 148 +++ .../lib/include/metal/system/generic/alloc.h | 39 + .../lib/include/metal/system/generic/assert.h | 28 + .../lib/include/metal/system/generic/cache.h | 40 + .../include/metal/system/generic/condition.h | 72 ++ .../metal/system/generic/cortexm/sys.h | 65 ++ .../lib/include/metal/system/generic/io.h | 44 + .../lib/include/metal/system/generic/irq.h | 34 + .../lib/include/metal/system/generic/log.h | 52 + .../lib/include/metal/system/generic/mutex.h | 79 ++ .../lib/include/metal/system/generic/sleep.h | 38 + .../lib/include/metal/system/generic/sys.h | 61 ++ .../OpenAMP/libmetal/lib/include/metal/time.h | 41 + .../libmetal/lib/include/metal/utilities.h | 152 +++ .../libmetal/lib/include/metal/version.h | 76 ++ .../board/ports/OpenAMP/libmetal/lib/init.c | 34 + .../board/ports/OpenAMP/libmetal/lib/io.c | 139 +++ .../board/ports/OpenAMP/libmetal/lib/log.c | 62 ++ .../board/ports/OpenAMP/libmetal/lib/shmem.c | 48 + .../ports/OpenAMP/libmetal/lib/st_device.c | 167 +++ .../libmetal/lib/system/generic/alloc.h | 39 + .../libmetal/lib/system/generic/assert.h | 28 + .../libmetal/lib/system/generic/cache.h | 40 + .../libmetal/lib/system/generic/condition.c | 49 + .../libmetal/lib/system/generic/condition.h | 68 ++ .../libmetal/lib/system/generic/cortexm/sys.c | 77 ++ .../libmetal/lib/system/generic/cortexm/sys.h | 65 ++ .../lib/system/generic/generic_device.c | 32 + .../lib/system/generic/generic_init.c | 28 + .../libmetal/lib/system/generic/generic_io.c | 31 + .../libmetal/lib/system/generic/generic_irq.c | 279 +++++ .../libmetal/lib/system/generic/generic_irq.h | 34 + .../lib/system/generic/generic_shmem.c | 18 + .../lib/system/generic/generic_time.c | 19 + .../OpenAMP/libmetal/lib/system/generic/io.h | 44 + .../OpenAMP/libmetal/lib/system/generic/log.h | 52 + .../libmetal/lib/system/generic/mutex.h | 79 ++ .../libmetal/lib/system/generic/sleep.h | 38 + .../OpenAMP/libmetal/lib/system/generic/sys.h | 63 ++ .../ports/OpenAMP/libmetal/lib/version.c | 27 + .../open-amp/lib/include/openamp/compiler.h | 71 ++ .../open-amp/lib/include/openamp/elf_loader.h | 428 ++++++++ .../open-amp/lib/include/openamp/open_amp.h | 17 + .../open-amp/lib/include/openamp/remoteproc.h | 871 ++++++++++++++++ .../lib/include/openamp/remoteproc_loader.h | 108 ++ .../lib/include/openamp/remoteproc_virtio.h | 150 +++ .../open-amp/lib/include/openamp/rpmsg.h | 358 +++++++ .../lib/include/openamp/rpmsg_retarget.h | 119 +++ .../lib/include/openamp/rpmsg_virtio.h | 190 ++++ .../lib/include/openamp/rsc_table_parser.h | 64 ++ .../open-amp/lib/include/openamp/virtio.h | 176 ++++ .../lib/include/openamp/virtio_ring.h | 152 +++ .../open-amp/lib/include/openamp/virtqueue.h | 236 +++++ .../open-amp/lib/remoteproc/elf_loader.c | 711 +++++++++++++ .../open-amp/lib/remoteproc/remoteproc.c | 963 ++++++++++++++++++ .../lib/remoteproc/remoteproc_virtio.c | 330 ++++++ .../lib/remoteproc/rsc_table_parser.c | 223 ++++ .../OpenAMP/open-amp/lib/rpmsg/CMakeLists.txt | 2 + .../ports/OpenAMP/open-amp/lib/rpmsg/rpmsg.c | 270 +++++ .../open-amp/lib/rpmsg/rpmsg_internal.h | 105 ++ .../OpenAMP/open-amp/lib/rpmsg/rpmsg_virtio.c | 692 +++++++++++++ .../OpenAMP/open-amp/lib/virtio/virtio.c | 121 +++ .../OpenAMP/open-amp/lib/virtio/virtqueue.c | 618 +++++++++++ .../ports/OpenAMP/virtual_driver/virt_uart.c | 126 +++ .../ports/OpenAMP/virtual_driver/virt_uart.h | 76 ++ .../board/ports/drv_lptim.c | 31 +- .../board/ports/drv_pmic.c | 29 +- .../board/ports/drv_pwr.c | 51 +- .../board/ports/spi_sample.c | 84 ++ .../board/ports/timer_sample.c | 41 +- .../stm32mp157a-st-discovery/project.ewp | 25 +- .../stm32mp157a-st-discovery/project.uvoptx | 952 +---------------- .../stm32mp157a-st-discovery/project.uvprojx | 248 +++-- bsp/stm32/stm32mp157a-st-discovery/rtconfig.h | 6 - .../stm32mp157a-st-discovery/template.ewp | 2 +- .../stm32mp157a-st-discovery/template.uvprojx | 2 +- .../tools/rt-thread-shell.py | 26 + 124 files changed, 14028 insertions(+), 1124 deletions(-) create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/CubeMX_Config/CM4/Inc/ipcc.h create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/CubeMX_Config/CM4/Inc/mbox_ipcc.h create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/CubeMX_Config/CM4/Inc/openamp.h create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/CubeMX_Config/CM4/Inc/openamp_conf.h create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/CubeMX_Config/CM4/Inc/openamp_log.h create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/CubeMX_Config/CM4/Inc/rsc_table.h create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/CubeMX_Config/CM4/Src/mbox_ipcc.c create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/CubeMX_Config/CM4/Src/openamp.c create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/CubeMX_Config/CM4/Src/openamp_log.c create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/CubeMX_Config/CM4/Src/rsc_table.c create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/drv_openamp.c create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/drv_openamp.h create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/libmetal/lib/dma.c create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/libmetal/lib/include/metal/alloc.h create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/libmetal/lib/include/metal/assert.h create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/libmetal/lib/include/metal/atomic.h create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/libmetal/lib/include/metal/cache.h create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/libmetal/lib/include/metal/compiler.h create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/libmetal/lib/include/metal/compiler/gcc/atomic.h create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/libmetal/lib/include/metal/compiler/gcc/compiler.h create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/libmetal/lib/include/metal/compiler/iar/compiler.h create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/libmetal/lib/include/metal/compiler/iar/errno.h create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/libmetal/lib/include/metal/compiler/mdk-arm/errno.h create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/libmetal/lib/include/metal/condition.h create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/libmetal/lib/include/metal/config.h create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/libmetal/lib/include/metal/cpu.h create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/libmetal/lib/include/metal/device.h create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/libmetal/lib/include/metal/dma.h create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/libmetal/lib/include/metal/errno.h create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/libmetal/lib/include/metal/io.h create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/libmetal/lib/include/metal/irq.h create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/libmetal/lib/include/metal/list.h create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/libmetal/lib/include/metal/log.h create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/libmetal/lib/include/metal/mutex.h create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/libmetal/lib/include/metal/processor/arm/atomic.h create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/libmetal/lib/include/metal/processor/arm/cpu.h create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/libmetal/lib/include/metal/shmem.h create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/libmetal/lib/include/metal/sleep.h create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/libmetal/lib/include/metal/spinlock.h create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/libmetal/lib/include/metal/sys.h create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/libmetal/lib/include/metal/system/generic/alloc.h create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/libmetal/lib/include/metal/system/generic/assert.h create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/libmetal/lib/include/metal/system/generic/cache.h create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/libmetal/lib/include/metal/system/generic/condition.h create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/libmetal/lib/include/metal/system/generic/cortexm/sys.h create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/libmetal/lib/include/metal/system/generic/io.h create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/libmetal/lib/include/metal/system/generic/irq.h create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/libmetal/lib/include/metal/system/generic/log.h create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/libmetal/lib/include/metal/system/generic/mutex.h create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/libmetal/lib/include/metal/system/generic/sleep.h create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/libmetal/lib/include/metal/system/generic/sys.h create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/libmetal/lib/include/metal/time.h create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/libmetal/lib/include/metal/utilities.h create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/libmetal/lib/include/metal/version.h create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/libmetal/lib/init.c create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/libmetal/lib/io.c create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/libmetal/lib/log.c create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/libmetal/lib/shmem.c create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/libmetal/lib/st_device.c create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/libmetal/lib/system/generic/alloc.h create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/libmetal/lib/system/generic/assert.h create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/libmetal/lib/system/generic/cache.h create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/libmetal/lib/system/generic/condition.c create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/libmetal/lib/system/generic/condition.h create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/libmetal/lib/system/generic/cortexm/sys.c create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/libmetal/lib/system/generic/cortexm/sys.h create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/libmetal/lib/system/generic/generic_device.c create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/libmetal/lib/system/generic/generic_init.c create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/libmetal/lib/system/generic/generic_io.c create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/libmetal/lib/system/generic/generic_irq.c create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/libmetal/lib/system/generic/generic_irq.h create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/libmetal/lib/system/generic/generic_shmem.c create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/libmetal/lib/system/generic/generic_time.c create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/libmetal/lib/system/generic/io.h create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/libmetal/lib/system/generic/log.h create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/libmetal/lib/system/generic/mutex.h create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/libmetal/lib/system/generic/sleep.h create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/libmetal/lib/system/generic/sys.h create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/libmetal/lib/version.c create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/open-amp/lib/include/openamp/compiler.h create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/open-amp/lib/include/openamp/elf_loader.h create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/open-amp/lib/include/openamp/open_amp.h create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/open-amp/lib/include/openamp/remoteproc.h create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/open-amp/lib/include/openamp/remoteproc_loader.h create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/open-amp/lib/include/openamp/remoteproc_virtio.h create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/open-amp/lib/include/openamp/rpmsg.h create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/open-amp/lib/include/openamp/rpmsg_retarget.h create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/open-amp/lib/include/openamp/rpmsg_virtio.h create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/open-amp/lib/include/openamp/rsc_table_parser.h create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/open-amp/lib/include/openamp/virtio.h create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/open-amp/lib/include/openamp/virtio_ring.h create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/open-amp/lib/include/openamp/virtqueue.h create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/open-amp/lib/remoteproc/elf_loader.c create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/open-amp/lib/remoteproc/remoteproc.c create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/open-amp/lib/remoteproc/remoteproc_virtio.c create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/open-amp/lib/remoteproc/rsc_table_parser.c create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/open-amp/lib/rpmsg/CMakeLists.txt create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/open-amp/lib/rpmsg/rpmsg.c create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/open-amp/lib/rpmsg/rpmsg_internal.h create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/open-amp/lib/rpmsg/rpmsg_virtio.c create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/open-amp/lib/virtio/virtio.c create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/open-amp/lib/virtio/virtqueue.c create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/virtual_driver/virt_uart.c create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/virtual_driver/virt_uart.h create mode 100644 bsp/stm32/stm32mp157a-st-discovery/board/ports/spi_sample.c create mode 100644 bsp/stm32/stm32mp157a-st-discovery/tools/rt-thread-shell.py diff --git a/bsp/stm32/stm32mp157a-st-discovery/.config b/bsp/stm32/stm32mp157a-st-discovery/.config index bfff68de2f..01ca2120fa 100644 --- a/bsp/stm32/stm32mp157a-st-discovery/.config +++ b/bsp/stm32/stm32mp157a-st-discovery/.config @@ -426,6 +426,7 @@ CONFIG_BSP_USING_STLINK_TO_USART=y # CONFIG_BSP_USING_PMIC is not set # CONFIG_BSP_USING_PWR is not set # CONFIG_BSP_USING_RCC is not set +# CONFIG_BSP_USING_OPENAMP is not set # # On-chip Peripheral Drivers diff --git a/bsp/stm32/stm32mp157a-st-discovery/.cproject b/bsp/stm32/stm32mp157a-st-discovery/.cproject index 478525a8c2..ce78ef0eb8 100644 --- a/bsp/stm32/stm32mp157a-st-discovery/.cproject +++ b/bsp/stm32/stm32mp157a-st-discovery/.cproject @@ -67,15 +67,14 @@ - - - - - - + + + + + + - @@ -102,8 +101,6 @@