mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-03 18:10:13 +00:00
623a8c812e
LG X3 is a development board based on Nvidia Tegra 3 SoC on base of which Optimus 4X HD and Optimus Vu were created. Both smartphones feature a 4.7" and 5" panels respectively, an Nvidia Tegra 3 quad-core chip, 1 GB of RAM and 16/32 GB of internal storage. Optimux 4X HD additionally has a micro SD slot. Tested-by: Andreas Westman Dorcsak <hedmoo@yahoo.com> # LG P880 T30 Tested-by: Svyatoslav Ryhel <clamor95@gmail.com> # LG P895 T30 Signed-off-by: Svyatoslav Ryhel <clamor95@gmail.com> Signed-off-by: Thierry Reding <treding@nvidia.com>
50 lines
1.1 KiB
Text
50 lines
1.1 KiB
Text
// SPDX-License-Identifier: GPL-2.0
|
|
/dts-v1/;
|
|
|
|
#include "tegra30-lg-x3.dtsi"
|
|
|
|
/ {
|
|
model = "LG Optimus Vu";
|
|
compatible = "lge,p895", "nvidia,tegra30";
|
|
|
|
gpio-keys {
|
|
key-volume-up {
|
|
label = "Volume Up";
|
|
gpios = <&gpio TEGRA_GPIO(I, 6) GPIO_ACTIVE_LOW>;
|
|
linux,code = <KEY_UP>;
|
|
};
|
|
};
|
|
|
|
panel: panel {
|
|
compatible = "hitachi,tx13d100vm0eaa";
|
|
|
|
reset-gpios = <&gpio TEGRA_GPIO(W, 0) GPIO_ACTIVE_HIGH>;
|
|
|
|
renesas,gamma = <3>;
|
|
renesas,inversion;
|
|
renesas,contrast;
|
|
|
|
vcc-supply = <&vcc_3v0_lcd>;
|
|
iovcc-supply = <&iovcc_1v8_lcd>;
|
|
|
|
backlight = <&backlight>;
|
|
};
|
|
|
|
vcc_3v0_lcd: regulator-lcd {
|
|
compatible = "regulator-fixed";
|
|
regulator-name = "vcc_3v0_lcd";
|
|
regulator-min-microvolt = <3000000>;
|
|
regulator-max-microvolt = <3000000>;
|
|
gpio = <&gpio TEGRA_GPIO(BB, 0) GPIO_ACTIVE_HIGH>;
|
|
enable-active-high;
|
|
};
|
|
|
|
iovcc_1v8_lcd: regulator-lcdvio {
|
|
compatible = "regulator-fixed";
|
|
regulator-name = "iovcc_1v8_lcd";
|
|
regulator-min-microvolt = <1800000>;
|
|
regulator-max-microvolt = <1800000>;
|
|
gpio = <&gpio TEGRA_GPIO(Y, 0) GPIO_ACTIVE_HIGH>;
|
|
enable-active-high;
|
|
};
|
|
};
|