Commit 65f0c864 authored by Johann Fischer's avatar Johann Fischer Committed by Carles Cufi
Browse files

boards/shields: add zephyr,display chosen property



Add zephyr,display chosen property.

Signed-off-by: default avatarJohann Fischer <johann.fischer@nordicsemi.no>
parent 2d175d14
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -12,6 +12,7 @@
		zephyr,uart-mcumgr = &uart0;
		zephyr,bt-mon-uart = &uart0;
		zephyr,bt-c2h-uart = &uart0;
		zephyr,display = &ili9340;
	};

	/* Main LEDs and buttons are on an I2C TCA9538 GPIO port expander */
@@ -195,7 +196,7 @@
	mosi-pin = <9>;
	sck-pin = <8>;

	ili9340@0 {
	ili9340: ili9340@0 {
		compatible = "ilitek,ili9340";
		reg = <0>;
		spi-max-frequency = <32000000>;
+1 −0
Original line number Diff line number Diff line
@@ -28,6 +28,7 @@
		zephyr,flash-controller = &s26ks512s0;
		zephyr,flash = &s26ks512s0;
		zephyr,code-partition = &slot0_partition;
		zephyr,display = &lcdif;
	};

	sdram0: memory@80000000 {
+1 −0
Original line number Diff line number Diff line
@@ -29,6 +29,7 @@
		zephyr,console = &lpuart1;
		zephyr,shell-uart = &lpuart1;
		zephyr,canbus = &flexcan2;
		zephyr,display = &lcdif;
	};

	sdram0: memory@80000000 {
+1 −0
Original line number Diff line number Diff line
@@ -30,6 +30,7 @@
		zephyr,console = &lpuart1;
		zephyr,shell-uart = &lpuart1;
		zephyr,canbus = &flexcan2;
		zephyr,display = &lcdif;
	};

	sdram0: memory@80000000 {
+2 −1
Original line number Diff line number Diff line
@@ -22,6 +22,7 @@
		zephyr,sram = &sram0;
		zephyr,flash = &flash0;
		zephyr,code-partition = &slot0_partition;
		zephyr,display = &ssd16xx;
	};

	leds {
@@ -57,7 +58,7 @@
	miso-pin = <21>;
	cs-gpios = <&gpio0 17 GPIO_ACTIVE_LOW>;

	ssd16xxfb@0 {
	ssd16xx: ssd16xxfb@0 {
		compatible = "solomon,ssd16xxfb", "gooddisplay,gdeh0213b1";
		label = "SSD16XX";
		spi-max-frequency = <4000000>;
Loading