mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-09-01 06:39:05 +00:00

The SK-ATM0700D4-Plug is an extension board (provided by the same manufacturer, [1]) which can be connected to the SK-IMX53 panel kit. The panel can be connected either using the RGB parallel bus or using the LVDS connector (recommended). Add DT files describing this "shield", both RGB and LVDS connections. [1] http://starterkit.ru/html/index.php?name=shop&op=view&id=64 Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org> Signed-off-by: Shawn Guo <shawnguo@kernel.org>
46 lines
840 B
Plaintext
46 lines
840 B
Plaintext
// SPDX-License-Identifier: GPL-2.0+
|
|
//
|
|
// Copyright 2023 Linaro Ltd.
|
|
|
|
/dts-v1/;
|
|
|
|
#include <dt-bindings/pwm/pwm.h>
|
|
#include "imx53-sk-imx53.dts"
|
|
|
|
/ {
|
|
panel: panel-rgb {
|
|
compatible = "powertip,ph800480t013-idf02";
|
|
|
|
port {
|
|
panel_rgb_in: endpoint {
|
|
};
|
|
};
|
|
};
|
|
|
|
spi_ts: spi {
|
|
compatible = "spi-gpio";
|
|
#address-cells = <0x1>;
|
|
#size-cells = <0x0>;
|
|
|
|
num-chipselects = <1>;
|
|
|
|
touchscreen: touchscreen@0 {
|
|
reg = <0>;
|
|
compatible = "ti,ads7843";
|
|
spi-max-frequency = <300000>;
|
|
|
|
ti,vref-mv = /bits/ 16 <3300>;
|
|
ti,x-plate-ohms = /bits/ 16 <450>;
|
|
ti,y-plate-ohms = /bits/ 16 <250>;
|
|
ti,debounce-tol = /bits/ 16 <10>;
|
|
ti,debounce-rep = /bits/ 16 <0>;
|
|
touchscreen-size-x = <4096>;
|
|
touchscreen-size-y = <4096>;
|
|
touchscreen-swapped-x-y;
|
|
touchscreen-max-pressure = <100>;
|
|
|
|
wakeup-source;
|
|
};
|
|
};
|
|
};
|