The test targets the following devices at this time. - atmel,winc1500 - inventek,eswifi - inventek,eswifi-uart Signed-off-by: TOKITA Hiroshi <tokita.hiroshi@gmail.com>
32 lines
598 B
Text
32 lines
598 B
Text
/*
|
|
* Copyright (c) 2024 TOKITA Hiroshi
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/ {
|
|
test {
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
|
|
test_gpio: gpio@deadbeef {
|
|
compatible = "vnd,gpio";
|
|
gpio-controller;
|
|
reg = <0xdeadbeef 0x1000>;
|
|
#gpio-cells = <0x2>;
|
|
status = "okay";
|
|
};
|
|
|
|
test_uart: uart@55556666 {
|
|
compatible = "vnd,serial";
|
|
reg = <0x55556666 0x1000>;
|
|
status = "okay";
|
|
|
|
test_uart_eswifi: eswifi-uart {
|
|
compatible = "inventek,eswifi-uart";
|
|
status = "okay";
|
|
wakeup-gpios = <&test_gpio 0 0>;
|
|
resetn-gpios = <&test_gpio 0 0>;
|
|
};
|
|
};
|
|
};
|
|
};
|