zephyr/tests/misc/check_init_priorities/boards/native_sim.overlay
Valerio Setti 1e146ed53d Revert "test: misc|shell: disable "zephyr,entropy" chosen property"
This reverts commit 40e5b8ae77e5ebf16c3f6c7298c85e21f3233685.

Signed-off-by: Valerio Setti <vsetti@baylibre.com>
2024-12-12 00:15:39 +00:00

39 lines
710 B
Plaintext

/*
* Copyright 2023 Google LLC
*
* SPDX-License-Identifier: Apache-2.0
*/
/ {
test_gpio_0: gpio@ffff {
gpio-controller;
#gpio-cells = <0x2>;
compatible = "vnd,gpio-device";
status = "okay";
reg = <0xffff 0x1000>;
};
test_i2c: i2c@11112222 {
#address-cells = <1>;
#size-cells = <0>;
compatible = "vnd,i2c";
status = "okay";
reg = <0x11112222 0x1000>;
clock-frequency = <100000>;
test_dev_a: test-i2c-dev@10 {
compatible = "vnd,i2c-device";
status = "okay";
reg = <0x10>;
supply-gpios = <&test_gpio_0 1 0>;
};
test_dev_b: test-i2c-dev@11 {
compatible = "vnd,i2c-device";
status = "okay";
reg = <0x11>;
supply-gpios = <&test_gpio_0 2 0>;
};
};
};