tests: drivers: dma: run dma tests on stm32f746g_disco

enabled dma loop transfer and channel blend to run
on stm32f746g_disco

Signed-off-by: Dominik Lau <dlau@internships.antmicro.com>
This commit is contained in:
Dominik Lau 2024-08-29 12:47:12 +02:00 committed by Fabio Baltieri
commit 455b45780d
5 changed files with 30 additions and 0 deletions

View file

@ -19,4 +19,5 @@ supported:
- usb_device
- display
- memc
- dma
vendor: st

View file

@ -0,0 +1,2 @@
CONFIG_DMA_TRANSFER_CHANNEL_NR_0=0
CONFIG_DMA_TRANSFER_CHANNEL_NR_1=1

View file

@ -0,0 +1,13 @@
/*
* Copyright (c) 2024 Antmicro <www.antmicro.com>
*
* SPDX-License-Identifier: Apache-2.0
*/
tst_dma0: &dma2 {
status = "okay";
};
&sram0 {
zephyr,memory-attr = <( DT_MEM_ARM(ATTR_MPU_RAM_NOCACHE) )>;
};

View file

@ -0,0 +1 @@
CONFIG_DMA_LOOP_TRANSFER_CHANNEL_NR=4

View file

@ -0,0 +1,13 @@
/*
* Copyright (c) 2024 Antmicro <www.antmicro.com>
*
* SPDX-License-Identifier: Apache-2.0
*/
tst_dma0: &dma2 {
status = "okay";
};
&sram0 {
zephyr,memory-attr = <( DT_MEM_ARM(ATTR_MPU_RAM_NOCACHE) )>;
};