Link: https://lore.kernel.org/r/20260217200002.683975158@linuxfoundation.org Tested-by: Florian Fainelli <florian.fainelli@broadcom.com> Tested-by: Takeshi Ogasawara <takeshi.ogasawara@futuring-girl.com> Tested-by: Peter Schneider <pschneider1968@googlemail.com> Tested-by: Jon Hunter <jonathanh@nvidia.com> Tested-by: Salvatore Bonaccorso <carnil@debian.org> Tested-by: Brett A C Sheffield <bacs@librecast.net> Tested-by: Mark Brown <broonie@kernel.org> Tested-by: Luna Jernberg <droidbittin@gmail.com> Tested-by: Ronald Warsow <rwarsow@gmx.de> Tested-by: Justin M. Forbes <jforbes@fedoraproject.org> Tested-by: Ron Economos <re@w6rz.net> Tested-by: Miguel Ojeda <ojeda@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
117 lines
2.1 KiB
Devicetree
117 lines
2.1 KiB
Devicetree
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
/ {
|
|
testcase-data {
|
|
overlay-node {
|
|
/* test bus */
|
|
unittest_test_bus: test-bus {
|
|
compatible = "simple-bus";
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
|
|
unittest100: test-unittest100 {
|
|
compatible = "unittest";
|
|
status = "okay";
|
|
reg = <100>;
|
|
};
|
|
|
|
unittest101: test-unittest101 {
|
|
compatible = "unittest";
|
|
status = "disabled";
|
|
reg = <101>;
|
|
};
|
|
|
|
unittest0: test-unittest0 {
|
|
compatible = "unittest";
|
|
status = "disabled";
|
|
reg = <0>;
|
|
};
|
|
|
|
unittest1: test-unittest1 {
|
|
compatible = "unittest";
|
|
status = "okay";
|
|
reg = <1>;
|
|
};
|
|
|
|
unittest2: test-unittest2 {
|
|
compatible = "unittest";
|
|
status = "disabled";
|
|
reg = <2>;
|
|
};
|
|
|
|
unittest3: test-unittest3 {
|
|
compatible = "unittest";
|
|
status = "okay";
|
|
reg = <3>;
|
|
};
|
|
|
|
unittest5: test-unittest5 {
|
|
compatible = "unittest";
|
|
status = "disabled";
|
|
reg = <5>;
|
|
};
|
|
|
|
unittest6: test-unittest6 {
|
|
compatible = "unittest";
|
|
status = "disabled";
|
|
reg = <6>;
|
|
};
|
|
|
|
unittest7: test-unittest7 {
|
|
compatible = "unittest";
|
|
status = "disabled";
|
|
reg = <7>;
|
|
};
|
|
|
|
unittest8: test-unittest8 {
|
|
compatible = "unittest";
|
|
status = "disabled";
|
|
reg = <8>;
|
|
};
|
|
|
|
unittest_i2c_test_bus: i2c-test-bus {
|
|
compatible = "unittest-i2c-bus";
|
|
status = "okay";
|
|
reg = <50>;
|
|
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
|
|
test-unittest12 {
|
|
reg = <8>;
|
|
compatible = "unittest-i2c-dev";
|
|
status = "disabled";
|
|
};
|
|
|
|
test-unittest13 {
|
|
reg = <9>;
|
|
compatible = "unittest-i2c-dev";
|
|
status = "okay";
|
|
};
|
|
|
|
test-unittest14 {
|
|
reg = <10>;
|
|
compatible = "unittest-i2c-mux";
|
|
status = "okay";
|
|
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
|
|
i2c@0 {
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
reg = <0>;
|
|
|
|
test-mux-dev@20 {
|
|
reg = <0x20>;
|
|
compatible = "unittest-i2c-dev";
|
|
status = "okay";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|