forked from zephyrproject-rtos/zephyr
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tests: uart_async_api: Add rz/a2m board to test
Allocate buffers in non-cache section Add configuration for board rz/a2m Signed-off-by: Dmytro Semenets <[email protected]> Reviewed-by: Mykola Kvach <[email protected]> Reviewed-by: Oleksii Moisieiev <[email protected]>
- Loading branch information
1 parent
1c33b90
commit c137c68
Showing
3 changed files
with
61 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
CONFIG_NOCACHE_MEMORY=y | ||
CONFIG_UART_INTERRUPT_DRIVEN=y |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
dut: &scif2 { | ||
dmas = <&dma0 6 DMA_RS_RXI2 0>, <&dma0 5 DMA_RS_TXI2 0>; | ||
dma-names = "rx", "tx"; | ||
current-speed = <115200>; | ||
pinctrl-0 = <&scif2_pins>; | ||
pinctrl-names = "default"; | ||
status = "okay"; | ||
}; | ||
|
||
&dma0 { | ||
status = "okay"; | ||
dma-buf-addr-alignment = <1>; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters