mirror of
git://nv-tegra.nvidia.com/device/hardware/nvidia/t23x-public-dts.git
synced 2025-12-22 09:12:02 +03:00
Rearrange the pwm-fan node to align to mainline. Cherry picked from e63472eda5ea84424e4bff2b809389b0ba266613 Change: Selected alignment for pwm-fan node Bug 4204736 Change-Id: I2ba2f3c57e59663559bc278972bbd339f2cefbc7 Signed-off-by: Laxman Dewangan <ldewangan@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/c/device/hardware/nvidia/t23x-public-dts/+/2940481 GVS: Gerrit_Virtual_Submit <buildbot_gerritrpt@nvidia.com>
132 lines
2.6 KiB
Devicetree
132 lines
2.6 KiB
Devicetree
// SPDX-License-Identifier: GPL-2.0
|
|
/dts-v1/;
|
|
|
|
#include <dt-bindings/input/linux-event-codes.h>
|
|
#include <dt-bindings/input/gpio-keys.h>
|
|
|
|
#include "tegra234-p3767-0000.dtsi"
|
|
#include "tegra234-p3768-0000.dtsi"
|
|
|
|
/ {
|
|
compatible = "nvidia,p3768-0000+p3767-0000", "nvidia,p3767-0000", "nvidia,tegra234";
|
|
model = "NVIDIA Jetson Orin NX Engineering Reference Developer Kit";
|
|
|
|
aliases {
|
|
serial0 = &tcu;
|
|
};
|
|
|
|
chosen {
|
|
stdout-path = "serial0:115200n8";
|
|
};
|
|
|
|
bus@0 {
|
|
serial@31d0000 {
|
|
current-speed = <115200>;
|
|
status = "okay";
|
|
};
|
|
|
|
pwm@32a0000 {
|
|
assigned-clocks = <&bpmp TEGRA234_CLK_PWM3>;
|
|
assigned-clock-parents = <&bpmp TEGRA234_CLK_PLLP_OUT0>;
|
|
status = "okay";
|
|
};
|
|
|
|
hda@3510000 {
|
|
nvidia,model = "NVIDIA Jetson Orin NX HDA";
|
|
status = "okay";
|
|
};
|
|
|
|
padctl@3520000 {
|
|
status = "okay";
|
|
};
|
|
|
|
/* C1 - M.2 Key-E */
|
|
pcie@14100000 {
|
|
status = "okay";
|
|
|
|
vddio-pex-ctl-supply = <&vdd_1v8_ao>;
|
|
|
|
phys = <&p2u_hsio_3>;
|
|
phy-names = "p2u-0";
|
|
};
|
|
|
|
/* C4 - M.2 Key-M */
|
|
pcie@14160000 {
|
|
status = "okay";
|
|
|
|
vddio-pex-ctl-supply = <&vdd_1v8_ao>;
|
|
|
|
phys = <&p2u_hsio_4>, <&p2u_hsio_5>, <&p2u_hsio_6>,
|
|
<&p2u_hsio_7>;
|
|
phy-names = "p2u-0", "p2u-1", "p2u-2", "p2u-3";
|
|
};
|
|
|
|
/* C8 - Ethernet */
|
|
pcie@140a0000 {
|
|
status = "okay";
|
|
|
|
num-lanes = <2>;
|
|
|
|
phys = <&p2u_gbe_2>, <&p2u_gbe_3>;
|
|
phy-names = "p2u-0", "p2u-1";
|
|
|
|
vddio-pex-ctl-supply = <&vdd_1v8_ao>;
|
|
vpcie3v3-supply = <&vdd_3v3_pcie>;
|
|
};
|
|
|
|
/* C7 - M.2 Key-M */
|
|
pcie@141e0000 {
|
|
status = "okay";
|
|
|
|
vddio-pex-ctl-supply = <&vdd_1v8_ao>;
|
|
|
|
phys = <&p2u_gbe_0>, <&p2u_gbe_1>;
|
|
phy-names = "p2u-0", "p2u-1";
|
|
};
|
|
};
|
|
|
|
gpio-keys {
|
|
compatible = "gpio-keys";
|
|
|
|
key-force-recovery {
|
|
label = "Force Recovery";
|
|
gpios = <&gpio TEGRA234_MAIN_GPIO(G, 0) GPIO_ACTIVE_LOW>;
|
|
linux,input-type = <EV_KEY>;
|
|
linux,code = <BTN_1>;
|
|
};
|
|
|
|
key-power {
|
|
label = "Power";
|
|
gpios = <&gpio_aon TEGRA234_AON_GPIO(EE, 4) GPIO_ACTIVE_LOW>;
|
|
linux,input-type = <EV_KEY>;
|
|
linux,code = <KEY_POWER>;
|
|
wakeup-event-action = <EV_ACT_ASSERTED>;
|
|
wakeup-source;
|
|
};
|
|
|
|
key-suspend {
|
|
label = "Suspend";
|
|
gpios = <&gpio TEGRA234_MAIN_GPIO(G, 2) GPIO_ACTIVE_LOW>;
|
|
linux,input-type = <EV_KEY>;
|
|
linux,code = <KEY_SLEEP>;
|
|
};
|
|
};
|
|
|
|
pwm-fan {
|
|
cooling-levels = <0 95 178 255>;
|
|
};
|
|
|
|
vdd_3v3_pcie: regulator-vdd-3v3-pcie {
|
|
compatible = "regulator-fixed";
|
|
regulator-name = "VDD_3V3_PCIE";
|
|
regulator-min-microvolt = <3300000>;
|
|
regulator-max-microvolt = <3300000>;
|
|
gpio = <&gpio_aon TEGRA234_AON_GPIO(AA, 5) GPIO_ACTIVE_HIGH>;
|
|
enable-active-high;
|
|
};
|
|
|
|
serial {
|
|
status = "okay";
|
|
};
|
|
};
|