mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-09-01 15:14:52 +00:00

The arm dts directory has grown to 1559 boards which makes it a bit unwieldy to maintain and use. Past attempts stalled out due to plans to move .dts files out of the kernel tree. Doing that is no longer planned (any time soon at least), so let's go ahead and group .dts files by vendors. This move aligns arm with arm64 .dts file structure. There's no change to dtbs_install as the flat structure is maintained on install. The naming of vendor directories is roughly in this order of preference: - Matching original and current SoC vendor prefix/name (e.g. ti, qcom) - Current vendor prefix/name if still actively sold (SoCs which have been aquired) (e.g. nxp/imx) - Existing platform name for older platforms not sold/maintained by any company (e.g. gemini, nspire) The whole move was scripted with the exception of MAINTAINERS and a few makefile fixups. Acked-by: Viresh Kumar <viresh.kumar@linaro.org> Acked-by: Michal Simek <michal.simek@amd.com> #Xilinx Acked-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> Acked-by: Neil Armstrong <neil.armstrong@linaro.org> Acked-by: Paul Barker <paul.barker@sancloud.com> Acked-by: Tony Lindgren <tony@atomide.com> Acked-by: Gregory CLEMENT <gregory.clement@bootlin.com> Acked-by: Heiko Stuebner <heiko@sntech.de> Acked-by: Wei Xu <xuwei5@hisilicon.com> #hisilicon Acked-by: Geert Uytterhoeven <geert+renesas@glider.be> Acked-by: Nick Hawkins <nick.hawkins@hpe.com> Acked-by: Baruch Siach <baruch@tkos.co.il> Reviewed-by: Linus Walleij <linus.walleij@linaro.org> Reviewed-by: Andre Przywara <andre.przywara@arm.com> Acked-by: Andre Przywara <andre.przywara@arm.com> Reviewed-by: Claudiu Beznea <claudiu.beznea@microchip.com> Acked-by: Peter Rosin <peda@axentia.se> Acked-by: Jesper Nilsson <jesper.nilsson@axis.com> Acked-by: Sudeep Holla <sudeep.holla@arm.com> Acked-by: Florian Fainelli <f.fainelli@gmail.com> #broadcom Acked-by: Manivannan Sadhasivam <mani@kernel.org> Reviewed-by: Jisheng Zhang <jszhang@kernel.org> Acked-by: Patrice Chotard <patrice.chotard@foss.st.com> Acked-by: Romain Perier <romain.perier@gmail.com> Acked-by: Alexandre TORGUE <alexandre.torgue@st.com> Acked-by: Shawn Guo <shawnguo@kernel.org> Acked-by: Kunihiko Hayashi <hayashi.kunihiko@socionext.com> Acked-by: Enric Balletbo i Serra <eballetbo@gmail.com> Signed-off-by: Rob Herring <robh@kernel.org>
151 lines
3.5 KiB
Plaintext
151 lines
3.5 KiB
Plaintext
// SPDX-License-Identifier: (GPL-2.0-or-later OR MIT)
|
|
/*
|
|
* Copyright (C) 2016, 2020 PHYTEC Messtechnik
|
|
* Author: Christian Hemp <c.hemp@phytec.de>
|
|
* Author: Stefan Riedmueller <s.riedmueller@phytec.de>
|
|
*/
|
|
|
|
/ {
|
|
backlight_lcd: backlight-lcd {
|
|
compatible = "pwm-backlight";
|
|
brightness-levels = <0 4 8 16 32 64 128 255>;
|
|
default-brightness-level = <5>;
|
|
power-supply = <®_backlight_en>;
|
|
pwms = <&pwm3 0 5000000 0>;
|
|
status = "disabled";
|
|
};
|
|
|
|
lcd_panel: lcd-panel {
|
|
compatible = "edt,etm0700g0edh6";
|
|
backlight = <&backlight_lcd>;
|
|
status = "disabled";
|
|
|
|
port {
|
|
lcd_panel_in: endpoint {
|
|
remote-endpoint = <&lcdif_parallel_out>;
|
|
};
|
|
};
|
|
};
|
|
|
|
reg_backlight_en: regulator-backlight-en {
|
|
compatible = "regulator-fixed";
|
|
pinctrl-names = "default";
|
|
pinctrl-0 = <&pinctrl_backlight_en>;
|
|
regulator-name = "backlight-lcd";
|
|
regulator-min-microvolt = <3300000>;
|
|
regulator-max-microvolt = <3300000>;
|
|
gpio = <&gpio1 18 GPIO_ACTIVE_HIGH>;
|
|
enable-active-high;
|
|
};
|
|
};
|
|
|
|
&i2c1 {
|
|
edt_ft5406: touchscreen@38 {
|
|
compatible = "edt,edt-ft5406";
|
|
reg = <0x38>;
|
|
pinctrl-names = "default";
|
|
pinctrl-0 = <&pinctrl_edt_ft5406>;
|
|
interrupt-parent = <&gpio5>;
|
|
interrupts = <5 IRQ_TYPE_EDGE_FALLING>;
|
|
wakeup-source;
|
|
status = "disabled";
|
|
};
|
|
|
|
stmpe: touchscreen@44 {
|
|
compatible = "st,stmpe811";
|
|
reg = <0x44>;
|
|
pinctrl-names = "default";
|
|
pinctrl-0 = <&pinctrl_stmpe>;
|
|
interrupts = <3 IRQ_TYPE_LEVEL_LOW>;
|
|
interrupt-parent = <&gpio5>;
|
|
wakeup-source;
|
|
status = "disabled";
|
|
|
|
stmpe_touchscreen {
|
|
compatible = "st,stmpe-ts";
|
|
st,sample-time = <4>;
|
|
st,mod-12b = <1>;
|
|
st,ref-sel = <0>;
|
|
st,adc-freq = <1>;
|
|
st,ave-ctrl = <1>;
|
|
st,touch-det-delay = <2>;
|
|
st,settling = <2>;
|
|
st,fraction-z = <7>;
|
|
st,i-drive = <1>;
|
|
touchscreen-inverted-x;
|
|
touchscreen-inverted-y;
|
|
};
|
|
};
|
|
};
|
|
|
|
&lcdif {
|
|
pinctrl-names = "default";
|
|
pinctrl-0 = <&pinctrl_lcdif_dat>;
|
|
status = "disabled";
|
|
|
|
port {
|
|
lcdif_parallel_out: endpoint {
|
|
remote-endpoint = <&lcd_panel_in>;
|
|
};
|
|
};
|
|
};
|
|
|
|
&pwm3 {
|
|
pinctrl-names = "default";
|
|
pinctrl-0 = <&pinctrl_pwm3>;
|
|
status = "disabled";
|
|
};
|
|
|
|
&iomuxc {
|
|
pinctrl_edt_ft5406: edtft5406grp {
|
|
fsl,pins = <
|
|
MX6UL_PAD_SNVS_TAMPER5__GPIO5_IO05 0x1b0b0
|
|
>;
|
|
};
|
|
|
|
pinctrl_backlight_en: bachlightengrp {
|
|
fsl,pins = <
|
|
MX6UL_PAD_UART1_CTS_B__GPIO1_IO18 0x1b0b0
|
|
>;
|
|
};
|
|
|
|
pinctrl_lcdif_dat: lcdifdatgrp {
|
|
fsl,pins = <
|
|
MX6UL_PAD_LCD_DATA00__LCDIF_DATA00 0x59
|
|
MX6UL_PAD_LCD_DATA01__LCDIF_DATA01 0x59
|
|
MX6UL_PAD_LCD_DATA02__LCDIF_DATA02 0x59
|
|
MX6UL_PAD_LCD_DATA03__LCDIF_DATA03 0x59
|
|
MX6UL_PAD_LCD_DATA04__LCDIF_DATA04 0x59
|
|
MX6UL_PAD_LCD_DATA05__LCDIF_DATA05 0x59
|
|
MX6UL_PAD_LCD_DATA06__LCDIF_DATA06 0x59
|
|
MX6UL_PAD_LCD_DATA07__LCDIF_DATA07 0x59
|
|
MX6UL_PAD_LCD_DATA08__LCDIF_DATA08 0x59
|
|
MX6UL_PAD_LCD_DATA09__LCDIF_DATA09 0x59
|
|
MX6UL_PAD_LCD_DATA10__LCDIF_DATA10 0x59
|
|
MX6UL_PAD_LCD_DATA11__LCDIF_DATA11 0x59
|
|
MX6UL_PAD_LCD_DATA12__LCDIF_DATA12 0x59
|
|
MX6UL_PAD_LCD_DATA13__LCDIF_DATA13 0x59
|
|
MX6UL_PAD_LCD_DATA14__LCDIF_DATA14 0x59
|
|
MX6UL_PAD_LCD_DATA15__LCDIF_DATA15 0x59
|
|
MX6UL_PAD_LCD_DATA16__LCDIF_DATA16 0x59
|
|
MX6UL_PAD_LCD_DATA17__LCDIF_DATA17 0x59
|
|
MX6UL_PAD_LCD_CLK__LCDIF_CLK 0x59
|
|
MX6UL_PAD_LCD_ENABLE__LCDIF_ENABLE 0x59
|
|
MX6UL_PAD_LCD_HSYNC__LCDIF_HSYNC 0x59
|
|
MX6UL_PAD_LCD_VSYNC__LCDIF_VSYNC 0x59
|
|
>;
|
|
};
|
|
|
|
pinctrl_pwm3: pwm3grp {
|
|
fsl,pins = <
|
|
MX6UL_PAD_GPIO1_IO04__PWM3_OUT 0x0b0b0
|
|
>;
|
|
};
|
|
|
|
pinctrl_stmpe: stmpegrp {
|
|
fsl,pins = <
|
|
MX6UL_PAD_SNVS_TAMPER3__GPIO5_IO03 0x17059
|
|
>;
|
|
};
|
|
};
|