summaryrefslogtreecommitdiff
path: root/arch/arm64/boot/dts/ti/k3-am654-base-board-rocktech-rk101-panel.dtso
blob: 7a3953d64fd84f6c6f7b78055d57b82cdf1ff7c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
// SPDX-License-Identifier: GPL-2.0-only OR MIT
/**
 * OLDI-LCD1EVM Rocktech integrated panel and touch DT overlay for AM654-EVM.
 * Panel Link: https://www.digimax.it/en/tft-lcd/20881-RK101II01D-CT
 * AM654 LCD EVM: https://www.ti.com/tool/TMDSLCD1EVM
 *
 * Copyright (C) 2023-2024 Texas Instruments Incorporated - https://www.ti.com/
 */

/dts-v1/;
/plugin/;

#include <dt-bindings/pwm/pwm.h>
#include <dt-bindings/gpio/gpio.h>
#include <dt-bindings/interrupt-controller/irq.h>

&{/} {
	vcc_5v0: lcd-regulator {
		/* Output of LM5140 */
		compatible = "regulator-fixed";
		regulator-name = "vcc_5v0";
		regulator-min-microvolt = <5000000>;
		regulator-max-microvolt = <5000000>;
		regulator-always-on;
		regulator-boot-on;
		vin-supply = <&evm_12v0>;
	};

	display0 {
		compatible = "rocktech,rk101ii01d-ct";
		power-supply = <&vcc_5v0>;
		backlight = <&lcd_bl>;
		enable-gpios = <&pca9555 8 GPIO_ACTIVE_HIGH>;
		port {
			lcd_in0: endpoint {
				remote-endpoint = <&oldi_out0>;
			};
		};
	};

	lcd_bl: backlight {
		compatible = "pwm-backlight";
		pwms = <&ecap0 0 50000 PWM_POLARITY_INVERTED>;
		brightness-levels =
			<0 32 64 96 128 160 192 224 255>;
		default-brightness-level = <8>;
	};
};

&dss {
	status = "okay";
};

&dss_ports {
	#address-cells = <1>;
	#size-cells = <0>;

	port@0 {
		reg = <0>;

		oldi_out0: endpoint {
			remote-endpoint = <&lcd_in0>;
		};
	};
};

&main_i2c1 {
	#address-cells = <1>;
	#size-cells = <0>;

	touchscreen@14 {
		compatible = "goodix,gt928";
		reg = <0x14>;

		interrupt-parent = <&pca9554>;
		interrupts = <3 IRQ_TYPE_EDGE_FALLING>;
		touchscreen-size-x = <1280>;
		touchscreen-size-y = <800>;

		reset-gpios = <&pca9555 9 GPIO_ACTIVE_HIGH>;
		irq-gpios = <&pca9554 3 GPIO_ACTIVE_HIGH>;
	};
};