tests: drivers: uart: Add support uart test for RA4E1 boards

Add support test app uart_async_api for fpb_ra4e1 and
voice_ra4e1 boards

Signed-off-by: Khoa Nguyen <khoa.nguyen.xh@renesas.com>
This commit is contained in:
Khoa Nguyen 2025-01-17 17:10:49 +07:00 committed by Benjamin Cabé
parent 57ec93925d
commit 507d81dfd5
2 changed files with 52 additions and 0 deletions

View File

@ -0,0 +1,28 @@
/*
* Copyright (c) 2025 Renesas Electronics Corporation
* SPDX-License-Identifier: Apache-2.0
*/
&pinctrl {
sci9_default: sci9_default {
group1 {
/* tx rx */
psels = <RA_PSEL(RA_PSEL_SCI_9, 1, 9)>,
<RA_PSEL(RA_PSEL_SCI_9, 1, 10)>;
};
};
};
&spi0 {
status = "disabled";
};
&sci9 {
pinctrl-0 = <&sci9_default>;
pinctrl-names = "default";
status = "okay";
dut: uart {
current-speed = <115200>;
status = "okay";
};
};

View File

@ -0,0 +1,24 @@
/*
* Copyright (c) 2025 Renesas Electronics Corporation
* SPDX-License-Identifier: Apache-2.0
*/
&pinctrl {
sci0_default: sci0_default {
group1 {
/* tx rx */
psels = <RA_PSEL(RA_PSEL_SCI_0, 1, 1)>,
<RA_PSEL(RA_PSEL_SCI_0, 1, 0)>;
};
};
};
&sci0 {
pinctrl-0 = <&sci0_default>;
pinctrl-names = "default";
status = "okay";
dut: uart {
current-speed = <115200>;
status = "okay";
};
};