Commit c70f4027 authored by Benedikt Schmidt's avatar Benedikt Schmidt Committed by Christopher Friedt
Browse files

tests: drivers: gpio: add BD8LB600FS



Add the BD8LB600FS to the build all tests,
as well as add another specific test for just
this chip which also demonstrates the
usage.

Signed-off-by: default avatarBenedikt Schmidt <benedikt.schmidt@embedded-solutions.at>
parent fd44b2eb
Loading
Loading
Loading
Loading
+11 −1
Original line number Diff line number Diff line
@@ -173,7 +173,7 @@
			clock-frequency = <2000000>;

			/* one entry for every devices at spi.dtsi */
			cs-gpios = <&test_gpio 0 0 &test_gpio 0 0>;
			cs-gpios = <&test_gpio 0 0 &test_gpio 0 0 &test_gpio 0 0>;

			test_spi_mcp23s17: mcp23s17@0 {
				compatible = "microchip,mcp23s17";
@@ -192,6 +192,16 @@
				#gpio-cells = <2>;
				ngpios = <16>;
			};

			test_spi_bd8lb600fs: bd8lb600fs@0 {
				compatible = "rohm,bd8lb600fs";
				spi-max-frequency = <0>;
				reg = <0x0>;
				gpio-controller;
				#gpio-cells = <2>;
				ngpios = <8>;
				reset-gpios = <&test_gpio 0 0>;
			};
		};
	};
};